
:root {
  --color-primary: #c4704a;
  --color-primary-dark: #a85a3a;
  --color-primary-light: #e8a67a;
  --color-accent: #2d5a4a;
  --color-accent-light: #4a8a72;
  --color-gold: #b8934a;
  --color-gold-light: #d4b06a;
  --color-cream: #faf7f2;
  --color-cream-dark: #f0ebe2;
  --color-warm-white: #fffcf8;
  --color-text: #3a3530;
  --color-text-light: #6a6560;
  --color-text-muted: #9a9590;
  --font-display: 'Zen Kaku Gothic New', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-accent: 'Zen Kaku Gothic New', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --shadow-soft: 0 4px 20px rgba(58, 53, 48, 0.08);
  --shadow-medium: 0 8px 30px rgba(58, 53, 48, 0.12);
  --shadow-strong: 0 12px 40px rgba(58, 53, 48, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #ede4cd;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background: #ede4cd;
  -webkit-font-smoothing: antialiased;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

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

.campaign-top-banner {
  display: block;
  background: linear-gradient(135deg, #d4145a 0%, #ff6b35 50%, #fbb034 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(212, 20, 90, 0.3);
  cursor: pointer;
}

.campaign-top-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.campaign-top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 1;
}

.campaign-top-banner__sparkle {
  font-size: 1.5rem;
  color: #fff;
  animation: sparkle 1.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.campaign-top-banner__sparkle--left {
  animation-delay: 0s;
}

.campaign-top-banner__sparkle--right {
  animation-delay: 0.75s;
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 0.5; 
    transform: scale(0.8); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2); 
  }
}

.campaign-top-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.campaign-top-banner__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.campaign-top-banner__discount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.campaign-top-banner__percent {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff200;
  line-height: 1;
  letter-spacing: -0.02em;
}

.campaign-top-banner__percent small,
.banner-highlight {
  font-size: 1rem;
  font-weight: 700;
}

.campaign-top-banner__off {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-left: 0.1rem;
}

.campaign-top-banner__coupon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* レスポンシブ対応 */

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Section Base */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #faf6f0 0%, #f5ede2 100%);
  overflow: hidden;
  opacity: 1;
  transform: none;
  padding-top: 56px;
}

/* 上部バナー */
.hero-top-banner {
  background: linear-gradient(90deg, #c41e3a 0%, #a01830 100%);
  padding: 10px 20px;
  text-align: center;
}

.banner-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}

.hero-campaign-banner {
  display: block;
  background: #ede4cd;
  padding-bottom: 20px;
}

.hero-campaign-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

/* 右上バッジ */

/* ヒーローコンテンツ */
.hero-content {
  position: relative;
  z-index: 5;
  background: #fff;
  padding: 0;
  text-align: center;
}

.hero-content-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
}

.hero-content-image {
  width: 100%;
  max-width: none;
  margin: 0;
  height: auto;
  display: block;
  border-radius: 0;
  pointer-events: none;
}

/* 「ご購入はこちら」エリアへのリンクオーバーレイ */
.hero-content-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 22%;
  min-width: 140px;
  min-height: 70px;
  z-index: 20;
  cursor: pointer;
  display: block;
  pointer-events: auto;
}

/* 吹き出し */

/* メインタイトル */

/* 商品エリア（旧レイアウト） */

/* 商品パッケージ（旧） */

/* 特徴バッジ（旧） */

/* 商品パッケージ（大きく中央配置） */

/* 特徴バッジ V2（パッケージ周囲に絶対配置） */

/* 新発売バッジ - 右上 */

/* 国産米使用バッジ - 右側中央 */

/* 舌でつぶせるやわらかさバッジ - 左下 */

/* 手書き風テキスト */

/* 下部テキスト */

/* 特徴ポイント */

.offer {
  background: #faf6f0;
  padding: var(--space-lg) 0;
  opacity: 1;
  transform: none;
  text-align: center;
}

.offer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ヘッダー：数量限定 */

/* 商品情報エリア */

/* 価格エリア */
.offer-price-area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.offer-price-nav,
.offer-note-break,
.offer-warning-break,
.faq-question::-webkit-details-marker,
.point__subtitle::after,
.dev-history__subtitle--red::after,
.delicious-menu__overlay .delicious-menu__speech::after,
.sp-only {
  display: none;
}

/* キャンペーンバナー */
.offer-campaign-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #e8453c;
  padding: 12px 62px 8px;
  margin-bottom: var(--space-lg);
  font-weight: 900;
  box-shadow: none;
}

.offer-campaign-banner::before,
.offer-campaign-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 86px;
  height: 5px;
  background: #4a4a4a;
  opacity: 0.9;
}

.offer-campaign-banner::before {
  left: -24px;
  transform: rotate(58deg);
}

.offer-campaign-banner::after {
  right: -24px;
  transform: rotate(-58deg);
}

.offer-campaign-label {
  display: inline-block;
  font-size: clamp(1.55rem, 2.9vw, 2.2rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: #e8453c;
  line-height: 1.15;
  white-space: nowrap;
  padding: 0 0.2em;
  background: linear-gradient(transparent 62%, #f3ea00 62%);
}

.offer-campaign-discount {
  display: inline-block;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  background: linear-gradient(transparent 62%, #f3ea00 62%);
  color: #e8453c;
  padding: 0 0.2em;
  border-radius: 0;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* 価格リスト */
.offer-price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  width: 100%;
  max-width: 900px;
  margin: 0 auto var(--space-md);
}

/* 価格カード */
.offer-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 3px solid #f5a623;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-price-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offer-price-item:first-child {
  background: linear-gradient(135deg, #fffdf5 0%, #fff9e6 100%);
  border-color: #e8941c;
}

/* 袋数（タイトル） */
/* 価格表示エリア */
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: fit-content;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 auto var(--space-sm);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: #c41e3a;
  line-height: 1;
}

.price-yen {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #c41e3a;
}

.price-tax {
  font-size: 0.8rem;
  color: #6a6560;
  display: block;
  flex-basis: 100%;
  margin-top: 4px;
  text-align: center;
  line-height: 1.25;
}

/* クーポン表示 */
.price-coupon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding-top: var(--space-sm);
  border-top: 1px dashed #ddd;
}

.coupon-label {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

.coupon-once {
  font-size: 0.7rem;
  color: #c0392b;
  font-weight: 700;
}

.coupon-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #c0392b;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #fff8e8 0%, #fff3e0 100%);
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 1px;
  border: 2px solid #f5a623;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.coupon-code:hover {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe8cc 100%);
  border-color: #e8941c;
  box-shadow: 0 3px 10px rgba(245, 166, 35, 0.3);
}

.coupon-code:active {
  transform: translateY(0);
}

.coupon-code__text {
  font-family: 'Courier New', monospace;
}

.coupon-code__icon {
  font-size: 0.9em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.coupon-code:hover .coupon-code__icon {
  opacity: 1;
}

.coupon-code__copied {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4caf50;
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.coupon-code.copied .coupon-code__copied {
  opacity: 1;
  transform: scale(1);
}

.coupon-code.copied .coupon-code__text,
.coupon-code.copied .coupon-code__icon,
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

/* 注意書き */
.offer-shipping-note {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6a6560;
  margin-bottom: 12px;
  text-wrap: balance;
}

.offer-coupon-warning {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #c0392b;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.offer-no-break {
  white-space: nowrap;
}

/* CTAボタン */
.offer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(180deg, #6ab04c 0%, #4a9a4a 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 #3a7a3a, 0 10px 20px rgba(74, 154, 74, 0.3);
  transition: all 0.2s ease;
  position: relative;
}

.offer-cta:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #3a7a3a, 0 6px 15px rgba(74, 154, 74, 0.3);
}

.offer-cta:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #3a7a3a, 0 3px 10px rgba(74, 154, 74, 0.3);
}

.cta-text,
.award .container {
  position: relative;
  z-index: 1;
}

.cta-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cta-arrow svg {
  width: 100%;
  height: 100%;
}

.features-showcase {
  opacity: 1;
  transform: none;
  width: 100%;
  background: #fff;
}

.feature-row {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1;
  overflow: hidden;
}

.features-showcase .feature-row:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(150px, 22vw, 280px);
  height: clamp(34px, 5vw, 60px);
  background: #ef3f35;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
  pointer-events: none;
}

.feature-row:nth-child(2) {
  margin-top: -9%;
}

.feature-row:nth-child(3) {
  margin-top: -8.2%;
}

/* 画像（背景として全体表示） */
.feature-row__image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.feature-row__image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* テキストを画像の上にオーバーレイ */
.feature-row__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  padding: 0;
  z-index: 2;
}

/* 左配置 */
.feature-row--accent .feature-row__content {
  left: 5%;
}

.feature-row--accent .feature-row__text--highlight {
  background: white;
  display: inline-block;
  padding: 3px 8px 2px 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ニュートラル（右配置） */
.feature-row--neutral .feature-row__content {
  right: 5%;
  left: auto;
  align-items: flex-end;
  text-align: right;
}

.feature-row--neutral .feature-row__text--highlight {
  background: white;
  display: inline-block;
  padding: 3px 8px 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.feature-row__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.95rem);
  font-weight: 900;
  color: #2f2d2d;
  line-height: 1.22;
  margin: 0;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-row__text--highlight {
  font-weight: 900;
  color: #e4433b;
}

/* レスポンシブ */

.donburi-menu {
  background: white;
  padding: var(--space-xl) 0 0;
  opacity: 1;
  transform: none;
}

.donburi-header {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.donburi-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f4f9a;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.25vw, 1.02rem);
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.donburi-badge::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  background: #1f4f9a;
}

.donburi-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #2f2d2d;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.donburi-title--accent {
  display: block;
  margin-top: 4px;
  font-size: clamp(2.15rem, 3.9vw, 3rem);
  color: #ee443a;
  position: static;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.donburi-title--accent::after,
.user-voice-intro__bubble::after,
.user-voice-intro__bubble::before {
  content: none;
}

.donburi-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.donburi-image {
  margin-bottom: 0;
  position: relative;
}

.donburi-image img,
.enjoy-meal__img,
.tech-secret__bg,
.company-history__bg {
  width: 100%;
  height: auto;
  display: block;
}

.donburi-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--space-lg);
}

.donburi-separator {
  border-bottom: 1px dotted #ccc;
  margin: var(--space-sm) 0;
}

.donburi-item {
  padding: var(--space-xs) 0;
}

.donburi-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #e63946;
  margin-bottom: 6px;
}

.donburi-item__num,
.easy-cooking__time-value strong {
  color: #e63946;
  font-size: 1.5rem;
}

.donburi-item__desc {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  color: #3a3530;
  line-height: 1.6;
}

.enjoy-meal {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.enjoy-meal__content {
  position: absolute;
  top: 29%;
  left: 7%;
  margin: 0;
  text-align: left;
  z-index: 2;
}

.enjoy-meal__bubble {
  display: inline-block;
  background: white;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.enjoy-meal__bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid white;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.enjoy-meal__bubble span {
  font-family: 'Zen Kurenaido', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #5a4a3a;
}

.enjoy-meal__title {
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 900;
  color: #3a3530;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 8px white;
  paint-order: stroke fill;
}

.enjoy-meal__title--red,
.point3__title--red,
.tech-secret__title--red,
.delicious-menu__speech--red,
.delicious-menu__overlay .delicious-menu__speech--red {
  color: #e63946;
}

/* モバイル対応 */

.user-voice-wrapper {
  background-size: auto, 12px 12px;
  background-color: #fdf8f0;
}

.user-voice-intro {
  padding: clamp(44px, 7vw, 92px) 0 clamp(28px, 5vw, 56px);
  text-align: center;
  opacity: 1;
  transform: none;
}

.user-voice-intro__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(12px, 2.2vw, 24px);
}

.user-voice-intro__arch {
  width: clamp(210px, 24vw, 300px);
  height: auto;
  margin-bottom: -4px;
}

.user-voice-intro__icon {
  width: clamp(64px, 8vw, 96px);
}

.user-voice-intro__icon img,
.point4__step-img {
  width: 100%;
  height: auto;
}

.user-voice-intro__bubble {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 2px solid #5a5756;
  border-radius: 999px;
  padding: 10px 34px;
  margin-bottom: clamp(18px, 3vw, 30px);
  position: relative;
  box-shadow: none;
}

.user-voice-intro__bubble-line {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  background: transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #1f1f1f;
}

.user-voice-intro__bubble-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  font-weight: 900;
  color: #2f2d2d;
  line-height: 1.2;
}

.user-voice-intro__rice-icon {
  width: clamp(34px, 4.6vw, 52px);
  height: auto;
}

.user-voice-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-top: clamp(10px, 2.2vw, 20px);
  letter-spacing: 0.01em;
}

.user-voice-intro__title--black {
  color: #3a3530;
}

.user-voice-intro__title--red {
  color: #e8453c;
  position: relative;
  display: inline-block;
}

.user-voice-intro__title--red:last-child::after {
  content: '';
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 6%;
  height: 0.16em;
  background: #efe91f;
  border-radius: 999px;
  transform: rotate(-8deg);
  z-index: -1;
}

.voices-list {
  padding: var(--space-md) 0 var(--space-xl);
  opacity: 1;
  transform: none;
  overflow: hidden;
  background: radial-gradient(circle, #e8dfcf 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  background-color: #f8f4ec;
}

.voice-card {
  background-color: #ffffff;
  border: 2px solid #e6ddcc;
  border-radius: 18px;
  padding: var(--space-lg) var(--space-md);
  padding-top: calc(var(--space-lg) + 10px);
  margin: 34px var(--space-md) var(--space-sm);
  position: relative;
  box-shadow: none;
}

.voice-card:first-child {
  margin-top: 16px;
}

.voice-card__badge {
  position: absolute;
  top: -18px;
  background: linear-gradient(135deg, #e63946 0%, #c0392b 100%);
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 5px 22px;
  letter-spacing: 0.08em;
  z-index: 3;
}

.voice-card--left .voice-card__badge {
  left: calc(-1 * var(--space-md));
  border-radius: 0 30px 30px 0;
}

.voice-card--right .voice-card__badge {
  right: calc(-1 * var(--space-md));
  border-radius: 30px 0 0 30px;
}

.voice-card__content {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-top: 6px;
}

.voice-card__avatar {
  flex-shrink: 0;
  text-align: center;
  width: 92px;
}

.voice-card__avatar img {
  width: 82px;
  height: auto;
  margin-bottom: 6px;
}

.voice-card__author {
  display: block;
  font-size: 0.92rem;
  color: #6a6560;
  font-weight: 700;
}

.voice-card__text {
  flex: 1;
}

.voice-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #e63946;
  line-height: 1.45;
  margin-bottom: 10px;
  padding-left: 0;
}

.voice-card__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #e8e1cf;
  margin-top: 10px;
}

.voice-card__desc {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: #2f2d2d;
  line-height: 1.65;
  margin: 0;
}

.voice-card__highlight {
  color: #ea4a3f;
  font-weight: 900;
  padding: 0 0.1em;
  background: linear-gradient(transparent 56%, #f5edc9 56%);
}

.voice-card__note {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: #6a6560;
  line-height: 1.6;
  margin-top: 8px;
}

.voices-list__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #6a6560;
  margin-top: var(--space-md);
}

/* Dark curtain overlay for theater effect */
.award::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Gold confetti effect */

.award-confetti::before {
  animation: confetti-float 2s ease-in-out infinite;
}

@keyframes confetti-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
    opacity: 0.8;
  }
}

/* AWARD badge */

/* Intro text with decorative slashes */

/* Main award area with laurels */

/* Laurel wreaths */

/* Award content (crown + title) */

/* Product image */

/* Responsive */

.price-unit {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #3a3530;
  margin-bottom: 8px;
}

.price-unit small {
  font-size: 0.8rem;
  font-weight: 400;
}

.dev-voice {
  background: #e8e5de;
  padding: var(--space-xl) 0;
  text-align: center;
}

.dev-voice__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 25px);
  margin-bottom: 10px;
}

.dev-voice__product-img {
  width: 55px;
  height: auto;
  vertical-align: middle;
  margin-left: 10px;
}

.dev-voice__speech-bubble {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 45px;
  border-radius: 30px;
  margin-bottom: 10px;
  position: relative;
  white-space: nowrap;
}

.dev-voice__speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #2d5a87;
}

.dev-voice__avatar {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: var(--space-md);
}

.dev-voice__avatar-img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dev-voice__card {
  background: white;
  border-radius: 20px;
  padding: var(--space-lg);
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dev-voice__text,
.professor-recommend__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #3a3530;
  line-height: 2;
  text-align: left;
  margin: 0 0 var(--space-md) 0;
}

.dev-voice__text:last-child,
.professor-recommend__text:last-of-type {
  margin-bottom: 0;
}

.professor-recommend {
  padding: var(--space-xl) 0;
  text-align: center;
}

.professor-recommend__arch {
  width: clamp(180px, 22vw, 240px);
  height: auto;
  margin: 0 auto var(--space-xs);
  display: block;
}

.professor-recommend__title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 var(--space-lg) 0;
}

.professor-recommend__highlight {
  color: #c41e3a;
  background: linear-gradient(transparent 70%, #ffe033 70%);
  padding: 0 5px;
}

.professor-recommend__profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.professor-recommend__info {
  text-align: right;
}

.professor-recommend__affiliation {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #3a3530;
  margin: 0 0 5px 0;
}

.professor-recommend__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #3a3530;
  margin: 0;
}

.professor-recommend__name strong {
  font-size: 1.4rem;
  font-weight: 700;
}

.professor-recommend__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.professor-recommend__card {
  background: white;
  border-radius: 20px;
  padding: var(--space-lg);
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.professor-recommend__text-highlight {
  background: linear-gradient(transparent 60%, #fff44f 60%);
}

.professor-recommend__corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 60px;
  border-color: transparent transparent #c41e3a transparent;
}

.okazu {
  background: white;
  padding: var(--space-xl) 0;
  text-align: center;
}

.okazu__lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: #3a3530;
  line-height: 1.6;
  margin: 0 0 var(--space-sm) 0;
}

.okazu__divider {
  position: relative;
  width: min(80%, 320px);
  height: 14px;
  margin: 0 auto var(--space-xs);
}

.okazu__divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #3a3530;
}

.okazu__divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #3a3530;
}

.okazu__title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 var(--space-lg) 0;
}

.okazu__title--red,
.okazu__benefit-highlight--red {
  color: #c41e3a;
}

.okazu__plate {
  max-width: 85%;
  height: auto;
  margin-bottom: var(--space-lg);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.okazu__variation-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px 30px;
  margin: 0 0 var(--space-lg) 0;
}

.okazu__variation-wrapper::before,
.okazu__variation-wrapper::after {
  top: 0;
  left: 0;
}

.okazu__variation-wrapper::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4a67a;
  top: 0;
  right: 0;
}

.okazu__variation-dots-bottom::before,
.okazu__variation-dots-bottom::after {
  bottom: 0;
  left: 0;
}

.okazu__variation-dots-bottom::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4a67a;
  bottom: 0;
  right: 0;
}

.okazu__variation {
  font-family: "Klee One", cursive, var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: #3a3530;
  line-height: 1.8;
  margin: 0;
  display: inline-block;
}

.okazu__benefits {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.okazu__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 3px solid #c41e3a;
  border-radius: 50%;
  padding: 15px;
  text-align: center;
}

.okazu__benefit-highlight {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #3a3530;
  white-space: nowrap;
  background: linear-gradient(transparent 60%, #fff44f 60%);
  padding: 0 2px;
}

.okazu__benefit-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a3530;
}

.okazu__people {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.category {
  background: #f5f3ed;
  padding: var(--space-xl) 0;
  text-align: center;
}

.category__lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  margin: 0 0 var(--space-sm) 0;
}

.category__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 var(--space-lg) 0;
}

.category__title--highlight,
.cta-final__highlight {
  background: linear-gradient(transparent 60%, #fff44f 60%);
  padding: 0 5px;
}

.category__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding: 0 var(--space-md);
}

.category__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category__badge {
  background: #2a2a2a;
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
}

.category__image-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background: white;
}

.category__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category__banner {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.category__banner-text,
.purchase-cta__text,
.point3__bowl-label--orange strong {
  color: white;
}

.category__featured {
  background: white;
  border-radius: 15px;
  padding: var(--space-md);
  margin: 0 auto;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.category__featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.cta-final,
.purchase-cta {
  background: white;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.cta-final__intro {
  font-family: "Klee One", cursive, var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: #c41e3a;
  margin: 0 0 var(--space-md) 0;
  font-style: italic;
}

.cta-final__badge {
  display: inline-block;
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  margin: 0 0 var(--space-md) 0;
  position: relative;
}

.cta-final__badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #a01830;
}

.cta-final__headline {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.5;
  margin: var(--space-md) 0 var(--space-lg) 0;
}

.cta-final__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.faq {
  background: white;
  padding: var(--space-2xl) 0;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  cursor: pointer;
  list-style: none;
}

.q-icon, .a-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.q-icon {
  background: var(--color-accent);
  color: white;
}

.a-icon {
  background: var(--color-primary);
  color: white;
}

.q-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.q-toggle {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-text-muted);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.q-toggle::before,
.q-toggle::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.q-toggle::before {
  width: 10px;
  height: 2px;
}

.q-toggle::after {
  width: 2px;
  height: 10px;
}

.faq-item[open] .q-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
  padding-top: 0;
  flex: 1;
  min-width: 0;
}

.site-header {
  background: #ede4cd;
  border-bottom: 1px solid var(--color-cream-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-row-bottom {
  justify-content: flex-end;
  padding-right: 20px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-item:hover {
  background: rgba(196, 112, 74, 0.1);
  color: var(--color-primary);
}

.purchase-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(180deg, #7cc576 0%, #4a9f42 50%, #3d8a36 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(74, 159, 66, 0.4);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.purchase-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 159, 66, 0.5);
}

.purchase-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  color: #4a9f42;
  border-radius: 50%;
  font-size: 1rem;
}

.purchase-cta__rice {
  position: absolute;
  right: -30px;
  bottom: -10px;
  width: 80px;
  height: auto;
}

.site-footer {
  background: var(--color-cream);
  border-top: 1px solid var(--color-cream-dark);
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  text-align: center;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-display);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-divider {
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-copyright {
  font-size: 13px;
  opacity: 0.6;
  color: var(--color-text-light);
  font-family: var(--font-display);
}

/* ヘッダー・フッター レスポンシブ */

.recommend-checklist {
  background: #f5f3ef;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.recommend-checklist__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #e63946;
  line-height: 1.4;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.recommend-checklist__title--highlight {
  background: #fff44f;
  padding: 2px 5px;
}

.recommend-checklist__notebook {
  position: relative;
  background: white;
  background-size: 25px 35px;
  border-radius: 8px;
  padding: var(--space-xl) var(--space-lg);
  padding-top: 50px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.recommend-checklist__spiral {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 30px;
}

.recommend-checklist__spiral span {
  width: 20px;
  height: 30px;
  background: linear-gradient(180deg, #4a7c9b 0%, #3a6a8a 100%);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.recommend-checklist__spiral span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.recommend-checklist__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recommend-checklist__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid transparent;
}

.recommend-checklist__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: white;
  color: #e63946;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.recommend-checklist__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a3530;
  line-height: 1.4;
}

.recommend-checklist__spoon {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 150px;
  height: auto;
  transform: rotate(-15deg);
}

.point__badge {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  min-width: 210px;
  background: #ea463c;
  color: #ffe6a8;
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  border-radius: 9999px;
  margin-bottom: var(--space-md);
}

.point__badge-num {
  font-size: 1.5em;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.point__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 5.4vw, 3.4rem);
  font-weight: 900;
  color: #34363b;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.point__subtitle::before,

.point__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.8vw, 4.4rem);
  font-weight: 900;
  color: #2f3136;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.95);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.point__brace {
  position: relative;
  width: min(92%, 680px);
  height: 32px;
  margin: 0 auto var(--space-md);
  border-bottom: 4px solid #3d3f44;
  border-left: 4px solid #3d3f44;
  border-right: 4px solid #3d3f44;
  border-radius: 0 0 16px 16px;
}

.point__brace::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #3d3f44;
}

.point3 {
  background: #fff;
  background-size: 25px 35px;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  opacity: 1;
  transform: none;
}

.point3__header,
.point4__header {
  margin-bottom: var(--space-lg);
}

.point3__speech-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) auto;
  max-width: 520px;
  position: relative;
}

.point3__speech-photo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-right: -15px;
}

.point3__speech {
  background: #f5f3ef;
  border-radius: 30px;
  padding: 22px 35px 22px 45px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.point3__speech p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  font-weight: 700;
  color: #3a3530;
  margin: 0;
  line-height: 1.6;
  text-align: left;
  white-space: nowrap;
}

.point3__speech--underline {
  text-decoration: underline;
  text-decoration-color: #3a3530;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.point3__arrow {
  font-size: 1.2rem;
  color: #888;
  margin: var(--space-sm) 0;
}

.point3__recommend-img {
  display: block;
  width: clamp(180px, 50vw, 280px);
  height: auto;
  margin: 0 auto var(--space-md);
}

.point3__banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f5a623 0%, #e8941c 100%);
  color: white;
  padding: 14px 36px;
  border-radius: 30px;
  margin-bottom: var(--space-lg);
  position: relative;
}

.point3__banner-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  white-space: nowrap;
}

.point3__flame-img {
  width: 48px;
  height: auto;
  position: absolute;
  top: -28px;
  right: -12px;
}

.point3__comparison {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  width: 92%;
  max-width: 700px;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: visible;
}

.point3__comparison-box {
  border: 3px dotted #ccc;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.point3__comparison-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.6rem);
  font-weight: 700;
  color: #3a3530;
  margin: 0 0 8px 0;
}

.point3__comparison-highlight {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  font-weight: 900;
  color: #3a3530;
  margin: 0;
}

.point3__kcal {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 900;
  color: #e63946;
  background: #fff44f;
  padding: 0 6px;
  line-height: 1.1;
}

.point3__kcal-unit {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: #e63946;
}

.point3__bowls {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  margin-bottom: 25px;
  padding: 0 10px;
}

.point3__bowl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.point3__bowl-deco {
  position: relative;
  display: inline-block;
  padding: 14px 14px 4px;
  margin-bottom: 8px;
}

.point3__bowl-deco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 45%;
  border-bottom: none;
  border-radius: 70px 70px 0 0;
}

.point3__bowl-deco--red::before {
  border-color: #e8635a;
}

.point3__bowl-img {
  width: clamp(100px, 28vw, 160px);
  height: auto;
  display: block;
}

.point3__bowl-label {
  display: inline-block;
  background: #f0ede8;
  padding: 7px 18px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  color: #3a3530;
  white-space: nowrap;
}

.point3__bowl-label strong {
  color: #e63946;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.point3__bowl-label--orange {
  background: #e8635a;
  color: white;
}

.point3__product {
  position: absolute;
  bottom: 0;
  right: clamp(-30px, -6vw, -50px);
  width: clamp(45px, 12vw, 70px);
  height: auto;
  transform: rotate(3deg);
}

.point3__equals {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  color: #3a3530;
  align-self: center;
  flex-shrink: 0;
}

.point3__note {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.2vw, 1.3rem);
  font-weight: 700;
  color: #3a3530;
  line-height: 1.9;
  margin: 0;
  padding: 0;
}

.point3__disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin-top: var(--space-md);
}

.point4 {
  background: #f5f3ef;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  opacity: 1;
  transform: none;
}

.point4__title--highlight,
.brand-story__title--highlight {
  color: #e63946;
  background: linear-gradient(transparent 60%, #fff44f 60%);
}

.point4__steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-lg);
}

.point4__step {
  text-align: center;
  position: relative;
  flex: 1;
}

.point4__step-label {
  display: inline-block;
  background: #1a3a6e;
  color: #fff44f;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}

.point4__step-label--orange,
.point4__step-label--green {
  background: #1a3a6e;
}

.point4__desc {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  font-weight: 500;
  color: #3a3530;
  line-height: 2;
  text-align: left;
  max-width: 90%;
  margin: 0 auto var(--space-lg);
}

.point4__mark {
  background: #fff44f;
  color: #e63946;
  font-weight: 700;
  padding: 2px 0;
}

.point4__no-need-img {
  width: 100%;
  max-width: clamp(300px, 60vw, 550px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.storage {
  background: rgb(242, 240, 231);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  opacity: 1;
  transform: none;
}

.storage__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 900;
  color: white;
  margin: 0 0 var(--space-lg) 0;
  background: #e63946;
  padding: 18px 50px;
  border-radius: 12px;
  display: inline-block;
  position: relative;
}

.storage__title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #e63946;
}

.storage__title--highlight,
.easy-cooking__title--yellow {
  color: #fff44f;
}

.storage__products {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.storage__5pack {
  width: clamp(280px, 65vw, 550px);
  height: auto;
  display: block;
}

.storage__badge {
  position: absolute;
  top: 5%;
  right: -10%;
  background: linear-gradient(135deg, #1a5a8a 0%, #0d4a6f 100%);
  color: white;
  width: clamp(80px, 18vw, 120px);
  height: clamp(80px, 18vw, 120px);
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.storage__badge-label {
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  font-weight: 700;
  line-height: 1.2;
}

.storage__badge-value {
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  font-weight: 700;
  line-height: 1;
}

.storage__badge-value strong {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 900;
}

.storage__lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.7rem);
  font-weight: 600;
  color: #3a3530;
  line-height: 1.8;
  margin: 0 0 var(--space-lg) 0;
  position: relative;
  display: inline-block;
}

.storage__lead::before,
.storage__lead::after {
  left: -75px;
  transform: translateY(-50%) rotate(60deg);
}

.storage__lead::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background: #3a3530;
  right: -75px;
  transform: translateY(-50%) rotate(-60deg);
}

.storage__scenes-img {
  width: 100%;
  max-width: clamp(320px, 65vw, 600px);
  height: auto;
  display: block;
  margin: 0 auto var(--space-lg);
}

.storage__safety {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.7rem);
  font-weight: 600;
  color: #3a3530;
  line-height: 1.8;
  margin: 0;
}

.storage__safety strong {
  font-weight: 900;
}

.brand-story {
  background: white;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  opacity: 1;
  transform: none;
}

.brand-story__logo {
  max-width: 180px;
  height: auto;
  margin: 0 auto var(--space-lg);
  display: block;
}

.brand-story__quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a3530;
  margin: 0 0 var(--space-sm) 0;
}

.brand-story__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #3a3530;
  line-height: 1.5;
  margin: 0 0 var(--space-lg) 0;
}

.brand-story__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 var(--space-lg) 0;
}

.brand-story__desc {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #3a3530;
  line-height: 2;
  text-align: justify;
  margin: 0;
}

.brand-story__product-list {
  max-width: 100%;
  height: auto;
  margin-top: var(--space-lg);
}

.limited-sale {
  padding: clamp(16px, 2.5vw, 28px) 0 clamp(12px, 2vw, 20px);
  opacity: 1;
  transform: none;
  position: relative;
  z-index: 1;
}

.limited-sale .container {
  position: relative;
  z-index: 2;
}

.limited-sale__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(16px, 2.4vw, 28px);
}

.limited-sale__header {
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.limited-sale__badge {
  display: inline-block;
  position: relative;
  background: #ed3d31;
  color: #ffeb9a;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.08rem, 2.1vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding: 12px 36px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 rgba(124, 20, 16, 0.18);
}

.limited-sale__badge::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 17px solid #ed3d31;
}

.limited-sale__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(4rem, 8vw, 7.1rem);
  font-weight: 900;
  color: #1c4f99;
  line-height: 1.08;
  letter-spacing: 0.06em;
  margin: 0;
  white-space: nowrap;
}

.limited-sale__product {
  flex: 0 0 auto;
}

.limited-sale__product-img {
  width: min(230px, 26vw);
  max-width: 230px;
  height: auto;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.18));
}

.limited-sale__stores {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 480px;
  margin: 0 auto;
}

.store-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background: white;
  border: 4px solid #1d4f99;
  border-radius: 50px;
  padding: 14px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-card:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 75, 140, 0.15);
}

.store-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 600;
  color: #3a3530;
  line-height: 1.4;
}

.store-card__logo {
  height: 30px;
  width: auto;
}

.store-card__logo--eversmile {
  height: 70px;
}

.award {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  overflow: visible;
  background: url('design/4_lp_03/red-curtain-vector.png') center center;
  background-size: cover;
  padding-bottom: 100px;
  opacity: 1;
  transform: none;
  --award-gold-bright: #f4e1bb;
  --award-gold-mid: #ecd19e;
  --award-gold-deep: #ddb978;
}

.award__content {
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-inline: clamp(12px, 2.8vw, 24px);
}

.award__badge {
  display: inline-block;
  background: #faf5e8;
  color: #8b0000;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 10px 30px;
  border-radius: 30px;
  margin-bottom: var(--space-md);
}

.award__intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff6e6;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.award__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.88rem, 3.7vw, 2.55rem);
  font-weight: 900;
  color: white;
  line-height: 1.24;
  margin-bottom: var(--space-lg);
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}

.award__line-no-break {
  display: block;
  width: fit-content;
  margin-inline: auto;
  white-space: nowrap;
}

.award__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: var(--space-sm);
}

.award__line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(236, 209, 158, 0.18) 0%, rgba(236, 209, 158, 0.99) 24%, rgba(236, 209, 158, 0.99) 76%, rgba(236, 209, 158, 0.18) 100%);
}

.award__crown {
  font-size: 2rem;
  color: var(--award-gold-bright);
  line-height: 1;
  text-shadow: 0 1px 1px rgba(91, 48, 19, 0.12);
}

.award__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.award__laurel {
  height: 120px;
  width: auto;
}

.award__laurel--right {
  transform: scaleX(-1);
}

.award__title {
  font-family: 'Yu Mincho', 'Hiragino Mincho ProN', 'YuMincho', 'MS PMincho', serif;
  font-size: clamp(4.1rem, 8.1vw, 6.55rem);
  font-weight: 900;
  color: var(--award-gold-mid);
  background: linear-gradient(180deg, #f8edd6 0%, var(--award-gold-bright) 24%, var(--award-gold-mid) 62%, var(--award-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(118, 63, 29, 0.08), 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.award__product {
  position: relative;
  z-index: 10;
  margin-top: var(--space-md);
  margin-bottom: -60px;
}

.award__product-img {
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
  border-radius: 8px;
}

.award__divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #f5f7fa 50%, #f5f7fa 100%);
  z-index: 1;
}

.tech-secret {
  position: relative;
  overflow: visible;
  opacity: 1;
  transform: none;
  margin-bottom: -10%;
  z-index: 2;
}

.tech-secret__image {
  position: relative;
  width: 100%;
  overflow: visible;
}

.tech-secret__content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: var(--space-md);
  text-align: center;
}

.tech-secret__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.tech-secret__badge {
  background: #1a3a6e;
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  border: 3px solid white;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tech-secret__badge-highlight {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
}

.tech-secret__x {
  font-size: 2rem;
  font-weight: 300;
  color: #3a3530;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.tech-secret__intro {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #5a4a3a;
  margin-bottom: var(--space-sm);
  -webkit-text-stroke: 4px white;
  paint-order: stroke fill;
}

.tech-secret__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #3a3530;
  line-height: 1.3;
  margin: 0;
  -webkit-text-stroke: 6px white;
  paint-order: stroke fill;
}

.company-history {
  position: relative;
  opacity: 1;
  transform: none;
  z-index: 3;
}

.company-history__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.company-history__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 22px 24px 26px;
  background: linear-gradient(135deg, rgba(250, 249, 247, 0.94) 0%, rgba(244, 244, 247, 0.94) 50%, rgba(250, 249, 247, 0.94) 100%);
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
  box-shadow: 0 8px 28px rgba(30, 28, 20, 0.18), 0 2px 8px rgba(30, 28, 20, 0.10);
}

.company-history__header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid rgba(250, 249, 247, 0.94);
  z-index: 2;
  filter: drop-shadow(0 3px 3px rgba(30, 28, 20, 0.08));
}

.company-history__badge {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 30% 30%, #f5e6a3 0%, #d4af37 50%, #a08030 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2), inset 0 2px 10px rgba(255,255,255,0.3);
  margin-right: var(--space-md);
  border: 3px solid #d4af37;
}

.company-history__badge-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #5a4a30;
  border-bottom: 1px solid #5a4a30;
  padding-bottom: 2px;
  margin-bottom: 5px;
}

.company-history__badge-years {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: #5a4a30;
  line-height: 1;
}

.company-history__badge-years small {
  font-size: 1.2rem;
  font-weight: 700;
}

.company-history__text {
  padding-top: var(--space-sm);
}

.company-history__subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #3a3530;
  margin-bottom: var(--space-xs);
}

.company-history__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #3a3530;
  line-height: 1.2;
  margin: 0;
}

.company-history__title--gold {
  color: #b8960c;
  font-style: italic;
}

.interview-video {
  background: #f5f7fa;
  padding: var(--space-lg) var(--space-md);
  opacity: 1;
  transform: none;
}

.interview-video__player {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.dev-history {
  position: relative;
  background: #f8f6f2;
  padding: 0 0 var(--space-lg);
  text-align: center;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

/* --- Intro block --- */
.dev-history__intro {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-lg);
}

.dev-history__watermark {
  font-family: var(--font-display);
  font-size: clamp(3.0rem, 13vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #e8e3d9;
  margin: 0;
}

.dev-history__label {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: #9a9590;
  margin: var(--space-lg) 0 14px;
}

.dev-history__pill {
  display: inline-block;
  background: linear-gradient(180deg, #f0dfa0 0%, #c9a44a 50%, #b8934a 100%);
  color: #4a3b22;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  padding: 12px 32px;
  border-radius: 9999px;
  margin-bottom: var(--space-md);
  box-shadow: 0 2px 8px rgba(180, 140, 60, 0.2);
}

.dev-history__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #2a2a2a;
  margin: 0;
}

/* --- Coffee image + badge --- */
.dev-history__content {
  background: white;
  padding: 0 0 var(--space-lg);
  border-radius: 12px;
  margin-bottom: var(--space-lg);
  overflow: visible;
  position: relative;
}

.dev-history__coffee {
  position: relative;
  margin: 0 0 var(--space-lg);
}

.dev-history__coffee-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.dev-history__first-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10;
}

.dev-history__first-badge-img {
  width: clamp(110px, 32vw, 170px);
  height: auto;
}

.dev-history__subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #3a3530;
  margin-bottom: var(--space-md);
  line-height: 1.6;
  position: relative;
  display: inline-block;
}

.dev-history__subtitle::after {
  content: '';
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  height: 10px;
  background: #fff44f;
  z-index: -1;
}

.dev-history__subtitle--red {
  color: #e63946;
  font-size: 1.8rem;
  display: block;
  position: relative;
}

.dev-history__text {
  margin-left: var(--space-lg);
  margin-right: var(--space-lg);
  font-size: 0.95rem;
  color: #5a5550;
  line-height: 1.8;
  text-align: left;
  margin-bottom: var(--space-md);
}

.dev-history__cta {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e63946;
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  padding: 12px 28px 14px;
  letter-spacing: 0.02em;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  z-index: 5;
  box-shadow: 0 4px 8px rgba(136, 42, 35, 0.28);
}

.dev-history__result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: calc(var(--space-md) + 20px) var(--space-md) var(--space-sm);
  background: transparent;
}

.dev-history__result-text {
  position: relative;
  text-align: left;
  flex-shrink: 0;
  transform: rotate(-3deg);
  padding: 14px 8px 12px;
}

.dev-history__result-text::before,
.dev-history__result-text::after {
  top: -8px;
  left: -14px;
  width: 124%;
  transform: rotate(3.5deg);
}

.dev-history__result-text::after {
  content: "";
  position: absolute;
  border-top: 3px dotted rgba(70, 64, 58, 0.65);
  transform-origin: left center;
  bottom: -9px;
  left: -8px;
  width: 112%;
  transform: rotate(-3.8deg);
}

.dev-history__handwritten {
  font-family: "Hiragino Maru Gothic ProN", "Yuji Syuku", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5a4a3a;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.dev-history__handwritten:first-child {
  font-size: 0.95rem;
  color: #2f2b28;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.dev-history__handwritten--accent {
  color: #d75a48;
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
}

.dev-history__handwritten--final {
  color: #2f2b28;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
}

.dev-history__rice-img {
  max-width: 148px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 8px 8px rgba(58, 53, 48, 0.22));
  flex-shrink: 0;
}

.point1 {
  background-size: 34px 34px, 34px 34px, auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  opacity: 1;
  transform: none;
}

.point1__inner {
  max-width: 980px;
  margin: 0 auto;
}

.point1__lead {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 5.4vw, 3.4rem);
  font-weight: 900;
  color: #34363b;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}

.point1__lead-line {
  display: block;
  white-space: nowrap;
}

.point1 .point__title {
  display: inline-block;
  background: linear-gradient(transparent 74%, #efe96f 74%);
  padding: 0 0.1em;
  word-break: normal;
}

.point1__title-red,
.point2__title--red {
  color: #ea463c;
}

.delicious-menu {
  background: #fffdf5;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  opacity: 1;
  transform: none;
}

.delicious-menu__speech {
  background: white;
  border: 3px solid #e63946;
  border-radius: 20px;
  padding: 15px 25px;
  position: relative;
}

.delicious-menu__speech::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: #e63946;
}

.delicious-menu__speech p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #3a3530;
  margin: 0;
  line-height: 1.5;
}

.delicious-menu__count {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 var(--space-lg) 0;
}

.delicious-menu__count--blue,
.delicious-menu__overlay .delicious-menu__count--blue {
  color: #1a3a6e;
}

.delicious-menu__count--red {
  color: #e63946;
  font-size: 4rem;
}

.kodawari {
  position: relative;
  opacity: 1;
  transform: none;
}

.kodawari__hero {
  position: relative;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
}

.kodawari__bg {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}

.kodawari__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
}

.kodawari__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.kodawari__subtitle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #3a3530;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  text-align: center;
  -webkit-text-stroke: 2px #ffffff;
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
}

.kodawari__product {
  max-width: 80px;
  height: auto;
  transform: rotate(8deg);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.kodawari__title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #3a3530;
  margin: 0;
  text-align: center;
  position: relative;
  display: inline-block;
  align-self: center;
  margin-top: 6%;
  margin-bottom: 0;
  -webkit-text-stroke: 4px #ffffff;
  paint-order: stroke fill;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.95);
}

.kodawari__title::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -10px;
  right: -10px;
  height: 20px;
  background: #fff44f;
  z-index: -1;
}

.kodawari__title--red {
  color: #e63946;
  font-size: 4.2rem;
  margin-right: -0.01em;
}

.kodawari__caption-box {
  position: absolute;
  top: 56%;
  left: 14%;
  bottom: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  transform: rotate(-18deg);
}

.kodawari__caption-box::before,
.kodawari__caption-box::after {
  left: -140px;
  transform: translateY(-50%) rotate(75deg);
}

.kodawari__caption-box::after {
  content: "・・・・・・・・";
  position: absolute;
  top: 54%;
  color: #bda871;
  font-size: 1.15rem;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 0.9px #ffffff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  right: -140px;
  transform: translateY(-50%) rotate(105deg);
}

.kodawari__caption {
  font-family: "Hiragino Maru Gothic ProN", "Yuji Syuku", "Segoe Print", cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: #b8860b;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0;
  -webkit-text-stroke: 1.5px #ffffff;
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
}

.delicious-menu__header-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a3a6e;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0;
  padding: var(--space-md) 0 var(--space-sm);
  background: #fffdf5;
}

.delicious-menu__hero,
.point2__hero {
  position: relative;
  width: 100%;
  max-height: none;
  overflow: visible;
}

.delicious-menu__hero-img,
.point2__hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.delicious-menu__overlay {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.delicious-menu__overlay .delicious-menu__speech {
  background: white;
  border: 3px solid #e63946;
  border-radius: 25px;
  padding: 15px 25px;
  display: inline-block;
}

.delicious-menu__overlay .delicious-menu__speech p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #3a3530;
  margin: 0;
  line-height: 1.5;
}

.delicious-menu__overlay .delicious-menu__count {
  display: block;
  background: transparent;
  padding: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.delicious-menu__overlay .delicious-menu__count--red {
  color: #e63946;
  font-size: 3.2rem;
}

.easy-cooking {
  background-size: 32px 32px, 32px 32px, auto;
  padding: var(--space-lg) var(--space-md);
  opacity: 1;
  transform: none;
}

.easy-cooking__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.easy-cooking__title {
  display: inline-block;
  background: #e63946;
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 12px 30px;
  border-radius: 8px;
  margin: 0;
}

.easy-cooking__card {
  background: white;
  border: 3px solid #1a3a6e;
  border-radius: 16px;
  padding: var(--space-lg);
  max-width: 500px;
  margin: 0 auto;
}

.easy-cooking__method {
  margin-bottom: var(--space-md);
}

.easy-cooking__method-label {
  display: inline-block;
  background: #1a3a6e;
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: var(--space-sm);
}

.easy-cooking__method-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.easy-cooking__method-text {
  font-size: 0.95rem;
  color: #3a3530;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.easy-cooking__br-pc {
  display: inline;
}

.easy-cooking__time {
  flex-shrink: 0;
  background: #f5f0e0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.easy-cooking__time-label {
  font-size: 0.75rem;
  color: #5a4a3a;
}

.easy-cooking__time-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a3530;
}

.easy-cooking__divider {
  border-top: 2px dashed #ccc;
  margin: var(--space-md) 0;
}

.easy-cooking__note {
  font-size: 0.9rem;
  color: #5a5550;
  text-align: center;
  margin: var(--space-md) 0 0 0;
}

.point2 {
  background: #f8f6f2;
  opacity: 1;
  transform: none;
}

.point2__overlay {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: var(--space-md) var(--space-md);
  text-align: center;
  width: 100%;
}

.point2__inner {
  max-width: min(92%, 640px);
  margin: 0 auto;
}

.point2__lead {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.8vw, 1.8rem);
  font-weight: 900;
  color: #34363b;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}

.point2__lead-line {
  display: block;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.point2 .point__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(1.9rem, 4.8vw, 3.8rem);
  text-align: center;
}

.point2__title-line {
  display: block;
  width: fit-content;
  background: linear-gradient(transparent 74%, #efe96f 74%);
  padding: 0 0.08em;
  white-space: nowrap;
}

.point2__content {
  padding: var(--space-xl) var(--space-lg);
  text-align: left;
  background: white;
}

.point2__desc {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #3a3530;
  line-height: 2.2;
  text-align: left;
  margin: 0;
}

.point2__highlight {
  background: #fff44f;
  color: #e63946;
  font-weight: 700;
  padding: 2px 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.point2__video {
  padding: 0;
}

.point2__video-player {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* ----------------------------------------
   タブレット・デスクトップ (768px以上)
   ---------------------------------------- */

/* ----------------------------------------
   デスクトップ (1024px以上)
   ---------------------------------------- */

/* ----------------------------------------
   ワイドデスクトップ (1440px以上)
   ---------------------------------------- */

/* ----------------------------------------
   モバイル (767px以下)
   ---------------------------------------- */

/* Utility: スマホのみ表示 */

@media (min-width: 640px) {
  .voice-card {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .offer-price-nav {
    display: none !important;
  }

  /* ヒーローセクション */
  .hero-content {
    padding: 0;
  }

  /* オファーセクション */
  .offer {
    padding: var(--space-lg) 0;
  }

  .offer-price-list {
    display: grid;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
    -webkit-overflow-scrolling: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 950px;
  }

  .offer-price-item {
    flex: initial;
    max-width: none;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    padding: var(--space-lg);
  }

  .price-unit,
  .dev-voice__text,
  .professor-recommend__text {
    font-size: 1.2rem;
  }

  .price-amount,
  .delicious-menu__overlay .delicious-menu__count,
  .cta-final__intro {
    font-size: 3rem;
  }

  .price-yen,
  .dev-history__handwritten,
  .point3__speech p,
  .brand-story__quote {
    font-size: 1.4rem;
  }

  .coupon-label {
    font-size: 0.8rem;
  }

  .coupon-code {
    font-size: 1.1rem;
    padding: 6px 14px;
  }

  .offer-campaign-banner {
    padding: 10px 74px 8px;
    gap: 10px;
  }

  .offer-campaign-label {
    font-size: clamp(2rem, 2.2vw, 2.4rem);
  }

  .offer-campaign-discount {
    font-size: clamp(2.4rem, 2.8vw, 3rem);
    padding: 0 0.2em;
  }

  .offer-cta {
    font-size: 1.6rem;
    padding: 25px 60px;
  }

  /* 特徴セクション */
  .feature-row__text {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
  }

  .feature-row__content {
    gap: 4px;
  }

  .feature-row--accent .feature-row__content {
    left: 4%;
  }

  .feature-row--neutral .feature-row__content {
    right: 4%;
  }

  /* 丼メニューセクション */
  .donburi-badge {
    font-size: clamp(0.95rem, 1vw, 1.2rem);
    padding: 10px 30px;
  }

  .donburi-badge::after {
    bottom: -11px;
    width: 4px;
    height: 11px;
  }

  .donburi-title {
    font-size: clamp(1.9rem, 2.2vw, 2.8rem);
    line-height: 1.35;
  }

  .donburi-title--accent {
    font-size: clamp(2.6rem, 3vw, 3.7rem);
  }

  .donburi-list {
    flex-direction: row;
    padding: var(--space-xl) var(--space-lg);
  }

  .donburi-item {
    flex: 1;
    padding: 0 var(--space-md);
    border-right: 1px dotted #ccc;
  }

  .donburi-item:last-child {
    border-right: none;
  }

  .donburi-separator,
  .donburi-item__desc br {
    display: none;
  }

  .donburi-item__title {
    font-size: 1.28rem;
    line-height: 1.45;
  }

  .donburi-item__desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .enjoy-meal {
    margin-top: 0;
  }

  .enjoy-meal__img {
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  .enjoy-meal__title {
    font-size: 4rem;
    -webkit-text-stroke: 10px white;
  }

  .enjoy-meal__bubble span,
  .dev-history__subtitle,
  .dev-history__handwritten--accent,
  .easy-cooking__time-value strong {
    font-size: 1.8rem;
  }

  /* ユーザーボイス */
  .user-voice-intro__title {
    font-size: clamp(3.1rem, 4vw, 4.2rem);
  }

  .voice-card {
    padding: var(--space-xl);
    margin: 0 var(--space-lg) var(--space-md);
  }

  .voice-card__content {
    gap: var(--space-lg);
  }

  .voice-card__avatar {
    width: 100px;
  }

  .voice-card__avatar img {
    width: 90px;
  }

  .voice-card__title,
  .company-history__badge-years small,
  .recommend-checklist__text {
    font-size: 1.3rem;
  }

  .voice-card__desc,
  .company-history__badge-label,
  .okazu__benefit-text {
    font-size: 1rem;
  }

  /* Awardセクション */
  .award {
    padding: var(--space-2xl) var(--space-lg);
    padding-bottom: 130px;
  }

  .award__subtitle,
  .kodawari__caption,
  .delicious-menu__overlay .delicious-menu__speech p,
  .okazu__lead {
    font-size: 1.5rem;
  }

  .award__title,
  .delicious-menu__overlay .delicious-menu__count--red,
  .okazu__title {
    font-size: 4rem;
  }

  .award__laurel {
    height: 140px;
  }

  .award__product-img {
    max-width: 380px;
  }

  /* 限定販売セクション */
  .limited-sale {
    padding: 24px 0 18px;
  }

  .limited-sale .container {
    max-width: 950px;
    padding-inline: 28px;
  }

  .limited-sale__top {
    align-items: flex-end;
    gap: 22px;
    margin-bottom: 30px;
    justify-content: center;
    max-width: 860px;
    margin-inline: auto;
  }

  .limited-sale__badge {
    font-size: clamp(1.2rem, 1.6vw, 1.7rem);
    padding: 12px 34px;
    margin-bottom: 12px;
  }

  .limited-sale__header {
    flex: 0 1 auto;
  }

  .limited-sale__title {
    font-size: clamp(4.1rem, 6.3vw, 6rem);
    line-height: 1.04;
    letter-spacing: 0.02em;
  }

  .limited-sale__product {
    margin-left: 0;
    transform: none;
  }

  .limited-sale__product-img {
    width: min(270px, 25vw);
    max-width: 270px;
  }

  .limited-sale__stores {
    margin: 0 auto;
  }

  .limited-sale .store-card {
    width: min(100%, 920px);
    box-sizing: border-box;
    padding: 18px 30px;
    border-width: 4px;
    margin: 0 auto;
  }

  .limited-sale .store-card__name {
    font-size: clamp(1.22rem, 1.75vw, 1.65rem);
    line-height: 1.35;
  }

  .limited-sale .store-card__logo--eversmile {
    height: 64px;
  }

  /* 技術の秘密セクション */
  .tech-secret__badge {
    padding: 20px 35px;
    font-size: 1.3rem;
  }

  .tech-secret__badge-highlight,
  .professor-recommend__name strong {
    font-size: 1.6rem;
  }

  .tech-secret__intro {
    font-size: 1.8rem;
    -webkit-text-stroke: 5px white;
  }

  .tech-secret__title {
    font-size: 3.5rem;
    -webkit-text-stroke: 8px white;
  }

  /* tech-secret PC overlap */
  .tech-secret {
    margin-bottom: -16%;
  }

  /* 会社歴史セクション */
  .company-history__image {
    position: relative;
    max-height: none;
    overflow: visible;
  }

  .company-history__bg {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }

  .company-history__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 28px 32px 30px 36px;
    align-items: center;
    background: linear-gradient(135deg, rgba(250, 249, 247, 0.94) 0%, rgba(244, 244, 247, 0.94) 50%, rgba(250, 249, 247, 0.94) 100%);
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 8px 28px rgba(30, 28, 20, 0.18), 0 2px 8px rgba(30, 28, 20, 0.10);
  }

  .company-history__header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid rgba(250, 249, 247, 0.94);
    z-index: 2;
    filter: drop-shadow(0 3px 3px rgba(30, 28, 20, 0.08));
  }

  .company-history__badge {
    width: 140px;
    height: 140px;
    margin-right: 22px;
    transform: none;
  }

  .company-history__badge-years {
    font-size: 3.4rem;
  }

  .company-history__text {
    padding-top: 4px;
  }

  .company-history__subtitle {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .company-history__title {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  /* 開発歴史セクション */

  .dev-history__subtitle--red,
  .recommend-checklist__title,
  .brand-story__title {
    font-size: 2.2rem;
  }

  .dev-history__text {
    font-size: 1.05rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .dev-history__rice-img {
    max-width: 180px;
  }

  /* こだわりセクション */
  .kodawari__subtitle,
  .okazu__variation {
    font-size: 2rem;
  }

  .kodawari__title {
    font-size: 4.5rem;
  }

  .kodawari__title--red {
    font-size: 5rem;
  }

  .kodawari__product {
    max-width: 100px;
  }

  /* Delicious Menuセクション */

  /* 簡単調理セクション */
  .easy-cooking__title {
    font-size: 1.8rem;
    padding: 15px 40px;
  }

  .easy-cooking__card {
    max-width: 650px;
    padding: var(--space-xl);
  }

  .easy-cooking__method-text,
  .q-text {
    font-size: 1.05rem;
  }

  .easy-cooking__time {
    width: 100px;
    height: 100px;
  }

  /* POINT.2セクション */
  .point2__lead {
    font-size: clamp(1.95rem, 5.4vw, 3.4rem);
  }

  .point2 .point__title {
    font-size: clamp(2.1rem, 5.8vw, 4.4rem);
  }

  .point2__desc {
    font-size: 1.6rem;
    max-width: 85%;
    margin: 0 auto;
  }

  /* チェックリストセクション */

  .recommend-checklist__notebook {
    max-width: 780px;
    padding: var(--space-xl) var(--space-lg);
    padding-top: 60px;
  }

  .recommend-checklist__spoon {
    width: 180px;
    right: -50px;
  }

  /* POINT.3セクション */
  .point3__speech {
    max-width: 450px;
    padding: 25px 40px;
  }

  .point3__comparison {
    padding: 35px 30px;
  }

  /* POINT.4セクション */
  .point4__step-label {
    font-size: 1.4rem;
    padding: 15px 35px;
  }

  .point4__desc {
    max-width: 80%;
  }

  /* 保存セクション */
  .storage__title {
    font-size: 2.5rem;
    padding: 20px 50px;
  }

  /* ブランドストーリーセクション */
  .brand-story__logo {
    max-width: 220px;
  }

  .brand-story__desc {
    font-size: 1.2rem;
    max-width: 95%;
    margin: 0 auto var(--space-md);
  }

  /* 開発者の声セクション */
  .dev-voice__speech-bubble {
    font-size: 1.8rem;
    padding: 18px 50px;
  }

  .dev-voice__avatar-img {
    width: 120px;
  }

  .dev-voice__card,
  .professor-recommend__card {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-lg);
  }

  /* 教授推薦セクション */
  .professor-recommend__title,
  .category__title {
    font-size: 2.5rem;
  }

  .professor-recommend__photo {
    width: 150px;
    height: 150px;
  }

  /* おかずセクション */

  .okazu__divider {
    width: min(60%, 400px);
  }

  .okazu__plate,
  .okazu__people {
    max-width: 70%;
  }

  .okazu__benefit {
    width: 170px;
    height: 170px;
  }

  .okazu__benefit-highlight {
    font-size: 1.1rem;
  }

  /* カテゴリセクション */

  .category__grid {
    gap: var(--space-xl);
  }

  .category__image-wrapper {
    width: 200px;
    height: 200px;
  }

  .category__banner {
    font-size: 1.5rem;
    padding: 18px 40px;
  }

  .category__featured {
    max-width: 400px;
  }

  /* CTA finalセクション */

  .cta-final__badge {
    font-size: 1.6rem;
    padding: 15px 40px;
  }

  .cta-final__headline {
    font-size: 2.8rem;
  }

  /* FAQセクション */
  .faq .container {
    max-width: 800px;
  }

  .faq-question {
    padding: var(--space-lg);
  }

  .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }

  .q-icon {
    margin-top: 7px;
  }

  .a-icon {
    margin-top: 4px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  /* 購入ボタンセクション */
  .purchase-cta__button {
    font-size: 1.8rem;
    padding: 25px 70px;
  }

  .purchase-cta__rice {
    width: 100px;
    right: -40px;
  }

  /* フッター */
  .footer-container {
    padding: 50px 40px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav a {
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  .kodawari__overlay {
    padding: 26px 26px 18px;
  }

  .kodawari__top {
    position: relative;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .kodawari__subtitle {
    text-align: center;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    line-height: 1.18;
  }

  .kodawari__product {
    position: absolute;
    right: 6%;
    top: -4px;
    max-width: 92px;
  }

  .kodawari__title {
    margin-top: 3%;
    font-size: clamp(4rem, 8vw, 5.6rem);
    line-height: 1.03;
  }

  .kodawari__title--red {
    font-size: 1.12em;
  }

  .kodawari__title::after {
    bottom: 7px;
    height: 14px;
  }

  .kodawari__caption-box {
    top: 40%;
    left: 11%;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 22px;
  }

  .offer .container {
    max-width: 1180px;
    padding-inline: 24px;
  }

  .limited-sale__top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-end;
    max-width: 900px;
    margin-inline: auto;
  }

  .limited-sale__title {
    font-size: clamp(5rem, 6vw, 6.9rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .limited-sale__product {
    margin-left: 0;
    transform: none;
  }

  .limited-sale__product-img {
    width: min(300px, 22vw);
    max-width: 300px;
  }

  .company-history__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 34px 36px 38px;
  }

  .company-history__badge {
    width: 182px;
    height: 182px;
    margin-right: 24px;
    transform: translateY(-28px);
  }

  .company-history__subtitle {
    font-size: 2.1rem;
  }

  .company-history__title {
    font-size: 4.5rem;
  }

  .offer-campaign-banner {
    padding: 12px 86px 10px;
    gap: 12px;
    margin-bottom: 32px;
  }

  .offer-campaign-label {
    font-size: clamp(2.4rem, 2.6vw, 3rem);
    line-height: 1.15;
  }

  .offer-campaign-discount {
    font-size: clamp(2.9rem, 3.1vw, 3.7rem);
    padding: 0 0.2em;
    white-space: nowrap;
  }

  .offer-price-list {
    max-width: 1160px;
    gap: 26px;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-price-item {
    padding: 36px 22px 26px;
    min-height: 420px;
    justify-content: flex-start;
  }

  .price-unit {
    font-size: clamp(34px, 2.2vw, 42px);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .price-main {
    margin-bottom: 18px;
    gap: 4px;
    align-items: flex-end;
    flex-wrap: wrap;
  }

  .price-amount {
    font-size: clamp(72px, 5.2vw, 94px);
    line-height: 0.95;
  }

  .price-yen {
    font-size: clamp(42px, 2.8vw, 52px);
    line-height: 1;
  }

  .price-tax {
    font-size: clamp(20px, 1.4vw, 26px);
    margin-top: 6px;
    line-height: 1.25;
  }

  .price-coupon {
    margin-top: auto;
    padding-top: 16px;
    gap: 8px;
  }

  .coupon-label {
    font-size: clamp(22px, 1.4vw, 26px);
    line-height: 1.35;
  }

  .coupon-code {
    font-size: clamp(34px, 2.3vw, 44px);
    padding: 12px 16px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    line-height: 1.1;
    letter-spacing: 0.05em;
    word-break: break-word;
    overflow-wrap: anywhere;
    gap: 10px;
  }

  .coupon-code__icon {
    font-size: 0.75em;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 24px;
  }

  .offer-price-list {
    max-width: 1200px;
    gap: 30px;
  }

  .offer-price-item {
    min-height: 450px;
    padding: 40px 24px 30px;
  }

  .price-amount {
    font-size: clamp(82px, 5.4vw, 104px);
  }
}

@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px 20px;
  }

  .nav-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-row-bottom {
    padding: 0;
  }

  .nav-item {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  /* ヘッダー固定分のpadding */
  body {
    padding-top: 50px;
  }

  .site-header {
    left: 0;
    transform: none;
    max-width: none;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-container {
    flex-direction: row;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(58, 53, 48, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }

  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-row {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }

  .nav-row-bottom {
    padding: 0;
    justify-content: center;
  }

  .nav-item {
    font-size: 18px;
    padding: 15px 30px;
    color: var(--color-cream);
    width: 100%;
    max-width: 300px;
    justify-content: center;
    border: 1px solid rgba(196, 112, 74, 0.3);
    background: rgba(58, 53, 48, 0.8);
  }

  .nav-item:hover {
    background: rgba(196, 112, 74, 0.3);
    color: var(--color-primary-light);
    border-color: var(--color-primary);
  }

  .logo-image {
    height: 35px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-divider {
    display: none;
  }

  .footer-container {
    padding: 30px 20px;
  }

  .point1 {
    padding: var(--space-lg) var(--space-sm) var(--space-md);
    background-size: 26px 26px, 26px 26px, auto;
  }

  .point1__lead {
    font-size: clamp(1.35rem, 7.2vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    -webkit-text-stroke-width: 1.6px;
  }

  .point1 .point__title {
    white-space: nowrap;
  }

  .sp-only {
    display: block;
  }
}

@media (max-width: 767px) {
  /* 基本設定 */
  html {
    font-size: 15px;
  }

  .container,
  .dev-history__intro {
    padding: 0 var(--space-sm);
  }

  /* ヒーローセクション */
  .hero,
  .company-history__text {
    padding-top: 0;
  }

  .hero-top-banner {
    padding: 8px 15px;
  }

  .banner-text,
  .easy-cooking__time-value,
  .easy-cooking__note,
  .okazu__benefit-highlight,
  .q-text {
    font-size: 0.8rem;
  }

  .banner-highlight,
  .voices-list__disclaimer,
  .store-card__name,
  .dev-history__handwritten:first-child,
  .professor-recommend__name {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 0;
  }

  /* オファーセクション */
  .offer {
    padding: var(--space-md) 0;
  }

  .offer-price-list {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    padding: 0 12px 0;
    margin: 0 auto var(--space-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .offer-price-item {
    flex: 0 0 64%;
    max-width: 240px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 16px 14px;
  }

  .offer-price-list::-webkit-scrollbar,
  .delicious-menu__overlay .delicious-menu__speech::after,
  .easy-cooking__br-pc,
  .footer-divider {
    display: none;
  }

  .offer-price-area {
    position: relative;
    width: 100%;
    align-items: center;
  }

  .offer-price-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    padding: 0 6px;
  }

  .offer-price-nav__button {
    pointer-events: auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(196, 30, 58, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #c41e3a;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
  }

  .offer-price-nav__button:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .price-unit {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .price-amount,
  .tech-secret__x {
    font-size: 3rem;
  }

  .price-yen {
    font-size: 1.5rem;
  }

  .price-tax,
  .enjoy-meal__bubble span,
  .delicious-menu__header-label,
  .point3__speech p,
  .brand-story__quote,
  .category__lead {
    font-size: 1rem;
  }

  .price-coupon {
    padding-top: 10px;
  }

  .coupon-label {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .coupon-code {
    font-size: 1.45rem;
    padding: 8px 14px;
    letter-spacing: 0.08em;
  }

  .offer-campaign-banner {
    gap: 6px;
    padding: 10px 38px 8px;
    margin-bottom: var(--space-md);
  }

  .offer-campaign-banner::before,
  .offer-campaign-banner::after {
    left: -14px;
  }

  .offer-campaign-banner::after {
    width: 52px;
    height: 3px;
    top: 44%;
    right: -14px;
  }

  .offer-campaign-label,
  .dev-history__handwritten--accent,
  .dev-history__handwritten--final {
    font-size: 1.35rem;
  }

  .offer-campaign-discount {
    font-size: 1.8rem;
    padding: 0 0.18em;
  }

  .offer-shipping-note {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 28ch;
    margin-inline: auto;
  }

  .offer-coupon-warning {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 24ch;
    margin-inline: auto;
  }

  .offer-note-break,
  .offer-warning-break {
    display: block;
  }

  .offer-cta {
    font-size: 1.45rem;
    padding: 20px 40px;
    gap: 16px;
    border-radius: 56px;
  }

  .cta-arrow {
    width: 42px;
    height: 42px;
  }

  /* 特徴セクション */
  .feature-row__text {
    font-size: clamp(1.65rem, 7.2vw, 2.25rem);
    margin-bottom: 8px;
    line-height: 1.18;
  }

  .feature-row__content {
    gap: 4px;
    padding: 0;
  }

  .feature-row--accent .feature-row__content {
    left: 4%;
  }

  .feature-row--neutral .feature-row__content {
    right: 4%;
  }

  .feature-row:nth-child(1) .feature-row__content,
  .feature-row:nth-child(2) .feature-row__content {
    top: 50%;
  }

  .feature-row:nth-child(3) .feature-row__content {
    top: 58%;
  }

  .feature-row--accent .feature-row__text--highlight,
  .feature-row--neutral .feature-row__text--highlight {
    padding: 2px 8px 1px;
  }

  /* 丼メニューセクション */
  .donburi-menu {
    padding: var(--space-xl) 0 0;
  }

  .donburi-badge {
    width: min(92%, 520px);
    font-size: clamp(1rem, 3.9vw, 1.35rem);
    padding: 10px 18px;
    margin-bottom: 14px;
  }

  .donburi-badge::after {
    width: 3px;
    height: 10px;
    bottom: -10px;
  }

  .donburi-title {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
    line-height: 1.36;
  }

  .donburi-title--accent {
    margin-top: 4px;
    font-size: clamp(2.25rem, 8.5vw, 3.2rem);
  }

  .donburi-list,
  .easy-cooking__card {
    padding: var(--space-md);
  }

  .donburi-item__title {
    font-size: 1.45rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .donburi-item__num {
    font-size: 1.65rem;
  }

  .donburi-item__desc {
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .enjoy-meal,
  .limited-sale__product {
    margin-top: 0;
  }

  .enjoy-meal__content {
    position: absolute;
    top: 32%;
    left: 6%;
    margin: 0;
  }

  .enjoy-meal__bubble {
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .enjoy-meal__title {
    font-size: 2.2rem;
    -webkit-text-stroke: 4px white;
    line-height: 1.25;
  }

  /* ユーザーボイスイントロ */
  .user-voice-intro {
    padding: 34px 0 24px;
  }

  .user-voice-intro__arch {
    width: 210px;
  }

  .user-voice-intro__icon {
    width: 64px;
  }

  .user-voice-intro__bubble {
    gap: 10px;
    padding: 8px 18px;
    border-width: 2px;
  }

  .user-voice-intro__bubble-text {
    font-size: 1.15rem;
    font-weight: 900;
  }

  .user-voice-intro__rice-icon {
    width: 28px;
  }

  .user-voice-intro__bubble-line {
    bottom: -15px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 12px;
  }

  .user-voice-intro__title {
    font-size: clamp(2.4rem, 10.6vw, 3.6rem);
    line-height: 1.2;
  }

  .voices-list {
    background: radial-gradient(circle, #e7ddca 1.3px, transparent 1.3px);
    background-size: 12px 12px;
    background-color: #f7f3ea;
  }

  /* ボイスカード */
  .voice-card {
    padding: 18px 16px;
    padding-top: 24px;
    margin: 30px var(--space-sm) var(--space-xs);
    border-radius: 16px;
    background-color: #ffffff;
    border: 2px solid #e4dac8;
  }

  .voice-card:first-child {
    margin-top: 14px;
  }

  .voice-card__badge {
    font-size: 1.15rem;
    padding: 5px 18px;
    top: -16px;
  }

  .voice-card__content {
    gap: 12px;
    margin-top: 8px;
  }

  .voice-card__avatar {
    width: 86px;
  }

  .voice-card__avatar img {
    width: 74px;
  }

  .voice-card__author,
  .brand-story__desc {
    font-size: 0.95rem;
  }

  .voice-card__title {
    font-size: 1.28rem;
    padding-left: 0;
  }

  .voice-card__title::after {
    margin-top: 8px;
  }

  .voice-card__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #2f2d2d;
  }

  .voice-card__note {
    font-size: 0.92rem;
  }

  /* Awardセクション */
  .award {
    padding: 48px 20px 128px;
  }

  .award__content {
    padding-inline: 26px;
  }

  .award__badge {
    font-size: 1.05rem;
    padding: 10px 30px;
    letter-spacing: 0.08em;
  }

  .award__intro {
    font-size: 1.18rem;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
  }

  .award__subtitle {
    font-size: clamp(1.2rem, 5vw, 2.45rem);
    line-height: 1.2;
    margin-bottom: 26px;
  }

  .award__divider {
    gap: 16px;
    margin-bottom: 16px;
  }

  .award__line {
    width: 110px;
    height: 3px;
  }

  .award__crown {
    font-size: 2.2rem;
  }

  .award__title {
    font-size: clamp(4.1rem, 16.2vw, 6.05rem);
    line-height: 1.02;
    letter-spacing: 0.03em;
  }

  .award__laurel {
    height: 128px;
  }

  .award__product-img {
    max-width: 340px;
  }

  .award__divider-bottom {
    height: 120px;
  }

  /* 限定販売セクション */
  .limited-sale {
    padding: 18px 0 14px;
  }

  .limited-sale__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    margin-bottom: 14px;
  }

  .limited-sale__header {
    text-align: left;
    flex: 1 1 auto;
  }

  .limited-sale__badge {
    font-size: clamp(0.95rem, 4.4vw, 1.18rem);
    padding: 9px 20px;
    margin-bottom: 10px;
  }

  .limited-sale__title {
    font-size: clamp(2.8rem, 12.2vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .limited-sale__product-img {
    width: min(170px, 39vw);
    max-width: 170px;
  }

  .store-card {
    padding: 12px 16px;
    border-width: 3px;
  }

  .store-card__logo--eversmile {
    height: 42px;
  }

  /* 技術の秘密セクション */
  .tech-secret__badges {
    gap: 14px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .tech-secret__badge {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-width: 4px;
    border-radius: 14px;
  }

  .tech-secret__badge-highlight,
  .category__title {
    font-size: 1.6rem;
  }

  .tech-secret__intro {
    font-size: clamp(1.3rem, 5vw, 2.45rem);
    margin-bottom: 10px;
    -webkit-text-stroke: 6px white;
  }

  .tech-secret__title {
    font-size: clamp(2rem, 8vw, 4.2rem);
    line-height: 1.16;
    -webkit-text-stroke: 8px white;
  }

  /* 会社歴史セクション */
  .company-history__header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(250, 249, 247, 0.94);
    z-index: 2;
    filter: drop-shadow(0 2px 2px rgba(30, 28, 20, 0.08));
  }

  /* インタビュー動画セクション */
  .interview-video,
  .easy-cooking,
  .point2__overlay {
    padding: var(--space-md) var(--space-sm);
  }

  /* 開発歴史セクション */
  .dev-history,
  .dev-history__content {
    padding: 0 0 var(--space-md);
  }

  .dev-history__first-badge {
    top: -10px;
    right: -15px;
  }

  .dev-history__subtitle,
  .professor-recommend__name strong {
    font-size: 1.2rem;
  }

  .dev-history__subtitle--red,
  .recommend-checklist__title,
  .brand-story__title,
  .company-history__badge-years small {
    font-size: 1.4rem;
  }

  .dev-history__text,
  .easy-cooking__method-text {
    font-size: 0.85rem;
  }

  .dev-history__cta {
    font-size: 0.95rem;
    padding: 10px 22px 12px;
    bottom: -18px;
  }

  .dev-history__result {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: calc(var(--space-md) + 18px) var(--space-sm) var(--space-xs);
    text-align: left;
  }

  .dev-history__result-text {
    text-align: left;
    transform: rotate(-1deg);
    padding: 8px 4px 6px;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 128px);
  }

  .dev-history__result-text::before,
  .dev-history__result-text::after {
    top: -5px;
    left: 0;
    transform: rotate(2deg);
  }

  .dev-history__result-text::after {
    border-top-width: 2px;
    width: 100%;
    bottom: -6px;
    left: 0;
    transform: rotate(-2deg);
  }

  .dev-history__handwritten {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .dev-history__rice-img {
    max-width: 116px;
    filter: drop-shadow(0 6px 7px rgba(58, 53, 48, 0.2));
  }

  /* こだわりセクション */
  .kodawari__overlay {
    padding: var(--space-sm);
  }

  .kodawari__top,
  .okazu__benefits {
    gap: var(--space-xs);
  }

  .kodawari__subtitle {
    font-size: 1.55rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
    -webkit-text-stroke-width: 1.8px;
  }

  .kodawari__product {
    max-width: 74px;
  }

  .kodawari__title {
    font-size: 3.95rem;
    line-height: 1.04;
    letter-spacing: -0.03em;
    -webkit-text-stroke-width: 3.8px;
    margin-top: 10%;
    margin-bottom: 0;
  }

  .kodawari__title--red {
    font-size: 4.55rem;
  }

  .kodawari__title::after {
    height: 10px;
    bottom: 4px;
  }

  .kodawari__caption-box {
    top: 52%;
    left: 10%;
    bottom: auto;
    padding: 0;
    transform: rotate(-18deg);
  }

  .kodawari__caption-box::before,
  .kodawari__caption-box::after {
    left: -70px;
  }

  .kodawari__caption-box::after {
    font-size: 0.9rem;
    letter-spacing: -0.05em;
    top: 60%;
    right: -70px;
  }

  .kodawari__caption {
    font-size: 1.2rem;
    line-height: 1.18;
    letter-spacing: -0.01em;
    -webkit-text-stroke-width: 1.35px;
  }

  /* Delicious Menuセクション */
  .delicious-menu,
  .recommend-checklist,
  .point3,
  .point4,
  .storage,
  .brand-story,
  .cta-final,
  .purchase-cta {
    padding: var(--space-lg) var(--space-sm);
  }

  .delicious-menu__hero {
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fffdf5;
  }

  .delicious-menu__hero-img {
    width: 70%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    order: 1;
  }

  .delicious-menu__overlay {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: var(--space-md) var(--space-sm) 0;
    order: 0;
  }

  .delicious-menu__overlay .delicious-menu__speech {
    padding: 10px 22px;
    border-radius: 26px;
    border-width: 3px;
    background: white;
  }

  .delicious-menu__overlay .delicious-menu__speech p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
  }

  .delicious-menu__overlay .delicious-menu__count {
    font-size: 3rem;
    line-height: 1;
    order: 2;
  }

  .delicious-menu__overlay .delicious-menu__count--red {
    font-size: 4rem;
  }

  /* 簡単調理セクション */

  .easy-cooking__title {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  .easy-cooking__method-label {
    font-size: 0.85rem;
    padding: 6px 15px;
  }

  .easy-cooking__method-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .easy-cooking__time {
    width: 70px;
    height: 70px;
    margin-top: var(--space-xs);
  }

  .easy-cooking__time-label {
    font-size: 0.65rem;
  }

  .easy-cooking__time-value strong,
  .okazu__variation {
    font-size: 1.3rem;
  }

  /* POINT共通レスポンシブ */
  .point__badge {
    min-width: 160px;
    font-size: 1.45rem;
    padding: 8px 18px;
  }

  .point__subtitle,
  .point2__lead {
    font-size: clamp(1.35rem, 7.2vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    -webkit-text-stroke-width: 1.6px;
  }

  .point__title {
    font-size: clamp(2rem, 11.2vw, 3.5rem);
    line-height: 1.05;
    -webkit-text-stroke-width: 2px;
  }

  .point__brace {
    width: min(96%, 360px);
    height: 24px;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-right-width: 3px;
    margin-bottom: var(--space-sm);
  }

  .point__brace::after {
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 10px;
    bottom: -10px;
  }

  /* POINT.2セクション */

  .point2 .point__title {
    white-space: nowrap;
  }

  .point2__content {
    padding: var(--space-lg) var(--space-md);
  }

  .point2__desc {
    font-size: 1.1rem;
    line-height: 2;
  }

  /* チェックリストセクション */

  .recommend-checklist__notebook {
    padding: var(--space-lg) var(--space-sm);
    padding-top: 40px;
  }

  .recommend-checklist__spiral span {
    width: 14px;
    height: 22px;
  }

  .recommend-checklist__spiral span::after {
    width: 5px;
    height: 5px;
    bottom: 4px;
  }

  .recommend-checklist__item {
    padding: 10px 0;
    gap: 8px;
  }

  .recommend-checklist__checkbox {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }

  .recommend-checklist__text {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .recommend-checklist__spoon {
    width: 100px;
    bottom: -10px;
    right: -15px;
  }

  /* POINT.3セクション */

  .point3__speech {
    padding: 15px 20px;
    max-width: 300px;
  }

  .point3__banner {
    padding: 10px 24px;
  }

  .point3__banner-text {
    font-size: 1.05rem;
  }

  .point3__flame-img {
    width: 38px;
    top: -22px;
    right: -8px;
  }

  .point3__comparison {
    padding: 22px 16px;
  }

  .point3__comparison-box {
    padding: 15px 18px;
    margin-bottom: 18px;
  }

  .point3__disclaimer {
    font-size: 0.6rem;
  }

  /* POINT.4セクション */

  .point4__step-label {
    font-size: 0.7rem;
    padding: 6px 12px;
    top: 8px;
  }

  .point4__desc {
    font-size: 0.95rem;
    max-width: 95%;
    line-height: 1.8;
  }

  /* 保存セクション */

  .storage__title {
    font-size: 1.2rem;
    padding: 10px 18px;
  }

  /* ブランドストーリーセクション */

  .brand-story__logo {
    max-width: 120px;
  }

  /* 開発者の声セクション */
  .dev-voice,
  .professor-recommend,
  .okazu,
  .category {
    padding: var(--space-lg) 0;
  }

  .dev-voice__speech-bubble {
    font-size: 1.2rem;
    padding: 12px 30px;
  }

  .dev-voice__speech-bubble::after {
    bottom: -12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #2d5a87;
  }

  .dev-voice__avatar {
    margin-top: 15px;
  }

  .dev-voice__avatar-img {
    width: 80px;
    padding: 8px;
  }

  .dev-voice__card,
  .professor-recommend__card {
    padding: var(--space-md) var(--space-sm);
    margin: 0;
  }

  .dev-voice__text,
  .professor-recommend__text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  /* 教授推薦セクション */

  .professor-recommend__arch {
    width: 160px;
  }

  .professor-recommend__title {
    font-size: 2.6rem;
  }

  .professor-recommend__profile {
    gap: var(--space-sm);
  }

  .professor-recommend__affiliation,
  .okazu__benefit-text,
  .faq-answer p {
    font-size: 0.75rem;
  }

  .professor-recommend__photo {
    width: 130px;
    height: 130px;
    border-width: 3px;
  }

  .professor-recommend__corner {
    border-width: 0 0 45px 45px;
  }

  /* おかずセクション */

  .okazu__lead,
  .company-history__badge-label {
    font-size: 1.1rem;
  }

  .okazu__title {
    font-size: 2.8rem;
  }

  .okazu__variation-wrapper {
    padding: 15px 20px;
  }

  .okazu__benefit {
    width: 120px;
    height: 120px;
    padding: 10px;
  }

  /* カテゴリセクション */

  .category__grid {
    gap: var(--space-md);
    padding: 0 var(--space-sm);
  }

  .category__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .category__image-wrapper {
    width: 100px;
    height: 100px;
  }

  .category__banner {
    font-size: 1rem;
    padding: 12px 20px;
    gap: 10px;
  }

  .category__featured {
    max-width: 250px;
    padding: var(--space-sm);
  }

  /* CTA finalセクション */

  .cta-final__intro {
    font-size: 2rem;
  }

  .cta-final__badge {
    font-size: 1.1rem;
    padding: 10px 25px;
  }

  .cta-final__badge::after {
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #a01830;
  }

  .cta-final__headline {
    font-size: 1.8rem;
  }

  /* FAQセクション */
  .faq {
    padding: var(--space-xl) 0;
  }

  .faq-question {
    padding: var(--space-sm);
    gap: var(--space-xs);
  }

  .q-icon, .a-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .q-toggle {
    width: 20px;
    height: 20px;
  }

  .q-toggle::before {
    width: 8px;
  }

  .q-toggle::after {
    height: 8px;
  }

  .faq-answer {
    padding: 0 var(--space-sm) var(--space-sm);
    gap: var(--space-xs);
  }

  /* 購入ボタンセクション */

  .purchase-cta__button {
    font-size: 1.2rem;
    padding: 15px 35px;
    gap: 10px;
  }

  .purchase-cta__arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .purchase-cta__rice {
    width: 60px;
    right: -20px;
    bottom: -8px;
  }

  /* こだわりセクション - ごはんとスプーンが下部にあるので下を見せる */
  .kodawari__hero {
    max-height: 500px;
    overflow: hidden;
  }

  .kodawari__bg {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 70%;
  }

  /* 技術の秘密セクション - ごはんが中央〜下部 */
  .tech-secret {
    margin-bottom: -20%;
  }

  .tech-secret__image {
    overflow: visible;
  }

  .tech-secret__bg,
  .company-history__bg {
    width: 100%;
    height: auto;
  }

  /* 会社歴史セクション */
  .company-history__image,
  .point2__hero {
    max-height: none;
    overflow: visible;
  }

  .company-history__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px 40px 34px 44px;
    align-items: center;
    background: linear-gradient(135deg, rgba(250, 249, 247, 0.94) 0%, rgba(244, 244, 247, 0.94) 50%, rgba(250, 249, 247, 0.94) 100%);
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 8px 24px rgba(30, 28, 20, 0.18), 0 2px 6px rgba(30, 28, 20, 0.10);
  }

  .company-history__badge {
    width: 160px;
    height: 160px;
    margin-right: 26px;
    border-width: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), inset 0 2px 10px rgba(255, 255, 255, 0.35);
  }

  .company-history__badge-years {
    font-size: 3.8rem;
  }

  .company-history__subtitle {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }

  .company-history__title {
    font-size: 3.4rem;
    line-height: 1.3;
  }

  /* POINT.2セクション - スプーンですくうシーン */

  .point2__hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  /* 開発歴史コーヒー画像 - 注いでいる部分 */
  .dev-history__coffee-img {
    max-height: 280px;
    object-fit: cover;
    object-position: center 40%;
  }

  /* フッター */
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-container {
    padding: 25px 15px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .campaign-top-banner__inner {
    padding: 0.8rem 1rem;
    gap: 0.3rem;
  }

  .campaign-top-banner__sparkle {
    font-size: 1.2rem;
  }

  .campaign-top-banner__content {
    gap: 0.5rem;
  }

  .campaign-top-banner__label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

  .campaign-top-banner__percent {
    font-size: 1.6rem;
  }

  .campaign-top-banner__percent small {
    font-size: 0.8rem;
  }

  .campaign-top-banner__off {
    font-size: 1.3rem;
  }

  .campaign-top-banner__coupon {
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .offer-price-area {
    padding: 0;
  }

  .offer-price-list {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 320px;
  }

  .offer-price-item {
    padding: var(--space-sm);
  }

  .price-unit {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .price-amount,
  .award__title,
  .company-history__badge-years {
    font-size: 2.2rem;
  }

  .price-yen {
    font-size: 1.1rem;
  }

  .price-tax {
    font-size: 0.7rem;
  }

  .offer-campaign-banner {
    gap: 6px;
    padding: 8px 30px 6px;
  }

  .offer-campaign-banner::before,
  .offer-campaign-banner::after {
    left: -10px;
  }

  .offer-campaign-banner::after {
    width: 40px;
    height: 3px;
    top: 44%;
    right: -10px;
  }

  .offer-campaign-label {
    font-size: 1.05rem;
  }

  .offer-campaign-discount {
    font-size: 1.35rem;
    padding: 0 0.16em;
  }

  .coupon-label {
    font-size: 0.65rem;
  }

  .coupon-code {
    font-size: 0.85rem;
    padding: 4px 10px;
  }

  .offer-shipping-note,
  .offer-coupon-warning {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .features-showcase .feature-row:first-child::before {
    width: clamp(120px, 34vw, 180px);
    height: clamp(26px, 7.5vw, 44px);
  }

  .feature-row__text {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    margin-bottom: 8px;
  }

  .feature-row__content {
    gap: 4px;
  }

  .feature-row--accent .feature-row__content {
    left: 4%;
  }

  .feature-row--neutral .feature-row__content {
    right: 4%;
  }

  .feature-row--accent .feature-row__text--highlight,
  .feature-row--neutral .feature-row__text--highlight {
    padding: 2px 6px 1px;
  }

  .enjoy-meal {
    margin-top: 0;
  }

  .enjoy-meal__content {
    position: absolute;
    top: 27%;
    left: 6%;
    margin: 0;
  }

  .enjoy-meal__title {
    font-size: 1rem;
    -webkit-text-stroke: 2px white;
  }

  .enjoy-meal__bubble {
    padding: 5px 12px;
  }

  .enjoy-meal__bubble span {
    font-size: 0.75rem;
  }

  .award {
    padding: var(--space-xl) 0;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .point3 .point__title,
  .point4 .point__title,
  .delicious-menu__overlay .delicious-menu__count--red {
    font-size: 2rem;
  }

  .point3__speech {
    padding: 15px 20px;
  }

  .point3__speech p,
  .brand-story__desc,
  .tech-secret__badge-highlight,
  .kodawari__caption {
    font-size: 1rem;
  }

  .point4__steps {
    gap: 0;
  }

  .point4__step-label {
    font-size: 0.8rem;
    padding: 8px 14px;
    top: 10px;
  }

  .point4__desc {
    max-width: 90%;
  }

  .brand-story__logo {
    max-width: 140px;
  }

  .brand-story__title {
    font-size: 1.5rem;
  }

  .recommend-checklist__title,
  .company-history__title {
    font-size: 1.4rem;
  }

  .recommend-checklist__notebook {
    padding: var(--space-lg) var(--space-sm);
    padding-top: 45px;
  }

  .recommend-checklist__item {
    padding: 12px 0;
    gap: 10px;
  }

  .recommend-checklist__text {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .recommend-checklist__spoon {
    width: 120px;
    bottom: -15px;
    right: -20px;
  }

  .recommend-checklist__spiral span {
    width: 16px;
    height: 25px;
  }

  .recommend-checklist__spiral span::after {
    width: 6px;
    height: 6px;
  }

  .limited-sale__title {
    font-size: 3rem;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .limited-sale__badge {
    font-size: 1.25rem;
    padding: 10px 26px;
  }

  .limited-sale__product-img {
    width: 160px;
  }

  .store-card {
    padding: 14px 18px;
    border-width: 3px;
  }

  .store-card__name {
    font-size: 0.88rem;
  }

  .store-card__logo--eversmile {
    height: 52px;
  }

  .award__subtitle {
    font-size: 1.2rem;
  }

  .award__laurel {
    width: 35px;
    height: 70px;
  }

  .award__product-img {
    max-width: 220px;
  }

  .tech-secret__badge {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .tech-secret__title,
  .delicious-menu__overlay .delicious-menu__count {
    font-size: 1.6rem;
  }

  .company-history__badge {
    width: 100px;
    height: 100px;
  }

  .dev-history__first-badge {
    right: -20px;
    top: -15px;
  }

  .dev-history__subtitle,
  .dev-history__text {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }

  .dev-history__cta {
    bottom: -18px;
    font-size: 0.92rem;
    padding: 11px 24px 13px;
  }

  .delicious-menu__speech::after {
    right: auto;
    bottom: -15px;
    top: auto;
    transform: translateX(-50%);
    left: 50%;
    border: 10px solid transparent;
    border-top-color: #e63946;
    border-left-color: transparent;
  }

  .delicious-menu__count {
    font-size: 2.5rem;
  }

  .delicious-menu__count--red {
    font-size: 3.5rem;
  }

  .kodawari__subtitle {
    font-size: 1.3rem;
  }

  .kodawari__title {
    font-size: 2.8rem;
  }

  .kodawari__title--red {
    font-size: 3.2rem;
  }

  .kodawari__title::after {
    height: 14px;
    bottom: 6px;
  }

  .kodawari__caption-box {
    bottom: 8%;
    padding: 8px 12px;
  }

  .kodawari__product {
    max-width: 65px;
  }

  .delicious-menu__overlay {
    top: var(--space-sm);
    left: var(--space-sm);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .delicious-menu__overlay .delicious-menu__speech {
    padding: 8px 12px;
  }

  .delicious-menu__overlay .delicious-menu__speech p {
    font-size: 0.85rem;
  }

  .easy-cooking__method-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .easy-cooking__time {
    margin-top: var(--space-sm);
  }

  .point2__lead {
    font-size: clamp(1.1rem, 5.8vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    -webkit-text-stroke-width: 1.6px;
  }

  .point2__lead-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .company-history__header {
    padding: 14px 12px 16px;
  }

  .company-history__badge {
    width: 82px;
    height: 82px;
    margin-right: 10px;
    border-width: 2px;
  }

  .company-history__badge-label {
    font-size: 0.82rem;
  }

  .company-history__badge-years {
    font-size: 2rem;
  }

  .company-history__badge-years small {
    font-size: 0.95rem;
  }

  .company-history__subtitle {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .company-history__title,
  .tech-secret__x {
    font-size: 2.2rem;
  }

  .tech-secret__content {
    top: 46%;
    padding-inline: 10px;
  }

  .tech-secret__badges {
    gap: 10px;
  }

  .tech-secret__badge {
    padding: 10px 12px;
    font-size: 0.82rem;
    border-width: 3px;
    border-radius: 12px;
  }

  .tech-secret__badge-highlight {
    font-size: 1.28rem;
  }

  .tech-secret__intro {
    font-size: 1.72rem;
    -webkit-text-stroke: 5px white;
  }

  .tech-secret__title {
    font-size: 2.9rem;
    -webkit-text-stroke: 7px white;
  }

  .limited-sale__top {
    align-items: center;
    gap: 8px;
  }

  .limited-sale__badge {
    padding: 8px 16px;
    margin-bottom: 8px;
  }

  .limited-sale__badge::after {
    bottom: -13px;
    border-left-width: 11px;
    border-right-width: 11px;
    border-top-width: 13px;
  }

  .limited-sale__title {
    font-size: clamp(2.45rem, 11.4vw, 3.25rem);
  }

  .limited-sale__product-img {
    width: min(150px, 38vw);
    max-width: 150px;
  }

  .store-card {
    padding: 11px 13px;
  }

  .store-card__name {
    font-size: 0.84rem;
  }

  .store-card__logo--eversmile {
    height: 38px;
  }

  .award__content {
    padding-inline: 18px;
  }

  .award__subtitle {
    font-size: 1.42rem;
    line-height: 1.16;
    letter-spacing: 0.01em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .award__line-no-break {
    white-space: nowrap;
  }

  .award__title {
    font-size: 3.55rem;
  }
}
