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

:root {
  --primary:       #83B9E5;
  --primary-dark:  #4A8BBF;
  --primary-light: #F9C059;
  --cream:         #f8f6f1;
  --cream-dark:    #ede8df;
  --icon-bg:       #deeaea;
  --text:          #636363;
  --text-dark:     #1c2323;
  --font:          'Noto Sans JP', 'Hiragino Sans', Meiryo, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.8;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 88px 0; }

/* ===== UTILITIES ===== */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  border: none;
}
.btn:hover { opacity: 0.82; }
.btn--primary  { background: var(--primary); color: #fff; }
.btn--outline  { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--block    { display: block; width: 100%; }

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 56px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.1em;
}
.section-title__en {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 6px;
}
.section-title--left { text-align: left; }

/* ===== SCHEDULE TABLE ===== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.schedule-table th,
.schedule-table td {
  padding: 9px 4px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}
.schedule-table th {
  font-weight: 500;
  color: var(--text-dark);
}
.schedule-table th:first-child,
.schedule-table td:first-child {
  text-align: left;
  padding-left: 0;
  min-width: 110px;
}
.schedule-table td.primary { color: var(--primary); font-weight: 700; }

/* ===== TEL ===== */
.tel-line { display: flex; align-items: baseline; gap: 6px; }
.tel-label { font-size: 0.8rem; font-weight: 700; color: var(--primary); }
.tel-number { font-size: 1.7rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; }
.tel-sub { font-size: 0.78rem; color: var(--text); margin-top: 2px; margin-bottom: 16px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo-img { height: 40px; width: auto; }

/* Desktop nav */
.header__nav > ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header__nav > ul > li { position: relative; }
.header__nav a {
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}
.header__nav > ul > li > a:hover { color: var(--primary); }

/* Dropdown indicator */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.65em;
  opacity: 0.6;
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown li + li { border-top: 1px solid #f0f0f0; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  color: var(--text-dark) !important;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.mobile-nav__group-title {
  display: block;
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  background: var(--primary-light);
}
.mobile-nav__sub a {
  padding-left: 40px;
  font-size: 0.88rem;
  color: var(--text);
  background: #fafafa;
}

/* ===== HERO ===== */
.hero {
  background-color: #f8f6f1;
  background-image: url('image/top/MV.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.hero__mv-wrap {
  width: 72%;
  margin: 0 auto;
  padding-top: 40px;
}
.hero__mv-wrap img { width: 100%; height: auto; display: block; }

/* キャッチコピー（右上） */
.hero__catch {
  position: relative;
  padding: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 5rem;
  font-weight: 500;
  color: #1c3a5e;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-align: center;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.7),
    0 0 30px rgba(255, 255, 255, 0.45),
    0 0 55px rgba(255, 255, 255, 0.25);
  z-index: 1;
}
.hero__catch-num {
  font-family: 'Cinzel', serif;
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.hero__catch-accent {
  color: #F9C059;
}
.hero__catch-sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-top: 10px;
}

/* 診療時間カード（右下） */
.hero__schedule {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 160px 160px 0 0;
  padding: 130px 48px 24px 32px;
  z-index: 1;
}
.hero__tel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.hero__tel-info { flex: 1; }
.hero__web-btn { display: inline-block; width: auto; white-space: nowrap; padding: 12px 24px; flex-shrink: 0; }

/* NEWS BAR */
.news-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  z-index: 2;
  width: 58%;
}
.news-bar__label { font-weight: 700; letter-spacing: 0.12em; flex-shrink: 0; }
.news-bar__date  { opacity: 0.85; flex-shrink: 0; }
.news-bar__link  { color: #fff; }
.news-bar__link:hover { text-decoration: underline; }

/* Mobile schedule (hidden on PC) */
.hero-schedule-sp { display: none; }
.sp-only { display: none; }

/* ===== TREATMENT (HOME) ===== */
.treatment { background: #fff; }

.treatment__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.treatment__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 148px;
  cursor: pointer;
  transition: transform 0.2s;
}
.treatment__item:hover { transform: translateY(-4px); }
.treatment__icon {
  width: 120px;
  height: 120px;
  background: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  transition: background 0.2s;
}
.treatment__item:hover .treatment__icon { background: var(--primary-light); }
.treatment__icon svg { width: 100%; height: 100%; stroke: var(--primary); }
.treatment__item p { font-size: 0.92rem; color: var(--text-dark); text-align: center; line-height: 1.5; }

/* ===== MESSAGE (HOME) ===== */
.message { background: #fff; }

.message__inner {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  /* gap: 72px; */
  align-items: center;
}
.message__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.message__image img { width: 100%; height: 100%; object-fit: cover; }
.message__lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}
.message__text p { font-size: 0.9rem; line-height: 2; margin-bottom: 14px; }
.message__text .section-title { margin-bottom: 28px; }
.message__sign {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text);
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
  line-height: 1.7;
}
.message__sign strong { display: block; font-size: 0.98rem; color: var(--text-dark); margin-top: 4px; letter-spacing: 0.06em; }

/* ===== REASONS (HOME) ===== */
.reasons { background: var(--cream); }

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason__item {
  background: #fff;
  padding: 0;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.reason__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.reason__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.reason__item:hover .reason__img img {
  transform: scale(1.04);
}
.reason__number {
  margin: 28px 28px 0;
}
.reason__item h3,
.reason__item p {
  padding: 0 28px;
}
.reason__item p {
  padding-bottom: 28px;
}
.reason__item:hover {
  box-shadow: 0 8px 24px rgba(46,125,125,0.1);
  border-color: var(--primary-light);
}
.reason__number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}
.reason__item h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.65; margin-bottom: 14px; }
.reason__item p  { font-size: 0.86rem; line-height: 2; }

/* ===== BEAUTY CTA (HOME) ===== */
.beauty-cta { background: var(--cream); }

.beauty-cta__inner {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  /* gap: 72px; */
  align-items: center;
}
.beauty-cta__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.beauty-cta__image img { width: 100%; height: 100%; object-fit: cover; }
.beauty-cta__text .section-title { margin-bottom: 28px; }
.beauty-cta__lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}
.beauty-cta__text p { font-size: 0.9rem; line-height: 2; margin-bottom: 16px; }

/* ===== INFO (HOME) ===== */
.info { background: #fff; }

.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.info__block-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 20px;
}
.news-list { margin-bottom: 28px; }
.news-list__item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.88rem;
}
.news-list__date { color: var(--text); white-space: nowrap; flex-shrink: 0; }
.news-list__link { color: var(--text-dark); transition: color 0.2s; }
.news-list__link:hover { color: var(--primary); }
.info__address { font-size: 0.88rem; color: var(--text); margin-top: 20px; line-height: 1.8; }
.info__note { font-size: 0.8rem; color: var(--text); margin-top: 6px; }

/* ===== RECRUIT SECTION ===== */
.recruit {
  background: var(--cream);
}

.recruit__container {
  max-width: 1000px;
  margin: 0 auto;
}

/* PC版: 2カラム */
.recruit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.recruit__card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.recruit__role {
  color: var(--primary);
  font-size: 1.5rem;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.recruit__lead {
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--primary);
}

.recruit__table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.6;
}

.recruit__table th {
  width: 110px;
  text-align: left;
  padding: 12px 0;
  vertical-align: top;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.recruit__table td {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.recruit__footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
}

.recruit__apply {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.recruit__apply-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.recruit__apply-list {
  list-style: none;
  margin: 16px 0;
}

.recruit__apply-list li {
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.recruit__apply-list a {
  color: var(--primary);
  text-decoration: underline;
}

.recruit__apply-note {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 12px;
}

/* モバイル版: 1カラム */
@media (max-width: 768px) {
  .recruit__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recruit__card {
    padding: 30px 20px;
  }

  .recruit__table th {
    width: 90px;
  }

  .recruit__apply {
    padding: 28px 20px;
  }
}

/* ===== ACCESS (HOME) ===== */
.access { background: #fff; padding-bottom: 0; }
.access .container { padding-bottom: 40px; }
.access__map iframe { display: block; width: 100%; height: 420px; }

/* ===== FOOTER ===== */
.footer { background: var(--cream); }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: start;
}
.footer__nav-area { display: flex; gap: 64px; }
.footer__nav-title { font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 0.2em; margin-bottom: 20px; }
.footer__nav-list li { margin-bottom: 12px; }
.footer__nav-list a { font-size: 0.86rem; color: var(--text-dark); transition: color 0.2s; }
.footer__nav-list a:hover { color: var(--primary); }
.footer__info { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__logo-img { width: 100px; height: auto; }
.footer__address { font-size: 0.82rem; color: var(--text); line-height: 1.7; }

.footer__copy {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ===================================================
   INNER PAGE STYLES
   =================================================== */

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cream);
  padding: 48px 0 44px;
}
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { opacity: 0.5; }
.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.page-subtitle {
  font-size: 0.92rem;
  color: var(--text);
  margin-top: 10px;
  line-height: 1.7;
}

/* ===== ARTICLE CONTENT ===== */
.page-body { background: #fff; }

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

.article .lead-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 20px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 6px 6px 0;
  margin: 52px 0 20px;
}
.article h2:first-child { margin-top: 0; }

.article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 32px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--primary-light);
}

.article h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 8px;
}

.article p {
  font-size: 0.92rem;
  line-height: 2;
  margin-bottom: 16px;
}

.article ul {
  list-style: none;
  margin: 8px 0 20px;
  padding-left: 0;
}
.article ul li {
  font-size: 0.9rem;
  line-height: 1.85;
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px dashed #eee;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.article .note {
  font-size: 0.82rem;
  color: var(--text);
  background: #f9f9f9;
  border-radius: 6px;
  padding: 10px 16px;
  margin-top: 8px;
}

.article .warning-box {
  border: 2px solid #e05252;
  border-radius: 8px;
  padding: 16px 20px;
  background: #fff5f5;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #6b1e1e;
  margin: 20px 0;
}

/* ===== STEP FLOW (初診の方へ) ===== */
.step-flow { margin: 32px 0; }

.step-flow__item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}
.step-flow__item:last-child { border-bottom: none; }

.step-flow__num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.step-flow__num span { font-size: 1.1rem; }

.step-flow__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.step-flow__content p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 0;
}
.step-flow__content .note { margin-top: 10px; }

/* ===== BEAUTY MENU ITEMS ===== */
.beauty-section { margin-bottom: 56px; }

.beauty-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.beauty-menu-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.beauty-menu-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(46,125,125,0.08);
}
.beauty-menu-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--primary-light);
}
.beauty-menu-item p { font-size: 0.86rem; line-height: 1.85; margin-bottom: 0; }

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 64px;
}
.cta-block h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.cta-block p  { font-size: 0.9rem; color: var(--text); margin-bottom: 28px; }
.cta-block .btn { min-width: 220px; }
.cta-block .btn + .btn { margin-left: 16px; }

/* ===== INFO TABLE (アクセス・概要) ===== */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 20px 0; }
.info-table th {
  background: var(--primary-light);
  color: var(--text-dark);
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
  width: 200px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}
.info-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  line-height: 1.8;
  vertical-align: top;
}

/* ===== PAGE: ニュース一覧 ===== */
.news-page-list { margin-top: 8px; }
.news-page-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.news-page-item:hover { opacity: 0.7; }
.news-page-item__date { color: var(--text); white-space: nowrap; flex-shrink: 0; }
.news-page-item__title { color: var(--text-dark); }

/* ===== PAGE: SIDEBAR LAYOUT ===== */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.sidebar-nav {
  position: sticky;
  top: 88px;
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 24px;
}
.sidebar-nav h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav a {
  display: block;
  font-size: 0.86rem;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}
.sidebar-nav a:hover { background: var(--primary-light); color: var(--primary); }

.sidebar-cta {
  background: var(--primary);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 20px;
  color: #fff;
}
.sidebar-cta p { font-size: 0.82rem; margin-bottom: 12px; line-height: 1.6; }
.sidebar-cta .btn {
  background: #fff;
  color: var(--primary);
  font-size: 0.88rem;
  padding: 10px 24px;
  display: block;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .container  { padding: 0 24px; }
  .section    { padding: 64px 0; }

  /* Header */
  .header__nav { display: none; }
  .hamburger   { display: flex; }

  /* Hero */
  .hero { min-height: 300px; padding: 60px 0; }
  .hero__catch { position: static; font-size: 3rem; padding: 0 16px; }
  .hero__schedule { display: none; }
  .news-bar { position: static; width: 100%; padding: 14px 24px; }
  .hero-schedule-sp { display: block; background: var(--cream); padding: 28px 0 36px; }
  .sp-only { display: block; }

  /* Treatment */
  .treatment__grid { gap: 20px; }
  .treatment__item { width: calc(33.333% - 16px); }
  .treatment__icon { width: 90px; height: 90px; padding: 20px; }

  /* Message */
  .message__inner { grid-template-columns: 1fr; gap: 36px; }
  .message__image { aspect-ratio: 16/9; }

  /* Reasons */
  .reasons__grid { grid-template-columns: 1fr; gap: 20px; }

  /* Beauty CTA */
  .beauty-cta__inner { grid-template-columns: 1fr; gap: 36px; }

  /* Info */
  .info__grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 48px; }
  .footer__nav-area { flex-direction: column; gap: 0; }
  .footer__nav-title { padding: 16px 0 0; }
  .footer__nav-list { background: #fff; border-radius: 8px; margin-top: 8px; }
  .footer__nav-list li { border-bottom: 1px solid #eee; }
  .footer__nav-list a { display: block; padding: 13px 16px; }
  .footer__info { align-items: center; }

  /* Inner pages */
  .page-layout { grid-template-columns: 1fr; }
  .sidebar-nav { position: static; }
  .beauty-menu-grid { grid-template-columns: 1fr; }
  .info-table th { width: 140px; }
  .cta-block .btn + .btn { margin-left: 0; margin-top: 12px; }
}

@media (max-width: 480px) {
  .treatment__item { width: calc(50% - 12px); }
  .hero__catch { font-size: 2.2rem; }
  .schedule-table { font-size: 0.74rem; }
  .schedule-table th:first-child,
  .schedule-table td:first-child { min-width: 88px; }
  .reason__item { padding: 24px 20px; }
  .page-title { font-size: 1.6rem; }
  .info-table { font-size: 0.82rem; }
  .info-table th { width: 100px; padding: 10px 12px; }
  .info-table td { padding: 10px 12px; }
  .step-flow__num { width: 52px; height: 52px; }
}
