/* スマホで改行の感じを修正したいのでデフォルトのキャンペーンタイトルを消す */
.campaign-title {
  display: none;
}
/* 独自キャンペーンタイトルを表示する */
.campaign-title-netflix {
  display: block;
  margin: 10px 0 !important;
}

/* ブラウザ幅が広いときスマホ用 br タグを無効にする */
@media (min-width: 600px) {
.br-touch {
  display: none;
}
}

/* スマホのリンク色を青くする */
a:link, a:visited {
    color: #4eacd1;
}

/* キャンペーン概要 の見出しを消す */
h2.campaign-outline { 
  display: none;
}

/* キャンペーンタイトルをhoverしたときの装飾やめる */
h1.campaign-title a:hover {
  text-decoration: none;
}

/* キャンペーン概要の枠 */
.campaign-content-main {
  border: solid 2px #959ba2;
  background-color: #FFFFFF;
  border-radius: .3em;
  font-size: 1rem;
  padding: .6em 3%;
  margin: 1em 0;
  word-wrap: break-word;
}
.campaign-content-main .campaign-keyword {
  text-align: center;
  margin: 1.5em 0;
}
.campaign-keyword strong {
  font-size: 1.8rem;
  color: #e60012;
}

/* プレゼントの画像を回り込ませる（ブラウザ幅広いとき） */
@media (min-width: 480px) {
.present-container {
  display: flex;
}
.present-container-image {
  width: 350px;
}
.present-container-text {
  flex: 1;
}
}

/* youtube をレスポンシブにする（動画を貼らない場合は不要） */
div.video-container-wrapper {
  margin: 3em auto;
  width: 640px;
  max-width: 100%;
}
div.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
} 
div.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* デフォルトのキャンペーンエントリーボタンを非表示 */
#requirement-and-entries > div.entry-content > div.campaign-entry-button-container {
  display: none;
}

/* 独自キャンペーンエントリーボタンのスタイル */
.campaign-entry-button .btn {
  white-space: normal;
}

/* 独自キャンペーンエントリーボタンの配置 */
.campaign-description .campaign-entry-button-container {
  margin: 2.5em 0;
}

/* netflix 計測タグのimgを見えなくする */
img[src*="dockhand.netflix.com"] {
opacity: 0;
}