@charset "UTF-8";

/* ============================================================
   Reset / Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 210px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================================================
   Variables
   ============================================================ */
:root {
  --color-main: #004080;
  --color-text: #333;
  --color-border: #d9d9d9;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header.no-transition,
.site-header.no-transition * {
  transition: none !important;
}

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-header__top {
  display: grid;
  grid-template-columns: 1fr minmax(140px, 380px) 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.site-header__logo {
  margin: 0;
  line-height: 1;
}

.site-header__logo a {
  display: inline-block;
}

.site-header__logo img {
  display: block;
  height: 60px;
  width: auto;
}

.site-header__info {
  display: flex;
  flex-direction: column;
  justify-self: end;
  justify-content: center;
  gap: 2px;
  min-height: 60px;
}

.site-header__address {
  margin: 0;
  color: #555;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__tel {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-main);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  pointer-events: auto;
}

.site-header__tel-label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.site-header__tel-number {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 140px;
  width: 100%;
  max-width: 380px;
  height: 44px;
  padding: 0 28px;
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}

.site-header__reserve:hover {
  opacity: 0.85;
}

/* ハンバーガーボタン（PCでは非表示。≤960px でドロワー開閉に使用） */
.site-header__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-header__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* 開いているとき：3本線を×に */
.site-header.is-nav-open .site-header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-header__nav {
  /* border-top: 1px solid var(--color-border); */
}

.site-header__nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.site-header__nav-item {
  flex: 1;
  display: flex;
  position: relative;
}

.site-header__nav-item+.site-header__nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background-color: var(--color-main);
}

.site-header__nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  margin: 10px;
  color: var(--color-main);
  border-radius: 8px;
  transition: background-color 0.2s ease, padding 0.3s ease, gap 0.3s ease;
}

.site-header.is-scrolled .site-header__nav-link {
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 0;
}

.site-header__nav-link:hover {
  background-color: #deedf8;
}

.site-header__nav-icon {
  width: 44px;
  height: 44px;
  max-height: 44px;
  object-fit: contain;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 8px;
  transition: opacity 0.5s ease, max-height 0.5s ease, margin-bottom 0.5s ease;
}

.site-header.is-scrolled .site-header__nav-icon {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
}

.site-header__nav-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* ============================================================
   Hero（ファーストビュー）
   ============================================================ */
.hero {
  padding: 35px;
  background-color: #fff;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.55) 35%,
      rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

.hero__slide.is-zooming .hero__slide-img {
  animation: hero-zoom 10s ease-out forwards;
}

.hero__content {
  position: relative;
  z-index: 3;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Noto Serif JP", "Yu Mincho", "游明朝", serif;
}

.hero__title {
  margin: 0 0 32px;
  color: var(--color-main);
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.hero__lead {
  margin: 0;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ============================================================
   CTA（診療相談 / 初めての方へ）
   ============================================================ */
.cta {
  background-color: #fff;
}

.cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cta__btn {
  flex: 1;
  max-width: 420px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 24px;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cta__btn--primary {
  background-color: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
}

.cta__btn--primary:hover {
  opacity: 0.88;
}

.cta__btn--secondary {
  background-color: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}

.cta__btn--secondary:hover {
  background-color: var(--color-main);
  color: #fff;
}

/* ============================================================
   News（お知らせ）
   ============================================================ */
.news {
  background-color: #fff;
  padding: 80px 40px;
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 40px;
  min-width: 0;
}

.news__header {
  padding-top: 8px;
  min-width: 0;
}

.news__title {
  margin: 0 0 8px;
  color: var(--color-main);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.news__subtitle {
  margin: 0;
  color: #888;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.news__list {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news__item {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  min-width: 0;
}

.news__item:first-child {
  padding-top: 8px;
}

.news__date {
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  white-space: nowrap;
}

.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background-color: #dde6f2;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.5;
  max-width: 100%;
}

.news__text {
  display: block;
  margin: 0;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  min-width: 0;
  overflow-wrap: anywhere;
}

a.news__text:hover {
  color: var(--color-main);
  text-decoration: underline;
}

/* ============================================================
   Section Header（共通セクションタイトル）
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__title {
  margin: 0 0 8px;
  color: var(--color-main);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.section-header__subtitle {
  margin: 0;
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

/* ============================================================
   共通ボタン（アウトライン）
   ============================================================ */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 56px;
  padding: 0 32px;
  background-color: #fff;
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--color-main);
  color: #fff;
}

/* ============================================================
   Features（当院の特徴）
   ============================================================ */
.features {
  background-color: #f8fafc;
  padding: 80px 40px 60px;
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

/* 上段：2枚を中央寄せで配置（空きカラム1 / カード2col / カード2col / 空きカラム1） */
.features__grid>.feature-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.features__grid>.feature-card:nth-child(2) {
  grid-column: 4 / span 2;
}

/* 下段：3枚を均等配置 */
.features__grid>.feature-card:nth-child(3) {
  grid-column: 1 / span 2;
}

.features__grid>.feature-card:nth-child(4) {
  grid-column: 3 / span 2;
}

.features__grid>.feature-card:nth-child(5) {
  grid-column: 5 / span 2;
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.feature-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card__body {
  flex: 1;
  padding: 28px 28px 32px;
}

.feature-card__title {
  margin: 0 0 16px;
  color: var(--color-main);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.feature-card__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* カード背景色（パステル） */
.feature-card--green {
  background-color: #F6FFF6;
}

.feature-card--pink {
  background-color: #FFF3F2;
}

.feature-card--mint {
  background-color: #F0FFFF;
}

.feature-card--cream {
  background-color: #FFF7EC;
}

.feature-card--lavender {
  background-color: #FAF3FF;
}

.features__btn-wrap {
  text-align: center;
  margin-top: 48px;
}

.features__compliance {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 32px 40px 0;
  border-top: 1px solid #e5e5e5;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.9;
}

.features__compliance-lead {
  margin: 0 0 12px;
}

.features__compliance-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.features__compliance-list li {
  position: relative;
  padding-left: 14px;
}

.features__compliance-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.features__compliance-note {
  margin: 0;
}

.features__compliance-note+.features__compliance-note {
  margin-top: 2px;
}

/* ============================================================
   Greeting（院長挨拶）
   ============================================================ */
.greeting {
  position: relative;
  padding: 100px 40px;
  background-color: #e8eaed;
  background-image: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)), var(--greeting-bg);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  overflow: hidden;
}

.greeting__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.greeting__image {
  display: flex;
  justify-content: center;
}

.greeting__image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.greeting__content {
  text-align: left;
}

.greeting__title {
  margin: 0 0 36px;
  color: var(--color-main);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.greeting__text {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.greeting__text:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Hours（診療時間）
   ============================================================ */
.hours {
  background-color: #f8fafc;
  padding: 80px 40px;
}

.hours__inner {
  max-width: 900px;
  margin: 0 auto;
}

.hours__card {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 40px;
}

.hours__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hours__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #dcdfe3;
}

.hours__table thead .hours__th-time,
.hours__table tbody .hours__row-time {
  width: 200px;
  white-space: nowrap;
}

.hours__table thead th {
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hours__table thead th:last-child {
  border-right: none;
}

.hours__table thead .hours__th-time {
  font-size: 1.6rem;
}

.hours__table tbody th,
.hours__table tbody td {
  padding: 24px 8px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  font-weight: 500;
}

.hours__table tbody td:last-child,
.hours__table tbody th:last-child {
  border-right: none;
}

.hours__table tbody tr:last-child th,
.hours__table tbody tr:last-child td {
  border-bottom: none;
}

.hours__row-time {
  color: var(--color-text);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.hours__mark {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1;
}

.hours__mark--open,
.hours__mark--partial {
  color: var(--color-main);
}

.hours__mark--close {
  color: #bbb;
}

.hours__notes {
  margin-top: 28px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--color-text);
}

.hours__note {
  margin: 0 0 8px;
}

.hours__note-mark {
  color: var(--color-main);
  font-weight: 500;
}

.hours__note strong {
  font-weight: 700;
}

.hours__closed {
  margin: 0 0 16px;
  color: #d0342c;
  font-weight: 700;
  font-size: 1.4rem;
}

.hours__list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #666;
  font-size: 1.3rem;
  line-height: 1.9;
}

.hours__list li {
  position: relative;
  padding-left: 14px;
}

.hours__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.hours__contact {
  background-color: var(--color-main);
  border-radius: 0 0 10px 10px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hours__contact-info {
  color: #fff;
}

.hours__contact-label {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.hours__contact-tel {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hours__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 64px;
  padding: 0 32px;
  background-color: #eab13a;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(234, 177, 58, 0.45);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.hours__contact-btn:hover {
  opacity: 0.92;
  box-shadow: 0 0 28px rgba(234, 177, 58, 0.6);
}

/* ============================================================
   Treatments（治療メニュー）
   ============================================================ */
.treatments {
  background-color: #fff;
  padding: 80px 40px;
}

.treatments__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.treatment-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background-color: #ecf2fa;
  border-radius: 10px;
  color: var(--color-text);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 64, 128, 0.08);
}

.treatment-card__icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.treatment-card__body {
  flex: 1;
  min-width: 0;
}

.treatment-card__title {
  margin: 0 0 6px;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.treatment-card__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.6;
}

.treatment-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 36px;
  background-color: var(--color-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  border-top-left-radius: 8px;
}

/* ============================================================
   Pamphlets（パンフレット掲載）
   ============================================================ */
.pamphlets {
  background-color: #f8fafc;
  padding: 80px 40px;
}

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

.pamphlets__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.pamphlet-card {
  display: block;
  width: 100%;
  max-width: 380px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.pamphlet-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.pamphlet-card--left {
  transform: rotate(-4deg);
}

.pamphlet-card--right {
  transform: rotate(4deg);
}

.pamphlet-card:hover {
  transform: rotate(0deg);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.22));
  cursor: zoom-in;
}

/* パンフレット拡大モーダル */
.pamphlet-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: pamphlet-modal-fade 0.25s ease;
}

.pamphlet-modal[hidden] {
  display: none;
}

@keyframes pamphlet-modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.pamphlet-modal__image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: pamphlet-modal-zoom 0.25s ease;
}

@keyframes pamphlet-modal-zoom {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pamphlet-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pamphlet-modal__close:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

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

/* ============================================================
   Staff Blog（スタッフブログ）
   ============================================================ */
.staff-blog {
  background-color: #fff;
  padding: 80px 40px;
}

.staff-blog__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.staff-blog__feed {
  width: 100%;
}

.staff-blog__feed .fw-iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ============================================================
   Features Page（当院の特徴ページ）
   ============================================================ */
.features-page {
  background-color: #fff;
}

.features-page__header {
  padding: 100px 40px 60px;
  background: linear-gradient(180deg, #dfeaf6 0%, #eef4fb 45%, #f7fafd 80%, #ffffff 100%);
}

.features-page__blocks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-block--image-right .feature-block__image {
  order: 2;
}

.feature-block__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.feature-block__badge {
  display: inline-block;
  padding: 6px 20px;
  background-color: #e89f47;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 999px;
  margin-bottom: 20px;
}

.feature-block__title {
  margin: 0 0 24px;
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.feature-block__description {
  margin: 0;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.feature-block__list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-block__list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.7;
}

.feature-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background-color: #e89f47;
  border-radius: 50%;
}

.feature-block__highlight {
  margin: 24px 0 0;
  padding: 20px 24px;
  background-color: #eef4fb;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.feature-block__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.feature-block__card {
  padding: 20px 16px;
  background-color: #f5f7fa;
  border-radius: 8px;
  text-align: center;
}

.feature-block__card-label {
  display: block;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.feature-block__card-text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.7;
}

.feature-block__info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.feature-block__info-card {
  padding: 18px 16px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
}

.feature-block__info-label {
  display: block;
  color: #888;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.feature-block__info-value {
  display: block;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   Clinic Page（医院案内ページ）
   ============================================================ */
.clinic-page {
  background-color: #fff;
}

.clinic-page__header {
  padding: 100px 40px 60px;
  background: linear-gradient(180deg, #dfeaf6 0%, #eef4fb 45%, #f7fafd 80%, #ffffff 100%);
}

/* 院長あいさつ */
.director-greeting {
  padding: 80px 40px 100px;
}

.director-greeting__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 80px;
  align-items: start;
}

.director-greeting__profile {
  position: sticky;
  top: 180px;
}

.director-card {
  background-color: #fff;
  border: 1px solid #e6ecf3;
  border-radius: 14px;
  padding: 28px 24px 32px;
  box-shadow: 0 6px 24px rgba(0, 64, 128, 0.06);
}

.director-card__photo {
  aspect-ratio: 4 / 5;
  background-color: #f1f5fa;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.director-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.director-card__body {
  text-align: center;
}

.director-card__role {
  margin: 0 0 10px;
  color: #666;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.director-card__name {
  margin: 0 0 6px;
  color: var(--color-main);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.director-card__name-en {
  margin: 0;
  color: #888;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.director-greeting__main {
  padding-top: 8px;
}

/* .director-greeting__label {
  margin: 0 0 20px;
  color: #666;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.25em;
} */

.director-greeting__title {
  margin: 0 0 40px;
  color: var(--color-main);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.director-greeting__body p {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.director-greeting__body p:last-child {
  margin-bottom: 0;
}

.director-greeting__meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.director-meta__heading {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.director-meta__heading::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-main);
}

.director-meta__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.director-meta__list li {
  position: relative;
  padding-left: 16px;
}

.director-meta__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 医院情報 */
.clinic-info {
  padding: 40px 40px 100px;
  background-color: #eef4fb;
}

.clinic-info__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.clinic-info .section-header {
  margin-bottom: 40px;
}

.clinic-info .section-header__title,
.clinic-access .section-header__title {
  display: inline-block;
  padding-bottom: 14px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #e89f47;
}

.clinic-info__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.clinic-info__photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background-color: #fff;
}

.clinic-info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clinic-info__card {
  background-color: #fff;
  border-radius: 20px;
  padding: 56px 64px;
  box-shadow: 0 8px 28px rgba(0, 64, 128, 0.06);
}

.clinic-info__list {
  margin: 0 0 56px;
}

.clinic-info__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
  min-width: 0;
}

.clinic-info__row:last-child {
  border-bottom: none;
}

.clinic-info__row dt {
  color: #555;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.clinic-info__row dd {
  margin: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  min-width: 0;
}

.clinic-info__row--schedule .hours__note {
  margin-top: 14px;
}

/* ============================================================
   Treatments Page（診療案内ページ）
   ============================================================ */
.treatments-page {
  background-color: #fff;
}

.treatments-page__header {
  padding: 100px 40px 60px;
  background: linear-gradient(180deg, #dfeaf6 0%, #eef4fb 45%, #f7fafd 80%, #ffffff 100%);
}

/* Quick Navigation */
.treatments-nav {
  background-color: #f8fafc;
  padding: 48px 40px;
}

.treatments-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.treatments-nav__label {
  margin: 0 0 24px;
  color: var(--color-main);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.treatments-nav__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.treatments-nav__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  background-color: #fff;
  border: 1px solid #e6ecf3;
  border-radius: 12px;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.treatments-nav__card:hover {
  transform: translateY(-2px);
  border-color: var(--color-main);
  box-shadow: 0 6px 16px rgba(0, 64, 128, 0.08);
}

.treatments-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

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

.treatments-nav__name {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Blocks */
.treatments-page__blocks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.treatment-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.treatment-block--image-right .treatment-block__image {
  order: 2;
}

.treatment-block__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.treatment-block__label {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.treatment-block__label::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #e89f47;
}

.treatment-block__title {
  margin: 0 0 24px;
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.treatment-block__title--sm {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.treatment-block__description {
  margin: 0;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

/* 症状リスト（一般歯科） */
.treatment-symptoms {
  margin-top: 24px;
  padding: 22px 26px;
  background-color: #eef4fb;
  border-radius: 10px;
}

.treatment-symptoms__heading {
  margin: 0 0 10px;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.treatment-symptoms__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.treatment-symptoms__list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.7;
}

.treatment-symptoms__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--color-main);
  border-bottom: 2.5px solid var(--color-main);
  transform: rotate(-45deg);
}

/* サブカード（歯周病治療） */
.treatment-subcards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.treatment-subcard {
  padding: 18px 22px;
  background-color: #eef4fb;
  border-radius: 999px;
}

.treatment-subcard__title {
  margin: 0 0 4px;
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.treatment-subcard__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.6;
}

/* 2カラムカード（小児歯科・予防歯科） */
.treatment-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.treatment-pair__card {
  background-color: #fff;
  border: 1px solid #e6ecf3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 64, 128, 0.04);
}

.treatment-pair__image {
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.treatment-pair__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-pair__body {
  padding: 32px 32px 36px;
}

/* シンプルな箇条書き（小児歯科） */
.treatment-bullets {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #666;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
}

.treatment-bullets li {
  position: relative;
  padding-left: 14px;
}

.treatment-bullets li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 予防歯科のクリーム色ノート */
.treatment-note {
  margin-top: 20px;
  padding: 16px 20px;
  background-color: #fff7ec;
  border-radius: 8px;
}

.treatment-note__label {
  margin: 0 0 4px;
  color: #c58d32;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.treatment-note__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.7;
}

/* インプラントの破線ボーダー枠 */
.treatment-feature {
  margin-top: 24px;
  padding: 18px 24px;
  border: 1px dashed var(--color-main);
  border-radius: 10px;
  text-align: center;
}

.treatment-feature__title {
  margin: 0 0 6px;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
}

.treatment-feature__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.7;
}

/* 口腔外科のピルラベル強調 */
.treatment-surgery {
  margin-top: 24px;
  padding: 20px 24px;
  background-color: #f5f7fa;
  border-radius: 10px;
  border-left: 4px solid var(--color-main);
}

.treatment-surgery__heading {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.05em;
}

.treatment-surgery__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.treatment-surgery__list li {
  position: relative;
  padding-left: 16px;
  font-size: 1.35rem;
  color: var(--color-text);
  line-height: 1.6;
}

.treatment-surgery__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-main);
}

.treatment-surgery__referral {
  padding: 12px 16px;
  background-color: #deedf8;
  border-radius: 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.treatment-surgery__referral-label {
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-main);
}

.treatment-surgery__referral-text {
  margin: 0;
  font-size: 1.3rem;
  color: #4a5a72;
  line-height: 1.7;
}

/* ============================================================
   Facility Page（施設紹介ページ）
   ============================================================ */
.facility-page {
  background-color: #fff;
}

.facility-page__header {
  padding: 100px 40px 60px;
  background: linear-gradient(180deg, #dfeaf6 0%, #eef4fb 45%, #f7fafd 80%, #ffffff 100%);
}

/* 院内紹介 */
.facility-interior {
  padding: 80px 40px 100px;
}

.facility-interior__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-interior__heading {
  text-align: center;
  margin-bottom: 56px;
}

.facility-interior__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  border-bottom: 3px solid #e89f47;
}

.facility-interior__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.facility-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f1f5fa;
  box-shadow: 0 10px 26px rgba(0, 64, 128, 0.12);
}

.facility-card__image {
  position: absolute;
  inset: 0;
}

.facility-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 36px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 70%);
}

.facility-card__title {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.facility-card__text {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* 設備紹介 */
.facility-equipment {
  padding: 40px 40px 120px;
  background-color: #f8fafc;
}

.facility-equipment__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-equipment__heading {
  text-align: center;
  margin-bottom: 56px;
}

.facility-equipment__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: var(--color-main);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  border-bottom: 3px solid #e89f47;
}

.facility-equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipment-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 64, 128, 0.06);
}

.equipment-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.equipment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipment-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 28px;
}

.equipment-card__category {
  align-self: flex-start;
  margin: 0 0 16px;
  padding: 6px 18px;
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.equipment-card__title {
  margin: 0 0 12px;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.equipment-card__text {
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 1.35rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.equipment-card__tags {
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #eef2f7;
  color: #888;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.equipment-card__tags li {
  line-height: 1.6;
}

/* アクセス */
.clinic-access {
  padding: 40px 40px 120px;
  background-color: #fff;
}

.clinic-access__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.clinic-access .section-header {
  margin-bottom: 40px;
}

.clinic-access__map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 64, 128, 0.08);
  line-height: 0;
  margin-bottom: 32px;
}

.clinic-access__map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.clinic-access__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px 48px;
  background-color: #eef4fb;
  border-radius: 12px;
}

.clinic-access__title {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.clinic-access__text {
  margin: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-main);
  color: #fff;
  padding: 80px 40px 24px;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.site-footer__info {
  color: #fff;
}

.site-footer__corporate {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.site-footer__name {
  margin: 0 0 32px;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.site-footer__address {
  margin: 0 0 24px;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.site-footer__tel {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.site-footer__tel-label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.site-footer__tel-number {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-footer__map {
  line-height: 0;
}

.site-footer__map iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 4px;
}

.site-footer__copyright {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   Recruit Page
   ============================================================ */
.recruit-page__header {
  padding: 100px 40px 60px;
  background: linear-gradient(180deg, #dfeaf6 0%, #eef4fb 45%, #f7fafd 80%, #ffffff 100%);
}

/* Recruit Hero */
.recruit-hero {
  padding: 88px 40px 96px;
  background: #f6fafd;
}

.recruit-hero__inner {
  max-width: 960px;
  margin: 0 auto;
}

.recruit-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.recruit-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.recruit-tag--green {
  background: linear-gradient(135deg, #2fae66 0%, #248751 100%);
}

.recruit-tag--orange {
  background: linear-gradient(135deg, #efaa55 0%, #d98a30 100%);
}

.recruit-tag--blue {
  background: linear-gradient(135deg, #2f96cc 0%, #1f6da0 100%);
}

.recruit-tag--teal {
  background: linear-gradient(135deg, #1bb5a4 0%, #0e8275 100%);
}

.recruit-tag--purple {
  background: linear-gradient(135deg, #8a78c1 0%, #6a589f 100%);
}

.recruit-tag--red {
  background: linear-gradient(135deg, #ea6868 0%, #cc4848 100%);
}

.recruit-tag--indigo {
  background: linear-gradient(135deg, #5780b8 0%, #3c5c92 100%);
}

/* Hero Headline */
.recruit-hero__headline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 56px;
  font-family: "Noto Serif JP", serif;
}

/* .recruit-hero__headline-station {
  align-self: flex-start;
  display: inline-block;
  padding: 6px 18px;
  background: var(--color-main);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
} */

.recruit-hero__headline-main {
  font-size: 4.4rem;
  font-weight: 700;
  color: #0e2944;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.recruit-hero__headline-main small {
  font-size: 0.7em;
  color: #e89f47;
  margin: 0 4px;
  font-weight: 700;
}

.recruit-hero__headline-sub {
  font-size: 1.7rem;
  font-weight: 500;
  color: #4a5a72;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}

/* Hero Job Card */
.recruit-hero__job {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 64, 128, 0.10);
  overflow: hidden;
  border: 1px solid #e3ecf5;
}

.recruit-hero__job-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #004080 0%, #0a5099 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0 32px;
  white-space: nowrap;
}

.recruit-hero__job-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px 32px;
  flex: 1;
}

.recruit-hero__job-text {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.06em;
}

.recruit-hero__job-types {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6a7a8e;
  letter-spacing: 0.08em;
}

/* Recruit Detail */
.recruit-image {
  padding: 72px 40px;
  background: #fff;
  text-align: center;
}

.recruit-image img {
  max-width: 960px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.recruit-detail {
  padding: 88px 40px 100px;
  background: #fff;
}

.recruit-detail__inner {
  max-width: 960px;
  margin: 0 auto;
}

.recruit-detail__head {
  text-align: center;
  margin-bottom: 56px;
}

/* .recruit-detail__label {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #e89f47;
} */

.recruit-detail__title {
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.1em;
  line-height: 1.3;
  border-bottom: 3px solid #e89f47;
}

/* Recruit Table */
.recruit-table {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.recruit-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.recruit-table__row:hover {
  background: #fafcff;
}

.recruit-table__label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 24px 24px 36px;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.08em;
  background: #f4f8fc;
}

.recruit-table__label::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 4px;
  height: 18px;
  background: #e89f47;
  border-radius: 2px;
  transform: translateY(-50%);
}

.recruit-table__value {
  padding: 24px 28px;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--color-text);
}

/* Recruit CTA */
.recruit-cta {
  padding: 88px 40px 100px;
  background: #deedf8;
  text-align: center;
}

.recruit-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* .recruit-cta__label {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #e89f47;
} */

.recruit-cta__title {
  display: inline-block;
  margin: 0 0 28px;
  padding-bottom: 14px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-main);
  font-family: "Noto Serif JP", serif;
  border-bottom: 3px solid #e89f47;
}

.recruit-cta__text {
  margin: 0 0 44px;
  font-size: 1.5rem;
  line-height: 2;
  color: #4a5a72;
}

.recruit-cta__actions {
  display: flex;
  justify-content: center;
}

.recruit-cta__tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 56px;
  background: #fff;
  border: 1px solid #c5ddf0;
  border-radius: 8px;
  color: var(--color-main);
  box-shadow: 0 4px 16px rgba(0, 64, 128, 0.10);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.recruit-cta__tel:hover {
  background: #f5f9fd;
  box-shadow: 0 6px 20px rgba(0, 64, 128, 0.14);
}

.recruit-cta__tel-label {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #6a7a8e;
}

.recruit-cta__tel-number {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-main);
  font-family: "Noto Serif JP", serif;
}

.recruit-cta__tel-note {
  font-size: 1.2rem;
  color: #6a7a8e;
  letter-spacing: 0.05em;
}

.recruit-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 44px;
  background: #e89f47;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(232, 159, 71, 0.30);
  transition: background 0.2s ease, transform 0.2s ease;
}

.recruit-cta__button:hover {
  background: #d68830;
  transform: translateY(-1px);
}
