@charset "utf-8";

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

/* =========================================
   Material Design 3 - Design Tokens
   ========================================= */
:root {
  /* Primary */
  --md-sys-color-primary: #4A90D9;
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: #D6E6F9;
  --md-sys-color-on-primary-container: #0A2E54;

  /* Secondary */
  --md-sys-color-secondary: #E8927C;
  --md-sys-color-on-secondary: #FFFFFF;
  --md-sys-color-secondary-container: #FDDBD2;
  --md-sys-color-on-secondary-container: #5C1A0B;

  /* Tertiary */
  --md-sys-color-tertiary: #7BB974;
  --md-sys-color-on-tertiary: #FFFFFF;
  --md-sys-color-tertiary-container: #D7F0D3;
  --md-sys-color-on-tertiary-container: #1B4D17;

  /* Error */
  --md-sys-color-error: #BA1A1A;
  --md-sys-color-on-error: #FFFFFF;

  /* Surface */
  --md-sys-color-surface: #FDFCFF;
  --md-sys-color-on-surface: #1C1B1E;
  --md-sys-color-surface-variant: #E7E0EB;
  --md-sys-color-on-surface-variant: #49454E;
  --md-sys-color-surface-container-low: #F7F2FA;
  --md-sys-color-surface-container: #F0EBF4;
  --md-sys-color-surface-container-high: #ECE6F0;

  /* Outline */
  --md-sys-color-outline: #7A757F;
  --md-sys-color-outline-variant: #CAC4CF;

  /* Elevation */
  --md-sys-elevation-1: 0 1px 3px 1px rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.3);
  --md-sys-elevation-2: 0 2px 6px 2px rgba(0,0,0,0.15), 0 1px 2px 0 rgba(0,0,0,0.3);
  --md-sys-elevation-3: 0 4px 8px 3px rgba(0,0,0,0.15), 0 1px 3px 0 rgba(0,0,0,0.3);

  /* Shape */
  --md-sys-shape-corner-xs: 4px;
  --md-sys-shape-corner-sm: 8px;
  --md-sys-shape-corner-md: 12px;
  --md-sys-shape-corner-lg: 16px;
  --md-sys-shape-corner-xl: 28px;
  --md-sys-shape-corner-full: 9999px;

  /* Typography scale */
  --md-sys-typescale-display-large: 700 57px/64px 'Poppins', sans-serif;
  --md-sys-typescale-headline-large: 700 32px/40px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-headline-medium: 500 28px/36px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-title-large: 500 22px/28px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-title-medium: 500 16px/24px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-body-large: 400 16px/24px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-body-medium: 400 14px/20px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-body-small: 400 12px/16px 'Noto Sans JP', sans-serif;
  --md-sys-typescale-label-large: 500 14px/20px 'Noto Sans JP', sans-serif;

  /* Custom colors for this LP */
  --color-accent-red: #E53935;
  --color-sale-pink: #E91E63;
  --color-bg-cream: #FFF8F0;
  --color-bg-light-blue: #F0F7FA;
  --color-gold: #D4A847;
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font: var(--md-sys-typescale-body-large);
  color: var(--md-sys-color-on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* =========================================
   Campaign Main wrapper
   ========================================= */
#campaign.main {
  opacity: 1;
  top: 0;
  padding-top: 0;
  margin: 0 auto;
    background: url(../../../assets/img/bg_default.png) repeat top center;
    background-size: 95.256px 95.256px;
    padding-top: 0;

}
#campaign.main .wrapper{
  max-width: 750px;
  margin: 0 auto;
}
#campaign.main .offer{
  background-color: white;  
}

#campaign.main .offer.offer--recommended{
      background-color: #FFFDE7;
}

/* =========================================
   ヒーローセクション
   ========================================= */
.hero {
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  line-height: 0;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   オファーセクション
   ========================================= */
.offer-section {
  padding: 0 16px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  border-radius: 0;
  overflow: visible;
}

.offer-section__inner {
  background-color: #fff;
  border-radius: var(--md-sys-shape-corner-xl);
  padding: 32px 24px;
  box-shadow: var(--md-sys-elevation-2);
}

.offer-section__header {
  text-align: center;
  margin-bottom: 20px;
}

/* Chip (MD3) */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  border-radius: var(--md-sys-shape-corner-full);
  font: var(--md-sys-typescale-label-large);
  letter-spacing: 0.04em;
  border: 1px solid var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
  background: transparent;
}

.chip--accent {
  background-color: var(--color-sale-pink);
  color: #fff;
  border-color: var(--color-sale-pink);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 24px;
}

/* Product Card */
.product-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.product-card__image {
  flex: 0 0 120px;
  max-width: 120px;
}

.product-card__image img {
  border-radius: var(--md-sys-shape-corner-md);
}

.product-card__info {
  flex: 1;
  text-align: left;
}

.product-card__brand {
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-on-surface-variant);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.product-card__brand strong {
  font-weight: 700;
  font-size: 18px;
  color: var(--md-sys-color-on-surface);
}

.product-card__name {
  font: var(--md-sys-typescale-title-large);
  color: var(--md-sys-color-on-surface);
  margin-bottom: 4px;
}

.product-card__volume {
  font: var(--md-sys-typescale-body-small);
  color: var(--md-sys-color-on-surface-variant);
}

/* =========================================
   Price Block (共通)
   ========================================= */
.price-block {
  text-align: center;
  margin-bottom: 20px;
}

.price-block__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-block__label {
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-on-surface-variant);
  background-color: var(--md-sys-color-surface-container);
  padding: 2px 12px;
  border-radius: var(--md-sys-shape-corner-full);
}

.price-block__original {
  font: var(--md-sys-typescale-body-large);
  color: var(--md-sys-color-on-surface-variant);
}

.price-block__original s {
  color: var(--md-sys-color-outline);
}

.price-block__original small {
  font-size: 12px;
}

.price-block__arrow {
  margin: 8px 0;
  color: var(--color-sale-pink);
}

.price-block__arrow .material-symbols-outlined {
  font-size: 28px;
}

.price-block__row--sale {
  flex-direction: column;
  align-items: center;
}

.price-block__sale-price {
  font: 700 36px/1.2 'Poppins', sans-serif;
  color: var(--color-sale-pink);
}

.price-block__sale-price small {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}

.price-block__note {
  font: var(--md-sys-typescale-body-small);
  color: var(--md-sys-color-on-surface-variant);
  margin-top: 4px;
}

.price-block__sub {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

/* =========================================
   CTA Button (MD3 Filled Button)
   ========================================= */
a.cta-button,
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
  padding: 16px 24px;
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  font: var(--md-sys-typescale-label-large);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--md-sys-shape-corner-full);
  box-shadow: var(--md-sys-elevation-1);
  cursor: pointer;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

a.cta-button:hover,
.cta-button:hover {
  box-shadow: var(--md-sys-elevation-2);
  background-color: #3A7FC8;
}

.cta-button .material-symbols-outlined {
  font-size: 20px;
}

.cta-button--outline {
  background-color: transparent;
  color: var(--md-sys-color-primary);
  border: 1px solid var(--md-sys-color-outline);
  box-shadow: none;
}

.cta-button--outline:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

/* =========================================
   3つの特徴セクション
   ========================================= */
.features {
  padding: 40px 16px;
  background-color: var(--color-bg-cream);
  margin-bottom: 0;
  border-radius: 0;
}

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

.feature-card {
  background-color: #fff;
  border-radius: var(--md-sys-shape-corner-xl);
  padding: 28px 20px;
  box-shadow: var(--md-sys-elevation-1);
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--md-sys-elevation-3);
}

.feature-card__icon-area {
  margin-bottom: 16px;
}

.feature-card__label {
  display: inline-block;
  font: var(--md-sys-typescale-label-large);
  font-size: 13px;
  font-weight: 700;
  color: var(--md-sys-color-on-secondary);
  background-color: var(--md-sys-color-secondary);
  padding: 4px 20px;
  border-radius: var(--md-sys-shape-corner-full);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.feature-card__label--blue {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.feature-card__label--green {
  background-color: var(--md-sys-color-tertiary);
  color: var(--md-sys-color-on-tertiary);
}

.feature-card__headline {
  font: var(--md-sys-typescale-title-medium);
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  line-height: 1.5;
}

.feature-card__headline small {
  font-size: 13px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
}

.feature-card__image {
  margin: 16px auto;
  max-width: 320px;
  border-radius: var(--md-sys-shape-corner-lg);
  overflow: hidden;
}

.feature-card__desc {
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.8;
}

.feature-card__list {
  margin: 12px 0;
}

.feature-card__list li {
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-primary);
  font-weight: 500;
  padding: 4px 0;
}

.feature-card__list li::before {
  content: "●";
  font-size: 8px;
  margin-right: 6px;
  vertical-align: middle;
}

/* =========================================
   セット商品オファー
   ========================================= */
.set-offer {
  padding: 40px 16px;
  background-color: var(--color-bg-light-blue);
  margin-bottom: 0;
  border-radius: 0;
}

.set-offer__inner {
  background-color: #fff;
  border-radius: var(--md-sys-shape-corner-xl);
  padding: 32px 20px;
  box-shadow: var(--md-sys-elevation-2);
  text-align: center;
}

.set-offer__lead {
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 24px;
  line-height: 1.8;
}

.set-offer__products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.set-offer__product {
  flex: 0 0 auto;
  max-width: 140px;
  text-align: center;
}

.set-offer__product-image img {
  border-radius: var(--md-sys-shape-corner-md);
}

.set-offer__product-name {
  font: var(--md-sys-typescale-body-small);
  color: var(--md-sys-color-on-surface-variant);
  margin-top: 8px;
}

.set-offer__plus {
  font: 700 28px/1 'Poppins', sans-serif;
  color: var(--md-sys-color-primary);
}

.set-offer__note {
  margin-top: 24px;
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-on-surface-variant);
}

.price-block--set {
  margin-top: 20px;
}

.price-block--teiki {
  margin-top: 16px;
  padding: 16px;
  background-color: var(--md-sys-color-surface-container-low);
  border-radius: var(--md-sys-shape-corner-lg);
}

/* =========================================
   使い方イメージセクション
   ========================================= */
.usage-section {
  padding: 40px 16px;
  background-color: #fff;
  margin-bottom: 0;
  border-radius: 0;
}

.usage-section__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.usage-section__image {
  border-radius: var(--md-sys-shape-corner-xl);
  overflow: hidden;
  box-shadow: var(--md-sys-elevation-1);
}

/* =========================================
   プロダクト ラインナップ
   ========================================= */
.product-lineup {
  padding: 60px 16px 40px;
  margin-bottom: 0;
  border-radius: 0;
  overflow: visible;
}

.product-lineup__inner {
  max-width: 100%;
}

.product-lineup__header {
  text-align: center;
  margin-bottom: 40px;
}

.product-lineup__en {
  font: 600 32px/1 'Poppins', sans-serif;
  color: var(--md-sys-color-on-surface);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.product-lineup__title {
  font: var(--md-sys-typescale-body-medium);
  color: var(--md-sys-color-on-surface-variant);
  letter-spacing: 0.2em;
}

/* =========================================
   p-series (wmn006流用) - MD3スタイル適用
   ========================================= */
#manage {
  margin-top: 0;
}

#manage img {
  width: 100%;
  height: auto;
}

#manage ul,
#manage ul li {
  list-style-type: none;
}

#manage a {
  text-decoration: none;
}

#manage .p-series__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#manage .p-series__item {
  background-color: #fff;
  border-radius: var(--md-sys-shape-corner-xl);
  overflow: hidden;
  box-shadow: var(--md-sys-elevation-1);
  padding: 16px;
  transition: box-shadow 0.2s ease;
}

#manage .p-series__item:hover {
  box-shadow: var(--md-sys-elevation-3);
}

#manage .p-series__picture {
  display: block;
  border-radius: var(--md-sys-shape-corner-lg);
  overflow: hidden;
}

#manage .p-series__title {
  font: var(--md-sys-typescale-title-medium);
  color: var(--md-sys-color-on-surface);
  margin-top: 12px;
  padding: 0 4px;
}

#manage .p-series__button {
  margin-top: 12px;
}

/* c-button MD3 style */
#manage .c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  font: var(--md-sys-typescale-label-large);
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 1px solid var(--md-sys-color-outline);
  border-radius: var(--md-sys-shape-corner-full);
  position: relative;
  background-color: #fff;
  color: var(--md-sys-color-on-surface);
  transition: all 0.2s ease;
}

#manage .c-button:hover {
  background-color: var(--md-sys-color-on-surface);
  color: #fff;
}

#manage .c-button--black {
  background-color: var(--md-sys-color-on-surface);
  color: #fff;
  border-color: var(--md-sys-color-on-surface);
}

#manage .c-button--black:hover {
  background-color: #fff;
  color: var(--md-sys-color-on-surface);
}

#manage .c-button--blank::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(https://www.awri.jp/assets/img/brand/manage/ico_blank.svg) no-repeat center/contain;
  transition: all 0.2s ease;
}

#manage .c-button--blank:hover::after {
  background: url(https://www.awri.jp/assets/img/brand/manage/ico_blank_black.svg) no-repeat center/contain;
}

/* Desktop 2-column for p-series */
@media screen and (min-width: 600px) {
  #manage .p-series__list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
  }
  #manage .p-series__item {
    width: calc((100% - 24px) / 2);
  }
}

/* =========================================
   フッター
   ========================================= */

#campaign .block.footer a {
  
  text-decoration: underline;
}



/* =========================================
   オファーバナー（まずはお試し1本から）
   ========================================= */
.offer .banner {
  width: 100%;
  max-width: 750px;
  background: transparent;
  padding: 40px 50px 44px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  box-sizing: border-box;
}

/* ── 上段：まずはお試し、1本から ── */
.offer .headline {
  display: flex;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  width: 100%;
  justify-content: center;
  padding-right: 120px;
}

.offer .headline-highlight {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
}

.offer .headline-highlight::before {
  content: '';
  position: absolute;
  inset: -2px -10px;
  background: #e8796a;
  z-index: 0;
}

.offer .headline-highlight .num {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
}

.offer .headline-highlight .hon {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
}

/* 商品画像 */
.offer .product-img {
  position: absolute;
  right: 30px;
  top: -14px;
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* ── 価格エリア（PC：1行 / SP：2段） ── */
.offer .price-block-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  flex-wrap: nowrap;
}

.offer .price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

/* PC：price-row--top / bottom はそのまま横並びの一部として機能 */
.offer .price-row--top {
  align-items: baseline;
  gap: 10px;
}

.offer .price-row--bottom {
  align-items: center;
  gap: 24px;
}

/* 通常価格 */
.offer .regular-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer .regular-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.offer .strikethrough-wrapper {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.offer .strikethrough-wrapper::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  height: 3px;
  background: #e8796a;
}

.offer .regular-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 46px;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: 0.01em;
}

.offer .regular-yen {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #1a1a1a;
  margin-left: 1px;
}

/* ── OFFバッジ ── */
.offer .off-badge {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 90px;
}

.offer .off-badge svg.badge-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer .off-badge-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 18px;
  padding-left: 4px;
}

.offer .off-main {
  display: flex;
  align-items: center;
  line-height: 1;
}

.offer .off-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  font-size: 50px;
  color: #e8796a;
  line-height: 1;
  letter-spacing: -0.01em;
}

.offer .off-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2px;
}

.offer .off-percent {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #e8796a;
  line-height: 1;
}

.offer .off-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #e8796a;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: -4px;
}

.offer .off-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #e8796a;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 5px;
}

/* ── 特価：2510と円のベースライン揃え ── */
.offer .sale-price {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.offer .sale-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  font-size: 108px;
  color: #e8796a;
  line-height: 1;
  letter-spacing: 0;
}

.offer .sale-suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-left: 6px;
  padding-bottom: 8px;
}

.offer .tax-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #e8796a;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.offer .sale-yen {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #e8796a;
  line-height: 1;
}

/* ── 画像セクション ── */
.img-section {
  line-height: 0;
}

.img-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── 見出し：中央揃えバリエーション ── */
.offer .headline--center {
  justify-content: center;
  padding-right: 0;
  white-space: nowrap;
  text-align: center;
  flex-wrap: nowrap;
}

/* ── 見出し：2行レイアウト ── */
.offer .headline--multiline {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.offer .headline-line1 {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.offer .headline-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  padding-top: 6px;
}

/* multiline内のハイライトは上方向へはみ出さない */
.offer .headline--multiline .headline-highlight::before {
  inset: 0px -10px 0px -10px;
}

/* =========================================
   おすすめバッジ付きオファー
   ========================================= */
.offer--recommended {
  position: relative;
  background-color: #FFFDE7;
  border-top: 3px solid #F9A825;
  border-bottom: 3px solid #F9A825;
}

.offer--recommended .banner {
  /* バッジ分の上部余白を確保 */
  padding-top: 64px;
}

.offer-recommend-badge {
  position: absolute;
  top: 14px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: #F9A825;
  border: none;
  border-radius: var(--md-sys-shape-corner-sm);
  padding: 8px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(249,168,37,0.45);
}

/* ── img06：一回り小さく中央揃え ── */
.offer-img06-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.offer-img06 {
     width: calc(100% - 20px);
    max-width: 640px;
    height: auto;
    display: block;
}

/* ── ボタン中央揃え（3本セット用） ── */
.offer-cta-button--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── 点線セパレーター ── */
.offer-separator {
  width: calc(100% - 100px);
  margin: 0 auto;
  border: none;
  border-top: 2px dashed var(--md-sys-color-outline-variant);
}

/* ── 3本セット見出し：改行なし ── */
.offer--recommended .headline--center {
  white-space: nowrap;
  flex-wrap: nowrap;
}

/* ── 注釈 ── */
.footnotes {
  padding: 24px 28px 20px;
}

.footnotes p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ── 定期便見出し：「定期便」ハイライト文字サイズ調整 ── */
.offer-headline-highlight--sm .hon {
  font-size: 32px;
}

/* =========================================
   商品特徴：Point カード
   ========================================= */
.feature-point {
  padding: 32px 20px;
  background-color: var(--md-sys-color-surface-container-low);
}

.feature-point__card {
  background-color: #fff;
  border-radius: var(--md-sys-shape-corner-xl);
  overflow: hidden;
  box-shadow: var(--md-sys-elevation-2);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 670px;
  margin: 0 auto;
}

.feature-point__label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 0;
}

/* ── Point アイコン：円形まとめ ── */
.feature-point__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--md-sys-color-surface-container-low);
  border: 2px solid var(--md-sys-color-outline-variant);
  flex-shrink: 0;
  gap: 2px;
  padding: 10px 6px 12px;
  box-sizing: border-box;
}

.feature-point__icon-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface-variant);
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.feature-point__icon-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
}

.feature-point__icon-keyword {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--md-sys-color-on-surface);
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.feature-point__headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--md-sys-color-on-surface);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.feature-point__headline sup {
  font-size: 10px;
  vertical-align: text-top;
  line-height: 24px;
}

.feature-point__img {
  width: 100%;
  height: auto;
  display: block;
  
  object-fit: cover;
}

.feature-point__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--md-sys-color-on-surface);
    text-align: left;
    max-width: 380px;
    /* text-align: center; */
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.02em;
    padding: 8px 0 0;
}

/* =========================================
   魅せる下：キャッチテキスト
   ========================================= */
.catch-text {
  padding: 36px 24px 32px;
  background-color: #fff;
  text-align: center;
}

.catch-text__main {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--md-sys-color-on-surface);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.catch-text__main sup {
      font-size: 12px;
    line-height: 22px;
    vertical-align: text-top;
}
.catch-text__sub {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  padding-bottom: 2px;
}

/* =========================================
   3本目オファー：画像プレースホルダー
   ========================================= */
.img-section--placeholder {
  height: 200px;
  background-color: var(--md-sys-color-surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.img-section--placeholder::after {
  content: "画像差し替え予定";
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  letter-spacing: 0.06em;
}

/* Point2・3：背景色のバリエーション */
.feature-point--2 {
  background-color: #EDF4FB;
}

.feature-point--3 {
  background-color: #F3EFF8;
}
.feature-point--3 .feature-point__card{
    padding: 28px 24px 5px;
}

/* アイコン：各Pointカラー */
.feature-point .feature-point__icon {
  background-color: #F0EDE8;
  border-color: #C8BEB4;
}

.feature-point--2 .feature-point__icon {
  background-color: #DAEAF7;
  border-color: #9DC4E4;
}

.feature-point--3 .feature-point__icon {
  background-color: #EBE4F5;
  border-color: #BBA9D8;
}

/* ── 購入ボタン ── */
.offer-cta-button {
    display: block;
    width: calc(100% - 100px);
    max-width: 400px;
    padding: 24px 24px;
    background-color: #1199e2;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
}
/* =========================================
   レスポンシブ: SP (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
  .offer-section {
    padding: 0 12px;
  }

  .offer-section__inner {
    padding: 24px 16px;
  }

  .product-card {
    gap: 16px;
  }

  .product-card__image {
    flex: 0 0 100px;
    max-width: 100px;
  }

  .price-block__sale-price {
    font-size: 30px;
  }

  .features {
    padding: 32px 12px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .set-offer {
    padding: 32px 12px;
  }

  .set-offer__inner {
    padding: 24px 16px;
  }

  .set-offer__products {
    gap: 8px;
  }

  .set-offer__product {
    max-width: 120px;
  }

  .usage-section {
    padding: 32px 12px;
  }

  .product-lineup {
    padding: 40px 12px 32px;
  }

  #manage .p-series__list {
    gap: 20px;
  }

  #manage .p-series__item {
    padding: 12px;
  }

  /* ── オファーバナー SP ── */
  .offer .banner {
    padding: 24px 4vw 32px;
    gap: 20px;
  }

  /* 1本：見出し（右に商品画像あり） */
  .offer .headline {
    font-size: 5.8vw;
    padding-right: 22vw;
  }

  /* 中央揃え見出し（2本・3本） */
  .offer .headline--center,
  .offer .headline--multiline {
    padding-right: 0;
    font-size: 5.8vw;
    white-space: normal;
    flex-wrap: wrap;
  }

  .offer .headline-line1 {
    font-size: 5.2vw;
  }

  .offer .headline-line2 {
    font-size: 5.2vw;
    padding-top: 3px;
  }

  .offer .headline-highlight .num {
    font-size: 8vw;
  }

  .offer .headline-highlight .hon {
    font-size: 5.8vw;
  }

  /* 商品画像（1本） */
  .offer .product-img {
    height: 20vw;
    right: 3vw;
    top: -2vw;
  }

  /* 価格エリア：SP では縦2段 */
  .offer .price-block-wrap {
    flex-direction: column;
    gap: 6px;
  }

  .offer .price-row {
    gap: 2.5vw;
    flex-wrap: nowrap;
  }

  .offer .price-row--top {
    gap: 2vw;
  }

  .offer .price-row--bottom {
    gap: 3vw;
  }

  .offer .regular-label {
    font-size: 2.8vw;
  }

  .offer .regular-amount {
    font-size: 7.5vw;
  }

  .offer .regular-yen {
    font-size: 3.8vw;
  }

  /* OFFバッジ */
  .offer .off-badge {
    width: 18vw;
    height: 12vw;
    flex-shrink: 0;
  }

  .offer .off-num {
    font-size: 8vw;
  }

  .offer .off-percent {
    font-size: 3.8vw;
  }

  .offer .off-word {
    font-size: 3.5vw;
  }

  .offer .off-sub {
    font-size: 2.2vw;
  }

  /* 特価 */
  .offer .sale-price {
    align-items: flex-end;
  }

  .offer .sale-amount {
    font-size: 17vw;
  }

  .offer .sale-yen {
    font-size: 6vw;
  }

  .offer .tax-label {
    font-size: 2.4vw;
  }

  .offer .sale-suffix {
    padding-bottom: 4px;
  }

  /* 購入ボタン */
  .offer-cta-button {
    font-size: 4.2vw;
    padding: 4vw 5vw;
    width: calc(100% - 8vw);
  }

  /* おすすめバッジ */
  .offer--recommended .banner {
    padding-top: 14vw;
  }

  .offer-recommend-badge {
    top: 3vw;
    left: 4vw;
    font-size: 3.5vw;
    padding: 1.5vw 4vw;
  }

  /* ── featureカード SP ── */
  .feature-point {
    padding: 24px 12px;
  }

  .feature-point__card {
    padding: 20px 16px 24px;
  }

  .feature-point__icon {
    width: 76px;
    height: 76px;
  }

  .feature-point__icon-keyword {
    font-size: 22px;
  }

  .feature-point__headline {
    font-size: 13px;
  }

  .feature-point__desc {
    font-size: 14px;
  }

  /* ── キャッチテキスト SP ── */
  .catch-text {
    padding: 28px 16px 24px;
  }

  .catch-text__main {
    font-size: 17px;
  }
}

/* =========================================
   レスポンシブ: Tablet+ (min-width: 640px)
   ========================================= */
@media (min-width: 640px) {
  .offer-section__inner {
    padding: 40px 32px;
  }

  .features__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .set-offer__inner {
    padding: 40px 32px;
  }

  .set-offer__product {
    max-width: 180px;
  }

  .usage-section__inner {
    flex-direction: row;
    gap: 24px;
  }

  .usage-section__image {
    flex: 1;
  }
}
