@charset "UTF-8";
/* =========================================================
   home.scss — AWCP 本サイト トップページ固有
   設定は _setting.scss を参照（全体共通スタイルは common.scss）
   メディアクエリ: @include media1024 / media900 / media640
   ========================================================= */
/* =========================================================
   AWCP 本サイト 固有トークン（プロジェクト追記 / 2026-06-25）
   ※ ここより上は社内標準。以下が本案件の設定。
   ========================================================= */
/* =========================================================
   hero
   ========================================================= */
.hero {
  position: relative;
  height: 185vh;
}
@media only screen and (max-width: 900px) {
  .hero {
    height: auto;
  }
}

.hero_sticky {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 0 0 56px;
}
@media only screen and (max-width: 900px) {
  .hero_sticky {
    position: static;
    min-height: 0;
    height: auto;
    padding: 24px 0 56px;
  }
}

.hero_inner {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: 0;
}
@media only screen and (max-width: 900px) {
  .hero_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
    padding: 0 22px;
  }
}

.hero_body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(360px, 38vw, 544px);
  padding-right: 32px;
}
@media only screen and (max-width: 900px) {
  .hero_body {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 640px;
    width: 100%;
    padding-right: 0;
    margin: 0 auto;
  }
}

.hero_eyebrow {
  margin-bottom: 18px;
}
.hero_eyebrow .hero_eyebrow_main {
  display: block;
  color: #066191;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.hero_eyebrow .hero_eyebrow_sub {
  display: block;
  color: #066191;
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-top: 8px;
  white-space: nowrap;
}

.hero_title {
  color: #066191;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 57px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

.hero_lead {
  color: #066191;
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.6;
  margin-bottom: 22px;
}
.hero_lead::after {
  content: "";
  display: block;
  width: 240px;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #12a391), color-stop(25%, #f4962d), color-stop(50%, #cd3846), color-stop(75%, #066191));
  background: linear-gradient(90deg, #12a391 0 25%, #f4962d 25% 50%, #cd3846 50% 75%, #066191 75% 100%);
  margin-top: 12px;
}

.hero_text {
  color: #066191;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  margin-bottom: 30px;
}

.hero_cta {
  margin-bottom: 20px;
}
.hero_cta .btn_primary {
  width: 100%;
  max-width: 512px;
  min-width: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: clamp(20px, 2.7vw, 40px);
  padding: 16px 20px;
  border-radius: 14px;
  gap: 6px;
}
.hero_cta .btn_primary .btn_primary_label {
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.hero_cta .btn_primary .btn_primary_arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(20px, 2.3vw, 30px);
  height: clamp(20px, 2.3vw, 30px);
}
.hero_cta .btn_primary .btn_primary_arrow path {
  stroke-width: 2.4;
}

.hero_note {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #066191;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 24px);
}
.hero_note .hero_note_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #066191;
}
.hero_note .hero_note_em {
  color: #cd3846;
}

/* ---- hero visual : 卵型写真（クリップ済み透過PNG）＋円バッジ。Figma: 画像幅820px(60%) ---- */
.hero_visual {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .hero_visual {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

.hero_badge {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: clamp(124px, 13vw, 178px);
  height: clamp(124px, 13vw, 178px);
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 150deg, #f4962d 0deg 108deg, #cd3846 108deg 200deg, #12a391 200deg 360deg);
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.hero_badge .hero_badge_text {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  color: #066191;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.6;
}

/* =========================================================
   ヒーロー テキスト入場アニメーション（ローディング完了後）
   ========================================================= */
html.hero-anim .hero_eyebrow, html.hero-anim .hero_title, html.hero-anim .hero_lead,
html.hero-anim .hero_text, html.hero-anim .hero_cta, html.hero-anim .hero_note {
  opacity: 0;
  -webkit-transform: translateY(22px);
          transform: translateY(22px);
  -webkit-transition: none;
  transition: none;
}
html.hero-anim .hero_visual {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}

html.hero-revealed .hero_eyebrow {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
html.hero-revealed .hero_title {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.85s ease, -webkit-transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.85s ease, -webkit-transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.85s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.85s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}
html.hero-revealed .hero_lead {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}
html.hero-revealed .hero_text {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}
html.hero-revealed .hero_cta {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
html.hero-revealed .hero_note {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.82s;
          transition-delay: 0.82s;
}
html.hero-revealed .hero_visual {
  opacity: 1;
  -webkit-transition: opacity 1.1s ease;
  transition: opacity 1.1s ease;
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html.hero-anim .hero_eyebrow, html.hero-anim .hero_title, html.hero-anim .hero_lead,
  html.hero-anim .hero_text, html.hero-anim .hero_cta, html.hero-anim .hero_note, html.hero-anim .hero_visual {
    -webkit-transform: none;
            transform: none;
  }
  html.hero-revealed .hero_eyebrow, html.hero-revealed .hero_title, html.hero-revealed .hero_lead,
  html.hero-revealed .hero_text, html.hero-revealed .hero_cta, html.hero-revealed .hero_note {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
  }
}
/* =========================================================
   whats : なぜアニマルウェルフェアが大切なのか（写真カード版）
   ========================================================= */
.whats {
  padding: 80px 0 120px;
}
@media only screen and (max-width: 640px) {
  .whats {
    padding: 48px 0 80px;
  }
}

.whats_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 56px;
}
@media only screen and (max-width: 900px) {
  .whats_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.whats_body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30%;
}
@media only screen and (max-width: 900px) {
  .whats_body {
    width: 100%;
  }
}

.whats_title {
  color: #066191;
  font-weight: 700;
  font-size: clamp(18px, 1.85vw, 24px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.whats_title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #f4962d;
  margin-top: 20px;
}

.whats_text {
  color: #066191;
  font-weight: 400;
  font-size: clamp(14px, 1.39vw, 18px);
  line-height: 2;
  margin-bottom: 24px;
}

.whats_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #066191;
  font-weight: 400;
  font-size: clamp(13px, 1.24vw, 16px);
  border: 1.5px solid #066191;
  border-radius: 100px;
  padding: 8px 16px;
}
.whats_link:link, .whats_link:visited {
  color: #066191;
}
.whats_link:hover {
  opacity: 1;
  background: rgba(77, 180, 214, 0.15);
  color: #066191;
  border-color: #066191;
}

.whats_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 640px) {
  .whats_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

.whats_card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(6, 97, 145, 0.2);
          box-shadow: 0 4px 20px rgba(6, 97, 145, 0.2);
}

.whats_card_img_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: rgb(213.9006622517, 239.6940397351, 253.2993377483);
}
.whats_card_img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.whats_card_badge {
  position: absolute;
  bottom: -24px;
  left: 10px;
  width: 48px;
  height: 48px;
  display: block;
  z-index: 1;
}
.whats_card_badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.whats_card_body {
  padding: 34px 16px 18px;
}

.whats_card_title {
  font-weight: 700;
  font-size: clamp(15px, 1.85vw, 24px);
  color: #066191;
  margin-bottom: 8px;
}

.whats_card_text {
  font-size: 14px;
  line-height: 1.85;
  color: #066191;
}

/* =========================================================
   共通：オレンジ丸マーク付きテキストリンク（award 等）
   ========================================================= */
.link_round {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #066191;
  font-weight: 700;
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.3;
}
.link_round:link, .link_round:visited {
  color: #066191;
}
.link_round:hover {
  opacity: 1;
  color: #f4962d;
}
.link_round .link_round_mark {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-transition: border-radius 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
  transition: border-radius 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
}
.link_round:hover .link_round_mark {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: link_blob 2.5s ease-in-out infinite;
          animation: link_blob 2.5s ease-in-out infinite;
}
.link_round .link_round_ext {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* =========================================================
   award : FOOD MADE GOOD アニマルウェルフェア賞（1カラム中央）
   ========================================================= */
.award {
  position: relative;
  padding: 120px 0 80px;
}
@media only screen and (max-width: 900px) {
  .award {
    padding: 80px 0 56px;
  }
}
.award::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14.44%;
  right: 14.44%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#12a391), color-stop(25%, #f4962d), color-stop(50%, #cd3846), color-stop(75%, #066191));
  background: linear-gradient(to right, #12a391 0% 25%, #f4962d 25% 50%, #cd3846 50% 75%, #066191 75% 100%);
}

.award_inner {
  width: min(800px, 100% - 48px);
  margin: 0 auto;
}

.award_title {
  text-align: center;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  color: #066191;
  margin-bottom: 56px;
}
.award_title .award_title_en {
  display: block;
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.award_title .award_title_ja {
  display: block;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.2;
  margin-top: 6px;
}

.award_photos {
  width: min(680px, 100%);
  margin: 0 auto 72px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 421fr 0 260fr;
  grid-template-columns: 421fr 260fr;
  -ms-grid-rows: 1fr 0 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  aspect-ratio: 681/347;
}

.award_photos > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.award_photos > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.award_photos > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.award_photos > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 640px) {
  .award_photos {
    width: 100%;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
  }
  .award_photos > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .award_photos > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .award_photos > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .award_photos > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}

.award_photo {
  margin: 0;
  overflow: hidden;
}
.award_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.award_photo_main {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media only screen and (max-width: 640px) {
  .award_photo_main {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    grid-row: 1;
    aspect-ratio: 585/483;
  }
}

.award_photo_sub {
  -ms-grid-column: 2;
  grid-column: 2;
}
@media only screen and (max-width: 640px) {
  .award_photo_sub {
    grid-column: auto;
    -ms-grid-row: 2;
    grid-row: 2;
    aspect-ratio: 361/241;
  }
}

.award_text {
  color: #066191;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.95;
  margin-bottom: 15px;
}

.award_link {
  margin-bottom: 88px;
}
@media only screen and (max-width: 900px) {
  .award_link {
    margin-bottom: 56px;
  }
}
.award_link ~ .award_link {
  margin-bottom: 0;
}

.award_aim_title {
  text-align: center;
  color: #066191;
  font-weight: 700;
  font-size: clamp(18px, 1.95vw, 24px);
  margin-bottom: 14px;
}
.award_aim_title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #12a391;
  margin: 14px auto 0;
}

.award_aims {
  counter-reset: aim;
  margin: 41px 0 32px;
}
.award_aims li {
  position: relative;
  padding-left: 24px;
  color: #066191;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.7;
}
.award_aims li + li {
  margin-top: 1px;
}
.award_aims li::before {
  counter-increment: aim;
  content: counter(aim) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #066191;
  font-weight: 700;
}

.award_note {
  color: #066191;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* =========================================================
   voice : 前回受賞(2025年) シェフの声
   ========================================================= */
.voice {
  padding: 0 0 120px;
}
@media only screen and (max-width: 900px) {
  .voice {
    padding: 0 0 72px;
  }
}

.voice_title {
  text-align: center;
  color: #066191;
  font-weight: 700;
  font-size: clamp(18px, 1.95vw, 24px);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}
.voice_title .voice_title_sep {
  margin: 0 0.4em;
}
.voice_title::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: #cd3846;
  margin: 22px auto 0;
}

.voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 56px 97px;
  max-width: 1137px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .voice_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    max-width: 560px;
  }
}

.voice_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 48.5px);
          flex: 0 1 calc(50% - 48.5px);
  min-width: 280px;
}
@media only screen and (max-width: 768px) {
  .voice_item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
}

.voice_card {
  display: block;
}
.voice_card:hover {
  opacity: 1;
}
.voice_card:hover .voice_shop {
  color: #f4962d;
}
.voice_card:hover .cv_card_more {
  color: #f4962d;
}
.voice_card:hover .cv_card_more_mark {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: link_blob 2.5s ease-in-out infinite;
          animation: link_blob 2.5s ease-in-out infinite;
}

.voice_thumb {
  position: relative;
  display: block;
  aspect-ratio: 520/292;
  border-radius: 14px;
  overflow: hidden;
  background: rgb(204.1059602649, 236.0463576159, 252.8940397351);
}
.voice_thumb img.voice_thumb_img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice_meta {
  display: block;
  padding: 16px 0 0;
}

.voice_catch {
  display: block;
  color: #12a391;
  font-weight: 700;
  font-size: clamp(16px, 1.85vw, 24px);
  line-height: 1.4;
  margin-bottom: 9px;
}

.voice_shop {
  display: block;
  color: #066191;
  font-weight: 700;
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.4;
  margin-bottom: 5px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.voice_tag {
  display: block;
  color: #066191;
  font-size: clamp(12px, 1.1vw, 14px);
  margin-top: 6px;
}

.cv_card_more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #066191;
  font-weight: 400;
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.3;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.cv_card_more_mark {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-transition: border-radius 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
  transition: border-radius 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
}

/* =========================================================
   campaign : キャンペーン概要
   ========================================================= */
.campaign {
  background: #f9f9f9;
  padding: 100px 0 48px;
}
@media only screen and (max-width: 900px) {
  .campaign {
    padding: 64px 0 32px;
  }
}

.campaign_title {
  margin-bottom: 52px;
}
.campaign_title::after {
  background: #12a391;
  width: 60px;
  height: 6px;
  border-radius: 0;
  margin-top: 28px;
}

.campaign_lead {
  max-width: 786px;
  margin: 0 auto 38px;
  text-align: left;
  color: #066191;
  font-size: clamp(16px, 1.85vw, 24px);
  line-height: 1.8;
}

.campaign_anno {
  max-width: 786px;
  margin: 0 auto 44px;
  text-align: left;
  color: #066191;
  font-size: clamp(15px, 1.4vw, 18px);
}

.campaign_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
  margin-bottom: 84px;
}
@media only screen and (max-width: 768px) {
  .campaign_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 480px;
    margin: 0 auto 48px;
  }
}

.campaign_card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px 26px;
  -webkit-box-shadow: 0 4px 20px rgba(6, 97, 145, 0.08);
          box-shadow: 0 4px 20px rgba(6, 97, 145, 0.08);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 16px 1fr;
  grid-template-columns: auto 1fr;
      grid-template-areas: "icon title" ". list";
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.campaign_card_icon {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: icon;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.campaign_card_icon img {
  width: 44px;
  height: 44px;
}

.campaign_card_title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: title;
  color: #066191;
  font-weight: 700;
  font-size: clamp(17px, 1.85vw, 24px);
}

.campaign_card_list {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: list;
  margin-top: 4px;
}
.campaign_card_list li {
  color: #066191;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
}
.campaign_card_list li + li {
  margin-top: 3px;
}

.campaign_card_list_num {
  list-style: none;
}

.campaign_card_text {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: list;
  margin-top: 4px;
  color: #066191;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
}

.campaign_block {
  max-width: 900px;
  margin: 0 auto;
}
.campaign_block + .campaign_block {
  margin-top: 70px;
}

.campaign_block_title {
  text-align: center;
  color: #066191;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.4;
  margin-bottom: 24px;
}

.campaign_merits li {
  position: relative;
  padding-left: 1.2em;
  color: #066191;
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.8;
}
.campaign_merits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #066191;
}

.campaign_outline div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 5px 0;
}
@media only screen and (max-width: 640px) {
  .campaign_outline div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
}
.campaign_outline dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #066191;
  font-weight: 400;
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.4;
  white-space: nowrap;
}
.campaign_outline .campaign_outline_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.campaign_outline dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #066191;
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.4;
}

/* =========================================================
   join_method : キャンペーン参加方法（slick 画像スライダー）
   ========================================================= */
.join_method {
  background: #f9f9f9;
  padding: 48px 0 100px;
  overflow-x: clip;
}
@media only screen and (max-width: 900px) {
  .join_method {
    padding: 32px 0 64px;
  }
}

.join_method_title {
  margin-bottom: 40px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
}
.join_method_title::after {
  display: none;
}

.join_method_slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.join_method_slider.slick-slider {
  position: relative;
  display: block;
}
.join_method_slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.join_method_slider .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.join_method_slider .slick-slide {
  height: inherit;
  min-height: 1px;
}
.join_method_slider .slick-slide > div {
  height: 100%;
}
.join_method_slider:not(.slick-initialized) .method_slide:not(:first-child) {
  display: none;
}
.join_method_slider .slick-prev, .join_method_slider .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 56px;
  height: 56px;
  z-index: 3;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.join_method_slider .slick-prev::before, .join_method_slider .slick-next::before {
  content: none;
}
.join_method_slider .slick-prev img, .join_method_slider .slick-next img {
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 640px) {
  .join_method_slider .slick-prev, .join_method_slider .slick-next {
    width: 44px;
    height: 44px;
  }
}
.join_method_slider .slick-prev {
  left: 220px;
}
@media only screen and (max-width: 1024px) {
  .join_method_slider .slick-prev {
    left: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .join_method_slider .slick-prev {
    left: 8px;
  }
}
.join_method_slider .slick-next {
  right: 220px;
}
@media only screen and (max-width: 1024px) {
  .join_method_slider .slick-next {
    right: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .join_method_slider .slick-next {
    right: 8px;
  }
}

.method_slide {
  padding: 0 12px;
}
.method_slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 66vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
@media only screen and (min-width: 641px) {
  .method_slide {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}

@media only screen and (min-width: 641px) {
  .join_method_slider .slick-slide:not(.slick-center) .method_slide {
    opacity: 0.45;
  }
}

/* =========================================================
   steps : 参加ステップ（縦連結カード）
   ========================================================= */
.steps {
  position: relative;
  isolation: isolate;
  padding: 190px 0 85px;
  overflow: clip;
}
@media only screen and (max-width: 900px) {
  .steps {
    padding: 60px 0 56px;
  }
}

.steps_title {
  margin-bottom: 65px;
}

.steps_dish_wrap {
  position: sticky;
  top: 0;
  height: 0;
  z-index: -1;
  pointer-events: none;
}

.steps_dish {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(360px, 58.4vw, 841px);
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.steps_dish.is_visible {
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .steps_dish {
    width: 420px;
  }
}
@media only screen and (max-width: 900px) {
  .steps_dish {
    display: none;
  }
}

.steps_list {
  max-width: 880px;
  margin: 46px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 63px;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .steps_list {
    gap: 34px;
    margin-top: 36px;
  }
}

.step_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  min-height: 180px;
  border: 2px solid #066191;
  border-radius: 9px;
  padding: 24px 48px;
  background: #fff;
}
.step_item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -64px;
  width: 2px;
  height: 63px;
  background: #066191;
}
@media only screen and (max-width: 640px) {
  .step_item {
    min-height: 0;
    padding: 22px 18px;
    gap: 14px;
  }
  .step_item:not(:last-child)::after {
    bottom: -35px;
    height: 34px;
  }
}

.step_num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 72px;
  height: 72px;
  background: #066191;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
}
@media only screen and (max-width: 640px) {
  .step_num {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

.step_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 96px;
  height: 96px;
  color: #066191;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step_icon svg, .step_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 640px) {
  .step_icon {
    width: 56px;
    height: 56px;
  }
}

.step_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.step_item_title {
  font-size: clamp(19px, 2.5vw, 36px);
  font-weight: 700;
  color: #066191;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.step_item_text {
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 400;
  color: #066191;
  margin-top: 6px;
  line-height: 1.5;
}

.step_item_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: clamp(13px, 1.4vw, 20px);
  color: #066191;
  margin-top: 4px;
  line-height: 1.5;
}

.step_note_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.step_note_em, .step_note_em:link, .step_note_em:visited {
  text-decoration: underline;
}
.step_note_em:hover {
  text-decoration: none;
}
.step_note_em, .step_note_em:link, .step_note_em:visited {
  color: #f4962d;
}

/* =========================================================
   join_cta : まずは1ヶ月、できるところから。
   ========================================================= */
.join_cta {
  padding: 81px 0 168px;
}
@media only screen and (max-width: 900px) {
  .join_cta {
    padding: 56px 0 100px;
  }
}
.join_cta .inner {
  position: relative;
}

.join_cta_inner {
  background: #12a391;
  border-radius: 20px;
  padding: 56px 64px 60px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .join_cta_inner {
    padding: 44px 24px 48px;
  }
}

.join_cta_title {
  color: #fff;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.3;
  margin-bottom: 18px;
}

.join_cta_text {
  color: #fff;
  font-size: clamp(15px, 1.85vw, 24px);
  line-height: 1.7;
  margin-bottom: 34px;
}

.btn_white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px 64px;
  max-width: 100%;
}
.btn_white:link, .btn_white:visited {
  color: #12a391;
}
.btn_white {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.btn_white:hover {
  opacity: 1;
  background: #12a391;
  border-color: #fff;
}
.btn_white:hover .btn_white_main, .btn_white:hover .btn_white_sub, .btn_white:hover .btn_white_arrow {
  color: #fff;
}
.btn_white .btn_white_main {
  color: #12a391;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.btn_white .btn_white_sub {
  color: #12a391;
  font-size: clamp(13px, 1.7vw, 24px);
  margin-top: 6px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.btn_white .btn_white_arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #12a391;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 640px) {
  .btn_white .btn_white_arrow {
    display: none;
  }
}

.join_cta_mascot {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: clamp(110px, 10.5vw, 155px);
  height: auto;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .join_cta_mascot {
    width: 90px;
    right: 1%;
  }
}
@media only screen and (max-width: 640px) {
  .join_cta_mascot {
    display: none;
  }
}

/* =========================================================
   sponsors : 主催・共催
   ========================================================= */
.sponsors {
  padding: 168px 0 40px;
}
@media only screen and (max-width: 900px) {
  .sponsors {
    padding: 33px 0 9px;
  }
}

.sponsors_title {
  margin-bottom: 116px;
}
@media only screen and (max-width: 640px) {
  .sponsors_title {
    margin-bottom: 39px;
  }
}
.sponsors_title::after {
  background: #cd3846;
}

.sponsors_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
}
@media only screen and (max-width: 768px) {
  .sponsors_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
    max-width: 524px;
    margin: 0 auto;
  }
}

.sponsors_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 524px;
          flex: 0 1 524px;
}
@media only screen and (max-width: 800px) {
  .sponsors_item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media only screen and (max-width: 640px) {
  .sponsors_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

.sponsors_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 130px;
}
.sponsors_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.sponsors_role {
  display: block;
  color: #066191;
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 24px);
  letter-spacing: 0.5em;
  margin-bottom: 10px;
}

.sponsors_name {
  color: #066191;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.6;
}

/* drawer の CSS は全ページ共通コンポーネントのため common.scss へ移設 */