/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}
body{margin:0}
main{display:block}
h1{font-size:2em;margin:.67em 0}
hr{box-sizing:content-box;height:0;overflow:visible}
pre{font-family:monospace,monospace;font-size:1em}
a{background-color:transparent}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-.25em}
sup{top:-.5em}
img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,input{overflow:visible}
button,select{text-transform:none}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}
[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}
fieldset{padding:.35em .75em .625em}
legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}
progress{vertical-align:baseline}
textarea{overflow:auto}
[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
details{display:block}
summary{display:list-item}
template{display:none}
[hidden]{display:none}

/* ========================================
   CSS Variables
   ======================================== */
:root {
  /* Colors */
  --c-white: #FFFFFF;
  --c-x-light-gray: #E8E8E8;
  --c-light-gray: #CCCCCC;
  --c-middle-gray: #999999;
  --c-dark-gray: #666666;
  --c-black: #000000;
  --c-red: #E4002B;
  --c-yellow: #FFDD00;

  /* Font */
  --ff-base: "Noto Sans JP", system-ui, sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* Font Size & Line Height */
  --fs-10: 0.625rem;
  --lh-10: 1.6;
  --fs-12: 0.75rem;
  --lh-12: 1.67;
  --fs-14: 0.875rem;
  --lh-14: 1.71;
  --fs-16: 1rem;
  --lh-16: 1.75;
  --fs-18: 1.125rem;
  --lh-18: 1.56;
  --fs-20: 1.25rem;
  --lh-20: 1.6;
  --fs-24: 1.5rem;
  --lh-24: 1.67;
  --fs-28: 1.75rem;
  --lh-28: 1.57;
  --fs-34: 2.125rem;
  --lh-34: 1.53;
  --fs-40: 2.5rem;
  --lh-40: 1.5;

  /* Spacing */
  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-64: 4rem;
  --space-80: 5rem;
  --space-120: 7.5rem;

  /* Container */
  --container-max: 960px;
  --section-padding: var(--space-16);
}

@media print, screen and (992px <= width) {
  :root {
    --section-padding: var(--space-24);
  }
}

/* ========================================
   Reset & Base
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* font-size: 100%; *//* htmlにはデフォルト値を採用し、アクセシビリティを確保 */
}
body {
  font-family: var(--ff-base);
  font-size: var(--fs-16);
  line-height: var(--lh-16);
  color: var(--c-black);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Main Content
   ======================================== */
.main {
  position: relative;
  background-image: url('/images/main-gb-pattern.png');
  background-repeat: repeat;
  background-size: 989px auto;
  background-position: center top;
  padding: 0 var(--space-24) 91px;
}
.main__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* メインビジュアル */
.main__visual {
  display: grid;
  margin: 0 auto;
}
@media screen and (width < 992px) {
  .main__visual {
    width: fit-content;
    margin: 0 auto var(--space-40);
    text-align: center;
  }
}
@media print, screen and (992px <= width) {
  .main__visual {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    margin-inline: var(--space-80);
  }
}
.main__visual-img {
  width: 300px;
  margin: 0 auto;
}
@media print, screen and (992px <= width) {
  .main__visual-img {
    width: 487px;
  }
}
@media screen and (width < 992px) {
  .main__fukubukuro {
    grid-column: 1 / 3;
  }
}

@media print, screen and (992px <= width) {
  .main__fukubukuro {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
}

/* バッジ */
.main__badge {
  text-align: center;
  margin-left: -21px;
}
@media screen and (width < 992px) {
  .main__badge {
    margin-top: -34px;
  }
}
@media print, screen and (992px <= width) {
  .main__badge {
    margin-left: -40px;
    margin-bottom: -18px;
  }
}
.main__badge-img {
  width: 175px;
}
@media print, screen and (992px <= width) {
  .main__badge-img {
    width: 299px;
  }
}

/* 価格 */
.main__price {
  text-align: center;
}
@media screen and (width < 992px) {
  .main__price {
    margin-top: 23px;
    margin-left: -9px;
  }
}
@media print, screen and (992px <= width) {
  .main__price {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    margin-bottom: 56px;
    margin-left: -44px;
  }
}
.main__price-img {
  width: 187px;
}
@media print, screen and (992px <= width) {
  .main__price-img {
    width: 321px;
  }
}

/* メインコンテンツ */
.main__content {
  /* 白パネルは .main__products に持たせる。ここは余白のみ */
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* テキスト1 */
.main__text1 {
  background-color: var(--c-white);
  display: grid;
  place-content: center;
  height: 98px;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto var(--space-16);
}
@media screen and (width < 992px) {
  .main__text1 {
    max-width: 520px;
  }
}
@media print, screen and (992px <= width) {
  .main__text1 {
    height: 52px;
  }
}
.main__text1-img {
  width: 173px;
}
@media print, screen and (992px <= width) {
  .main__text1-img {
    width: 590px;
  }
}

/* 商品画像グループ */
.main__products {
  background-color: var(--c-white);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: var(--space-8);
  margin: 0 auto var(--space-48);
  padding: var(--space-24);
}
@media screen and (width < 992px) {
  .main__products {
    max-width: 520px;
  }
}
@media print, screen and (992px <= width) {
  .main__products {
    display: grid;
    grid-template-columns: 1.03fr 1fr; /* 左大きめ/右やや小さめ */
    grid-template-rows: auto auto;
    grid-template-areas: 'v1 v2' 'v1 v3' 'v1 v4' 'v1 v5' 'v1 v6';
    column-gap: 40px;
    row-gap: 0;
    margin-bottom: var(--space-64);
    padding: var(--space-32) var(--space-24);
  }
}
.main__product:nth-child(1) {
  grid-area: v1;
  justify-self: flex-end;
  order: 1;
}
.main__product:nth-child(2) {
  grid-area: v2;
  order: 3;
}
.main__product:nth-child(3) {
  grid-area: v3;
  order: 4;
}
@media screen and (width < 992px) {
  .main__product {
    width: 279px;
    margin-inline: auto;
    text-align: center;
  }
  /* .main__product:nth-child(1) {
    width: 301px;
    margin-inline: -12px -12px;
  } */
  .main__product:nth-child(1) .main-v1 {
    display: block;
    margin-inline: -15px -7px;
  }
}
@media print, screen and (992px <= width) {
  .main__product:nth-child(2) {
    margin-bottom: 56px;
  }
  .main__product:nth-child(3) {
    margin-bottom: 16px;
  }
}
@media print, screen and (992px <= width) {
  .main__product--small .main__product-img {
  }
}
.main__product-note {
  list-style: none;
  margin: 2px 0 var(--space-4);
  width: 28em;
  font-size: var(--fs-14);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (width < 992px) {
  .main__product-note {
    margin: var(--space-4) auto 0;
    font-size: var(--fs-10);
    line-height: var(--lh-12);
  }
  .main__product-note:nth-of-type(1) {
    transform: translateY(4px);
    order: 5;
  }
  .main__product-note:nth-of-type(2) {
    order: 2;
  }
  .main__product-note:nth-of-type(3) {
    margin-top: -2px;
    order: 6;
  }
}
@media print, screen and (992px <= width) {
  .main__product-note:nth-of-type(3) {
    margin-block: 0 2px;
  }
}
.main__product-note-item {
  margin-bottom: var(--space-8);
  padding-left: 2em;
  text-indent: -2em;
}
.main__product-note:nth-of-type(1) .main__product-note-item {
  margin-bottom: var(--space-8);
  padding-left: 1.35em;
  text-indent: -1.35em;
}
@media screen and (width < 992px) {
  .main__product-note-item {
    margin-bottom: var(--space-4);
  }
}

/* ========================================
   Buy Section
   ======================================== */
.buy {
  background-color: var(--c-red);
  padding: 1px var(--space-24) var(--space-40);
  position: relative;
}
@media print, screen and (992px <= width) {
  .buy {
    padding-bottom: var(--space-64);
  }
}
.buy__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* タイトル */
.buy__title {
  text-align: center;
  margin-block: -73px 0;
}
@media print, screen and (992px <= width) {
  .buy__title {
    margin-block: -91px 0;
  }
}
.buy__title-img {
  width: 201px;
}
@media print, screen and (992px <= width) {
  .buy__title-img {
    width: 280px;
  }
  .buy__title {
  }
}
.buy__title-text {
  text-align: center;
  margin-top: -12px;
  margin-bottom: var(--space-48);
}
@media screen and (width < 992px) {
  .buy__title-text {
    max-width: 248px;
    margin-inline: auto;
  }
}
@media print, screen and (992px <= width) {
  .buy__title-text {
    margin-top: -36px;
  }
}

/* 購入方法カード */
.buy__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  max-width: 520px;
  margin: 0 auto;
}
@media print, screen and (992px <= width) {
  .buy__cards {
    gap: var(--space-32);
    max-width: none;
  }
}
.buy__card {
  background-color: var(--c-white);
  border-radius: 12px;
  padding: var(--space-24);
}
@media print, screen and (992px <= width) {
  .buy__card {
    padding: var(--space-32);
  }
}
.buy__card-header {
  text-align: center;
  margin-bottom: var(--space-24);
}
@media print, screen and (992px <= width) {
  .buy__card-header {
    margin-bottom: var(--space-32);
  }
}
.buy__card-title {
  margin-bottom: var(--space-16);
}
.buy__card-title-img {
  width: 81px;
}
@media print, screen and (992px <= width) {
  .buy__card-title-img {
    width: 114px;
  }
}
.buy__card-text {
  margin-bottom: var(--space-16);
}
.buy__card-text-img {
  width: 100%;
  max-width: 248px;
}
@media print, screen and (992px <= width) {
  .buy__card-text-img {
    max-width: 735px;
  }
}
.buy__card-text2-img {
  border-bottom: var(--c-red) solid 2px;
  margin-bottom: var(--space-24);
  padding-bottom: 6px;
  width: 95px;
}
@media print, screen and (992px <= width) {
  .buy__card-text2-img {
    width: 142px;
    margin-bottom: var(--space-32);
  }
}
@media screen and (width < 992px) {
  .buy__card-text3-img {
    width: 207px;
  }
}
.buy__card-body {
  border-radius: 8px;
  letter-spacing: 0.01em;
}
@media screen and (width < 992px) {
  .buy__card-body {
    font-size: var(--fs-14);
  }
}
@media print, screen and (992px <= width) {
  .buy__card-body {
    padding: 0 var(--space-24);
  }
}
.buy__card-item {
  display: grid;
  grid-template-columns: 0.67fr 1fr;
  border-bottom: 1px solid var(--c-x-light-gray);
}
@media print, screen and (992px <= width) {
  .buy__card-item {
    grid-template-columns: 0.56fr 1fr;
  }
}
.buy__card-label {
  background-color: var(--c-red);
  border: 1px solid var(--c-x-light-gray);
  border-bottom: none;
  border-right: none;
  display: flex;
  /* flex-direction: column; */
  /* justify-content: center; */
  flex-wrap: wrap;
  align-items: center;
  padding: var(--space-8);
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  color: var(--c-white);
}
@media print, screen and (992px <= width) {
  .buy__card-label {
    padding: var(--space-16);
    font-size: var(--fs-16);
  }
}
.buy__card-content {
  border: 1px solid var(--c-x-light-gray);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8);
  font-size: var(--fs-14);
  line-height: var(--lh-14);
}
@media print, screen and (992px <= width) {
  .buy__card-content {
    padding: var(--space-16);
    font-size: var(--fs-16);
    line-height: var(--lh-16);
  }
}
@media print, screen and (992px <= width) {
  .buy__card-content2 {
    text-align: center;
  }
}
.buy__card-note {
  margin-top: var(--space-8);
  padding-left: 13px;
  font-size: var(--fs-10);
  text-align: left;
  text-indent: -13px;
}
@media print, screen and (992px <= width) {
  .buy__card-note {
    padding-left: 15px;
    font-size: var(--fs-12);
    text-indent: -16px;
  }
}
.buy__card-text4-img {
  border-bottom: var(--c-red) solid 2px;
  margin-bottom: var(--space-24);
  padding-bottom: 6px;
  width: 266px;
}
@media print, screen and (992px <= width) {
  .buy__card-text4-img {
    width: 399px;
    margin-bottom: var(--space-32);
  }
}
.cta-block {
  display: grid;
  place-content: center;
  margin-block: var(--space-24);
}
.kfc-btn {
  background-color: var(--c-red);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 280px;
  padding: 18px 24px 18px 52px;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-size: var(--fs-14);
  line-height: 1.35;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
  transition: transform .06s ease, filter .2s ease, box-shadow .2s ease;
}
.kfc-btn:hover { filter: brightness(1.05); }
.kfc-btn:active { transform: translateY(1px); }
/* .kfc-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
} */
.kfc-btn {
  gap: 16px;
  padding: 18px 22px 18px 22px; /*18px 22px 18px 54px;*/
}
.kfc-btn::before {
  content: "";
  display: block;
  width: 16px;
}
.kfc-btn__text {
  display: grid;
  text-align: center;
}
.kfc-btn__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #ffffff;
}
@media print, screen and (992px <= width) {
  .kfc-btn__icon {
    width: 16px;
    height: 16px;
  }
}
.kfc-btn.gradient {
  background-image: linear-gradient(
    to right,
    #DE901E 0%,
    #E09622 2%,
    #EDB636 15%,
    #F7CD45 28%,
    #FDDB4D 40%,
    #FFE051 50%,
    #F3C33F 65%,
    #E39E27 88%,
    #DE901E 100%
  );
  height: 72px;
  font-weight: 700;
  color: var(--c-black);
}
.kfc-btn.gradient .kfc-btn__icon {
  filter: invert(100%);
}

/* 注意事項 */
.buy__caution-img {
  width: 49px;
}
@media print, screen and (992px <= width) {
  .buy__caution-img {
    width: 74px;
  }
}
@media print, screen and (992px <= width) {
  .buy__caution-note-img {
    width: 478px;
  }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  background-color: var(--c-white);
  padding: var(--space-48) var(--space-24);
}
@media print, screen and (992px <= width) {
  .faq {
    padding: var(--space-64) var(--section-padding);
  }
}
.faq__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
@media print, screen and (992px <= width) {
  .faq__inner {
    max-width: min(var(--container-max), calc(100vw - 248px));
  }
}
.faq__title {
  text-align: center;
  margin-bottom: var(--space-32);
}
.faq__title-img {
  width: 164px;
}
@media print, screen and (992px <= width) {
  .faq__title-img {
    width: 273px;
  }
  .faq__title {
    margin-bottom: var(--space-48);
  }
}
.faq__list {
  list-style: none;
}
@media screen and (width < 992px) {
  .faq__list {
    max-width: 520px;
    margin: 0 auto;
  }
}
.faq__item:not(:last-child) {
  border-bottom: 2px solid var(--c-x-light-gray);
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: var(--space-24) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  color: var(--c-black) !important;
  /* iOS対策 */
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  -webkit-text-fill-color: var(--c-black); /* ★追加 */
}
/* .faq__question:hover,
.faq__question:focus {
  background-color: #FFF8F0;
  outline: 2px solid var(--c-red);
  outline-offset: -2px;
} */
@media print, screen and (992px <= width) {
  .faq__question {
    gap: var(--space-24);
  }
}
.faq__question-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.faq__question-text {
  flex: 1;
  padding-top: var(--space-4);
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: var(--lh-14);
}
@media print, screen and (992px <= width) {
  .faq__question-text {
    padding-top: var(--space-12);
    font-size: var(--fs-16);
    line-height: var(--lh-16);
  }
}
.faq__question-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-top: var(--space-16);
}
.faq__question-toggle::before,
.faq__question-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--c-black);
  transition: transform 0.3s;
}
.faq__question-toggle::before {
  width: 16px;
  height: 2px;
}
.faq__question-toggle::after {
  width: 2px;
  height: 16px;
}
.faq__item.is-open .faq__question-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq__item.is-open .faq__answer {
  max-height: 1000px;
}
.faq__answer-inner {
  padding: 0 var(--space-40) var(--space-24) 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: flex-start;
  gap: 0 var(--space-12);
}
@media print, screen and (992px <= width) {
  .faq__answer-inner {
    padding: 0 var(--space-48) var(--space-32) 0;
    gap: 0 var(--space-24);
  }
}
.faq__icon {
  grid-row: span 99;
}
.faq__answer-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.faq__answer-text {
  flex: 1;
  padding-top: var(--space-4);
  font-size: var(--fs-14);
  line-height: var(--lh-14);
}
@media print, screen and (992px <= width) {
  .faq__answer-text {
    padding-top: var(--space-12);
    font-size: var(--fs-16);
    line-height: var(--lh-16);
  }
}
.faq__answer-note {
  padding-top: var(--space-4);
  padding-left: 15px;
  text-indent: -15px;
  font-size: var(--fs-12);
  line-height: var(--lh-12);
}
.faq__answer-text + .faq__answer-note {
  padding-top: var(--space-16);
}

/* ========================================
   Footer (既存サイト差し替え用)
   ======================================== */
/* ↓↓↓ FOOTER START - 既存サイトのフッターに差し替え ↓↓↓ */
.footer {
  background-color: var(--c-black);
  color: var(--c-white);
  padding: var(--space-32) var(--section-padding);
}
@media print, screen and (992px <= width) {
  .footer {
    padding: var(--space-64) var(--section-padding);
  }
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8) var(--space-16);
  margin-bottom: var(--space-24);
  font-size: var(--fs-12);
  font-weight: var(--fw-bold);
}
@media print, screen and (992px <= width) {
  .footer__nav {
    gap: var(--space-24);
    font-size: var(--fs-14);
  }
}
.footer__nav-item {
  transition: opacity 0.3s;
  position: relative;
}
.footer__nav-item:not(:first-child)::before {
  content: "|";
  /* background-color: var(--c-white); */
  display: block;
  position: absolute;
  left: -9px;
  /* top: 5px; */
  width: 1px;
  height: calc(100% - 8px);
}
@media print, screen and (992px <= width) {
  .footer__nav-item:not(:first-child)::before {
    left: -13px;
  }
}
.footer__nav-item:focus {
  opacity: 0.7;
  outline: 2px solid var(--c-white);
  outline-offset: 2px;
}
.footer__copy {
  font-size: var(--fs-12);
  font-weight: var(--fw-bold);
  text-align: center;
  color: var(--c-white);
}
@media print, screen and (992px <= width) {
  .footer__copy {
    font-size: var(--fs-14);
  }
}

/* ↑↑↑ FOOTER END - 既存サイトのフッターに差し替え ↑↑↑ */

/* ========================================
   Sticky Navigation (SP only)
   ======================================== */
.sticky-nav {
  display: block;
  position: fixed;
  z-index: 100;
  /* overflow: hidden; */
}
@media screen and (width < 992px) {
  .sticky-nav {
    border-top: var(--c-white) solid 2px;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media print, screen and (992px <= width) {
  .sticky-nav {
    bottom: 50%;
    left: calc(50% + 480px + 24px); /* calc(50% + 480px + 80px) */
    padding-inline: 2px;
    transform: translateY(50%) !important; /* SPからPCへ切替え時にjsでの上書を回避 */
    transition: left 0.1s;
  }
}
@media print, screen and (992px <= width < 1240px) { /* 1346px */
  .sticky-nav {
    left: calc(100vw - 104px - 4px - 17px); /* 100vw - icon-width - nav-padding - scroll-bar */
  }
}
.sticky-nav__inner {
  display: grid;
  justify-content: space-around;
  padding: 14px 0 var(--space-16);
}
@media screen and (width < 992px) {
  .sticky-nav__inner {
    background-color: var(--c-red);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (992px <= width) {
  .sticky-nav__inner {
    row-gap: var(--space-12);
  }
}
.sticky-nav__item {
  text-align: center;
  flex: 1;
}
@media screen and (width < 992px) {
  .sticky-nav__item {
    height: 38px;
    margin-left: -1px;
  }
  .sticky-nav__item:not(:first-child) {
    border-left: var(--c-white) solid 1px;
  }
}
.order-shortcut.off {
  display: none;
}
@media screen and (width < 992px) {
  .order-shortcut {
    position: absolute;
    top: -16px;
    right: 16px;
    height: auto;
    transform: translateY(-100%);
  }
  .order-shortcut .sticky-nav__link {
    padding: 0;
  }
  .order-shortcut .sticky-nav__icon {
    width: 90px;
  }
}
.sticky-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0 var(--space-8);
  transition: background-color 0.3s;
}
@media print, screen and (992px <= width) {
  .sticky-nav__link {
    padding: 0;
    border-radius: 999px;
  }
}
.sticky-nav__link:focus-visible {
  /* outline: 3px solid #fff; */
  outline-offset: 0px;
}
/* .sticky-nav__link:hover,
.sticky-nav__link:focus {
  background-color: #FFF8F0;
  outline: 2px solid var(--c-red);
  outline-offset: -2px;
} */
.sticky-nav__icon {
  width: 104px;
  height: auto;
}
@media print, screen and (992px <= width) {
  .sticky-nav__icon {
    min-width: 104px;
  }
}
@media screen and (width < 992px) {
  .sticky-nav__icon {
    margin-top: -9px;
  }
  .sticky-nav__icon.sticky1-img {
    width: 69px;
  }
  .sticky-nav__icon.sticky1-img.phase3 {
    width: 95px;
  }
  .sticky-nav__icon.sticky2-img {
    width: 55px;
  }
  .sticky-nav__icon.sticky3-img {
    width: 96px;
  }
}
.sticky-nav__arrow {
    transform: rotate(90deg);
    width: 12px;
    color: #ffffff;
  }
@media print, screen and (992px <= width) {
  .sticky-nav__arrow {
    display: none;
  }
}

/* ========================================
   Sticky Navigation (SP only)
   ======================================== */
.global-accordian-header-container .global-accordian-arrow {
  transform: rotate(180deg);
}
.global-accordian-header-container.is-open .global-accordian-arrow {
  transform: rotate(0deg);
}
.global-accordian-header-container:not(.is-open) + .global-accordian-content {
  display: none;
}

/* ========================================
   Overwrite - main.0439346b.chunk
   ======================================== */
@supports(-webkit-touch-callout:none) {
  .root-header-au .hamburger-container.side-nav-open {
      height: 100dvh; /* アドレスバーに配慮した値に上書 */
    }
  }
@media(max-width:650px) {
  .root-header-au .hamburger-container.side-nav-open .hamburger-header-container .hamburger-close-button {
    padding-left: 6px;
  }
}

/* + スマホメニューが開いたらbodyのスクロールをさせない */
body:not(:has( .root-header-au[hidden])) {
  overflow: hidden;
}

/* ========================================
   Phase-2 - 抽選受付中
   ======================================== */

@media print, screen and (992px <= width) {
  .main__badge.phase2 {
    margin-block: 7px -25px;
    margin-left: -64px;
  }
  .main__text1.phase2 {
    height: 82px;
  }
  .main__text1-img.phase2 {
    width: 420px;
  }
}
@media screen and (width < 992px) {
  .main__visual.phase2 {
    margin-bottom: var(--space-16);
  }
  .main__text1-img.phase2 {
    width: 279px;
  }
  .main__products.phase2 {
    margin-bottom: var(--space-24);
  }
}

/* Primary section */
.primary {
  position: relative;
  background-image: url(/images/main-gb-pattern.png);
  background-repeat: repeat;
  background-size: 989px auto;
  background-position: center top;
  padding: 40px var(--space-24);
}
@media print, screen and (992px <= width) {
  .primary {
    padding: 65px var(--space-24) var(--space-64);
  }
}
.primary__title {
  position: relative;
  text-align: center;
  margin-bottom: -136px;
  z-index: 1;
}
@media print, screen and (992px <= width) {
  .primary__title {
    margin-bottom: -192px;
  }
}
.buy__card.has-arrow {
  position: relative;
}
.buy__card.has-arrow {
  margin-bottom: var(--space-8);
}
@media screen and (width < 992px) {
  .buy__card.mt-space {
    margin-top: var(--space-16);
  }
}
@media print, screen and (992px <= width) {
  .buy__card.mt-space {
    margin-top: var(--space-32);
  }
}
.buy__card.has-arrow::after {
  background-image: url(/images/02-step-arrow-32.svg);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: calc(0% - 16px);
  left: calc(50% - 16px);
}
.primary .buy__card-title {
  margin-bottom: var(--space-16);
}
@media print, screen and (992px <= width) {
  .primary .buy__card-title {
    margin-bottom: var(--space-24);
  }
}
.primary__title1-img {
  position: relative;
}
.primary__title1-img.step01 {
  margin-top: var(--space-24);
  position: relative;
  z-index: 1;
}
@media print, screen and (992px <= width) {
  .primary__title1-img {
    width: 434px;
  }
  .primary__title1-img.step01 {
    margin-top: var(--space-32);
  }
}
.primary .buy__card-note {
  margin-top: var(--space-16);
}
@media print, screen and (992px <= width) {
  .primary .buy__card-note {
    margin-top: var(--space-24);
  }
}
.buy__card-note.mt-4 {
  margin-top: var(--space-4);
}
@media print, screen and (992px <= width) {
  .primary__content01 {
    position: relative;
    text-align: center;
    z-index: 1;
  }
}
.icon-duplicate {
  transform: translateY(-3px);
}
.border-box {
  border: var(--c-red) solid 1px;
  max-width: 500px;
  margin: var(--space-16) auto;
  padding: var(--space-16);
  border-radius: 10px;
}
@media print, screen and (992px <= width) {
  .border-box {
    margin: var(--space-24) auto;
  }
}
.box-title {
  text-align: center;
}
@media print, screen and (992px <= width) {
  .primary__box-title1-img {
    width: 63px;
  }
}
.list {
  margin-top: var(--space-16);
  margin-left: var(--space-24);
  font-size: var(--fs-12);
  text-align: left;
}
@media print, screen and (992px <= width) {
  .list {
    font-size: var(--fs-14);
  }
}

/* ========================================
   Phase-3 - 抽選受付後
   ======================================== */

.main__inner.phase3 {
  margin-bottom: var(--space-16);
}
@media print, screen and (992px <= width) {
  .main__inner.phase3 {
    margin-bottom: var(--space-64);
  }
}
.main__visual.phase3 {
  display: flex;
  place-content: center;
  margin-bottom: var(--space-48);
}
.main__text1.phase3 {
  height: 78px;
}
@media screen and (width < 992px) {
  .main__text1.phase3 {
    margin-top: -6px;
  }
}
.main__text1-img.phase3 {
  width: 213px;
}
.primary__title.result-info {
  margin-top: var(--space-24);
}
@media print, screen and (992px <= width) {
  .main__text1.phase3 {
    height: 60px;
  }
  .main__text1-img.phase3 {
    width: 510px;
  }
  .primary__title.result-info {
    margin-top: var(--space-48);
  }
}
.buy__card.result-info {
  padding-top: var(--space-120);
}
@media print, screen and (992px <= width) {
  .buy__card.result-info {
    padding-top: 168px;
  }
}
.result-info .buy__card-title {
  margin-bottom: var(--space-16);
}
.result-info .primary__title1-img {
  width: 195px;
}
@media print, screen and (992px <= width) {
  .result-info .buy__card-title {
    margin-bottom: var(--space-24);
  }
  .result-info .primary__title1-img {
    width: 588px;
  }
}
@media screen and (width < 992px) {
  .buy__card-note.mt-24 {
    margin-top: var(--space-16);
  }
}
.primary__title.after {
  margin-top: var(--space-64);
}
@media screen and (width < 992px) {
  .after.step01 {
    padding-top: var(--space-40);
  }
}
@media print, screen and (992px <= width) {
  .after.step01 {
    padding-top: var(--space-64);
  }
  .primary__title1-img.phase3 {
    width: 516px;
  }
  .after .buy__card-content2 {
    display: grid;
  }
  .after .nowrap-lg {
    white-space: nowrap;
  }
}
.after .buy__card-text4-img {
  border-bottom: var(--c-red) solid 2px;
  margin-block: var(--space-24);
  padding-bottom: 6px;
  width: 111px;
}
@media print, screen and (992px <= width) {
  .after .buy__card-text4-img {
    width: 166px;
  }
}
.after-order-list {
  list-style: none;
}
@media screen and (width < 992px) {
  .after-order-list {
    margin-bottom: var(--space-40);
  }
}
@media print, screen and (992px <= width) {
  .after-order-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-right: -32px;
  }
}
.ao-item {
  display: grid;
}
@media screen and (width < 992px) {
  .ao-item:not(:last-child) {
    background-image: url(/images/03-after-flow-line-sp-279.png);
    background-repeat: no-repeat;
    background-position: center bottom 21px;
    background-size: 100% auto; /*279px auto*/
    padding-bottom: 56px; /*var(--space-48)*/
  }
}
@media print, screen and (992px <= width) {
  .ao-item {
    padding-right: var(--space-32);
    grid-template-rows: 26px auto 75px;
  }
  .ao-item:not(:last-child) {
    background-image: url(/images/03-after-flow-line-pc-10.png);
    background-image: url(/images/line_pc.png);
    background-repeat: no-repeat;
    background-position: center right 10px;
  }
}
.ao-item .step {
  display: grid;
  place-content: center;
  height: 18px;
  margin-bottom: var(--space-8);
}
.ao-item .step-number {
  transform: scale(1.125);
}
.ao-text {
  display: grid;
  place-content: center;
  margin-bottom: var(--space-16);
  font-size: var(--fs-12);
  text-align: center;
}
@media print, screen and (992px <= width) {
  .ao-text {
    font-size: var(--fs-14);
  }
}
.step-pic-img {
  box-shadow: 0 0px 3px rgba(54, 54, 54, 0.2);
}
@media screen and (width < 992px) {
  .step-pic-img {
    width: 100%;
  }
}
.border-box.wide {
  max-width: 100%;
}
@media print, screen and (992px <= width) {
  .border-box.wide {
    margin: 30px auto 0;
    padding: var(--space-40) var(--space-32);
  }
}
.border-box .text {
  margin-top: var(--space-16);
  font-size: var(--fs-12);
}
@media print, screen and (992px <= width) {
  .border-box .text {
    font-size: var(--fs-14);
    letter-spacing: 0.03em;
  }
}
.pickup-period {
  display: grid;
  place-content: center;
  border-top: var(--c-light-gray) solid 2px;
  border-bottom: var(--c-light-gray) solid 2px;
  margin: var(--space-24) auto;
  padding: var(--space-24) 0;
  text-align: center;
}
@media print, screen and (992px <= width) {
  .pickup-period-img {
    width: 390px;
  }
}
@media print, screen and (992px <= width) {
  .after-order-list.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    margin-right: 0;
    row-gap: var(--space-32);
  }
  .cols-3 .ao-item {
    padding-right: var(--space-48);
    padding-right: var(--space-64);
    grid-template-rows: 26px auto 252px;
    grid-template-rows: 26px auto 158px;
  }
  .cols-3 .ao-item:nth-child(n+4) {
    /* margin-left: var(--space-48); */
    transform: translateX(var(--space-64));
  }
  .cols-3 .ao-item:not(:last-child) {
    background-position: center right 16px;
    background-position: top 12px right 24px;
  }
  .cols-3 .ao-text .only-lg {
    /* display: none; */
  }
  .cols-3 .step-pic-img {
    width: 100%;
  }
}

/* pswp */
.step-pic:hover {
  cursor: zoom-in;
}
.pswp__container.arw-click {
  transition: transform 0.35s;
}
.pswp__caption__center {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -100%);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  max-width: calc(100% - 40px); /* 左右の余白を確保 */
  box-sizing: border-box;
  white-space: normal; /* テキストの折り返しを許可 */
  line-height: 1.4;
}
@media screen and (width < 992px) {
  .step-pic {
    pointer-events: none;
  }
  [id^="datasign_cmp"]::part(floating-container) {
    bottom: 76px;
    left: 16px;
  }
}
@media print, screen and (992px <= width) {
  .pswp__caption__center {
    top: min(calc(360px + 50vh), 95vh);
    bottom: auto;
  }
}

/* ========================================
   Utilities
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media screen and (width < 992px) {
  .only-lg {
    display: none;
  }
}
/* Focus visible */
/* *:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
} */
.relative {
  position: relative;
  z-index: 1;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-4 {
  margin-top: 0.25rem;
}
.mb-4 {
  margin-bottom: 0.25rem;
}
.mt-8 {
  margin-top: 0.5rem;
}
.mt-16 {
  margin-top: 1rem;
}
.mt-24 {
  margin-top: 1.5rem;
}
.mb-24 {
  margin-bottom: 1.5rem;
}
.nowrap {
  white-space: nowrap;
}
.fw-700 {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.line-through {
  text-decoration: line-through;
}
.text-strong {
  font-weight: 700;
  color: var(--c-red);
}
