/* SPECIAL THANKS WEEKS: PROTEIN FOODS */
/* Shared color tokens */
:root {
  --spf-beige: #B8996B;
  --spf-white: #ffffff;
  --spf-ink: #2a2727;
  --spf-navy: #0f2131;
  --spf-card: #fdfcf8;
}

.saleProteinFoodsKv {
  position: relative;
  width: 100%;
  background: #DBBA98;
  color: var(--spf-white);
  overflow: hidden;
}

.saleProteinFoodsKv__inner {
  position: relative;
  margin-top: -145%;
  margin-inline: auto;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 30px;

  @media (min-width: 769px) {
    margin-top: -65.5%;
  }
}

/* --- Hero --- */
.saleProteinFoodsKv__visual {
  position: relative;
}

.saleProteinFoodsKv__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 54%,
      #BF9B76 80%,
      #DBBA98 100%);

  @media (min-width: 769px) {
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 48%,
        rgba(191, 155, 118, 0.55) 72%,
        #DBBA98 100%);
  }

  @media (min-width: 1440px) {
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 48%,
        #DBBA98 75%);
  }
}

.saleProteinFoodsKv__hero {
  width: 100%;
  pointer-events: none;
}

.saleProteinFoodsKv__heroImg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Title + CTA --- */
.saleProteinFoodsKv__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 16px;
  margin: 0 0 20px;

  @media (min-width: 769px) {
    padding: 0;
    align-items: flex-end;
  }
}

.saleProteinFoodsKv__title {
  width: 181px;
  margin: 0;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--spf-white);
  text-shadow: 0 0 48px rgba(0, 0, 0, 0.25);

  @media (min-width: 769px) {
    width: auto;
    font-size: clamp(56px, 6.2vw, 74px);
    padding-left: 15%;
  }
}

.saleProteinFoodsKv__cta {
  display: block;
  width: 154px;
  height: auto;
  flex-shrink: 0;
  margin-top: 7px;
  text-decoration: none;

  @media (min-width: 769px) {
    width: 180px;
    margin-bottom: -7%;
    margin-right: 5%;
  }

  @media (min-width: 1440px) {
    margin-bottom: -16%;
  }

  @media (max-width: 350px) {
    width: 40%;
  }
}

.saleProteinFoodsKv__ctaImg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 0px 24px #CDAB88);

  @media (min-width: 769px) {
    width: 180px;
  }
}

/* KV通過後のフローティングCTA */
.saleProteinFoods__floatCta {
  position: fixed;
  z-index: 40;
  right: 12px;
  bottom: 16px;
  display: block;
  width: 154px;
  height: auto;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s;

  @media (min-width: 769px) {
    right: 24px;
    bottom: 24px;
    width: 200px;
  }
}

.saleProteinFoods__floatCta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.saleProteinFoods__floatCtaImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 0px 24px #CDAB88);
}

@media (prefers-reduced-motion: reduce) {
  .saleProteinFoods__floatCta {
    transition: none;
    transform: none;
  }
}

/* --- Lead --- */
.saleProteinFoodsKv__lead {
  margin: 0;
  padding: 0 18px;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.4;
  color: var(--spf-white);

  @media (min-width: 769px) {
    padding: 0;
    font-size: clamp(20px, 2.5vw, 32px);
    text-align: left;
    padding-left: 15%;
  }

  @media (max-width: 390px) {
    font-size: 5.5vw;
  }
}

/* --- Thumbs（左右はみ出し） --- */
.saleProteinFoodsKv__thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  overflow: hidden;

  @media (min-width: 769px) {
    gap: 8px;
    margin: 5% 0 20px;
    overflow: visible;
  }

  @media (min-width: 1440px) {
    margin-top: 15%;
  }
}

.saleProteinFoodsKv__thumb {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.saleProteinFoodsKv__thumb--pcOnly {
  display: none;

  @media (min-width: 769px) {
    display: block;
  }
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb {
  opacity: 1;
  transform: translateX(0);
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(1) {
  transition-delay: 0s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(2) {
  transition-delay: 0.12s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(3) {
  transition-delay: 0.24s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(4) {
  transition-delay: 0.36s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(5) {
  transition-delay: 0.48s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(6) {
  transition-delay: 0.6s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(7) {
  transition-delay: 0.72s;
}

.saleProteinFoodsKv__thumbs.is-inview .saleProteinFoodsKv__thumb:nth-child(8) {
  transition-delay: 0.84s;
}

.saleProteinFoodsKv__thumb--clam {
  width: 148px;

  @media (min-width: 769px) {
    width: auto;
  }
}

.saleProteinFoodsKv__thumbImg {
  display: block;
  width: 139px;
  height: auto;
  aspect-ratio: 139 / 135;
  margin: 0;
  object-fit: cover;
  border-radius: 50%;

  @media (min-width: 769px) {
    width: 180px;
  }

  @media (min-width: 1440px) {
    width: auto;
  }
}

/* --- Body copy --- */
.saleProteinFoodsKv__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.45s ease,
    transform 1.45s ease;
  transition-delay: 0.55s;

  @media (min-width: 769px) {
    padding: 0;
    gap: 28px;
  }
}

.saleProteinFoodsKv__copy.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.saleProteinFoodsKv__text {
  width: 100%;
  max-width: 358px;
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.2;
  color: var(--spf-white);
  text-align: center;

  @media (min-width: 769px) {
    max-width: 1200px;
    font-size: 24px;
    line-height: 2.1;
  }
}

.saleProteinFoodsKv__text strong {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {

  .saleProteinFoodsKv__thumb,
  .saleProteinFoodsKv__copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.saleProteinFoodsSteps {
  width: 100%;
  padding: 24px 16px 48px;
  box-sizing: border-box;
  background: linear-gradient(0deg, #E0B47A 0%, #DBBA98 100%);

  @media (min-width: 769px) {
    padding: 48px 16px 72px;
  }
}

.saleProteinFoodsSteps__inner {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;

  @media (min-width: 769px) {
    max-width: 880px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 36px;
    align-items: stretch;
  }
}

.saleProteinFoodsSteps__nav {
  width: 100%;

  @media (min-width: 769px) {
    grid-column: 1 / -1;
  }
}

.saleProteinFoodsSteps__nav .c-innerNavGrid {
  @media (min-width: 769px) {
    gap: 36px;
  }
}

.saleProteinFoodsSteps__nav .c-innerButton {
  background: var(--spf-white);
  border-color: var(--spf-white);
  color: var(--spf-ink);
}

.saleProteinFoodsSteps__nav .c-innerButton:hover .c-innerButton__circle {
  stroke: var(--spf-ink);
}

/* --- Cards --- */
.saleProteinFoodsSteps__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 16px;
  background: var(--spf-card);
  border-radius: 8px;
  box-sizing: border-box;

  @media (min-width: 769px) {
    height: 100%;
    padding: 20px;
    max-width: 358px;
    border-radius: 12px;
  }
}

.saleProteinFoodsSteps__card--1 {
  @media (min-width: 769px) {
    justify-self: flex-end;
  }
}

.saleProteinFoodsSteps__card--2 {
  @media (min-width: 769px) {
    justify-self: flex-start;
  }
}

.saleProteinFoodsSteps__media {
  position: relative;
  width: 100%;
  aspect-ratio: 326 / 182;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(113.55deg, #eaf1fa 27.78%, #9cb1ca 121.45%);
}

.saleProteinFoodsSteps__card--2 .saleProteinFoodsSteps__media {
  background: #ffffff;
  aspect-ratio: 326 / 183;
}

.saleProteinFoodsSteps__mediaImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saleProteinFoodsSteps__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;

  @media (min-width: 769px) {
    flex: 1 1 auto;
  }
}

.saleProteinFoodsSteps__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;

  @media (min-width: 769px) {
    gap: 2px;
  }
}

.saleProteinFoodsSteps__label {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--spf-beige);

  @media (min-width: 769px) {
    font-size: 16px;
  }
}

.saleProteinFoodsSteps__label--lined {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;

  @media (min-width: 769px) {
    gap: 8px;
  }
}

.saleProteinFoodsSteps__label--lined::before,
.saleProteinFoodsSteps__label--lined::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.saleProteinFoodsSteps__title {
  margin: 0;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  color: var(--spf-beige);

  @media (min-width: 769px) {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.2;
  }
}

.saleProteinFoodsSteps__desc {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  color: var(--spf-beige);
}

.saleProteinFoodsSteps__card--1 .saleProteinFoodsSteps__desc {
  @media (min-width: 769px) {
    margin: 12px 0;
  }
}

.saleProteinFoodsSteps__btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 4px 4px 4px 24px;
  box-sizing: border-box;
  background: var(--spf-white);
  border: 1px solid #000;
  border-radius: 100px;
  text-decoration: none;
  color: var(--spf-ink);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.saleProteinFoodsSteps__btn:hover,
.saleProteinFoodsSteps__btn:focus {
  text-decoration: none;
  background-color: #0f2131;
  border-color: #0f2131;
  color: #ffffff;
}

.saleProteinFoodsSteps__btn:hover .saleProteinFoodsSteps__btnIcon,
.saleProteinFoodsSteps__btn:focus .saleProteinFoodsSteps__btnIcon {
  background: #ffffff;
}

.saleProteinFoodsSteps__btn:hover .saleProteinFoodsSteps__btnIcon svg,
.saleProteinFoodsSteps__btn:focus .saleProteinFoodsSteps__btnIcon svg {
  fill: #0f2131;
}

.saleProteinFoodsSteps__btnText {
  flex: 1;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  text-align: left;
}

.saleProteinFoodsSteps__btnIcon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--spf-navy);
  display: grid;
  place-items: center;
}

.saleProteinFoodsSteps__btnIcon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: var(--spf-white);
}

.saleProteinFoodsSteps__coupon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 12px;
  box-sizing: border-box;
  background: #E98C00;
}

.saleProteinFoodsSteps__couponText {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  color: var(--spf-white);
}

.saleProteinFoodsSteps__note {
  margin: 0;
  width: 100%;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: right;
  color: var(--spf-beige);
}

/* --- Toggle: PROTEIN FOODSのこれから --- */
.saleProteinFoodsFuture {
  width: 100%;
  background: var(--spf-card);
  border-radius: 8px;
  overflow: hidden;

  @media (min-width: 769px) {
    grid-column: 1 / -1;
  }
}

.saleProteinFoodsFuture__trigger {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 0 16px;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--spf-beige);
  font: inherit;
}

.saleProteinFoodsFuture__triggerLabel {
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
}

.saleProteinFoodsFuture__triggerIcon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
  transform: rotate(90deg);
  /* 閉じ: 下向き implicit via chevron path */
}

.saleProteinFoodsFuture__triggerIcon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--spf-beige);
}

.saleProteinFoodsFuture.is-open .saleProteinFoodsFuture__triggerIcon {
  transform: rotate(-90deg);
}

.saleProteinFoodsFuture__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    max-height 0.55s ease,
    opacity 0.35s ease,
    padding 0.45s ease,
    visibility 0.55s;
}

/* hidden 属性があってもアニメーションできるよう表示は維持 */
.saleProteinFoodsFuture__panel[hidden] {
  display: flex;
}

.saleProteinFoodsFuture.is-open .saleProteinFoodsFuture__panel {
  max-height: 2400px;
  opacity: 1;
  padding: 28px 16px 36px;
  visibility: visible;

  @media (min-width: 769px) {
    max-height: 3600px;
    gap: 48px;
    padding: 32px 120px 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .saleProteinFoodsFuture__panel {
    transition: none;
  }
}

.saleProteinFoodsFuture.is-open .saleProteinFoodsFuture__trigger {
  min-height: 24px;
  padding: 24px 16px 0;
  gap: 16px;
}

.saleProteinFoodsFuture__rule {
  width: 100%;
  max-width: 326px;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--spf-beige);

  @media (min-width: 769px) {
    max-width: 100%;
  }
}

.saleProteinFoodsFuture__hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;

  @media (min-width: 769px) {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 78px;
  }
}

.saleProteinFoodsFuture__title {
  width: 100%;
  max-width: 326px;
  margin: 0;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--spf-beige);
  text-align: left;

  @media (min-width: 769px) {
    max-width: none;
  }
}

.saleProteinFoodsFuture__story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 326px;

  @media (min-width: 769px) {
    max-width: 720px;
    gap: 20px;
  }
}

.saleProteinFoodsFuture__packages {
  position: relative;
  width: calc(100% + 32px);
  max-width: 390px;
  margin: 0 -16px;
  aspect-ratio: 358 / 192;
  overflow: hidden;
  background: linear-gradient(113.55deg, #f6f3ee 53.69%, #e2d7c4 104.16%);

  @media (min-width: 769px) {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

.saleProteinFoodsFuture__packagesImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.saleProteinFoodsFuture__lead,
.saleProteinFoodsFuture__closing {
  width: 100%;
  max-width: 326px;
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 180%;
  color: var(--spf-beige);

  @media (min-width: 769px) {
    max-width: 720px;
    font-size: 15px;
    line-height: 2;
  }
}

.saleProteinFoodsFuture__lead strong,
.saleProteinFoodsFuture__closing strong {
  font-weight: 700;
}

.saleProteinFoodsFuture__closing {
  text-align: center;
}

.saleProteinFoodsFuture__roadmap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 326px;
  padding: 24px;
  padding-bottom: 0;
  box-sizing: border-box;
  background: var(--spf-white);
  border: 1px solid var(--spf-beige);
  border-radius: 8px;

  @media (min-width: 769px) {
    max-width: 920px;
    gap: 8px;
    padding-bottom: 24px;
  }
}

.saleProteinFoodsFuture__roadmapLabel {
  margin: 0;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: var(--spf-beige);
}

.saleProteinFoodsFuture__roadmapTitle {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 120%;
  color: var(--spf-beige);

  @media (min-width: 769px) {
    line-height: 1.4;
  }
}

.saleProteinFoodsFuture__timeline {
  width: 100%;
  margin: 16px 0 0;

  @media (min-width: 769px) {
    margin-top: 16px;
  }
}

.saleProteinFoodsFuture__timelineImg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- SOUP / WHEY 商品カルーセル --- */
.saleProteinFoodsProducts {
  width: 100%;
  background: linear-gradient(180deg, #E0B47A 0%, #DFBB81 100%);
  padding: 48px 0;
  box-sizing: border-box;
  color: var(--spf-ink);
}

.saleWheyProtein {
  padding-top: 40px;
  /* 高さ変化で色分布が飛ばないよう、固定距離でベージュへ到達させる */
  background: linear-gradient(180deg, #E4D6C4 0px, #CDAB88 520px, #CDAB88 100%);
}

/* 白背景サムネをベージュ地に馴染ませる（白なし見え） */
.saleWheyProtein__thumb {
  background: transparent;
}

.saleProteinFoodsProducts__head,
.saleProteinFoodsProducts__list {
  width: 100%;
}

.saleProteinFoodsProducts__listInner {
  width: 100%;
}

.saleProteinFoodsProducts .saleSectionHead {
  width: 100%;
  margin-bottom: 24px;
}

.saleProteinFoodsProducts .c-scrollSlider__nav {
  margin-top: 24px;
}

.saleProteinFoodsProducts .c-scrollSlider__icon circle {
  stroke: var(--spf-ink);
  fill: transparent;
}

.saleProteinFoodsProducts .c-scrollSlider__icon path {
  fill: var(--spf-ink);
}

.saleProteinFoodsProducts .c-scrollSlider__track {
  background-color: rgba(42, 39, 39, 0.25);
}

.saleProteinFoodsProducts .c-scrollSlider__thumb {
  background-color: var(--spf-ink);
}

.saleProteinFoodsProducts__card .c-productCard__name,
.saleProteinFoodsProducts__card .c-productCard__amount {
  color: var(--spf-ink);
}

.saleProteinFoodsProducts__priceLine {
  margin: 0 0 2px;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--spf-ink);
}

.saleProteinFoodsProducts__price {
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 700;
}

.saleProteinFoodsProducts__tax {
  font-size: 11px;
  font-weight: 400;
}

.saleProteinFoodsProducts__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.saleProteinFoodsProducts__actions .c-productButton {
  font-size: 12px;
  padding-inline: 4px;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.saleProteinFoodsProducts__actions .c-productButton:hover,
.saleProteinFoodsProducts__actions .c-productButton:focus {
  background-color: #0f2131;
  border-color: #0f2131;
}

.saleProteinFoodsProducts__actions .c-productButton__text {
  font-size: 12px;
}

.saleProteinFoodsProducts__actions .c-productButton--subscription {
  background-color: transparent;
  border-color: var(--spf-ink);
}

.saleProteinFoodsProducts__actions .c-productButton--subscription .c-productButton__text {
  color: var(--spf-ink);
}

.saleProteinFoodsProducts__actions .c-productButton--subscription:hover,
.saleProteinFoodsProducts__actions .c-productButton--subscription:focus {
  background-color: #0f2131;
  border-color: #0f2131;
}

.saleProteinFoodsProducts__actions .c-productButton--subscription:hover .c-productButton__text,
.saleProteinFoodsProducts__actions .c-productButton--subscription:focus .c-productButton__text {
  color: #ffffff;
}

/* --- セール共通：見出し --- */
.saleSectionHead {
  margin-bottom: 24px;
}

.saleSectionHead__period {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.saleSectionHead__title {
  margin: 0;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 700;
  font-size: clamp(28px, 9vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.saleSectionHead--light {
  color: #ffffff;
}

.saleSectionHead--light .saleSectionHead__period,
.saleSectionHead--light .saleSectionHead__title {
  color: #ffffff;
}

.saleSectionHead--dark {
  color: #0f2131;
}

.saleSectionHead--dark .saleSectionHead__period,
.saleSectionHead--dark .saleSectionHead__title {
  color: #0f2131;
}

/* --- セール共通：CTA（c-button） --- */
/* TOPメインビジュアル以降の白ピルCTAはここで一括管理 */
.saleSectionCta {
  width: 100%;
  padding-inline: 16px;
  max-width: 390px;
  margin: 32px auto 0;

  @media (min-width: 769px) {
    max-width: 340px;
  }
}

.saleSectionCta .c-button {
  background-color: #ffffff;
  border-color: #ffffff;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.saleSectionCta .c-button__text {
  color: #2a2727;
  text-align: left;
  transition: color 0.25s ease;
}

.saleSectionCta .c-button__circle {
  fill: #0f2131;
  transition: fill 0.25s ease;
}

.saleSectionCta .c-button__arrow {
  fill: #ffffff;
  transition: fill 0.25s ease;
}

.saleSectionCta .c-button:hover,
.saleSectionCta .c-button:focus,
.saleSectionCta .c-button:active {
  background-color: #0f2131;
  border-color: #0f2131;
}

.saleSectionCta .c-button:hover .c-button__text,
.saleSectionCta .c-button:focus .c-button__text,
.saleSectionCta .c-button:active .c-button__text {
  color: #ffffff;
}

.saleSectionCta .c-button:hover .c-button__circle,
.saleSectionCta .c-button:focus .c-button__circle,
.saleSectionCta .c-button:active .c-button__circle {
  fill: #ffffff;
}

.saleSectionCta .c-button:hover .c-button__arrow,
.saleSectionCta .c-button:focus .c-button__arrow,
.saleSectionCta .c-button:active .c-button__arrow {
  fill: #0f2131;
}

@media (min-width: 769px) {
  .saleProteinFoodsProducts .saleSectionCta {
    padding-inline: 0;
  }
}

/* --- SPECIAL OFFER --- */
.saleSpecialSale {
  position: relative;
  width: 100%;
  background: linear-gradient(0deg, #E4D6C4 68.13%, #DFBB81 100%);
  padding: 48px 0 56px;
  box-sizing: border-box;

  @media (min-width: 769px) {
    padding: 72px 60px;
  }
}

.saleSpecialSale__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;

  @media (min-width: 769px) {
    max-width: 1100px;
    padding: 0;
  }
}

.saleSpecialSale .saleSectionHead {
  width: 100%;
  text-align: left;

  @media (min-width: 769px) {
    margin-bottom: 32px;
  }
}




.saleSpecialSale__grid {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  @media (min-width: 769px) {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 14px;
    padding-top: 0px;
    max-width: 730px;
  }
}

.saleSpecialSale__card {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.saleSpecialSale__img {
  display: block;
  width: 100%;
  height: auto;
}

.saleSpecialSale__notes {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  display: flex;
  flex-direction: column;
}

.saleSpecialSale__note {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.4;
  text-align: left;
  color: var(--spf-navy);

  @media (min-width: 769px) {
    font-size: 11px;
    line-height: 1.45;
  }
}

.saleSpecialSale__card:has(.saleSpecialSale__notes) {
  margin-bottom: 52px;

  @media (min-width: 769px) {
    margin-bottom: 36px;
  }
}

.saleSpecialSale .saleSectionCta {
  margin-top: 36px;
  width: 100%;
  padding-inline: 0;

  @media (min-width: 769px) {
    margin-top: 48px;
  }
}

/* --- 定期おトク便バナー --- */
.saleSubscriptionBanner {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
  display: flex;
  align-items: flex-end;

  @media (min-width: 769px) {
    min-height: 540px;
    align-items: center;
  }
}

.saleSubscriptionBanner__cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

.saleSubscriptionBanner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.saleSubscriptionBanner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.saleSubscriptionBanner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(15, 33, 49, 0) 35%,
      rgba(15, 33, 49, 0.35) 70%,
      rgba(15, 33, 49, 0.55) 100%);

  @media (min-width: 769px) {
    display: none;
  }
}

.saleSubscriptionBanner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 16px 40px;
  box-sizing: border-box;
  pointer-events: none;

  @media (min-width: 769px) {
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    min-height: 480px;
    margin: 0 auto;
    padding: 64px 60px;
  }
}

.saleSubscriptionBanner__inner .saleSectionCta {
  pointer-events: auto;
  width: 100%;
  margin-top: 24px;
  padding: 0;

  @media (min-width: 769px) {
    width: auto;
    min-width: 380px;
    max-width: 420px;
    margin: 28px 0;
    padding-inline: 0;
  }
}

/* 画像エリア hover でも CTA の色が変わる */
.saleSubscriptionBanner:hover .saleSectionCta .c-button,
.saleSubscriptionBanner:focus-within .saleSectionCta .c-button {
  background-color: #0f2131;
  border-color: #0f2131;
}

.saleSubscriptionBanner:hover .saleSectionCta .c-button__text,
.saleSubscriptionBanner:focus-within .saleSectionCta .c-button__text {
  color: #ffffff;
}

.saleSubscriptionBanner:hover .saleSectionCta .c-button__circle,
.saleSubscriptionBanner:focus-within .saleSectionCta .c-button__circle {
  fill: #ffffff;
}

.saleSubscriptionBanner:hover .saleSectionCta .c-button__arrow,
.saleSubscriptionBanner:focus-within .saleSectionCta .c-button__arrow {
  fill: #0f2131;
}

.saleSubscriptionBanner__badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #ffffff;
  text-shadow: none;

  @media (min-width: 769px) {
    margin-bottom: 20px;
    padding: 8px 10px;
    font-size: 16px;
    text-shadow: 0px 0px 10.1282px rgba(165, 140, 125, 0.6);
  }
}

.saleSubscriptionBanner__title {
  margin: 0 0 8px;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 700;
  font-size: clamp(28px, 8vw, 34px);
  line-height: 1.2;
  color: #ffffff;

  @media (min-width: 769px) {
    margin-bottom: 12px;
    font-size: clamp(36px, 4vw, 40px);
    line-height: 1.15;
    text-shadow: 0px 0px 10.1282px rgba(79, 71, 60, 0.6);
  }
}

.saleSubscriptionBanner__title span {
  font-size: 43px;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  letter-spacing: -0.05em;
  @media (min-width: 769px) {
    font-size: 54px;
  }
}

.saleSubscriptionBanner__lead {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: none;

  @media (min-width: 769px) {
    font-size: 18px;
    line-height: 1.5;
    text-shadow: 0px 0px 10.1282px rgba(79, 71, 60, 0.6);

  }
}

/* --- ホエイ価格変更トグル --- */
.saleWheyPrice {
  width: 100%;
  padding: 40px 16px 0;
  box-sizing: border-box;
}

.saleWheyPrice__inner {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;

  @media (min-width: 769px) {
    max-width: 880px;
  }
}

.saleWheyPrice__toggle {
  width: 100%;
}

.saleWheyPrice__panel {
  align-items: stretch;
  text-align: left;
}

.saleWheyPrice__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 auto;

  @media (min-width: 769px) {
    gap: 48px;
  }
}

.saleWheyPrice__textWrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.saleWheyPrice__text {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 180%;
  color: var(--spf-beige);
}

.saleWheyPrice__text strong {
  font-weight: 700;
}

.saleWheyPrice__box {
  margin: 8px 0 0;
  padding: 16px;
  border: 1px solid var(--spf-beige);
  border-radius: 8px;
  box-sizing: border-box;
}

.saleWheyPrice__row {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 8px 12px;
  margin: 0 0 12px;

  @media (min-width: 769px) {
    max-width: 300px;
    margin-inline: auto;
    grid-template-columns: 74px 1fr;
    gap: 8px;
  }
}

.saleWheyPrice__row:last-of-type {
  margin-bottom: 0;
}

.saleWheyPrice__term,
.saleWheyPrice__desc {
  margin: 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--spf-beige);
}

.saleWheyPrice__visual {
  width: auto;
  margin-inline: -16px;
  overflow: hidden;

  @media (min-width: 769px) {
    margin-inline: 0;
  }
}

.saleWheyPrice__visualImg {
  display: block;
  width: 100%;
  height: auto;
}

.saleWheyPrice__slogan {
  margin: 8px 0 0;
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--spf-beige);
}

/* --- TRIAL SET BOX --- */
.saleTrialSet {
  width: 100%;
  padding: 74% 16px 22px;
  box-sizing: border-box;
  color: #2a2727;
  background: url("../../../images/2609/sale_protein_foods/trial_set_box.webp") no-repeat top center / cover;
  min-height: 557px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;

  @media (min-width: 769px) {
    align-items: center;
    min-height: 520px;
    padding: 64px 60px;
    margin-bottom: 80px;
    background-image: url("../../../images/2609/sale_protein_foods/trial_set_box_pc.webp");
    background-position: center;
    background-size: cover;
  }
}

.saleTrialSet__inner {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;

  @media (min-width: 769px) {
    max-width: 1100px;
    margin: 0 auto;
  }
}

.saleTrialSet .saleSectionHead {
  @media (min-width: 769px) {
    margin-bottom: 0;
  }
}

.saleTrialSet .saleSectionHead__title {
  @media (min-width: 769px) {
    font-size: clamp(36px, 4vw, 42px);
    line-height: 1.15;
  }
}

.saleTrialSet .saleSectionHead__title span {
  font-family: var(--font-HankenGrotesk, "Hanken Grotesk", sans-serif);
}

.saleTrialSet__text {
  margin: 16px 0 0;
  font-family: var(--font-NotoSansJP, "Noto Sans JP", sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #2a2727;

  @media (min-width: 769px) {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.saleTrialSet__cta {
  margin-top: 28px;
  width: 100%;
  padding: 0;

  @media (min-width: 769px) {
    margin-top: 36px;
    margin-inline: 0;
  }
}

.floating-banner {
  display: none!important;
}