@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Noto+Sans+JP:wght@300;400&display=swap');

:root {
  /* 面の階層（奥→手前で明るく） */
  --color-bg:         #0A0A0A;   /* 最奥・body */
  --color-bg-raised:  #111111;   /* セクション背景 */
  --color-bg-card:    #151515;   /* カード・FAQ項目 */
  --color-bg-surface: #1A1A1A;   /* モーダル・ヘッダー */
  --color-bg-hover:   #222222;   /* ホバー状態 */

  /* テキスト（ハレーション防止でピュアホワイト不使用） */
  --color-text:       #F5F0E8;   /* 主テキスト（≒白90%） */
  --color-text-sub:   #B0A89A;   /* 補助テキスト */
  --color-text-muted: #7A7268;   /* 注釈・プレースホルダ */

  /* アクセント */
  --color-accent:       #C4A265;  /* ゴールド */
  --color-accent-hover: #D4B275;  /* ゴールドhover */
  --color-line-green:   #06C755;  /* LINE緑（固定・変更不可） */

  /* ボーダー */
  --color-border:       #2A2A2A;
  --color-border-light: #3A3A3A;  /* FAQ仕切り等 */

  /* 以下、既存の維持変数 */
  --color-line: #06C755;
  --font-en: 'Cormorant Garamond', 'Georgia', serif;
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --max-width: 1080px;
  --section-pad: 100px;
  --section-pad-sp: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p, li, td, span {
  font-weight: 500;
}

h1, h2, h3 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================================
   Typography
================================== */
h1, h2, h3, h4, h5, h6, .font-en {
  font-family: var(--font-en);
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-lead {
  text-align: center;
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  line-height: 2;
}

/* ==================================
   Layout / Container
================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

/* ==================================
   Placeholder
================================== */
.placeholder {
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3A3A3A;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 12px;
}

.placeholder-photo {
  aspect-ratio: 16/9;
}

.placeholder-photo.portrait {
  aspect-ratio: 3/4;
}

.placeholder-person {
  aspect-ratio: 3/4;
}

.placeholder-youtube {
  background: #e5dfd8;
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.placeholder-youtube::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #c5bfb8;
  margin-bottom: 16px;
  opacity: 1.0;
}

.placeholder-youtube .youtube-text {
  color: #c5bfb8;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-family: var(--font-en);
}

.placeholder-insta {
  background: #e5dfd8;
  border-radius: 4px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5bfb8;
  font-size: 14px;
  font-family: var(--font-en);
}

/* ==================================
   Buttons
================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #2c2825;
  padding: 16px 48px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 1px solid #2c2825;
  cursor: pointer;
}

.btn:hover {
  background-color: #2c2825;
  color: #f5f0eb;
}

.btn-gold {
  background-color: #b8954f !important;
  color: #ffffff !important;
  border: none !important;
}

.btn-gold:hover {
  background-color: #a07d3f !important;
}

.btn-outline {
  /* .btn 自体がアウトラインになったので統合 */
}

/* ==================================
   Header
================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s ease, padding 0.4s ease, color 0.4s ease;
  color: var(--color-text);
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.98);
  padding: 16px 40px;
  backdrop-filter: blur(8px);
  color: var(--color-text);
}

.header.scrolled .btn-outline {
  border-color: #2c2825;
  color: #2c2825;
}

.header__btn {
  padding: 8px 24px;
  border-color: #2c2825;
  color: #2c2825;
}

.header__btn:hover {
  background-color: #2c2825;
  color: #f5f0eb;
}

.header.scrolled .header__btn {
  border-color: #2c2825;
  color: #2c2825;
}

.header.scrolled .header__btn:hover {
  background-color: #2c2825;
  color: #f5f0eb;
}

.header__logo {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__link {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 4px;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.header.scrolled .header__link::after {
  background-color: var(--color-accent);
}

.header__link:hover {
  color: var(--color-accent);
}

.header.scrolled .header__link:hover {
  color: var(--color-accent);
}

.header__link:hover::after {
  width: 100%;
}

.header__btn {
  padding: 8px 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0A0A0A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__list {
  list-style: none;
  text-align: center;
}

.mobile-nav__item {
  margin-bottom: 32px;
}

.mobile-nav__link {
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #f5f0eb;
}

.mobile-nav__btn .btn {
  border-color: #f5f0eb;
  color: #f5f0eb;
}
.mobile-nav__btn .btn:hover {
  background-color: #f5f0eb;
  color: #2c2825;
}

.mobile-nav__btn {
  margin-top: 24px;
}

/* ==================================
   Footer
================================== */
.footer {
  background-color: #050505;
  padding: 80px 40px 40px;
  text-align: center;
  color: #a09a90;
}

.footer__logo {
  font-family: var(--font-en);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-subtext);
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.footer__sns-link {
  font-family: var(--font-en);
  font-size: 1rem;
  color: #a09a90;
}

.footer__sns-link:hover {
  color: #f0ece4;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #a09a90;
}

/* ==================================
   Hero (Inner pages)
================================== */
.hero-inner {
  height: 50vh;
  background: #000000;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-inner__title {
  font-size: 32px;
  letter-spacing: 0.25em;
  font-family: var(--font-en);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-inner__subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--color-subtext);
}

/* ==================================
   Animations
================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================
   Responsive
================================== */
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .hamburger {
    display: block;
  }

  .header {
    padding: 16px 20px;
  }

  .header.scrolled {
    padding: 12px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 24px;
  }
}

/* ==================================
   Salon Card Common
================================== */
.salon-card__title {
  display: inline-block;
  position: relative;
  font-family: var(--font-en);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-text);
  font-weight: 500;
}
.salon-card__title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}
.salon-card:hover .salon-card__title::after {
  width: 100%;
}
.salon-card:hover .card-salon__img,
.salon-card:hover .salon-card__img {
  transform: scale(1.03);
}
.salon-card__img, .card-salon__img {
  overflow: hidden;
}


/* ==================================
   LINE Button
================================== */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #06C755;
  color: #ffffff !important;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  font-family: var(--font-jp);
}
.btn-line:hover {
  background-color: #05b04c;
  color: #ffffff !important;
}
.btn-line svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: #ffffff;
}

/* ==================================
   Footer SNS Icon
================================== */
.footer__sns-icon {
  color: #f5f0eb;
  transition: color 0.3s ease;
}
.footer__sns-icon:hover {
  color: #b8954f;
}

/* ==================================
   YouTube Ticker & New Sections
================================== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #eee8e0;
  padding: 16px 0;
  box-sizing: border-box;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 24px;
  color: #d5cec6;
  letter-spacing: 0.05em;
}
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}








/* ==================================
   Menu Page Layout Update
================================== */
.menu-item-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.menu-item-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.menu-item-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.menu-item-content {
  flex: 1.2;
  align-self: center;
}
/* 施術内容リスト削除後：ヘッダーが唯一の子になるため下余白を除去 */
.menu-item-content .menu__header {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .menu-item-inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* ==================================
   Global Image Constraints
================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Concept Section Image */
.concept-img-wrapper img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto;
}

/* ==================================
   Grid Layout for Salon & Therapist
================================== */
.grid {
  display: grid;
  gap: 30px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ==================================
   Map Button
================================== */
.btn-map {
  background: transparent;
  border: 1.5px solid #2c2825;
  color: #2c2825;
  border-radius: 25px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-map .map-icon {
  fill: #2c2825;
  transition: fill 0.3s ease;
}
.btn-map:hover {
  background: #2c2825;
  color: #ffffff;
}
.btn-map:hover .map-icon {
  fill: #ffffff;
}

/* ==================================
   Salon Grid Force
================================== */
.salon-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .salon-grid {
    grid-template-columns: 1fr !important;
  }
}
.salon-grid--single {
  grid-template-columns: 1fr !important;
  max-width: 400px !important;
}

/* ==================================
   About Us Fullwide Image
================================== */
.aboutus-image-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}
.aboutus-image-wrap img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ==================================
   NEWS Section
================================== */
.news-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.news-section .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8954f;
  margin-bottom: 8px;
}
.news-section h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c2825;
  margin-bottom: 40px;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.news-list li {
  border-bottom: 1px solid #e5dfd8;
  padding: 20px 0;
}
.news-list li:first-child {
  border-top: 1px solid #e5dfd8;
}
.news-list a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  text-decoration: none;
  color: #2c2825;
  transition: opacity 0.3s;
}
.news-list a:hover {
  opacity: 0.6;
}
.news-list time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #7a7370;
  white-space: nowrap;
  min-width: 100px;
}
.news-list .news-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2c2825;
}
.view-more-link {
  display: inline-block;
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #b8954f;
  text-decoration: none;
  transition: opacity 0.3s;
}
.view-more-link:hover {
  opacity: 0.6;
}
@media (max-width: 480px) {
  .news-list a {
    flex-direction: column;
    gap: 6px;
  }
}

/* ==================================
   Instagram Grid (Updated)
================================== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.instagram-grid a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.instagram-grid a:hover img {
  transform: scale(1.03);
}
@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }
}

/* ==================================
   Updates Requested
================================== */
/* Instagram 見出し中央揃え */
.instagram-section {
  text-align: center;
  padding: 80px 20px;
}
.instagram-section .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8954f;
  margin-bottom: 8px;
  text-align: center;
}
.instagram-section h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c2825;
  margin-bottom: 40px;
  text-align: center;
}

/* フォローボタン（Instagramグラデーション） */
.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 30px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.instagram-follow-btn:hover {
  opacity: 0.85;
}
.instagram-follow-btn svg {
  flex-shrink: 0;
}

/* RESERVATION 背景 */
.reservation-section, .section-cta {
  background: #f5f0eb !important;
  padding: 80px 20px !important;
  text-align: center !important;
}
.reservation-section h2, .section-cta h2, .section-cta__title {
  color: #2c2825 !important;
}
.reservation-section p, .section-cta p, .section-cta__text {
  color: #7a7370 !important;
}

/* Footer */
.site-footer {
  background: #2c2825;
  color: #f5f0eb;
  padding: 60px 20px 30px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #f5f0eb;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #7a7370;
}
.footer-sitemap h3,
.footer-stores h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #b8954f;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-sitemap ul,
.footer-stores ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-sitemap li,
.footer-stores li {
  margin-bottom: 10px;
}
.footer-sitemap a,
.footer-stores a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #d5cec6;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-sitemap a:hover,
.footer-stores a:hover {
  color: #b8954f;
}
.footer-sns {
  display: flex;
  gap: 16px;
  align-items: center;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #3d3835;
}
.footer-sns a {
  color: #d5cec6;
  transition: color 0.3s;
}
.footer-sns a:hover {
  color: #b8954f;
}
.footer-company {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #3d3835;
}
.footer-company p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #7a7370;
  line-height: 1.9;
}
.footer-copy {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #3d3835;
}
.footer-copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: #7a7370;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .footer-sns {
    justify-content: center;
  }
}


  .aboutus-lead p,
  .aboutus-block p {
    font-size: 14px;
  }
  .aboutus-block h3 {
    font-size: 15px;
  }
}

/* About Us (Index) */
.aboutus {
  padding: 80px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.aboutus .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8954f;
  margin-bottom: 8px;
}
.aboutus h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.8;
  color: #2c2825;
  margin-bottom: 24px;
}
.aboutus-summary {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.1;
  color: #7a7370;
  margin-bottom: 32px;
}
.aboutus-btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #b8954f;
  text-decoration: none;
  transition: opacity 0.3s;
}
.aboutus-btn:hover {
  opacity: 0.6;
}
@media (max-width: 480px) {
  .aboutus { padding: 60px 16px; }
  .aboutus h2 { font-size: 19px; }
  .aboutus-summary { font-size: 14px; }
}

/* Concept Page - About Us Full Text */
.concept-aboutus {
  padding: 100px 20px 60px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.concept-aboutus .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8954f;
  margin-bottom: 8px;
}
.concept-aboutus h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  color: #2c2825;
  margin-bottom: 40px;
}
.concept-aboutus-lead {
  max-width: 680px;
  margin: 0 auto 48px;
}
.concept-aboutus-lead p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.1;
  color: #7a7370;
  text-align: left;
}
.concept-aboutus-body {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.concept-aboutus-block {
  margin-bottom: 48px;
}
.concept-aboutus-block h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #2c2825;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid #b8954f;
}
.concept-aboutus-block p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #7a7370;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .concept-aboutus { padding: 60px 16px 40px; }
  .concept-aboutus h2 { font-size: 20px; }
  .concept-aboutus-lead p,
  .concept-aboutus-block p { font-size: 14px; }
  .concept-aboutus-block h3 { font-size: 15px; }
}

/* Menu Image Wrap */
.menu-image-wrap {
  width: 100%;
}
.menu-image-wrap img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 12px;
}

/* Contact / SNS Section */
.contact-section {
  padding: 80px 20px;
  background: #f5f0eb;
  text-align: center;
}
.contact-section .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8954f;
  margin-bottom: 8px;
}
.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #2c2825;
  margin-bottom: 20px;
}
.contact-info {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #7a7370;
  margin-bottom: 40px;
}
.contact-sns-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.sns-btn:hover {
  opacity: 0.85;
}
.sns-btn svg {
  flex-shrink: 0;
}

/* 各SNSカラー */

.sns-btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.sns-btn--youtube {
  background: #FF0000;
}
.sns-btn--tiktok {
  background: #000000;
}

@media (max-width: 480px) {
  .contact-section { padding: 60px 16px; }
  .contact-section h2 { font-size: 24px; }
  .sns-btn { font-size: 15px; padding: 14px 20px; }
}


/* Page Hero Header (ネムストレッチ風) */

.page-hero {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 40, 37, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-hero-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 8px;
}
.page-hero-overlay p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
  .page-hero {
    height: 200px;
  }
  .page-hero-overlay h1 {
    font-size: 28px;
  }
}

/* ===== Features Section ===== */
.features-section {
  padding: 100px 20px;
  background: #fff;
}
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.features-inner > .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8954f;
  margin-bottom: 8px;
}
.features-inner > h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #2c2825;
  margin-bottom: 60px;
}

/* 各Feature行 */
.feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  text-align: left;
}
.feature-item:last-child {
  margin-bottom: 0;
}
.feature-item--reverse {
  flex-direction: row-reverse;
}

/* 画像（左右どちらか） */
.feature-image {
  flex: 0 0 45%;
  max-width: 45%;
}
.feature-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* テキスト */
.feature-text {
  flex: 1;
}
.feature-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #e5dfd8;
  line-height: 1;
  margin-bottom: 10px;
}
.feature-text h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2c2825;
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #7a7370;
}

/* モバイル */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 16px;
  }
  .feature-item,
  .feature-item--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .feature-image {
    flex: none;
    max-width: 100%;
  }
  .feature-image img {
    max-width: 100%;
  }
  .feature-number {
    font-size: 32px;
  }
  .feature-text h3 {
    font-size: 16px;
  }
}

/* Override to ensure About Us stays centered */
.aboutus {
  padding: 80px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.aboutus .section-label {
  text-align: center;
}
.aboutus h2 {
  text-align: center;
}
.aboutus-summary {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.aboutus-btn {
  text-align: center;
}


/* ===== DARK THEME FIX 窶・2026-04-27 ===== */

/* --- 繝倥ャ繝繝ｼ --- */
.header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 16px 40px !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
  background-color: rgba(10, 10, 10, 0.98) !important;
  backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid #2A2A2A !important;
}

.header__logo {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.header__logo img {
  height: 40px !important;
  width: auto !important;
}

.header__nav {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  margin-left: auto !important;
}

.header__link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  color: #F5F0E8 !important;
}

.header__link:hover {
  color: #C4A265 !important;
}

.header .btn-line {
  background-color: #06C755 !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 24px !important;
  font-size: 13px !important;
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px !important;
  }
  .header__nav {
    display: none !important;
  }
}

/* --- 繝｡繝九Η繝ｼ繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ隕句・縺励し繧､繧ｺ邨ｱ荳 --- */
.menu-section h2 {
  font-size: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #F5F0E8 !important;
}

.menu-section .section-label {
  color: #C4A265 !important;
}

.menu-cat-title {
  font-size: 18px !important;
  color: #F5F0E8 !important;
}

.menu-price-list li span:first-child {
  font-size: 16px !important;
  color: #F5F0E8 !important;
}

.price-gold {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #F5F0E8 !important;
  letter-spacing: 0.03em !important;
}

/* --- 繝繝ｼ繧ｯ繝・・繝樒ｶｭ謖・--- */
body {
  background-color: #0A0A0A !important;
  color: #F5F0E8 !important;
}

.features-section {
  background: #0A0A0A !important;
}

.feature-number {
  color: #C4A265 !important;
}

.feature-text h3 {
  color: #F5F0E8 !important;
}

.feature-text p {
  color: #B0A89A !important;
}

.section-title {
  color: #F5F0E8 !important;
}

.news-section h2,
.news-list .news-title,
.news-list a {
  color: #F5F0E8 !important;
}

.news-list li {
  border-bottom-color: #2A2A2A !important;
}

.news-list li:first-child {
  border-top-color: #2A2A2A !important;
}

.news-list time {
  color: #B0A89A !important;
}

/* ===== REMAINING FIXES — 2026-04-27 ===== */

/* ========================================
   FIX 1: 黒ベース（ダークテーマ）の徹底
   ======================================== */
body {
  background-color: #0A0A0A !important;
  color: #F5F0E8 !important;
}

/* 特徴セクション */
.features-section {
  background-color: #0A0A0A !important;
}

.feature-number {
  color: #C4A265 !important;
}

.features-section h2 {
  color: #FFFFFF !important;
}

.feature-text h3 {
  color: #F5F0E8 !important;
}

.feature-text p {
  color: #B0A89A !important;
}

/* メニューセクション */
.menu-section {
  background-color: #0A0A0A !important;
  padding: 80px 20px !important;
  text-align: center !important;
}

.menu-section .section-label {
  color: #C4A265 !important;
}

.menu-section h2 {
  font-size: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  color: #F5F0E8 !important;
  font-family: 'Noto Serif JP', serif !important;
  margin-bottom: 40px !important;
}

.menu-cat-title {
  font-size: 18px !important;
  color: #F5F0E8 !important;
}

.menu-price-list li span:first-child {
  font-size: 16px !important;
  color: #F5F0E8 !important;
}

.price-gold {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #F5F0E8 !important;
}

.menu-note {
  color: #B0A89A !important;
}

/* サロンセクション */
.salon-section {
  background-color: #0A0A0A !important;
}

.salon-section h2,
.salon-section .section-title {
  color: #F5F0E8 !important;
}

.salon-section .section-lead {
  color: #B0A89A !important;
}

.card-salon__title,
.salon-card__title {
  color: #F5F0E8 !important;
}

.card-salon__area,
.salon-card__area {
  color: #B0A89A !important;
}

.card-salon__link,
.salon-card__link {
  color: #C4A265 !important;
}

/* RESERVATION セクション → 黒ベースに統一 */
.reservation-section,
.section-cta {
  background-color: #111111 !important;
}

.reservation-section h2,
.section-cta h2,
.section-cta__title {
  color: #F5F0E8 !important;
}

.reservation-section p,
.section-cta p,
.section-cta__text {
  color: #B0A89A !important;
}

/* Contact / SNS セクション → 黒ベースに統一 */
.contact-section {
  background-color: #111111 !important;
}

.contact-section h2 {
  color: #F5F0E8 !important;
}

.contact-info {
  color: #B0A89A !important;
}

/* ニュースセクション */
.news-section h2 {
  color: #F5F0E8 !important;
}

.news-list .news-title,
.news-list a {
  color: #F5F0E8 !important;
}

.news-list time {
  color: #B0A89A !important;
}

.news-list li {
  border-bottom-color: #2A2A2A !important;
}

.news-list li:first-child {
  border-top-color: #2A2A2A !important;
}

/* セクション共通 */
.section-title {
  color: #F5F0E8 !important;
}

.section-lead {
  color: #B0A89A !important;
}

/* ========================================
   FIX 2: TikTokアイコンを他のSNSと同サイズに
   ======================================== */
.contact-sns-buttons a[href*="tiktok"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 16px 24px !important;
  border-radius: 40px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #fff !important;
  background: #000000 !important;
  border: 1px solid #3A3A3A !important;
  text-decoration: none !important;
  max-width: 400px !important;
}

.contact-sns-buttons a[href*="tiktok"] svg {
  width: 24px !important;
  height: 24px !important;
}

/* ========================================
   FIX 3: コンセプトページのグレー文字 → 読みやすく
   ======================================== */
.concept-aboutus h2 {
  color: #F5F0E8 !important;
}

.concept-aboutus-lead p {
  color: #D5CFC6 !important;
}

.concept-aboutus-block h3 {
  color: #F5F0E8 !important;
}

.concept-aboutus-block p {
  color: #D5CFC6 !important;
}

.sense-num {
  color: #C4A265 !important;
}

.sense-title {
  color: #F5F0E8 !important;
}

.sense-desc {
  color: #D5CFC6 !important;
}

/* ========================================
   FIX 4: サロンページの店舗詳細カード → 黒ベースに
   ======================================== */
.salon-card,
.card-salon,
.store-card {
  background-color: #151515 !important;
  color: #F5F0E8 !important;
  border: 1px solid #2A2A2A !important;
  border-radius: 12px !important;
}

.salon-card p,
.card-salon p,
.store-card p,
.salon-card span,
.store-card span,
.salon-card td,
.store-card td {
  color: #D5CFC6 !important;
}

.salon-card strong,
.salon-card b,
.store-card strong,
.store-card b {
  color: #F5F0E8 !important;
}

.salon-card h2,
.salon-card h3,
.store-card h2,
.store-card h3 {
  color: #F5F0E8 !important;
}

/* Google Mapボタン */
.btn-map {
  border-color: #F5F0E8 !important;
  color: #F5F0E8 !important;
}

.btn-map:hover {
  background: #F5F0E8 !important;
  color: #0A0A0A !important;
}

.btn-map .map-icon {
  fill: #F5F0E8 !important;
}

.btn-map:hover .map-icon {
  fill: #0A0A0A !important;
}

/* サロン詳細ページ全体 */
.salon-detail,
.store-detail,
.store-info {
  background-color: #0A0A0A !important;
  color: #F5F0E8 !important;
}

.salon-detail p,
.salon-detail span,
.store-detail p,
.store-detail span,
.store-info p,
.store-info span {
  color: #D5CFC6 !important;
}

.salon-detail h1,
.salon-detail h2,
.salon-detail h3,
.store-detail h1,
.store-detail h2,
.store-detail h3 {
  color: #F5F0E8 !important;
}

/* ========================================
   FIX 5: フッター色統一
   ======================================== */
.site-footer {
  background-color: #050505 !important;
  color: #F5F0E8 !important;
}

/* ========================================
   FIX 6: ページヒーロー（サブページ共通）
   ======================================== */
.page-hero-overlay {
  background: rgba(0, 0, 0, 0.50) !important;
}

/* ========================================
   FIX 7: view-more, aboutus-btn リンク色
   ======================================== */
.view-more-link {
  color: #C4A265 !important;
}

/* ===== MENU TABLE FIX ===== */

.menu-price-wrapper {
  max-width: 480px !important;
  margin: 0 auto !important;
  text-align: left !important;
}

.menu-price-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-top: 1px solid #3A3A3A !important;
}

.menu-price-list li {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid #3A3A3A !important;
}

.menu-price-list li span:first-child {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #F5F0E8 !important;
  text-align: left !important;
}

.price-gold {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #F5F0E8 !important;
  text-align: right !important;
  white-space: nowrap !important;
  min-width: 80px !important;
}

.duration-sub {
  margin-left: 16px !important;
  font-size: 14px !important;
  color: #B0A89A !important;
}

.menu-cat-title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #F5F0E8 !important;
  text-align: left !important;
  margin: 40px 0 0 !important;
  padding: 0 !important;
}

.menu-section h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  color: #F5F0E8 !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}

.menu-section .section-label {
  display: none !important;
}

.menu-note {
  font-size: 12px !important;
  color: #7A7268 !important;
  text-align: center !important;
  margin-top: 16px !important;
}

.menu-price-wrapper .view-more-link {
  display: none !important;
}

/* メニュー下に予約ボタンを追加するためのスタイル */
/* メニュー下に予約ボタンをゴールドのボタンスタイルに変更 */
.menu-section .menu-reserve-btn {
  display: block !important;
  width: fit-content !important;
  margin: 40px auto 0 !important;
  padding: 14px 40px !important;
  background-color: #b8954f !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: background-color 0.3s ease !important;
  border: none !important;
  text-align: center !important;
  font-family: var(--font-jp) !important;
}

.menu-section .menu-reserve-btn:hover {
  background-color: #a07d3f !important;
}

/* ===== HERO TEXT CENTER FIX ===== */

.hero-content {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
  text-align: center !important;
  width: 90% !important;
  max-width: 700px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.hero-content .hero-sub {
  text-align: center !important;
}

.hero-content h1 {
  text-align: center !important;
}

.hero-content p {
  text-align: center !important;
}

/* メニューページのレイアウト調整（開業崩れ防止） */
.menu__header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  margin-bottom: 12px !important;
}

.menu__title {
  flex: 1 !important;
  text-align: left !important;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

.menu__price {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  text-align: right !important;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem) !important;
  font-weight: 600 !important;
}

@media screen and (max-width: 960px) {
  .menu-item-inner {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .menu-item-img {
    width: 100% !important;
    max-width: 500px !important;
  }
  .menu-item-content {
    align-self: stretch !important;
  }
  .menu__title {
    white-space: normal !important;
  }
}

@media screen and (max-width: 600px) {
  .menu__header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* FAQ アコーディオン開閉の不具合修正 */
.faq-item.active .faq-answer {
  max-height: 1000px !important;
  transition: max-height 0.4s ease-in !important;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg) !important;
}

/* ハンバーガーメニューの視認性向上 */
.hamburger span {
  background-color: #FFFFFF !important;
  height: 2px !important;
}

.hamburger.is-active span {
  background-color: #FFFFFF !important;
}

/* ===== HERO TEXT RESPONSIVE ===== */
.hero-content h1 {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 22px !important;
    line-height: 1.6 !important;
  }
  .hero-content p {
    font-size: 13px !important;
    line-height: 1.8 !important;
  }
}

/* ===== Concept Top Section ===== */
.concept-top {
  background-color: #0A0A0A;
  padding: 80px 20px 60px;
  text-align: center;
}

.concept-top__inner {
  max-width: 720px;
  margin: 0 auto;
}

.concept-top .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #C4A265;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.concept-top__title {
  font-family: 'Noto Serif JP', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #F5F0E8;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.concept-top__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #B0A89A;
  margin-bottom: 32px;
}

/* ===== 五感グリッド（5列横並び） ===== */
.sense-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 48px;
  max-width: 900px;
  width: 100%;
}

.sense-row__item {
  flex: 1;
  text-align: center;
  padding: 16px 6px;
  position: relative;
}

/* 区切り線（左ボーダー、最初以外） */
.sense-row__item + .sense-row__item {
  border-left: 1px solid #2A2A2A;
}

.sense-row__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: #C4A265;
}

.sense-row__icon svg {
  width: 100%;
  height: 100%;
}

.sense-row__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 6px;
  letter-spacing: 0.15em;
}

.sense-row__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  line-height: 1.6;
  color: #B0A89A;
  letter-spacing: 0.02em;
}

/* --- PC版：横幅を広く使う --- */
@media (min-width: 769px) {
  .sense-row {
    max-width: 1000px;
    gap: 0;
  }

  .sense-row__item {
    padding: 24px 16px;
  }

  .sense-row__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .sense-row__label {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .sense-row__desc {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* --- スマホ微調整 --- */
@media (max-width: 480px) {
  .concept-top {
    padding: 60px 16px 48px;
  }

  .concept-top__title {
    font-size: 24px;
  }

  .concept-top__lead {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .sense-row__item {
    padding: 12px 4px;
  }

  .sense-row__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .sense-row__label {
    font-size: 11px;
    margin-bottom: 4px;
    letter-spacing: 0.08em;
  }

  .sense-row__desc {
    font-size: 9px;
    line-height: 1.5;
  }
}

/* --- 極小デバイス（SE等 320px） --- */
@media (max-width: 360px) {
  .sense-row__icon {
    width: 24px;
    height: 24px;
  }

  .sense-row__label {
    font-size: 10px;
  }

  .sense-row__desc {
    font-size: 8.5px;
  }
}

/* --- タグライン --- */
.concept-top__tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #D5CFC6;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  padding: 20px 24px;
  border: 1px solid #2A2A2A;
  display: inline-block;
}

/* --- 予約ボタン --- */
.concept-top__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  margin: 0 auto 20px;
  padding: 18px 32px;
  background-color: #C4A265;
  color: #0A0A0A;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s;
}

.concept-top__cta:hover {
  background-color: #D4B275;
}

.cta-arrow {
  margin-left: 12px;
  font-size: 20px;
}

/* --- 詳しく見るリンク --- */
.concept-top__more {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #C4A265;
  text-decoration: none;
  margin-top: 16px;
  transition: opacity 0.3s;
}

.concept-top__more:hover {
  opacity: 0.6;
}

/* ===== Course Select Section ===== */
.course-select {
  background-color: #0A0A0A;
  padding: 100px 20px;
  text-align: center;
}

.course-select__inner {
  max-width: 900px;
  margin: 0 auto;
}

.course-select .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #C4A265;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.course-select__title {
  font-family: 'Noto Serif JP', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #F5F0E8;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.course-select__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #B0A89A;
  margin-bottom: 48px;
}

/* --- 2枚のカード --- */
.course-select__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.course-select__cards--single {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.course-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 36px;
  background-color: #111111;
  border: 1px solid #2A2A2A;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.course-card:hover {
  border-color: #C4A265;
  background-color: #151515;
}

.course-card__logo {
  width: 100%;
  padding: 0 24px;
  margin-bottom: 24px;
}

.course-card__logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
  background: transparent;
  mix-blend-mode: lighten;
}

.course-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #B0A89A;
  margin-bottom: 20px;
  min-height: 50px;
}

.course-card__arrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #C4A265;
  transition: opacity 0.3s;
}

.course-card:hover .course-card__arrow {
  opacity: 0.7;
}

/* --- スマホ --- */
@media (max-width: 600px) {
  .course-select {
    padding: 64px 16px;
  }

  .course-select__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course-card {
    padding: 36px 20px 28px;
  }

  .course-card__logo {
    padding: 0 16px;
  }

  .course-card__logo img {
    max-width: 220px;
  }

  .course-select__title {
    font-size: 20px;
  }
}

/* ===== ヘッダーロゴ（画像2つ横並び） ===== */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

.header__logo-divider {
  color: #3A3A3A;
  font-size: 20px;
  font-weight: 200;
  margin: 0 10px;
  line-height: 1;
  user-select: none;
}

/* --- スマホ --- */
@media (max-width: 480px) {
  .header__logo-img {
    height: 20px;
  }

  .header__logo-divider {
    font-size: 16px;
    margin: 0 6px;
  }
}

@media (max-width: 360px) {
  .header__logo-img {
    height: 16px;
  }

  .header__logo-divider {
    font-size: 14px;
    margin: 0 4px;
  }
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #C4A265;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}

/* メニューセクションのラベル表示修正 */
.menu-section {
  text-align: center;
  padding-top: 80px;
}

.menu-section .section-label {
  display: block !important;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #C4A265;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}

.menu-section h2 {
  color: #F5F0E8;
  margin-bottom: 40px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* --- CSS Scroll-Driven (Chrome/Safari/Edge) --- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
      animation: scroll-fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
    @keyframes scroll-fade-up {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* 五感アイコンのスタガー（時間差）表現 */
    .scroll-reveal-stagger:nth-child(1) { animation-range: entry 0% entry 80%; }
    .scroll-reveal-stagger:nth-child(2) { animation-range: entry 5% entry 85%; }
    .scroll-reveal-stagger:nth-child(3) { animation-range: entry 10% entry 90%; }
    .scroll-reveal-stagger:nth-child(4) { animation-range: entry 15% entry 95%; }
    .scroll-reveal-stagger:nth-child(5) { animation-range: entry 20% entry 100%; }

    .scroll-reveal-stagger {
      animation: scroll-fade-up linear both;
      animation-timeline: view();
    }
  }
}

/* --- JS Fallback用（IntersectionObserver） --- */
@supports not (animation-timeline: view()) {
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .scroll-reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .scroll-reveal-stagger.is-visible { opacity: 1; transform: translateY(0); }
  .scroll-reveal-stagger.is-visible:nth-child(1) { transition-delay: 0.0s; }
  .scroll-reveal-stagger.is-visible:nth-child(2) { transition-delay: 0.1s; }
  .scroll-reveal-stagger.is-visible:nth-child(3) { transition-delay: 0.15s; }
  .scroll-reveal-stagger.is-visible:nth-child(4) { transition-delay: 0.2s; }
  .scroll-reveal-stagger.is-visible:nth-child(5) { transition-delay: 0.25s; }
}

/* prefers-reduced-motion ユーザーは即時表示 */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   SECTION GOLD DIVIDER
   ============================================ */
.section-divider {
  width: 0;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #C4A265, transparent);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-divider {
      animation: divider-expand linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
    @keyframes divider-expand {
      from { width: 0; }
      to { width: 60%; }
    }
  }
}

@supports not (animation-timeline: view()) {
  .section-divider.is-visible {
    width: 60%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider {
    width: 60% !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   SECTION LABEL GOLD GLOW
   ============================================ */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-label {
      animation: label-glow linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
    @keyframes label-glow {
      from {
        text-shadow: 0 0 0px transparent;
        opacity: 0.4;
      }
      to {
        text-shadow: 0 0 20px rgba(196,162,101,0.3), 0 0 40px rgba(196,162,101,0.1);
        opacity: 1;
      }
    }
  }
}

@supports not (animation-timeline: view()) {
  .section-label {
    text-shadow: 0 0 0px transparent;
    transition: text-shadow 1.5s ease, opacity 1s ease;
    opacity: 0.4;
  }
  .section-label.is-visible {
    text-shadow: 0 0 20px rgba(196,162,101,0.3), 0 0 40px rgba(196,162,101,0.1);
    opacity: 1;
  }
}

/* ============================================
   FLOATING RESERVE BUTTON (FAB)
   ============================================ */
.fab-reserve {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #C4A265;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 4px 24px rgba(196,162,101,0.35);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.fab-reserve.is-shown {
  opacity: 1;
  pointer-events: auto;
}
.fab-reserve:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(196,162,101,0.55);
  color: #0A0A0A;
  text-decoration: none;
}
.fab-reserve__text {
  line-height: 1;
}

@media (max-width: 480px) {
  .fab-reserve {
    width: 52px;
    height: 52px;
    font-size: 11px;
    bottom: 16px;
    right: 16px;
  }
}

/* ============================================
   MID-PAGE CTA (Features後)
   ============================================ */
.mid-cta {
  text-align: center;
  padding: 48px 20px;
  background: #0A0A0A;
}
.mid-cta__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: #B0A89A;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.mid-cta__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #C4A265;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: opacity 0.3s;
  border-bottom: 1px solid rgba(196,162,101,0.3);
  padding-bottom: 2px;
}
.mid-cta__link:hover {
  opacity: 0.7;
}


.hero__title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }
}

.sense-row__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sense-row__icon i {
  font-size: 36px;
  color: #C4A265;
}
@media (min-width: 769px) {
  .sense-row__icon i {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .sense-row__icon i {
    font-size: 30px;
  }
}

/* ============================================
   CONCEPT BACKGROUND IMAGE
   ============================================ */
.concept-bg {
  position: relative;
  overflow: hidden;
}

.concept-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=gdlf9GlME8c74VkmW2KYjfZvovchTLQARhQEL9QDhAsl3JHcnZd3QMebPj4K%2FK04eN37S%2FZRcGv9I97ZW2TVZiMF0x0zcoEXSj1S8GqYYjyytWFSx0uesw%3D%3D&u2=x9jCPIclD1A9x4Uf&width=1024');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.concept-bg > * {
  position: relative;
  z-index: 1;
}