@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@500;700;900&family=Outfit:wght@600;700;800&display=swap');

.pageheaderwidepics{display:none;}

/* ---------- 変数（カスタムプロパティのみ：表示には影響しない） ---------- */
:root {
  --lso-red: #d70035;
  --lso-red-dark: #ab002a;
  --lso-red-tint: #fbe6eb;
  --lso-ink: #14110f;
  --lso-ink-soft: #4a4441;
  --lso-paper: #ffffff;
  --lso-sand: #eee9e6;
  --lso-sand-deep: #e2dad5;
  --lso-line: #e6ded9;

  --lso-shadow-sm: 0 2px 8px rgba(20, 17, 15, .06);
  --lso-shadow-md: 0 10px 30px rgba(20, 17, 15, .08);
  --lso-shadow-lg: 0 24px 60px rgba(20, 17, 15, .12);

  --lso-radius: 18px;
  --lso-radius-lg: 28px;
  --lso-maxw: 1120px;

  --lso-sans: "Noto Sans JP", system-ui, sans-serif;
  --lso-round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --lso-latin: "Outfit", "Noto Sans JP", sans-serif;
}

/* ---------- 各セクション基準のベース・リセット（この4ブロック配下だけに限定） ---------- */
.lso-hero, .lso-section, .lso-site-footer, .lso-mobile-cta-bar {
  font-family: var(--lso-sans);
  color: var(--lso-ink);
  line-height: 1.85;
  font-feature-settings: "palt" 1;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
.lso-hero, .lso-hero *, .lso-hero *::before, .lso-hero *::after,
.lso-section, .lso-section *, .lso-section *::before, .lso-section *::after,
.lso-site-footer, .lso-site-footer *, .lso-site-footer *::before, .lso-site-footer *::after,
.lso-mobile-cta-bar, .lso-mobile-cta-bar *, .lso-mobile-cta-bar *::before, .lso-mobile-cta-bar *::after {
  box-sizing: border-box;
}
.lso-hero img, .lso-hero svg,
.lso-section img, .lso-section svg,
.lso-site-footer img, .lso-site-footer svg,
.lso-mobile-cta-bar img, .lso-mobile-cta-bar svg { max-width: 100%; display: block; }
.lso-hero a, .lso-section a, .lso-site-footer a, .lso-mobile-cta-bar a {text-decoration: none;}
.lso-hero ul, .lso-hero ol,
.lso-section ul, .lso-section ol,
.lso-site-footer ul, .lso-site-footer ol { margin: 0; padding: 0; list-style: none; }
.lso-hero h2, .lso-hero h2, .lso-hero h3, .lso-hero h4, .lso-hero h5, .lso-hero p,
.lso-section h2, .lso-section h2, .lso-section h3, .lso-section h4, .lso-section h5, .lso-section p,
.lso-site-footer h2, .lso-site-footer h2, .lso-site-footer h3, .lso-site-footer h4, .lso-site-footer h5, .lso-site-footer p { margin: 0; }

/* スティッキー要素を後で足す場合のアンカー補正（任意） */
.lso-section[id], .lso-hero[id] { scroll-margin-top: 24px; }

/* ---------- layout helpers ---------- */
.lso-wrap { width: min(var(--lso-maxw), 92vw); margin-inline: auto; }
.lso-section { padding: clamp(64px, 9vw, 120px) 0;width: 100vw;margin: 0 calc(50% - 50vw);padding: 10rem 0rem;}
.lso-section--sand { background: var(--lso-sand); }
.lso-section--ink { background: var(--lso-red-tint); color: var(--lso-paper); }

/* ---------- type scale ---------- */
.lso-eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--lso-latin);
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: .22em;
  color: var(--lso-red);
  text-transform: uppercase;
	align-items: center;
    justify-content: center;
    width: 100%;
}
.lso-eyebrow::before {
  content: ""; width: 30px; height: 3px; background: var(--lso-red); border-radius: 2px;
}
.lso-eyebrow--center { justify-content: center; }
.lso-section--ink .lso-eyebrow { color: #ff5277; }

.lso-s-head { margin-bottom: clamp(36px, 5vw, 60px); max-width: 100%; }
.lso-s-head--center { margin-inline: auto; text-align: center; }
.lso-s-title {
  font-weight: 900;
  font-size: clamp(27px, 4.6vw, 46px);
  line-height: 1.28;
  letter-spacing: .005em;
  margin: 18px 0 0;
}
.lso-s-title .lso-hl {
  color: var(--lso-red);
  background: linear-gradient(transparent 64%, var(--lso-red-tint) 64%);
  padding-inline: .05em;
}
h2.lso-s-title{margin-bottom:20px;}
.lso-section--ink .lso-s-title .lso-hl { background: none; color: #ff6b8a; }
.lso-s-lead {
  margin-top: 18px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--lso-ink-soft);
  line-height: 1.95;
	text-align:center;
}
.lso-s-lead--center { margin-inline: auto; }
.lso-section--ink .lso-s-lead { color: #000; }

/* ---------- buttons ---------- */
.lso-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 17px 28px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.lso-btn .lso-ar { font-family: var(--lso-latin); font-weight: 700; }
.lso-btn--primary { background: var(--lso-red); color: #fff; box-shadow: 0 10px 24px rgba(215,0,53,.28); }
.lso-btn--primary:hover { background: var(--lso-red-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(215,0,53,.34); }
.lso-btn--ghost { background: #fff; color: var(--lso-ink); border: 1.5px solid var(--lso-line); }
.lso-btn--ghost:hover { border-color: var(--lso-red); color: var(--lso-red); transform: translateY(-2px); }
.lso-btn--ink { background: var(--lso-ink); color: #fff; }
.lso-btn--ink:hover { background: #2b2521; transform: translateY(-2px); }
.lso-btn--lg { padding: 20px 38px; font-size: 17px; }

/* =========================================================
   HERO / FV
   ========================================================= */
.lso-hero {position:relative; background: var(--lso-sand); overflow: hidden;width:100vw;margin: 0 calc(50% - 50vw);padding: 10rem 0rem;}
.lso-hero__grid {display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px);align-items: center;}
.lso-hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--lso-line); border-radius: 999px;
  padding: 8px 16px 8px 10px; font-size: 13px; font-weight: 700; color: var(--lso-ink-soft);
  box-shadow: var(--lso-shadow-sm); margin-bottom: 22px!important;
}
.lso-hero__kicker b { color: var(--lso-red); }
.lso-hero__kicker .lso-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lso-red); box-shadow: 0 0 0 4px var(--lso-red-tint); }
.lso-hero__title {
  font-weight: 900;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.18; letter-spacing: .002em;
	text-align:left;
	color:#000;
}
.lso-hero__title .lso-red { color: var(--lso-red); }
.lso-hero__title .lso-min { display: block; font-size: clamp(17px, 2.4vw, 27px); font-weight: 700; margin-top: 16px; color: var(--lso-ink); }
.lso-hero__lead { margin-top: 24px; font-size: clamp(15px, 1.55vw, 18px); color: var(--lso-ink-soft); max-width: 100%;width:100%;}
.lso-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; margin-bottom:30px;}
.lso-hero__cta .lso-btn--primary{color:#fff;}

.lso-hero__badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; max-width: 100%; }
.lso-fact {
  background: #fff; border: 1px solid var(--lso-line); border-radius: 16px;
  padding: 16px 16px 14px; display: flex; align-items: center; gap: 13px;
  box-shadow: var(--lso-shadow-sm);line-height:1.4;
}
.lso-fact__ic { flex: 0 0 auto; width: 40px; height: 40px; font-size:20px; border-radius: 11px; background: var(--lso-red-tint); color: var(--lso-red); display: grid; place-items: center; }
.lso-fact__ic svg { width: 23px; height: 23px; }
.lso-fact__t { font-weight: 700; font-size: 15px; line-height: 1.3; }
.lso-fact__d { font-size: 12px; color: var(--lso-ink-soft); line-height: 1.4; margin-top: 2px; }
.lso-fact i{margin-right:0;}

/* hero map card */
.lso-hero__visual { position: relative; }
.lso-mapcard {
  background: #fff; border-radius: var(--lso-radius-lg); padding: 22px;
  box-shadow: var(--lso-shadow-lg); border: 1px solid var(--lso-line);
}
.lso-mapcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.lso-mapcard__head h3 { font-family: var(--lso-round); font-size: 15px; font-weight: 700; width:40%; text-align:left;}
.lso-mapcard__tag { font-family: var(--lso-latin); font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--lso-red); background: var(--lso-red-tint); padding: 5px 11px; border-radius: 999px; }
.lso-minimap { position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; background: var(--lso-sand); }
.lso-mapcard__legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 16px; font-size: 12.5px; font-weight: 600; }
.lso-mapcard__legend span { display: inline-flex; align-items: center; gap: 7px; }
.lso-mapcard__legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.lso-legend--mt { margin-top: 16px; }
.lso-lg-juku { background: var(--lso-red); }
.lso-lg-koban { background: var(--lso-ink); }
.lso-lg-sta { background: #8a8079; }
.lso-lg-route { background:var(--lso-red); border-radius: 0; height: 4px; }
.lso-lg-shop { background: #fff; border: 2px solid var(--lso-red); }
.lso-lg-zone { background: var(--lso-red); opacity: .25; border-radius: 50%; }

/* =========================================================
   JOURNEY
   ========================================================= */
.lso-journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.lso-jstep { position: relative; padding: 0 18px; text-align: center; }
.lso-jstep:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -10px; width: 20px; height: 20px;
  border-top: 3px solid var(--lso-sand-deep); border-right: 3px solid var(--lso-sand-deep);
  transform: rotate(45deg);
}
.lso-jstep__num { font-family: var(--lso-latin); font-weight: 800; font-size: 13px; color: var(--lso-red); letter-spacing: .1em; }
.lso-jstep__ic { width: 66px; height: 66px; margin: 8px auto 14px; border-radius: 20px; background: #fff; border: 1px solid var(--lso-line); box-shadow: var(--lso-shadow-sm); display: grid; place-items: center; color: var(--lso-red); font-size: 23px;}
.lso-jstep__ic svg { width: 32px; height: 32px; }
.lso-jstep__ic i{margin-right:0;}
.lso-jstep__t { font-weight: 800; font-size: 17px; text-align:center;display:block;}
.lso-jstep__d { font-size: 13.5px; color: var(--lso-ink-soft); margin-top: 6px; line-height: 1.7; }

/* =========================================================
   generic content blocks
   ========================================================= */
.lso-split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.lso-split--rev .lso-split__media { order: -1; }

.lso-stack-list { display: grid; gap: 14px; margin-top: 26px; }
.lso-tile {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--lso-line); border-radius: 16px; padding: 18px 20px;
  box-shadow: var(--lso-shadow-sm);
}
.lso-tile--white { background: #fff; }
.lso-tile__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--lso-red-tint); color: var(--lso-red); display: grid; place-items: center; }
.lso-tile__ic svg { width: 24px; height: 24px; }
.lso-tile__ic i{margin-right:0;}
.lso-tile__t { font-weight: 800; font-size: 16px; }
.lso-tile__d { font-size: 14px; color: var(--lso-ink-soft); margin-top: 3px; line-height: 1.75; }

/* photo placeholders */
.lso-photo {
  position: relative; border-radius: var(--lso-radius); overflow: hidden;
  background: linear-gradient(135deg, var(--lso-sand) 0%, var(--lso-sand-deep) 100%);
  border: 1px solid var(--lso-line); aspect-ratio: 4/3;
  display: grid; place-items: center; text-align: center;
}
.lso-photo--sq { aspect-ratio: 1/1; }
.lso-photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.lso-photo__inner { color: var(--lso-ink-soft); }
.lso-photo__inner svg { width: 46px; height: 46px; margin: 0 auto 10px; opacity: .55; }
.lso-photo__inner b { display: block; font-size: 14px; font-weight: 700; color: var(--lso-ink); }
.lso-photo__inner small { font-size: 11.5px; opacity: .75; }
.lso-photo__tag {
  position: absolute; top: 12px; left: 12px; background: rgba(20,17,15,.78); color: #fff;
  font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 7px; backdrop-filter: blur(2px);
}

/* NAP card */
.lso-nap {
  background: var(--lso-ink); color: #fff; border-radius: var(--lso-radius); padding: 26px 28px;
  margin-top: 24px;
}
.lso-nap h4 { font-family: var(--lso-round); font-size: 16px; margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.lso-nap__rows { display: grid; gap: 11px; }
.lso-nap__row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; font-size: 14.5px; align-items: baseline; }
.lso-nap__row dt { color: #ff6b8a; font-weight: 700; font-size: 12.5px; letter-spacing: .04em; }
.lso-nap__row dd { margin: 0; color: #e9e3df; }
.lso-nap__row dd b { color: #fff; font-size: 17px; font-weight: 800; }

/* =========================================================
   SAFETY MAP
   ========================================================= */
.lso-safetymap {
  position: relative; aspect-ratio: 1/1; max-height: 520px; border-radius: var(--lso-radius-lg);
  overflow: hidden; box-shadow: var(--lso-shadow-md); border: 1px solid var(--lso-line);
  background: #f6f2ef;
}
.lso-qa-list { display: grid; gap: 14px; }
.lso-qa {
  background: #fff; border: 1px solid var(--lso-line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--lso-shadow-sm);
}
.lso-qa__q { display: flex; gap: 11px; font-weight: 800; font-size: 16px; align-items:center;margin-bottom:10px!important;}
.lso-qa__q .lso-badge-q { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--lso-red); color: #fff; font-family: var(--lso-latin); font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.lso-qa__a { display: flex; gap: 11px; margin-top: 10px; font-size: 14.5px; color: var(--lso-ink-soft); line-height: 1.8; }
.lso-qa__a .lso-badge-a { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--lso-sand-deep); color: var(--lso-ink); font-family: var(--lso-latin); font-weight: 800; display: grid; place-items: center; font-size: 14px; }
.lso-summary-banner {
  display: flex; gap: 14px; align-items: center; background: var(--lso-red-tint); border: 1px solid #f3c9d4;
  border-radius: 16px; padding: 18px 20px; margin-bottom: 20px;
}
.lso-summary-banner svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--lso-red); margin-top: 2px; }
.lso-summary-banner p { font-size: 14.5px; line-height: 1.8; }
.lso-summary-banner b { color: var(--lso-red); }
.lso-summary-banner i{margin-right:0;font-size: 25px;color:#D70035;}

/* =========================================================
   SEE-OFF STEP timeline
   ========================================================= */
.lso-steps-title { font-family: var(--lso-round); font-weight: 700; font-size: clamp(17px,2vw,21px); margin-bottom: 6px; }
.lso-steps-title__n { color: var(--lso-red); }
.lso-steps { position: relative; margin-top: 18px; }
.lso-steps__track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lso-stepcard {
  background: #fff; border: 1px solid var(--lso-line); border-radius: 18px; padding: 22px 16px 18px;
  text-align: center; box-shadow: var(--lso-shadow-sm); position: relative;
}
.lso-stepcard__n {
  width: 48px; height: 48px; margin: 0 auto 13px; border-radius: 50%;
  background: var(--lso-red); color: #fff; font-family: var(--lso-latin); font-weight: 800; font-size: 20px;
  display: grid; place-items: center; box-shadow: 0 8px 18px rgba(215,0,53,.32);
}
.lso-stepcard__ic { color: var(--lso-red); margin: 0 auto 8px; width:50px; height:50px; }
.lso-stepcard__t { font-weight: 800; font-size: 14.5px; line-height: 1.45; }
.lso-stepcard i{display:block;margin-right:0;text-align: center;margin: 20px auto;font-size: 35px;}

.lso-manner-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 30px; }

/* =========================================================
   ENTRY / SECURITY (chat notification)
   ========================================================= */
.lso-phone {
  width: 300px; max-width: 100%; margin: 0 auto;
  background: var(--lso-ink); border-radius: 34px; padding: 14px; box-shadow: var(--lso-shadow-lg);
}
.lso-phone__screen { background: var(--lso-sand); border-radius: 24px; overflow: hidden; }
.lso-phone__bar { background: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--lso-line); }
.lso-phone__bar .lso-av { width: 34px; height: 34px; border-radius: 10px; background: var(--lso-red); color: #fff; display: grid; place-items: center; font-family: var(--lso-round); font-weight: 700; font-size: 15px; }
.lso-phone__bar b { font-size: 13.5px; }
.lso-phone__bar small { display: block; font-size: 10.5px; color: var(--lso-ink-soft); }
.lso-phone__body { padding: 16px 14px 20px; display: grid; gap: 12px; }
.lso-msg { background: #fff; border-radius: 5px 16px 16px 16px; padding: 12px 14px; box-shadow: var(--lso-shadow-sm); max-width: 100%; }
.lso-msg__time { font-family: var(--lso-latin); font-size: 11px; font-weight: 700; color: var(--lso-red); letter-spacing: .04em; }
.lso-msg__txt { font-size: 14px; font-weight: 600; margin-top: 3px; }
.lso-msg--photo .lso-ph { margin-top: 8px; aspect-ratio: 16/10; border-radius: 9px; background: linear-gradient(135deg,var(--lso-sand),var(--lso-sand-deep)); display: grid; place-items: center; color: var(--lso-ink-soft); font-size: 11px; gap: 4px; }

.lso-security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
.lso-security-grid--1col { grid-template-columns: 1fr; }
.lso-scard { background: #fff; border: 1px solid var(--lso-line); border-radius: 18px; padding: 24px 22px; box-shadow: var(--lso-shadow-sm); }
.lso-scard__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--lso-ink); color: #fff; display: grid; place-items: center; margin-bottom: 0px; }
.lso-scard__ic svg { width: 26px; height: 26px; }
.lso-scard__ic i{margin-right:0;font-size: 25px;}
.lso-scard__t { font-weight: 800; font-size: 17px; }
.lso-scard__d { font-size: 13.5px; color: var(--lso-ink-soft); margin-top: 8px; line-height: 1.8; }
.lso-scard__check { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--lso-red); margin-bottom: 10px; }
.lso-scard-flex{display:flex;gap:5px;margin-bottom:10px;align-items:center;}


.lso-note-bar {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 24px;
  background: #fff; border: 1px dashed var(--lso-sand-deep); border-radius: 14px; padding: 16px 18px;
  font-size: 13px; color: var(--lso-ink-soft); line-height: 1.75;
}
.lso-note-bar svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--lso-ink-soft); margin-top: 2px; }

/* =========================================================
   RAINY + TOTAL story timeline
   ========================================================= */
.lso-rain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.lso-rcard { background: #fff; border: 1px solid var(--lso-line); border-radius: 18px; padding: 22px 20px; box-shadow: var(--lso-shadow-sm); }
.lso-rcard__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--lso-red-tint); color: var(--lso-red); display: grid; place-items: center; margin:0 auto 14px; }
.lso-rcard__ic svg { width: 26px; height: 26px; }
.lso-rcard__ic i{margin-right:0;}
.lso-rcard__t { font-weight: 800; font-size: 16px; }
.lso-rcard__d { font-size: 13px; color: var(--lso-ink-soft); margin-top: 6px; line-height: 1.75; }
.lso-rcard .lso-rcard__t{color:#D70035;text-align:center;}

.lso-story { margin-top: 44px; }
.lso-story__title { font-family: var(--lso-round); font-weight: 700; font-size: clamp(17px,2vw,21px); color: #000; margin-bottom: 30px!important; text-align: center; }
.lso-story__track { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; position: relative;margin-bottom:30px;}
.lso-story__track::before { content: ""; position: absolute; left: 6%; right: 6%; top: 19px; height: 3px; background: #fff; }
.lso-snode { position: relative; text-align: center; padding: 0 6px; }
.lso-snode__dot { width: 40px; height: 40px; margin: 0 auto 14px; border-radius: 50%; background: var(--lso-red); color: #fff; display: grid; place-items: center; position: relative; z-index: 1; box-shadow: 0 0 0 6px rgba(215,0,53,.18); }
.lso-snode__dot svg { width: 21px; height: 21px; }
.lso-snode__dot i{margin-right:0;}
.lso-snode__t { font-weight: 800; font-size: 14px; color: #D70035; }
.lso-snode__d { font-size: 12px; color: #000; margin-top: 4px; line-height: 1.6; }
.lso-story__lead { text-align: center; margin-top: 36px; font-size: clamp(15px,1.7vw,19px); font-weight: 700; color: #000; }
.lso-story__hl { color: #ff6b8a; }
.lso-story h3{width:100%;}

/* =========================================================
   FAQ
   ========================================================= */
.lso-faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.lso-acc { background: #fff; border: 1px solid var(--lso-line); border-radius: 16px; overflow: hidden; box-shadow: var(--lso-shadow-sm); }
.lso-acc__q {
  width: 100%; display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 20px 22px; font-weight: 800; font-size: clamp(15px, 1.6vw, 17px); color: var(--lso-ink);
}
.lso-acc__q .lso-qmark { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: var(--lso-red); color: #fff; font-family: var(--lso-latin); font-weight: 800; display: grid; place-items: center; font-size: 15px; }
.lso-acc__q .lso-plus { margin-left: auto; flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .25s; }
.lso-acc__q .lso-plus::before, .lso-acc__q .lso-plus::after { content: ""; position: absolute; background: var(--lso-red); border-radius: 2px; }
.lso-acc__q .lso-plus::before { top: 50%; left: 3px; right: 3px; height: 3px; transform: translateY(-50%); }
.lso-acc__q .lso-plus::after { left: 50%; top: 3px; bottom: 3px; width: 3px; transform: translateX(-50%); transition: opacity .2s; }
.lso-acc[open] .lso-acc__q .lso-plus::after { opacity: 0; }
.lso-acc__a { padding: 0 22px 22px 66px; }
.lso-acc__a p { font-size: 14.5px; color: var(--lso-ink-soft); line-height: 1.9; }
.lso-acc summary { list-style: none; cursor: pointer; }
.lso-acc summary::-webkit-details-marker { display: none; }

/* =========================================================
   INTERNAL LINKS + FINAL CTA
   ========================================================= */
.lso-links-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.lso-lcard {
  background: #fff; border: 1px solid var(--lso-line); border-radius: 16px; padding: 22px 18px;
  box-shadow: var(--lso-shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s; display: block;
}
.lso-lcard:hover { transform: translateY(-4px); box-shadow: var(--lso-shadow-md); border-color: var(--lso-red); }
.lso-lcard__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--lso-red-tint); color: var(--lso-red); display: grid; place-items: center; margin:0 auto 15px; }
.lso-lcard__ic svg { width: 23px; height: 23px; }
.lso-lcard__ic i{margin-right:0;}
.lso-lcard__t { font-weight: 800; font-size: 15px;text-align:center;display: block;}
.lso-lcard__d { font-size: 12px; color: var(--lso-ink-soft); margin-top: 3px;text-align:center;display:block;}
.lso-lcard__go { font-family: var(--lso-latin); font-size: 12px; font-weight: 700; color: var(--lso-red); margin-top: 12px; display: inline-flex; align-items: center; gap: 5px;text-align:center;align-items:center;justify-content:center;width:100%;}

.lso-finalcta {
  position: relative; overflow: hidden;
  background: var(--lso-red); color: #fff; border-radius: var(--lso-radius-lg);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px); text-align: center;
}
.lso-finalcta--mt { margin-top: 40px; }
.lso-finalcta::before, .lso-finalcta::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.lso-finalcta::before { width: 320px; height: 320px; top: -140px; right: -90px; }
.lso-finalcta::after { width: 220px; height: 220px; bottom: -120px; left: -60px; }
.lso-finalcta__in { position: relative; z-index: 1; }
.lso-finalcta__eyebrow { font-family: var(--lso-latin); font-weight: 700; letter-spacing: .2em; font-size: 13px; opacity: .9; }
.lso-finalcta h2 { font-size: clamp(24px, 3.6vw, 40px); font-weight: 900; line-height: 1.32; margin: 12px 0 10px;color:#fff;}
.lso-finalcta p { font-size: clamp(14px,1.5vw,17px); color: #ffe1e8; max-width: 40em; margin: 0 auto; }
.lso-finalcta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.lso-finalcta .lso-btn--primary { background: #fff; color: var(--lso-red); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.lso-finalcta .lso-btn--primary:hover { background: var(--lso-ink); color: #fff; }
.lso-finalcta .lso-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.lso-finalcta .lso-btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.lso-finalcta a.lso-btn--primary{color:#D70035;}

/* =========================================================
   FOOTER
   ========================================================= */
.lso-site-footer { background: var(--lso-ink); color: #cfc7c1; padding: 56px 0 30px; }
.lso-site-footer .lso-brand__name { font-family: var(--lso-round); font-weight: 700; font-size: 17px; line-height: 1.2; color: #fff; }
.lso-brand__name--ft { font-size: 18px; }
.lso-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.lso-footer-brand p { font-size: 13px; margin-top: 14px; line-height: 1.85; max-width: 30em; }
.lso-footer-col h5 { font-family: var(--lso-round); color: #fff; font-size: 14px; margin-bottom: 14px; }
.lso-footer-col a { display: block; font-size: 13.5px; padding: 5px 0; transition: color .15s; }
.lso-footer-col a:hover { color: #ff6b8a; }
.lso-footer-tel { font-size: 13px; margin-top: 12px; line-height: 1.8; }
.lso-footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 12px; color: #8d847e; }

/* =========================================================
   scroll reveal — JS不要・スクロール駆動（未対応環境では常に表示）
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .lso-reveal {
      animation: lsoRevealUp linear both;
      animation-timeline: view();
      animation-range: entry 2% entry 26%;
    }
  }
}
@keyframes lsoRevealUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width:1080px){
	.lso-hero__title {font-size: clamp(30px, 5vw, 62px);}
	.lso-mapcard__tag{width:50%;text-align: center;}
}

@media (max-width: 980px) {
  .lso-hero__grid { grid-template-columns: 1fr; }
  .lso-hero__visual { max-width: 70%; margin:0 auto;}
  .lso-split { grid-template-columns: 1fr; }
  .lso-split--rev .lso-split__media { order: 0; }
  .lso-journey { grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .lso-jstep:nth-child(2)::after { display: none; }
  .lso-steps__track { grid-template-columns: repeat(2,1fr); }
  .lso-security-grid { grid-template-columns: 1fr; }
  .lso-rain-grid { grid-template-columns: repeat(2,1fr); }
  .lso-story__track { grid-template-columns: repeat(3,1fr); gap: 28px 0; }
  .lso-story__track::before { display: none; }
  .lso-links-grid { grid-template-columns: repeat(2,1fr); }
  .lso-footer-top { grid-template-columns: 1fr; gap: 28px; }
	.lso-split__media{width:80%;margin:0 auto;}
	.lso-safetymap{max-height:100%;}
	.lso-wrap h3{width:100%;}
}

@media (max-width: 720px) {
  .lso-hero__badges { grid-template-columns: 1fr; }
  .lso-journey { grid-template-columns: 1fr 1fr;}
  .lso-jstep::after { display: none !important; }
  .lso-jstep { display: flex; align-items: center; gap: 16px; text-align: left; padding: 0; }
  .lso-jstep__ic { margin: 0; }
  .lso-steps__track { grid-template-columns: 1fr 1fr; }
  .lso-manner-grid { grid-template-columns: 1fr; }
  .lso-story__track { grid-template-columns: 1fr; gap: 18px; }
  .lso-links-grid { grid-template-columns: 1fr 1fr; }
  .lso-acc__a { padding-left: 22px; }
  /* 末尾セクション・フッターがモバイルCTAバーに隠れないよう余白 */
  .lso-site-footer { padding-bottom: 96px; }
}

@media(max-width:600px){
	.lso-hero__visual { max-width: 80%;}
	.lso-steps__track {grid-template-columns: 1fr 1fr;}
	.lso-jstep{flex-direction:column;}
	.lso-split__media {width: 100%;}
}

@media(max-width:450px){
	.lso-hero__visual {max-width: 100%;}
	h2.lso-s-title {font-size: clamp(20px, 4vw, 35px);}
	.lso-jstep {gap: 5px;}
}
@media(max-width:400px){
	.lso-finalcta h2 {font-size: clamp(18px, 3.6vw, 40px);}
}


/* mobile-only sticky CTA */
.lso-mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--lso-line);
}
.lso-mobile-cta-bar .lso-btn { flex: 1; padding: 14px 10px; font-size: 14px; }
@media (max-width: 720px) { .lso-mobile-cta-bar { display: flex; } }
