﻿@charset "UTF-8";
/* =========================
  Base
========================= */
:root {
  --blue: #3b82f6;
  --blue-deep: #0f2f5f;
  --navy: #0f172a;
  --sky: #eef6ff;
  --sky-soft: #f7fbff;
  --white: #fff;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 47, 95, .12);
  --radius: 999px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.sp-only {
  display: none;
}
/* =========================
  Header
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 32px;
  transition: .3s ease;
}
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(15, 47, 95, .08);
}
.site-logo {
  width: 210px;
  flex-shrink: 0;
}
.site-logo img {
  width: 100%;
  height: auto;
}
.global-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
}
.global-nav__list a {
  transition: color .25s ease;
}
.global-nav__list a:hover {
  color: var(--blue);
}
.global-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(59, 130, 246, .26);
}
/* =========================
  Hamburger
========================= */
.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-deep);
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.hamburger span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: .3s ease;
}
.hamburger span:nth-child(1) {
  top: 16px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
body.is-drawer-open .hamburger span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}
body.is-drawer-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-drawer-open .hamburger span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}
/* =========================
  Drawer
========================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 110px 24px 40px;
  background: rgba(238, 246, 255, .96);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
body.is-drawer-open .drawer {
  opacity: 1;
  pointer-events: auto;
}
.drawer__nav {
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
}
.drawer__nav a {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  color: var(--blue-deep);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(15, 47, 95, .08);
}
.drawer__cta {
  margin-top: 8px;
  text-align: center;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), #60a5fa) !important;
}
/* =========================
  Hero
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .86) 36%, rgba(255, 255, 255, .35) 66%, rgba(255, 255, 255, 0) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 90px;
}
.hero__label {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.hero__office {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: .08em;
}
.hero__title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.18;
  letter-spacing: .04em;
  font-weight: 900;
}
.hero__lead {
  margin: 28px 0 0;
  color: var(--blue-deep);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.8;
  font-weight: 800;
}
.hero__text {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: .04em;
  transition: .25s ease;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  box-shadow: 0 16px 30px rgba(59, 130, 246, .28);
}
.btn--outline {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(59, 130, 246, .28);
  backdrop-filter: blur(8px);
}
.btn:hover {
  transform: translateY(-3px);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 8px auto 0;
  background: var(--blue);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  46% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* =========================
  Section Heading
========================= */
.section-heading {
  text-align: center;
  margin-bottom: 64px;
}
.section-heading__label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.section-heading__title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.25;
  font-weight: 900;
}
.section-heading__lead {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}
/* =========================
  Reason
========================= */
.reason {
  position: relative;
  padding: 130px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--sky) 0%, #fff 100%);
}
.reason::before {
  content: "AOZORA";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .05);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  pointer-events: none;
}
.reason__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.reason__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reason-card {
  position: relative;
  padding: 34px 24px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(59, 130, 246, .14);
  text-align: center;
  transition: .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 47, 95, .16);
}
.reason-card__image {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
}
.reason-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
.reason-card:hover .reason-card__image img {
  transform: scale(1.06);
}
.reason-card__number {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.reason-card__title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
}
.reason-card__text {
  margin: auto 0 0;
  padding-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
/* =========================
  Service
========================= */
.service {
  position: relative;
  padding: 130px 32px;
  overflow: hidden;
  background: var(--white);
}
.service::before {
  content: "SERVICE";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .045);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
}
.service__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
/* =========================
  Service Tabs
========================= */
.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 24px;
  background: var(--sky-soft);
  box-shadow: 0 12px 32px rgba(15, 47, 95, .07);
}
.service-tabs__button {
  position: relative;
  min-height: 82px;
  padding: 14px 18px;
  border: 0;
  border-radius: 18px;
  color: var(--muted);
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition:
    color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service-tabs__button:hover {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, .72);
}
.service-tabs__button.is-active {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 12px 26px rgba(59, 130, 246, .26);
  transform: translateY(-2px);
}
.service-tabs__button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .55);
  outline-offset: 3px;
}
.service-tabs__number {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .18em;
  opacity: .72;
}
.service-tabs__label {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
}
.service-tabs__button.is-active .service-tabs__number {
  opacity: .9;
}
/* =========================
  Service Panel
========================= */
.service-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-panel[hidden] {
  display: none;
}
.service-panel.is-active {
  animation: servicePanelFade .45s ease both;
}
@keyframes servicePanelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
  Service Image
========================= */
.service-panel__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--sky);
}
.service-panel__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 47, 95, .04) 0%, rgba(15, 47, 95, 0) 45%);
  pointer-events: none;
}
.service-panel__image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}
.service-panel:hover .service-panel__image img {
  transform: scale(1.025);
}
/* =========================
  Service Content
========================= */
.service-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 58px;
}
.service-panel__label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .18em;
}
.service-panel__title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .04em;
}
.service-panel__lead {
  margin: 18px 0 0;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
}
.service-panel__text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}
/* =========================
  Service Details
========================= */
.service-panel__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.service-panel__detail {
  padding: 22px 20px;
  border: 1px solid rgba(59, 130, 246, .12);
  border-radius: 20px;
  background: var(--sky-soft);
}
.service-panel__detail-title {
  position: relative;
  margin: 0 0 13px;
  padding-left: 18px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}
.service-panel__detail-title::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .14);
}
.service-panel__list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-panel__list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}
.service-panel__list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
/* =========================
  Service Button
========================= */
.service-panel__button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 26px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 13px 28px rgba(59, 130, 246, .24);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  transition:
    transform .25s ease, box-shadow .25s ease;
}
.service-panel__button span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}
.service-panel__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(59, 130, 246, .31);
}
.service-panel__button:hover span {
  transform: translateX(5px);
}
.service-panel__button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .55);
  outline-offset: 4px;
}
/* =========================
  Price Simulator
========================= */
.simulator {
  position: relative;
  padding: 130px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%);
}
.simulator::before {
  content: "PRICE";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .045);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
}
.simulator__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.simulator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 28px;
  align-items: start;
}
/* =========================
  Simulator Form
========================= */
.simulator-form {
  padding: 42px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 34px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}
.simulator-form__head {
  margin-bottom: 34px;
}
.simulator-form__label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .18em;
}
.simulator-form__title {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
}
.simulator-form__text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}
/* =========================
  Simulator Question
========================= */
.simulator-question {
  margin: 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid rgba(59, 130, 246, .12);
}
.simulator-question + .simulator-question {
  margin-top: 22px;
}
.simulator-question__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: var(--blue-deep);
}
.simulator-question__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 9px 20px rgba(59, 130, 246, .22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.simulator-question__heading {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}
.simulator-question__description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
/* =========================
  Simulator Options
========================= */
.simulator-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.simulator-options--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.simulator-options--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.simulator-option {
  position: relative;
  display: block;
  cursor: pointer;
}
.simulator-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.simulator-option__content {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  height: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 18px;
  background: var(--sky-soft);
  transition:
    border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.simulator-option:hover .simulator-option__content {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, .3);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(15, 47, 95, .08);
}
.simulator-option input:focus-visible + .simulator-option__content {
  outline: 3px solid rgba(245, 158, 11, .5);
  outline-offset: 3px;
}
.simulator-option input:checked + .simulator-option__content {
  border-color: rgba(59, 130, 246, .55);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .1) 0%, rgba(96, 165, 250, .06) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(59, 130, 246, .12), 0 12px 28px rgba(59, 130, 246, .1);
}
.simulator-option__check {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(100, 116, 139, .38);
  border-radius: 50%;
  background: var(--white);
  transition:
    border-color .25s ease, background .25s ease;
}
.simulator-option__check::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: transparent;
  transition: background .25s ease;
}
.simulator-option input:checked + .simulator-option__content .simulator-option__check {
  border-color: var(--blue);
}
.simulator-option input:checked + .simulator-option__content .simulator-option__check::after {
  background: var(--blue);
}
.simulator-option__text {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}
.simulator-option__copy {
  display: grid;
  gap: 5px;
}
.simulator-option__note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}
/* =========================
  Simulator Result
========================= */
.simulator-result {
  position: sticky;
  top: 118px;
  overflow: hidden;
  padding: 32px 32px 28px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--blue-deep) 0%, #164d93 52%, var(--blue) 100%);
  box-shadow: 0 24px 60px rgba(15, 47, 95, .24);
}
.simulator-result::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
}
.simulator-result::after {
  content: "";
  position: absolute;
  right: 42px;
  bottom: 110px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  pointer-events: none;
}
.simulator-result > * {
  position: relative;
  z-index: 1;
}
.simulator-result__top {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.simulator-result__label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}
.simulator-result__title {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
}
.simulator-result__lead {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}
/* =========================
  Simulator Price
========================= */
.simulator-result__price {
  padding: 20px 0 18px;
  text-align: center;
}
.simulator-result__price-label {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
}
.simulator-result__price-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 7px 0 0;
  line-height: 1;
}
#simulator-price {
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -.04em;
}
.simulator-result__price-unit {
  padding-bottom: 7px;
  font-size: 20px;
  font-weight: 900;
}
.simulator-result__tax {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 600;
}
/* =========================
  Simulator Plan
========================= */
.simulator-result__plan {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(8px);
}
.simulator-result__plan-label {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 700;
}
.simulator-result__plan-name {
  margin: 5px 0 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.4;
}
.simulator-result__plan-text {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
}
/* =========================
  Simulator Summary
========================= */
.simulator-result__summary {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.simulator-result__summary-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
}
.simulator-result__summary-list {
  display: grid;
  gap: 6px;
  margin: 0;
}
.simulator-result__summary-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: start;
}
.simulator-result__summary-list dt, .simulator-result__summary-list dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}
.simulator-result__summary-list dt {
  color: rgba(255, 255, 255, .62);
  font-weight: 600;
}
.simulator-result__summary-list dd {
  color: var(--white);
  font-weight: 800;
}
/* =========================
  Simulator Result Button
========================= */
.simulator-result__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  margin-top: 20px;
  padding: 0 24px;
  border-radius: var(--radius);
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
  font-size: 14px;
  font-weight: 900;
  transition:
    transform .25s ease, box-shadow .25s ease;
}
.simulator-result__button span {
  font-size: 18px;
  transition: transform .25s ease;
}
.simulator-result__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .24);
}
.simulator-result__button:hover span {
  transform: translateX(5px);
}
.simulator-result__button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .65);
  outline-offset: 4px;
}
.simulator-result__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.75;
}
/* =========================
  Flow
========================= */
.flow {
  position: relative;
  padding: 130px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--sky-soft) 100%);
}
.flow::before {
  content: "FLOW";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .045);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
}
.flow__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
/* =========================
  Flow List
========================= */
.flow__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.flow__list::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 10%;
  right: 10%;
  height: 3px;
  background:
    linear-gradient(90deg, rgba(59, 130, 246, .1) 0%, rgba(59, 130, 246, .18) 50%, rgba(59, 130, 246, .1) 100%);
  z-index: 0;
}
/* =========================
  Flow Card
========================= */
.flow-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px 22px 26px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  transition:
    transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, .28);
  box-shadow: 0 24px 60px rgba(15, 47, 95, .16);
}
/* =========================
  Flow Number
========================= */
.flow-card__number {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  align-self: center;
  margin-bottom: 24px;
  color: var(--blue);
}
.flow-card__number span {
  padding-bottom: 5px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .18em;
}
.flow-card__number strong {
  font-size: 38px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
}
/* =========================
  Flow Icon
========================= */
.flow-card__icon {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
}
.flow-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(15, 47, 95, .1));
  transition: transform .3s ease;
}
.flow-card:hover .flow-card__icon img {
  transform: translateY(-3px) scale(1.035);
}
/* =========================
  Flow Content
========================= */
.flow-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.flow-card__label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .16em;
  text-align: center;
}
.flow-card__title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.flow-card__text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}
.flow-card__notes {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
}
.flow-card__notes li {
  position: relative;
  padding-left: 18px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.flow-card__notes li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
/* =========================
  Flow Arrow
========================= */
.flow-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 86px;
  right: -21px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(59, 130, 246, .15);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 47, 95, .1);
  font-size: 18px;
  font-weight: 900;
}
/* =========================
  Flow Bottom CTA
========================= */
.flow__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 42px;
  padding: 30px 34px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, rgba(96, 165, 250, .04) 100%);
  box-shadow: 0 16px 40px rgba(15, 47, 95, .08);
}
.flow__bottom-text {
  min-width: 0;
}
.flow__bottom-label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .18em;
}
.flow__bottom-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}
.flow__bottom-description {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}
.flow__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 13px 28px rgba(59, 130, 246, .24);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  transition:
    transform .25s ease, box-shadow .25s ease;
}
.flow__button span {
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}
.flow__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(59, 130, 246, .31);
}
.flow__button:hover span {
  transform: translateX(5px);
}
.flow__button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .55);
  outline-offset: 4px;
}
/* =========================
  Profile
========================= */
.profile {
  position: relative;
  padding: 130px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%);
}
.profile::before {
  content: "PROFILE";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .045);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
}
.profile__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
/* =========================
  Profile Panel
========================= */
.profile__panel {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}
/* =========================
  Profile Visual
========================= */
.profile__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, #dff3ff 0%, #eef8ff 100%);
}
.profile__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.profile__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 47, 95, 0) 55%, rgba(15, 47, 95, .14) 100%);
  pointer-events: none;
}
.profile__image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s ease;
}
.profile__panel:hover .profile__image img {
  transform: scale(1.018);
}
.profile__visual-decoration {
  position: absolute;
  inset: auto 0 30px;
  z-index: 3;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.profile__visual-word {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(56px, 5vw, 84px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
  text-shadow: 0 8px 26px rgba(15, 47, 95, .18);
}
/* =========================
  Profile Content
========================= */
.profile__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 50px 44px;
}
.profile__eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .2em;
}
.profile__catch {
  position: relative;
  margin: 0;
  padding-bottom: 24px;
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .03em;
}
.profile__catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--blue) 0%, #7dd3fc 100%);
}
/* =========================
  Profile Name
========================= */
.profile__name-block {
  margin-top: 28px;
}
.profile__role {
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}
.profile__name-row {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.profile__name {
  margin: 0;
  color: var(--blue-deep);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .08em;
}
.profile__reading {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
/* =========================
  Profile Details
========================= */
.profile__details {
  display: flex;
  gap: 12px;
  margin: 24px 0 0;
  flex-wrap: wrap;
}
.profile__detail {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid rgba(59, 130, 246, .13);
  border-radius: var(--radius);
  background: var(--sky-soft);
}
.profile__detail dt, .profile__detail dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.profile__detail dt {
  color: var(--muted);
  font-weight: 700;
}
.profile__detail dd {
  color: var(--blue-deep);
  font-weight: 900;
}
/* =========================
  Profile Message
========================= */
.profile-message {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(59, 130, 246, .12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .07) 0%, rgba(125, 211, 252, .035) 100%);
}
.profile-message__label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .2em;
}
.profile-message__title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}
.profile-message__body {
  margin-top: 18px;
}
.profile-message__body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.95;
}
.profile-message__body p + p {
  margin-top: 12px;
}
.profile-message__body strong {
  color: var(--blue-deep);
  font-weight: 900;
  background:
    linear-gradient(transparent 68%, rgba(125, 211, 252, .34) 68%);
}
/* =========================
  Profile Signature
========================= */
.profile__signature {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.profile__signature-role {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.profile__signature-name {
  color: var(--blue-deep);
  font-family:
    "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
}
/* =========================
  Profile Button
========================= */
.profile__button {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 26px;
  padding: 0 28px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 13px 28px rgba(59, 130, 246, .24);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  transition:
    transform .25s ease, box-shadow .25s ease;
}
.profile__button span {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}
.profile__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(59, 130, 246, .31);
}
.profile__button:hover span {
  transform: translateX(5px);
}
.profile__button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .55);
  outline-offset: 4px;
}
/*==================================================
VOICE
==================================================*/
.voice {
  position: relative;
  overflow: hidden;
  padding: 130px 32px;
  background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}
.voice::before {
  content: "VOICE";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .045);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
}
.voice__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}
.voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
/*--------------------
 Card
--------------------*/
.voice-card {
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(59, 130, 246, .12);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 47, 95, .08);
  transition: .3s;
}
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 47, 95, .14);
}
/*--------------------
 Image
--------------------*/
.voice-card__image {
  overflow: hidden;
}
.voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.voice-card:hover img {
  transform: scale(1.04);
}
/*--------------------
 Content
--------------------*/
.voice-card__content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voice-card__stars {
  margin: 0 0 10px;
  color: #FFC54A;
  font-size: .95rem;
  letter-spacing: .18em;
}
.voice-card__title {
  margin: 0 0 16px;
  color: #0F214A;
  font-size: 1.45rem;
  line-height: 1.45;
  font-weight: 900;
}
.voice-card__text {
  margin: 0;
  color: #64748B;
  font-size: .94rem;
  line-height: 1.9;
}
/*--------------------
 Tags
--------------------*/
.voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.voice-card__tags span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #CFE0FF;
  background: #F7FAFF;
  color: #3B82F6;
  font-size: .8rem;
  font-weight: 700;
}
/* =========================
  FAQ
========================= */
.faq {
  position: relative;
  padding: 130px 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--sky-soft) 100%);
}
.faq::before {
  content: "FAQ";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(59, 130, 246, .045);
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
}
.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}
/* =========================
  FAQ List
========================= */
.faq__list {
  display: grid;
  gap: 14px;
}
/* =========================
  FAQ Item
========================= */
.faq-item {
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 36px rgba(15, 47, 95, .07);
  transition:
    border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq-item:hover {
  border-color: rgba(59, 130, 246, .26);
  box-shadow: 0 18px 44px rgba(15, 47, 95, .1);
}
.faq-item.is-open {
  border-color: rgba(59, 130, 246, .3);
  box-shadow: 0 20px 50px rgba(15, 47, 95, .11);
}
/* =========================
  FAQ Heading
========================= */
.faq-item__heading {
  margin: 0;
}
/* =========================
  FAQ Question
========================= */
.faq-item__question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 88px;
  padding: 18px 24px;
  border: 0;
  color: var(--blue-deep);
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color .25s ease, background .25s ease;
}
.faq-item__question:hover {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .055) 0%, rgba(125, 211, 252, .025) 100%);
}
.faq-item.is-open .faq-item__question {
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .075) 0%, rgba(125, 211, 252, .035) 100%);
}
.faq-item__question:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid rgba(245, 158, 11, .55);
  outline-offset: -3px;
}
/* =========================
  FAQ Number
========================= */
.faq-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 8px 18px rgba(59, 130, 246, .2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
}
/* =========================
  FAQ Question Text
========================= */
.faq-item__question-text {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
}
/* =========================
  FAQ Plus Icon
========================= */
.faq-item__icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, .18);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(15, 47, 95, .08);
  transition:
    transform .3s ease, background .3s ease, border-color .3s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: var(--radius);
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition:
    transform .3s ease, background .3s ease;
}
.faq-item__icon::after {
  transform:
    translate(-50%, -50%) rotate(90deg);
}
.faq-item.is-open .faq-item__icon {
  border-color: transparent;
  background: var(--blue);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-item__icon::before, .faq-item.is-open .faq-item__icon::after {
  background: var(--white);
}
.faq-item.is-open .faq-item__icon::after {
  transform:
    translate(-50%, -50%) rotate(0deg);
}
/* =========================
  FAQ Answer
========================= */
.faq-item__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid rgba(59, 130, 246, .1);
  background: var(--white);
  transition:
    height .42s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
  will-change: height, opacity;
}
.faq-item__answer[hidden] {
  display: none;
}
.faq-item__answer-inner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 24px 30px 28px;
}
/* =========================
  FAQ Bottom Contact
========================= */
.faq__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 42px;
  padding: 30px 34px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, rgba(96, 165, 250, .035) 100%);
  box-shadow: 0 16px 40px rgba(15, 47, 95, .08);
}
.faq__contact-text {
  min-width: 0;
}
.faq__contact-label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .18em;
}
.faq__contact-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
}
.faq__contact-description {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}
.faq__contact-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 13px 28px rgba(59, 130, 246, .24);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  transition:
    transform .25s ease, box-shadow .25s ease;
}
.faq__contact-button span {
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}
.faq__contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(59, 130, 246, .31);
}
.faq__contact-button:hover span {
  transform: translateX(5px);
}
.faq__contact-button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, .55);
  outline-offset: 4px;
}
/* =========================
  Contact
========================= */
.contact {
  position: relative;
  padding: 120px 20px 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(76, 140, 255, .08), transparent 65%), #fff;
}
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact__body {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  margin-top: 48px;
}
/* =========================
  Contact Support
========================= */
.contact__support {
  padding: 38px 42px;
  border: 1px solid rgba(76, 140, 255, .15);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(16, 56, 120, .08);
}
.contact__support-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
}
.contact__support-title {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.4;
}
.contact__support-text {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.8;
}
.contact__features {
  display: grid;
  gap: 18px;
}
.contact-feature {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-feature__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f6f9ff;
}
.contact-feature__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.contact-feature__title {
  margin: 0 0 3px;
  font-size: 18px;
  line-height: 1.5;
}
.contact-feature__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
/* =========================
  Contact Panel
========================= */
.contact__panel {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  padding: 38px 40px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #4d8dff, #0f4ea8);
  box-shadow: 0 30px 60px rgba(32, 95, 190, .28);
}
.contact__panel-label {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .2em;
  opacity: .8;
}
.contact__panel-title {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.4;
}
.contact__panel-text {
  margin: 0 0 26px;
  line-height: 1.8;
  opacity: .92;
}
.contact__actions {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: .35s;
}
.contact__button span {
  transition: .35s;
}
.contact__button:hover span {
  transform: translateX(6px);
}
.contact__button--primary {
  color: var(--blue-deep);
  background: #fff;
}
.contact__button--primary:hover {
  transform: translateY(-3px);
}
.contact__button--secondary {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
}
.contact__button--secondary:hover {
  background: rgba(255, 255, 255, .12);
}
.contact__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.contact__info-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact__info-label {
  margin: 0 0 2px;
  font-size: 12px;
  letter-spacing: .15em;
  opacity: .7;
}
.contact__info-value {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.contact__note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 12px;
  line-height: 1.7;
  opacity: .8;
}
/* =========================
  Footer
========================= */
.site-footer {
  position: relative;
  padding: 90px 32px 32px;
  color: rgba(255, 255, 255, .88);
  background:
    linear-gradient(180deg, #0f2f5f 0%, #0b2347 100%);
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
}
.site-footer__logo {
  display: inline-block;
  width: 255px;
  max-width: 100%;
  margin-bottom: 28px;
}
.site-footer__logo img {
  width: 100%;
}
.site-footer__message {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
  line-height: 2;
}
.site-footer__address {
  font-style: normal;
}
.site-footer__address p {
  margin: 0 0 22px;
  line-height: 1.9;
}
.site-footer__contact-list {
  display: grid;
  gap: 16px;
}
.site-footer__contact-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
}
.site-footer__contact-list dt {
  color: #8fc8ff;
  font-weight: 700;
}
.site-footer__contact-list dd {
  margin: 0;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.site-footer__nav-title {
  margin: 0 0 20px;
  color: #8fc8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .15em;
}
.site-footer__nav-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__nav-list a {
  transition: .25s;
}
.site-footer__nav-list a:hover {
  color: #7dc4ff;
}
.site-footer__cta {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
}
.site-footer__cta-label {
  margin: 0 0 10px;
  color: #8fc8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.site-footer__cta-title {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.site-footer__cta-text {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.9;
}
.site-footer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  border-radius: 999px;
  color: #0f2f5f;
  background: #fff;
  font-weight: 900;
  transition: .25s;
}
.site-footer__button:hover {
  transform: translateY(-3px);
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.site-footer__legal {
  display: flex;
  gap: 28px;
}
.site-footer__legal a {
  font-size: 13px;
}
.site-footer__copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}
.site-footer__pagetop {
  position: absolute;
  right: 40px;
  top: -30px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(59, 130, 246, .14);
  border-radius: 50%;
  color: var(--blue-deep);
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 47, 95, .2);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-footer__pagetop:hover {
  color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 47, 95, .26);
}
.site-footer__pagetop span {
  display: block;
  transform: translateY(3px);
}
.site-footer__cta-break {
  display: block;
}
/* =========================
  Temporary Sections
========================= */
.section {
  min-height: 70vh;
  padding: 120px 32px;
  background: #fff;
}
.section:nth-of-type(even) {
  background: var(--sky-soft);
}
.section h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 52px);
}
/* =========================
  Responsive
========================= */
@media (max-width: 1180px) {
  .sp-only {
    display: block;
  }
  .hero__bg img {
    object-position: right center;
  }
  .site-header {
    padding: 14px 18px;
  }
  .site-header__inner {
    height: 66px;
  }
  .site-logo {
    width: 220px;
  }
  .global-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .reason__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reason-card {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .reason-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }
  .reason-card__image {
    width: 120px;
    height: 120px;
    margin: 0;
    flex-shrink: 0;
  }
  .reason-card__number, .reason-card__title {
    text-align: left;
  }
  .reason-card__head {
    flex-shrink: 0;
    padding-top: 10px;
  }
  .reason-card__number {
    margin: 0 0 8px;
  }
  .reason-card__title {
    grid-area: head;
  }
  .reason-card__text {
    margin: 18px 0 0;
    padding-top: 0;
    padding-left: 8px;
  }
  /* =========================
    Service Tablet
  ========================= */
  .service {
    padding: 110px 24px;
  }
  .service-tabs {
    gap: 8px;
  }
  .service-tabs__button {
    min-height: 76px;
    padding: 12px 10px;
  }
  .service-tabs__label {
    font-size: 15px;
  }
  .service-panel {
    grid-template-columns: .88fr 1.12fr;
    min-height: 560px;
  }
  .service-panel__image img {
    min-height: 560px;
  }
  .service-panel__content {
    padding: 44px 36px;
  }
  .service-panel__title {
    font-size: 38px;
  }
  .service-panel__lead {
    font-size: 16px;
  }
  .service-panel__details {
    gap: 12px;
    margin-top: 24px;
  }
  .service-panel__detail {
    padding: 18px 14px;
  }
  .service-panel__detail-title {
    font-size: 13px;
  }
  .service-panel__list li {
    font-size: 12px;
  }
  .service-panel__button {
    margin-top: 24px;
  }
  /* =========================
  Simulator Tablet
========================= */
  .simulator {
    padding: 110px 24px;
  }
  .simulator__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
    gap: 22px;
  }
  .simulator-form {
    padding: 34px 30px;
    border-radius: 30px;
  }
  .simulator-form__head {
    margin-bottom: 28px;
  }
  .simulator-form__title {
    font-size: 23px;
  }
  .simulator-form__text {
    font-size: 13px;
  }
  .simulator-question {
    padding-top: 20px;
  }
  .simulator-question + .simulator-question {
    margin-top: 20px;
  }
  .simulator-question__number {
    width: 38px;
    height: 38px;
  }
  .simulator-question__heading {
    font-size: 18px;
  }
  .simulator-options {
    gap: 10px;
    margin-top: 16px;
  }
  .simulator-option__content {
    min-height: 58px;
    padding: 12px 13px;
    gap: 9px;
    border-radius: 16px;
  }
  .simulator-option__check {
    width: 20px;
    height: 20px;
  }
  .simulator-option__text {
    font-size: 12px;
  }
  .simulator-option__note {
    font-size: 10px;
  }
  .simulator-result {
    top: 104px;
    padding: 28px 26px 24px;
    border-radius: 30px;
  }
  .simulator-result__top {
    padding-bottom: 20px;
  }
  .simulator-result__title {
    font-size: 26px;
  }
  .simulator-result__lead {
    font-size: 12px;
  }
  .simulator-result__price {
    padding: 18px 0 16px;
  }
  #simulator-price {
    font-size: clamp(46px, 6vw, 60px);
  }
  .simulator-result__plan {
    padding: 16px 18px;
  }
  .simulator-result__plan-name {
    font-size: 22px;
  }
  .simulator-result__summary {
    margin-top: 18px;
    padding-top: 18px;
  }
  .simulator-result__summary-list div {
    grid-template-columns: 72px 1fr;
    gap: 8px;
  }
  .simulator-result__summary-list dt, .simulator-result__summary-list dd {
    font-size: 11px;
  }
  .simulator-result__button {
    min-height: 52px;
    padding: 0 18px;
    font-size: 12px;
  }
  .simulator-result__note {
    font-size: 9px;
  }
  /* =========================
  Flow Tablet
========================= */
  .flow {
    padding: 110px 24px;
  }
  .flow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .flow__list::before {
    display: none;
  }
  .flow-card {
    min-height: 420px;
    padding: 22px 22px 22px;
    border-radius: 28px;
  }
  .flow-card__number {
    margin-bottom: 14px;
  }
  .flow-card__number strong {
    font-size: 34px;
  }
  .flow-card__icon {
    width: 116px;
    height: 116px;
    margin-bottom: 14px;
  }
  .flow-card__title {
    font-size: 19px;
  }
  .flow-card__label {
    margin-bottom: 5px;
  }
  .flow-card__text {
    margin-top: 12px;
    line-height: 1.75;
    font-size: 13px;
  }
  .flow-card__notes {
    padding-top: 14px;
  }
  .flow-card:not(:last-child)::after {
    display: none;
  }
  .flow__bottom {
    gap: 24px;
    margin-top: 34px;
    padding: 26px 34px;
    border-radius: 26px;
  }
  .flow__bottom-title {
    font-size: 22px;
  }
  .flow__button {
    min-height: 52px;
    padding: 0 22px;
    font-size: 13px;
  }
  /* =========================
  Profile Tablet
========================= */
  .profile {
    padding: 110px 24px;
  }
  .profile__panel {
    grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
    border-radius: 32px;
  }
  .profile__image img {
    min-height: 680px;
    object-position: center top;
  }
  .profile__visual-word {
    font-size: clamp(44px, 6vw, 62px);
  }
  .profile__content {
    padding: 38px 34px 36px;
  }
  .profile__eyebrow {
    margin-bottom: 9px;
    font-size: 9px;
  }
  .profile__catch {
    padding-bottom: 18px;
    font-size: clamp(28px, 4.3vw, 40px);
    line-height: 1.4;
  }
  .profile__catch::after {
    width: 58px;
    height: 3px;
  }
  .profile__name-block {
    margin-top: 22px;
  }
  .profile__role {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.7;
  }
  .profile__name-row {
    gap: 12px;
    margin-top: 6px;
  }
  .profile__name {
    font-size: 29px;
  }
  .profile__reading {
    margin-bottom: 3px;
    font-size: 10px;
  }
  .profile__details {
    gap: 10px;
    margin-top: 18px;
  }
  .profile__detail {
    min-height: 38px;
    gap: 9px;
    padding: 7px 13px;
  }
  .profile__detail dt, .profile__detail dd {
    font-size: 10px;
  }
  .profile-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 22px;
  }
  .profile-message__label {
    font-size: 9px;
  }
  .profile-message__title {
    font-size: 18px;
  }
  .profile-message__body {
    margin-top: 13px;
  }
  .profile-message__body p {
    font-size: 12px;
    line-height: 1.85;
  }
  .profile-message__body p + p {
    margin-top: 8px;
  }
  .profile__signature {
    gap: 9px;
    margin-top: 18px;
  }
  .profile__signature-role {
    padding-bottom: 3px;
    font-size: 9px;
  }
  .profile__signature-name {
    font-size: 23px;
  }
  .profile__button {
    min-height: 50px;
    margin-top: 18px;
    padding: 0 22px;
    font-size: 12px;
  }
  .voice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .voice-card {
    grid-template-columns: 42% 58%;
  }
  .voice-card__content {
    padding: 20px;
  }
  .voice-card__stars {
    margin-bottom: 8px;
    font-size: .85rem;
  }
  .voice-card__title {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .voice-card__text {
    font-size: .82rem;
    line-height: 1.8;
  }
  .voice-card__tags {
    gap: 7px;
    margin-top: 16px;
  }
  .voice-card__tags span {
    padding: 6px 12px;
    font-size: .7rem;
  }
  /* =========================
  FAQ Tablet
========================= */
  .faq {
    padding: 110px 24px;
  }
  .faq__inner {
    max-width: 900px;
  }
  .faq-item__question {
    min-height: 82px;
    gap: 17px;
    padding: 17px 22px;
  }
  .faq-item__question-text {
    font-size: 16px;
  }
  .faq-item__answer-inner {
    padding: 22px 26px 26px;
  }
  .faq__contact {
    gap: 28px;
    margin-top: 36px;
    padding: 26px 30px;
  }
  .faq__contact-title {
    font-size: 21px;
  }
  .faq__contact-button {
    min-height: 52px;
    padding: 0 22px;
    font-size: 13px;
  }
  /* =========================
    Contact Tablet
  ========================= */
  .contact {
    padding: 120px 20px;
  }
  .contact__body {
    grid-template-columns: 1fr;
  }
  .contact__panel {
    position: static;
  }
  .contact__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
  }
  .contact__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .contact__button {
    width: 100%;
    margin: 0;
  }
  /* =========================
    Footer Tablet
  ========================= */
  .site-footer {
    padding: 80px 24px 28px;
  }
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 36px;
    padding-bottom: 48px;
  }
  .site-footer__brand {
    grid-column: 1;
    grid-row: 1;
  }
  .site-footer__nav {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .site-footer__cta {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 32px;
    padding: 30px 34px;
  }
  .site-footer__cta-label, .site-footer__cta-title, .site-footer__cta-text {
    grid-column: 1;
  }
  .site-footer__cta-title {
    font-size: 26px;
  }
  .site-footer__cta-text {
    margin: 12px 0 0;
    max-width: 560px;
  }
  .site-footer__button {
    grid-column: 2;
    grid-row: 1 / 4;
    min-width: 230px;
    padding: 0 26px;
  }
  .site-footer__bottom {
    gap: 24px;
  }
  .site-footer__pagetop {
    right: 28px;
  }
  .site-footer__cta-break {
    display: none;
  }
}
@media (max-width: 760px) {
  .site-header {
    padding: 12px;
  }
  .site-header__inner {
    height: 62px;
    padding: 0 12px 0 16px;
  }
  .site-logo {
    width: 180px;
  }
  .hero {
    display: block;
    min-height: auto;
    background: var(--sky);
    padding-bottom: 96px;
  }
  .hero__bg {
    position: relative;
    height: 54vh;
    min-height: 390px;
    display: block;
  }
  .hero__bg img {
    object-position: center top;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(238, 246, 255, .55) 68%, var(--sky) 100%);
  }
  .hero__inner {
    width: calc(100% - 40px);
    padding-top: 34px;
  }
  .hero__label {
    margin-bottom: 16px;
    font-size: 11px;
  }
  .hero__title {
    font-size: clamp(36px, 11vw, 52px);
  }
  .hero__lead {
    margin-top: 22px;
    font-size: 18px;
  }
  .hero__text {
    font-size: 14px;
  }
  .hero__buttons {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }
  .btn {
    width: 100%;
    min-height: 54px;
  }
  .hero__scroll {
    display: none;
  }
  .section {
    padding: 90px 20px;
  }
  .reason {
    padding: 90px 20px;
  }
  .section-heading {
    text-align: left;
    margin-bottom: 42px;
  }
  .section-heading__lead {
    margin-left: 0;
  }
  .reason__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .reason-card {
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .reason-card__image {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
  }
  .reason-card__title {
    font-size: 16px;
    line-height: 1.5;
  }
  .reason-card__text {
    font-size: 13px;
    text-align: left;
  }
  .reason-card__top {
    display: block;
  }
  .reason-card__head {
    padding-top: 0;
    text-align: center;
  }
  .reason-card__number, .reason-card__title {
    text-align: center;
  }
  /* =========================
    Service Smartphone
  ========================= */
  .service {
    padding: 90px 20px;
  }
  .service::before {
    top: 34px;
    font-size: 72px;
  }
  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px;
    border-radius: 20px;
  }
  .service-tabs__button {
    min-height: 68px;
    padding: 10px 8px;
    border-radius: 15px;
  }
  .service-tabs__number {
    font-size: 10px;
  }
  .service-tabs__label {
    font-size: 14px;
  }
  .service-panel {
    display: block;
    min-height: 0;
    border-radius: 28px;
  }
  .service-panel__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .service-panel__image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }
  .service-panel__content {
    padding: 34px 24px 30px;
  }
  .service-panel__label {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .service-panel__title {
    font-size: 32px;
  }
  .service-panel__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
  }
  .service-panel__text {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.85;
  }
  .service-panel__details {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .service-panel__detail {
    padding: 18px 16px;
  }
  .service-panel__detail-title {
    font-size: 14px;
  }
  .service-panel__list li {
    font-size: 13px;
  }
  .service-panel__button {
    width: 100%;
    margin-top: 24px;
    padding: 0 20px;
  }
  /* =========================
  Simulator Smartphone
========================= */
  .simulator {
    padding: 90px 20px;
  }
  .simulator::before {
    top: 34px;
    font-size: 72px;
  }
  .simulator__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .simulator-form {
    padding: 30px 22px;
    border-radius: 28px;
  }
  .simulator-form__head {
    margin-bottom: 26px;
  }
  .simulator-form__label {
    font-size: 10px;
  }
  .simulator-form__title {
    font-size: 24px;
    line-height: 1.5;
  }
  .simulator-form__text {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.8;
  }
  .simulator-question {
    padding-top: 20px;
  }
  .simulator-question + .simulator-question {
    margin-top: 20px;
  }
  .simulator-question__legend {
    gap: 10px;
  }
  .simulator-question__number {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }
  .simulator-question__heading {
    font-size: 18px;
  }
  .simulator-question__description {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.7;
  }
  .simulator-options, .simulator-options--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }
  .simulator-options--two {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .simulator-option__content {
    min-height: 54px;
    padding: 13px 15px;
    border-radius: 16px;
  }
  .simulator-option__text {
    font-size: 13px;
  }
  .simulator-option__note {
    font-size: 10px;
    line-height: 1.6;
  }
  /* =========================
  Simulator Result Smartphone
========================= */
  .simulator-result {
    position: relative;
    top: auto;
    padding: 28px 22px 24px;
    border-radius: 28px;
  }
  .simulator-result::before {
    top: -100px;
    right: -100px;
    width: 240px;
    height: 240px;
  }
  .simulator-result::after {
    right: 24px;
    bottom: 100px;
    width: 100px;
    height: 100px;
  }
  .simulator-result__top {
    padding-bottom: 20px;
  }
  .simulator-result__label {
    font-size: 10px;
  }
  .simulator-result__title {
    font-size: 26px;
  }
  .simulator-result__lead {
    font-size: 12px;
  }
  .simulator-result__price {
    padding: 20px 0 18px;
  }
  .simulator-result__price-label {
    font-size: 12px;
  }
  #simulator-price {
    font-size: clamp(44px, 13vw, 58px);
  }
  .simulator-result__price-unit {
    padding-bottom: 5px;
    font-size: 17px;
  }
  .simulator-result__tax {
    margin-top: 8px;
    font-size: 10px;
  }
  .simulator-result__plan {
    padding: 18px;
    border-radius: 20px;
  }
  .simulator-result__plan-label {
    font-size: 11px;
  }
  .simulator-result__plan-name {
    font-size: 22px;
  }
  .simulator-result__plan-text {
    font-size: 11px;
  }
  .simulator-result__summary {
    margin-top: 18px;
    padding-top: 18px;
  }
  .simulator-result__summary-title {
    font-size: 12px;
  }
  .simulator-result__summary-list {
    gap: 7px;
  }
  .simulator-result__summary-list div {
    grid-template-columns: 74px 1fr;
    gap: 8px;
  }
  .simulator-result__summary-list dt, .simulator-result__summary-list dd {
    font-size: 11px;
  }
  .simulator-result__button {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    padding: 0 16px;
    font-size: 12px;
  }
  .simulator-result__note {
    margin-top: 14px;
    font-size: 9px;
    line-height: 1.6;
  }
  /* =========================
  Flow Smartphone
========================= */
  .flow {
    padding: 90px 20px;
  }
  .flow::before {
    top: 34px;
    font-size: 72px;
  }
  .flow__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .flow-card {
    min-height: 0;
    padding: 26px 22px 24px;
    border-radius: 26px;
  }
  .flow-card__number {
    margin-bottom: 18px;
  }
  .flow-card__number span {
    font-size: 9px;
  }
  .flow-card__number strong {
    font-size: 32px;
  }
  .flow-card__icon {
    width: 112px;
    height: 112px;
    margin-bottom: 16px;
  }
  .flow-card__label {
    font-size: 9px;
  }
  .flow-card__title {
    font-size: 20px;
  }
  .flow-card__text {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
  }
  .flow-card__notes {
    margin-top: 18px;
    padding-top: 0;
    gap: 6px;
  }
  .flow-card__notes li {
    font-size: 12px;
  }
  .flow__bottom {
    display: block;
    margin-top: 26px;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .flow__bottom-title {
    font-size: 21px;
  }
  .flow__bottom-description {
    font-size: 12px;
  }
  .flow__button {
    width: 100%;
    margin-top: 20px;
    min-height: 52px;
    padding: 0 18px;
    font-size: 13px;
  }
  /* =========================
  Profile Smartphone
========================= */
  .profile {
    padding: 90px 20px;
  }
  .profile::before {
    top: 34px;
    font-size: 72px;
  }
  /* 見出し */
  .profile .section-heading {
    margin-bottom: 42px;
    text-align: left;
  }
  .profile .section-heading__lead {
    margin-left: 0;
  }
  /* パネルを縦並びに */
  .profile__panel {
    display: block;
    border-radius: 28px;
  }
  /* =========================
  Profile Image Smartphone
========================= */
  .profile__visual {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }
  .profile__image {
    height: 100%;
  }
  .profile__image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
  }
  /* スマホではホバー拡大を無効化 */
  .profile__panel:hover .profile__image img {
    transform: none;
  }
  .profile__visual-decoration {
    bottom: 22px;
  }
  .profile__visual-word {
    font-size: clamp(46px, 14vw, 68px);
    letter-spacing: .1em;
  }
  /* =========================
  Profile Content Smartphone
========================= */
  .profile__content {
    display: flex;
    padding: 34px 24px 30px;
  }
  .profile__eyebrow {
    margin-bottom: 9px;
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: .16em;
  }
  .profile__catch {
    padding-bottom: 18px;
    font-size: clamp(27px, 8.5vw, 36px);
    line-height: 1.4;
    letter-spacing: .02em;
  }
  .profile__catch::after {
    width: 54px;
    height: 3px;
  }
  /* =========================
  Profile Name Smartphone
========================= */
  .profile__name-block {
    margin-top: 24px;
  }
  .profile__role {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.75;
  }
  .profile__name-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
  }
  .profile__reading {
    margin: 0 0 4px;
    font-size: 10px;
  }
  .profile__name {
    font-size: 28px;
  }
  /* =========================
  Profile Details Smartphone
========================= */
  .profile__details {
    gap: 8px;
    margin-top: 18px;
  }
  .profile__detail {
    min-height: 38px;
    gap: 8px;
    padding: 7px 12px;
  }
  .profile__detail dt, .profile__detail dd {
    font-size: 10px;
  }
  /* =========================
  Profile Message Smartphone
========================= */
  .profile-message {
    margin-top: 22px;
    padding: 22px 18px;
    border-radius: 22px;
  }
  .profile-message__label {
    margin-bottom: 5px;
    font-size: 9px;
  }
  .profile-message__title {
    font-size: 19px;
    line-height: 1.55;
  }
  .profile-message__body {
    margin-top: 14px;
  }
  .profile-message__body p {
    font-size: 12px;
    line-height: 1.9;
  }
  .profile-message__body p + p {
    margin-top: 10px;
  }
  /* =========================
  Profile Signature Smartphone
========================= */
  .profile__signature {
    display: grid;
    justify-items: end;
    gap: 4px;
    margin-top: 22px;
    text-align: right;
  }
  .profile__signature-role {
    padding-bottom: 0;
    font-size: 9px;
    line-height: 1.65;
  }
  .profile__signature-name {
    font-size: 25px;
  }
  /* =========================
  Profile Button Smartphone
========================= */
  .profile__button {
    align-self: stretch;
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    padding: 0 20px;
    font-size: 13px;
  }
  .voice {
    padding: 90px 20px;
  }
  .voice::before {
    top: 34px;
    font-size: 72px;
  }
  .voice__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .voice-card {
    grid-template-columns: 40% 60%;
    border-radius: 24px;
  }
  .voice-card__image {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .voice-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .voice-card__content {
    padding: 18px 16px;
  }
  .voice-card__stars {
    margin-bottom: 7px;
    font-size: .75rem;
    letter-spacing: .12em;
  }
  .voice-card__title {
    margin-bottom: 10px;
    font-size: .95rem;
    line-height: 1.5;
  }
  .voice-card__text {
    font-size: .76rem;
    line-height: 1.75;
  }
  .voice-card__tags {
    gap: 6px;
    margin-top: 14px;
  }
  .voice-card__tags span {
    padding: 5px 9px;
    font-size: .64rem;
  }
  /* =========================
  FAQ Smartphone
========================= */
  .faq {
    padding: 90px 20px;
  }
  .faq::before {
    top: 34px;
    font-size: 72px;
  }
  .faq__list {
    gap: 12px;
  }
  .faq-item {
    border-radius: 20px;
  }
  .faq-item__question {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
    min-height: 76px;
    padding: 14px 14px;
  }
  .faq-item__number {
    min-width: 48px;
    min-height: 32px;
    padding: 0 9px;
    font-size: 9px;
  }
  .faq-item__question-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .faq-item__icon {
    width: 32px;
    height: 32px;
  }
  .faq-item__icon::before, .faq-item__icon::after {
    width: 12px;
  }
  .faq-item__answer-inner {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px 20px;
  }
  .faq-item__answer-mark {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .faq-item__answer p {
    padding-top: 1px;
    font-size: 12px;
    line-height: 1.85;
  }
  .faq__contact {
    display: block;
    margin-top: 30px;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .faq__contact-title {
    font-size: 18px;
  }
  .faq__contact-description {
    font-size: 12px;
  }
  .faq__contact-button {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    padding: 0 18px;
    font-size: 13px;
  }
  /* =========================
    Contact Smartphone
  ========================= */
  .contact {
    padding: 90px 20px;
  }
  .contact__support, .contact__panel {
    padding: 32px 24px;
    border-radius: 24px;
  }
  .contact__support-title, .contact__panel-title {
    font-size: 28px;
  }
  .contact__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-feature {
    align-items: flex-start;
  }
  .contact-feature__icon {
    width: 60px;
    height: 60px;
  }
  .contact-feature__icon img {
    width: 42px;
    height: 42px;
  }
  .contact-feature__title {
    font-size: 18px;
  }
  .contact__actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact__button {
    padding: 16px;
  }
  /* =========================
    Footer Smartphone
  ========================= */
  .site-footer {
    padding: 72px 20px 24px;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 40px;
  }
  .site-footer__brand, .site-footer__nav, .site-footer__cta {
    grid-column: auto;
    grid-row: auto;
  }
  /* 事務所情報 */
  .site-footer__brand {
    text-align: center;
  }
  .site-footer__logo {
    width: 250px;
    margin: 0 auto 22px;
  }
  .site-footer__message, .site-footer__address, .site-footer__contact-list {
    text-align: left;
  }
  .site-footer__message {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.9;
  }
  .site-footer__address {
    font-size: 14px;
  }
  .site-footer__address p {
    margin-bottom: 20px;
  }
  .site-footer__contact-list {
    gap: 12px;
  }
  .site-footer__contact-list div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
  }
  /* ナビゲーション */
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .site-footer__nav-title {
    margin-bottom: 16px;
    font-size: 11px;
  }
  .site-footer__nav-list {
    gap: 12px;
  }
  .site-footer__nav-list a {
    font-size: 14px;
  }
  /* CTA */
  .site-footer__cta {
    display: block;
    padding: 28px 24px;
    border-radius: 24px;
  }
  .site-footer__cta-label, .site-footer__cta-title, .site-footer__cta-text, .site-footer__button {
    grid-column: auto;
    grid-row: auto;
  }
  .site-footer__cta-label {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .site-footer__cta-title {
    font-size: 24px;
    line-height: 1.5;
  }
  .site-footer__cta-text {
    margin: 14px 0 22px;
    max-width: none;
    font-size: 13px;
    line-height: 1.85;
  }
  .site-footer__button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 20px;
    font-size: 14px;
  }
  /* 下段 */
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 24px;
  }
  .site-footer__legal {
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  .site-footer__legal a {
    font-size: 12px;
  }
  .site-footer__copyright {
    font-size: 11px;
  }
  /* ページトップ */
  .site-footer__pagetop {
    top: -26px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 25px;
  }
}