@charset "utf-8";
/* ==========================================================================
   SLAB | slab-gt.com  共通スタイル (site.css)
   全ページで最初に読み込む。各LPの css/style.css はこの後に読み、上書きできる。
   ========================================================================== */

/* ---------- トークン ---------- */
:root {
  --sl-blue: #0076c6;
  --sl-blue-dark: #005b9a;
  --sl-blue-soft: #e6f1fa;
  --sl-ink: #1a2129;
  --sl-ink-2: #4f5b66;
  --sl-ink-3: #8a949e;
  --sl-line: #dde3e9;
  --sl-bg: #ffffff;
  --sl-bg-soft: #f3f6f9;
  --sl-footer: #1c2229;
  --sl-footer-ink: #c9d1d9;
  --sl-font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --sl-font-latin: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --sl-container: 1000px;
  --sl-gutter: 20px;
  --sl-header-h: 60px;
}

/* ---------- ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--sl-bg);
  color: var(--sl-ink);
  font-family: var(--sl-font);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
iframe { max-width: 100%; }
a { color: var(--sl-blue); }
a:hover { color: var(--sl-blue-dark); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sl-blue); outline-offset: 3px; }
.img-responsive { width: 100%; height: auto; display: block; }
.text-c { text-align: center; }
.text-r { text-align: right; }
.text-l { text-align: left; }
.sl-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* PC / スマホ 出し分け（既存LPと同じクラス名） */
.pc { display: block; }
.smp { display: none; }
@media screen and (max-width: 672px) {
  .pc { display: none; }
  .smp { display: block; }
}

/* ---------- コンテナ ---------- */
.container { width: 100%; max-width: var(--sl-container); margin-inline: auto; padding-inline: var(--sl-gutter); }
.container--wide { max-width: 1200px; }
.container--narrow { max-width: 760px; }

/* ==========================================================================
   共通ヘッダー
   ========================================================================== */
.sl-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--sl-header-h);
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--sl-line);
}
.sl-header__inner {
  position: relative; height: 100%;
  max-width: 1200px; margin-inline: auto; padding-inline: var(--sl-gutter);
  display: flex; align-items: center; justify-content: center;
}
.sl-header__logo { display: inline-flex; align-items: center; line-height: 0; }
.sl-header__logo img { height: 26px; width: auto; }
.sl-header__menu-btn {
  position: absolute; right: var(--sl-gutter); top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 4px; border: 0; background: transparent; cursor: pointer;
  color: var(--sl-ink); font-family: var(--sl-font-latin); font-size: 12px; font-weight: 600; letter-spacing: .12em;
}
.sl-header__menu-btn svg { width: 24px; height: 24px; }
@media screen and (max-width: 672px) {
  :root { --sl-header-h: 52px; }
  .sl-header__logo img { height: 22px; }
  .sl-header__menu-btn span { display: none; }
}

/* ---------- オーバーレイメニュー ---------- */
.sl-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--sl-bg);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
}
.sl-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
@media (prefers-reduced-motion: reduce) { .sl-menu { transition: none; } }
.sl-menu__inner { max-width: 1000px; margin-inline: auto; padding: 0 var(--sl-gutter) 48px; }
.sl-menu__top { display: flex; align-items: center; justify-content: space-between; height: var(--sl-header-h); }
.sl-menu__top img { height: 26px; width: auto; }
.sl-menu__close {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 4px;
  border: 0; background: transparent; cursor: pointer; color: var(--sl-ink);
  font-family: var(--sl-font-latin); font-size: 12px; font-weight: 600; letter-spacing: .12em;
}
.sl-menu__close svg { width: 22px; height: 22px; }
.sl-menu__label {
  margin: 28px 0 12px; font-family: var(--sl-font-latin); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sl-blue);
}
.sl-menu__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.sl-menu__list li { border-bottom: 1px solid var(--sl-line); }
.sl-menu__list a {
  display: flex; align-items: baseline; gap: 10px; padding: 14px 0;
  color: var(--sl-ink); text-decoration: none; font-weight: 500;
}
.sl-menu__list a:hover { color: var(--sl-blue); }
.sl-menu__list .en { font-family: var(--sl-font-latin); font-weight: 700; letter-spacing: .04em; }
.sl-menu__list .ja { font-size: 12px; color: var(--sl-ink-3); }
.sl-menu__list a.is-store { color: var(--sl-blue); }
.sl-menu__sns { display: flex; gap: 14px; margin-top: 28px; }
.sl-menu__sns a { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--sl-line); border-radius: 50%; }
.sl-menu__sns img, .sl-menu__sns svg { width: 20px; height: 20px; }
.sl-menu__sns a { color: var(--sl-ink); }
@media screen and (max-width: 672px) {
  .sl-menu__list { grid-template-columns: 1fr; }
  .sl-menu__top img { height: 22px; }
}
body.sl-menu-open { overflow: hidden; }

/* ==========================================================================
   共通フッター
   ========================================================================== */
.sl-footer { background: var(--sl-footer); color: var(--sl-footer-ink); margin-top: 80px; font-size: 14px; line-height: 1.7; }
.sl-footer a { color: #fff; text-decoration: none; }
.sl-footer a:hover { color: #fff; text-decoration: underline; }
.sl-footer__inner { max-width: 1000px; margin-inline: auto; padding: 48px var(--sl-gutter) 28px; }
.sl-footer__grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 32px 48px; }
.sl-footer__brand img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.sl-footer__brand p { margin: 14px 0 0; font-size: 13px; color: var(--sl-footer-ink); }
.sl-footer__sns { display: flex; gap: 12px; margin-top: 18px; }
.sl-footer__sns a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid #3a434c; border-radius: 50%; }
.sl-footer__sns img, .sl-footer__sns svg { width: 16px; height: 16px; }
.sl-footer__sns a { color: #fff; }
.sl-footer__title { margin: 0 0 10px; font-family: var(--sl-font-latin); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #8a949e; }
.sl-footer__links { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
.sl-footer__links li { break-inside: avoid; padding: 3px 0; }
.sl-footer__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid #2c343c; display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; font-size: 12px; }
.sl-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.sl-footer__copy { margin: 0; color: #8a949e; font-family: var(--sl-font-latin); letter-spacing: .04em; }
@media screen and (max-width: 672px) {
  .sl-footer { margin-top: 56px; }
  .sl-footer__grid { grid-template-columns: 1fr; }
  .sl-footer__inner { padding-top: 36px; }
}

/* ==========================================================================
   商品ページの型（旧テンプレ系ページ用）
   ========================================================================== */
.product { padding-bottom: 8px; }
.product__hero { max-width: 1400px; margin: 0 auto; }
.product__hero img { width: 100%; height: auto; display: block; }
.section { padding-block: 56px; }
.section--tight { padding-block: 32px; }
.section--soft { background: var(--sl-bg-soft); }
.section > .container > :first-child { margin-top: 0; }
.section > .container > :last-child { margin-bottom: 0; }
@media screen and (max-width: 672px) { .section { padding-block: 40px; } }

.eyebrow { display: block; margin: 0 0 6px; font-family: var(--sl-font-latin); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sl-blue); }
.section-title { margin: 0 0 24px; font-size: 26px; font-weight: 700; line-height: 1.45; letter-spacing: .02em; text-wrap: balance; }
.section-title::after { content: ""; display: block; width: 40px; height: 3px; margin-top: 14px; background: var(--sl-blue); }
.section-title.is-center { text-align: center; }
.section-title.is-center::after { margin-inline: auto; }
.section-sub { margin: 32px 0 12px; font-size: 19px; font-weight: 700; line-height: 1.5; color: var(--sl-ink); }
.section-sub--accent { color: var(--sl-blue); }
.lead { font-size: 17px; font-weight: 500; line-height: 2; }
.prose p { margin: 0 0 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { padding-left: 1.4em; }
.prose li { margin: .3em 0; }
.prose strong { font-weight: 700; }
.price { font-family: var(--sl-font-latin); font-size: 20px; font-weight: 700; letter-spacing: .02em; }
.price small { font-family: var(--sl-font); font-size: 13px; font-weight: 400; color: var(--sl-ink-2); }
.caption { font-size: 13px; color: var(--sl-ink-2); }
.figure { margin: 24px 0; text-align: center; }
.figure img { display: inline-block; }
.figure--full img { width: 100%; }
@media screen and (max-width: 672px) {
  .section-title { font-size: 22px; }
  .section-sub { font-size: 17px; }
  .lead { font-size: 16px; }
}

/* 2カラム（画像＋文） */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; align-items: center; }
.split--rev > :first-child { order: 2; }
@media screen and (max-width: 672px) { .split { grid-template-columns: 1fr; gap: 20px; } .split--rev > :first-child { order: 0; } }

/* 特徴リスト（アイコン＋説明） */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 40px; }
.feature-list li { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; }
.feature-list img { width: 72px; height: auto; }
.feature-list h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; line-height: 1.4; }
.feature-list p { margin: 0; font-size: 15px; color: var(--sl-ink-2); }
.feature-list em, .feature-list .mark { font-style: normal; color: var(--sl-blue); font-weight: 700; }
@media screen and (max-width: 672px) { .feature-list { grid-template-columns: 1fr; gap: 22px; } }

/* 動画 */
.movie { position: relative; width: 100%; max-width: 840px; margin: 24px auto; aspect-ratio: 16 / 9; background: #000; }
.movie iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.movie + .movie { margin-top: 24px; }

/* 注意書きボックス */
.notice { margin: 32px 0; padding: 22px 24px; border: 1px solid var(--sl-line); border-left: 4px solid var(--sl-blue); background: var(--sl-bg-soft); }
.notice__title { margin: 0 0 10px; font-size: 17px; font-weight: 700; }
.notice ul { margin: 0; padding-left: 1.3em; }
.notice li { margin: .25em 0; }
.notice p { margin: .5em 0 0; }
.notice--warn { border-left-color: #d13b2c; }
.notice--warn .notice__title { color: #d13b2c; }

/* 仕様テーブル */
.spec { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec th, .spec td { padding: 10px 14px; border-bottom: 1px solid var(--sl-line); text-align: left; vertical-align: top; }
.spec th { width: 32%; font-weight: 500; color: var(--sl-ink-2); background: var(--sl-bg-soft); }

/* 手順（番号付き） */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 28px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; align-items: center; }
.steps li::before { content: counter(step, decimal-leading-zero); grid-column: 1 / -1; font-family: var(--sl-font-latin); font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--sl-blue); }
.steps img { width: 100%; height: auto; }
.steps p { margin: 0; font-size: 15px; }
@media screen and (max-width: 672px) { .steps li { grid-template-columns: 1fr; } }

/* 購入導線 */
.store-cta { text-align: center; padding: 8px 0; }
.store-cta__text { margin: 0 0 14px; font-size: 15px; color: var(--sl-ink-2); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 34px; border-radius: 999px;
  background: var(--sl-blue); color: #fff; text-decoration: none;
  font-family: var(--sl-font-latin); font-weight: 700; font-size: 15px; letter-spacing: .06em;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--sl-blue-dark); color: #fff; transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn--ghost { background: transparent; color: var(--sl-blue); border: 2px solid var(--sl-blue); }
.btn--ghost:hover { background: var(--sl-blue-soft); color: var(--sl-blue-dark); }
.btn--dark { background: var(--sl-ink); }
.btn--dark:hover { background: #000; }
.store-cta .btn { min-width: 280px; }
@media screen and (max-width: 672px) { .store-cta .btn { width: 100%; min-width: 0; } }

/* ページ先頭へ */
.sl-totop {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--sl-line);
  background: rgba(255,255,255,.95); color: var(--sl-ink); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility 0s linear .2s;
}
.sl-totop.is-visible { opacity: 1; visibility: visible; transition-delay: 0s; }
.sl-totop svg { width: 18px; height: 18px; }

/* ==========================================================================
   共通部品をLP側CSSから切り離す（全ページで同一に見せるための固定）
   ========================================================================== */
body { width: auto !important; max-width: none !important; margin: 0 !important; padding: 0 !important; }
.sl-header, .sl-menu, .sl-footer, .sl-totop {
  font-family: var(--sl-font); font-size: 16px; line-height: 1.6; letter-spacing: 0;
  font-weight: 400; font-style: normal; color: var(--sl-ink); text-align: left; text-shadow: none;
}
.sl-header *, .sl-menu *, .sl-footer * { box-sizing: border-box; letter-spacing: inherit; }
.sl-header a, .sl-menu a { text-decoration: none; }
.sl-header a:hover img, .sl-menu a:hover img, .sl-footer a:hover img { opacity: 1; }
.sl-header img, .sl-menu img, .sl-footer img { vertical-align: middle; border: 0; }
.sl-menu__list, .sl-footer__links, .sl-footer__legal { list-style: none; }
.sl-menu__list li, .sl-footer__links li, .sl-footer__legal li { list-style: none; margin: 0; }
.sl-menu__label, .sl-footer__title, .sl-footer__brand p, .sl-footer__copy { display: block; }
.sl-menu__list .en, .sl-menu__close, .sl-header__menu-btn, .sl-menu__label, .sl-footer__title, .sl-footer__copy { font-family: var(--sl-font-latin); }
.sl-menu__list .ja { font-family: var(--sl-font); }
.sl-header__menu-btn, .sl-menu__close, .sl-totop { font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.sl-menu__label, .sl-footer__title { font-weight: 700; letter-spacing: .18em; }
.sl-menu__list a { font-size: 16px; font-weight: 500; }
.sl-menu__list .ja { font-size: 12px; font-weight: 400; }
.sl-footer { font-size: 14px; line-height: 1.7; color: var(--sl-footer-ink); }
.sl-footer a { color: #fff; }
.sl-footer__bottom { font-size: 12px; }
.sl-footer__brand p { font-size: 13px; }
.sl-footer__title { font-size: 11px; }
/* LPの本体幅は body ではなく .sl-page で持つ */
.sl-page { margin: 0 auto; }

/* グリッド内の画像がトラックを押し広げないようにする */
.split > *, .steps li > *, .feature-list li > *, .ms-product > *, .ib-waxes li > *, .rb-item > *, .rb-hero__inner > *, .rb-kitbanner > *, .rk-hero__inner > *, .rk-steps li > *, .mg-people li > *, .mg-pair > *, .tc-spec > * { min-width: 0; }

.sns__list svg { width: 22px; height: 22px; color: var(--sl-ink); }
