/* ===========================
   カラー変数
=========================== */
:root {
  --pink:       #C85A78;   /* アクセントピンク（落ち着いたトーン） */
  --pink-dark:  #9E3A55;   /* 濃いアクセント（見出し・線限定） */
  --pink-mid:   #E8A0B8;   /* ミディアムピンク */
  --pink-light: #FFF0F4;   /* セクション背景（白に近い淡ピンク） */
  --pink-pale:  #FFF8FA;   /* メイン背景 */
  --pink-deco:  #F9DDE4;   /* 淡い装飾 */
  --white:      #ffffff;
  --text:       #5A3742;   /* 見出し文字 */
  --text-mid:   #6B5A60;   /* 本文文字 */
  --border:     #F0C8D4;   /* 枠線 */
  --line-green: #06C755;
  --line-dark:  #05A847;
  --line-pale:   #F0FDF4;   /* LINE友だち追加バナー背景 */
  --line-border: #BBF0D0;
  --green:        #4A9B7F;   /* 法人向けセクション用アクセントグリーン */
  --green-dark:   #357A62;
  --green-pale:   #EAF6F1;   /* 法人向けセクション背景 */
  --green-border: #BFE3D4;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 20px rgba(180, 80, 110, 0.08);
  --shadow-lg:  0 10px 40px rgba(180, 80, 110, 0.12);

  /* 旧変数名との互換（CSS内参照用） */
  --blue:       var(--pink);
  --blue-dark:  var(--pink-dark);
  --blue-mid:   var(--pink-mid);
  --blue-light: var(--pink-light);
  --blue-pale:  var(--pink-pale);
}

/* ===========================
   リセット & ベース
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 固定ヘッダー(88px) + サイトナビ(48px) + 余白 */
[id] {
  scroll-margin-top: 148px;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-mid);
  background: var(--pink-pale);
  padding-top: 136px; /* ヘッダー88px + サイトナビ48px */
  overflow-wrap: break-word;
  word-break: break-word;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
  word-break: break-word;
}

img,
picture,
video,
iframe,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.75; }

ul, ol { list-style: none; }

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

/* ===========================
   レイアウト
=========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.sec {
  padding: 88px 0;
}

/* ===========================
   サイトナビゲーション
=========================== */
.site-nav {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  background: var(--pink);
  z-index: 99;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  min-width: max-content;
  width: 100%;
}

.site-nav__link {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.18s;
}

.site-nav__link:hover {
  background: var(--pink-dark);
  opacity: 1;
}

/* ===========================
   ヘッダー
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--border);
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 16px;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.logo__texts {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo__company {
  font-size: 0.72rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.06em;
}

.logo__name {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}

/* ヘッダー右側 */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.header__tel-icon {
  display: flex;
  align-items: center;
  color: var(--pink);
}

.header__tel-icon svg {
  width: 20px;
  height: 20px;
}

.header__tel-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.06em;
}

.header__tel-num {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.06em;
}

/* スマホ用：電話アイコンボタン（通常は非表示、640px以下でのみ表示） */
.header__tel-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  border: 1.5px solid var(--border);
  transition: background 0.18s, color 0.18s;
}

.header__tel-btn:hover {
  background: var(--pink);
  color: #fff;
  opacity: 1;
}

/* ===========================
   固定ドロワーボタン
=========================== */
.drawer-toggle {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  box-shadow: 3px 0 16px rgba(180, 60, 90, 0.22);
  transition: background 0.18s;
}

.drawer-toggle:hover {
  background: var(--pink-dark);
}

.drawer-toggle__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.drawer-toggle__lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.drawer-toggle__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
}

/* ドロワー：オーバーレイ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 599;
}

.drawer-overlay.is-open {
  display: block;
}

/* ドロワー：パネル */
.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 600;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  box-shadow: 4px 0 28px rgba(0, 0, 0, 0.14);
}

.drawer-panel.is-open {
  transform: translateX(0);
}

.drawer-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1.5px solid var(--border);
}

.drawer-panel__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.12em;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--pink-pale);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s;
  line-height: 1;
}

.drawer-close:hover {
  background: var(--pink-light);
}

/* ドロワー：メニュー項目 */
.drawer-nav {
  list-style: none;
  margin: 0;
  padding: 8px 0 32px;
}

.drawer-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.drawer-nav__link::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--pink-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

.drawer-nav__link:hover {
  background: var(--pink-pale);
  color: var(--pink);
  padding-left: 30px;
}

/* ===========================
   LINEボタン（全サイズ共通）
=========================== */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--line-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.btn-line:hover {
  background: var(--line-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  opacity: 1;
}

.btn-line--sm {
  padding: 13px 28px;
  font-size: 1.05rem;
}

.btn-line--sm svg {
  width: 22px;
  height: 22px;
}

.btn-line__mobile-text {
  display: none;
}

.btn-line--lg {
  padding: 18px 40px;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.btn-line--xl {
  padding: 22px 56px;
  font-size: 1.35rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 電話ボタン */
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--pink-dark);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2.5px solid var(--pink-dark);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-tel:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  opacity: 1;
}

.btn-tel--lg {
  padding: 18px 40px;
  font-size: 1.15rem;
}

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

.line-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-top: 10px;
}

/* ===========================
   ページヒーロー（下層ページ共通）
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-pale) 100%);
  padding: 120px 0 52px;
  text-align: center;
  border-bottom: 2px solid var(--border);
}

.page-hero__bread {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.page-hero__bread a {
  color: var(--pink);
  font-weight: 700;
}

.page-hero__bread a:hover {
  opacity: 0.75;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
}

.page-hero__sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 700;
}

/* ===========================
   料金ページ
=========================== */
.price-page-sec {
  background: var(--pink-pale);
}

.price-footer-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
  background: var(--pink-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  line-height: 1.85;
}

.price-back {
  text-align: center;
  margin-top: 40px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-dark);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 12px 28px;
  transition: background 0.2s, transform 0.15s;
}

.btn-back:hover {
  background: var(--pink-light);
  transform: translateX(-3px);
  opacity: 1;
}

/* ===========================
   リンク付きサービスカード
=========================== */
.service-card--linked {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card--linked:hover {
  opacity: 1;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card__link-hint {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(232, 93, 122, 0.35);
  transition: background 0.2s;
}

.service-card--linked:hover .service-card__link-hint {
  background: var(--pink-dark);
}

/* ===========================
   会社紹介セクション
=========================== */
.about-sec {
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__title {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 28px;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__body > p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2.05;
}

.about__voices {
  background: var(--pink-pale);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__voices p {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.75;
}

.highlight-text {
  font-weight: 900;
  color: var(--pink-dark);
  background: linear-gradient(transparent 55%, rgba(255, 240, 80, 0.55) 55%);
  padding: 0 2px;
}

.about__img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.about__img-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ===========================
   セクション2: 会社紹介 (about-v2)
=========================== */
.about-v2 {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1630329273801-8f629dba0a72?w=1600&auto=format&fit=crop&crop=center');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
}

.about-v2__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-areas:
    "label    right"
    "title    right"
    "body     right"
    "banner   banner";
  column-gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 28px 140px;
}

.about-v2__label          { grid-area: label;  padding-bottom: 16px; }
.about-v2__title          { grid-area: title;  padding-bottom: 36px; }
.about-v2__body           { grid-area: body;   padding-bottom: 28px; }
.about-v2__feature-banner { grid-area: banner; }
.about-v2__right          { grid-area: right;  align-self: center; }

/* ① 小見出し */
.about-v2__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-v2__en {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #C84F70;
  text-transform: uppercase;
}

.about-v2__ja {
  font-size: 0.75rem;
  color: #C84F70;
  opacity: 0.75;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ② 大見出し */
.about-v2__title {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 900;
  color: #56343D;
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ③ 会社紹介文 */
.about-v2__body {
  color: #333333;
  line-height: 1.9;
}

.about-v2__body p {
  margin: 0 0 1.2em;
  font-size: 1.125rem;
  font-weight: 500;
  color: #4A3F42;
  line-height: 2.0;
}

.about-v2__body p:last-child { margin-bottom: 0; }

/* ④ 特徴バナー画像 */
.about-v2__feature-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

/* 右カラム：マスコット */
.about-v2__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-v2__mascot-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
}

.about-v2__mascot-wrap::before {
  content: none;
}

/* 軌道トラック（静止破線） */
.about-v2__orbit-track-wrap {
  display: none;
}

/* 星の軌道（前面・背面クリップ） */
.about-v2__orbit-clip {
  position: absolute;
  width: 640px;
  height: 640px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-v2__orbit-clip--back  { z-index: 2; clip-path: inset(0 0 50% 0); }
.about-v2__orbit-clip--front { z-index: 4; clip-path: inset(50% 0 0 0); }

.about-v2__orbit-spin {
  width: 100%;
  height: 100%;
  animation: aboutOrbitSpin 18s linear infinite;
}

.about-v2__orbit-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes aboutOrbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.about-v2__mascot {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(180, 80, 110, 0.10));
  animation: float 3.2s ease-in-out infinite;
}

/* モバイル */
@media (max-width: 860px) {
  .about-v2__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "right"
      "body"
      "banner";
    padding: 80px 20px 80px;
  }

  .about-v2__feature-banner {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 24px;
    border-radius: var(--radius);
  }

  .about-v2__right {
    margin: 0 auto;
    max-width: 260px;
  }

  .about-v2__mascot-wrap {
    max-width: 220px;
    padding: 28px;
  }

  .about-v2__orbit-clip {
    width: 220px;
    height: 220px;
  }

}

/* ===========================
   LINE友だち追加クーポン
=========================== */
.line-coupon {
  background: var(--pink-pale);
}

.line-coupon__box {
  background: var(--line-pale);
  border: 1.5px solid var(--line-border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow);
  text-align: center;
}

.line-coupon__eyebrow {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--line-dark);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.line-coupon__title {
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 900;
  color: var(--line-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.line-coupon__desc {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ===========================
   無料集配セクション
=========================== */
.pickup {
  background: var(--white);
  padding: 88px 0;
}

.pickup__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.pickup__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pickup__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.pickup-flow-crop {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.pickup-flow-image {
  display: block;
  width: 120%;
  max-width: none;
  height: auto;
  transform: translateX(-8%) translateY(-5%);
}

.pickup__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pickup__free {
  color: #C84F70;
  font-size: 1.9em;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: inline-block;
  line-height: 1.05;
}

.pickup__desc {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-mid);
  line-height: 2.4;
  margin-bottom: 24px;
}

.pickup__desc p {
  margin-bottom: 1.2em;
}

.pickup__desc p:last-child {
  margin-bottom: 0;
}

.pickup__desc strong {
  color: var(--text);
  font-weight: 900;
}

.pickup__voice {
  background: var(--pink-light);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
}

.pickup__voice .pickup__voice-line {
  color: var(--pink-dark);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.4em;
}

.pickup__voice .pickup__voice-line:last-child {
  margin-bottom: 0;
}

.pickup__list {
  margin-bottom: 32px;
}

.pickup__list li {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.pickup__list li:first-child {
  border-top: 1px solid var(--border);
}

/* ===========================
   セクション共通タイトル
=========================== */
.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.sec-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: var(--pink);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ===========================
   サービスカード
=========================== */
.services {
  background: var(--pink-pale);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card--featured {
  border-color: var(--pink);
  border-width: 3px;
}

.service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #E53935;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(229, 57, 53, 0.35);
}

.service-card__img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 24px 22px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card__body p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.service-cards__note {
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
}

/* ===========================
   サービスカード アコーディオン
=========================== */

.service-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px 16px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-top: 1.5px solid var(--border);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.service-card__toggle:hover {
  background: var(--pink);
  color: #fff;
}

.service-card__toggle .toggle-arrow {
  transition: transform 0.32s;
  flex-shrink: 0;
}

.service-card__toggle.is-open .toggle-arrow {
  transform: rotate(180deg);
}

.service-card__drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.service-card__table-wrap {
  overflow-x: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.service-card__inner-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 260px;
}

.service-card__inner-table + .service-card__inner-table {
  margin-top: 10px;
}

.service-card__inner-table th,
.service-card__inner-table td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid var(--pink-light);
  line-height: 1.5;
  vertical-align: middle;
}

.service-card__inner-table thead th {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
}

.service-card__inner-table .table-cat td {
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
}

.service-card__inner-table tbody tr:not(.table-cat) td + td {
  text-align: right;
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}

/* ===========================
   法人・大口向けセクション
=========================== */
.corporate {
  background: var(--pink-pale);
}

.corporate__box {
  background: var(--green-pale);
  border: 1.5px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow);
}

.corporate__title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
}

.corporate__title-sub {
  display: block;
  font-size: 0.6em;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: 4px;
}

.corporate__voice {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 24px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.corporate__voice .corporate__voice-line {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.4em;
}

.corporate__voice .corporate__voice-line:last-child {
  margin-bottom: 0;
}

.corporate__lead {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.corporate__list {
  max-width: 640px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.corporate__list li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  box-shadow: var(--shadow);
}

.corporate__list li strong {
  color: var(--green-dark);
  font-weight: 800;
}

.corporate__note {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.corporate__note p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1em;
}

.corporate__note p:last-child {
  margin-bottom: 0;
}

.corporate__btns {
  justify-content: center;
}

/* ===========================
   LINEバー
=========================== */
.line-bar {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EF 100%);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.line-bar__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

/* ===========================
   料金表
=========================== */
.price-sec {
  background: var(--pink-pale);
}

.price-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: -4px 0 36px;
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 16px 28px;
  text-align: left;
  border-bottom: 1px solid var(--pink-light);
}

.price-table thead th {
  background: var(--pink);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--pink-dark);
  font-size: 1.1rem;
}

.price-table .price-cat td {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 28px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

/* 着物など袷/単の3カラム料金表 */
.price-table--3col tbody tr:not(.price-cat) td:nth-child(n+2) {
  text-align: right;
  font-weight: 700;
  color: var(--pink-dark);
}

/* 料金ページ セクション内ナビゲーション */
.price-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 40px 0 0;
}

.price-nav a {
  display: inline-block;
  padding: 10px 26px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pink-dark);
  transition: background 0.2s, border-color 0.2s;
}

.price-nav a:hover {
  background: var(--pink-light);
  border-color: var(--pink);
  opacity: 1;
}

/* 料金テーブル2列グリッド（布団・特殊ページ用） */
.price-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 760px) {
  .price-table-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.price-table tbody tr:not(.price-cat):hover td {
  background: var(--pink-pale);
}

/* ===========================
   利用の流れ
=========================== */
.flow-sec {
  background: var(--white);
}

.flow-subtitle {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink);
  margin: -4px 0 44px;
  letter-spacing: 0.04em;
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  background: var(--pink-pale);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
}

.flow-step__num {
  width: 56px;
  height: 56px;
  background: var(--pink);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(180, 80, 110, 0.18);
}

.flow-step__icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  line-height: 1;
}

.flow-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  padding-top: 64px;
  color: var(--pink-mid);
  flex-shrink: 0;
}

.flow-cta {
  text-align: center;
}

/* ===========================
   開催中のセール
=========================== */
.sale-sec {
  background: var(--pink-pale);
}

.sale-banners {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.sale-banner-img {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sale-info {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.sale-period {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--pink-pale);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 20px;
}

.sale-period__badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--pink);
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.sale-period__dates {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.sale-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.sale-notes {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
  margin-bottom: 0;
}

.sale-note {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.sale-empty {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 48px;
}

/* 問い合わせ案内ブロック */
.sale-inquiry {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}

.sale-inquiry__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.sale-inquiry__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.sale-inquiry__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--pink-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.sale-inquiry__item::before {
  content: '✓';
  color: var(--pink);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* セール用ボタンペア */
.sale-btn-pair {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.sale-btn-pair .btn-line--lg {
  flex: 1 1 260px;
  max-width: 360px;
}

/* 電話ボタン */
.sale-btn-tel {
  flex: 1 1 200px;
  max-width: 280px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 24px;
  background: #fff;
  border: 2px solid var(--pink);
  border-radius: 50px;
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  line-height: 1.3;
}

.sale-btn-tel:hover {
  background: var(--pink-pale);
  opacity: 1;
}

.sale-btn-tel__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}

.sale-btn-tel__num {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--pink-dark);
}

/* ライトボックス：トリガー画像 */
.sale-lightbox-trigger {
  cursor: zoom-in;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.sale-lightbox-trigger:hover {
  transform: scale(1.025);
  filter: brightness(1.06);
}

/* ライトボックス：オーバーレイ */
.sale-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sale-lightbox.is-open {
  display: flex;
}

/* ライトボックス：閉じるボタン */
.sale-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.18s;
  z-index: 9001;
}

.sale-lightbox-close:hover {
  background: #fff;
}

/* ライトボックス：拡大画像 */
.sale-lightbox-image {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

/* ===========================
   よくある質問
=========================== */
.faq-sec {
  background: var(--white);
}

.faq-sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.faq-sec__head .sec-title {
  margin-bottom: 0;
}

.faq-mascot {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.faq {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 76px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.faq-q::after {
  content: '＋';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--pink);
  line-height: 1;
  transition: transform 0.2s;
}

details[open] .faq-q::after {
  content: '－';
}

.faq-a {
  padding: 18px 28px 22px 76px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2;
  border-top: 1px solid var(--pink-light);
  background: var(--pink-pale);
}

/* ===========================
   店舗情報
=========================== */
.info-sec {
  background: var(--pink-pale);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pink-light);
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  font-weight: 800;
  color: var(--white);
  background: var(--pink);
  width: 32%;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.info-table td {
  color: var(--text);
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}

.info-table td a {
  color: var(--pink-dark);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.info-table__note {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-dark);
}

.info-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-map svg,
.info-map iframe {
  width: 100%;
  display: block;
}

/* ===========================
   当社の強み
=========================== */
.strengths {
  margin-top: 72px;
}

.strengths-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
  position: relative;
}

.strengths-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--pink);
  margin: 14px auto 0;
  border-radius: 3px;
}

.strength-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.strength-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--white);
  border: 3px solid var(--pink);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.strength-card__icon {
  font-size: 3.2rem;
  margin-bottom: 18px;
  line-height: 1;
}

.strength-card h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--pink-dark);
  margin-bottom: 14px;
  line-height: 1.45;
}

.strength-card p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-mid);
  line-height: 1.9;
}

@media (max-width: 960px) {
  .strength-cards {
    max-width: 520px;
    margin: 0 auto;
  }

  .strength-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===========================
   店舗・受付店一覧
=========================== */
.shops-lead {
  text-align: center;
  margin-top: 56px;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 44px;
  line-height: 1.9;
}

/* カテゴリ見出し */
.shops-cat-title {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 52px 0 24px;
  text-align: center;
  justify-content: center;
  position: relative;
}

.shops-cat-title::before,
.shops-cat-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--border);
  position: absolute;
  top: 50%;
}

.shops-cat-title::before { right: calc(50% + 90px); }
.shops-cat-title::after  { left:  calc(50% + 90px); }

.shops-cat-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  padding: 8px 28px;
  border-radius: 50px;
  background: var(--pink);
  color: #fff;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.shops-cat-badge--local {
  background: var(--white);
  color: var(--pink-dark);
  border: 2px solid var(--border);
}

/* 主要店舗 3カラム */
.main-shops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
  align-items: start;
}

.main-shop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.main-shop__map-btn {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  border: none;
  background: var(--pink-light);
  color: var(--pink-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.main-shop__map-btn:hover {
  background: var(--pink);
  color: #fff;
}

/* 地図ライトボックス */
.map-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.map-lightbox.is-open {
  display: flex;
}

.map-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.18s;
  z-index: 9001;
}

.map-lightbox-close:hover {
  background: #fff;
}

.map-lightbox-frame {
  width: min(92vw, 800px);
  height: min(80vh, 560px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.map-lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.main-shop__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  padding: 0 22px 12px;
  border-bottom: 2px solid var(--pink-light);
  margin-bottom: 4px;
}

.main-shop__address {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 0 22px;
  margin-top: 6px;
}


.main-shop__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pink-dark);
  text-decoration: none;
  background: var(--pink-light);
  padding: 12px 18px;
  border-radius: var(--radius);
  margin: 10px 22px 0;
  border: 1.5px solid var(--border);
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.04em;
}

.main-shop__tel:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  opacity: 1;
}

.main-shop__hours {
  padding: 0 22px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.main-shop__hours-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.88rem;
  line-height: 1.7;
}

.main-shop__hours-label {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  min-width: 4.5em;
  flex-shrink: 0;
}

.main-shop__hours-value {
  color: var(--text-mid);
}

.main-shop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 22px;
  margin-top: 10px;
}

.shop-tag {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  line-height: 1.4;
  white-space: nowrap;
}

.shop-tag--point {
  background: #FFFBEB;
  color: #7A5700;
  border: 1.5px solid #F0D060;
}

.shop-tag--paypay {
  background: #EEF4FF;
  color: #1A4DA0;
  border: 1.5px solid #B0C8F0;
}

/* 地域密着店舗 2カラム */
.local-shops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.local-shop-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.local-shop__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.local-shop__address {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.local-shop__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 4px;
}

.local-shop__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-decoration: none;
  transition: color 0.18s;
}

.local-shop__tel:hover {
  color: var(--pink);
  text-decoration: underline;
  opacity: 1;
}

.local-shop__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-dark);
  background: var(--pink-light);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.local-shop__map-btn:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  opacity: 1;
}

@media (max-width: 960px) {
  .main-shops-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .local-shops-grid {
    grid-template-columns: 1fr;
  }
  .shops-cat-title {
    margin-top: 40px;
  }
  .shops-cat-title::before { right: calc(50% + 80px); }
  .shops-cat-title::after  { left:  calc(50% + 80px); }
  .main-shop__tel {
    font-size: 1.2rem;
  }
}

/* ===========================
   CTAセクション
=========================== */
.cta-section {
  background: var(--pink-pale);
  padding: 88px 0;
}

.cta-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.cta-mascot {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta-coupon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.32);
  animation: cta-coupon-pulse 2.2s ease-in-out infinite;
}

.cta-coupon strong {
  font-size: 1.15em;
}

@keyframes cta-coupon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

.cta-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  color: #5A3742;
  line-height: 1.55;
}

.cta-desc {
  font-size: 1.1rem;
  color: #6B5A60;
  line-height: 2;
}

.cta-tel {
  font-size: 1.05rem;
  color: #78666C;
  margin-top: 6px;
}

.cta-tel-link {
  color: #B94465;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.cta-tel-link:hover {
  color: #9E3A55;
  text-decoration: underline;
  opacity: 1;
}

/* ===========================
   フッター
=========================== */
.footer {
  background: #f3e3e7;
  border-top: 1.5px solid #e0c4cb;
  padding: 64px 0 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

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

.footer__logo-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  opacity: 0.9;
}

.footer__name {
  font-size: 1rem;
  font-weight: 700;
  color: #5b3540;
  letter-spacing: 0.06em;
}

.footer__nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a4d55;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.18s;
}

.footer__nav a:hover {
  color: #c0526a;
}

.footer__divider {
  width: 100%;
  max-width: 480px;
  border: none;
  border-top: 1px solid #e0c4cb;
  margin: 0;
}

.footer__copy {
  font-size: 0.78rem;
  color: #a07080;
  letter-spacing: 0.06em;
}

/* ===========================
   ページトップ
=========================== */
.pagetop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(180, 80, 110, 0.22);
  transition: background 0.2s, transform 0.2s;
  z-index: 99;
}

.pagetop:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  opacity: 1;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 960px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pickup__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pickup-flow-image {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .sale-info {
    padding: 24px 20px;
  }

  .sale-inquiry__items {
    grid-template-columns: 1fr;
  }

  .sale-btn-pair {
    flex-direction: column;
    align-items: stretch;
  }

  .sale-btn-pair .btn-line--lg,
  .sale-btn-tel {
    max-width: 100%;
    flex: none;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate__box {
    padding: 36px 28px;
  }

  .line-coupon__box {
    padding: 36px 28px;
  }

  .flow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .flow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    height: 44px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }


  .info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .header__tel { display: none; }

  .header__tel-btn {
    display: flex;
    width: 50px;
    height: 50px;
  }

  .header__tel-btn svg {
    width: 24px;
    height: 24px;
  }

  .header__right { gap: 8px; }

  .btn-line--sm {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }

  .btn-line--sm svg {
    display: none;
  }

  .btn-line__full {
    display: none;
  }

  .btn-line__mobile-text {
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
  }

  .logo__company { display: none; }

  .logo__name { font-size: 1rem; }

  .logo__img { width: 44px; height: 44px; }

  .header__inner {
    height: 72px;
    padding: 0 16px;
    gap: 8px;
  }

  .drawer-panel {
    width: 85vw;
  }

  .drawer-toggle {
    top: auto;
    bottom: 72px;
    transform: none;
  }

  [id] { scroll-margin-top: 128px; }

  .site-nav__link {
    padding: 10px 14px;
    font-size: 12px;
  }

  .sec { padding: 64px 0; }

  .pickup { padding: 64px 0; }

  .sale-banners {
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
    margin-bottom: 24px;
  }

  .sale-banner-img {
    width: 100%;
    flex: none;
  }


  .line-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 20px;
  }

  .btn-line,
  .btn-tel {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .btn-line--xl {
    padding: 18px 36px;
    font-size: 1.1rem;
  }

  .cta-section { padding: 72px 0; }

  .cta-coupon {
    font-size: 0.92rem;
    padding: 10px 18px;
    text-align: center;
  }

  .cta-inner {
    flex-direction: column;
    gap: 32px;
  }

  .cta-mascot {
    width: 130px;
  }

  .footer {
    padding: 48px 0 32px;
  }

  .footer__inner {
    gap: 24px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

  .footer__nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #e0c4cb;
  }

  .footer__divider {
    display: none;
  }

  .faq-mascot {
    width: 80px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .corporate__box {
    padding: 28px 20px;
  }

  .corporate__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .line-coupon__box {
    padding: 28px 20px;
  }

  .cta-mascot {
    width: 90px;
  }

  .faq-q {
    font-size: 0.97rem;
    padding: 18px 44px 18px 66px;
  }

  .faq-q::before {
    width: 46px;
    font-size: 1.1rem;
  }

  .faq-a {
    padding: 14px 20px 18px 66px;
  }
}
