@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
@media screen and (min-width: 768px) {
	.pc-none{display: none;}
}
@media screen and (max-width: 767px) {
	.sp-none{display: none;}
}
html {
	font-size: 10px;
	scroll-behavior: smooth;
}

body,td,th,input,textarea {
	color: #000000;
	font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, Tahoma, Verdana, Arial, Verdana, sans-serif;
	font-size: 1.3rem;
	line-height: 1.5;
}

body {
	overflow-wrap:   break-word;
	margin: initial;
}
body a, h1, h2 {
	color: #000;
}
a {
	transition: all .2s ease-out;
	text-decoration: none;
}
.btn {
	transition: all .2s ease-out;
	text-decoration: none;
	width: var(--size278);
	display: block;
	margin: 0 auto;
}
/*
a,a:link,a:visited,a:active,a:hover,a:hover img {
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
	opacity: .80;
}
*/
a:focus {
	outline: none !important;
}
body a:hover {
	text-decoration: none;
}
	/*
a:hover,a:hover img,.img_hover:hover {

	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
	opacity: .80;
}*/ 

img {
	vertical-align: bottom;
}

@media screen and (max-width: 767px) {
	img {
		max-width: 100%;
	}
}
.img_ck {
	font-size: 0.1rem;
	line-height: 0; }

/* clearfix (micro) */
.clearfix:before,
.clearfix:after {
	content: ' ';
	display: table; }

.clearfix:after {
	clear: both; }

/* For IE 6/7 only */
.clearfix {
	zoom: 1; 
}
/*
div,p {
word-break: break-all; }*/

h2,h3,h4,h5,h6,div,p,ul,ol,li,dl,dt,dd,img,nav,figure {
	margin: 0;
	padding: 0;
	font-weight: 700;
}






/* ティザー用
-----------------------------------------------------------------------------*/
.lp_wrapper {
	padding-bottom: 0 !important;
}

.teaser {
    background: #000;
    width: 100%;
	padding-bottom: 100px;
}
/* =========================
   基本
========================= */
#mv {
  max-width: 1000px;
  margin: 0 auto;
}

/* 画像重ねエリア */
.mv-visual {
  position: relative;
}
.mv-visual picture {
  display: block;
}

/* 共通：KV画像（bkg/flow） */
.mv-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   重なり順（flow01 が最前面）
   bkg < flow02 < flow01
========================= */
.mv-visual .bkg {
  position: relative;
  z-index: 0;
}

.mv-visual .flow02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.mv-visual .flow01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; /* ←最前面 */
}

/* ボタン */
#mv .btn {
  margin: 0 auto;
  text-align: center;
  width: min(600px, 100%);
  opacity: 0;
  transform: translateY(8px);
}
#mv .btn img{
  display: block;
  width: 100%;
  height: auto;
}

/* btnリンク */
#mv .btn a {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* PC：ホバーで少し下に */
@media (hover: hover) {
  #mv .btn a:hover {
    transform: translateY(4px);
    opacity: 0.9; /* 気持ちだけ */
  }
}

/* 押した感（PC/SP両対応） */
#mv .btn a:active {
  transform: translateY(6px);
}


/* =========================
   アニメ：初期状態
========================= */
.mv-visual .bkg,
.mv-visual .flow01,
.mv-visual .flow02 {
  opacity: 0;
  transform: translateY(6px);
}

/* 再生トリガー（表示順）
   1) bkg
   2) flow01
   3) flow02
   4) btn
========================= */
#mv.is-anim .bkg {
  animation: bkgFade 1.1s ease-out 0.2s forwards;
}

#mv.is-anim .flow01 {
  animation: flowFade 1.0s ease-out 0.9s forwards;
}

/* ★追加：flow02 */
#mv.is-anim .flow02 {
  animation: flowFade 1.0s ease-out 1.6s forwards;
}

#mv.is-anim .btn {
  animation: btnFade 0.9s ease-out 1.6s forwards;
}

/* 背景フェード */
@keyframes bkgFade {
  from { opacity: 0; transform: translateY(8px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* flowフェード（flow01 */
@keyframes flowFade {
  0%   { opacity: 0;    transform: translateY(8px); }
  25%  { opacity: 0.22; transform: translateY(6px); }
  55%  { opacity: 0.55; transform: translateY(3px); }
  100% { opacity: 1;    transform: translateY(0); }
}

/* ボタンフェード */
@keyframes btnFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 動きを抑えたい人向け */
@media (prefers-reduced-motion: reduce) {
  #mv .bkg,
  #mv .flow01,
  #mv .flow02,
  #mv .btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================
   SP（768px以下）
========================= */
@media screen and (max-width: 768px) {
#mv {
  max-width: 98%;
  margin: 0 auto;
}

  /* 端末幅に対して左右に余白を作る（画面ピッタリ過ぎ防止） */
  .mv-visual .flow01 {
    transform: translateY(-2px); /* 例：ちょい上げる */
  }

  /* ★追加：flow02 もSPで微調整したい場合（不要なら消してOK） */
  .mv-visual .flow02 {
    transform: translateY(-2px);
  }

  /* SPは動きを少し軽めに（好みで） */
  #mv.is-anim .bkg {
    animation-duration: 0.9s;
    animation-delay: 0.15s;
  }
  #mv.is-anim .flow01 {
    animation-duration: 1.4s;
    animation-delay: 1.1s;
  }

  /* ★追加：flow02（flow01の後に表示） */
  #mv.is-anim .flow02 {
    animation-duration: 2.6s;
    animation-delay: 1.20s;
  }

  /* btnは最後 */
  #mv.is-anim .btn {
    animation-duration: 0.85s;
    animation-delay: 2.1s;
  }

  /* ボタン余白調整 */
  #mv .btn {
    margin: 0 auto 40px;
    width: min(600px, 100%);  /* 600上限のまま、画面が狭ければ縮む */
    max-width: 80%;
  }
}

@media screen and (max-width: 640px) {
  #mv .btn {
    max-width: 80%;
  }
}














