/* =========================================================
   Total Beauty Salon MIELE — 共有スタイル
   トップ(index)と施術詳細ページ(/menu/*)で共通利用。
   施術詳細ページ専用のレイアウトは末尾の「MENU DETAIL」を参照。
   ========================================================= */
:root{
  --bg:#fbf7f3;
  --cream:#f3ebe2;
  --ink:#3a322c;
  --muted:#8a7d72;
  --gold:#b89968;
  --gold-dark:#9c7e4f;
  --rose:#c9a39a;
  --line:#e6dccf;
  --white:#ffffff;
  --shadow:0 18px 50px -20px rgba(90,70,50,.28);
  --serif:'Noto Serif JP',serif;
  --display:'Cormorant Garamond',serif;
  --sans:'Noto Sans JP',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:96px}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  line-height:1.9;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
[hidden]{display:none!important}
.wrap{max-width:1160px;margin:0 auto;padding:0 20px}
@media(min-width:600px){.wrap{padding:0 28px}}
.eyebrow{
  font-family:var(--display);
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-size:.82rem;
  font-weight:600;
  margin-bottom:14px;
  display:inline-block;
}
.section-title{
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(1.55rem,6vw,2.5rem);
  line-height:1.4;
  letter-spacing:.04em;
  margin-bottom:18px;
}
.lead{color:var(--muted);font-size:.95rem;max-width:640px}

/* ---------- Header ---------- */
header{
  position:fixed;top:0;left:0;width:100%;z-index:100;
  transition:.4s ease;
  padding:14px 0;
}
header.scrolled{
  background:rgba(251,247,243,.94);
  backdrop-filter:blur(12px);
  padding:8px 0;
  box-shadow:0 8px 30px -22px rgba(90,70,50,.5);
}
.nav{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center}
.brand img{height:52px;width:auto;mix-blend-mode:multiply}
header.scrolled .brand img{height:44px;transition:.4s}

.menu{
  position:fixed;top:0;right:-100%;height:100dvh;width:80%;max-width:330px;
  background:var(--bg);display:flex;flex-direction:column;justify-content:center;
  gap:24px;box-shadow:-20px 0 60px -20px rgba(0,0,0,.3);transition:right .4s ease;padding:40px;
}
.menu.open{right:0}
.menu a{font-size:1.08rem;letter-spacing:.08em;color:var(--ink);position:relative;font-weight:400}
.menu a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:1px;background:var(--gold);transition:.35s}
.menu a:hover::after,.menu a:focus-visible::after{width:100%}
.menu a.nav-cta{
  background:var(--ink);color:#fff;padding:14px 26px;border-radius:40px;
  font-size:.95rem;letter-spacing:.1em;transition:.35s;text-align:center;
}
.menu a.nav-cta::after{display:none}
.menu a.nav-cta:hover{background:var(--gold-dark);color:#fff}
.burger{display:flex;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;z-index:101;padding:8px;margin:-8px}
.burger span{width:26px;height:2px;background:var(--ink);transition:.3s}
.menu.open ~ .burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu.open ~ .burger span:nth-child(2){opacity:0}
.menu.open ~ .burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.scrim{position:fixed;inset:0;background:rgba(40,32,26,.45);opacity:0;visibility:hidden;transition:.35s;z-index:99}
.scrim.show{opacity:1;visibility:visible}

/* nav dropdown (メニュー) — mobile drawer shows it as an indented sublist */
.has-sub{position:relative}
.sub-toggle{display:inline-flex;align-items:center;gap:7px}
.caret{display:inline-block;width:7px;height:7px;border-right:1.6px solid currentColor;border-bottom:1.6px solid currentColor;transform:rotate(45deg);margin-top:-4px;opacity:.6;transition:.3s}
.submenu{display:flex;flex-direction:column;gap:16px;margin:14px 0 4px 14px;padding-left:14px;border-left:1px solid var(--line)}
.submenu a{font-size:1rem;color:var(--muted)}

/* ---------- Buttons ---------- */
.btn-row{display:flex;flex-direction:column;gap:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 30px;border-radius:46px;font-size:.95rem;letter-spacing:.08em;
  transition:.35s;font-weight:400;min-height:52px;
}
.btn-primary{background:var(--gold-dark);color:#fff;box-shadow:0 14px 30px -14px rgba(156,126,79,.7)}
.btn-primary:hover{background:var(--ink);transform:translateY(-2px)}
.btn-ghost{border:1px solid var(--gold-dark);color:var(--gold-dark)}
.btn-ghost:hover{background:var(--gold-dark);color:#fff}
/* ホットペッパービューティー予約ボタン */
.btn-hpb{background:#e9614e;color:#fff;border:1px solid #e9614e}
.btn-hpb:hover{background:#cf4b39;border-color:#cf4b39;color:#fff;transform:translateY(-2px)}
.cta .btn-hpb{border-color:#e9614e}
.cta .btn-hpb:hover{background:#cf4b39;color:#fff}

/* ---------- Pricing ---------- */
.pricing{padding:72px 0;background:var(--bg);scroll-margin-top:-72px}
.pricing .head{text-align:center;margin-bottom:36px}
.pricing .head .lead{margin:0 auto}
.price-block{margin-bottom:30px}
.price-block:last-child{margin-bottom:0}
.price-block > h4{
  font-family:var(--serif);font-weight:500;font-size:1.18rem;color:var(--ink);
  letter-spacing:.04em;margin-bottom:6px;padding-bottom:10px;border-bottom:2px solid var(--gold);
  display:inline-block;
}
.price-note{font-size:.8rem;color:var(--muted);margin:6px 0 16px}
.price-table{width:100%;border-collapse:collapse;font-size:.86rem;background:var(--white);
  border:1px solid var(--line);border-radius:8px;overflow:hidden}
.price-table caption{
  font-family:var(--serif);text-align:left;font-size:.98rem;color:var(--gold-dark);
  font-weight:500;padding:14px 16px 4px;caption-side:top;letter-spacing:.04em;
}
.price-table th,.price-table td{padding:12px 12px;text-align:right;border-bottom:1px solid var(--line)}
.price-table thead th{
  background:var(--cream);color:var(--ink);font-weight:500;font-size:.78rem;letter-spacing:.04em;
  text-align:right;
}
.price-table thead th:first-child,.price-table tbody th{text-align:left;font-weight:400}
.price-table tbody th{color:var(--ink);font-weight:400}
.price-table tbody tr:last-child td,.price-table tbody tr:last-child th{border-bottom:none}
.price-table .reg{color:var(--muted)}
.price-table .new{color:#c0584e;font-weight:500}
.price-table .line{color:#2f8a55;font-weight:500}
.price-table .svc{color:#2f8a55;font-size:.78rem}
.price-foot{font-size:.78rem;color:var(--muted);margin-top:14px;text-align:right}
.price-legend{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin-bottom:24px;font-size:.78rem;color:var(--muted)}
.price-legend span{display:inline-flex;align-items:center;gap:6px}
.price-legend i{width:11px;height:11px;border-radius:50%;display:inline-block}
.dot-reg{background:var(--muted)}.dot-new{background:#c0584e}.dot-line{background:#2f8a55}
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}

/* ---------- Before / After ---------- */
.ba{padding:72px 0;background:linear-gradient(180deg,var(--bg),var(--cream))}
.ba .head{text-align:center;margin-bottom:40px}
.ba .head .lead{margin:0 auto}
.ba-grid{display:grid;grid-template-columns:1fr;gap:20px}
.ba-card{background:var(--white);border:1px solid var(--line);border-radius:10px;overflow:hidden;transition:.4s}
.ba-card:hover{box-shadow:var(--shadow);transform:translateY(-5px)}
.ba-card img{width:100%;height:auto;display:block;background:var(--cream)}
.ba-card .cap{padding:14px 18px 16px}
.ba-card .cap h4{font-family:var(--serif);font-weight:500;font-size:1rem;color:var(--ink);letter-spacing:.03em}
.ba-card .cap p{font-size:.8rem;color:var(--muted);margin-top:3px}
.ba-disclaimer{text-align:center;margin-top:26px;font-size:.78rem;color:var(--muted);line-height:1.7}

/* ---------- FAQ ---------- */
.faq{padding:72px 0;background:var(--cream)}
.faq .head{text-align:center;margin-bottom:40px}
.faq .head .lead{margin:0 auto}
.faq-list{max-width:780px;margin:0 auto}
.faq-item{background:var(--white);border:1px solid var(--line);border-radius:8px;margin-bottom:14px;overflow:hidden}
.faq-q{
  list-style:none;cursor:pointer;padding:20px 54px 20px 22px;position:relative;
  font-family:var(--serif);font-weight:500;font-size:1rem;color:var(--ink);letter-spacing:.02em;
}
.faq-q::-webkit-details-marker{display:none}
.faq-q::before{content:"Q";font-family:var(--display);color:var(--gold-dark);font-weight:600;margin-right:12px}
.faq-q::after{
  content:"";position:absolute;right:24px;top:50%;width:10px;height:10px;
  border-right:2px solid var(--gold-dark);border-bottom:2px solid var(--gold-dark);
  transform:translateY(-65%) rotate(45deg);transition:.3s;
}
.faq-item[open] .faq-q::after{transform:translateY(-35%) rotate(225deg)}
.faq-a{padding:0 22px 22px;color:var(--muted);font-size:.92rem;line-height:1.9}
.faq-a::before{content:"A";font-family:var(--display);color:var(--rose);font-weight:600;margin-right:12px}

/* ---------- CTA ---------- */
.cta{
  padding:80px 0;text-align:center;
  background:
    linear-gradient(rgba(58,50,44,.78),rgba(58,50,44,.82)),
    url("/images/cta-massage.jpg") center/cover scroll no-repeat;
  color:#fff;
}
.cta h2{font-family:var(--serif);font-weight:400;font-size:clamp(1.55rem,6.5vw,2.6rem);margin-bottom:18px;letter-spacing:.04em}
.cta p{color:#e3d8cc;margin-bottom:30px;max-width:540px;margin-left:auto;margin-right:auto;font-size:.95rem}
.cta .btn-row{justify-content:center}
.cta .btn-ghost{border-color:#fff;color:#fff}
.cta .btn-ghost:hover{background:#fff;color:var(--ink)}
.cta .phone{margin-top:28px;font-family:var(--display);font-size:1.7rem;letter-spacing:.1em;color:#fff}
.cta .phone small{display:block;font-family:var(--sans);font-size:.74rem;letter-spacing:.25em;color:var(--gold);margin-bottom:4px}

/* ---------- Footer ---------- */
footer{background:var(--ink);color:#cbbfb2;padding:56px 0 96px}
.f-top{display:grid;grid-template-columns:1fr;gap:34px;padding-bottom:38px;border-bottom:1px solid rgba(255,255,255,.12)}
.f-brand .name{font-family:var(--display);font-size:1.6rem;color:#fff;letter-spacing:.16em}
.f-brand .sub{font-size:.64rem;letter-spacing:.4em;color:var(--gold);margin:6px 0 16px}
.f-brand p{font-size:.86rem;color:#b3a698;max-width:340px}
.f-col h5{font-family:var(--serif);color:#fff;font-weight:400;font-size:1rem;margin-bottom:16px;letter-spacing:.08em}
.f-col a,.f-col p{display:block;font-size:.86rem;color:#b3a698;margin-bottom:11px;transition:.3s}
.f-col a:hover{color:var(--gold)}
.f-bottom{display:flex;flex-direction:column;align-items:flex-start;gap:14px;padding-top:24px;font-size:.74rem;color:#8d8175}
.f-bottom .socials{display:flex;gap:18px}
.f-bottom .socials a{color:#b3a698}
.f-bottom .socials a:hover{color:var(--gold)}

/* floating LINE button */
.float-line{
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  background:#06c755;color:#fff;padding:16px;border-radius:0;
  font-size:1rem;letter-spacing:.08em;box-shadow:0 -8px 24px -10px rgba(0,0,0,.3);
  transition:.35s;display:flex;align-items:center;justify-content:center;gap:8px;
}
.float-line:active{filter:brightness(.95)}

/* reveal */
.reveal{opacity:0;transform:translateY(28px);transition:.9s cubic-bezier(.2,.7,.2,1)}
.reveal.show{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* =========================================================
   MENU DETAIL — 施術詳細ページ専用
   ========================================================= */
/* サブヒーロー（ページ見出し） */
.subhero{
  position:relative;color:#fff;padding:150px 0 64px;
  background:linear-gradient(rgba(48,40,34,.62),rgba(48,40,34,.72)),var(--subhero-img,url("/images/hero-massage.jpg")) center/cover no-repeat;
}
.subhero .eyebrow{color:var(--gold)}
.subhero h1{
  font-family:var(--serif);font-weight:500;letter-spacing:.04em;
  font-size:clamp(1.7rem,7vw,3rem);line-height:1.45;margin-bottom:18px;
}
.subhero p{color:#ece2d6;max-width:620px;font-size:.98rem}
.subhero .btn-row{margin-top:30px}

/* パンくず */
.crumb{font-size:.76rem;letter-spacing:.04em;margin-bottom:18px;color:#e3d8cc}
.crumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.crumb li{display:flex;align-items:center;gap:8px}
.crumb li::after{content:"›";color:var(--gold)}
.crumb li:last-child::after{display:none}
.crumb a{color:#e3d8cc;border-bottom:1px solid transparent;transition:.3s}
.crumb a:hover{border-color:var(--gold)}
.crumb li:last-child{color:#fff}

/* 汎用セクション */
.section{padding:64px 0}
.section.alt{background:linear-gradient(180deg,var(--cream),var(--bg))}
.section .head{text-align:center;margin-bottom:42px}
.section .head .lead{margin:0 auto}
.prose{max-width:760px}
.prose p{color:var(--muted);margin-bottom:18px;font-size:.96rem}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--ink);font-weight:500}

/* 機器・特徴の交互レイアウト */
.feature{display:grid;grid-template-columns:1fr;gap:26px;align-items:center;margin-bottom:48px}
.feature:last-child{margin-bottom:0}
.feature-img{order:-1}
/* チラシ画像（文字入り）が多いため切り抜かず全体表示する */
.feature-img img{border-radius:8px;box-shadow:var(--shadow);width:100%;height:auto;background:var(--cream)}
.feature-text .tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.feature-text .tag{font-size:.74rem;letter-spacing:.06em;color:var(--gold-dark);background:var(--cream);padding:5px 13px;border-radius:30px}
.feature-text h3{font-family:var(--serif);font-weight:500;font-size:1.35rem;margin-bottom:12px;letter-spacing:.03em}
.feature-text p{color:var(--muted);font-size:.94rem;margin-bottom:14px}
.feature-text p:last-child{margin-bottom:0}

/* チェックリスト（こんな方へ／ポイント） */
.checklist{display:grid;grid-template-columns:1fr;gap:14px;max-width:760px;margin:0 auto}
.checklist li{
  list-style:none;background:var(--white);border:1px solid var(--line);border-radius:8px;
  padding:18px 20px 18px 52px;position:relative;font-size:.92rem;color:var(--ink);
}
.checklist li::before{
  content:"✓";position:absolute;left:20px;top:50%;transform:translateY(-50%);
  color:var(--gold-dark);font-weight:700;
}

/* 関連メニュー（内部リンク） */
.related{padding:64px 0;background:var(--bg)}
.related .head{text-align:center;margin-bottom:36px}
.rel-grid{display:grid;grid-template-columns:1fr;gap:18px}
.rel-card{
  background:var(--white);border:1px solid var(--line);border-radius:8px;overflow:hidden;
  transition:.4s;display:flex;flex-direction:column;
}
.rel-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.rel-card .rc-img{height:170px;overflow:hidden;background:var(--cream)}
.rel-card .rc-img img{height:100%;width:100%;object-fit:contain;transition:.6s}
.rel-card:hover .rc-img img{transform:scale(1.07)}
.rel-card .rc-body{padding:20px 22px 24px}
.rel-card h4{font-family:var(--serif);font-weight:500;font-size:1.15rem;margin-bottom:8px;letter-spacing:.03em}
.rel-card p{color:var(--muted);font-size:.86rem;margin-bottom:12px}
.rel-card .more{font-size:.8rem;color:var(--gold-dark);letter-spacing:.08em}

/* =========================================================
   TABLET — 600px and up
   ========================================================= */
@media(min-width:600px){
  .btn-row{flex-direction:row;flex-wrap:wrap;gap:16px}
  .btn{padding:16px 34px}
  .ba-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .f-top{grid-template-columns:1.4fr 1fr;gap:40px}
  .f-bottom{flex-direction:row;justify-content:space-between;align-items:center}
  .price-table{font-size:.9rem}
  .float-line{left:auto;right:24px;bottom:24px;border-radius:50px;padding:14px 22px;font-size:.88rem;box-shadow:0 12px 30px -10px rgba(6,199,85,.7)}
  .float-line:hover{transform:translateY(-3px)}
  footer{padding:64px 0 30px}
  .checklist{grid-template-columns:1fr 1fr}
  .rel-grid{grid-template-columns:repeat(3,1fr);gap:22px}
}

/* =========================================================
   DESKTOP — 900px and up
   ========================================================= */
@media(min-width:900px){
  header{padding:18px 0}
  header.scrolled{padding:10px 0}
  .menu{
    position:static;height:auto;width:auto;max-width:none;background:none;
    flex-direction:row;align-items:center;justify-content:flex-end;gap:30px;box-shadow:none;padding:0;right:auto;
  }
  .menu a{font-size:.85rem}
  .nav-cta{padding:11px 24px;font-size:.82rem}
  .burger,.scrim{display:none}
  /* desktop: メニュー is a hover/focus dropdown */
  .has-sub::after{content:"";position:absolute;left:0;right:0;top:100%;height:16px}
  .has-sub>.sub-toggle{cursor:pointer}
  .has-sub .submenu{
    position:absolute;top:100%;left:50%;transform:translate(-50%,8px);
    gap:14px;min-width:190px;margin:0;padding:18px 20px;
    background:var(--bg);border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);
    opacity:0;visibility:hidden;transition:.26s;z-index:120;
  }
  .has-sub:hover .submenu,.has-sub:focus-within .submenu{opacity:1;visibility:visible;transform:translate(-50%,4px)}
  .has-sub:hover .caret,.has-sub:focus-within .caret{transform:rotate(225deg);margin-top:0}
  .submenu a{font-size:.85rem;color:var(--ink);white-space:nowrap}
  .subhero{padding:200px 0 96px}
  .pricing{padding:110px 0}
  .ba{padding:110px 0}
  .ba-grid{grid-template-columns:repeat(3,1fr);gap:26px}
  .faq{padding:110px 0}
  .cta{padding:110px 0;background-attachment:fixed}
  .cta .phone{font-size:1.9rem}
  .f-top{grid-template-columns:1.4fr 1fr 1fr}
  .section{padding:104px 0}
  .feature{grid-template-columns:1fr 1fr;gap:50px;margin-bottom:72px}
  .feature.rev .feature-img{order:1}
  .feature-img img{height:auto}
  .related{padding:104px 0}
}

/* =========================================================
   LARGE DESKTOP — 1100px and up
   ========================================================= */
@media(min-width:1100px){
  .section-title{font-size:clamp(1.7rem,3.6vw,2.5rem)}
}

/* =========================================================
   SHARED SECTIONS — staff / strengths / reviews / access
   （トップのインラインCSSと同等。staff/access/voice ページ用）
   ========================================================= */
/* staff */
.staff-grid{display:grid;grid-template-columns:1fr;gap:34px;align-items:center}
.staff-img{order:-1}
.staff-img img{border-radius:10px;box-shadow:var(--shadow);width:100%;object-fit:cover}
.staff-text p{color:var(--muted);margin-bottom:18px}
.staff-text .sign{font-family:var(--display);font-style:italic;font-size:1.4rem;color:var(--gold-dark)}

/* strengths */
.strengths{padding:64px 0;background:var(--ink);color:#f3ebe2}
.strengths .eyebrow{color:var(--gold)}
.strengths .section-title{color:#fff}
.s-grid{display:grid;grid-template-columns:1fr;gap:26px;margin-top:42px}
.s-item{border-top:1px solid rgba(255,255,255,.18);padding-top:22px}
.s-item .icon{font-family:var(--display);font-size:2.2rem;color:var(--gold);margin-bottom:12px}
.s-item h4{font-family:var(--serif);font-weight:400;font-size:1.15rem;margin-bottom:10px;color:#fff;letter-spacing:.04em}
.s-item p{color:#c9bdb0;font-size:.9rem}

/* reviews */
.reviews{padding:64px 0}
.reviews .head{text-align:center;margin-bottom:30px}
.g-badge{display:flex;justify-content:center;margin-bottom:36px}
.g-badge a{display:inline-flex;align-items:center;gap:14px;background:var(--white);border:1px solid var(--line);
  border-radius:50px;padding:12px 24px;box-shadow:var(--shadow);transition:.35s}
.g-badge a:hover{transform:translateY(-3px)}
.g-badge .g-logo{font-family:var(--display);font-weight:600;font-size:1.3rem;letter-spacing:.02em}
.g-badge .g-logo b{color:#4285F4}.g-badge .g-logo i{font-style:normal}
.g-badge .g-score{font-family:var(--display);font-size:1.5rem;font-weight:600;color:var(--ink);line-height:1}
.g-badge .g-stars{color:#fbbc04;letter-spacing:.06em;font-size:.9rem}
.g-badge .g-sub{font-size:.7rem;color:var(--muted);letter-spacing:.04em}
.g-badge .g-meta{display:flex;flex-direction:column;gap:3px;text-align:left}
.r-grid{display:grid;grid-template-columns:1fr;gap:18px}
.r-card{background:var(--white);border:1px solid var(--line);border-radius:8px;padding:30px 26px;transition:.4s;display:flex;flex-direction:column}
.r-card:hover{box-shadow:var(--shadow);transform:translateY(-5px)}
.stars{color:#fbbc04;letter-spacing:.14em;margin-bottom:14px;font-size:.95rem}
.r-card p{color:var(--muted);font-size:.9rem;margin-bottom:20px;font-style:italic;flex:1}
.r-who{display:flex;align-items:center;gap:12px}
.r-avatar{width:42px;height:42px;border-radius:50%;background:var(--cream);display:flex;align-items:center;justify-content:center;font-family:var(--serif);color:var(--gold-dark)}
.r-who .meta{font-size:.8rem;color:var(--ink)}
.r-who .meta span{display:block;color:var(--muted);font-size:.72rem}

/* access info */
.access-grid{display:grid;grid-template-columns:1fr;gap:32px;align-items:start}
.info-table{width:100%;border-collapse:collapse;margin-top:8px}
.info-table th,.info-table td{text-align:left;padding:15px 4px;border-bottom:1px solid var(--line);vertical-align:top;font-size:.9rem}
.info-table th{display:block;width:auto;color:var(--gold-dark);font-weight:500;letter-spacing:.08em;padding-bottom:4px;border-bottom:none}
.info-table td{display:block;color:var(--ink);padding-top:0}
.info-table td small{color:var(--muted)}
.map-box{border-radius:8px;overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--line)}
.map-box iframe{width:100%;height:100%;min-height:340px;border:0;display:block}

@media(min-width:600px){
  .s-grid{grid-template-columns:repeat(2,1fr);gap:28px}
  .r-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .staff-grid{grid-template-columns:1fr 1fr;gap:48px}
  .info-table th{display:table-cell;width:120px;padding:18px 4px;border-bottom:1px solid var(--line)}
  .info-table td{display:table-cell;padding:18px 4px}
  .map-box iframe{min-height:420px}
}
@media(min-width:900px){
  .strengths{padding:104px 0}
  .s-grid{grid-template-columns:repeat(3,1fr);gap:30px;margin-top:60px}
  .reviews{padding:104px 0}
  .r-grid{grid-template-columns:repeat(3,1fr);gap:26px}
  .r-card{padding:34px 30px}
  .access-grid{grid-template-columns:1fr 1fr;gap:60px}
  .map-box iframe{min-height:480px}
}
