:root{
  --brand:#1f9bd6;
  --brand-deep:#0b5c87;
  --bg:#f6fbfe;
  --surface:#ffffff;
  --text:#0f1720;
  --muted:#51606b;
  --line:#e6eef4;
  --radius:16px;
  --shadow:0 6px 18px rgba(15,23,32,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:-apple-system,BlinkMacSystemFont,"Hiragino Sans","Noto Sans JP","Yu Gothic",sans-serif;
  line-height:1.8;
}
img{max-width:100%;display:block}
.container{width:min(1100px,calc(100% - 32px));margin-inline:auto}
a{color:inherit}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(90deg,#28a7e0,#1f8fd1);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:var(--shadow);
}
.btn--ghost{
  background:#fff;color:var(--brand-deep);
  border:1px solid #d7e8f3;
}
.btn--pill{padding:10px 16px;font-weight:700}
.btn--block{display:block;text-align:center;width:100%;margin-top:12px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.brand{display:flex;align-items:center;text-decoration:none;gap:10px}
.brand__icon{width:28px;height:28px;border-radius:8px;background:linear-gradient(180deg,#2ca3e0,#0f74b1);display:inline-grid;place-items:center;color:#fff;font-weight:800}
.brand__name{font-weight:700}
.brand__em{color:var(--brand)}

.pc-nav{display:flex;align-items:center;gap:18px}
.pc-nav .nav__link{position:relative;text-decoration:none;padding:6px 2px}
.pc-nav .nav__link.is-active::after{
  content:"";position:absolute;left:0;right:0;bottom:-6px;height:3px;border-radius:2px;background:var(--brand);
}
.hamburger{display:none;appearance:none;background:transparent;border:0;cursor:pointer;width:36px;height:36px}
.hamburger span{display:block;height:2px;background:#163041;margin:7px 0;transition:.2s}

/* Drawer */
.drawer{
  position:fixed;right:0;top:64px;
  width:100%;max-width:420px;height:calc(100dvh - 64px);
  background:#fff;
  box-shadow:-10px 0 24px rgba(15,23,32,.12);
  transform:translateX(100%);
  transition:transform .25s ease;
  z-index:60;padding:18px;
}
.drawer.is-open{transform:translateX(0)}
.drawer__nav{display:grid;gap:12px;margin-bottom:10px}
.drawer__link{display:block;background:#fff;border:1px solid var(--line);padding:12px 14px;border-radius:12px;text-decoration:none}

/* Hero */
.hero{position:relative;overflow:hidden;padding:72px 0}
.hero__bg{
  position:absolute;inset:-20% -10% auto -10%;height:60%;
  background:radial-gradient(36rem 16rem at 50% 40%,rgba(47,161,219,.28),transparent 70%);
  pointer-events:none;z-index:-1;
}
.hero__badge{
  display:inline-block;background:#e6f6ff;color:var(--brand-deep);
  padding:8px 14px;border-radius:999px;font-weight:700
}
.hero__title{margin:18px 0;font-size:1.9rem;font-weight:800;line-height:1.55}
.hero__title .em{color:var(--brand)}
.hero__lead{max-width:640px;color:var(--muted);margin-bottom:24px}
.hero__ctas{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px}
.bubbles{display:flex;flex-wrap:wrap;gap:12px}
.bubble{background:#fff;border-radius:16px;padding:10px 16px;box-shadow:var(--shadow);font-weight:700;color:var(--brand-deep)}

/* Sections */
.section{padding:64px 0}
.section__title{font-size:1.6rem;font-weight:800;margin-bottom:20px;color:var(--text)}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.card{background:var(--surface);border-radius:var(--radius);padding:20px 22px;box-shadow:var(--shadow);border:1px solid var(--line)}
.card h3{font-size:1.12rem;margin-top:0;color:var(--brand-deep)}
.card p{margin-top:6px;margin-bottom:0;font-size:.95rem;color:var(--muted)}

/* Price Table */
.table-wrap{overflow-x:auto;background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);border:1px solid var(--line)}
.price-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed; /* 各列幅を均等化 */
  min-width:600px;
}
.price-table th,
.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  line-height: 1.6;
  word-break: keep-all;       /* 英数字は1語で保持 */
  white-space: normal;        /* ← 折り返しを許可 */
  overflow: visible;          /* ← 省略せず表示 */
  text-overflow: unset;       /* ← 「…」を無効化 */
}
.price-table th{
  background:#f3f9fc;
  font-weight:800;
  color:var(--brand-deep);
}
.price-table td.price{
  font-variant-numeric:tabular-nums;
  text-align:center; /* 金額も中央 */
  font-weight:500; /* ← 通常の太さに変更 */
}
.price-table .tax{white-space:nowrap;font-size:.85rem;color:var(--muted)}
.note{margin-top:12px;color:var(--muted);font-size:.9rem}
.others{margin-top:28px}
.others__title{margin-bottom:10px;color:var(--brand-deep);font-size:1.1rem;font-weight:800}
.dots{list-style:disc;padding-left:1.4rem;color:var(--muted);font-size:.95rem}

/* FAQ */
.faq{margin-bottom:12px;border:1px solid var(--line);border-radius:var(--radius);padding:10px 14px;background:#fff;box-shadow:var(--shadow)}
.faq summary{cursor:pointer;list-style:none;font-weight:800;color:var(--brand-deep)}
.faq summary::-webkit-details-marker{display:none}
.faq__a{margin-top:8px;color:var(--muted);font-size:.95rem}

/* Access */
.access{display:grid;gap:24px}
.access__info p{margin:4px 0}
.access__name{font-weight:800;color:var(--brand-deep)}
.map iframe{width:100%;height:300px;border-radius:var(--radius);border:1px solid var(--line);box-shadow:var(--shadow)}
.link{color:var(--brand-deep);text-decoration:underline}

/* Floating CTA */
.floating{
  position:fixed;right:18px;bottom:18px;z-index:40;
  display:inline-grid;place-items:center;width:132px;height:48px;
  background:linear-gradient(135deg,#35a8e3,#1484c7);color:#fff;border-radius:999px;
  text-decoration:none;font-weight:800;box-shadow:0 16px 28px rgba(20,132,199,.25);
}

/* Footer */
.site-footer{padding:32px 0 40px;background:var(--bg);border-top:1px solid var(--line)}
.footer__inner{display:flex;flex-direction:column;align-items:center;gap:10px}
.footer__inner small{color:var(--muted)}
.footer-nav{display:flex;flex-wrap:wrap;gap:16px;font-size:.9rem}
.footer-nav a{text-decoration:none;color:var(--brand-deep)}
.footer-nav a:hover{text-decoration:underline}

/* Responsive */
@media (max-width:768px){
  .pc-nav{display:none}
  .hamburger{display:block}
  .hero__title{font-size:1.7rem}
  .cards{grid-template-columns:1fr}
  .price-table{min-width:560px}
}

/* States */
a:hover,a:focus{opacity:.88;transition:.2s}
.btn:hover{opacity:.95}
