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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #2c221a;
  background: #f7f3ef;
  line-height: 1.8;
  padding-bottom: 80px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== CSS VARIABLES ===== */
:root {
  --cream:   #fdf8f3;
  --cream-2: #f8f4e9;
  --sand:    #e8ddd4;
  --text:    #2c221a;
  --muted:   #9a8478;
  --accent:  #c47c5a;
  --green:   #5a8a5c;
  --line:    #06C755;
  --sidebar-w: 220px;
  --radius: 16px;
}

/* ===== UTILITY ===== */
.sp-only { display: none; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  min-height: 50px;
  border-radius: 999px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.1s;
  border: none;
}
.btn:hover  { opacity: 0.85; }
.btn:active { transform: scale(0.97); }
.btn--line  { background: var(--line); color: #fff; }
.btn--large { min-height: 56px; font-size: 1rem; padding: 0 2rem; }
.btn--full  { width: 100%; }

.line-icon {
  width: 20px; height: 20px; flex-shrink: 0;
}

/* ===== LAYOUT ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--cream);
  border-right: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.75rem 2rem;
  z-index: 200;
  overflow: hidden;
}

.main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar__logo {
  margin-bottom: 2rem;
}

.sidebar__logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.sidebar__logo-jp {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.sidebar__logo-en {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 0.2rem;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: auto;
}

.sidebar__nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
  transition: color 0.2s;
}

.sidebar__nav-link:first-child {
  border-top: 1px solid var(--sand);
}

.sidebar__nav-link:hover { color: var(--accent); }

.sidebar__contact {
  margin-top: 2rem;
}

.sidebar__line-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--line);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  transition: opacity 0.18s;
}
.sidebar__line-btn:hover { opacity: 0.85; }
.sidebar__line-icon { width: 16px; height: 16px; flex-shrink: 0; }

.sidebar__note {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* 縦書きデコレーション */
.sidebar__deco-text {
  position: absolute;
  bottom: 3rem;
  right: 0.75rem;
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--sand);
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 5% 5rem 6%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* 左テキスト */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  align-self: flex-start;
}

.hero__catch {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero__catch-line1 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero__catch-line2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 2;
}

.hero__catch-line3 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero__sub {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.hero__microcopy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* 右ビジュアル */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__circle-img {
  width: clamp(260px, 38vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
}

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

/* 浮遊バッジ */
.hero__float-tag {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(44,34,26,0.08);
  white-space: nowrap;
}

.hero__float-tag--1 { top: 8%; right: 5%; }
.hero__float-tag--2 { bottom: 12%; left: -2%; }

/* 背景デコテキスト */
.hero__bg-text {
  position: absolute;
  bottom: -0.2em;
  right: -0.05em;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  user-select: none;
}

/* ===== 共感セクション ===== */
.empathy {
  background: #fff;
  padding: 4rem 5% 7rem;
  position: relative;
  overflow: hidden;
}

.empathy__deco-heading {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--cream-2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  padding-left: 0;
  margin-bottom: 2.5rem;
}

.empathy__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.empathy__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.empathy__card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.empathy__card-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.empathy__card p {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a4a40;
}

.empathy__message {
  text-align: center;
}

.empathy__message-main {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.empathy__message-cta {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===== フォトストリップ ===== */
.photo-strip {
  overflow: hidden;
  height: 220px;
}

.photo-strip__track {
  display: flex;
  gap: 0;
  height: 100%;
}

.photo-strip__item {
  flex: 1;
  min-width: 0;
}

.photo-strip__item--1 { background: url('img/img01.jpg') center/cover no-repeat; }
.photo-strip__item--2 { background: url('img/yoyaku02.png') center/cover no-repeat; }
.photo-strip__item--3 { background: url('img/img02.jpg') center/cover no-repeat; }
.photo-strip__item--4 { background: url('img/yoyaku01.png') center/cover no-repeat; }
.photo-strip__item--5 { background: url('img/yoyaku03.png') center/cover no-repeat; }

/* ===== ENJOY / HOW TO ===== */
.enjoy {
  background: var(--cream);
  padding: 7rem 5% 8rem;
}

/* セクション見出し：画像と大テキストを重ねる */
.enjoy__heading-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 5rem;
  position: relative;
}

.enjoy__img-left {
  width: clamp(180px, 28vw, 320px);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.enjoy__img-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enjoy__heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-left: -1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.enjoy__heading span:first-child {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
}

/* 3カラムカード */
.enjoy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.enjoy__card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.enjoy__card-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  align-self: flex-start;
  margin: 1.25rem 1.25rem 0;
}

.enjoy__card-badge span { font-weight: 400; }
.enjoy__card-badge strong { font-size: 1.1em; font-weight: 700; }

.enjoy__card-badge--2 { background: var(--accent); }
.enjoy__card-badge--3 { background: #8a7a70; }

.enjoy__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0.75rem 0;
  background: var(--cream-2);
}

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

.enjoy__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 0 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.enjoy__card-text {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #5a4a40;
  padding: 0 1.25rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.enjoy__card .btn {
  margin: 0 1.25rem 1.25rem;
  border-radius: 8px;
  align-self: stretch;
  justify-content: center;
}

/* ===== OUR STORY ===== */
.story {
  background: #fff;
  padding: 8rem 5% 8rem;
  position: relative;
  overflow: hidden;
}

/* 背景デコ */
.story__deco-heading {
  position: absolute;
  top: 3rem;
  right: -0.05em;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 800;
  color: var(--cream-2);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}

/* イントロ */
.story__intro {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto 7rem;
  position: relative;
  z-index: 1;
}

.story__intro-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.story__intro-heading {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--text);
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.story__intro-body {
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-left: 2px solid var(--sand);
  padding-left: 2rem;
}

.story__intro-body p {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: #5a4a40;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ナラティブ */
.story__narrative {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  position: relative;
  z-index: 1;
}

/* 引用フレーズ */
.story__quote p {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--sand);
}
.story__quote p:first-child { border-top: 1px solid var(--sand); }

/* でも */
.story__but {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__but-text {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.1;
}

.story__but-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1;
  color: #5a4a40;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ボディブロック */
.story__body-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story__body-block p {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: #5a4a40;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.story__body-block p strong {
  font-weight: 700;
  color: var(--text);
  font-size: 1.0625rem;
}

/* タッチリスト */
.story__touch-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story__touch-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease calc(var(--i) * 0.15s),
              transform 0.55s ease calc(var(--i) * 0.15s);
}

.story__touch-list:first-child .story__touch-item,
.story__touch-item:first-child { border-top: 1px solid var(--sand); }

.story__touch-list.is-visible .story__touch-item {
  opacity: 1;
  transform: translateX(0);
}

.story__touch-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.story__body-note {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--muted);
  padding-top: 0.5rem;
}

/* サービス定義 */
.story__service {
  background: var(--text);
  border-radius: var(--radius);
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
}

.story__service-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

/* 長文の説明（中サイズ） */
.story__service-body {
  font-size: 0.9375rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.story__service-body em {
  font-style: normal;
  color: #e8c4a8;
  font-weight: 700;
}

/* クライマックス（大サイズ） */
.story__service-tagline {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* クロージング */
.story__closing {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--sand);
}

.story__closing-main {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.story__closing-sub {
  font-size: 0.875rem;
  line-height: 2.1;
  color: var(--muted);
}

/* ===== AREA ===== */
.area {
  background: var(--cream-2);
  padding: 7rem 5% 8rem;
}

.area__header {
  text-align: center;
  margin-bottom: 4rem;
}

.area__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.area__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.04em;
}

.area__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.area__card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.area__card-img {
  height: 150px;
}

.area__card-img--1 { background-image: url('img/course_kamakura.JPG'); background-size: cover; background-position: center; }
.area__card-img--2 { background-image: url('img/course_syonan.JPG'); background-size: cover; background-position: center; }
.area__card-img--3 { background-image: url('img/course_shinjuku.jpg'); background-size: cover; background-position: center; }
.area__card-img--4 { background-image: url('img/course_mama.jpg'); background-size: cover; background-position: center; }

.area__card-body {
  padding: 1.25rem;
}

.area__card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.area__card-desc {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #6a5a50;
  margin-bottom: 0.6rem;
}

.area__card-time {
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.area__card-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== PROFILE ===== */
.profile {
  background: var(--cream);
  padding: 7rem 5% 8rem;
  position: relative;
  overflow: hidden;
}

.profile__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

.profile__img-wrap {
  position: relative;
}

.profile__img {
  width: clamp(120px, 22vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sand);
}

.profile__deco-text {
  position: absolute;
  left: -1.5rem;
  bottom: -2rem;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--sand);
  letter-spacing: -0.01em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.profile__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.profile__name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.profile__role {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.profile__role span { font-size: 0.72rem; }

.profile__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile__body p {
  font-size: 0.9rem;
  line-height: 2.2;
  color: #5a4a40;
  text-align: justify;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  padding: 4rem 5% 2rem;
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer__logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  /* ダーク背景でも見えるよう明度を少し上げる */
  filter: brightness(1.08);
}

.footer__area,
.footer__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer__line-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

.footer__copy {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: var(--sidebar-w);
  right: 0;
  z-index: 100;
  background: rgba(253,248,243,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--sand);
  padding: 0.75rem 1.25rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  background: var(--line);
  color: #fff;
  border-radius: 999px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.18s, transform 0.1s;
}

.sticky-cta__btn:hover  { opacity: 0.88; }
.sticky-cta__btn:active { transform: scale(0.98); }

/* ===== モバイルヘッダー ===== */
.mobile-header {
  display: none;
}

/* ===== ドロワーナビ ===== */
.drawer {
  display: none;
}

.drawer-overlay {
  display: none;
}

.area__card-price span {
  font-size: 0.68rem;
  margin-left:1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --sidebar-w: 0px; }

  .sidebar { display: none; }

  /* モバイルヘッダー */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 56px;
    padding: 0 1.25rem;
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }

  .mobile-header__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .mobile-header__logo-img {
    height: 36px;
    width: auto;
    flex-shrink: 0;
  }

  .mobile-header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .mobile-header__logo-jp {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.03em;
    line-height: 1.2;
  }

  .mobile-header__logo-en {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.12em;
    line-height: 1.2;
  }

  /* ハンバーガーボタン */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  .hamburger.is-open .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ドロワーナビ */
  .drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px;
    right: 0;
    width: 75vw;
    max-width: 280px;
    height: calc(100vh - 56px);
    background: var(--cream);
    z-index: 199;
    padding: 2rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
  }

  .drawer__link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--cream-2);
    letter-spacing: 0.05em;
  }

  .drawer__link:first-child {
    border-top: 1px solid var(--cream-2);
  }

  .drawer__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #06C755;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    text-decoration: none;
  }

  /* オーバーレイ */
  .drawer-overlay {
    display: block;
    position: fixed;
    inset: 56px 0 0 0;
    background: rgba(0,0,0,0.3);
    z-index: 198;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .main { margin-left: 0; padding-top: 56px; }

  .sticky-cta { left: 0; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    /*padding-top: 5rem;*/
    text-align: center;
  }

  .hero__text {
    align-items: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__circle-img {
    width: clamp(200px, 55vw, 320px);
  }

  .story__intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story__deco-heading {
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: clamp(3rem, 13vw, 8rem);
  }

  .enjoy__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

  .profile__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .profile__img-wrap {
    display: flex;
    justify-content: center;
  }

  .profile__img {
    width: clamp(120px, 40vw, 160px);
  }

  .profile__deco-text {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sp-only { display: block; }

  .footer__left {
    margin: auto;
  }

  .footer__logo-img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer__right {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .empathy__cards {
    grid-template-columns: 1fr;
  }

  .area__grid {
    grid-template-columns: 1fr;
  }

  .enjoy__heading {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-left: 0;
  }

  .enjoy__heading-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .enjoy__img-left {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .story__quote p:first-child {
    font-size:1.4rem;
  }

  .area__card-img {
    height: 200px;
  }
}

@media (min-width: 1025px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
