@charset "utf-8";


/* トップページ専用 */
.hero {
  position: relative;
  width: 100%;
  margin-top: 100px;
}
.hero-bg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* バナーセクション */
.banner-section { padding: 60px 20px; background-color: #fff; }
.banner-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.banner-item { flex: 1 1 calc(50% - 20px); max-width: 500px; display: block; }
.banner-item img { display: block; width: 100%; height: auto; }

/* ニュースセクション */
.news-section {
  padding: 20px 20px 60px 20px;
  background-color: var(--color-bg-light);
  text-align: center;
}

.news-section .section-heading {
  margin-bottom: 40px;
}

.news-section .section-heading .catch-copy {
  font-family: var(--font-en-title);
  font-size: var(--font-size-xxl);
  letter-spacing: var(--ls-wide);
  color: var(--color-bg-dark);
}

.news-section .section-heading .section-sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: #666;
  margin-top: 4px;
}

/* 横並びリスト */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.news-item {
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s;
}
.news-item:hover {
  transform: translateY(-4px);
}

.news-item a {
  color: inherit;
  text-decoration: none;
}

.news-thumb {
  display: block;
  width: 100%;
  height: auto;
}

.news-body {
  padding: 16px;
}

.news-date {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: #999;
  margin-bottom: 8px;
}

.news-excerpt {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: var(--lh-loose);
  color: #333;
}

/* "more" ボタン */
.news-more {
  text-align: center;
}

.btn-more {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: var(--font-size-xl);
  padding: 3px 40px;
  background-color: var(--color-bg-mid);
  color: #000;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s;
}
.btn-more:hover {
  background-color: var(--color-bg-deep);
  color: #fff;
}

/* ── Clinic セクション ── */
.clinic-section {
  padding: 80px 0px;
  background-color: var(--color-bg-base);
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom:100px;
}

/* キャッチコピー */
.clinic-catch-copy {
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  line-height: var(--lh-tight);
  margin: 0;
}
.clinic-catch-copy span {
  color: var(--color-bg-deep-key);
}

/* サブテキスト */
.clinic-subtext {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  color: #333;
  margin: 12px 0 40px;
}

/* 「KIRARIEの特徴」タイトル画像 */
.clinic-features-title {
  display: block;
  max-width: 240px;
  width: 100%;
  margin: 0 auto 40px;
}

/* 特徴グリッド */
.clinic-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

/* 各特徴アイテム */
.feature-item {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s;
}
.feature-item:hover {
  transform: translateY(-4px);
}

/* アイコン */
.feature-icon {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
}

/* タイトル */
.feature-title {
  font-family: var(--font-catch);
  font-size: var(--font-size-lg);
  color: var(--color-bg-deep-key);
  margin: 8px 0;
}

/* 説明文 */
.feature-desc {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: #333;
  line-height: var(--lh-loose);
  margin: 0;
}

/* 写真ツアー部分 */
.clinic-photo-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.clinic-photo-icon {
  width: 24px;
  height: auto;
}
.clinic-photo-text {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  margin: 0;
  text-align: left;
}
.clinic-photo-text a {
  color: var(--color-bg-mid);
  text-decoration: none;
}

/* more ボタン（再利用） */
.clinic-more .btn-more {
  margin-top: 0;
  margin-bottom: 0;
}

/* ── Doctor セクション ── */
.doctor-section {
  padding: 100px 20px 60px;
  background-color: var(--color-bg-light);
}

/* 横並びラッパー（折り返しOFF） */
.doctor-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;        /* ← wrap を無効化 */
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ドクターボックス背景 */
.doctor-box {
  position: relative;
  background-color: var(--color-bg-light-key); /* ← 変更 */
  padding: 80px 40px 40px;
  max-width: 900px;
  text-align: left;
}

/* ドクター写真 */
.doctor-photo {
  flex-shrink: 0;
  width: 240px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* キャッチコピー（ボックスからはみ出し） */
.doctor-catch {
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  line-height: var(--lh-tight);
  margin: 0;
  color: var(--color-bg-dark);
  letter-spacing: 0.1em;
}

/* キャッチ内ハイライト */
.doctor-catch .highlight {
  color: var(--color-bg-deep-key);
}

/* リードテキスト */
.doctor-text {
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-size: var(--font-size-m);
  line-height: var(--lh-loose);
  color: #333;
}

/* ドクター用 “more” ボタン */
.doctor-box .btn-more {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: var(--font-size-xl);
  padding: 3px 40px;
  background-color: var(--color-bg-deep-key);  /* ピンク */
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s;
}
.doctor-box .btn-more:hover {
  background-color: var(--color-bg-deep-key-dark);
}

/* モバイル時は縦並びに戻す */
@media (max-width: 767px) {
  .doctor-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .doctor-box {
    padding: 60px 20px 20px;
  }
  .doctor-catch {
    left: 20px;
    font-size: var(--font-size-xl);
  }
  .doctor-photo {
    width: 200px;
    margin-bottom: 24px;
  }
}

/* ── 施術メニューセクション ── */
.menu-section {
  padding: 80px 20px;
  background-color: var(--color-bg-light);
  text-align: center;
}

/* 見出し */
.menu-section .section-heading {
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  margin-bottom: 24px;
}
.menu-section .section-heading .highlight {
  color: var(--color-bg-deep-key);
}

/* サブタイトル */
.menu-subtitle {
  font-family: var(--font-catch);
  font-size: var(--font-size-lg);
  margin: 40px 0 16px;
}

/* グリッド */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* アイテム */
.menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .3s;
  text-decoration: none;
}
.menu-item:hover {
  transform: translateY(-4px);
}

/* 画像 */
.menu-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* タイトル帯 */
.menu-title {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  background: rgba(255,255,255,0.8);
  font-family: var(--font-catch);
  font-size: var(--font-size-md);
  color: var(--color-bg-dark);
}

/* ── メニューアイテムのサムネイルを同じ大きさに揃える */
.menu-item img {
  display: block;
  width: 100%;
  /* 高さはお好みで調整してください（例：150px） */
  height: 180px;
  object-fit: cover;
}

/* ── 料金セクション ── */
.price-section {
  padding: 80px 0px;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.price-section .section-heading {
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  margin-bottom: 40px;
}

/* ボタンラッパー */
.price-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: 4%;
}

/* 各ボタン */
.price-btn {
  display: inline-block;
  width: 48%;
  padding: 60px 0;
  font-family: var(--font-catch);
  font-size: var(--font-size-lg);
  color: var(--color-bg-dark);
  text-decoration: none;
  border-radius: 4px;
}

/* 左：歯科＝緑 */
.price-btn.price-dental {
  background-color: var(--color-bg-base);
}

/* 右：美容外科・皮膚科＝ピンク（ライトキー） */
.price-btn.price-beauty {
  background-color: var(--color-bg-light-key);
}

/* モバイル時：100%幅 */
@media (max-width: 767px) {
  .price-btn {
    width: 100%;
    margin-bottom: 16px;
  }
}

