/* Google Fonts import (バックアップ用) */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* 不要なWebフォントの読み込みを防ぐ */
@font-face {
  font-family: "Alumni Sans";
  src: local("Arial"), local("sans-serif");
  font-display: swap;
}

/* 基本設定 */
.athlete-support {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

/* CSS変数の定義 */
:root {
  --primary-color: #a80000;
  --primary-dark: #7e0000;
  --secondary-color: #f5f5f5;
  --accent-color: #c3ac5f;
  --text-dark: #000000;
  --text-light: #a7a7a7;
  --text-gray: #767676;
  --bg-light: #f5f5f5;
  --bg-dark: #3c3c3c;
  --white: #ffffff;
  --header-bg: #faf7f2;
  --gold-gradient: linear-gradient(135deg, #d8ca7f 0%, #9e9357 100%);
  --silver-gradient: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
  --bronze-gradient: linear-gradient(135deg, #cd7f32 0%, #a45710 100%);
  --button-gradient: linear-gradient(180deg, #f6ecc8 0%, #c3ac5f 100%);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.15);
  --mv-bg-height: 600px;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    max-width: unset;
    padding: 0;
  }
}

/* 表示制御 */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* セクション共通 */
section {
  padding: 100px 0;
  position: relative;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* ボタンスタイリング */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 900;
  font-size: 38px;
  line-height: 0.63;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  width: 768px;
}

.btn--primary {
  background: var(--button-gradient);
  color: var(--primary-color);
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.3);
}

.btn--secondary {
  background: var(--primary-color);
  color: var(--button-gradient);
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn--white {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn__arrow {
  width: 24px;
  height: 28px;
  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
  transform: translateY(-50%) translateX(10px);
}

.btn--cta {
  width: 768px;
  height: 96px;
  background: linear-gradient(180deg, #f6ecc8 0%, #c3ac5f 36.54%);
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  border-radius: 0;
}
.btn--cta.entryoff{
  pointer-events: none;
  opacity: .5 !important;
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 4px 8px 8px 0px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.btn--cta .btn__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.63;
  color: var(--primary-color);
  text-align: center;
}

.btn--cta .btn__arrow {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 28px;
  background: var(--primary-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width: 768px) {
  .btn--cta {
    width: 100%;
    height: 72px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #f6ecc8 0%, #c3ac5f 100%);
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #a80000;
  }

  .btn--cta .btn__text {
    color: #a80000;
    font-size: 24px;
  }

  .btn--cta .btn__arrow {
    right: 24px;
    width: 15.57px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #a80000;
  }
}

/* メインビジュアル */
.mv {
  background: var(--primary-color);
  color: var(--white);
  margin-top: 86px;
  padding: 0;
  padding-bottom: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 430px;
}

@media (max-width: 768px) {
  .mv {
    margin-top: 60px;
    max-height: clamp(500px, 50vh, 600px);
    padding-bottom: 60px;
  }
}

@media (max-width: 376px) {
  .mv {
    margin-top: 60px;
    max-height: clamp(450px, 30vh, 600px);
    padding-bottom: 60px;
    min-height: 380px;
  }
}

.mv__container {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mv__container {
    padding: 0 16px;
    min-height: clamp(500px, 80vh, 800px);
  }
}

/* 背景画像 */
.mv__background-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .mv__background-images {
    min-height: clamp(460px, 75vh, 760px);
  }
}

.mv__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.mv__bg-image--sp {
  display: none;
}

@media (max-width: 768px) {
  .mv__bg-image--pc {
    display: none;
  }

  .mv__bg-image--sp {
    display: block;
    min-height: clamp(600px, 80vh, 800px);
    --mv-bg-height: clamp(600px, 80vh, 800px);
  }

  .mv__bg-image {
    background-position: top center;
    background-size: contain;
  }
}

/* メインコンテンツ */
.mv__content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .mv__content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(500px, 80vh, 800px);
    display: block;
  }
}

.mv__text-content {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .mv__text-content {
    margin-bottom: 40px;
    min-height: clamp(500px, 80vh, 800px);
    width: 100%;
  }
}

.mv__title-image {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.mv__title-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
}

/* タイトル画像のレスポンシブ */
.mv__title-image--sp {
  display: none;
}

@media (max-width: 768px) {
  .mv__title-image--pc {
    display: none;
  }

  .mv__title-image--sp {
    display: block;
  }
}

.mv__title-sp-01 {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mv__title-sp-01 {
    width: clamp(70px, 14vw, 95px);
    height: auto;
    position: absolute;
    left: -16px;
    display: block;
    filter: drop-shadow(0.48px 0.95px 0.95px rgba(0, 0, 0, 0.25));
  }
}

.mv__title-sp-02 {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mv__title-sp-02 {
    width: 73%;
    max-width: unset;
    position: absolute;
    top: clamp(180px, 25vh, 358px);
    left: 18%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0.79px 1.58px 1.58px rgba(0, 0, 0, 0.25));
  }
}

/* バッジ */
.mv__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: -140px;
  z-index: 10;
  /* h1タグのデフォルトスタイルをリセット */
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media (max-width: 768px) {
  .mv__badge {
    align-items: flex-start;
    width: 239px;
    max-width: 239px;
    position: absolute;
    left: 21%;
    top: clamp(250px, 38vh, 550px);
    gap: 6.76px;
  }
}

@media (max-width: 376px) {
  .mv__badge {
    align-items: flex-start;
    width: 239px;
    max-width: 239px;
    position: absolute;
    left: 21%;
    top: clamp(250px, 35vh, 570px);
    gap: 6.76px;
  }
}

.mv__badge-alpron {
  background: var(--text-dark);
  color: var(--white);
  padding: 8px 22px;
  width: 235px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.47;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
}

@media (max-width: 768px) {
  .mv__badge-alpron.mv__badge--sp {
    font-size: 20px;
    min-width: auto;
    width: auto;
    height: 40.98px;
    justify-content: flex-start;
    padding: 4.55px 12.52px;
    line-height: 1.47;
  }
}

.mv__badge-project {
  background: var(--text-dark);
  color: var(--white);
  padding: 8px 22px;
  width: 683px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.47;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
}

@media (max-width: 768px) {
  .mv__badge-project.mv__badge--sp {
    font-size: 20px;
    min-width: auto;
    width: auto;
    max-width: 239px;
    height: 40.3px;
    justify-content: flex-start;
    padding: 4.55px 12.52px;
    line-height: 1.47;
  }
}

/* スマホ版で使用する3分割バッジ（PC版では非表示） */
.mv__badge-athlete {
  background: var(--text-dark);
  color: var(--white);
  padding: 8px 22px;
  display: none; /* PC版では非表示 */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.47;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
}

@media (max-width: 768px) {
  .mv__badge-athlete.mv__badge--sp {
    font-size: 20px;
    min-width: auto;
    width: auto;
    height: 40.3px;
    justify-content: flex-start;
    padding: 4.55px 12.52px;
    line-height: 1.47;
    display: flex;
  }
}

/* PC/SP バッジの表示制御 */
.mv__badge--sp {
  display: none; /* PC版では非表示 */
}

.mv__badge--pc {
  display: flex; /* PC版では表示 */
}

@media (max-width: 1024px) {
  .mv__badge-project.mv__badge--pc {
    min-width: auto;
    max-width: 100%;
  }

  .mv__badge-alpron.mv__badge--pc {
    min-width: auto;
    max-width: 100%;
  }

  .mv__badge-athlete.mv__badge--sp {
    min-width: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mv__badge--pc {
    display: none; /* スマホ版では非表示 */
  }

  .mv__badge--sp {
    display: flex; /* スマホ版では表示 */
  }
}

/* === First Section === */
.first {
  background: var(--primary-color);
  position: relative;
  padding: 0;
  margin-top: -1px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .first {
    padding: 0 16px;
  }
}

.first__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .first__inner {
    padding: 0;
  }
}

.first__content {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.first__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .first__intro {
    gap: 16px;
    margin-bottom: 24px;
  }
}

.first__title-image {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .first__title-image {
    line-height: 1.2;
    text-align: left;
    width: 70%;
    height: auto;
  }
}

.first__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .first__subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }
}

.first__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 768px;
}

@media screen and (max-width: 768px) {
  .first__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    margin: 0 auto;
    width: 100%;
  }
}

.first__support-info {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .first__support-info {
    flex-direction: column;
    gap: 24px;
    margin-top: 64px;
  }
}

.support-detail {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .support-detail {
    padding: 24px 16px;
    gap: 8px;
  }
}

.support-detail__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .support-detail__icon {
    width: 48px;
    height: 48px;
  }
}

.support-detail__icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--primary-color);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .support-detail__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.6;
  }
}

.support-detail__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.support-detail__main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .support-detail__main {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
  }
}

.support-detail__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .support-detail__note {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
  }
}

/* 支援内容 */
.first__support-contents {
  margin-top: 120px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .first__support-contents {
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 装飾画像 */
.first__decoration {
  position: absolute;
  z-index: 1;
}

.first__decoration--01 {
  top: -50px;
  left: -104px;
  width: 247px;
  height: 247px;
}

@media screen and (max-width: 768px) {
  .first__decoration--01 {
    top: 287px;
    left: -70px;
    width: 160px;
    height: auto;
  }
}

@media screen and (max-width: 376px) {
  .first__decoration--01 {
    top: 297px;
    left: -70px;
    width: 140px;
    height: auto;
  }
}

.first__decoration--02 {
  top: 390px;
  left: -4px;
  width: 101px;
  height: 130px;
}

@media screen and (max-width: 768px) {
  .first__decoration--02 {
    top: 920px;
    left: -24px;
    width: 80px;
    height: auto;
  }
}

@media screen and (max-width: 376px) {
  .first__decoration--02 {
    top: 930px;
    left: -24px;
    width: 70px;
    height: auto;
  }
}

.first__decoration--03 {
  top: 437px;
  left: -72px;
  width: 119px;
  height: 142px;
}

@media screen and (max-width: 768px) {
  .first__decoration--03 {
    top: 1130px;
    left: 220px;
    width: 90px;
    height: auto;
  }
}

@media screen and (max-width: 376px) {
  .first__decoration--03 {
    top: 1120px;
    left: 220px;
    width: 80px;
    height: auto;
  }
}

.first__decoration--04 {
  top: 95px;
  right: -110px;
  width: 261px;
  height: 261px;
}

@media screen and (max-width: 768px) {
  .first__decoration--04 {
    top: 590px;
    left: 300px;
    width: 140px;
    height: auto;
  }
}

@media screen and (max-width: 376px) {
  .first__decoration--04 {
    top: 590px;
    left: 250px;
    width: 130px;
    height: auto;
  }
}

.first__decoration--05 {
  top: 374px;
  right: -200px;
  width: 382px;
  height: 356px;
}

@media screen and (max-width: 768px) {
  .first__decoration--05 {
    top: 1070px;
    left: 230px;
    width: 230px;
    height: auto;
  }
}

@media screen and (max-width: 376px) {
  .first__decoration--05 {
    top: 1060px;
    left: 210px;
    width: 220px;
    height: auto;
  }
}

/* 商品情報 */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .product-info {
    gap: 8px;
    margin-bottom: 40px;
  }
}

.product-info__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
  text-align: left;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .product-info__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
  }
}

.product-info__list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  text-align: left;
  max-width: 1024px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .product-info__list {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
  }
}

.product-info__list p {
  margin: 0;
}

.product-info__list a {
  color: white;
  text-decoration: underline;
  transition: var(--transition);
}

.product-info__list a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* CTA */
.first__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .first__cta {
    gap: 4px;
    width: 100%;
    margin: 0 auto;
  }
}

.cta-message {
  margin: 0;
}

.cta-message__lines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .cta-message__lines {
    gap: 11.095807075500488px;
  }
}

.cta-message__line {
  width: 3px;
  height: 36px;
  background: var(--white);
  transform: rotate(45deg);
}

.cta-message__line--left {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .cta-message__line {
    height: 23.07px;
    border-width: 2.0804638862609863px;
  }
}

.cta-message__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta-message__text {
    font-size: 0.89rem;
    font-weight: 900;
    line-height: 1.6;
  }
}

/* セクションタイトル */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  margin-bottom: 56px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.95;
  color: #a80000;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .section-title__text {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.38;
  }
}

.section-title__background {
  width: 48px;
  height: 9px;
  background: #a80000;
}

@media screen and (max-width: 768px) {
  .section-title__background {
    width: 40px;
    height: 5px;
  }
}

.section-title__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  margin: 8px 0 0 0;
}

@media screen and (max-width: 768px) {
  .section-title__subtitle {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .section-title__background {
    width: 40px;
    height: 5px;
  }
}

/* サポートティア */
.support-tiers {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto 32px;
}

@media screen and (max-width: 768px) {
  .support-tiers {
    flex-direction: column;
    gap: 40px;
    margin: 0 auto 40px;
  }
}

.tier-card {
  width: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
  .tier-card {
    width: 100%;
  }
}

.tier-card__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .tier-card__header {
    padding: 16px;
    gap: 32px;
  }
}

.tier-card--gold .tier-card__header {
  background: var(--gold-gradient);
}

.tier-card--silver .tier-card__header {
  background: var(--silver-gradient);
}

.tier-card--bronze .tier-card__header {
  background: var(--bronze-gradient);
}

.tier-card__title {
  font-family: "Noto Sans JP", sans-serif;
  color: black;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
}

@media screen and (max-width: 768px) {
  .tier-card__title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.07;
  }
}

.tier-card__count {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
}

.tier-card__number {
  font-family: "Alumni Sans", sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.63;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .tier-card__number {
    font-size: 64px;
    font-weight: 700;
    line-height: 0.69;
  }
}

.tier-card__unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: black;
}

.tier-card__content {
  background: var(--white);
  padding: 24px 16px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.tier-card__amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .tier-card__amount {
    flex-direction: row;
  }
}

.tier-card__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--text-dark);
}

.tier-card__price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
}

.tier-card__price-number {
  font-family: "Alumni Sans", sans-serif;
  font-size: 106px;
  font-weight: 800;
  line-height: 0.66;
  color: var(--primary-color);
  text-align: center;
}

.tier-card__price-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .tier-card__price-unit {
    width: 100%;
  }
}

.tier-card__benefits {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: disc;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .tier-card__benefits {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.6;
  }
}

/* 特別賞 */
.special-award {
  background: var(--white);
  padding: 40px 0;
  text-align: center;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto 32px;
}

@media screen and (max-width: 768px) {
  .special-award {
    padding: 24px 0;
    gap: 24px;
    margin-bottom: 40px;
  }
}

.special-award__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .special-award__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.17;
  }
}

.special-award__benefits {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: disc;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .special-award__benefits {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }
}

.special-award__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.33;
  color: var(--text-dark);
  text-align: left;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .special-award__item {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
    list-style: disc;
  }
}

/* ======================== */
/* CTA Section */
/* ======================== */
.cta {
  background-color: var(--primary-color);
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  margin: 0 auto;
  height: 586px;
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 72px 0;
    height: auto;
    gap: 32px;
  }
  .cta .container {
    padding: 0 16px;
  }
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.cta__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta__bg-image--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .cta__bg-image--pc {
    display: none;
  }

  .cta__bg-image--sp {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .cta__inner {
    padding: 0;
    gap: 32px;
    max-width: none;
    width: 100%;
  }
}

/* SNSセクション */
.cta__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .cta__sns {
    width: 100%;
  }
}

.cta__sns-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .cta__sns-title {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
  }
}

.cta__sns-buttons {
  display: flex;
  justify-content: space-between;
  width: 768px;
}

@media screen and (max-width: 768px) {
  .cta__sns-buttons {
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    justify-content: center;
  }
}

.cta__sns-button {
  width: 180px;
  height: 72px;
  border: 3px solid var(--white);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.cta__sns-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  .cta__sns-button {
    width: 32%;
    height: 64px;
    padding: 0 24px;
    border: 3px solid var(--white);
  }
}

@media (max-width: 376px) {
  .cta__sns-button {
    width: 31%;
    height: 64px;
    padding: 0 24px;
    border: 3px solid var(--white);
  }
}

.cta__sns-button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta__sns-button-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }
}

/* オンラインショップ */
.cta__shop {
  width: 768px;
}

@media screen and (max-width: 768px) {
  .cta__shop {
    width: 100%;
  }
}

.cta__shop-button {
  width: 100%;
  height: 72px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: var(--transition);
}

.cta__shop-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta__shop-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .cta__shop-content {
    flex-direction: column;
    gap: 1px;
  }
}

.cta__shop-logo {
  width: 200px;
  height: auto;
  position: relative;
  top: -4px;
}

@media screen and (max-width: 768px) {
  .cta__shop-logo {
    width: 150px;
    height: auto;
  }
}

.cta__shop-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta__shop-text {
    font-size: 18.455px;
  }
}

.cta__shop-arrow {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 28px;
  background-color: var(--text-dark);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.3s ease;
}

.cta__shop-button:hover .cta__shop-arrow {
  transform: translateY(-50%) translateX(10px);
}

@media screen and (max-width: 768px) {
  .cta__shop-arrow {
    right: 24px;
    width: 17px;
    height: 18px;
  }
}

/* =================================
   代表からのメッセージ（message）セクション
   ================================= */

.message {
  padding: 0;
  z-index: 10;
  margin-bottom: -40px;
  position: relative;
}

.message__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .message__inner {
    padding: 0 16px;
    max-width: unset;
    width: auto;
  }
}

/* メッセージヘッダーは共通のsection-titleを使用 */

.message__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
  max-width: 896px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .message__content {
    flex-direction: column-reverse;
    gap: 24px;
    text-align: center;
  }
}

.message__image-container {
  flex-shrink: 0;
  width: 368px;
  height: 333px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .message__image-container {
    width: 280px;
    height: 250px;
    margin: 0 auto;
    margin-top: -80px;
    z-index: 1;
  }
}

.message__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message__text-container {
  flex: 1;
  max-width: 518px;
}

@media (max-width: 768px) {
  .message__text-container {
    max-width: unset;
    text-align: left;
    width: 100%;
    z-index: 10;
  }
}

.message__title {
  font-family: "Toppan BunkyuMinchoPr6N", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: left;
}

@media (max-width: 768px) {
  .message__title {
    font-size: 20px;
    text-align: left;
    width: 100%;
  }
}

.message__author-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .message__author-info {
    text-align: left;
  }
}

.message__position {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.message__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.message__project-thoughts {
  width: 896px;
  margin: 0 auto;
  background-color: var(--primary-dark);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

@media (max-width: 768px) {
  .message__project-thoughts {
    width: auto;
    max-width: 400px;
    padding: 40px 16px;
  }
}

.project-thoughts__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .project-thoughts__title {
    font-size: 24px;
  }
}

.project-thoughts__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-thoughts__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .project-thoughts__text {
    font-size: 14px;
  }
}
/* =================================
   応援コメント（comment）セクション
   ================================= */

.comment {
  padding: 0;
  background-color: var(--primary-color);
  margin-top: -1px;
}

.comment .container {
  background: white;
  padding: 80px 0;
  margin-top: -1px;
}
.comment.cheer .container {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .comment {
    padding: 0;
  }

  .comment .container {
    max-width: calc(100% - 32px);
    padding: 40px 0;
  }
  .comment.cheer .container {
    padding-top: 24px;
  }
}

.comment__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* コメントヘッダーは共通のsection-titleを使用 */

/* コメントサブタイトル */
.comment__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-bottom: 56px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.comment__subtitle-line {
  flex: 1;
  height: 0;
  border-top: 3px solid #a80000;
}

.comment__subtitle-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #000000;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.comment__subtitle-text-line1::after {
  content: "\A";
  white-space: pre;
}

@media screen and (max-width: 768px) {
  .comment__subtitle {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
    max-width: 319px;
  }

  .comment__subtitle-line {
    width: 100%;
    flex: none;
  }

  .comment__subtitle-text {
    font-size: 16px;
    white-space: normal;
  }

  .comment__subtitle-text-line1::after {
    content: none;
  }
}

.comment__content {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.comment__grid {
  display: flex;
  flex-direction: column;
  gap: 104px;
}

@media screen and (max-width: 768px) {
  .comment__grid {
    gap: 80px;
  }
}

.comment__item {
  width: 100%;
}

.comment__card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

/* 偶数番目のカードは写真を右側に配置 */
.comment__card--reverse {
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .comment__card {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  /* モバイルでは偶数番目も通常の縦並びレイアウト */
  .comment__item:nth-child(even) .comment__card {
    flex-direction: column-reverse;
  }
}

.comment__image {
  flex-shrink: 0;
  width: 264px;
  height: 264px;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.comment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .comment__image {
    width: 140px;
    height: 140px;
  }
}

.comment__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .comment__info {
    gap: 32px;
  }
}

.comment__name-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment__name {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .comment__name {
    font-size: 20px;
  }
}

.comment__sport {
  font-size: 14px;
  font-weight: 500;
  color: #a7a7a7;
  line-height: 1.43;
}

.comment__career {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .comment__career {
    font-size: 12px;
    line-height: 1.5;
  }
}

.comment__message-section {
  background-color: #f5f5f5;
  padding: 24px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .comment__message-section {
    padding: 20px 16px;
  }
}

.comment__message-label {
  position: absolute;
  top: -20px;
  left: 0;
  font-family: "Alumni Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #a80000;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .comment__message-label {
    width: 108px;
    height: auto;
    top: -18px;
  }
}

.comment__message-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .comment__message-text {
    font-size: 14px;
    text-align: left;
  }
}
/* =================================
   審査員紹介（judge）セクション
   ================================= */

.judge {
  padding: 0 0 40px;
}

.judge .container {
  padding: 0 0 40px;
  margin-top: -1px;
}

@media screen and (max-width: 768px) {
  .judge .container {
    max-width: calc(100% - 32px);
    padding: 0 0 24px;
  }
}

.judge__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 審査員タイトルは共通のsection-titleを使用 */

.judge__content {
  display: flex;
  flex-direction: column;
  gap: 96px;
  max-width: 896px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .judge__content {
    gap: 60px;
  }
}

.judge__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .judge__item {
    gap: 16px;
  }
}

.judge__card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .judge__card {
    flex-direction: row;
    gap: 24px;
    align-items: start;
    text-align: left;
  }
}

.judge__image {
  flex-shrink: 0;
  width: 152px;
  height: 152px;
  overflow: hidden;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.judge__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .judge__image {
    width: 120px;
    height: 120px;
  }
}

.judge__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 704px;
}

@media screen and (max-width: 768px) {
  .judge__info {
    max-width: none;
    max-height: none;
    align-items: left;
  }
}

.judge__name-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.judge__name {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .judge__name {
    font-size: 22px;
  }
}

.judge__position {
  font-size: 14px;
  font-weight: 500;
  color: #a7a7a7;
  line-height: 1.43;
}

.judge__description {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.43;
}

@media screen and (max-width: 768px) {
  .judge__description {
    font-size: 0.75rem;
  }
}

.judge__message {
  border: 1px solid #767676;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  .judge__message {
    margin-left: 0;
    padding: 12px;
  }
}

.judge__message-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .judge__message-text {
    font-size: 0.75rem;
  }
}

/* =================================
   SNSキャンペーン（sns）セクション
   ================================= */

.sns {
  padding: 120px 0;
  background-color: var(--bg-gray);
  position: relative;
}

@media (max-width: 768px) {
  .sns {
    padding: 80px 0;
  }
}

.sns__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .sns__inner {
    padding: 0 16px;
  }
}

.sns__header {
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .sns__header {
    margin-bottom: 56px;
  }
}

.sns__title {
  font-family: "Toppan BunkyuMinchoPr6N", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .sns__title {
    font-size: 28px;
  }
}

.sns__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .sns__subtitle {
    font-size: 16px;
  }
}

.sns__campaign {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .sns__campaign {
    gap: 32px;
  }
}

.sns__campaign-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .sns__campaign-image {
    max-width: 100%;
  }
}

.sns__campaign-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  max-width: 600px;
}

@media (max-width: 768px) {
  .sns__campaign-description {
    font-size: 14px;
  }
}

.sns__button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.sns__button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sns__button {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* ======================== */
/* Entry Section */
/* ======================== */
.entry {
  background-color: #a80000;
  padding: 120px 0;
  position: relative;
  margin-top: -1px;
}

.entry__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.entry__intro {
  text-align: center;
  margin-bottom: 60px;
}

/* 白バージョンのセクションタイトル */
.section-title--white .section-title__text {
  color: #ffffff;
}

.section-title--white .section-title__background {
  background-color: #ffffff;
}

.section-title--white .section-title__subtitle {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .section-title--white .section-title__text {
    font-size: 24px;
  }
}

.entry__intro-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 900;
}

.entry__content {
  background-color: #ffffff;
  padding: 80px 32px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 896px;
  margin: 0 auto;
}

.entry__requirements {
  display: flex;
  justify-content: start;
  gap: 48px;
  align-items: stretch;
  align-self: stretch;
}

.requirements-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.requirements-section__title {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.requirements-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.requirements-list__bullet {
  width: 8px;
  height: 8px;
  background-color: #a80000;
  border-radius: 50%;
  flex-shrink: 0;
}

.requirements-list__text {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.requirements-divider {
  width: 1px;
  background-color: #767676;
  flex-shrink: 0;
  align-self: stretch;
}

.requirements-columns {
  display: flex;
  gap: 24px;
}

.requirements-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Entry CTA Message（赤い背景用のCTA） */
.entry__cta-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.entry__cta-message .cta-message__line {
  background: #a80000;
}

.entry__cta-message .cta-message__text {
  color: #a80000;
}

.entry__cta-message .btn--cta {
  background: #a80000;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.entry__cta-message .btn--cta .btn__text {
  background: linear-gradient(180deg, #f6ecc8 0%, #c3ac5f 36.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.entry__cta-message .btn--cta .btn__arrow {
  background: linear-gradient(180deg, #f6ecc8 0%, #c3ac5f 36.54%);
}

/* 応募規約セクション */
.entry__terms {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.entry__terms-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1em;
  color: #000000;
  text-align: center;
  margin: 0;
}

.entry__terms-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6em;
  color: #000000;
  text-align: left;
  margin: 0;
  padding: 16px;
  list-style: none;
  width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* スクロール対応 */
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  background-color: #fafafa;
  /* スクロールバーのスタイル調整 */
  scrollbar-width: thin;
}

/* Webkit系ブラウザ用スクロールバーのスタイル */
.entry__terms-text::-webkit-scrollbar {
  width: 8px;
}

.entry__terms-text::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.entry__terms-text::-webkit-scrollbar-thumb {
  background: #c3ac5f;
  border-radius: 4px;
}

.entry__terms-text::-webkit-scrollbar-thumb:hover {
  background: #a89352;
}

.entry__terms-text li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6em;
  color: #000000;
  text-align: left;
  margin: 0;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .entry {
    padding: 80px 0;
  }

  .entry__inner {
    padding: 0 15px;
  }

  .entry__intro {
    margin-bottom: 40px;
  }

  .section-title--white .section-title__text {
    font-size: 24px;
  }

  .section-title--white .section-title__background {
    width: 40px;
    height: 5px;
  }

  .entry__intro-text {
    font-size: 16px;
  }

  .entry__content {
    padding: 40px 16px;
    gap: 48px;
  }

  .entry__requirements {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .requirements-divider {
    width: 100%;
    height: 1px;
    order: 1;
  }

  .requirements-section:first-child {
    order: 0;
  }

  .requirements-section:last-child {
    order: 2;
  }

  .requirements-section {
    width: auto;
  }

  .requirements-section__title {
    font-size: 18px;
    text-align: center;
  }

  .requirements-columns {
    flex-direction: column;
    gap: 16px;
  }

  .requirements-list__text {
    font-size: 13px;
  }

  .entry__cta-text {
    font-size: 20px;
  }

  .entry__cta-button-text {
    font-size: 28px;
  }

  .entry__cta-button-arrow {
    right: 20px;
    width: 20px;
    height: 24px;
  }

  .entry__terms-title {
    font-size: 20px;
    line-height: 1.2em;
  }

  .entry__terms-text {
    font-size: 13px;
    gap: 6px;
    max-height: 300px;
    padding: 15px;
  }

  .entry__terms-text li {
    font-size: 13px;
  }
}

/* ======================== */
/* Flow Timeline Section */
/* ======================== */
.flow {
  padding: 0 0 120px;
  background-color: var(--bg-light);
  margin-top: -1px;
}
.flow .container {
  background-color: var(--bg-light);
  padding: 0x;
}
.flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow__timeline {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.timeline__item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.timeline__date {
  width: 95px;
  height: 200px;
  background-color: #a80000;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.timeline__date-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  width: 100%;
  height: 100%;
  gap: 0;
}

.timeline__year {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

.timeline__date-range {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.timeline__date-part {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline__day {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.timeline__weekday {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.714;
  color: #ffffff;
  text-align: center;
}

.timeline__time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin-top: 2px;
}

.timeline__separator {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  transform: rotate(90deg);
}

.timeline__content {
  background-color: #ffffff;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  height: calc(200px - 48px); /* 高さを調整 */
}

.timeline__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.167;
  color: #a80000;
  margin: 0;
}

.timeline__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

.timeline__description a {
  text-decoration: underline;
}

.timeline__item::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #a80000;
  z-index: 10;
}

/* 最後のアイテムには矢印を表示しない */
.timeline__item:last-child::after {
  display: none;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .flow {
    padding: 0 16px 80px;
  }

  .flow .container {
    padding: 0;
  }
  .flow__timeline {
    padding: 0 15px;
  }

  .timeline {
    gap: 40px;
  }

  .timeline__item {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .timeline__date {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 0;
    align-self: flex-start;
  }
  .timeline__date-inner {
    padding: 16px 8px;
  }

  .timeline__date-range {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .timeline__year {
    font-size: 14px;
  }

  .timeline__day {
    font-size: 20px;
  }

  .timeline__weekday {
    font-size: 12px;
  }

  .timeline__time {
    font-size: 13px;
  }

  .timeline__separator {
    font-size: 14px;
    transform: rotate(0deg);
  }

  .timeline__content {
    padding: 40px 16px;
    width: calc(100% - 32px);
    margin-left: 0;
  }

  .timeline__title {
    font-size: 20px;
  }

  .timeline__description {
    font-size: 14px;
  }

  .timeline__item::after {
    bottom: -16px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #a80000;
  }
}

/* ======================== */
/* SNS Campaign Section */
/* ======================== */
.sns {
  background-color: #ffffff;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0;
}

.sns__header {
  width: 760px;
  height: 200px;
  margin-bottom: 80px;
}

.sns__header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sns__inner {
  max-width: 760px;
  width: 100%;
  padding: 0 20px;
}

.sns__campaign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 56px;
  margin-bottom: 40px;
}

.sns__visual {
  flex-shrink: 0;
}

.sns__phone-container {
  width: 242px;
  height: 190px;
  position: relative;
}

.sns__phone-circle {
  width: 242px;
  height: 242px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns__phone-image {
  width: 280px;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: -87px;
  left: -19px;
}

.sns__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sns__text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.sns__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #a80000;
  margin: 0;
}

.sns__hashtag {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.6;
  color: #a80000;
  margin: 0;
}

.sns__prize {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.6;
  color: #a80000;
  margin: 0;
}

.sns__notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.sns__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

.sns__deadline {
  background-color: #a80000;
  padding: 4px 0;
}

.sns__deadline-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.sns__instagram-feed {
  margin: 0 auto;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .sns {
    padding: 80px 16px;
    width: auto;
  }

  .sns__header {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }

  .sns__inner {
    padding: 0;
  }

  .sns__campaign {
    flex-direction: column;
    gap: 90px;
    text-align: center;
    padding-bottom: 40px;
  }

  .sns__phone-container {
    width: 180px;
    height: 184px;
  }

  .sns__phone-circle {
    width: 180px;
    height: 180px;
  }

  .sns__phone-image {
    width: 200px;
    height: 368px;
    top: -62px;
    left: -10px;
  }

  .sns__text {
    font-size: 16px;
  }

  .sns__hashtag {
    font-size: 1.24rem;
  }

  .sns__prize {
    font-size: 1.3rem;
  }

  .sns__note {
    font-size: 13px;
  }

  .sns__deadline-text {
    font-size: 1.1rem;
  }

  .sns__instagram-feed {
    width: 100%;
  }
}

/* FAQ */
.faq {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.faq__header {
  display: flex;
  justify-content: center;
}

.faq__content {
  width: 100%;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background-color: #ffffff;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__question {
  padding: 32px 24px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq__question:hover {
  background-color: #fafafa;
}

.faq__question-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq__question-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #a80000;
  flex-shrink: 0;
}

.faq__question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.333;
  color: #000000;
  margin: 0;
}

.faq__question-icon {
  width: 12px;
  height: 8px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}

.faq__question-icon svg {
  width: 100%;
  height: 100%;
}

.faq__item.is-open .faq__question-icon {
  transform: rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 1000px;
}

.faq__answer-content {
  padding: 32px 24px;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq__answer-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #a7a7a7;
  flex-shrink: 0;
}

.faq__answer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.333;
  color: #000000;
  margin: 0;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq__inner {
    padding: 0 20px;
  }

  .faq__question {
    padding: 20px 16px;
  }

  .faq__question-label,
  .faq__answer-label {
    font-size: 20px;
  }

  .faq__question-text,
  .faq__answer-text {
    font-size: 16px;
  }

  .faq__answer-content {
    padding: 24px 16px;
  }
}

/* 装飾要素 */
.under {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 267px;
  z-index: 1;
  pointer-events: none;
}

.under.under__gray {
  background-color: var(--primary-color);
}

.under svg {
  width: 100%;
  height: 100%;
  display: block;
}

.upper {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 267px;
  z-index: 1;
  pointer-events: none;
}

.upper svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .under,
  .upper {
    height: 150px;
  }

  .under {
    top: -1px;
  }
}

/* メッセージセクションに相対位置を設定 */
.message {
  position: relative;
}

/* コメントセクションに相対位置を設定 */
.comment {
  position: relative;
}

/* First Section - スマートフォン対応 */
@media screen and (max-width: 768px) {
  .first__inner {
    padding: 0;
  }

  .first__content {
    margin: 0 auto;
  }

  .first__intro {
    gap: 16px;
    margin-bottom: 24px;
  }

  .first__title-image {
    line-height: 1.2;
    text-align: left;
    width: 70%;
    height: auto;
  }

  .first__subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
  }

  .first__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    margin: 0 auto;
    width: 100%;
  }

  .first__support-info {
    flex-direction: column;
    gap: 24px;
    margin-top: 64px;
  }

  .support-detail {
    padding: 24px 16px;
    gap: 8px;
  }

  .support-detail__icon {
    width: 48px;
    height: 48px;
  }

  .support-detail__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.6;
  }

  .support-detail__main {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
  }

  .support-detail__note {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
  }

  /* 支援内容セクション */
  .first__support-contents {
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title__text {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.38;
  }

  .section-title__background {
    width: 40px;
    height: 5px;
  }

  .support-tiers {
    flex-direction: column;
    gap: 40px;
    margin: 0 auto 40px;
  }

  .tier-card {
    width: 100%;
  }

  .tier-card__header {
    padding: 16px;
    gap: 32px;
  }

  .tier-card__amount {
    flex-direction: row;
  }

  .tier-card__title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.07;
  }

  .tier-card__number {
    font-size: 64px;
    font-weight: 700;
    line-height: 0.69;
  }

  .tier-card__unit {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
  }

  .tier-card__content {
    padding: 24px 16px;
    gap: 24px;
  }

  .tier-card__label {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.6;
  }

  .tier-card__price-number {
    font-size: 106px;
    font-weight: 800;
    line-height: 0.66;
  }

  .tier-card__price-unit {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.6;
    width: 100%;
  }

  .tier-card__benefits {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.6;
  }

  /* 特別賞 */
  .special-award {
    padding: 24px 0;
    gap: 24px;
    margin-bottom: 40px;
  }

  .special-award__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.17;
  }

  .special-award__benefits {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }

  .special-award__item {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.5;
    list-style: disc;
  }

  /* 装飾要素 */
  .first__decoration--01 {
    top: 287px;
    left: -70px;
    width: 160px;
    height: auto;
  }

  .first__decoration--02 {
    top: 920px;
    left: -24px;
    width: 80px;
    height: auto;
  }

  .first__decoration--03 {
    top: 1130px;
    left: 220px;
    width: 90px;
    height: auto;
  }

  .first__decoration--04 {
    top: 590px;
    left: 300px;
    width: 140px;
    height: auto;
  }

  .first__decoration--05 {
    top: 1070px;
    left: 230px;
    width: 230px;
    height: auto;
  }

  /* 商品情報 */
  .product-info {
    gap: 8px;
    margin-bottom: 40px;
  }

  .product-info__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
  }

  .product-info__list {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
  }

  /* CTAボタン */
  .first__cta {
    gap: 4px;
    width: 100%;
    margin: 0 auto;
  }

  .cta-message__lines {
    gap: 11.095807075500488px;
  }

  .cta-message__line {
    height: 23.07px;
    border-width: 2.0804638862609863px;
  }

  .cta-message__text {
    font-size: 0.89rem;
    font-weight: 900;
    line-height: 1.6;
  }

  .btn--cta {
    width: 100%;
    height: 72px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #f6ecc8 0%, #c3ac5f 100%);
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #a80000;
  }

  .btn--cta .btn__text {
    color: #a80000;
  }

  .btn--cta .btn__arrow {
    right: 24px;
    width: 15.57px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #a80000;
  }
}
@media screen and (max-width: 376px) {
  /* 装飾要素 */
  .first__decoration--01 {
    top: 297px;
    left: -70px;
    width: 140px;
    height: auto;
  }

  .first__decoration--02 {
    top: 930px;
    left: -24px;
    width: 70px;
    height: auto;
  }

  .first__decoration--03 {
    top: 1120px;
    left: 220px;
    width: 80px;
    height: auto;
  }

  .first__decoration--04 {
    top: 590px;
    left: 250px;
    width: 130px;
    height: auto;
  }

  .first__decoration--05 {
    top: 1060px;
    left: 210px;
    width: 220px;
    height: auto;
  }
}
