@charset "utf-8";
/* *************************************************************
	Global
*************************************************************** */

html {
  font-size: 16px;
}


body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 970px;
  margin: 0 auto;
  padding: 40px;
  overflow: visible;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 20px;
}

.h2 {
  max-height: 60px;
  margin-bottom: 50px;
  text-align: center;
}

.h2 {
  max-height: 81px;
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.section-title {
  display: block;
  margin: 0 auto;
  text-align: center;
}




/* **************************************************************
	kv
*************************************************************** */

#kv {
  background-image: url(../img/kv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 1134px;
  position: relative;
  /* 追加：最初は全体を非表示にしてふわっと表示 */
  opacity: 0;
}

/* 子要素は初期状態を透明に（line要素も追加） */
#kv .kv-kobe,
#kv .title,
#kv .kv-paint,
#kv .kv-player,
#kv .kv-line-l,
#kv .kv-line-r {
  opacity: 0;
}

.title {
  position: absolute;
  top: 34%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: auto;
  z-index: 2;
}

.kv-paint {
  position: absolute;
  top: -245px;
  left: -310px;
  width: 590px;
  z-index: 0;
}

.kv-player {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 840px;
  z-index: 0;
}

.kv-line-l {
  position: absolute;
  top: -140px;
  left: 60%;
  width: 460px;
  z-index: 0;
}

.kv-line-r {
  position: absolute;
  bottom: 313px;
  left: 50%;
  width: 900px;
  z-index: 0;
}

.kv-kobe {
  position: absolute;
  bottom: 0;
  left: -6%;
  transform: translateX(-50%);
  /* 中央配置 */
  z-index: 3;
}

.kv-kobe img {
  height: 756px;
  /* 高さ固定 */
  width: auto;
  /* 横幅は高さに合わせる */
  max-width: none;
  /* グローバル指定を打ち消す */
  display: block;
  /* 余計な余白をなくす */
}

/* ===== アニメーション定義 ===== */
@keyframes kvFade {
  /* セクション全体をふわっと */
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  /* 下からわずかに持ち上げ */
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRightIn {
  /* 右からスライドしつつ出現 */
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 追加：右上（top-right）から斜めに入ってくる */
@keyframes diagFromTopRight {
  from { opacity: 0; transform: translate(500px, -250px); }
  to   { opacity: 1; transform: translate(0, 0); }
}

/* ===== 開始トリガー：#kv に .is-entered が付いたら順番に再生 ===== */
#kv.is-entered {
  animation: kvFade 700ms ease-out 0.05s forwards;
  /* ① セクション全体 */
}

/* ① と同タイミングで .kv-kobe も出す（少しだけ遅らせ） */
#kv.is-entered .kv-kobe {
  animation: fadeUp 800ms ease-out 0.15s forwards;
  /* ①' */
}

/* ② 見出し＆ペイントを続けて */
#kv.is-entered .title {
  animation: kvFade 2000ms ease-out 0.85s forwards;
  /* ② */
}

#kv.is-entered .kv-paint {
  animation: kvFade 2000ms ease-out 1.05s forwards;
  /* ②' */
}

/* ③ 最後にプレイヤーを右から */
#kv.is-entered .kv-player {
  animation: fadeRightIn 4000ms cubic-bezier(.2, .8, .2, 1) 2s forwards;
  /* ③（2s遅延 + 4s = 6sで終了） */
}

/* ④ 追加：プレイヤー後にラインを順番に（右上→元位置） */
#kv.is-entered .kv-line-l {
  animation: diagFromTopRight 1000ms ease-out 3.3s forwards; /* 6.2s開始 */
}
#kv.is-entered .kv-line-r {
  animation: diagFromTopRight 1000ms ease-out 3.5s forwards; /* Lの後に開始 */
}

/* 利用者配慮：アニメーション軽減設定の人には静的表示 */
@media (prefers-reduced-motion: reduce) {
  #kv,
  #kv .kv-kobe,
  #kv .title,
  #kv .kv-paint,
  #kv .kv-player,
  #kv .kv-line-l,
  #kv .kv-line-r {
    animation: none !important;
    opacity: 1 !important;
    /* transform: none !important; */
  }
}





/* **************************************************************
	copy
*************************************************************** */

#copy {
  position: relative;
  width: 100%;
  height: 1800px;
  overflow: visible;
  margin-top: -280px;
  margin-bottom: 0;
  z-index: 3;
}

.copy-bgc {
  width: 100%;
  height: 100%;
  background-image: url(../img/copy_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.copy-h2 {
  display: block;
  max-width: 720px;
  margin: 0 auto 93px;
  padding-top: 380px;
  position: relative;
  z-index: 5;
}

.copy-lead {
  color: #fff;
  text-align: center;
  width: 800px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  margin: 0 auto 100px;
  position: relative;
  white-space: normal;
}

.entry-btn-wrap {
  position: relative;
  width: 600px;
  margin: 0 auto;
}

.entry-btn {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  z-index: 1;
}

.entry-btn:hover {
  transform: scale(1.05);
}

.entry-btn img {
  width: 600px;
  height: auto;
  display: block;
}

.copy-line-l {
  position: absolute;
  top: 3%;
  left: -20%;
}

.copy-line-l img {
  width: 935px;
  height: auto;
  max-width: none;
}

.copy-line-r {
  position: absolute;
  bottom: 27%;
  right: -10%;
}

.copy-line-r img {
  width: 500px;
  height: auto;
  max-width: none;
}

.copy-img-r {
  position: absolute;
  top: 180px;
  right: -20px;
}

.copy-img-r img {
  width: 780px;
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
}


.copy-img-l {
  position: absolute;
  bottom: 180px;
  left: -50px;
}

.copy-img-l img {
  width: 800px;
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
}

/* ===== 初期状態 ===== */
.copy-line-l,
.copy-line-r {
  opacity: 0;
  will-change: transform, opacity;
  z-index: 2;
}

/* 人物は img 自体をフェード（mix-blend維持） */
.copy-img-l img,
.copy-img-r img,
.whats-fb_img-l img,
/* ← 追加 */
.whats-fb_img-r img {
  /* ← 追加 */
  opacity: 0;
}

/* ===== keyframes ===== */
@keyframes diagMove {

  /* 斜め移動のみ */
  from {
    transform: translate(40px, -20px);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes fadeQuick {

  /* 速いフェード */
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOnly {

  /* その場フェード */
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===== 発火時 ===== */
/* 線：移動とフェードを同時適用（フェードだけ速く） */
.reveal-diag.is-inview {
  animation:
    diagMove 900ms ease-out forwards,
    fadeQuick 100ms ease-out forwards;
}

/* 人物：img に対してその場フェード */
.reveal-fade-img.is-inview {
  animation: fadeOnly 700ms ease-out forwards;
}

/* ===== 省エネ設定 ===== */
@media (prefers-reduced-motion: reduce) {

  .copy-line-l,
  .copy-line-r {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .copy-img-l img,
  .copy-img-r img,
  .whats-fb_img-l img,
  .whats-fb_img-r img {
    opacity: 1 !important;
    animation: none !important;
  }
}





/* **************************************************************
	info
*************************************************************** */

#info {
  position: relative;
  width: 100%;
  height: 1200px;
  overflow: visible;
  margin-top: -350px;
  margin-bottom: 0;
  z-index: 4;
}

.info-bgc {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url(../img/info_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.info_left {
  width: 60%;
  overflow: visible;
}

.info_left .h2 {
  margin-left: 50px;
  margin-bottom: 30px;
}

.info_left dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: #fff;
  font-weight: 300;
}

.info_left dt {
  width: 15%;
  margin-bottom: 20px;
}

.info_left dd {
  width: 85%;
  margin-bottom: 20px;
}

.info_right {
  width: 40%;
}

.info_right p {
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
}

.suma2025-btn-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.suma2025-btn {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  z-index: 1;
}

.suma2025-btn:hover {
  transform: scale(1.05);
}

.suma2025 img {
  width: 100%;
  height: auto;
  display: block;
}


/* **************************************************************
	rule
*************************************************************** */

#rule {
  position: relative;
  width: 100%;
  height: 2090px;
  overflow: visible;
  margin-top: -320px;
  margin-bottom: 0;
}

.rule-bgc {
  width: 100%;
  height: 100%;
  background-image: url(../img/rule_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.rule-bgc .column {
  gap: 0;
}

.rule-flex {
  max-width: 1370px;
  margin: 0 auto;
  padding: 220px 40px 0;
  overflow: visible;
}

.rule-top-text {
  width: 50%;
  padding-left: 200px;
}

.rule_h2 {
  width: 100%;
  margin-bottom: 50px;
}

.rule_h2 img {
  max-width: 100%;
}

.rule-top-text p {
  color: #005572;
}

.hayabusa-img {
  mix-blend-mode: multiply;
  padding-left: -20px;
}

.hayabusa-img {
  width: 620px;
}

.rule_container {
  width: 926px;
  margin: 0 auto;
  position: relative;
}

.rule_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 3px solid #006372;
  color: #006372;
  margin-bottom: 30px;
  padding: 20px;
  position: relative;
  gap: 30px;
}

.text {
  flex: 1;
}

.text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.text p {
  font-size: 17px;
  line-height: 32px;
  font-weight: 400px;
}

.image {
  width: 414px;
}

.image img {
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 0px 0px rgba(22, 108, 88, 0.35);
}

.rule-btn-wrap {
  position: relative;
  width: 390px;
  margin: 80px auto;
}

.reverse {
  flex-direction: row-reverse;
}

.rule-btn {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  z-index: 1;
}

.rule-btn:hover {
  transform: scale(1.05);
}

.rule-btn img {
  width: 390px;
  height: auto;
  display: block;
}

/* **************************************************************
	player
*************************************************************** */

#player {
  margin-bottom: 200px;
}


.player-h2 {
  display: block;
  max-height: 80px;
  margin: 190px auto 80px;
  text-align: center;
}


:root {
  --card: 320px;
  /* カード幅：調整可 */
  --gap: 24px;
  /* カード間隔 */
  --radius: 18px;
  --shadow: 0 6px 20px rgba(0, 0, 0, .15);
  --dot: #bbb;
  --dot-active: #333;
}

/* コンテナ */
.carousel {
  position: relative;
  max-width: 930px;
  margin: 40px auto 80px;
  padding: 0 16px 56px;
}

/* ラジオは状態管理のみ（非表示） */
.carousel>input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* ビューポート/トラック */
.carousel .viewport {
  overflow: hidden;
}

.carousel .track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding-left: calc(50% - (var(--card) / 2));
  /* 先頭を中央起点に */
  transition: transform .5s ease;
  will-change: transform;
}

.carousel .slide {
  list-style: none;
  flex: 0 0 var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: var(--shadow);
}

.carousel .slide a {
  display: block;
  line-height: 0;
}

.carousel .slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 矢印（ボタンの土台） */
.carousel .controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  height: 0;
  pointer-events: none;
  z-index: 5;
}

.carousel .controls label {
  display: none;
  /* 初期は非表示。選択中の番号だけ下でdisplay:grid */
  pointer-events: auto;
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
  background: #fff;
  box-shadow: var(--shadow);
  user-select: none;
  z-index: 6;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.carousel .controls .prev {
  left: 24px;
}

.carousel .controls .next {
  right: 24px;
}

.carousel .controls label:active {
  transform: scale(.96);
}

/* ドット */
.carousel .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel .dots label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dot);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

/* モーダル */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .65);
  padding: 24px;
  z-index: 50;
}

.modal:target {
  display: flex;
}

.modal__inner {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.modal__inner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.modal__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  text-decoration: none;
  color: #111;
  font-size: 22px;
  line-height: 1;
}

.modal__bg {
  position: fixed;
  inset: 0;
  display: block;
  content: "";
}

/* レスポンシブ */
@media (max-width: 768px) {
  :root {
    --card: 72vw;
    --gap: 16px;
  }

  .carousel .controls .prev {
    left: 10px;
  }

  .carousel .controls .next {
    right: 10px;
  }
}

/* ===== スライド位置（中央寄せ） ===== */
.carousel #s1:checked~.viewport .track {
  transform: translateX(0);
}

.carousel #s2:checked~.viewport .track {
  transform: translateX(calc(-1 * (var(--card) + var(--gap))));
}

.carousel #s3:checked~.viewport .track {
  transform: translateX(calc(-2 * (var(--card) + var(--gap))));
}

.carousel #s4:checked~.viewport .track {
  transform: translateX(calc(-3 * (var(--card) + var(--gap))));
}

.carousel #s5:checked~.viewport .track {
  transform: translateX(calc(-4 * (var(--card) + var(--gap))));
}

.carousel #s6:checked~.viewport .track {
  transform: translateX(calc(-5 * (var(--card) + var(--gap))));
}

.carousel #s7:checked~.viewport .track {
  transform: translateX(calc(-6 * (var(--card) + var(--gap))));
}

.carousel #s8:checked~.viewport .track {
  transform: translateX(calc(-7 * (var(--card) + var(--gap))));
}

.carousel #s9:checked~.viewport .track {
  transform: translateX(calc(-8 * (var(--card) + var(--gap))));
}

.carousel #s10:checked~.viewport .track {
  transform: translateX(calc(-9 * (var(--card) + var(--gap))));
}

/* ドットのアクティブ */
.carousel #s1:checked~.dots label[for="s1"],
.carousel #s2:checked~.dots label[for="s2"],
.carousel #s3:checked~.dots label[for="s3"],
.carousel #s4:checked~.dots label[for="s4"],
.carousel #s5:checked~.dots label[for="s5"],
.carousel #s6:checked~.dots label[for="s6"],
.carousel #s7:checked~.dots label[for="s7"],
.carousel #s8:checked~.dots label[for="s8"],
.carousel #s9:checked~.dots label[for="s9"],
.carousel #s10:checked~.dots label[for="s10"] {
  background: var(--dot-active);
}

/* 矢印の表示切替（強化版セレクタ） */
.carousel #s1:checked~.controls .prev-1,
.carousel #s1:checked~.controls .next-1 {
  display: grid;
}

.carousel #s2:checked~.controls .prev-2,
.carousel #s2:checked~.controls .next-2 {
  display: grid;
}

.carousel #s3:checked~.controls .prev-3,
.carousel #s3:checked~.controls .next-3 {
  display: grid;
}

.carousel #s4:checked~.controls .prev-4,
.carousel #s4:checked~.controls .next-4 {
  display: grid;
}

.carousel #s5:checked~.controls .prev-5,
.carousel #s5:checked~.controls .next-5 {
  display: grid;
}

.carousel #s6:checked~.controls .prev-6,
.carousel #s6:checked~.controls .next-6 {
  display: grid;
}

.carousel #s7:checked~.controls .prev-7,
.carousel #s7:checked~.controls .next-7 {
  display: grid;
}

.carousel #s8:checked~.controls .prev-8,
.carousel #s8:checked~.controls .next-8 {
  display: grid;
}

.carousel #s9:checked~.controls .prev-9,
.carousel #s9:checked~.controls .next-9 {
  display: grid;
}

.carousel #s10:checked~.controls .prev-10,
.carousel #s10:checked~.controls .next-10 {
  display: grid;
}


/* ===== arrows fix pack ===== */
.carousel {
  position: relative;
}

/* 重なり順とクリック可否 */
.carousel .controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 280px;
  height: 0;
  pointer-events: none;
  z-index: 5;
}

.carousel .controls label {
  display: none;
  /* 初期は非表示 */
  pointer-events: auto;
  color: #fff;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: #333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  user-select: none;
  z-index: 6;
  opacity: 0.8;
}

.carousel .controls .prev {
  left: 24px;
}

.carousel .controls .next {
  right: 24px;
}

/* どのラジオが選択かで、対応する矢印だけ表示（強化セレクタ） */
.carousel #s1:checked~.controls .prev-1,
.carousel #s1:checked~.controls .next-1 {
  display: grid;
}

.carousel #s2:checked~.controls .prev-2,
.carousel #s2:checked~.controls .next-2 {
  display: grid;
}

.carousel #s3:checked~.controls .prev-3,
.carousel #s3:checked~.controls .next-3 {
  display: grid;
}

.carousel #s4:checked~.controls .prev-4,
.carousel #s4:checked~.controls .next-4 {
  display: grid;
}

.carousel #s5:checked~.controls .prev-5,
.carousel #s5:checked~.controls .next-5 {
  display: grid;
}

.carousel #s6:checked~.controls .prev-6,
.carousel #s6:checked~.controls .next-6 {
  display: grid;
}

.carousel #s7:checked~.controls .prev-7,
.carousel #s7:checked~.controls .next-7 {
  display: grid;
}

.carousel #s8:checked~.controls .prev-8,
.carousel #s8:checked~.controls .next-8 {
  display: grid;
}

.carousel #s9:checked~.controls .prev-9,
.carousel #s9:checked~.controls .next-9 {
  display: grid;
}

.carousel #s10:checked~.controls .prev-10,
.carousel #s10:checked~.controls .next-10 {
  display: grid;
}

/* 画面端までフル幅。ただしカード幅(--card)はそのまま */
.carousel.edge {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.carousel.edge .track {
  margin: 0;
}

/* ULの既定余白を念のため無効化 */
.carousel.edge .viewport {
  width: 93%;
}

/* ビューポートを全幅に */

.carousel.left-start .track {
  padding-left: 120px;
}

/* ===== モーダル画像を常に全体表示 ===== */
/* アドレスバーの出入りでも安定するように vh と dvh を併記 */
.modal__inner {
  position: relative;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  max-height: 92dvh;
  /* 対応ブラウザではこちらが優先 */
  border-radius: 12px;
  overflow: auto;
  /* ← hidden をやめて必要ならスクロール */
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

/* 画像は“親の箱”に収まる最大サイズで縮小（縦横のどちらかにフィット） */
.modal__inner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  /* 幅は箱いっぱいまで */
  max-height: 92vh;
  max-height: 92dvh;
  /* 高さも画面内に収める */
  margin: 0 auto;
  /* 余白が出るときは中央寄せ */
}


/* ==== Modal fade-in/out (CSS only) ==== */

/* ① オーバーレイ（背景）をフェードさせる */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  /* 常にレイアウト。可視性で制御 */
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;

  /* 非表示状態 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);

  /* フェード時間はお好みで（.28s → .4s 等） */
  transition:
    opacity .28s ease,
    background-color .28s ease,
    visibility 0s linear .28s;
  /* フェード後に不可視化 */
}

/* ② :target で表示状態へ（フェードイン） */
.modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, .65);
  transition:
    opacity .28s ease,
    background-color .28s ease;
}

/* ③ 中身（画像の箱）もふわっ＆少しズームイン */
.modal__inner {
  transform: scale(.985) translateY(6px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}

.modal:target .modal__inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ④ 動きに弱い設定のユーザーにはアニメ無効化 */
@media (prefers-reduced-motion: reduce) {

  .modal,
  .modal__inner {
    transition: none !important;
  }
}

/* （任意）背景スクロールを止めたい場合（対応ブラウザ） */
body:has(.modal:target) {
  overflow: hidden;
}


/* **************************************************************
	whats-fb
*************************************************************** */

#whats-fb {
  position: relative;
  width: 100%;
  height: 1720px;
  overflow: visible;
  margin-bottom: 30px;
}

.whats-fb-bgc {
  width: 100%;
  height: 100%;
  background-image: url(../img/whats-fb_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.whats-fb_img-l {
  position: absolute;
  top: 80px;
  left: -20px;
  z-index: 1;
}

.whats-fb_img-l img {
  width: 600px;
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
}

.whats-fb_img-r {
  position: absolute;
  bottom: 100px;
  right: 0;
  z-index: 1;
}

.whats-fb_img-r img {
  width: 800px;
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
}


.whats-fb-h2 {
  display: block;
  max-width: 460px;
  margin: 0 auto 75px;
  padding-top: 200px;
  position: relative;
  z-index: 2;
}

.whats-fb-read {
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #333;
  margin: 0 auto 160px;
  width: fit-content;
  text-align: center;
  position: relative;
  z-index: 2;
}

.youtube {
  display: block;
  width: 560px;
  height: 315px;
  margin: 0 auto 140px;
  position: relative;
  z-index: 999;
}

.fb-logo {
  display: block;
  width: 320px;
  height: auto;
  margin: 0 auto 140px;
}



/* **************************************************************
	map
*************************************************************** */

#map {
  margin-bottom: 200px;
}

.maps {
  width: 100%;
  height: 560px;
}


/* **************************************************************
	spo
*************************************************************** */

#spo {
  margin-bottom: 150px;
}

.spo-h2 {
  display: block;
  max-width: 210px;
  margin: 0 auto 75px;
}

#spo .section-title img {
  width: 210px;
  height: auto;
  margin: 100px auto;
}

.spo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

/* **************************************************************
	footer
*************************************************************** */

footer {
  background: linear-gradient(90deg, rgb(215, 110, 167), rgb(159, 0, 130));
  padding: 40px;
}

footer>p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}

/* **************************************************************
	Animation Utilities
*************************************************************** */


/* 基本パラメータ（要素ごとに style="--a-delay:.2s" のように上書き可） */
:root {
  --a-ease: ease-out;
  --a-delay: 0s;
  --a-dur: 700ms;
  /* a-fade / a-right の既定 */
  --a-move-dur: 900ms;
  /* a-diag の「移動」時間 */
  --a-fade-dur: 300ms;
  /* a-diag の「フェード」時間（速く出す） */
}

/* 初期状態 */
.a-fade {
  opacity: 0;
}

.a-right {
  opacity: 0;
  transform: translateX(60px);
  will-change: transform, opacity;
}

.a-diag {
  opacity: 0;
  transform: translate(40px, -40px);
  will-change: transform, opacity;
}

/* キーフレーム */
@keyframes fadeOnly {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeQuick {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes diagMove {
  from {
    transform: translate(300px, -150px);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes fadeRightIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 発火時（IntersectionObserver が .is-inview を付与） */
.a-fade.is-inview {
  animation: fadeOnly var(--a-dur) var(--a-ease) var(--a-delay) forwards;
}

.a-right.is-inview {
  animation: fadeRightIn var(--a-dur) var(--a-ease) var(--a-delay) forwards;
}

.a-diag.is-inview {
  /* 斜め移動と素早いフェードを同時適用 */
  animation:
    diagMove var(--a-move-dur) var(--a-ease) var(--a-delay) forwards,
    fadeQuick var(--a-fade-dur) var(--a-ease) var(--a-delay) forwards;
}

/* 便利なヘルパー（任意）：遅延/速度をクラスで切替 */
.a-delay-100 {
  --a-delay: .1s;
}

.a-delay-200 {
  --a-delay: .2s;
}

.a-delay-300 {
  --a-delay: .3s;
}

.a-fast {
  --a-dur: 300ms;
  --a-fade-dur: 200ms;
}

.a-slow {
  --a-dur: 1000ms;
}

/* 省エネ設定 */
@media (prefers-reduced-motion: reduce) {

  .a-fade,
  .a-right,
  .a-diag {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}