/* ==========================================================================
   IZNM セットアップ LP — iznm-setup-lp.css
   Task 186-B: /setup-lp/ 専用（is_page(['setup-lp']) で条件読み込み）

   規約（brand-design-system.md §6.1 v3.15 の LP 限定 [MAY]）:
     ① LP（page-blank.php）である
     ② 専用ファイルに分離し条件読み込みする
     ③ 本体 DS トークン（iznm 接頭辞の CSS 変数）と非混用 ＝ 本ファイルは
        本体 DS の CSS 変数を 1 箇所も参照しない（生 hex / ローカル値のみ）
   すべてのクラスは .slp- プレフィックス。優先度上書き宣言は 1 箇所も使わない。
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. メインサイト CSS の浸潤対策（iznm-base.css の裸の要素セレクタ）
   iznm-setup-lp.css は deps ['iznm-app'] ＝ iznm-base.css より後に読まれる。
   未宣言のプロパティは base.css が貫通するため、下記を明示宣言する。
   リセットは :where()（特異度 0）で書き、.slp-* 部品（0,1,0）が必ず勝つようにする
   （107 が優先度上書き宣言を要した原因＝リセットが部品に特異度で勝ってしまう構造を回避）。
   -------------------------------------------------------------------------- */

/* body: iznm-base.css の body 背景（DS の深色トークン）を打ち消す */
body.page-template-page-blank:has(.slp-canvas) {
  background: #e9e6df;
  margin: 0;
  padding: 0;
}

/* iznm_render_qr_scanner_overlay()（wp_footer priority 30）が page-blank にも
   出力されるため LP 側で非表示にする。live の実クラスは .iznm-qr-scanner */
body.page-template-page-blank:has(.slp-canvas) .iznm-qr-scanner {
  display: none;
}

/* iznm-base.css:27-35 h1-h6{color/font-family/font-weight/margin-bottom}
   ＋ :33-35 / :168-170 の h1/h2/h3 font-size */
:where(.slp-canvas) h1,
:where(.slp-canvas) h2,
:where(.slp-canvas) h3,
:where(.slp-canvas) h4,
:where(.slp-canvas) h5,
:where(.slp-canvas) h6 {
  color: inherit;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
/* iznm-base.css:37-40 の p, div, span, li への font-family 指定を打ち消す */
:where(.slp-canvas) p,
:where(.slp-canvas) div,
:where(.slp-canvas) span,
:where(.slp-canvas) li {
  font-family: inherit;
}
:where(.slp-canvas) p {
  margin: 0;
}
/* iznm-base.css に label 規則は無いが、STEP5 タブに使うため明示する */
:where(.slp-canvas) label {
  font-family: inherit;
  cursor: pointer;
}
:where(.slp-canvas) figure {
  margin: 0;
}
:where(.slp-canvas) img {
  max-width: 100%;
}
:where(.slp-canvas) details > summary {
  list-style: none;
}
:where(.slp-canvas) details > summary::-webkit-details-marker {
  display: none;
}

/* --------------------------------------------------------------------------
   1. キャンバス
   -------------------------------------------------------------------------- */
.slp-canvas {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 60px rgba(0, 0, 0, .12);
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
.slp-canvas ::selection {
  background: #d4a574;
  color: #111;
}

@keyframes slpDrift {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(7px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   2. セクション共通
   -------------------------------------------------------------------------- */
.slp-sec {
  padding: 52px 28px;
}

.slp-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.slp-caption__slash {
  height: 16px;
  width: auto;
  display: inline-block;
}
.slp-caption__label {
  font-size: 11px;
  letter-spacing: .24em;
  font-weight: 700;
  color: #b08a52;
}
.slp-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px;
}

/* --------------------------------------------------------------------------
   3. Hero（白）
   -------------------------------------------------------------------------- */
.slp-hero {
  background: #fff;
  padding: 56px 28px 40px;
  text-align: center;
}
.slp-hero__logo {
  height: 34px;
  width: auto;
  display: inline-block;
}
.slp-hero__yomi {
  font-size: 11px;
  letter-spacing: .34em;
  color: #9a9a9a;
  margin-top: 12px;
  font-weight: 500;
}
.slp-hero__h1 {
  font-size: 31px;
  line-height: 1.5;
  font-weight: 700;
  color: #141414;
  margin: 34px 0 0;
  letter-spacing: .01em;
  text-wrap: balance;
}
.slp-hero__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.slp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e3ded2;
  background: #faf8f3;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: #3a3a3a;
}
.slp-hero__arrow {
  margin-top: 44px;
  color: #c0b9a6;
}
.slp-hero__arrow-ic {
  animation: slpDrift 2.4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   4. つながると、イイコト（サンド）
   -------------------------------------------------------------------------- */
.slp-why {
  background: #f4f1ea;
}
.slp-why__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #eae4d6;
  border-radius: 12px;
  padding: 18px;
}
.slp-card__chip {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f4f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slp-card__chip--zap  { color: #a30000; }
.slp-card__chip--bell { color: #3d7ab5; }
.slp-card__chip--gift { color: #3d9970; }
.slp-card__text {
  font-size: 15px;
  font-weight: 500;
  color: #242424;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   5. はじめかた（白・主役）
   -------------------------------------------------------------------------- */
.slp-how {
  background: #fff;
  padding: 56px 28px 20px;
}
.slp-how__h2 {
  font-size: 24px;
  margin: 0 0 4px;
}
.slp-how__lead {
  font-size: 14px;
  color: #7a7a7a;
  margin: 0 0 36px;
  font-weight: 500;
}

.slp-step {
  margin-bottom: 44px;
}
.slp-step--last {
  margin-bottom: 8px;
}
.slp-step__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.slp-step__num {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
/* ★確定事項 3（186-B STEP9 案A・AA 厳守）: handoff の #bdbdbd（1.88:1）を採らず #767676（4.54:1・AA 適合）。「/ 5」は 14px で AA Large 非該当のため 4.5:1 が必要 */
.slp-step__of {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #767676;
  font-weight: 500;
}
.slp-step__h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0 4px;
}
.slp-step__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.slp-step__note {
  font-size: 14.5px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 14px 2px 0;
  font-weight: 400;
}
.slp-step__note-em {
  color: #3d9970;
  font-weight: 700;
}

/* ---- 端末モック（STEP 2 / 3 / 4） ---- */
.slp-phone {
  width: 210px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  border: 1px solid #050505;
  display: flex;
  flex-direction: column;
}
.slp-phone--left {
  text-align: left;
}
.slp-phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 2px;
  font-size: 8px;
  color: #9a9a9a;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.slp-phone__status--light {
  padding: 8px 12px 2px;
  color: #333;
}
.slp-phone__time {
  font-weight: 600;
}
.slp-phone__sys {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.slp-ic-batt {
  width: 12px;
  height: 8px;
}
.slp-phone__brand {
  display: flex;
  justify-content: center;
  padding: 8px 0 10px;
  border-bottom: 1px solid #2a2a2a;
}
.slp-phone__brandimg {
  height: 10px;
  width: auto;
}
.slp-phone__nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 10px;
  border-bottom: 1px solid #2a2a2a;
}
.slp-phone__navtitle {
  font-size: 11px;
  color: #dddddd;
  font-weight: 700;
}
.slp-phone__body {
  padding: 15px 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slp-phone__body--edit {
  padding-top: 14px;
}
.slp-phone__body--center {
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}
.slp-phone__foot {
  padding: 12px 16px 18px;
}

.slp-mock-title {
  font-size: 12px;
  color: #dddddd;
  font-weight: 700;
}
.slp-field__label {
  font-size: 7px;
  letter-spacing: .16em;
  color: #8f8f8f;
  font-weight: 700;
  margin-bottom: 5px;
}
.slp-field__box {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 7px 9px;
  font-size: 9.5px;
  color: #dddddd;
}
.slp-field__box--area {
  font-size: 9px;
  line-height: 1.5;
  min-height: 34px;
}
.slp-mock-hint {
  font-size: 7.5px;
  color: #7f7f7f;
  line-height: 1.5;
}
.slp-mock-btn {
  background: #d9d9d9;
  color: #3a3a3a;
  text-align: center;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* STEP 3 固有 */
.slp-mock-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(61, 153, 112, .15);
  border: 1.5px solid #3d9970;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d9970;
}
.slp-mock-done {
  font-size: 9px;
  letter-spacing: .26em;
  color: #3d9970;
  font-weight: 700;
}
.slp-mock-shop {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #999;
}
.slp-mock-shop__icon {
  width: 14px;
  height: 14px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 3px;
  display: inline-block;
}
.slp-mock-counts {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.slp-mock-count {
  text-align: center;
}
.slp-mock-count__num {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ddd;
  line-height: 1;
}
.slp-mock-count__label {
  font-size: 6.5px;
  letter-spacing: .15em;
  color: #7f7f7f;
  margin-top: 3px;
}
.slp-mock-pill {
  background: rgba(61, 153, 112, .14);
  color: #5fcc99;
  border: 1px solid #3d9970;
  text-align: center;
  border-radius: 999px;
  padding: 9px 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* STEP 4 固有 */
.slp-mock-avatarrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slp-mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}
.slp-mock-photolink {
  font-size: 9px;
  color: #3d7ab5;
  font-weight: 600;
}
.slp-mock-sns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slp-mock-sns__row {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  padding: 6px 9px;
}
.slp-mock-sns__text {
  font-size: 9px;
  color: #dddddd;
}

/* --------------------------------------------------------------------------
   6. STEP 5（最強調・iOS / Android タブは純 CSS）
   -------------------------------------------------------------------------- */
.slp-step4 {
  position: relative;
  margin: 0 -6px 44px;
  background: #fbf4e6;
  border: 2px solid #d4a574;
  border-radius: 16px;
  padding: 26px 22px 24px;
}
.slp-step4.slp-step--last {
  margin-bottom: 8px;
}
/* radio は display:none にしない（キーボードフォーカス不能になり
   Android パネルへ到達できなくなるため）＝ visually-hidden */
.slp-os {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
.slp-step4__ribbon {
  position: absolute;
  top: -13px;
  left: 22px;
  background: #d4a574;
  color: #3a2a10;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.slp-step__head--gold {
  margin-top: 6px;
  margin-bottom: 10px;
}
.slp-step__num--gold {
  font-size: 38px;
  color: #a97e3d;
}
/* STEP 5 の「/ 5」（186-B STEP9 案A）: handoff #cbb488 は #fbf4e6 上で 1.84:1 のため、既存のキャプション色 #7a5f2c（5.48:1・AA 適合）に統一 */
.slp-step__of--gold {
  color: #7a5f2c;
}
.slp-step__h3--gold {
  font-size: 19px;
  color: #5a4319;
}
.slp-step4__lead {
  font-size: 14.5px;
  color: #5a4a2c;
  line-height: 1.75;
  margin: 0 0 20px;
  font-weight: 500;
}

/* タブ（label + hidden radio・非アクティブが既定スタイル） */
.slp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.slp-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all .15s ease;
  background: #fff;
  color: #a98f5f;
  border: 1px solid #e6d6b8;
}
#slp-os-ios:checked ~ .slp-tabs .slp-tab--ios,
#slp-os-android:checked ~ .slp-tabs .slp-tab--android {
  background: #d4a574;
  color: #3a2a10;
  border-color: #d4a574;
}
#slp-os-ios:focus-visible ~ .slp-tabs .slp-tab--ios,
#slp-os-android:focus-visible ~ .slp-tabs .slp-tab--android {
  outline: 2px solid #a97e3d;
  outline-offset: 2px;
}

.slp-panel {
  display: none;
}
#slp-os-ios:checked ~ .slp-panel--ios,
#slp-os-android:checked ~ .slp-panel--android {
  display: block;
}

/* OS 画面ショット（2 枚横並び） */
.slp-shots {
  display: flex;
  gap: 12px;
}
.slp-shot {
  flex: 1;
}
.slp-shot__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.slp-shot__frame--iosshare {
  background: #000;
  border: 1px solid #050505;
}
.slp-shot__frame--iosdialog {
  background: #f7f7f9;
  border: 1px solid #ddd;
}
.slp-shot__frame--android {
  background: #1a1a1a;
  border: 1px solid #050505;
}
.slp-shot__frame--rel {
  position: relative;
}
.slp-shot__frame--bottom {
  justify-content: flex-end;
}
.slp-shot__spacer {
  flex: 1;
}
.slp-shot__cap {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #7a5f2c;
}
.slp-shot__capnum {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* iOS: 共有シート */
.slp-ios-urlwrap {
  padding: 9px 10px 0;
}
.slp-ios-urlbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #2b2b2d;
  border-radius: 8px;
  padding: 5px 8px;
}
.slp-ios-urlbar__text {
  font-size: 7px;
  color: #bbb;
}
.slp-ios-sheet {
  background: #ececf0;
  border-radius: 14px 14px 0 0;
  padding: 9px 9px 11px;
}
.slp-ios-sheet__grip {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #c4c4cc;
  margin: 0 auto 9px;
}
.slp-ios-app {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 9px;
  padding: 6px 8px;
  margin-bottom: 8px;
}
.slp-ios-app__icon {
  flex: none;
  width: 22px;
  height: 22px;
  background: #111;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slp-ios-app__icon img {
  height: 11px;
  width: auto;
}
.slp-ios-app__name {
  font-size: 8px;
  color: #111;
  font-weight: 600;
}
.slp-ios-app__sub {
  font-size: 6.5px;
  color: #8a8a8a;
}
.slp-ios-list {
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
}
.slp-ios-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
  border-bottom: 1px solid #eee;
  font-size: 8px;
  color: #111;
}
.slp-ios-row--hl {
  padding: 8px 9px;
  background: #e9f2ff;
  color: #0a68d6;
  font-weight: 700;
}
.slp-ios-row--last {
  border-bottom: none;
}

/* iOS: ホーム画面に追加ダイアログ */
.slp-ios-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid #e2e2e6;
}
.slp-ios-bar__cancel {
  font-size: 9px;
  color: #0a68d6;
}
.slp-ios-bar__title {
  font-size: 9.5px;
  color: #111;
  font-weight: 700;
}
.slp-ios-bar__add {
  font-size: 9px;
  color: #0a68d6;
  font-weight: 700;
}
.slp-ios-dialog {
  padding: 14px 13px;
}
.slp-ios-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e2e2e6;
  border-radius: 10px;
  padding: 9px;
}
.slp-ios-card__icon {
  flex: none;
  width: 40px;
  height: 40px;
  background: #111;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slp-ios-card__icon img {
  height: 20px;
  width: auto;
}
.slp-ios-card__body {
  flex: 1;
}
.slp-ios-card__name {
  font-size: 9px;
  color: #111;
  font-weight: 600;
  border-bottom: 1px solid #e8e8ec;
  padding-bottom: 5px;
}
.slp-ios-card__url {
  font-size: 7px;
  color: #999;
  padding-top: 5px;
}
.slp-ios-note {
  font-size: 7px;
  color: #8a8a8a;
  margin-top: 10px;
  line-height: 1.55;
}

/* Android: Chrome メニュー / インストールダイアログ */
.slp-and-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  background: #2b2b2d;
}
.slp-and-url {
  flex: 1;
  background: #3a3a3d;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 7px;
  color: #bbb;
}
.slp-and-menu {
  position: absolute;
  top: 34px;
  right: 8px;
  width: 62%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
  overflow: hidden;
  padding: 4px 0;
}
.slp-and-menu__row {
  padding: 7px 12px;
  font-size: 8px;
  color: #333;
}
.slp-and-menu__row--hl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  color: #0a68d6;
  font-weight: 700;
  background: #e9f2ff;
}
.slp-and-sheet {
  background: #fff;
  border-radius: 16px 16px 14px 14px;
  padding: 14px 13px;
}
.slp-and-sheet__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slp-and-sheet__icon {
  flex: none;
  width: 40px;
  height: 40px;
  background: #111;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slp-and-sheet__icon img {
  height: 20px;
  width: auto;
}
.slp-and-sheet__title {
  font-size: 9.5px;
  color: #111;
  font-weight: 700;
}
.slp-and-sheet__url {
  font-size: 7px;
  color: #8a8a8a;
  margin-top: 2px;
}
.slp-and-sheet__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 14px;
}
.slp-and-cancel {
  font-size: 9px;
  color: #0a68d6;
  font-weight: 700;
  padding: 5px 8px;
}
.slp-and-install {
  font-size: 9px;
  color: #fff;
  background: #0a68d6;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

/* 通知 ON 訴求カード */
.slp-notify {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  background: #fff;
  border: 1px solid #ecdcbb;
  border-radius: 10px;
  padding: 13px 14px;
}
.slp-notify__chip {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fbf4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a97e3d;
}
.slp-notify__title {
  font-size: 13px;
  font-weight: 700;
  color: #5a4319;
  margin-bottom: 3px;
}
.slp-notify__text {
  font-size: 12.5px;
  color: #6a5836;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   7. できること（サンド）
   -------------------------------------------------------------------------- */
.slp-more {
  background: #f4f1ea;
}
.slp-more__figure {
  margin: 0;
}
.slp-more__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.slp-more__note {
  font-size: 13.5px;
  color: #6a6a6a;
  line-height: 1.7;
  margin: 14px 4px 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. FAQ（白・ネイティブ details）
   -------------------------------------------------------------------------- */
.slp-faq {
  background: #fff;
}
.slp-faq__list {
  border-top: 1px solid #ececec;
}
.slp-faq__item {
  border-bottom: 1px solid #ececec;
}
.slp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.slp-faq__chevron {
  flex: none;
}
.slp-faq__a {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0 2px 20px;
}

/* --------------------------------------------------------------------------
   9. 締め（黒）
   -------------------------------------------------------------------------- */
.slp-outro {
  background: #111;
  padding: 72px 28px 40px;
  text-align: center;
}
.slp-outro__slashes {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.slp-outro__slash {
  height: 20px;
  width: auto;
  display: inline-block;
  opacity: .9;
}
.slp-outro__copy {
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  letter-spacing: .01em;
}
.slp-outro__connect {
  letter-spacing: .06em;
}
.slp-outro__copyright {
  margin-top: 56px;
  font-size: 11px;
  color: #666;
  letter-spacing: .04em;
}
