@charset "utf-8";

/* common
---------------------------------------------*/
* {margin:0;padding:0;}

a:link,a:visited {
	color: #ffffff;
	text-decoration:underline;
}
a:hover,a:active {
	color: #d90909;
	text-decoration:underline;
}

.impact   {font-size:20pt; font-weight:bold;}
.impact2  {color:red;}
.impact3  {background:yellow; color:#000;}
#impact4  {underline;}
.impact5  {background:#173B50; padding:2px 5px; color:#fff;}
.impact6  {background:#f4f4f4; padding:3px; line-height:1.1;}
.impact7  {background: #B60000; padding:2px 5px; color:#fff;}
.style2   {color: #FF0000}
.style3   {color: #333333}
.style4   {color: #000000}


img{ border: none;}

/* ボタンのマウスオーバーで明るくする */
.btn:hover {
  filter: brightness(120%);
}


/* animation
---------------------------------------------*/
.feedInUp {
	opacity: 0;
	transform: translate(0,30px); 
	-webkit-transform: translate(0,30px); 
	transition: 1.5s;
}
.feedInUp_On {
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

/* layout
---------------------------------------------*/


/*TopIntro-Start*/
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	min-width: 1002px;
	
  background-image: url(../images/bg.jpg);
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: top center;
	
-webkit-text-size-adjust:none;
	
  text-align:center;
  font-size:18px;
  font-family: 'meiryo', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    color: #383d5c;
}

#head1 { background: url("../images/header_01.png") no-repeat top center; height:    800px; } 
#head2 { background: url("../images/header_02.png") no-repeat top center; height:    5835px; } 
#head3 { background: url("../images/header_03.png") no-repeat top center; height:    2974px; } 
#head4 { background: url("../images/header_04.png") no-repeat top center; height:    3630px; } 
#head5 { background: url("../images/header_05.png") no-repeat top center; height:    1152px; } 
#head6 { background: url("../images/header_06.png") no-repeat top center; height:    3462px; } 
#head7 { background: url("../images/header_07.png") no-repeat top center; height:    2586px; } 
#head8 { background: url("../images/header_08.png") no-repeat top center; height:    2191px; } 
#head9 { background: url("../images/header_09.png") no-repeat top center; height:    4675px; } 
#head10 { background: url("../images/header_10.png") no-repeat top center; height:    625px; } 
#head11 { background: url("../images/header_11.png") no-repeat top center; height:    31px; } 
#head12 { background: url("../images/header_12.png") no-repeat top center; height:    35px; }
#head13 { background: url("../images/header_13.png") no-repeat top center; height:    177px; }

#form1 { background: url("../images/form1.png") no-repeat top center; height:    114px; } 
#form2 { background: url("../images/form2.png") no-repeat top center; height:    106px; } 
#form3 { background: url("../images/form3.png") no-repeat top center; height:    119px; } 
#form4 { background: url("../images/form4.png") no-repeat top center; height:    112px; } 
#form5 { background: url("../images/form5.png") no-repeat top center; height:    112px; } 
#form6 { background: url("../images/form6.png") no-repeat top center; height:    113px; } 

#footer {  
	background-color: #E68E7F;
}

.movie-section{
  background: transparent;
  padding: 0;              /* ←LPは背景画像で積むので余白は基本0 */
}

/* ラッパー：LPの固定幅に合わせる（1000px） */
.movie-section .movie-wrap{
  width: 1000px;           /* ←ここが超重要：全体と揃える */
  margin: 0 auto;
  padding: 0;              /* ←余白でズレるのを防ぐ */
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-align: center;      /* 中央に */
}

/* サムネ（ボタン） */
.movie-section .movie-thumb{
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  display: block;
}

/* サムネ画像：横幅100%で揃える（動画と同じ16:9に） */
.movie-section .movie-thumb img{
  width: 100%;
  display: block;
  border-radius: 0;

  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 再生ボタン */
.movie-section .play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,.6);
  border-radius: 999px;
}
.movie-section .play-btn::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

/* iframe（動画）：LP幅1000pxに合わせて表示 */
.movie-section .movie-iframe iframe,
.movie-section .movie-wrap iframe{
  width: 100%;
  border: 0;
  display: block;
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

/* =========================
   SP（スマホ）
   ※あなたのLPがPC固定なら、ここは“無効”にしておく方が安全
========================= */
@media (max-width: 767px){
  /* SPでも最低限崩れないように幅だけ可変に */
  .movie-section .movie-wrap{
    width: 92vw;
    max-width: 420px;
  }

  .movie-section .movie-thumb img,
  .movie-section .movie-iframe iframe,
  .movie-section .movie-wrap iframe{
    aspect-ratio: 9 / 16;
  }
}

.movie-section{
  margin: 60px 0;
}

#wrapform{
  background-image: url("../images/wrapform.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-color: transparent;
}

img.btn{
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.03); }
  100%{ transform: scale(1); }
}