:root {
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --header-h: 80px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
  --shadow-btn: 0 6px 0 rgba(0, 0, 0, 0.16), 0 12px 22px rgba(0, 0, 0, 0.12);
}

.lp-main {
  --c-main: #e96d00;
  --c-main-dark: #c85a00;
  --c-sub: #2e8b57;
  --c-sub-dark: #246f46;
  --c-base: #fafafa;
  --c-text: #2a2a2a;
  --c-muted: #5c5c5c;
  --c-line: #06c755;
  --c-line-dark: #05a848;
  --c-tel: #ff3b30;
  --c-tel-dark: #e02d24;
  --c-card: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.92);
}

.lp-oharai {
  --c-main: #0f2c59;
  --c-main-dark: #0a1f40;
  --c-gold: #d4af37;
  --c-gold-dark: #b8942c;
  --c-base: #f8f9fa;
  --c-text: #1a1a1a;
  --c-muted: #4a4a4a;
  --c-line: #06c755;
  --c-line-dark: #05a848;
  --c-tel: #ff3b30;
  --c-tel-dark: #e02d24;
  --c-card: #ffffff;
  --header-bg: rgba(248, 249, 250, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-base);
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-en {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-main .section-en {
  color: var(--c-main);
}

.lp-oharai .section-en {
  color: var(--c-gold);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 5.4vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.lp-oharai .section-title,
.lp-oharai .hero-copy,
.lp-oharai .logo-text,
.lp-oharai .profile-name,
.lp-oharai .price-head h3 {
  font-family: var(--font-serif);
}

.section-lead {
  margin: 0 auto;
  max-width: 36em;
  color: var(--c-muted);
  font-size: 15px;
}

.gold-rule {
  width: 72px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.logo-mark {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.lp-main .logo-mark,
.lp-oharai .logo-mark {
  background: none;
  box-shadow: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.logo-text small {
  font-size: 10px;
  color: var(--c-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-tel {
  display: none;
  text-align: right;
  line-height: 1.2;
}

.header-tel .tel-num {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-tel small {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
}

.header-extra-tel {
  display: none;
}

.header-extra-tel svg,
.btn-header-line svg {
  width: 22px;
  height: 22px;
}

.check-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.worry-card,
.reason-card,
.profile-card,
.price-card,
.strength-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.worry-card:hover,
.reason-card:hover,
.profile-card:hover,
.price-card:hover,
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.12);
}

.pillar-photo {
  position: relative;
}

.pillar-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.18));
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  color: #fff;
  box-shadow: var(--shadow-btn);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-line {
  background: linear-gradient(#2be36a, var(--c-line));
}

.btn-tel {
  background: linear-gradient(#ff6b63, var(--c-tel));
}

.btn-navy {
  background: linear-gradient(#1d4e96, var(--c-main));
  color: #fff;
}

.btn-gold {
  background: linear-gradient(#e6c75a, var(--c-gold));
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 42px;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-label-short {
  display: none;
}

.btn svg,
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  box-shadow: var(--shadow);
  z-index: 45;
  padding: 8px 16px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer.is-open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .float-cta {
  transform: translateY(110%);
  pointer-events: none;
}

.nav-drawer a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  z-index: 0;
}

.lp-main .hero-media {
  background-image:
    linear-gradient(180deg, rgba(20, 12, 4, 0.28) 0%, rgba(20, 12, 4, 0.55) 48%, rgba(20, 12, 4, 0.78) 100%),
    url("image/top1.png"),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80");
}

.lp-oharai .hero-media {
  background-image:
    linear-gradient(180deg, rgba(8, 18, 40, 0.35) 0%, rgba(15, 44, 89, 0.55) 46%, rgba(8, 16, 36, 0.82) 100%),
    url("image/top2.png"),
    url("https://images.unsplash.com/photo-1524413840807-0c3cb6fa808d?auto=format&fit=crop&w=1920&q=80");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 36px 0 48px;
}

.hero-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hero-copy {
  margin: 0 0 14px;
  font-size: clamp(26px, 7vw, 44px);
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38em;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero-cta {
  display: grid;
  gap: 10px;
}

.hero-stacked {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  color: var(--c-text);
  overflow: visible;
  background: #fff;
}

.hero-stacked .hero-media {
  position: relative;
  inset: auto;
  z-index: 0;
  width: 100%;
  height: min(56vw, 420px);
  min-height: 200px;
  transform: none;
  background-position: left center;
}

.lp-main .hero-stacked .hero-media {
  background-image:
    url("image/top1.png"),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80");
}

.hero-stacked .hero-content {
  padding: 28px 0 40px;
}

.hero-stacked .hero-kicker {
  background: rgba(233, 109, 0, 0.1);
  border-color: rgba(233, 109, 0, 0.28);
  color: var(--c-main);
}

.hero-stacked .hero-copy {
  text-shadow: none;
  color: var(--c-text);
}

.hero-stacked .hero-sub {
  color: var(--c-muted);
}

.hero-stacked .trust-item {
  background: #fff7f0;
  border: 1px solid #f0d4b8;
  color: var(--c-main-dark);
  backdrop-filter: none;
}

.travel-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #f6e7b2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Worry cards */
.worry-grid {
  display: grid;
  gap: 14px;
}

.worry-card {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 112px;
}

.worry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worry-body {
  padding: 14px 14px 14px 12px;
}

.worry-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.worry-body p {
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.7;
}

.worry-icon {
  width: 22px;
  height: 22px;
  color: var(--c-main);
}

.closing-msg {
  margin-top: 28px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-main);
}

.lp-oharai .closing-msg,
.check-list {
  background: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #ececec;
}

.check-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.16);
  color: var(--c-gold-dark);
  font-weight: 700;
}

/* Reasons */
.reason-grid {
  display: grid;
  gap: 16px;
}

.reason-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.reason-num {
  font-size: 42px;
  font-weight: 700;
  color: rgba(233, 109, 0, 0.14);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-oharai .reason-num {
  color: rgba(15, 44, 89, 0.12);
}

.reason-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.reason-card p {
  margin: 0;
  color: var(--c-muted);
  font-size: 14px;
}

.reason-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(46, 139, 87, 0.12);
  color: var(--c-sub);
}

/* Services / pillars */
.tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-nav button {
  min-height: 48px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-muted);
  cursor: pointer;
}

.tab-nav button.is-active {
  background: var(--c-main);
  color: #fff;
  border-color: var(--c-main);
}

.pillar-panel {
  display: none;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pillar-panel.is-active {
  display: block;
}

.pillar-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.pillar-body {
  padding: 20px 18px 24px;
}

.pillar-body h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.service-item + .service-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e8e8e8;
}

.service-item h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--c-main);
}

.lp-oharai .service-item h4 {
  color: var(--c-main);
}

.service-item p {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted);
}

.badge-hot {
  display: inline-block;
  margin-left: 6px;
  background: var(--c-main);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  vertical-align: 2px;
}

/* Flow */
.flow-wrap {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 18px 20px 78px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.step-card.is-active {
  border-color: var(--c-main);
}

.lp-oharai .step-card.is-active {
  border-color: var(--c-gold);
}

.step-num {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--c-main);
  letter-spacing: 0.04em;
}

.lp-oharai .step-num {
  background: var(--c-main);
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
}

.step-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted);
}

/* Cross banner */
.cross-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  min-height: 280px;
  display: grid;
  align-items: center;
}

.cross-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(15, 44, 89, 0.88), rgba(15, 44, 89, 0.62)),
    url("https://images.unsplash.com/photo-1545569341-9eb8b30979d9?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.cross-banner-body {
  position: relative;
  z-index: 1;
  padding: 28px 20px;
}

.cross-banner-body p {
  margin: 0 0 10px;
  font-size: 14px;
}

.cross-banner-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5vw, 28px);
  margin: 0 0 12px;
  line-height: 1.5;
}

/* Profiles */
.profile-grid,
.strength-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.profile-card,
.strength-card,
.price-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profile-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
}

.profile-card img.profile-photo--portrait {
  width: min(240px, 58%);
  height: auto;
  aspect-ratio: 3 / 4;
  margin: 20px auto 0;
  border-radius: 12px;
}

.profile-body,
.strength-card,
.price-card {
  padding: 20px 18px 22px;
}

.profile-name {
  margin: 0 0 12px;
  font-size: 22px;
  text-align: center;
}

.profile-card img.profile-name-img {
  display: block;
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 64px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.profile-kana {
  margin: 0 0 12px;
  color: var(--c-muted);
  font-size: 12px;
}

.profile-body p,
.strength-card p {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted);
}

.strength-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 10px;
}

.price-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  width: 100%;
}

.price-yen {
  display: block;
  width: 100%;
  white-space: normal;
  font-weight: 700;
  color: var(--c-main);
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.price-time {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0 0 10px;
}

.price-card > p:last-of-type {
  margin: 0;
  flex: 1;
}

.travel-box {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #eadca8;
  border-radius: var(--radius);
  padding: 18px;
}

.travel-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.travel-box p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--c-muted);
}

/* FAQ */
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 48px 18px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 22px;
  color: var(--c-gold-dark);
}

.faq-item.is-open .faq-q::after {
  content: "–";
}

.faq-a {
  display: none;
  padding: 0 18px 18px;
  color: var(--c-muted);
  font-size: 14px;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* CTA */
.cta-section {
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-main .cta-section {
  background: linear-gradient(160deg, #f08a28, var(--c-main-dark));
}

.lp-oharai .cta-section {
  background:
    linear-gradient(180deg, rgba(15, 44, 89, 0.92), rgba(10, 26, 54, 0.94)),
    url("image/texture-marble.svg");
  background-size: cover;
}

.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 5.5vw, 32px);
  line-height: 1.45;
}

.lp-oharai .cta-section h2 {
  font-family: var(--font-serif);
}

.cta-section p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cta-note {
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: #2b2b2b;
  color: #f2f2f2;
  padding: 40px 0 28px;
}

.lp-oharai .site-footer {
  background: #0b1c38;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.site-footer p,
.site-footer li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-copy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px !important;
}

/* Floating CTA */
.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(110%);
  transition: transform 0.28s ease;
}

.float-cta.is-show {
  transform: none;
}

.float-cta .btn {
  min-height: 50px;
  font-size: 13px;
  padding: 8px 10px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.oharai-bg {
  background-image:
    linear-gradient(180deg, rgba(248, 249, 250, 0.88), rgba(248, 249, 250, 0.96)),
    url("image/texture-washi.svg");
  background-size: auto, 280px;
}

.paper-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(248, 249, 250, 0.9)),
    url("image/texture-marble.svg");
  background-size: cover;
}

.accent-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--c-gold), #f3e1a4, var(--c-gold));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 899px) {
  .container {
    width: min(1080px, calc(100% - 20px));
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(20px, 5.8vw, 28px);
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
  }

  .nav-drawer a {
    min-height: 52px;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 12px 4px;
  }

  .btn-header-line,
  .header-extra-tel {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    gap: 0;
  }

  .btn-header-line .btn-label-long,
  .header-extra-tel .btn-label-long,
  .btn-label-short {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .lp-oharai .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 22px 0 20px;
  }

  .hero-copy {
    font-size: clamp(22px, 6.6vw, 32px);
    line-height: 1.4;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .hero-stacked .hero-media {
    height: min(52vw, 280px);
    min-height: 180px;
    background-position: left center;
  }

  .hero-stacked .hero-content {
    padding: 20px 0 28px;
  }

  .trust-row {
    gap: 6px;
    margin-bottom: 16px;
  }

  .trust-item {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero-cta,
  .cta-actions {
    gap: 8px;
  }

  .hero-cta .btn,
  .cta-actions .btn,
  .cross-banner-body .btn {
    width: 100%;
    max-width: none !important;
    min-height: 54px;
  }

  .travel-note {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.65;
    white-space: normal;
    margin-bottom: 14px;
  }

  .worry-card {
    grid-template-columns: 84px 1fr;
    min-height: 104px;
    border-radius: 10px;
  }

  .worry-body {
    padding: 10px 10px 10px 10px;
  }

  .worry-body h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  .worry-body p {
    font-size: 12px;
    line-height: 1.6;
  }

  .worry-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .closing-msg {
    font-size: 15px;
    padding: 18px 14px;
    line-height: 1.6;
  }

  .reason-card,
  .strength-card,
  .price-card {
    padding: 18px 16px;
  }

  .reason-card h3,
  .pillar-body h3,
  .price-head h3 {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .tab-nav {
    gap: 6px;
    margin-bottom: 14px;
  }

  .tab-nav button {
    min-height: 52px;
    font-size: 12px;
    line-height: 1.35;
    padding: 8px 6px;
  }

  .pillar-photo {
    height: 160px;
  }

  .pillar-body {
    padding: 16px 14px 20px;
  }

  .step-card {
    padding: 16px 14px 16px 70px;
  }

  .step-num {
    width: 44px;
    height: 44px;
    left: 12px;
    top: 16px;
    font-size: 10px;
  }

  .cross-banner {
    min-height: 0;
  }

  .cross-banner-body {
    padding: 22px 16px;
  }

  .cross-banner-body h3 {
    font-size: 20px;
  }

  .profile-card img.profile-photo--portrait {
    width: min(180px, 56%);
    margin-top: 16px;
  }

  .check-item {
    padding: 14px 12px;
  }

  .faq-q {
    font-size: 14px;
    padding: 16px 44px 16px 14px;
    line-height: 1.55;
    min-height: 52px;
  }

  .cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-section h2 {
    font-size: clamp(20px, 5.6vw, 26px);
  }

  .site-footer {
    padding: 32px 0 24px;
  }

  .float-cta {
    transform: none;
    gap: 6px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }

  .float-cta .btn {
    min-height: 52px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 639px) {
  :root {
    --header-h: 64px;
  }

  .logo {
    gap: 6px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .logo-text strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .logo-text small {
    font-size: 9px;
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .btn-header-line,
  .header-extra-tel {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}

@media (max-width: 379px) {
  .logo-text small {
    display: none;
  }

  .logo-text strong {
    font-size: 13px;
  }

  .float-cta .btn {
    font-size: 12px;
    padding: 8px 6px;
  }
}

@media (min-width: 640px) {
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-cta,
  .cta-actions {
    grid-template-columns: 1fr 1fr;
  }

  .worry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reason-grid,
  .profile-grid,
  .strength-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .header-tel {
    display: block;
  }

  .header-extra-tel {
    display: inline-flex;
  }

  .lp-oharai .header-tel {
    display: none;
  }

  .lp-oharai .section {
    padding: 104px 0;
  }

  .float-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-drawer {
    left: auto;
    right: 0;
    width: min(380px, 42vw);
    min-width: 280px;
    border-radius: 0 0 0 12px;
  }

  .btn-header-line {
    min-width: 210px;
  }

  .worry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .worry-card {
    grid-template-columns: 1fr;
  }

  .worry-card img {
    height: 150px;
  }

  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tab-nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .step-card {
    padding: 88px 18px 22px;
    text-align: center;
  }

  .step-num {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

  .price-grid,
  .strength-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 96px 0;
  }

  .hero-stacked .hero-media {
    height: min(48vh, 520px);
  }

  .hero-stacked .hero-content {
    padding: 40px 0 56px;
  }
}

@media (hover: none) {
  .worry-card:hover,
  .reason-card:hover,
  .profile-card:hover,
  .price-card:hover,
  .strength-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .btn:hover {
    filter: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .hero-media,
  .float-cta {
    transition: none !important;
    animation: none !important;
  }
}
