/* リセット */
body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ====== Hero Section ====== */
.hero {
    height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1200&q=60");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-inner {
    color: #fff;
    max-width: 700px;
}

/* タイトル */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;  /* ここはそのままでOK */
  max-width: 700px;
  margin: 0 auto;
  white-space: nowrap;   /* ★ この1行を追加 */
}

/* サブ */
.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 28px;
    margin: 5px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

/* メインボタン（Web予約） */
.btn.primary {
    background-color: #ffffff;
    color: #333;
    font-weight: bold;
}

/* LINEボタン */
.btn.line {
    background-color: #06C755;
    color: #fff;
}

/* hover */
.btn:hover {
    opacity: 0.8;
}

/* ====== スマホ表示 ====== */
@media (max-width: 600px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-sub {
        font-size: 1rem;
    }
}
/* 共通レイアウト */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.section-lead {
  text-align: center;
  font-size: 16px;
  color: #f5f5f5;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* コンセプトセクション */
.concept {
  background: #0f172a; /* ヒーローの雰囲気に合わせた濃いめ背景 */
  color: #fff;
}

.concept-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.concept-text {
  flex: 1;
  line-height: 1.8;
  font-size: 15px;
}

.concept-text h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.concept-photo {
  flex: 1;
}

.concept-photo img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .hero-title {
    white-space: normal;  /* スマホでは普通に折り返してOK */
    font-size: 2rem;      /* ちょっと小さめでも可。好みで調整 */
  }
  .section-inner {
    padding: 56px 20px;
  }

  .concept-grid {
    flex-direction: column;
  }

  .concept-text {
    order: 2; /* 写真→テキストの順にしたければ 2 に */
  }

  .concept-photo {
    order: 1;
  }
}
/* メニュー・料金 */
.menu {
  background: #ffffff;
  color: #333;
}
.section-lead {
  font-size: 16px;
  color: #666;        /* 少し濃いグレーに変更 */
  text-align: center;
  margin-top: 8px;
  margin-bottom: 40px;
  opacity: 1;         /* 薄すぎる場合は削除 or 1に */
}

.menu-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}
.menu-card {
  background: #f7f9fc;  /* 青みの白 */
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(46, 90, 136, 0.08); /* 青系の薄い枠 */
  box-shadow: 0 8px 20px rgba(46, 90, 136, 0.08); /* 青系の影 */
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(46, 90, 136, 0.12);
}

.menu-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2e5a88; /* タイトルを青に */
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #19242e; /* 高級感のある水色 */
  margin-bottom: 6px;
}

.desc {
  font-size: 14px;
  color: #19242e; /* ダークネイビー */
  opacity: 0.8;
}


/* スマホ対応 */
@media (max-width: 768px) {
  .menu-list {
    grid-template-columns: 1fr;
  }
}
/* -----------------------------
   こだわりポイント
----------------------------- */

.features {
  background: #f4f7fb;           /* うっすら青グレー */
}

.features .section-title {
  color: #16324f;                /* 濃いめネイビー */
}

.features .section-lead {
  color: #4e647f;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(10, 35, 70, 0.08);
  border-top: 4px solid #2f5fa8; /* 青のアクセント */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 35, 70, 0.16);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #1b3659;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  line-height: 1.8;
  color: #5c6d80;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px 18px;
  }
}
/* スタイリスト紹介 */
.stylist-section {
  padding: 80px 0;
  background: #f4f7fb; /* 少し青みのあるホワイトで大人っぽく */
  text-align: center;
}

.stylist-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 20px;
}

/* カード */
.stylist-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 20, 60, 0.08); /* 青系の影で上品に */
  transition: 0.3s ease;
}

.stylist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 20, 60, 0.12);
}

/* イニシャルロゴ */
.stylist-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfe7ee, #f7fbff); /* 大人っぽい淡い青系 */
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 64px;
  font-family: 'Playfair Display', serif;  /* 高級感フォント */
  font-weight: 700;
  color: #324b73; /* 濃い青で品良く */

  box-shadow: 0 10px 25px rgba(0, 40, 80, 0.15);
}



/* 名前 */
.stylist-name {
  font-size: 22px;
  font-weight: 700;
  color: #0d2a4d; /* 深い青 */
  margin-bottom: 4px;
}

/* 役職 */
.stylist-role {
  font-size: 14px;
  color: #537a9c; /* 柔らかいブルーグレー */
  margin-bottom: 15px;
}

/* 説明 */
.stylist-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #334a62; /* 読みやすい青みグレー */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .stylist-list {
    grid-template-columns: 1fr;
  }
}
/* ============================
   ギャラリー
============================ */

.gallery-section {
  padding: 80px 0;
  background: #f4f7fb; /* ほんのり青みのホワイト */
  text-align: center;
}

.gallery-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 0 20px;
}

.gallery-list img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 380px;
  box-shadow: 0 6px 18px rgba(0, 20, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-list img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 20, 60, 0.15);
}
/* お客様の声 */
.voice-section {
  padding: 80px 0;
  background: #f2f6fb; /* ほんのり青みのグレー */
  text-align: center;
}

.voice-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.voice-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 30, 60, 0.08);
  text-align: left;
}

.voice-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.voice-name {
  text-align: right;
  font-size: 14px;
  color: #44607d; /* 青グレーで上品に */
  font-weight: 600;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .voice-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ======================
   FAQ
====================== */
.faq-section {
  padding: 80px 0;
  background: #f4f7fb;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 20, 60, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: #23395d;
  text-align: left;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.faq-icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  font-weight: 700;
  color: #4d89ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer.open {
  max-height: 400px;
  margin-top: 12px;
}

.faq-answer p {
  color: #44546a;
  line-height: 1.7;
}


/* アクセス */
.access-section {
  background: #ffffff;
  color: #333;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.access-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.access-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.access-title {
  font-size: 20px;
  font-weight: bold;
}

.access-text {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== フッター ========== */
.footer {
  background: linear-gradient(135deg, #e9f2ff, #d8e7ff); /* くすみ青グラデで上品に */
  padding: 50px 20px;
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid rgba(0, 40, 70, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #213a63;  /* 深い青 */
  font-family: "Playfair Display", serif;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-nav a {
  color: #35557c;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s;
}

.footer-nav a:hover {
  color: #0b3a68;
}

.footer-sns a {
  font-size: 28px;
  color: #35557c;
  transition: 0.3s;
}

.footer-sns a:hover {
  color: #0b3a68;
}

.footer-copy {
  margin-top: 25px;
  font-size: 13px;
  color: #56708a;
}
/* =========================
   フッター
========================= */
.footer {
  background: #0f172a;       /* 濃いネイビー */
  color: #e5edf7;
  padding: 40px 20px 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-link {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* LINEボタン（フッター版） */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #06c755;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn-line:hover {
  filter: brightness(1.05);
}

/* Instagramアイコン */
.sns-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #e5edf7;
  stroke-width: 1.7;
}

.sns-icon:hover svg {
  stroke: #ffffff;
}

.footer-copy {
  font-size: 12px;
  color: #9ca3b9;
}



/* スマホだけ表示 */
@media (max-width: 768px) {
  .fixed-footer {
    display: flex;
  }

  /* 下に固定フッターがかぶらないよう、body下に余白を足す */
  body {
    padding-bottom: 70px;
  }
}
/* ========================
   GALLERY MODAL
======================== */

body.is-modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
}

.gallery-modal__content {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  max-width: 90vw;
  max-height: 80vh;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gallery-modal__image {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 12px;
  object-fit: cover;
}

.gallery-modal__caption {
  font-size: 14px;
  color: #555;
}

.gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

/* サムネも少しそれっぽく */
.gallery-thumb {
  width: 100%;
  display: block;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}


