:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #eef2f6;
  --ink: #162332;
  --muted: #5b6a79;
  --line: rgba(22, 35, 50, 0.12);
  --navy: #1e4864;
  --gold: #d38b1f;
  --shadow: 0 18px 40px rgba(24, 33, 43, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  font-weight: 700;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 86px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  background: linear-gradient(135deg, #214f69, #17394d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 74, 99, 0.18);
}

.brand-mark-main {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.brand-mark-sub {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.46rem;
  line-height: 1;
  letter-spacing: 0.06em;
  opacity: 0.76;
}

.brand-text {
  display: grid;
  gap: 3px;
  line-height: 1.04;
}

.brand-text strong {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-nav a,
.lang-switch a {
  padding: 14px 16px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-nav a.is-current,
.lang-switch a.is-current {
  color: var(--ink);
  border-color: var(--gold);
}

.lang-switch {
  display: flex;
  gap: 0;
  flex: 0 0 auto;
  margin-left: 18px;
  padding-left: 0;
  justify-content: flex-end;
}

.lang-switch a {
  padding: 10px 6px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.lang-switch a + a::before {
  content: "/";
  display: inline-block;
  margin-right: 6px;
  color: rgba(95, 107, 119, 0.6);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 23, 33, 0.74), rgba(13, 23, 33, 0.28) 48%, rgba(13, 23, 33, 0.12) 70%),
    linear-gradient(180deg, rgba(17, 33, 48, 0.12), rgba(17, 33, 48, 0.32)),
    url("hero-rental-car.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 72px 0 84px;
  color: #fff;
}

.page-home .hero-content {
  padding-left: 32px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.subhero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.3rem);
}

.subhero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
}

.hero-copy,
.body-text {
  max-width: 44rem;
  color: inherit;
  line-height: 1.95;
  font-size: 0.89rem;
}

.hero-copy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  min-width: 148px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 700;
}

.btn-primary {
  background: #fff;
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding-top: 52px;
  padding-bottom: 52px;
}

.intro-band,
.surface-band {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy-compact {
  gap: 20px;
  align-content: start;
}

.intro-head {
  display: grid;
  gap: 10px;
  align-content: start;
}

.intro-grid h2,
.section-head h2 {
  font-size: clamp(1.56rem, 2.6vw, 2.22rem);
  line-height: 1.18;
}

.intro-link {
  margin-top: 4px;
}

.intro-points {
  display: grid;
  gap: 0;
  background: var(--surface-soft);
  border-left: 3px solid var(--gold);
}

.intro-points p {
  padding: 14px 18px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.intro-points p:first-child {
  border-top: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.info-block {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.info-block h3,
.flow-item h3,
.side-panel h3 {
  font-size: 1.02rem;
  margin-bottom: 12px;
}

.text-link,
.text-note {
  display: inline-block;
  margin-top: 14px;
  color: var(--navy);
}

.subhero {
  padding: 72px 0 30px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.subhero-compact {
  padding: 54px 0 26px;
}

.subhero-inner {
  max-width: 46rem;
}

.subhero-company {
  position: relative;
  padding: 88px 0 96px;
  border-bottom: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 23, 33, 0.76), rgba(13, 23, 33, 0.28) 54%, rgba(13, 23, 33, 0.14)),
    linear-gradient(180deg, rgba(17, 33, 48, 0.08), rgba(17, 33, 48, 0.22)),
    url("company-hero-storefront.png") center center / cover no-repeat;
}

.subhero-company .eyebrow,
.subhero-company .body-text,
.subhero-company h1 {
  color: #fff;
}

.subhero-company .eyebrow {
  color: #f0c87a;
}

.section-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-copy h2 {
  font-size: 1.82rem;
  line-height: 1.14;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.profile-table th,
.profile-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.profile-table th {
  width: 24%;
  color: var(--muted);
  font-weight: 400;
}

.side-col {
  display: grid;
  gap: 18px;
  align-self: start;
}

.side-panel {
  padding: 24px;
  background: var(--surface-soft);
  border-left: 3px solid var(--gold);
}

.panel-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.panel-line span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-line strong {
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 600;
}

.panel-note {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.84rem;
}

.section-head {
  margin-bottom: 22px;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-nav a {
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.88rem;
  border-bottom: 2px solid transparent;
}

.service-nav a:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.service-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-intro-strip {
  margin-bottom: 24px;
  padding: 18px 22px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
}

.service-intro-strip p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.service-hold-card {
  max-width: 54rem;
  padding: 34px 36px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 12px;
}

.service-hold-card h2 {
  font-size: 1.82rem;
  line-height: 1.16;
}

.service-entry-card {
  padding: 30px 30px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
}

.service-entry-card-guide {
  border-top: 3px solid #1e4864;
}

.service-entry-card-plan {
  border-top: 3px solid var(--gold);
}

.service-entry-card h2 {
  font-size: 1.82rem;
  line-height: 1.16;
}

.service-entry-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.service-entry-head .eyebrow {
  margin-bottom: 0;
}

.service-entry-no {
  color: rgba(22, 35, 50, 0.18);
  font-size: 1.82rem;
  line-height: 1;
  font-weight: 700;
}

.service-entry-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.service-entry-list li {
  padding: 13px 0 13px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
  position: relative;
}

.service-entry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 8px;
  height: 1px;
  background: rgba(211, 139, 31, 0.8);
}

.service-entry-action {
  margin-top: auto;
  padding-top: 2px;
}

.btn-entry {
  min-width: 0;
  width: fit-content;
  margin-top: 4px;
  background: var(--navy);
  color: #fff;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px 18px 18px;
}

.guide-card:hover {
  border-color: rgba(182, 144, 73, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(24, 33, 43, 0.06);
}

.guide-top {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-blue { background: #1d79bf; }
.guide-gold { background: #d38b1f; }
.guide-red { background: #c65a37; }
.guide-green { background: #2f6585; }

.guide-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.flow-item {
  min-height: 200px;
  padding: 26px 24px;
  background: linear-gradient(180deg, #fff, #fcfbf7);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}

.flow-item span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-grid-rich {
  align-items: stretch;
}

.plan-card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  align-content: start;
}

.plan-card h3 {
  font-size: 1rem;
}

.plan-label {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-meta {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.plan-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.plan-meta strong {
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 600;
}

.support-stack {
  display: grid;
  gap: 16px;
}

.support-card {
  padding: 20px 22px;
  background: var(--surface-soft);
  border-left: 3px solid var(--gold);
}

.support-card h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.article-side-box {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  align-content: start;
}

.article-side-box h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.article-side-label {
  margin-top: 4px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.article-back-link {
  padding-bottom: 10px;
  color: var(--navy);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
}

.article-side-box a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(24, 33, 43, 0.08);
  font-size: 0.92rem;
  line-height: 1.7;
}

.article-side-box a span {
  min-width: 24px;
  color: rgba(211, 139, 31, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-side-box a.is-current,
.article-side-box a:hover {
  color: var(--ink);
}

.article-card {
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.article-stack {
  display: grid;
  gap: 0;
}

.article-card h2 {
  margin-bottom: 18px;
  font-size: 1.76rem;
  line-height: 1.18;
}

.guide-section {
  padding: 34px 0;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
  scroll-margin-top: 120px;
}

.guide-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-flow {
  display: grid;
  gap: 18px;
}

.guide-lead {
  margin-bottom: 22px;
  color: var(--muted);
  max-width: 42rem;
}

.article-flow section,
.article-note-list > div {
  padding: 18px 0;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.article-flow section:first-child,
.article-note-list > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.article-flow span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 700;
}

.article-flow h3,
.article-note-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.article-note-list {
  display: grid;
  gap: 0;
}

.plan-page-stack {
  display: grid;
  gap: 52px;
}

.plan-page-section {
  display: grid;
  gap: 24px;
}

.plan-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.plan-summary {
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.plan-aside-card {
  padding: 24px 24px 22px;
  background: var(--surface-soft);
  border-left: 3px solid var(--gold);
}

.plan-aside-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.plan-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 36px;
  align-items: start;
}

.plan-grid-showcase {
  margin-top: 4px;
}

.plan-card-strong {
  gap: 14px;
  padding-top: 20px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 24px rgba(24, 33, 43, 0.04);
}

.plan-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(30, 72, 100, 0.08);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-stack {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.price-row:nth-child(even) {
  background: #faf8f3;
}

.price-row span {
  color: var(--muted);
  flex: 0 0 96px;
}

.price-row strong {
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.6;
}

.vehicle-frame {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.vehicle-showcase {
  display: grid;
  gap: 20px;
}

.vehicle-photo-card {
  position: relative;
  overflow: hidden;
}

.vehicle-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.vehicle-photo-copy {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(17, 33, 48, 0.68);
  backdrop-filter: blur(6px);
}

.vehicle-photo-copy p {
  margin-bottom: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.vehicle-photo-copy strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.vehicle-copy {
  padding: 24px 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.vehicle-copy h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.vehicle-spec-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  background: var(--surface-soft);
  border-left: 3px solid var(--gold);
}

.vehicle-spec-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 14px 18px;
  align-items: start;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.vehicle-spec-row:first-child {
  border-top: 0;
}

.vehicle-spec-row span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.vehicle-spec-row strong {
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 600;
}

.vehicle-point-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.store-card {
  padding: 24px 24px 22px;
  background: var(--surface-soft);
  border-left: 3px solid var(--gold);
}

.store-card-rich {
  display: grid;
  gap: 0;
}

.store-card-hero {
  margin-bottom: 18px;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #214f69, #17394d);
}

.store-card-hero p {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.store-card-hero strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 600;
}

.store-card-lead {
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.85;
  font-size: 0.92rem;
}

.store-info-panel {
  margin-top: 14px;
  padding: 2px 0 0;
  background: rgba(255, 255, 255, 0.56);
}

.store-card-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 14px 0;
  align-items: start;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.store-card-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.store-card-row span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-card-row strong {
  font-size: 0.96rem;
  line-height: 1.7;
  font-weight: 600;
}

.store-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.store-mini-card {
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 43, 0.08);
}

.store-mini-card h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.store-mini-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.store-card-note-list {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.policy-layout {
  display: grid;
  gap: 26px;
}

.policy-intro {
  display: grid;
  gap: 12px;
  max-width: 52rem;
}

.policy-intro h2 {
  font-size: 1.82rem;
  line-height: 1.14;
}

.policy-card {
  padding: 30px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
}

.policy-block {
  padding: 22px 0;
  border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.policy-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-block h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.policy-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 0.89rem;
  line-height: 1.9;
}

.policy-sign {
  margin-top: 18px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.site-footer-nav {
  border-top: 0;
}

.footer-links-wrap {
  background: #143b92;
}

.footer-links {
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  padding: 16px 0;
}

.footer-links a {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-links a + a::before {
  content: "|";
  display: inline-block;
  margin: 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a.is-current {
  color: #f7d592;
}

.footer-copy-wrap {
  background: #323232;
}

.footer-copy {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.footer-copy p {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.footer-inner {
  padding: 24px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.always-open {
  display: flex !important;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .always-open {
    display: none !important;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .lang-switch {
    margin-left: auto;
    padding-left: 0;
  }

  .intro-grid,
  .detail-layout,
  .article-layout,
  .service-grid,
  .info-grid,
  .flow-grid,
  .guide-grid,
  .plan-grid,
  .service-entry-grid,
  .plan-layout,
  .plan-overview-layout {
    grid-template-columns: 1fr;
  }

  .store-mini-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 68vh;
  }

  .service-grid {
    gap: 30px;
  }

  .brand-mark {
    width: 72px;
  }

  .brand-text strong {
    font-size: 1.06rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .page-home .hero-content {
    padding-left: 0;
  }

  .hero-content {
    padding: 48px 0 52px;
  }

  .hero h1,
  .subhero h1 {
    font-size: 2.28rem;
  }

  .subhero-company {
    padding: 68px 0 74px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: start;
  }

  .price-row,
  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    padding: 14px 0;
    align-items: flex-start;
  }

  .footer-links a {
    width: 100%;
  }

  .footer-links a + a::before {
    display: none;
  }

  .policy-card {
    padding: 24px 20px;
  }

  .price-row {
    align-items: flex-start;
  }

  .price-row strong {
    text-align: left;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }

  .profile-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .profile-table td {
    padding-top: 0;
  }
}
