@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/******************************
* design tokens
*******************************/
:root {
  /* color */
  --c-dark: #231816;
  --c-dark-2: #2d2321;
  --c-cream: #fff;
  --c-gold: #B28D27;
  --c-gold-light: #f3d873;
  --c-text-dark: #2a1d18;
  --c-white: #fff;
  --c-line-gold: rgba(201, 169, 97, 0.55);

  /* font family */
  --font-base: "Noto Serif JP", serif;
  --font-en: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* gold gradient for text clipping */
  --grad-gold-text: linear-gradient(180deg, #f7e6a6 0%, #e6c46a 48%, #c89a44 100%);

  /* PC左右の金帯（応募締切バンド）共通の高さ */
  --h-gold-band: clamp(72px, 9vh, 96px);

  /* ヘッダーの高さ（固定/sticky時のスクロール調整に使用） */
  --h-header: 60px;

  /* spacing */
  --space-section-sm: 48px;
  --space-section-md: 64px;
  --space-section-lg: 88px;

  /* font size (1rem = 16px) */
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-25: 1.5625rem;
  --fs-26: 1.625rem;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  /* 固定/stickyヘッダー分を考慮してアンカー位置を下げる */
  scroll-padding-top: calc(var(--h-header) + 8px);
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: var(--font-base);
  line-height: 1.6;
  color: #333;
  background-color: var(--c-white);
  font-size: var(--fs-16);
  font-feature-settings: "palt";
}

a {
  color: inherit;
  text-decoration: none;
}

:where(:focus-visible) {
  outline: 3px solid #f3d873;
  outline-offset: 2px;
}

.l-inner {
  margin: 0 auto;
  width: 89.33%;
}

/******************************
* layout : 3カラム（PCで両サイドにビジュアル/メニュー）
*******************************/
.lp-wrapper {
  display: grid;
  grid-template-columns: 1fr 375px 1fr;
  grid-template-areas: "g01 g02 g03";
  align-items: start;
  background-color: var(--c-dark);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255, 255, 255, 0.025) 5px, rgba(255, 255, 255, 0.025) 6px);
}

.l-container {
  grid-area: g02;
  position: relative;
  width: 375px;
}

@media (max-width: 1024px) {
  .lp-wrapper {
    display: block;
  }
  .l-container {
    width: 375px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .l-container {
    width: 100%;
    box-shadow: none;
  }
}

/* PC左：メニューパネル */
.lp-fixnav {
  grid-area: g01;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: var(--c-dark);
}
.lp-fixnav__top {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 4%;
}
.lp-fixnav__logo {
  align-self: flex-start;
  width: clamp(220px, 40%, 286px);
}
.lp-fixnav__visual {
  width: clamp(240px, 78%, 380px);
  margin-top: clamp(12px, 2vw, 28px);
}
.lp-fixnav__cta {
  margin-top: clamp(16px, 2vw, 24px);
  width: 100%;
  max-width: 360px;
}
.lp-fixnav__nav {
  margin-top: 16px;
  width: 100%;
  max-width: 480px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-fixnav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 4px;
  border: 1px solid var(--c-cream);
  border-radius: 6px;
  color: var(--c-cream);
  font-size: clamp(var(--fs-16), 1.4vw, var(--fs-22));
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.lp-fixnav__link:hover {
  background-color: var(--c-gold-light);
  color: var(--c-text-dark);
}
.lp-fixnav__deadline {
  margin-top: 28px;
  display: grid;
  align-content: center;
  justify-content: center;
  height: var(--h-gold-band);
  padding: 8px 24px;
  background: url(../img/pc/pc_bottom_label.png) no-repeat center / cover;
  color: var(--c-text-dark);
  text-align: left;
}
.lp-fixnav__deadline-head {
  display: block;
  font-size: var(--fs-14);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
}
.lp-fixnav__deadline-date {
  display: block;
  margin-top: 4px;
  font-size: clamp(var(--fs-16), 1.5vw, var(--fs-22));
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* PC：画面高さが低い端末（ノートPCなど）で1画面に収まるよう縮小
   1920px幅モニターでもブラウザのタブ/ブックマークバー分を引いた実効高さ
   （およそ940〜980px）で金帯まで収まるよう、1000px以下から縮小を効かせる */
@media (min-width: 1025px) and (max-height: 1000px) {
  .lp-fixnav__top {
    padding: 24px 4%;
  }
  .lp-fixnav__visual {
    width: clamp(200px, 55%, 300px);
    margin-top: clamp(10px, 1.6vw, 20px);
  }
  .lp-fixnav__cta {
    margin-top: clamp(12px, 1.6vw, 18px);
  }
  .lp-fixnav__nav {
    margin-top: 12px;
    gap: 8px;
  }
  .lp-fixnav__link {
    min-height: 44px;
  }
  .lp-fixnav__deadline {
    margin-top: 20px;
  }
}

@media (min-width: 1025px) and (max-height: 768px) {
  .lp-fixnav__top {
    padding: 16px 4%;
  }
  .lp-fixnav__logo {
    width: clamp(180px, 32%, 220px);
  }
  .lp-fixnav__visual {
    width: clamp(160px, 42%, 240px);
    margin-top: 10px;
  }
  .lp-fixnav__cta {
    margin-top: 12px;
  }
  .lp-fixnav__nav {
    margin-top: 10px;
  }
  .lp-fixnav__link {
    min-height: 40px;
  }
  .lp-fixnav__deadline {
    margin-top: 16px;
  }
}

/* PC右：ビジュアルパネル */
.lp-pc-mv {
  grid-area: g03;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--c-dark);
}
.lp-pc-mv__visual {
  flex: 1;
  min-height: 0;
}
.lp-pc-mv__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.lp-pc-mv__title {
  position: absolute;
  top: clamp(40px, 6vh, 80px);
  left: 50%;
  transform: translateX(-50%);
  width: min(86%, 1055px);
  margin: 0;
  z-index: 1;
}
.lp-pc-mv__title img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-pc-mv__band {
  flex-shrink: 0;
  height: var(--h-gold-band);
  background: url(../img/pc/pc_bottom_label.png) no-repeat center / cover;
}

@media (max-width: 1024px) {
  .lp-pc-mv {
    display: none;
  }
  /* 左パネルを全画面ドロワー化（ヘッダーより下のレイヤー） */
  .lp-fixnav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 90;
    height: 100dvh;
    overflow-y: auto;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }
  .lp-fixnav.is-open {
    transform: none;
    visibility: visible;
  }
  /* リサイズ中はドロワーのアニメを止めてチラつきを防ぐ */
  .is-resizing .lp-fixnav {
    transition: none;
  }
  .lp-fixnav__logo {
    display: none;
  }
  .lp-fixnav__top {
    margin-top: 0;
    padding-top: 84px;
  }
  .lp-fixnav__deadline {
    margin-bottom: 0;
  }
  body.is-menuOpen {
    overflow: hidden;
  }
}

/******************************
* header
*******************************/
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  background-color: var(--c-dark);
}
.c-logo {
  width: 180px;
}

/* ハンバーガーボタン（スマホ・タブのみ表示） */
.l-header__toggle {
  display: none;
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(251, 246, 227, 0.5);
  cursor: pointer;
}
.l-header__bar {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--c-cream);
  transition: background-color 0.2s ease;
}
.l-header__bar::before,
.l-header__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--c-cream);
  transition: transform 0.3s ease, top 0.3s ease;
}
.l-header__bar::before {
  top: -7px;
}
.l-header__bar::after {
  top: 7px;
}
.l-header__toggle.is-open .l-header__bar {
  background-color: transparent;
}
.l-header__toggle.is-open .l-header__bar::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header__toggle.is-open .l-header__bar::after {
  top: 0;
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  .l-header__toggle {
    display: block;
  }
}

/* SP：ヘッダーを画面上部に固定 */
@media (max-width: 767px) {
  .l-header {
    position: fixed;
    left: 0;
    right: 0;
  }
  /* 固定ヘッダー分だけ本文を下げる */
  .l-main {
    padding-top: var(--h-header);
  }
}

/******************************
* main : ダーク基調の連続カラム（上部のみ角丸）
*******************************/
.l-main {
  background-color: var(--c-dark);
}

/******************************
* MV
*******************************/
.mv__hero img {
  display: block;
  width: 100%;
}

.mv__deadline {
  display: grid;
  justify-content: center;
  padding: 11px 12px;
  background: url(../img/sp/mv_label.png) no-repeat center / cover;
  color: var(--c-text-dark);
  text-align: left;
}
.mv__deadline-head {
  display: block;
  font-size: var(--fs-13);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
}
.mv__deadline-date {
  display: block;
  margin-top: 2px;
  font-size: clamp(var(--fs-15), 4.4vw, var(--fs-18));
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mv__second {
  background: url(../img/sp/bg_secondsection.png) no-repeat top center / 100% 100%;
}

.mv__lead {
  padding: 10px 20px 0;
  text-align: center;
  color: var(--c-cream);
}
.mv__lead-text {
  font-size: var(--fs-20);
  line-height: 1.5;
  font-weight: 900;
  background: var(--c-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;  
}
.mv__prize {
  margin-top: 14px;
}
.mv__prize-main {
  display: block;
  font-size: clamp(var(--fs-22), 6.6vw, 29px);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  background: var(--c-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mv__prize-sub {
  display: block;
  margin-top: -4px;
  font-size: var(--fs-21);
  font-weight: var(--font-weight-medium);
  color: var(--c-gold);
}
.mv__prize .u-numLg {
  font-size: 1.9em;
}

.mv__nav {
  padding: 30px 20px 20px;
}
.mv__nav-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  color: var(--c-gold);
  font-size: var(--fs-15);
  font-weight: var(--font-weight-regular);
}
.mv__nav-head::before,
.mv__nav-head::after {
  content: "▼";
  font-size: 0.75em;
}
.mv__nav-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mv__nav-link {
  position: relative;
  margin: 0 auto;
  width: 79%;  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 40px;
  border: 1px solid var(--c-white);
  border-radius: 6px;
  color: var(--c-cream);
  font-size: var(--fs-18);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.mv__nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 22px;
  height: 8px;
  transform: translateY(-50%);
  background-color: var(--c-white);
  -webkit-mask: url(../img/sp/icon_arrow.svg) no-repeat center / contain;
  mask: url(../img/sp/icon_arrow.svg) no-repeat center / contain;
  transition: background-color 0.3s ease;
}
.mv__nav-link:hover {
  background-color: var(--c-gold-light);
  color: var(--c-text-dark);
}
.mv__nav-link:hover::after {
  background-color: var(--c-text-dark);
}

/* 後続セクションのアンカー位置調整 */
section[id] {
  scroll-margin-top: 16px;
}

/******************************
* c-label : ゴールドのリボン見出しラベル（各セクション共通）
*******************************/
.c-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100px;
  aspect-ratio: 149 / 65;
  margin: 0 auto;
  padding-top: 11px;
  background: url(../img/sp/bg_ribbon.png) no-repeat top center / 100% 100%;
  color: #3a2a12;
  font-family: var(--font-en);
  font-size: var(--fs-11);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  white-space: nowrap;
}

/******************************
* c-sectionTitle : 各セクションの見出し（c-label とセットで hgroup 内に配置）
*******************************/
.c-sectionTitle {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--c-gold);
}
.c-sectionTitle--lg {
  margin-top: 8px;
  font-size: clamp(2.25rem, 13.87vw, 3.25rem);
}
.c-sectionTitle--sm {
  margin-top: 10px;
  font-size: clamp(1.375rem, 7.47vw, 1.75rem);
}

/******************************
* c-card : 各セクションの白カード（賞品・対象商品・応募方法 共通）
*******************************/
.c-card {
  position: relative;
  margin: 0 20px;
  padding: 0 24px 36px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 28%, #dadada 100%);
}

/******************************
* 賞品
*******************************/
.prize__card {
  padding-bottom: 40px;
}
.prize__img {
  width: 70%;
  margin: 26px auto 0;
}
.prize__name {
  width: fit-content;
  max-width: 100%;
  margin: 10px auto 0;
  border-bottom: 1px solid var(--c-dark);
  color: var(--c-dark);
  font-size: var(--fs-22);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.prize__count {
  margin-top: 4px;
  color: var(--c-gold);
  font-size: var(--fs-18);
  text-align: center;
}
.prize__desc {
  margin-top: 22px;
  color: #3c3530;
  font-size: var(--fs-15);
  line-height: 1.55;
  font-weight: var(--font-weight-medium);
}
.prize__note {
  font-size: 80%;
  font-weight: var(--font-weight-regular);
}

/******************************
* 対象商品
*******************************/
.target__card {
  margin-top: 20px;
  background: var(--c-white);
}
.target__lead {
  margin-top: 4px;
  color: var(--c-dark);
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: center;
}
.target__note {
  font-size: var(--fs-13);
}
.target__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.target__item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.target__thumb {
  flex: 0 0 46%;
}
.target__body {
  flex: 1 1 auto;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a1d18;
}
.target__year {
  display: block;
  color: #3c3530;
  font-size: var(--fs-13);
}
.target__name {
  display: block;
  color: var(--c-dark);
  font-size: var(--fs-20);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

/******************************
* c-btnLine : ダーク地のアウトラインボタン（チャンネル誘導等）
*******************************/
.c-btnLine {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 4px 28px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #fff;
  border-radius: 6px;
  background-color: var(--c-dark-2);
  color: var(--c-cream);
  font-size: var(--fs-18);
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btnLine:hover {
  background-color: var(--c-gold-light);
  color: var(--c-text-dark);
}

/* c-btnGoldFlat : 金グラデのべた塗りボタン（PC左「応募フォームはこちら」等） */
.c-btnGoldFlat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 6px;
  background: linear-gradient(180deg, #d8b85a 0%, #c2a049 50%, #a87f33 100%);
  color: #fff;
  font-size: var(--fs-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  text-align: center;
  transition: filter 0.3s ease;
}
.c-btnGoldFlat:hover {
  filter: brightness(1.08);
}

/******************************
* インフルエンサー（PR Movie）
*******************************/
.movie {
  margin-top: var(--space-section-sm);
}
.movie__inner {
  position: relative;
  padding: 0 20px;
}
.movie__lead {
  margin-top: 16px;
  color: var(--c-cream);
  font-size: var(--fs-15);
  line-height: 1.5;
  text-align: center;
}
.movie__video {
  margin-top: 14px;
  aspect-ratio: 16 / 9;
  background-color: #000;
}
.movie__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.movie__profile {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0 7%;
}
.movie__avatar {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--c-cream);
  background-image: url("../img/sp/img_face.png");
  background-position: center;
  background-size: cover;
}
.movie__profile-name {
  color: var(--c-cream);
  font-family: var(--font-sans);
  font-size: var(--fs-16);
  font-weight: var(--font-weight-bold);
}
.movie__profile-role {
  margin-left: 0.8em;
  font-size: var(--fs-13);
  font-weight: var(--font-weight-regular);
}
.movie__text {
  margin-top: 13px;
  padding: 0 1.5em;
  color: var(--c-cream);
  font-size: var(--fs-15);
  line-height: 1.5;
}
.movie__note {
  font-size: var(--fs-12);
}
.movie__btn {
  margin-top: 16px;
}

/******************************
* 応募方法（How to Entry）
*******************************/
.entry {
  margin-top: var(--space-section-md);
}
.entry__lead {
  margin-top: 18px;
  color: var(--c-dark);
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: center;
}
.entry__steps {
  margin-top: 24px;
}
.entry__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.entry__step {
  padding-bottom: 12px;
  margin-bottom: 34px;
  border-bottom: 2px solid #707070;
}
.entry__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 13px 13px 0 13px;
  border-color: #707070 transparent transparent transparent;
}
.entry__badge {
  flex: 0 0 56px;
  width: 56px;
  margin-top: 2px;
}
.entry__step-title {
  color: var(--c-dark);
  font-size: var(--fs-18);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.entry__step-text {
  margin-top: 0;
  color: #3c3530;
  font-size: var(--fs-14);
  line-height: 1.5;
}

/******************************
* レシート撮影の注意点（Receipt Notes）
*******************************/
.receipt {
  margin-top: var(--space-section-sm);
}
.receipt__inner {
  position: relative;
  padding: 0 20px;
}
.receipt__required {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}
.receipt__sample {
  flex: 0 0 46%;
}
.receipt__items {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.receipt__items-head {
  color: var(--c-cream);
  font-size: var(--fs-15);
  font-weight: var(--font-weight-bold);
}
.receipt__items-list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.receipt__items-list li {
  padding-top: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px dotted #fff;
  color: var(--c-cream);
  font-size: var(--fs-15);
}
.receipt__items-list .u-en {
  margin-right: 0.2em;
  color: var(--c-gold-light);
  font-weight: var(--font-weight-bold);
}

.receipt__case {
  margin-top: 40px;
  text-align: center;
}
.receipt__case-label {
  position: relative;
  margin: 0 auto;
  width: 85%;  
  font-size: var(--fs-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  background: var(--c-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 2px solid var(--c-gold);
}
.receipt__case-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 13px 13px 0 13px;
  border-color: var(--c-gold) transparent transparent transparent;
}
/* NG例：見出し左に吹き出しの×アイコン */
.receipt__case-label--ng::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -7px;
  width: 24px;
  height: 28px;
  margin-right: 4px;
  vertical-align: middle;
  background: url(../img/sp/icon_ng.svg) no-repeat top center / contain;
}

.receipt__case-title {
  margin-top: 16px;
  color: var(--c-gold);
  font-size: var(--fs-18);
  font-weight: var(--font-weight-bold);
}
.receipt__ok {
  margin: 18px auto 0;
  width: 80%;
  background-color: #fff;
}
.receipt__note {
  margin: 14px auto 0;
  width: 80%;
  color: var(--c-cream);
  font-size: var(--fs-12);
  line-height: 1.5;
  text-align: left;
}

.receipt__ng {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.receipt__ng li {
  position: relative;
  margin: 0 auto;
  width: 85%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px 2px 36px;
  border: 1px solid var(--c-cream);
  border-radius: 6px;
  color: var(--c-cream);
  font-size: var(--fs-14);
  font-weight: var(--font-weight-medium);
  text-align: center;
}
.receipt__ng li::before {
  content: "×";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-cream);
  font-family: var(--font-en);
  font-size: var(--fs-16);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
.receipt__format {
  margin: 15px auto 0;
  width: 85%;    
  color: var(--c-cream);
}
.receipt__format-head {
  font-size: var(--fs-14);
  font-weight: var(--font-weight-bold);
}
.receipt__format-text { 
  font-size: var(--fs-14);
  line-height: 1.6;
  font-weight: var(--font-weight-medium);
}

/******************************
* 応募概要（Terms）
*******************************/
.terms {
  margin-top: var(--space-section-sm);
}
.terms__inner {
  position: relative;
  margin: 0 20px;
  padding: 0 24px 36px;
  background-color: var(--c-white);
}
.terms__list {
  margin-top: 26px;
}
.terms__row {
  padding: 16px 0;
}
.terms__row:first-child {

}
.terms__dt {
  color: var(--c-text-dark);
  font-size: var(--fs-15);
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid #707070;
}
.terms__dt::before {
  content: "●";
  margin-right: 0.5em;
  font-size: 0.6em;
  vertical-align: 0.2em;
}
.terms__dd {
  margin-top: 8px;
  color: #3c3530;
  font-size: var(--fs-18);
  font-weight: var(--font-weight-bold);
  line-height: 1.7;
}
.terms__note {
  font-size: var(--fs-14);
}
/* 応募回数・当選制限から下：dtの下線なし・本文14px */
.terms__row--list .terms__dt {
  border-bottom: none;
}
.terms__row--list .terms__dt,
.terms__row--list .terms__dd {
  font-size: var(--fs-14);
  font-weight: var(--font-weight-medium);
}
.terms__sublist {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.terms__sublist li {
  position: relative;
  padding-left: 1.1em;
}
.terms__sublist li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/******************************
* c-accordion : summary/details アコーディオン（応募規約・FAQ 共通）
*******************************/
.c-accordion {
  border: 1px solid #cfcccc;
  border-radius: 6px;
  background-color: var(--c-white);
  overflow: hidden;
}
.c-accordion + .c-accordion {
  margin-top: 10px;
}
.c-accordion__summary {
  position: relative;
  padding: 6px 44px 6px 16px;
  color: var(--c-text-dark);
  font-size: var(--fs-15);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}
.c-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-accordion__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid #8c8c8c;
  border-bottom: 2px solid #8c8c8c;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.c-accordion[open] .c-accordion__summary::after {
  margin-top: -2px;
  transform: rotate(-135deg);
}
.c-accordion__body {
  padding: 0 16px 16px;
  color: var(--c-text-dark);
  font-size: var(--fs-12);
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
}
.c-accordion__body a {
  color: inherit;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.c-accordion__bullets {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-accordion__bullets--spaced,
.c-accordion__lead--spaced {
  margin-top: 1.5em;
}
.c-accordion__bullets li {
  position: relative;
  padding-left: 1.1em;
}
.c-accordion__bullets li::before {
  content: "○";
  position: absolute;
  top: 0.5em;
  left: 0;
  font-size: 0.7em;
}
.c-accordion__nums {
  margin-top: 4px;
}
.c-accordion__nums li {
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.c-accordion__nums li::before {
  content: none;
}
.c-accordion--faq {
  border-color: transparent;
  background-color: #e8dcc2;
}

/******************************
* 応募規約（Rules）／terms__inner 内に内包
*******************************/
.rules__title {
  margin-top: 44px;
}
.rules__lead {
  margin-top: 22px;
  color: #3c3530;
  font-size: var(--fs-14);
  line-height: 1.9;
}
.rules__list {
  margin-top: 24px;
}

/******************************
* よくある質問（FAQ）／terms__inner 内に内包
*******************************/
.faq__title {
  margin-top: 44px;
}
.faq__list {
  margin-top: 22px;
}

/******************************
* 応募フォームへ（同意CTA）／terms__inner 内に内包
*******************************/
.applyCta {
  margin-top: 44px;
  text-align: center;
}
.applyCta__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.applyCta__checkbox {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  accent-color: var(--c-gold);
  cursor: pointer;
}
.applyCta__check-text {
  color: var(--c-text-dark);
  font-size: var(--fs-18);
  font-weight: var(--font-weight-bold);
}
.c-btnGold {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 574 / 120;
  background: url(../img/sp/bg_btn_gold.png) no-repeat center / cover;
  color: #3a2a12;
  font-size: var(--fs-25);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity 0.3s ease;
}
.c-btnGold.is-disabled {
  opacity: 0.4;
  filter: grayscale(0.4);
  pointer-events: none;
}
.applyCta__note {
  margin-top: 12px;
  color: #6b6460;
  font-size: var(--fs-12);
}

/******************************
* お問い合わせ（Contact）
*******************************/
.contact {
  margin-top: var(--space-section-md);
}
.contact__inner {
  padding: 0 20px;
  margin: 0 auto;
  width: 92%;
}
.contact__title {
  font-size: clamp(1.375rem, 7.47vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  background: var(--c-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact__org {
  margin-top: 22px;
  color: var(--c-cream);
  font-size: var(--fs-16);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-align: center;
}
.contact__org-sub {
  font-size: var(--fs-13);
  font-weight: var(--font-weight-regular);
}
.contact__info {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__info-row {
  display: flex;
  gap: 12px;
  color: var(--c-cream);
  font-size: var(--fs-14);
  line-height: 1.6;
}
.contact__info-dt {
  flex: 0 0 60px;
  font-weight: var(--font-weight-bold);
}
.contact__info-dd {
  flex: 1 1 auto;
}
.contact__notes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--c-cream);
  font-size: var(--fs-12);
  line-height: 1.7;
}
.contact__notes li {
  padding-left: 1em;
  text-indent: -1em;
}

/******************************
* footer
*******************************/
.l-footer {
  padding: 28px 20px 32px;
  background-color: var(--c-dark);
  color: var(--c-cream);
  text-align: center;
}
.l-footer__host {
  font-size: var(--fs-13);
  line-height: 1.7;
}
.l-footer__host::before {
  content: "";
  display: block;
  width: 85%;
  height: 1px;
  margin: 4px auto 22px;
  background-color: #938b88;
}
.l-footer__host-label {
  display: block;
  margin-bottom: 4px;
  color: var(--c-cream);
  font-weight: var(--font-weight-medium);
}
.l-footer__link {
  margin-top: 18px;
  font-size: var(--fs-13);
}
.l-footer__link a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.l-footer__copy {
  margin-top: 18px;
  font-size: var(--fs-12);
  color: var(--c-cream);
}

/******************************
* utility
*******************************/
.u-en {
  font-family: var(--font-en);
}

/* 数字を一回り大きく見せる装飾（応募締切バンドの月/日/時/分など） */
.u-numLg {
  font-size: 1.45em;
}

/******************************
* print : 白地・黒文字で可読性を確保
* （ダーク背景／明色テキスト／グラデーションのクリップ文字対策）
*******************************/
@media print {
  /* レイアウトを1カラム化し、両サイドの装飾パネルは印刷しない */
  .lp-wrapper {
    display: block;
  }
  .lp-fixnav,
  .lp-pc-mv {
    display: none !important;
  }
  .l-container {
    width: auto;
  }
  /* すべて白地・黒文字に統一。background-clip:text のゴールド見出しも実色化 */
  *,
  *::before,
  *::after {
    background: #fff !important;
    background-image: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}
