@charset "UTF-8";

/* =========================================================
   1. 変数の定義（カラー、サイズ、角丸）
   ========================================================= */
:root {
  /* Colors */
  --color-black: #2c2929;
  --color-brown: #735957;
  --color-gold: #a0893a;
  --color-bg-light: #f8f3f3;
  --color-bg-dark: #ece5e5;
  --color-white: #ffffff;

  /* Widths */
  --width-max: 1920px;
  --width-main: 1680px;
  --width-sub: 1450px;

  /* Border Radius */
  --radius-base: 30px;
  --radius-img: 30px 30px 0 30px; /* 画像用（右下だけ0px） */
}

/* =========================================================
   2. ベーススタイル・タイポグラフィ
   ========================================================= */
body {
  font-family: 'Shippori Mincho', serif;
  color: var(--color-black);
  background-color: var(--color-bg-light);
  font-size: 18px; /* 地文 */
  line-height: 1.8;
  margin: 0;
  padding-top: 130px; /* ヘッダーの高さ分 */
  letter-spacing: 0.05em;
}

.en {
  font-family: 'Cormorant Garamond', serif;
  font-weight: normal;
}

/* フォントサイズユーティリティ */
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-26 { font-size: 26px; }
.fs-29 { font-size: 29px; }
.fs-38 { font-size: 38px; }

/* =========================================================
   3. レイアウトユーティリティ
   ========================================================= */
.wrapper {
  max-width: var(--width-max);
  margin: 0 auto;
  overflow: hidden;
}

.container {
  max-width: var(--width-main);
  margin: 0 auto;
  box-sizing: border-box;
}

.container-sub {
  max-width: var(--width-sub);
  margin: 0 auto;
  box-sizing: border-box;
}

/* =========================================================
   4. 共通コンポーネント
   ========================================================= */
.img-rounded {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-img);
  object-fit: cover;
}

/* -----------------------------
   セクションタイトル
----------------------------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}

.section-title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title .en-title {
  color: var(--color-brown);
  margin-bottom: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title h3 {
  color: var(--color-black);
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

.section-title-img {
  width: 75px;
  height: auto;
  object-fit: contain;
}

/* -----------------------------
   ボタン（お求めはこちら）
----------------------------- */
.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px; 
  height: 80px; 
  background-color: var(--color-gold);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 40px;
  font-size: 21px; 
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-cart:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

.btn-cart svg,
.btn-cart img {
  position: absolute;
  right: 40px; 
  top: 50%;
  transform: translateY(-50%); 
  width: 28px; 
  height: auto;
  fill: currentColor;
}

/* -----------------------------
   汎用テキストリンクボタン（右寄せ・円形矢印付き）
----------------------------- */
.btn-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end; /* 右寄せ */
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  color: var(--color-black);
  padding: 10px 0;
  margin-top: auto; /* カード内などで最下部に押し下げる */
  margin-left: auto; /* ブロック要素内で右寄せを維持 */
  transition: opacity 0.3s ease;
}

.btn-text-link:hover {
  opacity: 0.6;
}

/* 右側の円（1pxゴールド線、白背景、黒の＞） */
.btn-text-link .arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-white); /* 白い円 */
  border: 1px solid var(--color-gold); /* 1pxのゴールド線 */
  border-radius: 50%;
  color: var(--color-black); /* 黒の＞ */
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

/* =========================================================
   スクロールアニメーション（フワッと表示）
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 画面内に入ったら発火するスタイル */
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   5. 各セクションのスタイリング
   ========================================================= */

/* -----------------------------
   ヘッダー＆ハンバーガーメニュー
----------------------------- */
.header {
  background-color: var(--color-white);
  height: 130px;
  border-bottom: 1px solid var(--color-gold);
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: 100%;
  max-width: var(--width-main);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header-link {
  font-size: 21px;
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.header-link:hover {
  opacity: 0.6;
}

.header-v-line {
  width: 1px;
  height: 80px;
  background-color: var(--color-gold);
}

/* -----------------------------
   ハンバーガーボタン
----------------------------- */
.hamburger {
  width: 35px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ★ 開いた時の × 印アニメーション */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* -----------------------------
   展開ドロワーメニュー
----------------------------- */
.header-nav {
  position: absolute;
  top: 130px; /* ヘッダーの直下に配置 */
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-bg-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  
  /* 開閉のアニメーション設定 */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* ★ JavaScriptで付与されるクラス */
.header-nav.is-open {
  max-height: 400px;
  opacity: 1;
}

.header-nav-inner {
  display: flex;
  gap: 120px;
  padding: 50px 0 60px;
}

.nav-column {
  display: flex;
  flex-direction: column;
}

/* 見出し（22px） */
.nav-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* リスト領域 */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* リンクテキスト（18px & 左側の「—」あしらい） */
.nav-list a {
  position: relative;
  font-size: 18px;
  color: var(--color-black);
  text-decoration: none;
  padding-left: 20px;
  transition: opacity 0.3s ease;
}

.nav-list a::before {
  content: "—";
  position: absolute;
  left: 0;
  top: -1px;
  color: #a09893;
  font-size: 14px;
}

.nav-list a:hover {
  opacity: 0.6;
}

/* 暗転オーバーレイ */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* -----------------------------
   ヒーローエリア
----------------------------- */
.hero {
  width: 100%;
  height: calc(100vh - 130px); 
  max-height: 850px;
  min-height: 550px;
  position: relative;
  overflow: hidden;
}

.hero-inner,
.hero picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* -----------------------------
   ページ内ナビ (1450px)
----------------------------- */
.page-nav {
  background-color: var(--color-white);
  height: 125px;
  border-radius: 62.5px;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -62px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.page-nav-title {
  font-size: 32px;
  color: var(--color-black);
  margin: 0;
  white-space: nowrap;
}

.page-nav-v-line {
  width: 1px;
  height: 80px;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.page-nav-menu {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-nav-item:hover {
  opacity: 0.6;
}

.page-nav-item .jp {
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.2;
}

.page-nav-item .en {
  font-size: 14px;
  color: var(--color-brown);
  line-height: 1.2;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* -----------------------------
   コンセプト〜おいしさの理由 全体背景包み
----------------------------- */
.concept-reasons-wrapper {
  position: relative;
  background-color: var(--color-bg-light);
  padding-bottom: 250px;
  background-image: 
    linear-gradient(to top, rgba(248, 243, 243, 0) 0%, var(--color-bg-light) 70%),
    url("../img/concept_bg_photo.jpg");
  background-repeat: no-repeat;
  background-position: center bottom 100px;
  background-size: 100% 600px;
}

/* -----------------------------
   コンセプトエリア
----------------------------- */
.concept-section {
  position: relative;
  padding: 100px 0 150px;
  z-index: 2;
}

.concept-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.concept-text {
  flex: 1;
  padding-left: 260px;
}

.concept-text h2 {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

.concept-text p {
  line-height: 2;
  margin: 0;
}

.concept-image {
  width: 575px;
  height: 467px;
  flex-shrink: 0;
  margin-left: auto;
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -----------------------------
   散らばるカヌレあしらい
----------------------------- */
.concept-decorations {
  position: absolute;
  top: -40px;
  left: 40px;
  width: 240px;
  height: 650px;
  pointer-events: none;
  z-index: 1;
}

.decor-img {
  position: absolute;
}

.decor-1 { top: 0px;   left: 0px; }
.decor-2 { top: 200px; left: 100px; }
.decor-3 { top: 390px; left: -20px; }
.decor-4 { top: 580px; left: 80px; }

/* -----------------------------
   おいしさの理由（の上に重なる白いカード）
----------------------------- */
.reasons-section {
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.reasons-box {
  background-color: var(--color-white);
  border-radius: var(--radius-base);
  padding: 80px 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.reasons-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.reason-item {
  flex: 1;
  min-width: 0;
}

.reason-img-wrap {
  width: 100%;
  height: 400px;
  margin-bottom: 25px;
}

.reason-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-item h4 {
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 15px;
  line-height: 1.4;
}

.reason-item p {
  color: var(--color-black);
  line-height: 1.8;
  margin: 0;
}

/* -----------------------------
   ラインナップ（味わいで選ぶ）
----------------------------- */
.lineup-section {
  padding: 100px 0;
}

/* 3カラムグリッド（最大幅400px指定） */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  justify-content: space-between;
  gap: 40px;
}

/* 各カード（縦揃え） */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 画像（正方形 400px × 400px） */
.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 25px;
}

/* ★ 商品名（26px指定） */
.product-card h4 {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 15px;
}

/* ★ 商品説明（18px指定） */
.product-card p {
  font-size: 18px;
  color: var(--color-black);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* テキストリンクのアンダーライン装飾 */
.product-card p .text-link,
.text-link {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.text-link:hover {
  opacity: 0.6;
}

/* ボタン類を最下部に固定 */
.product-card .btn-cart,
.product-card .status-label,
.product-card .btn-event-detail {
  margin-top: auto;
}

/* 上段と下段の間のゴールド縦幅1pxライン */
.lineup-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  margin: 60px 0;
}

/* ★ 下段：イベント会場限定（21px、黒文字、上下ゴールド線） */
.status-label {
  text-align: center;
  font-size: 21px;
  color: var(--color-black); /* 黒文字 */
  padding: 15px 0;
  border-top: 1px solid var(--color-gold); /* 上ゴールド線 */
  border-bottom: 1px solid var(--color-gold); /* 下ゴールド线 */
}

/* -----------------------------
   おいしく味わうために (HOW TO ENJOY)
----------------------------- */
.how-to-section {
  background-color: var(--color-bg-dark);
  padding: 100px 30px;
}

.how-to-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%; /* 50px固定ではなく、画面幅に応じた余白(%)にするのもおすすめです */
  margin-bottom: 60px;
}

/* 左側：テキストエリア（可変） */
.how-to-text {
  /* 600pxとflex-shrink: 0 を削除し、パーセントで指定 */
  width: 42%; /* 600:800の比率に合わせて調整 */
}

/* 見出し（27px） */
.how-to-text h4 {
  font-size: 27px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* 説明文（18px） */
.how-to-text .desc {
  font-size: 18px;
  color: var(--color-black);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* 注釈（14px） */
.how-to-text .note {
  font-size: 14px;
  color: var(--color-brown);
  line-height: 1.6;
  margin: 0;
}

/* 右側：HOWTO白いボックス（可変・右下角丸0px） */
.how-to-whitebox {
  /* flex-shrink: 0 を削除し、パーセントで指定 */
  width: 53%; /* 600:800の比率に合わせて調整 */
  background-color: var(--color-white);
  border-radius: 30px 30px 0px 30px;
  padding: 40px;
  display: flex;
  gap: 30px;
  box-sizing: border-box;
}

.how-to-step {
  flex: 1;
}

.how-to-step img {
  width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------
   コーヒー誘導バナー（PC/SP出し分け）
----------------------------- */
.coffee-banner-wrap {
     width: 100%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.coffee-banner-wrap a {
  display: block;
  transition: opacity 0.3s ease;
}

.coffee-banner-wrap a:hover {
  opacity: 0.85;
}

.coffee-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
  /* バナー画像の角丸が必要な場合はこちらを適用してください */
  border-radius: var(--radius-base);
}

/* -----------------------------
   その他のスイーツ (NISEKO SWEETS)
----------------------------- */
.other-sweets-section {
  padding: 100px 30px;
}

/* 2カラムグリッド（自動計算・均等配置） */
.sweets-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* 各カード（縦方向に要素を押し下げる構造） */
.sweets-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 画像表示枠（横幅に応じた比率維持） */
.sweets-img-wrap {
  width: 100%;
  height: 400px; /* 「おいしさの理由」と同様に400pxで揃え */
  margin-bottom: 25px;
}

.sweets-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイトル（26px） */
.sweets-card h4 {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 15px;
  line-height: 1.4;
}

.sweets-card h4 .en {
  font-size: 24px;
  margin-left: 5px;
}

/* 本文（16px） */
.sweets-card p {
  font-size: 16px;
  color: var(--color-black);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* 汎用右寄せボタンをカード最下部に固定 */
.sweets-card .btn-text-link {
  margin-top: auto;
}

/* -----------------------------
   フッター
----------------------------- */
.footer {
  width: 100%;
  height: 120px; /* 縦幅 120px 指定 */
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-gold); /* 上付き1pxゴールドライン */
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* 左側ブロック */
.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

/* ★ タイトル（25px指定） */
.footer-title {
  font-size: 25px;
  color: var(--color-black);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

/* ★ コピーライト（16px指定） */
.footer-copyright {
  font-size: 16px;
  color: var(--color-brown);
  margin: 0;
  line-height: 1.2;
}

/* 中央ブロック（英語テキスト） */
.footer-desc {
  display: flex;
  gap: 30px;
  flex: 1;
  max-width: 750px;
}

.footer-desc p {
  flex: 1;
  font-size: 13px;
  color: #a09893; /* 画像に合わせた落ち着いたグレー薄文字 */
  line-height: 1.4;
  margin: 0;
}

/* 右側ブロック */
.footer-link {
  flex-shrink: 0;
}

.footer-link .btn-text-link {
  margin: 0; /* 右寄せ余白リセット */
  font-size: 18px; /* ONLINE STORE TOP 用のフォントサイズ調整 */
}

/* =========================================================
   6. レスポンシブ対応（スマホ用: 768px以下）
   ========================================================= */
@media screen and (max-width: 768px) {
  .container, .container-sub, .header-inner {
    padding: 0 20px; 
  }

  .fs-38 { font-size: 28px; }
  .fs-29 { font-size: 20px; }
  .fs-26 { font-size: 20px; }

  .header { height: 70px; }
  body { padding-top: 70px; }
  .header-logo img { height: 28px !important; }
  .header-link, .header-v-line { display: none; }
  .hamburger { width: 28px; height: 18px; }

  .hero {
    height: calc(100vh - 70px); 
    max-height: 600px;
  }

  .page-nav {
    height: auto;
    border-radius: 30px;
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
    margin-top: -30px;
  }

  .page-nav-title { font-size: 22px; text-align: center; }
  .page-nav-v-line { width: 80%; height: 1px; }
  .page-nav-menu { flex-direction: column; gap: 15px; }

  .concept-section { padding: 60px 0 80px; }
  .concept-content { flex-direction: column; gap: 30px; }
  .concept-text { padding-left: 0; text-align: center; }
  .concept-text p { text-align: left; }
  .concept-image { width: 100%; height: auto; max-width: 500px; margin: 0 auto; }
  .concept-decorations { display: none; }

  .concept-reasons-wrapper {
    padding-bottom: 60px;
    background-size: 100% 300px;
    background-position: center bottom 40px;
  }

  .reasons-box { padding: 50px 20px; }
  .reasons-grid { flex-direction: column; gap: 40px; }
  .reason-img-wrap { height: 240px; margin-bottom: 15px; }

  .section-title { gap: 15px; margin-bottom: 40px; }
  .section-title-img { width: 45px; }

  .btn-cart { height: 60px; border-radius: 30px; font-size: 16px; }
  .btn-cart svg, .btn-cart img { width: 22px; right: 20px; }

  .how-to-content { flex-direction: column; gap: 40px; }
  .reasons-grid, .lineup-grid, .sweets-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-to-whitebox { flex-direction: column; }

  /* -----------------------------
     スマホ用ハンバーガー＆ドロワー修正
  ----------------------------- */
  /* スマホ時のハンバーガーサイズ（高さ18px）に合わせた✖印アニメーション */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  /* ドロワーメニューの位置をスマホのヘッダー高さ（70px）にピッタリ合わせる */
  .header-nav {
    top: 70px;
  }

  .header-nav.is-open {
    max-height: 80vh; /* スマホで内容が入り切るよう高さを確保 */
    overflow-y: auto;  /* 画面が小さくてもスクロールできるように */
  }

  /* レイアウトの調整（スマホでは縦積み、または余白の微調整） */
  .header-nav-inner {
    flex-direction: column; /* 2列だと狭い場合は縦積みに切り替え */
    gap: 30px;
    padding: 30px 20px 40px;
  }

  .nav-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .nav-list {
    gap: 10px;
  }

  .nav-list a {
    font-size: 15px;
  }

  /* -----------------------------
     ラインナップのスマホ対応
  ----------------------------- */
  .lineup-grid {
    grid-template-columns: 1fr; /* 1列に変更 */
    gap: 50px;
  }

  .lineup-divider {
    margin: 40px 0;
  }

  /* -----------------------------
    おいしく味わうためにのスマホ対応
 ----------------------------- */
@media (max-width: 768px) {
  .how-to-section {
    padding: 60px 20px; /* スマホ用に左右の余白を追加 */
  }

  .how-to-content {
    flex-direction: column;
    gap: 40px;
  }

  /* スマホの時は縦並びになるので、横幅を100%にする */
  .how-to-text,
  .how-to-whitebox {
    width: 100%;
  }

  .how-to-text h4 {
    font-size: 22px;
  }

  .how-to-whitebox {
    padding: 20px;
    gap: 15px;
  }
}

  /* -----------------------------
     その他のスイーツのスマホ対応
  ----------------------------- */
  .other-sweets-section {
    padding: 60px 30px; 
  }

  .sweets-grid {
    flex-direction: column;
    gap: 40px;
  }

  .sweets-img-wrap {
    height: 240px;
    margin-bottom: 15px;
  }

  .sweets-card h4 {
    font-size: 20px;
  }

  .sweets-card h4 .en {
    font-size: 18px;
  }

  /* -----------------------------
     フッターのスマホ対応
  ----------------------------- */
  .footer {
    height: auto;
    padding: 40px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-desc {
    flex-direction: column;
    gap: 10px;
  }

  .footer-link .btn-text-link {
    justify-content: center;
  }
}