/* =====================================================
   santa.css - Why Santa? ランディングページ専用スタイル
   WPの既存スタイルに影響を与えないよう、
   すべてのセレクタに .santa-hero / .santa-movie プレフィックスを使用
   ===================================================== */

/* ===== HERO SECTION ===== */
.santa-hero {
  position: relative;
  width: 100%;
  background-color: #0097b0;
  overflow: visible;
  /* PC: 高さ500px */
  height: 500px;
}

/* コンテンツ全体の基点（PC: max-width 1200px 中央寄せ） */
.santa-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

/* サンタ集合写真 */
.santa-hero__img {
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 105%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

/* テキストブロック */
.santa-hero__text {
  position: absolute;
  left: 40px;
  top: 175px;
  z-index: 2;
}

/* Why Santa? タイトル */
.santa-hero__title {
  font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
  font-size: 93.66px;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.santa-hero__title .line1,
.santa-hero__title .line2 {
  display: inline;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
  line-height: inherit;
}

/* 黄色ライン + サンタの理由 */
.santa-hero__sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
  margin-right: 40px;
}

.santa-hero__line {
  display: block;
  width: 126px;
  height: 3px;
  background-color: #f1f81a;
  flex-shrink: 0;
}

.santa-hero__sub-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 33.65px;
  font-weight: 700;
  color: #f1f81a;
  margin: 0;
  white-space: nowrap;
}


/* ===== YOUTUBE SECTION ===== */
.santa-movie {
  width: 100%;
  padding-top: 160px !important;
  padding-bottom: 100px;
}

.santa-movie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PC: 800×450固定 */
.santa-movie__embed {
  width: 800px;
  height: 450px;
  flex-shrink: 0;
}

.santa-movie__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}


/* =====================================================
   SP（スマートフォン）スタイル
   ===================================================== */
@media screen and (max-width: 767px) {

  /* HERO */
  .santa-hero {
    /* flexで上下に分離。画像の足元がはみ出る分overflow: visible */
    height: auto;
    overflow: visible;
    padding-bottom: 0;
    /* 青背景の高さをinnerで制御するためbackground調整 */
  }

  .santa-hero__inner {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* テキストブロック: 上に配置 */
  .santa-hero__text {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    white-space: nowrap;
    padding: 50px 0 8px;
    order: 1;
  }

  /* サンタ画像: テキストの下に配置 */
  .santa-hero__img {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    margin-top: -20px;
    margin-bottom: -50px;
    order: 2;
  }

  .santa-hero__sub {
    margin-top: 8px;
    justify-content: center;
    align-self: center;
    margin-right: 0;
  }

  .santa-hero__line {
    width: 90px;
  }

  .santa-hero__title {
    font-size: 75.99px !important;
    font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #ffffff !important;
    white-space: normal !important;
    line-height: 1.05 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .santa-hero__title .line1 {
    display: block !important;
    align-self: flex-start !important;
    font-size: 75.99px !important;
    font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
  }

  .santa-hero__title .line2 {
    display: block !important;
    align-self: flex-end !important;
    font-size: 75.99px !important;
    font-family: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
  }

  .santa-hero__sub-text {
    font-size: 27.3px;
  }

  /* YOUTUBE */
  .santa-movie {
    padding-top: 100px !important;
    padding-bottom: 100px;
  }

  .santa-movie__inner {
    width: 90%;
    margin: 0 auto;
  }

  /* SP: 幅90%でアスペクト比16:9を維持 */
  .santa-movie__embed {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* ===== CM BANNER SECTION ===== */
.santa-cm {
  width: 100%;
  height: 120px;
  background-color: #0097b0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.santa-cm__group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* 「30周年記念」枠 PC: 250×52 */
.santa-cm__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 52px;
  border: 3px solid #f1f81a;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 35px;
  color: #f1f81a;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
  padding: 0 0 3px 0;
  box-sizing: border-box;
  line-height: 1;
  vertical-align: middle;
}

/* 「千葉テレビでCM放映中」 */
.santa-cm__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #f1f81a;
  white-space: nowrap; /* PCはbrを無効化 */
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* PCではbrを非表示 */
.santa-cm__text br {
  display: none;
}


/* ===== CM BANNER SP ===== */
@media screen and (max-width: 767px) {

  .santa-cm {
    height: 228px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .santa-cm__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* SP: 258×53 */
  .santa-cm__badge {
    width: 258px;
    height: 53px;
    font-size: 35px;
  }

  .santa-cm__text {
    font-size: 40px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  /* SPではbrを有効化 */
  .santa-cm__text br {
    display: block;
  }
}


/* ===== TEXT SECTION ===== */
.santa-text {
  width: 100%;
  background: #fff;
  padding: 100px 0 0;
  margin: 0;
  box-sizing: border-box;
}

.santa-text__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  text-align: center;
}

.santa-text__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #222;
  line-height: 1.875; /* AA55相当: 32px × 1.875 ≒ 60px */
  letter-spacing: 0.05em; /* VA60相当 */
  margin: 0;
  padding: 0;
}

/* PC用brはそのまま表示、SP用brは非表示 */
.santa-text__body .br-sp {
  display: none;
}

/* ハイライト（アンダーライン風） */
.santa-text__body .hl {
  display: inline !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 700 !important;
  font-size: inherit !important;
  color: #222 !important;
  background: linear-gradient(transparent calc(100% - 19px), #ffff00 19px) !important;
  background-repeat: no-repeat !important;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}


/* ===== TEXT SECTION SP ===== */
@media screen and (max-width: 767px) {

  .santa-text {
    padding: 100px 0 0;
  }

  .santa-text__inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .santa-text__body {
    font-size: 21px;
    line-height: 1.667; /* AA35相当: 21px × 1.667 ≒ 35px */
    letter-spacing: 0.04em; /* VA50相当 */
  }

  /* SP用brを表示、PC用brを非表示 */
  .santa-text__body .br-sp {
    display: block;
  }

  .santa-text__body .br-pc {
    display: none;
  }

  /* SP ハイライト高さ15px */
  .santa-text__body .hl {
    background: linear-gradient(transparent calc(100% - 15px), #ffff00 15px) !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}

/* PC/SP 表示切り替え */
.pc-only { display: block; }
.sp-only { display: none; }

@media screen and (max-width: 767px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}


/* ===== BUTTON SECTION ===== */
.santa-btn-wrap {
  width: 100%;
  background: #fff;
  padding: 100px 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.santa-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

/* ボタン背景SVG */
.santa-btn__bg {
  display: block;
  width: 380px;
  height: auto;
}

/* テキスト＋アイコンを中央に重ねる */
.santa-btn__inner {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}

.santa-btn__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #222;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* アイコン: PCはテキストの1.75倍高さ */
.santa-btn__ic {
  height: 1.75em;
  width: auto;
  display: block;
  flex-shrink: 0;
}


/* ===== BUTTON SP ===== */
@media screen and (max-width: 767px) {

  .santa-btn__bg {
    width: 280px;
  }

  .santa-btn__text {
    font-size: 25px;
  }

  .santa-btn__ic {
    height: 1.6em;
  }
}

@media screen and (max-width: 767px) {
  .santa-btn-wrap {
    padding: 75px 0 100px;
  }
}


/* ===== ORIGIN SECTION ===== */
.santa-origin {
  width: 100%;
  background-color: #f7f4ef;
  margin: 0;
  padding: 100px 0 0;
  box-sizing: border-box;
}

.santa-origin__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* セクションタイトル */
.santa-origin__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #f2f2f2;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  /* 黒フチ: 線幅1px、丸形線端、ラウンド結合、中央揃え */
  -webkit-text-stroke: 4px #000000;
  text-stroke: 4px #000000;
  paint-order: stroke fill;
  text-align: center;
  /* ドロップシャドウ: X2.5px Y2.5px ぼかし0 黒 */
  filter: drop-shadow(2.5px 2.5px 0px #000000);
}


/* ===== ORIGIN SP ===== */
@media screen and (max-width: 767px) {

  .santa-origin {
    padding: 50px 0 0;
  }

  .santa-origin__inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .santa-origin__title {
    font-size: 23px;
    -webkit-text-stroke: 2.5px #000000;
    text-stroke: 2.5px #000000;
    filter: drop-shadow(2px 2px 0px #000000);
  }
}


/* ===== ORIGIN BODY TEXT ===== */
.santa-origin__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #222;
  line-height: 32px;
  letter-spacing: calc(100 / 1000 * 1em); /* VA100 */
  margin: 50px auto 0;
  padding: 0;
  max-width: 1000px;
  text-align: justify;
  box-sizing: border-box;
}

.santa-origin__body .accent {
  color: #d88139;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}


/* ===== ORIGIN BODY SP ===== */
@media screen and (max-width: 767px) {

  .santa-origin__body {
    font-size: 15px;
    line-height: 23.5px;
    letter-spacing: calc(200 / 1000 * 1em); /* VA200 */
    margin-top: 35px;
    width: 315px;
    max-width: 315px;
    text-align: justify;
  }
}


/* ===== CIRCLES SECTION ===== */
.santa-circles {
  margin: 90px auto 0;
  max-width: 1200px;
  padding: 0 40px;
  box-sizing: border-box;
}

.santa-circles__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 650px;
  margin: 0 auto;
}

/* 各丸+テキストのブロック */
.santa-circles__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 丸 */
.santa-circles__ball {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-color: #0097b0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 30px;
  box-sizing: border-box;
}

.santa-circles__ball-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: 59.5px;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}

.santa-circles__ball-text .col-yellow {
  color: #f1f81a;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.santa-circles__ball-text .col-white {
  color: #f7f4ef;
  font-size: inherit !important;
  font-weight: inherit !important;
}

/* ＋記号 */
.santa-circles__plus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(650px - 210px - 210px); /* 230px */
  color: #4d4d4d;
  font-size: 75px;
  font-weight: 100;
  line-height: 1;
  padding-bottom: 60px; /* キャプション分下げる */
}

/* 丸下のテキスト */
.santa-circles__caption {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 29px; /* AA29 */
  letter-spacing: calc(100 / 1000 * 1em); /* VA100 */
  color: #0097b0;
  text-align: center;
  margin-top: 30px;
  width: 210px;
  padding: 0;
  box-sizing: border-box;
}


/* ===== CIRCLES SP ===== */
@media screen and (max-width: 767px) {

  .santa-circles {
    margin-top: 75px;
    padding: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }

  .santa-circles__group {
    width: 360px;
    align-items: flex-start;
    margin: 0 auto;
  }

  .santa-circles__item {
    flex: 1;
  }

  .santa-circles__ball {
    width: 140px;
    height: 140px;
    margin: 0;
    padding: 16px;
    box-sizing: border-box;
  }

  .santa-circles__ball-text {
    font-size: 22px;
    line-height: 38.51px;
    letter-spacing: calc(50 / 1000 * 1em);
    white-space: nowrap;
  }

  .santa-circles__plus {
    width: 35px;
    padding: 0;
    font-size: 55px;
    font-weight: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    flex-shrink: 0;
  }

  .santa-circles__caption {
    font-size: 14px;
    line-height: 19px; /* AA19 */
    letter-spacing: calc(10 / 1000 * 1em); /* VA10 */
    width: 160px;
    margin: 12px auto 0;
  }
}


/* ===== TWO COLUMN SECTION ===== */
.santa-twocol {
  margin: 100px 0 0;
  padding: 0;
  box-sizing: border-box;
}

.santa-twocol__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

/* 左: テキスト */
.santa-twocol__text {
  width: 700px;
  max-width: 700px;
  flex-shrink: 0;
}

.santa-twocol__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #0097b0;
  letter-spacing: calc(60 / 1000 * 1em); /* VA60 */
  line-height: 1;
  margin: 0 0 30px 0;
  padding: 0;
}

.santa-twocol__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #222;
  line-height: 32px;
  letter-spacing: calc(100 / 1000 * 1em);
  margin: 0;
  padding: 0;
}

.santa-twocol__body .accent {
  color: #d88139;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

/* 右: 画像 */
.santa-twocol__img {
  width: 255px;
  height: 255px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  align-self: flex-start;
}


/* ===== TWO COLUMN SP ===== */
@media screen and (max-width: 767px) {

  .santa-twocol {
    margin-top: 70px;
    padding: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .santa-twocol__inner {
    flex-direction: column;
    gap: 30px;
  }

  .santa-twocol__title {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .santa-twocol__body {
    font-size: 16px;
    line-height: 23.5px;
    letter-spacing: calc(200 / 1000 * 1em);
  }

  .santa-twocol__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}


/* ===== TWO COLUMN REVERSE ===== */
.santa-twocol--reverse {
  margin-top: 150px;
}

@media screen and (max-width: 767px) {
  .santa-twocol--reverse {
    margin-top: 80px;
  }

  /* SP時は画像を上、テキストを下に */
  .santa-twocol--reverse .santa-twocol__inner {
    flex-direction: column;
  }
}


/* 2カラム下の全幅テキスト */
.santa-twocol__footer-text {
  margin-top: 32px;
  padding: 0;
  white-space: nowrap;
  max-width: calc(700px + 255px + 50px);
  margin-left: auto;
  margin-right: auto;
}




/* ===== ORIGIN CLOSING TEXT ===== */
.santa-origin__closing {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  letter-spacing: calc(60 / 1000 * 1em); /* VA60 */
  line-height: 45.5px; /* AA45.5 */
  text-align: center;
  margin: 75px 0 0;
  padding: 0 0 100px;
}

@media screen and (max-width: 767px) {
  .santa-origin__closing {
    font-size: 20px;
    margin-top: 50px;
    padding-bottom: 70px;
  }
}


/* ===== SP ORIGIN IMAGE ===== */
.santa-origin__sp-img {
  display: none;
}

@media screen and (max-width: 767px) {
  .santa-origin__sp-img {
    display: block;
    width: 255px;
    height: 255px;
    object-fit: cover;
    margin: 15px auto 0;
  }
}


/* ===== SP TWOCOL TEXT SECTION ===== */
.santa-twocol__sp-title {
  display: none;
}

.santa-twocol__sp-body {
  display: none;
}

.santa-twocol__sp-img {
  display: none;
}

@media screen and (max-width: 767px) {

  .santa-twocol__sp-title {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 28px; /* AA28 */
    letter-spacing: calc(50 / 1000 * 1em); /* VA50 */
    color: #0097b0;
    text-align: center;
    margin: 75px auto 0;
    width: 315px;
    padding: 0;
  }

  .santa-twocol__sp-title--second {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 28px; /* AA28 */
    letter-spacing: calc(50 / 1000 * 1em); /* VA50 */
    color: #0097b0;
    text-align: center;
    margin: 100px auto 0;
    width: 315px;
    padding: 0;
  }

  .santa-origin__sp-closing {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 45.5px;
    letter-spacing: calc(60 / 1000 * 1em);
    color: #1a1a1a;
    text-align: center;
    margin: 75px auto 0;
    padding: 0 0 100px;
    width: 315px;
  }

  .santa-twocol__sp-body {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 23.5px;
    letter-spacing: calc(200 / 1000 * 1em);
    color: #222;
    text-align: justify;
    margin: 35px auto 0;
    width: 315px;
    max-width: 315px;
    padding: 0;
  }

  .santa-twocol__sp-body .accent {
    color: #d88139;
    font-size: inherit !important;
    font-weight: inherit !important;
  }

  .santa-twocol__sp-img {
    display: block;
    width: 255px;
    height: 255px;
    object-fit: cover;
    margin: 90px auto 0;
  }
}


/* SP時: PC用2カラム（大人だけど）を非表示 */
@media screen and (max-width: 767px) {
  .santa-twocol--reverse {
    display: none;
  }
}


/* SP時: PC用1つ目の2カラム（年中無休）も非表示 */
@media screen and (max-width: 767px) {
  .santa-twocol:not(.santa-twocol--reverse) {
    display: none;
  }
}


/* ===== OTODOKE IMAGE SECTION ===== */
.santa-otodoke {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
  overflow: hidden; /* パララックス用 */
}

.santa-otodoke__img {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}

.santa-otodoke__img--sp {
  display: none;
  will-change: transform;
}

@media screen and (max-width: 767px) {
  .santa-otodoke__img {
    display: none;
  }

  .santa-otodoke__img--sp {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.18); /* 余白確保でパララックスが切れないように */
    transform-origin: center center;
  }
}


/* ===== WAKUWAKU SECTION TITLE ===== */
.santa-waku__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 56px;
  letter-spacing: calc(60 / 1000 * 1em); /* VA60 */
  color: #0097b0;
  text-align: center;
  margin: 100px 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .santa-waku__title {
    font-size: 21px;
    line-height: 28px;
    letter-spacing: calc(-2 / 1000 * 1em); /* VA-2 */
    margin-top: 100px;
  }
}


/* ===== WAKUWAKU BODY TEXT ===== */
.santa-waku__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: calc(100 / 1000 * 1em);
  color: #1a1a1a;
  text-align: center;
  margin: 75px 0 0;
  padding: 0;
}

/* ===== WAKUWAKU BOXES ===== */
.santa-waku__boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px auto 0;
  max-width: 1200px;
  padding: 0 40px;
  box-sizing: border-box;
}

.santa-waku__box {
  width: 170px;
  height: 170px;
  background-color: #0097b0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.santa-waku__box-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 30.31px;
  letter-spacing: calc(50 / 1000 * 1em);
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0;
}


/* ===== WAKUWAKU SP ===== */
@media screen and (max-width: 767px) {

  .santa-waku__body {
    font-size: 16px;
    line-height: 23.04px;
    letter-spacing: calc(200 / 1000 * 1em);
    margin-top: 45px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .santa-waku__boxes {
    display: grid;
    grid-template-columns: 130px 130px;
    grid-template-rows: auto;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    padding: 0;
  }

  /* SP: 2-1-2レイアウト ガーデンを中央1列 */
  .santa-waku__box {
    width: 130px;
    height: 130px;
  }

  /* ガーデン（3番目）を中央に */
  .santa-waku__box:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
  }

  .santa-waku__box-text {
    font-size: 14.37px;
    line-height: 23px;
    letter-spacing: calc(100 / 1000 * 1em);
  }
}


/* ===== WAKUWAKU CATCH ズームインフェード ===== */
.santa-waku__catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 56px;
  letter-spacing: calc(60 / 1000 * 1em);
  color: #1a1a1a;
  text-align: center;
  margin: 75px 0 0;
  padding: 0;
}

/* ===== WAKUWAKU FINAL BTN WRAP ===== */
.santa-waku__btn-wrap {
  display: flex;
  justify-content: center;
  margin: 100px 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {

  .santa-waku__body.santa-waku__body--second {
    margin-top: 50px;
  }

  .santa-waku__catch {
    font-size: 26px;
    line-height: 45.5px;
    letter-spacing: calc(60 / 1000 * 1em);
    margin-top: 50px;
  }

  .santa-waku__btn-wrap {
    margin-top: 75px;
  }
}


/* ===== LOGOS SECTION ===== */
.santa-logos {
  margin: 140px auto 0;
  max-width: 1200px;
  padding: 0 40px;
  box-sizing: border-box;
}

/* PC: 上段2、下段3 */
.santa-logos__row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
}

.santa-logos__row + .santa-logos__row {
  margin-top: 40px;
}

.santa-logos__img {
  display: block;
  height: 50px;
  width: auto;
}

/* GL logo */
.santa-logos__gl {
  display: block;
  margin: 140px auto 0;
  max-width: 200px;
  height: auto;
}

/* 下スペース */
.santa-logos__end {
  padding-bottom: 200px;
}


/* ===== LOGOS SP ===== */
@media screen and (max-width: 767px) {

  .santa-logos {
    margin-top: 125px;
    padding: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* SP: 縦一列 */
  .santa-logos__row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .santa-logos__row + .santa-logos__row {
    margin-top: 40px;
  }

  .santa-logos__img {
    height: 40px;
    width: auto;
  }

  .santa-logos__gl {
    margin-top: 150px;
    max-width: 160px;
  }

  .santa-logos__end {
    padding-bottom: 150px;
  }
}


/* ロゴ行のPC/SP切り替え */
.santa-logos__row--top,
.santa-logos__row--bottom {
  display: flex;
}

.santa-logos__row--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .santa-logos__row--top,
  .santa-logos__row--bottom {
    display: none;
  }

  .santa-logos__row--sp {
    display: flex;
  }
}

/* =====================================================
   アニメーション追加スタイル
   ===================================================== */

/* ===== 星 canvas ===== */
#santa-snow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ===== スクロールフェードイン 共通 ===== */
.sa-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sa-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sa-fade--d1 { transition-delay: 0.08s; }
.sa-fade--d2 { transition-delay: 0.16s; }
.sa-fade--d3 { transition-delay: 0.24s; }
.sa-fade--d4 { transition-delay: 0.32s; }
.sa-fade--d5 { transition-delay: 0.40s; }

/* ===== 鼓動アニメーション ===== */
.sa-zoom {
}
.sa-zoom.is-visible {
  animation: sa-heartbeat 0.9s ease-in-out forwards;
}
@keyframes sa-heartbeat {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.18); }
  38%  { transform: scale(1); }
  58%  { transform: scale(1.12); }
  75%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* ===== ボックス ===== */
.sa-pop {
  opacity: 1 !important;
  transition: none !important;
}

.santa-waku__boxes {
  opacity: 1;
}

/* ===== SVGタイトル ===== */
.santa-hero__title-svg {
  width: 520px;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .santa-hero__title-svg {
    width: 280px;
    height: auto;
    margin: 0 auto;
  }
}

/* pc-only/sp-only の img 用上書き */
img.pc-only { display: block; }
img.sp-only { display: none; }
@media screen and (max-width: 767px) {
  img.pc-only { display: none; }
  img.sp-only { display: block; }
}
.sa-title-line {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sa-title-line.is-visible {
  opacity: 1;
}

/* ===== ヒーロー画像 フェードイン ===== */
.santa-hero__img {
  opacity: 0;
  transition: opacity 1.2s 0.3s ease;
}
.santa-hero__img.hero-loaded {
  opacity: 1;
}

/* ===== ヒーローサブテキスト フェードイン ===== */
.santa-hero__sub {
  opacity: 1;
}
.santa-hero__sub-text {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.santa-hero__sub-text.hero-loaded {
  opacity: 1;
}

/* ===== ラインの伸び ===== */
.santa-hero__line {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.santa-hero__line.hero-loaded {
  transform: scaleX(1);
}

/* ===== ボックス画像 ===== */
.santa-waku__box-img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .santa-waku__box-img {
    width: 130px;
    height: 130px;
  }
  /* SP: ガーデン（3番目）を中央に */
  .santa-waku__box-img:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
  }
}

/* ===== ボタン パルス ===== */
.santa-btn {
  transition: transform 0.3s ease;
}
.santa-btn:hover {
  animation: none;
  transform: scale(1.07);
}

/* ===== サークル フェードイン → ふわふわ浮遊 ===== */
.sa-spin {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.sa-spin.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: sa-float 3.5s ease-in-out infinite;
  animation-delay: 0.75s; /* フェードイン完了後に浮遊開始 */
}
@keyframes sa-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

html {
  scroll-behavior: smooth;
}