/* ========================================
   小川歯科医院 - メインスタイルシート
   ======================================== */

/* ---------- リセット & ベース ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:    #4db8d4;   /* メイン水色 */
  --primary-dk: #2e9ab8;   /* 濃い水色（ホバー） */
  --primary-lt: #e6f7fb;   /* 薄い水色（背景） */
  --accent:     #f0a500;   /* アクセント（ゴールド） */
  --text:       #333333;
  --text-light: #666666;
  --white:      #ffffff;
  --gray-bg:    #f8f9fa;
  --border:     #d6eef5;
  --radius:     8px;
  --shadow:     0 2px 12px rgba(77,184,212,.15);
  --font:       'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary-dk); text-decoration: none; }
a:hover { color: var(--primary); }
ul { list-style: none; }

/* ---------- 共通ユーティリティ ---------- */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--primary-lt);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-dk);
  letter-spacing: .05em;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

.section-title p {
  color: var(--text-light);
  margin-top: 8px;
  font-size: .95rem;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dk);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dk);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- ヘッダー ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .clinic-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dk);
}

.logo-text .clinic-sub {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .05em;
}

/* PC ナビ */
nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: background .2s, color .2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--primary-lt);
  color: var(--primary-dk);
}

nav ul li a.nav-tel {
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
}
nav ul li a.nav-tel:hover {
  background: var(--primary-dk);
  color: var(--white);
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dk);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- ヒーロー ---------- */
.hero {
  background: var(--white);
  padding: 80px 0 64px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 113px;
}

.hero-content { flex: 1; }

.hero-content .tagline {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dk);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--primary-dk);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: .04em;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  color: var(--text-light);
  font-size: .98rem;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-left: 80px;
}

.penguin-wrap {
  width: 320px;
  height: 320px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.penguin-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.penguin-placeholder {
  font-size: 5rem;
  line-height: 1;
}

/* ---------- 特徴カード ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: transform .2s;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dk);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- 診療案内（トップ） ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(77,184,212,.22);
}

.service-card .icon {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dk);
}

.service-card p {
  font-size: .87rem;
  color: var(--text-light);
  flex: 1;
}

/* ---------- 診療案内（リスト形式ページ） ---------- */
.services-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dk);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: .03em;
}

.svc-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(77,184,212,.13);
  border: 1px solid var(--border);
  padding: 40px 48px;
  margin-bottom: 32px;
}

.svc-block {
  margin-bottom: 0;
}

.svc-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.svc-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.svc-tooth-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-lt);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-block-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .03em;
}

.svc-list {
  list-style: none;
  padding-left: 52px;
}

.svc-list li {
  font-size: .93rem;
  color: var(--text);
  padding: 5px 0;
  line-height: 1.6;
  position: relative;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .6;
}

.svc-list-spacer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.svc-loan-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(77,184,212,.08);
  overflow: hidden;
}

.svc-loan-label {
  font-size: .88rem;
  color: var(--white);
  font-weight: 700;
  background: var(--primary-dk);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 150px;
  line-height: 1.6;
  letter-spacing: .03em;
}

.svc-loan-body {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 2;
  padding: 20px 28px;
}

@media (max-width: 640px) {
  .svc-card {
    padding: 28px 20px;
  }
  .svc-loan-row {
    flex-direction: column;
  }
  .svc-loan-label {
    min-width: unset;
    padding: 14px 20px;
  }
}

/* ---------- 診療案内（詳細ページ） ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 20px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.service-detail .icon-box {
  width: 64px;
  height: 64px;
  background: var(--primary-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  grid-row: 1 / 3;
}

.service-detail h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dk);
  align-self: center;
}

.service-detail p {
  font-size: .9rem;
  color: var(--text-light);
  margin-top: 6px;
  grid-column: 2;
}

/* ---------- 料金表 ---------- */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.fee-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.fee-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:nth-child(even) td { background: var(--primary-lt); }

/* ---------- ギャラリー ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .85rem;
  text-align: center;
  padding: 12px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-wide {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 3px #c8dff0, var(--shadow);
}
.gallery-wide img {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- チーム ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}

.team-card:hover { transform: translateY(-4px); }

.team-card .photo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary-lt);
  margin: 24px auto 0;
}

.team-card .info {
  padding: 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card .role {
  font-size: .78rem;
  color: var(--primary-dk);
  font-weight: 600;
  letter-spacing: .08em;
  background: var(--primary-lt);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.team-card .name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.team-card .desc {
  flex: 1;
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- 看板写真 ---------- */
.sign-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sign-photo {
  width: 72%;
  max-width: 280px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  display: block;
}

.sign-caption {
  font-size: .82rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}

/* ---------- アクセス ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-row .info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-row .info-body dt {
  font-size: .78rem;
  color: var(--primary-dk);
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 2px;
}

.info-row .info-body dd {
  font-size: .92rem;
  color: var(--text);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* 診療時間テーブル */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-top: 8px;
}

.hours-table th {
  background: var(--primary);
  color: var(--white);
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
  font-size: .8rem;
}

.hours-table td {
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table .circle::before { content: '●'; color: var(--primary); }
.hours-table .triangle::before { content: '▲'; color: var(--accent); }
.hours-table .cross::before { content: '✕'; color: #ccc; }

/* ---------- SNS バナー ---------- */
.sns-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
  text-align: center;
  padding: 48px 20px;
}

.sns-banner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sns-banner p {
  font-size: .92rem;
  opacity: .9;
  margin-bottom: 24px;
}

.sns-banner .btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: #c13584;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .95rem;
  transition: transform .15s, box-shadow .15s;
}

.sns-banner .btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ---------- フッター ---------- */
footer {
  background: #1a3a42;
  color: rgba(255,255,255,.8);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text .clinic-name { color: var(--white); }
.footer-brand .logo-text .clinic-sub  { color: rgba(255,255,255,.5); }
.footer-brand .logo-icon { background: var(--primary); }

.footer-brand p {
  font-size: .85rem;
  margin-top: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
}

.footer-nav h4, .footer-contact h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer-nav ul li a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  transition: color .2s;
  white-space: nowrap;
}

.footer-nav ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}

.footer-contact .tel-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-updated {
  margin-top: 6px;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* ---------- ページヘッダー ---------- */
.page-header {
  background: linear-gradient(135deg, #e6f7fb 0%, #b8e8f5 100%);
  padding: 52px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dk);
  margin-bottom: 6px;
}

.page-header p {
  font-size: .88rem;
  color: var(--text-light);
  letter-spacing: .1em;
}

/* パンくず */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 14px;
}

.breadcrumb a { color: var(--primary-dk); }
.breadcrumb span { color: var(--text-light); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .access-grid    { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }

  .hero-inner { flex-direction: column-reverse; text-align: center; }
  .hero-content p { margin: 0 auto 28px; }
  .hero-btns  { justify-content: center; }

  .hero-image { flex: none; width: 100%; margin-left: 0; justify-content: center; }
  .penguin-wrap { width: 200px; height: 200px; margin: 0 auto; }
  .hero { padding: 40px 0 16px; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }

  nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    padding: 12px 0;
  }

  nav.open { display: block; }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav ul li a {
    padding: 13px 24px;
    border-radius: 0;
    font-size: 1rem;
  }

  nav ul li a.nav-tel {
    margin: 8px 24px;
    text-align: center;
    border-radius: 50px;
  }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr; }

  .section { padding: 52px 0; }
  .section-title h2 { font-size: 1.5rem; }
}

@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
}

/* ---------- 院長挨拶 ---------- */
.director-section-inner {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.director-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.director-header-label {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.director-header-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.3);
}

.director-body {
  display: flex;
  gap: 48px;
  padding: 48px 48px 40px;
  align-items: flex-start;
}

.director-photo-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.director-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-size: 148%;
  background-position: center 50%;
  background-repeat: no-repeat;
  border: 4px solid var(--primary);
}

.director-name-block { text-align: center; }

.director-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.director-role {
  font-size: .78rem;
  color: var(--primary-dk);
  font-weight: 600;
  letter-spacing: .08em;
  background: var(--primary-lt);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 50px;
  margin-top: 6px;
}

.director-content { flex: 1; }

.director-greeting-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dk);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.director-msg {
  font-size: .93rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 24px;
}

.director-profile-table {
  background: var(--primary-lt);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: .85rem;
}

.director-profile-table tr td {
  padding: 4px 8px;
  color: var(--text);
  line-height: 1.8;
}

.director-profile-table tr td:first-child {
  color: var(--primary-dk);
  font-weight: 600;
  white-space: nowrap;
  padding-right: 16px;
}

@media (max-width: 640px) {
  .director-body { flex-direction: column; align-items: center; padding: 32px 24px; gap: 28px; }
  .director-photo-wrap { flex-direction: row; align-items: center; gap: 20px; }
  .director-name-block { text-align: left; }
  .director-photo { width: 120px; height: 120px; }
  .director-header { padding: 16px 24px; }
}

/* ---------- スタッフカード（横並び） ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.staff-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.staff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(77,184,212,.22);
}

.staff-card-photo {
  width: 120px;
  flex-shrink: 0;
  background-size: 140%;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.staff-card-body {
  padding: 20px 22px;
  flex: 1;
  border-left: 3px solid var(--primary-lt);
}

.staff-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.staff-card-hobby {
  font-size: .8rem;
  color: var(--primary-dk);
  font-weight: 600;
  background: var(--primary-lt);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.staff-card-msg {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.75;
}

.staff-note {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 32px 36px;
  margin-top: 32px;
  font-size: .93rem;
  color: var(--text);
  line-height: 2;
}

@media (max-width: 640px) {
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card-photo { width: 96px; }
}
