:root {
  --navy-950: #001334;
  --navy-900: #002253;
  --navy-800: #003477;
  --blue-500: #079cf3;
  --cyan-300: #61dcff;
  --yellow: #fff21a;
  --white: #fff;
  --header-height: 74px;
  --content-width: 1220px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--white);
  background: var(--navy-950);
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-950);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(130, 198, 255, 0.15);
  background: linear-gradient(90deg, #062b73 0%, #002053 58%, #001743 100%);
  box-shadow: 0 8px 28px rgba(0, 8, 35, 0.24);
}

.header-inner {
  width: min(calc(100% - 40px), 1380px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-wrap {
  position: relative;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.brand-future {
  position: absolute;
  left: 50px;
  top: 10px;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: 1.65px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  white-space: nowrap;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

.brand-tagline {
  font: 700 7px/1 Arial, sans-serif;
  letter-spacing: 1.65px;
  color: #b9e9ff;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 13px;
  font-weight: 700;
}

.global-nav > a:not(.header-contact) {
  position: relative;
  white-space: nowrap;
  padding: 28px 0;
}

.global-nav > a:not(.header-contact)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 18px;
  left: 50%;
  height: 2px;
  background: var(--cyan-300);
  transition: right 0.22s ease, left 0.22s ease;
}

.global-nav > a:not(.header-contact):hover::after,
.global-nav > a:not(.header-contact):focus-visible::after {
  right: 0;
  left: 0;
}

.header-contact {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  color: #03234e;
  background: var(--yellow);
  box-shadow: 0 5px 18px rgba(255, 242, 26, 0.2);
  white-space: nowrap;
}

.header-contact svg,
.cta svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  overflow: hidden;
  background-color: #001846;
  background-image:
    linear-gradient(90deg, rgba(0, 18, 55, 0.98) 0%, rgba(0, 28, 73, 0.9) 33%, rgba(0, 47, 110, 0.15) 72%),
    url("../img/hero-city.webp");
  background-position: center, center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 10, 35, 0.08) 0%, rgba(0, 15, 50, 0.05) 60%, rgba(0, 17, 55, 0.82) 100%),
    radial-gradient(circle at 74% 48%, rgba(0, 176, 255, 0.2), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  opacity: 0.35;
  background:
    linear-gradient(165deg, transparent 48%, rgba(34, 161, 255, 0.35) 49%, transparent 50%) 0 0 / 80px 32px,
    linear-gradient(195deg, transparent 48%, rgba(34, 161, 255, 0.25) 49%, transparent 50%) 0 0 / 110px 38px;
  mask-image: linear-gradient(transparent, #000);
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  height: 33%;
  z-index: -1;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(72, 190, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 190, 255, 0.45) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(400px) rotateX(62deg) scale(1.3);
  transform-origin: bottom;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  right: 17%;
  bottom: 12%;
  border-radius: 50%;
  border: 1px solid rgba(69, 209, 255, 0.2);
  box-shadow: 0 0 80px rgba(0, 173, 255, 0.24), inset 0 0 70px rgba(0, 141, 255, 0.17);
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 64px), var(--content-width));
  min-height: 700px;
  margin: 0 auto;
  padding: 38px 0 260px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 55%;
}

.campaign-note {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #d4ecff;
  letter-spacing: 0.04em;
}

.campaign-note s {
  margin: 0 3px;
  font-size: 17px;
  font-weight: 800;
  color: #ffb3b3;
  text-decoration-color: #ff6b6b;
  text-decoration-thickness: 2px;
}

.anniversary {
  display: grid;
  width: fit-content;
  grid-template-columns: auto auto;
  align-items: end;
  margin: 0 0 16px;
  padding: 0 4px 11px 0;
  border-bottom: 1px solid rgba(83, 198, 255, 0.65);
  box-shadow: 0 8px 12px -11px #5ed9ff;
}

.anniversary > span {
  grid-column: 1 / -1;
  margin-bottom: -5px;
  font-size: 14px;
  font-weight: 700;
}

.anniversary strong {
  font: italic 900 72px/0.95 Arial, sans-serif;
  color: var(--yellow);
  text-shadow: 0 4px 20px rgba(255, 242, 26, 0.22);
}

.anniversary strong small {
  margin-left: 2px;
  font-size: 31px;
}

.anniversary b {
  padding: 0 0 8px 10px;
  font-size: 19px;
}

h1 {
  margin: 0;
  font-size: clamp(35px, 1.4vw, 54px);
  line-height: 1.42;
  font-weight: 800;
}

h1 em {
  margin-left: 8px;
  font: italic 900 1.65em/0.7 Arial, sans-serif;
  color: var(--yellow);
  text-shadow: 0 3px 18px rgba(255, 239, 0, 0.2);
}

h1 em small {
  margin-left: 3px;
  font-size: 0.45em;
}

h1 em .em-label {
  font-size: 0.61em;
  font-style: normal;
}

h1 > span {
  color: var(--white);
}

.sns-offer {
  width: fit-content;
  min-width: 360px;
  margin-top: 13px;
  padding: 9px 22px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #bceaff;
  background: linear-gradient(105deg, rgba(3, 35, 90, 0.72), rgba(4, 51, 119, 0.48));
  box-shadow: inset 0 0 24px rgba(0, 138, 255, 0.15);
  transform: skew(-3deg);
}

.sns-offer-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sns-offer > * {
  transform: skew(3deg);
}

.sns-offer span {
  font-size: 28px;
  font-weight: 800;
}

.sns-offer strong {
  font-size: 36px;
  line-height: 1;
  color: var(--yellow);
}

.sns-offer-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sns-note {
  margin: 8px 0 0 11px;
  color: #d4ecff;
  font-size: 15px;
}
.hero-limit-note {
  margin: 8px 0 0;
  font-size: 15px;
  color: #ffd87a;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tax-note {
  font-size: 0.35em;
  font-weight: 400;
  position: relative;
  top: 5px;
  margin-left: -6px;
}

.trust-list {
  width: 620px;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.trust-list li {
  min-width: 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(192, 229, 255, 0.32);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.trust-list li:first-child {
  padding-left: 0;
}

.trust-list li:last-child {
  border-right: 0;
}

.trust-list svg {
  width: 32px;
  flex: 0 0 32px;
  fill: none;
  stroke: #d9f3ff;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: absolute;
  z-index: 3;
  top: 63px;
  right: -116px;
  width: 760px;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(0, 14, 50, 0.42));
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-actions {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 32px;
  left: 0;
}

.price-panel {
  width: 66%;
  min-height: 96px;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 42% 1fr auto;
  align-items: center;
  gap: 20px;
  color: #003572;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  background: linear-gradient(115deg, #fff 0%, #edf8ff 100%);
  box-shadow: 0 10px 34px rgba(0, 10, 45, 0.32);
}

.price-main {
  display: flex;
  align-items: center;
  gap: 17px;
}

.yen-icon {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font: 400 32px/1 Arial, sans-serif;
  background: linear-gradient(145deg, #31a9ef, #136dc6);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.15);
}

.price-main p {
  margin: 0;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
}

.price-main small {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 800;
}

.price-main strong {
  font: 800 37px/1.05 Arial, sans-serif;
  color: #096abf;
  border-bottom: 4px solid var(--yellow);
}

.price-main strong em {
  font-size: 17px;
  font-style: normal;
}

.price-main b {
  font-size: 13px;
}

.price-description {
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid #bad4e7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.price-panel > a {
  padding-bottom: 7px;
  border-bottom: 1px solid #abc5db;
  color: #0872c6;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.price-panel > a span {
  margin-left: 10px;
  font-size: 20px;
}

.cta-row {
  width: 80%;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cta {
  min-height: 62px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.cta b {
  font-size: 22px;
}

.cta-primary {
  color: #003369;
  background: var(--yellow);
  box-shadow: 0 9px 26px rgba(255, 241, 0, 0.18);
}

.cta-secondary {
  border: 1px solid #d8f2ff;
  background: linear-gradient(100deg, rgba(1, 84, 181, 0.8), rgba(0, 53, 127, 0.75));
  box-shadow: inset 0 0 20px rgba(35, 172, 255, 0.13);
}

@media (max-width: 1120px) {
  .global-nav {
    gap: 16px;
    font-size: 12px;
  }

  .header-contact {
    padding: 0 14px;
  }

  .hero-inner {
    width: min(calc(100% - 44px), var(--content-width));
  }

  .hero-visual {
    right: -170px;
    width: 720px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    height: 34px;
  }

  .brand-future {
    left: 32px;
    top: 6px;
    font-size: 8px;
  }

  .global-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: 0;
    padding: 0 max(24px, calc(50% - 280px));
    display: grid;
    justify-content: initial;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    background: rgba(0, 25, 67, 0.98);
    border-top: 1px solid rgba(102, 205, 255, 0.2);
    box-shadow: 0 18px 30px rgba(0, 10, 34, 0.35);
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0.3s;
  }

  .global-nav.is-open {
    max-height: calc(100dvh - var(--header-height));
    padding: 12px max(24px, calc(50% - 280px)) 24px;
    visibility: visible;
  }

  .global-nav > a:not(.header-contact) {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(177, 222, 255, 0.16);
    text-align: left;
  }

  .global-nav > a:not(.header-contact)::after {
    display: none;
  }

  .header-contact {
    justify-content: center;
    margin-top: 16px;
  }

  .menu-button {
    width: 50px;
    height: 44px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    color: #fff;
    border: 0;
    background: transparent;
  }

  .menu-button-label {
    font: 700 7px/1 Arial, sans-serif;
    writing-mode: vertical-rl;
  }

  .menu-lines {
    width: 25px;
    display: grid;
    gap: 6px;
  }

  .menu-lines i {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 0.25s, opacity 0.2s;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines i:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(0, 21, 61, 0.85) 0%, rgba(0, 35, 85, 0.35) 45%, rgba(0, 19, 58, 0.88) 100%),
      url("../img/hero-city.webp");
    background-position: center, 61% center;
  }

  .hero-inner {
    width: min(calc(100% - 28px), 620px);
    min-height: 0;
    padding: 26px 0 22px;
  }

  .hero-copy {
    width: 100%;
  }

  .anniversary {
    margin-bottom: 13px;
  }

  .anniversary > span {
    font-size: 12px;
  }

  .anniversary strong {
    font-size: 59px;
  }

  .anniversary strong small {
    font-size: 25px;
  }

  .anniversary b {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(31px, 8.7vw, 45px);
    line-height: 1.42;
  }

  .sns-offer-wrap {
    flex-direction: column;
  }

  .sns-offer {
    min-width: 0;
    width: min(100%, 400px);
    padding: 9px 17px;
  }

  .sns-offer span {
    font-size: clamp(24px, 7vw, 32px);
  }

  .sns-offer strong {
    font-size: clamp(34px, 10vw, 44px);
  }

  .trust-list {
    display: none;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 128%;
    margin: -17px -14% -34px;
  }

  .hero-actions {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .price-panel {
    width: 100%;
    padding: 14px 17px;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    border-radius: 14px;
  }

  .price-main {
    grid-column: 1 / -1;
  }

  .price-description {
    padding-left: 0;
    border-left: 0;
    font-size: 11px;
  }

  .cta-row {
    width: 100%;
    margin-top: 17px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta {
    min-height: 56px;
  }
}

@media (max-width: 430px) {
  .hero-inner {
    width: calc(100% - 18px);
    padding-top: 24px;
  }

  .anniversary strong {
    font-size: 55px;
  }

  .anniversary b {
    font-size: 15px;
  }

  h1 {
    font-size: 24px;
  }

  h1 em {
    font-size: 1.62em;
  }

  .sns-offer {
    gap: 0;
  }

  .sns-note {
    width: 95%;
    font-size: 12px;
  }

  .hero-visual {
    width: 139%;
    margin: -12px -19.5% -34px;
  }

  .price-main {
    gap: 12px;
  }

  .yen-icon {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    font-size: 28px;
  }

  .price-main strong {
    font-size: 34px;
  }

  .price-panel > a {
    font-size: 11px;
  }

  .cta {
    padding: 0 17px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ── Hero Canvas ───────────────────────────────────────── */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Scroll Animations ─────────────────────────────────── */
.js-fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade.is-visible,
.js-fade-left.is-visible,
.js-fade-right.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade,
  .js-fade-left,
  .js-fade-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Hover: Support card icons ─────────────────────────── */
.support-card img {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-card:hover img {
  transform: translateY(-6px) scale(1.1);
}

/* ── Hover: Banner button ──────────────────────────────── */
.banner-button {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.banner-button:hover,
.banner-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1),
              0 16px 32px rgba(0, 36, 96, 0.32);
}

.support-section {
  position: relative;
  overflow: hidden;
  color: #001b49;
  background:
    radial-gradient(circle at 50% -12%, rgba(61, 180, 255, 0.16), transparent 40%),
    linear-gradient(180deg, #f7fcff 0%, #eef7ff 100%);
  padding: 52px 0 48px;
}

.support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(0, 98, 205, 0.04), transparent),
    radial-gradient(circle at 6% 35%, rgba(0, 128, 255, 0.08), transparent 26%),
    radial-gradient(circle at 94% 72%, rgba(0, 128, 255, 0.08), transparent 26%);
}

.support-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0 0 10px;
  color: #0062c8;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-heading p::before,
.section-heading p::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin: 0 16px 6px;
  background: currentColor;
  transform: rotate(48deg);
  opacity: 0.8;
}

.section-heading p::after {
  transform: rotate(-48deg);
}

.section-heading h2 {
  margin: 0;
  color: #050b1c;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading h2 em {
  color: #086bc5;
  font-style: normal;
}

.section-heading h2 small {
  font-size: 0.58em;
}

.section-heading span {
  display: block;
  margin-top: 14px;
  color: #101927;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.support-card {
  min-height: 258px;
  padding: 30px 24px 24px;
  text-align: center;
  border: 1px solid rgba(0, 73, 163, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(0, 51, 120, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 51, 120, 0.16);
}

.support-card img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.support-card h3 {
  margin: 0 0 13px;
  color: #002460;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.support-card p {
  margin: 0;
  color: #1d2633;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

.support-banner {
  min-height: 112px;
  margin-top: 38px;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 250px;
  align-items: center;
  gap: 0;
  border: 2px solid #075ec4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  box-shadow: 0 12px 28px rgba(0, 60, 140, 0.08);
}

.banner-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid #b5cce3;
}

.banner-item p {
  margin: 0;
  color: #0751a6;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
}

.mini-laurel {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #0062c8;
  border: 2px solid #0a6dcc;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1.05;
  font-weight: 900;
}

.mini-laurel::before,
.mini-laurel::after {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  width: 14px;
  border: solid #0a6dcc;
  opacity: 0.9;
}

.mini-laurel::before {
  left: -11px;
  border-width: 0 0 0 2px;
  border-radius: 100% 0 0 100%;
  transform: rotate(16deg);
}

.mini-laurel::after {
  right: -11px;
  border-width: 0 2px 0 0;
  border-radius: 0 100% 100% 0;
  transform: rotate(-16deg);
}

.mini-laurel strong {
  display: inline-block;
  color: #0a6dcc;
  font-size: 24px;
  line-height: 0.86;
}

.mini-yen,
.mini-headset {
  width: 66px;
  height: 66px;
  display: grid;
  flex: 0 0 66px;
  place-items: center;
  color: #0b66c3;
  border: 3px solid currentColor;
  border-radius: 50%;
  font: 500 41px/1 Arial, sans-serif;
}

.mini-headset svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.banner-price b {
  color: #0751a6;
}

.banner-price small {
  font-size: 0.72em;
}

.banner-button {
  min-height: 70px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  justify-self: end;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(135deg, #003f91 0%, #001947 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 10px 24px rgba(0, 36, 96, 0.18);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.banner-button span {
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 900px) {
  .support-section {
    padding: 44px 0 36px;
  }

  .support-inner {
    width: min(calc(100% - 28px), 620px);
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading p {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .section-heading p::before,
  .section-heading p::after {
    width: 28px;
    margin: 0 8px 5px;
  }

  .section-heading h2 {
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .section-heading span {
    font-size: 13px;
    line-height: 1.8;
  }

  .support-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .support-card {
    min-height: 220px;
    padding: 24px 14px 20px;
    border-radius: 9px;
  }

  .support-card img {
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
  }

  .support-card h3 {
    font-size: 17px;
  }

  .support-card p {
    font-size: 12px;
    line-height: 1.75;
  }

  .support-banner {
    margin-top: 24px;
    padding: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .banner-item {
    justify-content: flex-start;
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid #c8daeb;
  }

  .banner-button {
    width: calc(100% - 32px);
    min-height: 58px;
    margin: 16px;
    justify-self: center;
    border-radius: 14px;
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .support-inner {
    width: calc(100% - 18px);
  }

  .support-cards {
    gap: 10px;
  }

  .support-card {
    min-height: 210px;
    padding: 20px 10px 18px;
  }

  .support-card img {
    width: 58px;
    height: 58px;
  }

  .support-card h3 {
    font-size: 15px;
    line-height: 1.45;
  }

  .support-card p {
    font-size: 11px;
  }

  .banner-item p {
    font-size: 14px;
  }
}

/* About / Creator / News sections */
.section-kicker {
  margin: 0 0 8px;
  color: #0b69c9;
  font: 800 11px/1 Arial, sans-serif;
  letter-spacing: 0.16em;
}

.about-section {
  color: #061a3d;
  background: #fff;
  padding: 72px 0 64px;
}

.about-inner,
.creator-inner,
.news-inner {
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(370px, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 68px;
}

.about-copy h2,
.creator-aside h2,
.news-heading h2 {
  position: relative;
  margin: 0 0 28px;
  color: #002868;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-copy h2::after,
.creator-aside h2::after,
.news-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #006cd6, #5fd6ff);
}

.about-copy p:not(.section-kicker),
.creator-aside p:not(.section-kicker):not(.creator-role),
.creator-message p:not(.creator-role) {
  margin: 0;
  color: #162131;
  font-size: 15px;
  line-height: 2.25;
  font-weight: 600;
}

.about-photo,
.creator-photo {
  margin: 0;
  overflow: hidden;
  background: #e7f2fb;
  box-shadow: 0 18px 42px rgba(0, 38, 86, 0.13);
}

.about-photo {
  aspect-ratio: 1.42 / 1;
}

.about-photo img,
.creator-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 40% 60%;
  border: 1px solid #dce6ef;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 54, 116, 0.05);
}

.about-stat {
  min-height: 95px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid #dce6ef;
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #075ec4;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-stat strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #003178;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.about-stat small {
  font-size: 0.55em;
  font-weight: 700;
}

.creator-section {
  color: #061a3d;
  background:
    radial-gradient(circle at 14% 22%, rgba(38, 158, 245, 0.13), transparent 32%),
    radial-gradient(circle at 84% 70%, rgba(42, 171, 255, 0.14), transparent 35%),
    linear-gradient(180deg, #eff8ff 0%, #f8fcff 100%);
  padding: 70px 0;
}

.creator-inner {
  display: grid;
  grid-template-columns: 580px 1fr;
  grid-template-areas: "photo aside";
  column-gap: 50px;
  align-items: start;
}

.creator-photo {
  grid-area: photo;
  aspect-ratio: 1.82 / 1;
}

.creator-bio {
  font-size: 14px;
  line-height: 2;
  color: #3a5068;
  border-left: 3px solid #1286e8;
  padding-left: 14px;
  margin-top: 28px;
}

.creator-photo img {
  object-position: center 20%;
}

.creator-role {
  position: relative;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding-bottom: 22px;
  color: #075ec4;
  font-size: 15px;
  font-weight: 800;
  text-align: right;
}

.creator-role::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170px;
  height: 1px;
  background: #26394d;
}


.creator-more {
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
  padding: 32px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.creator-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #1286e8, #005ec4);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(18, 134, 232, 0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.creator-more-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.creator-more-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.creator-more-list li {
  font-size: 12px;
  font-weight: 600;
  color: #5a7a99;
}

.stance-section {
  color: #061a3d;
  background: #fff;
  padding: 70px 0;
}

.stance-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 60px;
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
}

.stance-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 38, 86, 0.13);
  aspect-ratio: 4 / 3;
}

.stance-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stance-copy h2 {
  position: relative;
  margin: 0 0 28px;
  color: #002868;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stance-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #006cd6, #5fd6ff);
}

.stance-copy p:not(.section-kicker) {
  margin: 0 0 16px;
  color: #162131;
  font-size: 15px;
  line-height: 2.25;
  font-weight: 600;
}

.stance-copy p:last-child {
  margin-bottom: 0;
}

.cheap-section {
  color: #061a3d;
  background: #f5f9fd;
  padding: 72px 0 64px;
}

.nomad-section {
  color: #061a3d;
  background: #fff;
  padding: 70px 0;
}

.nomad-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 60px;
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
}

.nomad-photo {
  margin: 0;
  overflow: visible;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 38, 86, 0.13);
}

.nomad-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

.nomad-photo-caption {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  padding: 10px;
  box-sizing: border-box;
}

.nomad-copy h2 {
  position: relative;
  margin: 0 0 28px;
  color: #002868;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nomad-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #006cd6, #5fd6ff);
}

.nomad-role {
  display: inline-block;
  margin: 0 0 22px;
  padding: 4px 12px;
  background: #e8f3ff;
  color: #075ec4;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.nomad-copy p:not(.section-kicker):not(.nomad-role) {
  margin: 0 0 16px;
  color: #162131;
  font-size: 15px;
  line-height: 2.25;
  font-weight: 600;
}

.nomad-copy p:last-child {
  margin-bottom: 0;
}

.cheap-inner {
  align-items: center;
}

.cheap-copy p:not(.section-kicker) + p {
  margin-top: 14px;
}

.cheap-photo img,
.about-photo img {
  object-position: center center;
}

.news-section {
  color: #061a3d;
  background: #fff;
  padding: 70px 0 74px;
}

.news-heading {
  text-align: center;
  margin-bottom: 34px;
}

.news-heading h2 {
  display: inline-block;
  margin-bottom: 10px;
}

.news-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.news-list {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.news-item {
  min-height: 68px;
  display: grid;
  grid-template-columns: 128px 100px 1fr 42px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #d5e1ec;
  color: #061a3d;
  transition: color 0.2s ease, background 0.2s ease;
}

.news-item:first-child {
  border-top: 1px solid #d5e1ec;
}

.news-item:hover,
.news-item:focus-visible {
  color: #075ec4;
  background: linear-gradient(90deg, rgba(7, 94, 196, 0.04), transparent);
}

.news-item time {
  color: #334050;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.news-category {
  min-width: 78px;
  padding: 5px 12px;
  display: inline-flex;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(135deg, #0b72cf, #004798);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.news-item strong {
  font-size: 15px;
  font-weight: 800;
}

.news-arrow {
  justify-self: end;
  color: #0751a6;
  font-size: 25px;
  font-family: Arial, sans-serif;
}

.news-more {
  min-width: 250px;
  min-height: 58px;
  margin: 42px auto 0;
  padding: 0 28px;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #003178;
  border: 1px solid #003178;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.news-more:hover,
.news-more:focus-visible {
  color: #fff;
  background: #003178;
  transform: translateY(-2px);
}

.news-more span {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 900px) {
  .about-section,
  .creator-section,
  .stance-section,
  .cheap-section,
  .nomad-section,
  .news-section {
    padding: 48px 0;
  }

  .about-inner,
  .creator-inner,
  .stance-inner,
  .cheap-inner,
  .nomad-inner,
  .news-inner {
    width: min(calc(100% - 28px), 620px);
  }

  .about-inner,
  .stance-inner,
  .cheap-inner,
  .nomad-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .creator-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "aside"
      "message";
    gap: 24px;
  }

  .about-photo {
    order: -1;
    aspect-ratio: 1.34 / 1;
  }

  .about-copy h2,
  .creator-aside h2,
  .cheap-copy h2,
  .news-heading h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .about-copy p:not(.section-kicker),
  .creator-aside p:not(.section-kicker):not(.creator-role),
  .creator-message p:not(.creator-role),
  .cheap-copy p:not(.section-kicker) {
    font-size: 13px;
    line-height: 2.05;
  }

  .about-stats {
    margin-top: 24px;
  }

  .about-stat {
    min-height: 82px;
    gap: 6px;
  }

  .about-stat svg {
    width: 24px;
    height: 24px;
  }

  .about-stat strong {
    font-size: 20px;
  }

  .creator-photo {
    aspect-ratio: 1.25 / 1;
  }

  .news-heading {
    margin-bottom: 26px;
  }

  .news-item {
    min-height: 82px;
    grid-template-columns: 92px 84px 1fr 28px;
    gap: 10px;
  }

  .news-item time,
  .news-item strong {
    font-size: 13px;
  }

  .news-category {
    min-width: 68px;
    padding: 5px 9px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    grid-template-columns: 40px 1fr;
    place-items: center start;
    justify-content: start;
    min-height: 66px;
    padding: 0 18px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #dce6ef;
  }

  .about-stat:last-child {
    border-bottom: 0;
  }

  .news-item {
    position: relative;
    grid-template-columns: 1fr 78px 30px;
    gap: 9px;
    padding: 14px 0;
  }

  .news-item time {
    grid-column: 1 / 2;
  }

  .news-category {
    grid-column: 2 / 3;
  }

  .news-item strong {
    grid-column: 1 / 3;
  }

  .news-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .news-more {
    min-width: 0;
    width: 100%;
  }
}

/* WEB4.0 / CTA / Footer */
.web4-section {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: #fff;
  background: #001947;
  isolation: isolate;
}

.web4-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/web4-network.webp");
  background-position: 70% center;
  background-size: cover;
  opacity: 0.82;
}

.web4-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 20, 58, 0.94) 0%, rgba(0, 28, 72, 0.88) 33%, rgba(0, 30, 77, 0.36) 63%, rgba(0, 21, 59, 0.1) 100%),
    radial-gradient(circle at 80% 48%, rgba(59, 196, 255, 0.18), transparent 32%);
}

.web4-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 217, 255, 0.65), transparent);
}

.web4-inner {
  width: min(calc(100% - 64px), 1220px);
  min-height: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.web4-copy {
  width: min(100%, 560px);
  padding: 70px 0 64px;
}

.web4-kicker {
  color: #75d9ff;
}

.web4-copy h2 {
  position: relative;
  margin: 0 0 34px;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.web4-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 62px;
  height: 3px;
  background: linear-gradient(90deg, #fff, #4ed7ff);
}

.web4-copy p:not(.section-kicker) {
  margin: 0;
  color: #e5f6ff;
  font-size: 16px;
  line-height: 2.35;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 8, 25, 0.55);
}

.web4-tags {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}

.web4-tags li {
  min-width: 92px;
  min-height: 38px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 246, 255, 0.78);
  border-radius: 5px;
  background: rgba(0, 35, 88, 0.44);
  box-shadow: inset 0 0 18px rgba(52, 191, 255, 0.08);
  color: #f7fcff;
  font: 800 12px/1 Arial, sans-serif;
  letter-spacing: 0.08em;
}

.final-cta {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 185, 255, 0.15), transparent 42%),
    linear-gradient(180deg, #001e54 0%, #00163e 100%);
  padding: 62px 0 66px;
  text-align: center;
  border-top: 1px solid rgba(130, 224, 255, 0.16);
}

.final-cta-inner {
  width: min(calc(100% - 64px), 980px);
  margin: 0 auto;
}

.final-cta h2 {
  position: relative;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.final-cta h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, #fff, #5cd9ff);
  transform: translateX(-50%);
}

.final-cta p {
  margin: 0;
  color: #e4f5ff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.final-cta-buttons {
  width: min(100%, 760px);
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
}

.final-button {
  min-height: 68px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.final-button:hover,
.final-button:focus-visible {
  transform: translateY(-2px);
}

.final-button span {
  font-size: 24px;
  line-height: 1;
}

.final-button-primary {
  color: #00245c;
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(255, 241, 0, 0.14);
}

.final-button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(0, 30, 80, 0.3);
  box-shadow: inset 0 0 22px rgba(77, 203, 255, 0.08);
}

.final-button-secondary:hover,
.final-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  color: #d9eeff;
  background: linear-gradient(180deg, #002d6a 0%, #001d4b 100%);
  border-top: 1px solid rgba(130, 224, 255, 0.14);
}

.footer-inner {
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
  padding: 44px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 44px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(206, 236, 255, 0.22);
}

.footer-brand {
  width: fit-content;
  display: grid;
  gap: 4px;
  color: #fff;
  letter-spacing: 0.12em;
}

.footer-brand strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
}

.footer-brand small {
  color: #c7e8ff;
  font-size: 10px;
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
}

.footer-nav a,
.footer-links a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff229;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  padding: 24px 0 10px;
}

.footer-bottom address {
  margin: 0;
  color: #c9e8ff;
  font-size: 12px;
  line-height: 1.8;
  font-style: normal;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dff4ff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.copyright {
  margin: 8px 0 0;
  text-align: center;
  color: #bdddf4;
  font-size: 12px;
}

@media (max-width: 900px) {
  .web4-section {
    min-height: 0;
  }

  .web4-bg {
    background-position: 58% center;
    opacity: 0.62;
  }

  .web4-section::before {
    background:
      linear-gradient(180deg, rgba(0, 19, 58, 0.94) 0%, rgba(0, 26, 70, 0.88) 56%, rgba(0, 21, 59, 0.86) 100%),
      radial-gradient(circle at 72% 45%, rgba(59, 196, 255, 0.14), transparent 35%);
  }

  .web4-inner {
    width: min(calc(100% - 28px), 620px);
    min-height: 0;
  }

  .web4-copy {
    width: 100%;
    padding: 54px 0 48px;
  }

  .web4-copy h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .web4-copy p:not(.section-kicker) {
    font-size: 13px;
    line-height: 2.05;
  }

  .web4-tags {
    gap: 10px;
  }

  .web4-tags li {
    min-width: 0;
    min-height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .final-cta {
    padding: 48px 0 50px;
  }

  .final-cta-inner {
    width: min(calc(100% - 28px), 620px);
  }

  .final-cta h2 {
    font-size: clamp(25px, 7.2vw, 33px);
  }

  .final-cta p {
    font-size: 13px;
  }

  .final-cta-buttons {
    margin-top: 30px;
  }

  .final-button {
    min-height: 58px;
    padding: 0 22px;
    gap: 20px;
    font-size: 15px;
  }

  .footer-inner {
    width: min(calc(100% - 28px), 620px);
    padding: 34px 0 22px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
    white-space: normal;
  }

  .copyright {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════
   Inquiry / Contact Section
═══════════════════════════════════════════════════════════ */
.inquiry-section {
  background: linear-gradient(180deg, #eef7ff 0%, #f5f9ff 60%, #eaf4ff 100%);
  padding: 88px 0 108px;
  color: #061a3d;
  border-top: 1px solid rgba(0, 100, 200, 0.08);
}

.inquiry-inner {
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
}

.inquiry-inner .inq-form,
.inquiry-inner .inq-steps {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.inquiry-header {
  text-align: center;
  margin-bottom: 64px;
}

.inquiry-header h2 {
  position: relative;
  margin: 8px 0 0;
  color: #002868;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inquiry-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #006cd6, #5fd6ff);
  transform: translateX(-50%);
}

.inquiry-lead {
  margin: 26px 0 0;
  color: #314a6a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.95;
}

/* ── Block ──────────────────────────────────────────────── */
.inq-block {
  margin-bottom: 68px;
}

.inq-block-label {
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 3px solid #079cf3;
  color: #002868;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* ── Section numbered heading ────────────────────────────── */
.inq-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.inq-section-num {
  font: 900 30px/1 Arial, sans-serif;
  color: #1a6fc4;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
}

.inq-section-title {
  margin: 0;
  color: #001a4d;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* ── Section 1: Topic cards ─────────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.topic-card {
  padding: 22px 10px 18px;
  background: #fff;
  border: 1px solid rgba(0, 70, 160, 0.1);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 50, 120, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 50, 120, 0.11);
  border-color: rgba(7, 156, 243, 0.38);
}

.topic-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topic-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.topic-card-title {
  margin: 0 0 8px;
  color: #001a4d;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.65;
}

.topic-card-desc {
  margin: 0;
  color: #4a6080;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.topic-note {
  margin-top: 20px;
  text-align: center;
  color: #4a6080;
  font-size: 13.5px;
  font-weight: 600;
}

/* ── Section numbered heading subtitle ───────────────────── */
.inq-section-subtitle {
  margin: 6px 0 24px;
  color: #4a6080;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.inq-commit-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inq-commit-list li {
  padding: 12px 16px 12px 30px;
  background: #f0f7ff;
  border-radius: 8px;
  border-left: 4px solid #0b63ce;
  font-size: 14px;
  font-weight: bold;
  color: #1a2e4a;
  line-height: 1.6;
  position: relative;
}
.inq-commit-list li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 12px;
  color: #0b63ce;
  font-weight: 700;
  font-size: 15px;
}

/* ── Category select ─────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cat-option {
  cursor: pointer;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px 16px;
  background: #fff;
  border: 1.5px solid rgba(0, 70, 160, 0.12);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 50, 120, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
  text-align: center;
}

.cat-card:hover {
  border-color: rgba(26, 111, 196, 0.4);
  box-shadow: 0 4px 16px rgba(0, 50, 120, 0.10);
}

.cat-check {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a6fc4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.cat-check svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f7ff;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.cat-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cat-card-text {
  width: 100%;
}

.cat-card-title {
  display: block;
  margin-bottom: 5px;
  color: #001a4d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.cat-card-desc {
  display: block;
  color: #4a6080;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.cat-option.is-selected .cat-card {
  border-color: #1a6fc4;
  box-shadow: 0 4px 18px rgba(26, 111, 196, 0.18);
}

.cat-option.is-selected .cat-check {
  opacity: 1;
}

.cat-option.is-selected .cat-card-title {
  color: #1a6fc4;
}

.cat-option.is-selected .cat-card-icon {
  background: #deeeff;
}

/* ── Section 3: Reassurance ─────────────────────────────── */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(7, 156, 243, 0.12);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 80, 160, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reassurance-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 80, 160, 0.1);
}

.reassurance-item svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  fill: none;
  stroke: #079cf3;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reassurance-item p {
  margin: 0;
  color: #1d2f47;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.reassurance-item strong {
  color: #0462c3;
}

/* ── Section 4: Form ────────────────────────────────────── */
.inq-form {
  background: #fff;
  border: 1px solid rgba(7, 156, 243, 0.14);
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: 0 8px 32px rgba(0, 80, 160, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #002460;
  font-size: 15px;
  font-weight: 800;
}

.badge-req {
  padding: 2px 8px;
  background: #dc2626;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.badge-opt {
  padding: 2px 8px;
  background: #64748b;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.inq-form input[type="text"],
.inq-form input[type="email"],
.inq-form input[type="tel"],
.inq-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #bdd7f0;
  border-radius: 8px;
  background: #f8fbff;
  color: #061a3d;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  appearance: none;
}

.inq-form input:focus,
.inq-form textarea:focus {
  border-color: #079cf3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(7, 156, 243, 0.12);
}

.inq-form textarea {
  resize: vertical;
  min-height: 148px;
}

.form-input-half {
  max-width: 320px;
}

.form-note {
  display: block;
  margin-top: 6px;
  color: #7a8fa6;
  font-size: 12px;
  font-weight: 600;
}

/* ── 業種選択セレクト ── */
.inq-form select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 1.5px solid #bdd7f0;
  border-radius: 8px;
  background: #f8fbff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b63ce' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center / 12px 8px;
  color: #061a3d;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.6;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.inq-form select:focus {
  border-color: #079cf3;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(7, 156, 243, 0.12);
}

/* ── ご希望の機能エリア ── */
.inq-functions-area {
  background: #eef5ff;
  border: 1.5px solid #c4d9f0;
  border-radius: 12px;
  padding: 18px 20px 20px;
}
.inq-functions-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #001647;
  margin: 0 0 14px;
}

/* ── チェックボックスグリッド ── */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.check-opt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 12px;
  background: #fff;
  border: 1.5px solid #c4d9f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #1a3a8a;
  font-weight: 600;
  line-height: 1.45;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.check-opt:hover {
  border-color: #0b63ce;
  background: #e4efff;
}
.check-opt:has(input:checked) {
  border-color: #0b63ce;
  background: #dbeafe;
}
.check-opt input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #0b63ce;
  cursor: pointer;
}
.check-opt span {
  flex: 1;
}
@media (max-width: 640px) {
  .checkbox-grid { grid-template-columns: 1fr; }
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 18px;
  background: #f4f8ff;
  border: 1.5px solid #c4d9f0;
  border-radius: 8px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.radio-opt:has(input:checked) {
  border-color: #079cf3;
  background: #e8f4ff;
}

.radio-opt input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #079cf3;
}

.radio-opt span {
  color: #002460;
  font-size: 14px;
  font-weight: 700;
}

/* ── plan select cards ─────────────────────────────── */
.plan-select-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.plan-select-opt {
  display: block;
  cursor: pointer;
}

.plan-select-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.plan-select-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f4f8ff;
  border: 1.5px solid #c4d9f0;
  border-radius: 10px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.plan-select-opt:hover .plan-select-card {
  border-color: #079cf3;
  background: #eaf5ff;
}

.plan-select-opt:has(input:checked) .plan-select-card {
  border-color: #0b63ce;
  background: #e3eeff;
  box-shadow: 0 0 0 3px rgba(11,99,206,0.12);
}

.plan-select-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #b0c8e8;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  order: 1;
  transition: background 0.15s, border-color 0.15s;
}

.plan-select-opt:has(input:checked) .plan-select-check {
  background: #0b63ce;
  border-color: #0b63ce;
}

.plan-select-check svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 0.15s;
}

.plan-select-opt:has(input:checked) .plan-select-check svg {
  opacity: 1;
}

.plan-select-name {
  font-size: 14px;
  font-weight: 800;
  color: #002460;
  padding-right: 5px;
}

.plan-select-price {
  font-size: 13px;
  font-weight: 700;
  color: #0b63ce;
}

.plan-select-desc {
  font-size: 11px;
  color: #5a7090;
  margin-top: 2px;
}

/* ── end plan select cards ─────────────────────────── */

.inq-schedule-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inq-date-input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid #c8d8e8;
  border-radius: 6px;
  font-size: 15px;
  color: #162131;
  background: #fff;
  cursor: pointer;
}

.inq-time-select {
  flex: 1 1 130px;
  min-width: 0;
}

.inq-agree-group {
  margin-top: 8px;
}

.inq-agree-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #2d4a63;
  line-height: 1.6;
}

.inq-agree-label input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: #1286e8;
  cursor: pointer;
}

.inq-agree-label a {
  color: #1286e8;
  text-decoration: underline;
}

.inq-competitor-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #eef0f8;
  border: 1px solid #d0d5e8;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #2d4a63;
  line-height: 1.6;
}

.inq-competitor-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #1286e8;
  cursor: pointer;
}

.inq-competitor-note {
  margin-top: 14px;
  font-size: 12px;
  color: #5a7090;
  line-height: 1.7;
  text-align: center;
}

.inq-submit {
  position: relative;
  width: 100%;
  min-height: 64px;
  margin-top: 8px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #1256c8 0%, #1a7ae8 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18, 86, 200, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inq-submit-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inq-submit-arrow {
  position: absolute;
  right: 26px;
  font-size: 20px;
  font-family: Arial, sans-serif;
  line-height: 1;
  opacity: 0.9;
}

.inq-submit:hover,
.inq-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 86, 200, 0.42);
}

.inq-submit:disabled {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  cursor: default;
  transform: none;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.28);
}

.inq-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  color: #5a7090;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.inq-privacy-note svg {
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #5a7090;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Status message ─────────────────────────────────────── */
.inq-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.inq-status--success {
  background: #edfaf3;
  border: 1.5px solid #34c77b;
  color: #0f6e3d;
}

.inq-status--error {
  background: #fff3f3;
  border: 1.5px solid #e05252;
  color: #b52b2b;
}

.inq-status svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

/* ── Steps ──────────────────────────────────────────────── */
.inq-steps {
  margin-top: 72px;
  padding: 40px 36px;
  background: linear-gradient(135deg, #001e54, #002d6e);
  border-radius: 16px;
  color: #fff;
}

.inq-steps-label {
  text-align: center;
  margin: 0 0 28px;
  color: #c9e8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(97, 220, 255, 0.15);
  border: 2px solid #61dcff;
  color: #61dcff;
  font: 800 18px/1 Arial, sans-serif;
  margin-bottom: 12px;
}

.step-label {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
}

.step-desc {
  margin: 0;
  color: #b9e9ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.step-arr {
  flex: 0 0 auto;
  color: #4ab8e0;
  font-size: 28px;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding: 0 4px;
}

/* ── Inquiry responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .inquiry-section {
    padding: 60px 0 72px;
  }

  .inquiry-inner {
    width: min(calc(100% - 28px), 1220px);
  }

  .inquiry-header {
    margin-bottom: 48px;
  }

  .inquiry-lead {
    font-size: 14px;
  }

  .inq-block {
    margin-bottom: 52px;
  }

  .inq-section-heading {
    margin-bottom: 20px;
  }

  .inq-section-num {
    font-size: 24px;
  }

  .inq-section-title {
    font-size: 17px;
  }

  .topic-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .topic-card {
    padding: 18px 8px 16px;
  }

  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

@media (max-width: 480px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
  }
}

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cat-card {
    padding: 14px 14px;
    gap: 12px;
  }

  .cat-card-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .cat-card-title {
    font-size: 14px;
  }

  .inq-form {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-input-half {
    max-width: none;
  }

  .steps-row {
    flex-wrap: wrap;
    gap: 0 0;
  }

  .step-item {
    flex: 0 0 40%;
    padding: 12px 8px;
  }

  .step-arr {
    display: none;
  }
}

@media (max-width: 480px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inq-steps {
    padding: 28px 20px;
  }
}

/* ══════════════════════════════════════════════════════════
   Price page hero
   ══════════════════════════════════════════════════════════ */

.price-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #f4f9ff 0%, #ddeefa 50%, #c6e0f6 100%);
  border-bottom: 1px solid rgba(7, 120, 200, 0.12);
}

.price-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 130, 210, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 130, 210, 0.065) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-12deg) scale(2);
  pointer-events: none;
}

.price-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  width: min(calc(100% - 64px), 1160px);
  margin: 0 auto;
}

.price-hero-text {
  padding: 56px 40px 56px 0;
}

.price-hero-title {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  color: #008dfe;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.price-hero-sub {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
  color: #001a4d;
  line-height: 1.6;
}

.price-hero-sub strong {
  color: #0b63ce;
}

.price-hero-sub-highlight {
  color: #0b63ce;
  font-size: 1.4em;
}

.price-hero-campaign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 14px;
  color: #334;
}
.price-hero-campaign strong {
  color: #0b63ce;
  font-size: 16px;
}
.phc-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #e8400c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}
.phc-original {
  color: #888;
  text-decoration: line-through;
}

.price-hero-desc {
  margin: 0 0 30px;
  font-size: 13.5px;
  color: #4a6080;
  line-height: 2;
}

/* ── Badges ─────────────────────────────────────────────── */
.price-badges {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(11, 99, 206, 0.22);
  border-radius: 50px;
  padding: 14px 28px;
  gap: 0;
  box-shadow: 0 4px 20px rgba(11, 99, 206, 0.08);
}

.price-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.price-badge:first-of-type { padding-left: 0; }
.price-badge:last-of-type  { padding-right: 0; }

.price-badge-sep {
  flex: 0 0 1px;
  width: 1px;
  height: 40px;
  background: rgba(11, 99, 206, 0.18);
}

.price-badge-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-badge-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #6a84a8;
  white-space: nowrap;
}

.price-badge-value {
  font-size: 22px;
  font-weight: 900;
  color: #001a4d;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.price-badge-value small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: #4a6080;
}

/* ── Visual ─────────────────────────────────────────────── */
.price-hero-visual {
  align-self: center;
  line-height: 0;
}

.price-hero-visual img {
  width: 110%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1060px) {
  .price-hero-inner {
    grid-template-columns: 1fr 380px;
  }
}

@media (max-width: 860px) {
  .price-hero-inner {
    grid-template-columns: 1fr;
  }

  .price-hero-text {
    padding: 44px 0 40px;
  }

  .price-hero-visual {
    display: none;
  }
}

@media (max-width: 600px) {
  .price-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }

  .price-badge {
    padding: 0;
  }

  .price-badge-sep {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   Page Hero (inner page banner)
═══════════════════════════════════════════════════════════ */
.quote-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #eff8ff 0%, #f8fcff 100%);
  text-align: center;
}

.quote-inner {
  width: min(calc(100% - 64px), 680px);
  margin: 0 auto;
}

.quote-inner .section-kicker {
  text-align: center;
}

.quote-inner h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 36px;
  color: #002868;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
}

.quote-inner h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #006cd6, #5fd6ff);
}

.quote-text {
  margin: 0 0 24px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1286e8;
  letter-spacing: 0.04em;
}

.quote-desc {
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
  color: #3a5068;
  font-weight: 600;
}

.privacy-section {
  padding: 64px 0 80px;
  background: #fff;
  color: #061a3d;
}

.privacy-inner {
  width: min(calc(100% - 64px), 860px);
  margin: 0 auto;
}

.privacy-lead {
  margin: 0 0 48px;
  padding: 24px 28px;
  background: #f0f6ff;
  border-left: 4px solid #1286e8;
  font-size: 14px;
  line-height: 2;
  color: #2d4a63;
  font-weight: 600;
}

.privacy-item {
  margin-bottom: 40px;
}

.privacy-item h2 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  color: #002868;
  padding-bottom: 10px;
  border-bottom: 1px solid #d4e6f8;
}

.privacy-item p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 2;
  color: #2d4a63;
  font-weight: 500;
}

.privacy-item p:last-child {
  margin-bottom: 0;
}

.privacy-list {
  margin: 12px 0 0;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #2d4a63;
  font-weight: 500;
}

.privacy-divider {
  border: none;
  border-top: 2px solid #d4e6f8;
  margin: 48px 0;
}

/* ── sitemap ── */
.stm-body {
  padding: 60px 24px 80px;
}
.stm-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.stm-group-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a3a5c;
  border-left: 4px solid #5f87be;
  padding-left: 12px;
  margin: 0 0 24px;
}
.stm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.stm-list li {
  width: 50%;
  padding-right: 12px;
  box-sizing: border-box;
}
.stm-list li::before {
  content: '›';
  color: #5f87be;
  margin-right: 6px;
  font-weight: 700;
}
.stm-list a {
  color: #c6e2fe;
  text-decoration: none;
  font-size: 14px;
}
.stm-list a:hover {
  color: #5f87be;
  text-decoration: underline;
}
.stm-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.stm-cat-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a3a5c;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d4e6f8;
}
.stm-cat-title a {
  color: inherit;
  text-decoration: none;
}
.stm-cat-title a:hover {
  color: #5f87be;
}
.stm-cat .stm-list li {
  width: 100%;
}
@media (max-width: 768px) {
  .stm-works {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .stm-list li {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .stm-works {
    grid-template-columns: 1fr;
  }
}

.profile-toc {
  background: #f0f6ff;
  border-bottom: 1px solid #d4e6f8;
  padding: 18px 0;
}

.profile-toc-inner {
  width: min(calc(100% - 64px), 1220px);
  margin: 0 auto;
}

.profile-toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.profile-toc-list li {
  counter-increment: toc;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #3a5068;
}

.profile-toc-list li::before {
  content: counter(toc) ".";
  color: #1286e8;
  font-weight: 900;
}

.profile-toc-list a {
  color: inherit;
  text-decoration: none;
}

.profile-toc-list a:hover {
  color: #1286e8;
  text-decoration: underline;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 56px;
  background: linear-gradient(135deg, #000d2e 0%, #001647 50%, #001e5e 100%);
  border-bottom: 1px solid rgba(40, 100, 180, 0.25);
  text-align: center;
  color: #e8f4ff;
}

.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
}

.page-hero-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.page-hero-desc {
  margin: 0;
  color: rgba(200, 225, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
}

.page-hero-desc em {
  color: #61dcff;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 40px 0 44px;
  }

  .page-hero-desc {
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════════════════════
   Price page — 基本プラン section
   ══════════════════════════════════════════════════════════ */

.price-plan {
  padding: 52px 0 64px;
  background: #eef5fd;
}

.price-plan-inner {
  width: min(calc(100% - 64px), 1060px);
  margin: 0 auto;
}

.price-plan-card {
  background: #fff;
  border: 1.5px solid rgba(11, 99, 206, 0.14);
  border-radius: 20px;
  padding: 36px 48px 32px;
  box-shadow: 0 4px 28px rgba(11, 99, 206, 0.07);
}

.price-plan-card + .price-plan-card {
  margin-top: 24px;
}

/* ── Heading ────────────────────────────────────────────── */
.price-plan-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 32px;
  font-size: 25px;
  font-weight: 800;
  color: #001a4d;
  letter-spacing: 0.1em;
}

.price-plan-title::before,
.price-plan-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #c4d4e8;
}

/* ── Body ───────────────────────────────────────────────── */
.price-plan-body {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Price items ────────────────────────────────────────── */
.price-plan-items {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.price-plan-items-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}

.price-plan-item {
  padding: 0 24px;
}

.price-plan-item:first-child {
  padding-left: 0;
  text-align: right;
}

.price-plan-item:first-child .ppi-value-row {
  justify-content: flex-end;
}

.price-plan-item:last-child { padding-right: 0; }

.price-plan-sep {
  flex: 0 0 1px;
  width: 1px;
  align-self: stretch;
  background: #dde8f4;
  opacity: 0.6;
  margin: 4px 0;
}

.ppi-campaign {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #e8400c;
  text-align: center;
  line-height: 1.5;
}

.ppi-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2a3a5e;
  margin-bottom: 10px;
  white-space: nowrap;
  text-align: center;
}

.ppi-value-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}

.ppi-num {
  font-size: 120px;
  font-weight: 900;
  color: #0b63ce;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ppi-num-small {
  font-size: 50px;
  font-weight: 900;
  color: #0b63ce;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ppi-num--lg {
  font-size: 50px;
}

.ppi-num--free {
  font-size: 60px;
  letter-spacing: -0.03em;
}

.ppi-unit {
  font-size: 30px;
  font-weight: 900;
  color: #0b63ce;
  letter-spacing: -0.01em;
}

.ppi-suffix {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 600;
  color: #5a7090;
  padding-bottom: 10px;
  padding-left: 2px;
  white-space: nowrap;
  line-height: 1.5;
}

.ppi-includes {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ppi-includes li {
  font-size: 10.5px;
  font-weight: 700;
  color: #1a56a0;
  background: #e8f1fb;
  border-radius: 5px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ppi-includes li::before {
  content: '✓';
  color: #2b7ce8;
  font-weight: 900;
  font-size: 11px;
}
.ppi-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: #7a90ae;
  line-height: 1.75;
}

/* ── CTA buttons ────────────────────────────────────────── */
.price-plan-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 260px;
}

.ppb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #001a4d;
  text-decoration: none;
  transition: filter 0.18s, transform 0.18s;
}

.ppb:hover,
.ppb:focus-visible {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.ppb-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ppb-left img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 24px;
}

.ppb-arrow {
  font-size: 18px;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
}

.ppb--yellow {
  background: var(--yellow);
  box-shadow: 0 4px 16px rgba(255, 230, 0, 0.28);
}

.ppb--outline {
  background: #fff;
  border: 1.5px solid rgba(11, 99, 206, 0.22);
}

/* ── Footer text ────────────────────────────────────────── */
.price-plan-delivery {
  margin-top: 18px;
  padding: 16px 18px 14px;
  background: linear-gradient(135deg, #ffe033 0%, #ffaa00 100%);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255, 170, 0, 0.4);
}
.ppd-badge {
  display: inline-block;
  background: #e85000;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  animation: ppd-flash 2.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes ppd-flash {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(232, 80, 0, 0); }
  20%  { transform: scale(1.12); box-shadow: 0 0 0 6px rgba(232, 80, 0, 0.35); }
  40%  { transform: scale(1);    box-shadow: 0 0 0 10px rgba(232, 80, 0, 0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(232, 80, 0, 0); }
}
.ppd-main {
  font-size: 20px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 6px;
  line-height: 1.4;
}
.ppd-main strong {
  font-size: 26px;
  color: #001647;
}
.ppd-note {
  font-size: 10px;
  color: #6a4800;
  margin: 0;
}

.price-plan-footer {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: #5a7090;
  line-height: 2;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .price-plan-card {
    padding: 28px 24px 24px;
  }

  .price-plan-body {
    flex-direction: column;
    align-items: stretch;
  }

  /* カラム落ち：3項目を縦並びに */
  .price-plan-items-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .price-plan-sep {
    width: 100%;
    height: 1px;
    align-self: auto;
    margin: 0;
  }

  .price-plan-item {
    padding: 0;
  }

  /* 1列目の右寄せを解除 */
  .price-plan-item:first-child {
    text-align: left;
  }

  .price-plan-item:first-child .ppi-value-row {
    justify-content: flex-start;
  }

  .ppi-campaign {
    text-align: left;
  }

  /* 大きすぎる数字をタブレット幅に合わせて縮小 */
  .ppi-num {
    font-size: 80px;
  }

  .price-plan-ctas {
    flex: none;
    flex-direction: row;
  }

  .ppb {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .ppi-num {
    font-size: 64px;
  }

  .ppi-num--lg {
    font-size: 52px;
  }

  .ppi-num--free {
    font-size: 52px;
  }

  .ppi-unit {
    font-size: 30px;
  }

  .price-plan-ctas {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════════════════════
   Price page — 追加費用セクション
   ══════════════════════════════════════════════════════════ */

.price-extra {
  padding: 64px 0 72px;
  background: #eef5fd;
}

.price-extra-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 48px;
  width: min(calc(100% - 64px), 1060px);
  margin: 0 auto;
}

.price-extra-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.price-extra-num {
  font-size: 44px;
  font-weight: 900;
  color: #0b63ce;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-extra-title {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 900;
  color: #001a4d;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.price-extra-desc {
  font-size: 13px;
  color: #4a6080;
  line-height: 2.1;
}

/* ── Extra cards ────────────────────────────────────────── */
.price-extra-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.pec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 8px 18px;
  background: #fff;
  border: 1.5px solid rgba(11, 99, 206, 0.16);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pec-card:hover {
  border-color: rgba(11, 99, 206, 0.4);
  box-shadow: 0 4px 16px rgba(11, 99, 206, 0.08);
}

.pec-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pec-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pec-label {
  font-size: 12px;
  font-weight: 700;
  color: #001a4d;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .price-extra-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .price-extra-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .price-extra-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════
   Price page — 月額に含まれる内容 section
   ══════════════════════════════════════════════════════════ */

.price-includes {
  padding: 64px 0 72px;
  background: #fff;
}

.price-includes-inner {
  width: min(calc(100% - 64px), 1060px);
  margin: 0 auto;
}

.price-includes-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  color: #001a4d;
  letter-spacing: -0.01em;
}

.price-includes-heading img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.price-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 22px;
  background: #fff;
  border: 1.5px solid rgba(11, 99, 206, 0.18);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pic-card:hover {
  border-color: rgba(11, 99, 206, 0.42);
  box-shadow: 0 4px 18px rgba(11, 99, 206, 0.09);
}

.pic-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pic-label {
  font-size: 13px;
  font-weight: 700;
  color: #001a4d;
  line-height: 1.75;
}

.price-includes-note {
  margin: 18px 0 0;
  text-align: right;
  font-size: 11px;
  color: #7a90ae;
}

@media (max-width: 700px) {
  .price-includes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .price-includes-heading {
    font-size: 17px;
  }
}

/* ── 選べる料金プラン ── */
.price-selectable {
  background: linear-gradient(160deg, #e8f0fb 0%, #f0f5ff 100%);
  padding: 80px 0;
}
.price-selectable-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ps-heading {
  text-align: center;
  margin-bottom: 52px;
}
.ps-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0b63ce;
  margin: 0 0 10px;
}
.ps-label span {
  display: block;
  width: 48px;
  height: 1.5px;
  background: #0b63ce;
}
.ps-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.ps-sub {
  font-size: 17px;
  font-weight: 700;
  color: #0b63ce;
  margin: 0 0 10px;
}
.ps-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

/* featured card */
.ps-featured {
  background: #fff;
  border: 2.5px solid #0b63ce;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 99, 206, 0.15);
}
.ps-featured--yellow {
  border-color: #f5c400;
  box-shadow: 0 8px 32px rgba(245, 196, 0, 0.2);
}
.ps-featured-badge {
  background: #f5c400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 800;
  color: #001647;
}
.ps-featured-badge img {
  width: 24px;
  height: auto;
}
.ps-featured-badge--blue {
  background: #0b63ce;
  color: #fff;
}
.ps-featured-body {
  padding: 24px 28px 28px;
}
.ps-featured-icon {
  text-align: center;
  margin-bottom: 10px;
}
.ps-featured-icon img {
  width: auto;
  height: 72px;
}
.ps-featured-name {
  font-size: 34px;
  font-weight: 900;
  color: #001647;
  text-align: center;
  margin: 0 0 6px;
}
.ps-sparkle {
  color: #f5c400;
  font-size: 22px;
  vertical-align: middle;
  margin-left: 4px;
}
.ps-featured-tagline {
  text-align: center;
  font-size: 13px;
  color: #4a5568;
  margin: 0 0 18px;
}
.ps-init-cost {
  text-align: center;
  padding: 10px 0 6px;
  border-top: 1px solid #e2e8f0;
}
.ps-init-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #718096;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.ps-init-price {
  font-size: 20px;
  font-weight: 800;
  color: #2d3748;
}
.ps-init-price small {
  font-size: 12px;
  font-weight: 600;
  color: #4a5568;
}
.ps-init-price--strike {
  color: #e8400c;
  text-decoration-color: #e8400c;
}
.ps-init-price-unit--strike {
  font-size: 12px;
  font-weight: 600;
  color: #e8400c;
}
.ps-init-campaign {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #e8400c;
  margin-top: 4px;
}
.ps-init-zero {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: #0b63ce;
  line-height: 1.1;
}
.ps-init-zero small {
  font-size: 18px;
  font-weight: 700;
  color: #0b63ce;
}
.ps-init-cost + .ps-featured-price {
  border-top: none;
}
.ps-featured-price {
  text-align: center;
  padding: 12px 0 18px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 18px;
}
.ps-price-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 2px;
}
.ps-price-num {
  font-size: 52px;
  font-weight: 900;
  color: #0b63ce;
  line-height: 1;
}
.ps-price-unit {
  font-size: 26px;
  font-weight: 700;
  color: #0b63ce;
}
.ps-price-tax {
  font-size: 12px;
  color: #4a5568;
}
.ps-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.ps-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 10px 4px;
  background: #f5f8ff;
  border-radius: 10px;
  font-size: 11px;
  color: #334466;
  font-weight: 600;
  line-height: 1.4;
}
.ps-feature img {
  width: 30px;
  height: auto;
}
.ps-cta {
  display: block;
  background: #f5c400;
  color: #001647;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ps-price-note {
  font-size: 11px;
  color: #5a7090;
  margin: 6px 0 0;
  line-height: 1.6;
}
.ps-cta:hover { opacity: 0.85; }
.ps-cta--blue {
  background: #0b63ce;
  color: #fff;
}

/* upper plans */
.ps-upper-header {
  font-size: 15px;
  font-weight: 700;
  color: #001647;
  text-align: center;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed #b0c4de;
}
.ps-upper-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.ps-upper-cards--single {
  grid-template-columns: 1fr;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.ps-upper-cards--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.ps-plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 14px;
  box-shadow: 0 2px 12px rgba(0, 22, 71, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ps-plan-icon {
  width: 64px;
  height: 64px;
  background: #e8f0fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.ps-plan-icon img {
  width: 36px;
  height: auto;
}
.ps-plan-name {
  font-size: 14px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 6px;
}
.ps-plan-tagline {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.5;
  margin: 0 0 10px;
}
.ps-plan-init {
  width: 100%;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding: 6px 0 4px;
}
.ps-plan-init .ps-init-price {
  font-size: 15px;
}
.ps-plan-init + .ps-plan-price {
  border-top: none;
}
.ps-plan-price {
  width: 100%;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 0;
  margin-bottom: 12px;
}
.ps-plan-price .ps-price-num {
  font-size: 28px;
}
.ps-plan-price .ps-price-unit {
  font-size: 16px;
}
.ps-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  width: 100%;
  text-align: left;
}
.ps-plan-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #334466;
  padding: 5px 0;
  border-bottom: 1px solid #f0f3f8;
}
.ps-plan-features li img {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}
.ps-plan-btn {
  display: block;
  width: 100%;
  border: 1.5px solid #0b63ce;
  color: #0b63ce;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
}
.ps-plan-btn:hover {
  background: #0b63ce;
  color: #fff;
}
.ps-note {
  text-align: center;
  font-size: 12px;
  color: #7a90ae;
}

@media (max-width: 960px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .ps-upper-cards,
  .ps-upper-cards--two {
    grid-template-columns: 1fr;
  }
  .ps-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 保守費用のお支払い方法 ── */
.price-payment {
  background: #fff;
  padding: 80px 0;
}
.price-payment-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.pp-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.pp-label-line {
  display: block;
  flex: 1;
  max-width: 120px;
  height: 1.5px;
  background: #b0c4de;
}
.pp-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #001647;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.pp-label-badge img {
  width: 22px;
  height: auto;
  filter: brightness(0) invert(1);
}
.pp-title {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 900;
  color: #001647;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.3;
}
.pp-title-em {
  position: relative;
  display: inline;
}
.pp-title-em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 8px;
  background: #f5c400;
  border-radius: 4px;
  z-index: -1;
}
.pp-top {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
.pp-desc p {
  font-size: 14px;
  line-height: 1.9;
  color: #334466;
  margin: 0 0 8px;
}
.pp-link {
  color: #0b63ce;
  font-weight: 600;
}

/* card brands box */
.pp-brands-box {
  background: #fff;
  border: 1px solid #d8e4f0;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px rgba(11, 99, 206, 0.06);
}
.pp-brands-label {
  font-size: 13px;
  font-weight: 700;
  color: #0b63ce;
  text-align: center;
  margin: 0 0 14px;
}
.pp-brands-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 14px;
}
.pp-brands-names {
  font-size: 11px;
  color: #7a90ae;
  text-align: center;
  margin: 0;
}

/* 4 feature cards */
.pp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pp-fc {
  background: #f5f8ff;
  border: 1px solid #c2d4ee;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
}
.pp-fc-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-fc-icon img {
  width: 80px;
  height: auto;
}
.pp-fc-title {
  font-size: 16px;
  font-weight: 800;
  color: #0b63ce;
  margin: 0 0 10px;
}
.pp-fc-desc {
  font-size: 12px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}
.pp-fc-desc small {
  font-size: 10px;
  color: #7a90ae;
}

/* security note */
.pp-paperless {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #4a5568;
}

.pp-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5568;
  background: #f5f8ff;
  border-radius: 10px;
  padding: 14px 20px;
}
.pp-security img {
  width: 18px;
  height: auto;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .pp-top {
    grid-template-columns: 1fr;
  }
  .pp-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .pp-features {
    grid-template-columns: 1fr;
  }
}

/* ── プラン料金表ボタン・モーダル ── */
.ps-modal-open-wrap {
  text-align: center;
  margin-top: 14px;
}
.ps-modal-open {
  background: #0b63ce;
  border: 1.5px solid #0b63ce;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ps-modal-open:hover {
  background: #fff;
  color: #0b63ce;
}
.plan-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 22, 71, 0.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.plan-modal.is-open {
  display: flex;
}
.plan-modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 22, 71, 0.25);
}
.plan-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.plan-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #001647;
  margin: 0;
}
.plan-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #7a90ae;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.15s;
}
.plan-modal-close:hover {
  background: #f0f3f8;
  color: #001647;
}
.plan-modal-body {
  overflow-y: auto;
  padding: 20px 24px 24px;
}
.plan-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.plan-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}
.plan-table thead th {
  background: #001647;
  color: #fff;
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}
.plan-table thead .pt-item {
  background: #2a3a5e;
  text-align: left;
  width: 130px;
}
.plan-table thead .pt-col--highlight {
  background: #001647;
}
.plan-table thead small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}
.plan-table tbody tr {
  border-bottom: 1px solid #e8edf5;
}
.plan-table tbody tr:nth-child(even) {
  background: #f8faff;
}
.plan-table tbody td {
  padding: 10px;
  text-align: center;
  color: #334466;
  vertical-align: middle;
  line-height: 1.5;
}
.pt-label {
  text-align: left !important;
  font-weight: 600;
  color: #001647 !important;
  background: #f0f4fa !important;
  padding-left: 14px !important;
  white-space: nowrap;
}
.pt-col--highlight {
  font-weight: 600;
}
.pt-span {
  text-align: left !important;
  padding-left: 14px !important;
  color: #4a5568 !important;
  font-size: 12px;
}
.pt-price {
  font-size: 15px;
  font-weight: 700;
  color: #001647;
}
.pt-col--highlight.pt-price {
  color: #0b63ce;
  font-size: 16px;
}
.pt-yes {
  color: #0b63ce;
  font-size: 16px;
  font-weight: 700;
}
.pt-no {
  color: #aab4c8;
  font-size: 16px;
}
.pt-na {
  color: #c0cce6;
}
.pt-note {
  font-size: 12px;
  text-align: left !important;
  padding-left: 10px !important;
  color: #4a5568 !important;
  line-height: 1.5;
}
.plan-modal-note {
  margin: 14px 0 0;
  font-size: 11px;
  color: #7a90ae;
  text-align: center;
}

@media (max-width: 600px) {
  .plan-modal-box {
    max-height: 95vh;
    border-radius: 12px;
  }
  .plan-modal-body {
    padding: 16px;
  }
}

/* ── 他社との違い ── */
.price-compare {
  background: #f5f7fb;
  padding: 80px 0;
}
.price-compare-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.price-compare-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  font-weight: 700;
  color: #001647;
  margin-bottom: 40px;
}
.price-compare-heading img {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}
.price-compare-table {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0, 22, 71, 0.1);
}
.price-compare-table > * {
  min-width: 0;
}
.price-compare-table > :first-child       { border-radius: 16px 0 0 0; }
.price-compare-table > :nth-child(3)      { border-radius: 0 16px 0 0; }
.price-compare-table > :nth-last-child(3) { border-radius: 0 0 0 16px; }
.price-compare-table > :last-child        { border-radius: 0 0 16px 0; }
.pct-th {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
}
.pct-th--other {
  background: #8b9bb4;
  color: #fff;
  text-align: center;
}
.pct-th--mid {
  background: #edf0f7;
}
.pct-th--artcube {
  background: #0b63ce;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  overflow: visible;
}
.pct-th--artcube img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: auto;
  pointer-events: none;
}
.pct-td {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid rgba(0, 22, 71, 0.07);
}
.pct-td--other {
  background: #f2f4f8;
  color: #4e5f78;
}
.pct-td--mid {
  background: #edf0f7;
  justify-content: center;
  font-size: 22px;
  color: #0b63ce;
  font-weight: 700;
}
.pct-td--artcube {
  background: #edf2ff;
  color: #001647;
  font-weight: 600;
}
.pct-td img {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .price-compare-table {
    grid-template-columns: 1fr 36px 1fr;
  }
  .pct-th,
  .pct-td {
    padding: 12px 10px;
    font-size: 12px;
    gap: 8px;
  }
  .pct-th--artcube {
    font-size: 13px;
    gap: 6px;
  }
  .pct-th--artcube img {
    width: 24px;
  }
  .pct-td img {
    width: 20px;
  }
  .pct-td--mid {
    font-size: 16px;
  }
  .price-compare-heading {
    font-size: 20px;
  }
  .price-compare-heading img {
    width: 36px;
  }
}

/* ══════════════════════════════════════════════════════════
   Company page
   ══════════════════════════════════════════════════════════ */

.co-section {
  padding: 72px 0 80px;
  background: #fff;
}

.co-section--alt {
  background: #f5f8ff;
}

.co-inner {
  width: min(calc(100% - 64px), 860px);
  margin: 0 auto;
}

.co-heading {
  position: relative;
  margin: 0 0 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid #dde8f4;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 900;
  color: #001a4d;
  letter-spacing: -0.01em;
}

.co-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 52px;
  height: 2px;
  background: #1a6fc4;
}

.co-table {
  width: 100%;
  border-collapse: collapse;
}

.co-table th,
.co-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #dde8f4;
  vertical-align: top;
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
}

.co-table tr:last-child th,
.co-table tr:last-child td {
  border-bottom: none;
}

.co-table th {
  width: 200px;
  font-weight: 700;
  color: #001a4d;
  background: #eaf1fb;
  white-space: nowrap;
}

.co-table td {
  color: #2a3a5e;
}

.co-link {
  color: #1a6fc4;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(26, 111, 196, 0.3);
  transition: color 0.18s, border-color 0.18s;
}

.co-link:hover {
  color: #0e4fa0;
  border-color: #0e4fa0;
}

.co-note {
  margin-left: 8px;
  color: #6a7fa0;
  font-size: 12px;
}

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .co-section {
    padding: 52px 0 60px;
  }

  .co-inner {
    width: calc(100% - 40px);
  }
}

@media (max-width: 600px) {
  .co-table th,
  .co-table td {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: none;
  }

  .co-table tr {
    display: block;
    border-bottom: 1px solid #dde8f4;
    padding: 12px 0;
  }

  .co-table tr:last-child {
    border-bottom: none;
  }

  .co-table th {
    background: transparent;
    color: #1a6fc4;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
    white-space: normal;
  }

  .co-table td {
    padding-top: 0;
    font-size: 14px;
  }
}


/* ════════════════════════════════════════
   FLOW PAGE  (src/flow/index.php)
════════════════════════════════════════ */
.flow-section {
  background: linear-gradient(160deg, #dceaf8 0%, #eaf2fc 25%, #f3f8ff 55%, #f8fbff 100%);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* dot grid decorations */
.flow-deco-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, #8ab4d8 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.35;
  pointer-events: none;
}
.flow-deco-dots--tl { top: 16px; left: 16px; }
.flow-deco-dots--tr { top: 16px; right: 16px; }

/* large arc on left */
.flow-deco-arc {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 50%, rgba(11,99,206,0.10) 0%, transparent 65%);
  top: 50%;
  left: -220px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ── inner wrapper ── */
.flow-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── header ── */
.flow-head {
  text-align: center;
  margin-bottom: 56px;
}
.flow-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #0b63ce;
  margin: 0 0 14px;
}
.flow-brand-dash {
  display: block;
  width: 44px;
  height: 1px;
  background: #0b63ce;
}
.flow-title {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.flow-title-deco {
  width: 42px;
  height: 4px;
  background: #f5c400;
  border-radius: 2px;
  margin: 0 auto 22px;
}
.flow-sub {
  font-size: 15px;
  color: #445566;
  margin: 0;
}

/* ── steps row ── */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* ── arrow ── */
.flow-arrow {
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 126px;
}
.flow-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #0b63ce;
  background: #fff;
  color: #0b63ce;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ── step card ── */
.flow-step {
  flex: 1;
  background: #fff;
  border: 2px solid #b8d0ee;
  border-radius: 18px;
  padding: 50px 14px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  position: relative;
}
.flow-step--accent {
  border-color: #0b63ce;
  border-width: 3.5px;
}
.flow-step .fs-badge {
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

/* ── badge ── */
.fs-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2.5px solid #0b63ce;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.fs-badge span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0b63ce;
  line-height: 1;
  display: block;
}
.fs-badge strong {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0b63ce;
  line-height: 1.1;
  display: block;
}
.fs-badge--accent {
  background: #0b63ce;
  border-color: #0b63ce;
}
.fs-badge--accent span,
.fs-badge--accent strong {
  color: #fff;
}

/* ── icon ── */
.fs-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
}
.fs-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── title ── */
.fs-title {
  font-size: 14px;
  font-weight: 800;
  color: #0b2d8f;
  margin: 0 0 8px;
  line-height: 1.55;
}

/* ── underline ── */
.fs-line {
  width: 36px;
  height: 3px;
  background: #f5c400;
  border-radius: 2px;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

/* ── description ── */
.fs-desc {
  font-size: 12px;
  color: #334466;
  line-height: 1.75;
  text-align: left;
  margin: 0;
  width: 100%;
}

/* ── responsive ── */
@media (max-width: 900px) {
  .flow-steps {
    flex-wrap: wrap;
    gap: 16px;
  }
  .flow-step {
    flex: 0 0 calc(50% - 8px);
    min-height: auto;
  }
  .flow-arrow {
    display: none;
  }
}
@media (max-width: 500px) {
  .flow-step {
    flex: 0 0 100%;
  }
}


/* ════════════════════════════════════════
   FLOW – AREA SECTION
════════════════════════════════════════ */
.flow-area {
  background: #fff;
  padding: 80px 24px 10px;
  position: relative;
  overflow: hidden;
}

.fa-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── header ── */
.fa-head {
  text-align: center;
  margin-bottom: 52px;
}
.fa-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.fa-title-deco {
  width: 42px;
  height: 4px;
  background: #f5c400;
  border-radius: 2px;
  margin: 0 auto 20px;
}
.fa-sub {
  font-size: 15px;
  color: #445566;
  line-height: 1.85;
  margin: 0;
}

/* ── cards grid ── */
.fa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fa-card {
  background: #fff;
  border: 1.5px solid #c4d6ed;
  border-radius: 16px;
  padding: 28px 28px 26px;
}

/* card top row: icon + heading */
.fa-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.fa-icon {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
}
.fa-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fa-card-heading {
  flex: 1;
}
.fa-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 8px;
  line-height: 1.3;
}
.fa-card-line {
  width: 42px;
  height: 3px;
  background: #f5c400;
  border-radius: 2px;
}

/* description */
.fa-card-desc {
  font-size: 14px;
  color: #334466;
  line-height: 1.8;
  margin: 0 0 20px;
}

/* area badge + text row */
.fa-area-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.fa-area-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #0b63ce;
  border: 1.5px solid #0b63ce;
  border-radius: 4px;
  padding: 3px 9px;
  line-height: 1.5;
  white-space: nowrap;
  margin-top: 2px;
}
.fa-area-text {
  font-size: 13px;
  color: #334466;
  line-height: 1.8;
  margin: 0;
}

/* note */
.fa-note {
  font-size: 12px;
  color: #0b63ce;
  line-height: 1.7;
  margin: 0;
}

/* ── support feature grid ── */
.fs-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fs-support-card {
  background: #f4f8ff;
  border: 1.5px solid #c4d6ed;
  border-radius: 16px;
  padding: 28px 22px 24px;
  text-align: center;
}
.fs-support-icon {
  width: 56px;
  height: 56px;
  background: #0b63ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.fs-support-icon svg {
  width: 26px;
  height: 26px;
}
.fs-support-title {
  font-size: 16px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 10px;
  line-height: 1.4;
}
.fs-support-desc {
  font-size: 13px;
  color: #445566;
  line-height: 1.85;
  margin: 0;
}

/* responsive */
@media (max-width: 900px) {
  .fs-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .fa-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .fs-support-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════
   FLOW – MAP SECTION
════════════════════════════════════════ */
.flow-map {
  background: #fff;
  overflow: hidden;
  padding-bottom: 100px;
}

/* ── top: gradient bg + map ── */
.fm-top {
  background: #fff;
  padding: 24px 24px 0;
}
.fm-top-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.fm-heading {
  font-size: 16px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 14px;
}

/* map + legend layout */
.fm-map-wrap {
  position: relative;
}
.fm-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* legend – overlaid top-right */
.fm-legend {
  position: absolute;
  bottom: 6%;
  left: 60%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #c4d6ed;
  border-radius: 10px;
  padding: 14px 18px;
  min-width: 220px;
}
.fm-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.fm-legend-item:last-child { margin-bottom: 0; }
.fm-legend-swatch {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.fm-legend-swatch--yellow { background: #f5c400; }
.fm-legend-swatch--blue   { background: #9ecbee; }
.fm-legend-text {
  font-size: 12px;
  font-weight: 700;
  color: #001647;
  line-height: 1.5;
}
.fm-legend-text small {
  font-size: 11px;
  font-weight: 400;
  color: #5577aa;
}

/* ── bottom: 3 features ── */
.fm-bottom {
  background: #fff;
  border-top: 1px solid #d0e4f4;
  padding: 24px 24px 32px;
  margin-bottom: 0;
}
.fm-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.fm-feat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.fm-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 36px;
}
.fm-feat:first-child { padding-left: 0; }
.fm-feat:last-child  { padding-right: 0; }
.fm-feat--div {
  border-left: 1.5px dashed #a8c8e8;
}

.fm-feat-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.fm-feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fm-feat-title {
  font-size: 16px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 6px;
}
.fm-feat-desc {
  font-size: 13px;
  color: #334466;
  line-height: 1.8;
  margin: 0;
}

/* responsive */
@media (max-width: 900px) {
  .fm-legend {
    position: static;
    transform: none;
    margin-top: 16px;
    min-width: auto;
  }
  .fm-feat-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fm-feat {
    padding: 0;
  }
  .fm-feat--div {
    border-left: none;
    border-top: 1.5px dashed #a8c8e8;
    padding-top: 24px;
  }
}


/* ════════════════════════════════════════
   FAQ PAGE  (src/faq/index.php)
════════════════════════════════════════ */
.faq-section {
  background: linear-gradient(160deg, #dceaf8 0%, #eaf2fc 25%, #f3f8ff 55%, #f8fbff 100%);
  padding: 80px 24px 100px;
  min-height: 60vh;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── header ── */
.faq-head {
  text-align: center;
  margin-bottom: 56px;
}
.faq-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #0b63ce;
  margin: 0 0 14px;
}
.faq-brand-dash {
  display: block;
  width: 44px;
  height: 1px;
  background: #0b63ce;
}
.faq-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.faq-title-deco {
  width: 42px;
  height: 4px;
  background: #f5c400;
  border-radius: 2px;
  margin: 0 auto 22px;
}
.faq-sub {
  font-size: 15px;
  color: #445566;
  margin: 0;
}

/* ── accordion items ── */
.faq-item {
  background: #fff;
  border: 1.5px solid #c4d6ed;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item[open] {
  border-color: #0b63ce;
}

/* Q row */
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  color: #001647;
  line-height: 1.5;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

/* Q badge */
.faq-q::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0b63ce;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  font-family: 'Arial Black', Arial, sans-serif;
  flex-shrink: 0;
}

/* chevron */
.faq-q::after {
  content: '';
  display: block;
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid #0b63ce;
  border-bottom: 2.5px solid #0b63ce;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after {
  transform: rotate(-135deg);
}

/* A row */
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px 22px;
  background: #f5f8ff;
  border-top: 1.5px solid #d8e8f8;
  font-size: 15px;
  color: #334466;
  line-height: 1.85;
}
.faq-a::before {
  content: 'A';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5c400;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  font-family: 'Arial Black', Arial, sans-serif;
  flex-shrink: 0;
}


/* ════════════════════════════════════════
   FAQ PAGE — REDESIGN  (faqp-*)
════════════════════════════════════════ */

/* ── HERO ── */
.faqp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #cde0f5 0%, #dceefa 35%, #eef5ff 65%, #f5f9ff 100%);
  padding: 88px 24px 80px;
}

/* dot grid */
.faqp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,99,206,0.10) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* dot decoration boxes */
.faqp-hero-deco-dots {
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(11,99,206,0.18) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.6;
}
.faqp-hero-deco-dots--tl { top: 0; left: 0; }
.faqp-hero-deco-dots--tr { top: 0; right: 0; }

/* concentric rings */
.faqp-hero-deco-rings {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(11,99,206,0.10);
  pointer-events: none;
}
.faqp-hero-deco-rings::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(11,99,206,0.08);
}
.faqp-hero-deco-rings::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(11,99,206,0.06);
}

/* floating decorative icons */
.faqp-hero-float {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.faqp-hero-float--tl {
  top: 12%;
  left: 4%;
  width: 80px;
  opacity: 0.55;
  transform: rotate(-12deg);
}
.faqp-hero-float--bl {
  bottom: 18%;
  left: 7%;
  width: 56px;
  opacity: 0.35;
  transform: rotate(8deg);
}
.faqp-hero-float--tr {
  top: 10%;
  right: 5%;
  width: 70px;
  opacity: 0.50;
  transform: rotate(10deg);
}
.faqp-hero-float--br {
  bottom: 14%;
  right: 4%;
  width: 52px;
  opacity: 0.30;
  transform: rotate(-8deg);
}
@media (max-width: 767px) {
  .faqp-hero-float { display: none; }
}

.faqp-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faqp-hero-content {
  text-align: center;
  margin-bottom: 44px;
}
.faqp-brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #0b63ce;
  margin: 0 0 16px;
}
.faqp-brand-dash {
  display: block;
  width: 44px;
  height: 1px;
  background: #0b63ce;
}
.faqp-hero-title {
  font-size: clamp(34px, 5vw, 40px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.faqp-hero-deco {
  width: 42px;
  height: 4px;
  background: #f5c400;
  border-radius: 2px;
  margin: 0 auto 22px;
}
.faqp-hero-sub {
  font-size: 16px;
  color: #445566;
  line-height: 1.85;
  margin: 0;
}

/* search card */
.faqp-search-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(11,99,206,0.12), 0 2px 8px rgba(11,99,206,0.06);
  padding: 28px 32px 24px;
  position: relative;
  z-index: 1;
}
.faqp-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0f6ff;
  border: 2px solid #c4d6ed;
  border-radius: 14px;
  padding: 14px 20px;
  transition: border-color 0.2s;
  margin-bottom: 18px;
}
.faqp-search-form:focus-within {
  border-color: #0b63ce;
  box-shadow: 0 0 0 4px rgba(11,99,206,0.08);
}
.faqp-search-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faqp-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #001647;
  outline: none;
  min-width: 0;
}
.faqp-search-input::placeholder { color: #a0b4cc; }
.faqp-search-input::-webkit-search-cancel-button { cursor: pointer; }

.faqp-search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.faqp-search-tag-label {
  font-size: 12px;
  color: #7a90ae;
  flex-shrink: 0;
}
.faqp-search-tag {
  font-size: 12px;
  font-weight: 600;
  color: #0b63ce;
  background: #eaf2ff;
  border: 1px solid #c4d6ed;
  border-radius: 100px;
  padding: 4px 14px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1.6;
}
.faqp-search-tag:hover {
  background: #0b63ce;
  border-color: #0b63ce;
  color: #fff;
}

/* ── POPULAR ── */
.faqp-popular {
  background: #fff;
  padding: 72px 24px 64px;
}
.faqp-popular-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.faqp-section-title {
  font-size: 22px;
  font-weight: 800;
  color: #001647;
  text-align: center;
  margin: 0 0 36px;
  position: relative;
}
.faqp-section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #f5c400;
  border-radius: 2px;
  margin: 10px auto 0;
}
.faqp-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.faqp-pop-card {
  background: #fff;
  border: 1.5px solid #d0e4f4;
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  box-shadow: 0 2px 12px rgba(11,99,206,0.05);
}
.faqp-pop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(11,99,206,0.13);
  border-color: #0b63ce;
}
.faqp-pop-icon {
  display: block;
  width: 70px;
  height: 70px;
}
.faqp-pop-icon svg,
.faqp-pop-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.faqp-pop-text {
  font-size: 14px;
  font-weight: 700;
  color: #001647;
  line-height: 1.6;
}
.faqp-pop-text strong { color: #0b63ce; }
.faqp-pop-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ddeaf8;
  color: #0b63ce;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  flex-shrink: 0;
  transition: background 0.15s;
}
.faqp-pop-card:hover .faqp-pop-arrow {
  background: #0b63ce;
  color: #fff;
}

/* ── BODY ── */
.faqp-body {
  background: #f4f8fd;
  padding: 64px 24px 80px;
}
.faqp-body-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* tabs */
.faqp-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.faqp-tab {
  font-size: 13px;
  font-weight: 700;
  color: #445577;
  background: #fff;
  border: 1.5px solid #c8d8ee;
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  line-height: 1.5;
}
.faqp-tab:hover {
  border-color: #0b63ce;
  color: #0b63ce;
}
.faqp-tab.is-active {
  background: #001647;
  border-color: #001647;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,22,71,0.2);
}

/* group */
.faqp-group {
  margin-bottom: 40px;
}
.faqp-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #001647;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d0e4f4;
}
.faqp-group-title svg,
.faqp-group-title img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

/* accordion */
.faqp-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faqp-item {
  background: #fff;
  border: 1.5px solid #d0e4f4;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faqp-item[open] {
  border-color: #0b63ce;
}

/* Q row */
.faqp-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faqp-q::-webkit-details-marker { display: none; }
.faqp-q::marker { display: none; }

/* Q badge */
.faqp-q::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0b63ce;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.faqp-q span {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #001647;
  line-height: 1.55;
}

/* +/− icon */
.faqp-q::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background:
    linear-gradient(#0b63ce, #0b63ce) no-repeat center / 2px 100%,
    linear-gradient(#0b63ce, #0b63ce) no-repeat center / 100% 2px;
  transition: background 0.2s;
}
.faqp-item[open] .faqp-q::after {
  background: linear-gradient(#0b63ce, #0b63ce) no-repeat center / 100% 2px;
}

/* A row */
.faqp-a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px 18px;
  background: #f0f6ff;
  border-top: 1.5px solid #d0e4f4;
  font-size: 14px;
  color: #334466;
  line-height: 1.85;
}
.faqp-a::before {
  content: 'A';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5c400;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

/* no results */
.faqp-no-results {
  text-align: center;
  padding: 40px;
  color: #7a90ae;
  font-size: 15px;
  line-height: 1.8;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #d0e4f4;
}

/* ── CTA banner ── */
.faqp-cta {
  background: #fff;
  padding: 64px 24px 80px;
}
.faqp-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(120deg, #daeaf9 0%, #cce0f6 55%, #bcd6f3 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.faqp-cta-illo {
  flex: 0 0 340px;
  align-self: flex-end;
  line-height: 0;
}
.faqp-cta-illo img {
  width: 100%;
  display: block;
}
.faqp-cta-body {
  flex: 1;
  padding: 48px 48px 48px 32px;
  position: relative;
  z-index: 1;
}
.faqp-cta-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.faqp-cta-sub {
  font-size: 14px;
  color: #2a4a72;
  line-height: 1.85;
  margin: 0 0 32px;
}
.faqp-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.faqp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  padding: 14px 36px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.faqp-cta-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faqp-cta-btn--primary {
  background: #f5c400;
  color: #001647;
  box-shadow: 0 4px 18px rgba(245,196,0,0.4);
}
.faqp-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(245,196,0,0.5);
}
.faqp-cta-btn--outline {
  background: #fff;
  color: #0b63ce;
  border: 2px solid #0b63ce;
}
.faqp-cta-btn--outline:hover {
  background: #e8f0fb;
  transform: translateY(-2px);
}
.faqp-cta-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  pointer-events: none;
  z-index: 0;
}
.faqp-cta-deco svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .faqp-cta-illo { flex: 0 0 240px; }
  .faqp-cta-body { padding: 36px 28px 36px 20px; }
}
@media (max-width: 680px) {
  .faqp-cta-inner { flex-direction: column; }
  .faqp-cta-illo { flex: none; width: 60%; max-width: 240px; align-self: center; }
  .faqp-cta-body { padding: 0 24px 36px; text-align: center; }
  .faqp-cta-btns { justify-content: center; }
  .faqp-cta-deco { display: none; }
}


/* ============================================================
   WORKS / SAMPLE PAGE  (ws-*)
   ============================================================ */

/* ── shared section header ── */
.ws-sec-head { text-align: center; margin-bottom: 48px; }
.ws-sec-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #001647;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.ws-sec-deco {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #0b63ce, #5baee8);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.ws-sec-sub { font-size: 15px; color: #4a6080; margin: 0; }

/* ── HERO ── */
.ws-hero {
  background: linear-gradient(140deg, #001334 0%, #001f5c 40%, #0a3fa0 75%, #0b63ce 100%);
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}
.ws-hero-dots {
  position: absolute;
  width: 280px; height: 280px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border-radius: 50%;
  pointer-events: none;
}
.ws-hero-dots--tl { top: -60px; left: -60px; }
.ws-hero-dots--br { bottom: -60px; right: -60px; }
.ws-hero-arc {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 60px solid rgba(91,174,232,0.06);
  pointer-events: none;
}
.ws-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.ws-hero-text { flex: 1; }
.ws-brand-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.ws-brand-dash {
  display: block; width: 28px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.ws-hero-title {
  font-size: clamp(20px, 3.2vw, 24px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.ws-hero-bar {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, #f5c400, #ffe566);
  border-radius: 2px;
  margin: 0 0 20px;
}
.ws-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.78);
  line-height: 1.85; margin: 0 0 28px;
}
.ws-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.ws-badge {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.ws-badge--yellow {
  background: #f5c400;
  color: #001647;
  border-color: #f5c400;
}
.ws-hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 800;
  color: #fff;
  background: #0b63ce;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ws-hero-cta svg { width: 18px; height: 18px; }
.ws-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,99,206,0.5); }
.ws-hero-note {
  max-width: 1200px; margin: 40px auto 0;
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-align: center; line-height: 1.8;
}

/* device mockup image */
.ws-hero-visual {
  flex: 0 0 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-hero-devices {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

/* ── GENRES ── */
.ws-genres { background: #fff; padding: 64px 24px 56px; }
.ws-genres-inner { max-width: 1160px; margin: 0 auto; }

/* section heading */
.ws-genre-head { margin-bottom: 28px; }
.ws-genre-head-title {
  display: flex; align-items: center; gap: 10px;
  font-size: clamp(18px, 2vw, 22px); font-weight: 900;
  color: #001647; margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.ws-genre-head-title svg { width: 22px; height: 22px; flex-shrink: 0; }
.ws-genre-head-sub {
  font-size: 13px; color: #4a6080; margin: 0; line-height: 1.7;
}

/* grid: 4 columns × 2 rows */
.ws-genre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

/* horizontal card */
.ws-genre-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #d8e6f3;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  min-height: 64px;
}
.ws-genre-card:hover {
  border-color: #0b63ce;
  background: #f0f6ff;
  box-shadow: 0 2px 12px rgba(11,99,206,0.10);
}
.ws-genre-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.ws-genre-icon svg,
.ws-genre-icon img { width: 100%; height: 100%; }
.ws-genre-name {
  flex: 1;
  font-size: 13px; font-weight: 700;
  color: #001647;
  line-height: 1.45;
}
.ws-genre-arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 16px; height: 16px;
}
.ws-genre-arrow svg { width: 8px; height: 14px; }

/* more button */
.ws-genre-more {
  text-align: center;
  margin-top: 8px;
}
.ws-genre-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: #0b63ce;
  border: 2px solid #0b63ce;
  border-radius: 100px;
  padding: 12px 32px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.ws-genre-more-btn svg { width: 8px; height: 14px; }
.ws-genre-more-btn:hover { background: #0b63ce; color: #fff; }

/* ── SAMPLES ── */
.ws-samples { background: #f0f5fc; padding: 80px 24px 80px; }
.ws-samples-inner { max-width: 1200px; margin: 0 auto; }
.ws-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.ws-tab {
  font-size: 13px; font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #c0d4ed;
  background: #fff;
  color: #3a5a80;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ws-tab:hover { border-color: #0b63ce; color: #0b63ce; }
.ws-tab.is-active {
  background: #0b63ce; color: #fff; border-color: #0b63ce;
}
.ws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* sample card */
.ws-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,22,71,0.07);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ws-card--linked { position: relative; cursor: pointer; }
.ws-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  border-radius: 16px;
}
.ws-card--linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,22,71,0.14);
}
.ws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,22,71,0.12);
}
/* mock browser */
.ws-card-mock {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.ws-card-mock--screenshot {
  display: flex; flex-direction: column;
}
.ws-mock-ss-img {
  display: block; width: 100%; flex: 1;
  object-fit: cover; object-position: top left;
  min-height: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ws-mock-bar {
  display: flex; align-items: center; gap: 4px;
  padding: 5px 8px;
  background: #f0f0f0;
}
.ws-mock-d {
  display: block; width: 7px; height: 7px; border-radius: 50%;
  background: #d0d0d0;
}
.ws-mock-u {
  margin-left: 6px; flex: 1;
  font-size: 8px; color: #888;
  background: #e4e4e4; border-radius: 3px; padding: 2px 6px;
}
.ws-mock-head { height: 44%; }
.ws-mock-body { padding: 8px; }
.ws-mock-lh {
  height: 8px; border-radius: 4px; margin-bottom: 5px;
  width: 65%; background: rgba(0,0,0,0.10);
}
.ws-mock-lm {
  height: 6px; border-radius: 3px; margin-bottom: 8px;
  width: 45%; background: rgba(0,0,0,0.06);
}
.ws-mock-imgs { display: flex; gap: 4px; }
.ws-mock-img {
  flex: 1; height: 26px; border-radius: 3px;
}
/* per-industry colors */
.ws-mock-head--cafe    { background: linear-gradient(135deg,#c8785a,#e09870); }
.ws-mock-img--cafe1    { background: #d8a890; }
.ws-mock-img--cafe2    { background: #e8c4a8; }
.ws-mock-head--washoku { background: linear-gradient(135deg,#7a2020,#b04040); }
.ws-mock-img--w1       { background: #c06060; }
.ws-mock-img--w2       { background: #d08080; }
.ws-mock-head--salon   { background: linear-gradient(135deg,#b06080,#d080a0); }
.ws-mock-img--s1       { background: #c890a8; }
.ws-mock-img--s2       { background: #e0aac0; }
.ws-mock-head--esthe   { background: linear-gradient(135deg,#c07898,#e098b8); }
.ws-mock-img--e1       { background: #d8a0b8; }
.ws-mock-img--e2       { background: #ecc0d0; }
.ws-mock-head--clinic  { background: linear-gradient(135deg,#1a4a9a,#2868c8); }
.ws-mock-img--clinic1  { background: #4882d0; }
.ws-mock-img--clinic2  { background: #6aa0e0; }
.ws-mock-head--dental  { background: linear-gradient(135deg,#088090,#10a0b0); }
.ws-mock-img--dental1  { background: #30b0c0; }
.ws-mock-img--dental2  { background: #50c8d8; }
.ws-mock-head--seikotsu{ background: linear-gradient(135deg,#206878,#2e8b7a); }
.ws-mock-img--m1       { background: #5aaa9a; }
.ws-mock-img--m2       { background: #80c0b0; }
.ws-mock-head--kaigo   { background: linear-gradient(135deg,#b87030,#d89050); }
.ws-mock-img--kaigo1   { background: #d8a060; }
.ws-mock-img--kaigo2   { background: #e8b880; }
.ws-mock-head--fukushi { background: linear-gradient(135deg,#6050a8,#8070c8); }
.ws-mock-img--fukushi1 { background: #9888d0; }
.ws-mock-img--fukushi2 { background: #b8a8e0; }
.ws-mock-head--houmon  { background: linear-gradient(135deg,#2a7048,#3a9060); }
.ws-mock-img--houmon1  { background: #58a878; }
.ws-mock-img--houmon2  { background: #78c098; }
/* 建設・住宅・不動産 */
.ws-mock-head--kensetsu { background: linear-gradient(135deg,#2a4060,#3a5878); }
.ws-mock-img--kensetsu1 { background: #5a7898; }
.ws-mock-img--kensetsu2 { background: #7898b8; }
.ws-mock-head--komuten  { background: linear-gradient(135deg,#5a3a20,#7a5030); }
.ws-mock-img--komuten1  { background: #9a7050; }
.ws-mock-img--komuten2  { background: #b89070; }
.ws-mock-head--reform   { background: linear-gradient(135deg,#3a5068,#5a7088); }
.ws-mock-img--r1        { background: #7a90a0; }
.ws-mock-img--r2        { background: #98aab8; }
.ws-mock-head--setsubi  { background: linear-gradient(135deg,#304458,#485e78); }
.ws-mock-img--setsubi1  { background: #68809a; }
.ws-mock-img--setsubi2  { background: #8898b0; }
.ws-mock-head--fudosan  { background: linear-gradient(135deg,#1a2a5a,#2a4080); }
.ws-mock-img--fudosan1  { background: #405898; }
.ws-mock-img--fudosan2  { background: #6078b0; }
.ws-mock-head--gaiko    { background: linear-gradient(135deg,#2a5a30,#3a7840); }
.ws-mock-img--gaiko1    { background: #5a9860; }
.ws-mock-img--gaiko2    { background: #7ab880; }
/* 店舗・飲食・サービス */
.ws-mock-head--retail   { background: linear-gradient(135deg,#b06820,#d08840); }
.ws-mock-img--retail1   { background: #d8a848; }
.ws-mock-img--retail2   { background: #e8c068; }
.ws-mock-head--pet      { background: linear-gradient(135deg,#20788a,#2898aa); }
.ws-mock-img--pet1      { background: #40a8bc; }
.ws-mock-img--pet2      { background: #68c0d0; }
.ws-mock-head--cleaning { background: linear-gradient(135deg,#2068a0,#3080c0); }
.ws-mock-img--cleaning1 { background: #48a0d0; }
.ws-mock-img--cleaning2 { background: #68b8e0; }
.ws-mock-head--benriya  { background: linear-gradient(135deg,#b04a28,#d06040); }
.ws-mock-img--benriya1  { background: #d88060; }
.ws-mock-img--benriya2  { background: #e8a080; }
/* 企業・製造・卸売 */
.ws-mock-head--corp     { background: linear-gradient(135deg,#0e1e52,#1a2a72); }
.ws-mock-img--corp1     { background: #304880; }
.ws-mock-img--corp2     { background: #4860a0; }
.ws-mock-head--seizo    { background: linear-gradient(135deg,#283a50,#384a68); }
.ws-mock-img--seizo1    { background: #506880; }
.ws-mock-img--seizo2    { background: #6882a0; }
.ws-mock-head--oroshi   { background: linear-gradient(135deg,#284828,#387838); }
.ws-mock-img--oroshi1   { background: #508850; }
.ws-mock-img--oroshi2   { background: #68a868; }
.ws-mock-head--unso     { background: linear-gradient(135deg,#a83c10,#c85a28); }
.ws-mock-img--unso1     { background: #d07840; }
.ws-mock-img--unso2     { background: #e09060; }
.ws-mock-head--nogyou   { background: linear-gradient(135deg,#3a5818,#509030); }
.ws-mock-img--nogyou1   { background: #70a848; }
.ws-mock-img--nogyou2   { background: #88c060; }
.ws-mock-head--btob     { background: linear-gradient(135deg,#18285a,#283a78); }
.ws-mock-img--btob1     { background: #405888; }
.ws-mock-img--btob2     { background: #5870a8; }
/* 観光・宿泊・レジャー */
.ws-mock-head--hotel    { background: linear-gradient(135deg,#3a1858,#5a2878); }
.ws-mock-img--hotel1    { background: #7848a0; }
.ws-mock-img--hotel2    { background: #9870b8; }
.ws-mock-head--minshuku { background: linear-gradient(135deg,#7a4818,#986030); }
.ws-mock-img--minshuku1 { background: #b08050; }
.ws-mock-img--minshuku2 { background: #c8a070; }
.ws-mock-head--kanko    { background: linear-gradient(135deg,#1a6870,#2888a0); }
.ws-mock-img--kanko1    { background: #40a0c0; }
.ws-mock-img--kanko2    { background: #60b8d8; }
.ws-mock-head--rentacar { background: linear-gradient(135deg,#1a4880,#2860a8); }
.ws-mock-img--rentacar1 { background: #4880c0; }
.ws-mock-img--rentacar2 { background: #6898d8; }
.ws-mock-head--outdoor  { background: linear-gradient(135deg,#1a5028,#288040); }
.ws-mock-img--outdoor1  { background: #48a058; }
.ws-mock-img--outdoor2  { background: #68c070; }
.ws-mock-head--taiken   { background: linear-gradient(135deg,#b04018,#d06030); }
.ws-mock-img--taiken1   { background: #d88050; }
.ws-mock-img--taiken2   { background: #e8a070; }
/* 採用・求人サイト */
.ws-mock-head--ken-rec  { background: linear-gradient(135deg,#3a4a5a,#506070); }
.ws-mock-img--kenrec1   { background: #708090; }
.ws-mock-img--kenrec2   { background: #8898a8; }
.ws-mock-head--kaigo-rec{ background: linear-gradient(135deg,#8a5818,#a87030); }
.ws-mock-img--kaigorec1 { background: #c89048; }
.ws-mock-img--kaigorec2 { background: #d8b068; }
.ws-mock-head--tenpo-rec{ background: linear-gradient(135deg,#8a2848,#aa4868); }
.ws-mock-img--tenpore1  { background: #c06888; }
.ws-mock-img--tenpore2  { background: #d888a8; }
.ws-mock-head--shinsotsu{ background: linear-gradient(135deg,#1a7830,#28a048); }
.ws-mock-img--shinsotsu1{ background: #48c068; }
.ws-mock-img--shinsotsu2{ background: #70d890; }
.ws-mock-head--chuto    { background: linear-gradient(135deg,#4a2070,#6a3898); }
.ws-mock-img--chuto1    { background: #8860b8; }
.ws-mock-img--chuto2    { background: #a880d0; }
/* 教育・スクール */
.ws-mock-head--juku     { background: linear-gradient(135deg,#1a3878,#285098); }
.ws-mock-img--juku1     { background: #4070b8; }
.ws-mock-img--juku2     { background: #6090d0; }
.ws-mock-head--naraigoto{ background: linear-gradient(135deg,#782080,#9838a8); }
.ws-mock-img--naraigoto1{ background: #b858c8; }
.ws-mock-img--naraigoto2{ background: #d080e0; }
.ws-mock-head--senmon   { background: linear-gradient(135deg,#0e2050,#1a2e70); }
.ws-mock-img--senmon1   { background: #2848a0; }
.ws-mock-img--senmon2   { background: #4060b8; }
.ws-mock-head--online   { background: linear-gradient(135deg,#0a5878,#1878a8); }
.ws-mock-img--online1   { background: #38a0c8; }
.ws-mock-img--online2   { background: #58b8e0; }
.ws-mock-head--sports   { background: linear-gradient(135deg,#1a6010,#289028); }
.ws-mock-img--sports1   { background: #48b040; }
.ws-mock-img--sports2   { background: #68d058; }
.ws-mock-head--kenshu   { background: linear-gradient(135deg,#381860,#502880); }
.ws-mock-img--kenshu1   { background: #7050a8; }
.ws-mock-img--kenshu2   { background: #9070c8; }
.ws-mock-head--farm    { background: linear-gradient(135deg,#4a7a30,#6a9a48); }
.ws-mock-img--f1       { background: #88b060; }
.ws-mock-img--f2       { background: #a8c880; }
.ws-mock-head--recruit { background: linear-gradient(135deg,#1a2a6e,#1e44a8); }
.ws-mock-img--rc1      { background: #4060b0; }
.ws-mock-img--rc2      { background: #6080c8; }
.ws-mock-head--office   { background: linear-gradient(135deg,#001647,#0a2a6e); }
.ws-mock-img--o1        { background: #1e3a6e; }
.ws-mock-img--o2        { background: #3058a0; }
/* 士業・専門サービス */
.ws-mock-head--gyosei   { background: linear-gradient(135deg,#1a3050,#284868); }
.ws-mock-img--gyosei1   { background: #486080; }
.ws-mock-img--gyosei2   { background: #6080a0; }
.ws-mock-head--sharoshi { background: linear-gradient(135deg,#2a1848,#402868); }
.ws-mock-img--sharoshi1 { background: #604888; }
.ws-mock-img--sharoshi2 { background: #7868a8; }
.ws-mock-head--shiho    { background: linear-gradient(135deg,#1a2840,#283a58); }
.ws-mock-img--shiho1    { background: #405870; }
.ws-mock-img--shiho2    { background: #587090; }
.ws-mock-head--consul   { background: linear-gradient(135deg,#101e40,#1a3060); }
.ws-mock-img--consul1   { background: #304870; }
.ws-mock-img--consul2   { background: #486090; }
.ws-mock-head--hoken    { background: linear-gradient(135deg,#0a4868,#186090); }
.ws-mock-img--hoken1    { background: #3880a8; }
.ws-mock-img--hoken2    { background: #5898c0; }

.ws-card-body { padding: 20px; }
.ws-cat-chip {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.ws-cat-chip--food    { background: #fff3e0; color: #c87020; }
.ws-cat-chip--salon   { background: #fce4ec; color: #b02060; }
.ws-cat-chip--medical { background: #e0f2f1; color: #00796b; }
.ws-cat-chip--const   { background: #eceff1; color: #455a64; }
.ws-cat-chip--farm    { background: #e8f5e9; color: #388e3c; }
.ws-cat-chip--recruit { background: #e3f2fd; color: #1565c0; }
.ws-cat-chip--office  { background: #e8eaf6; color: #303f9f; }
.ws-cat-chip--company { background: #ede7f6; color: #4527a0; }
.ws-cat-chip--travel  { background: #e1f5fe; color: #0277bd; }
.ws-cat-chip--edu     { background: #fff8e1; color: #f57f17; }
.ws-card-title {
  font-size: 16px; font-weight: 800;
  color: #001647; margin: 0 0 8px; line-height: 1.4;
}
.ws-card-desc {
  font-size: 13px; color: #4a6080; line-height: 1.75; margin: 0 0 14px;
}
.ws-card-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ws-chip {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: #eef4fc; color: #0b63ce;
  border: 1px solid #c8ddf5;
}
.ws-samples-note {
  text-align: center; font-size: 12px; color: #6a7f96;
  margin: 32px 0 0;
}

/* ── FEATS ── */
.ws-feats { background: #fff; padding: 80px 24px 72px; }
.ws-feats-inner { max-width: 1100px; margin: 0 auto; }
.ws-feats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ws-feat-card {
  background: #f6f9fd;
  border: 1.5px solid #dde8f5;
  border-radius: 16px;
  padding: 28px 20px 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ws-feat-card:hover {
  border-color: #0b63ce;
  box-shadow: 0 4px 18px rgba(11,99,206,0.10);
}
.ws-feat-icon { width: 48px; height: 48px; margin-bottom: 14px; }
.ws-feat-icon svg,
.ws-feat-icon img { width: 100%; height: 100%; }
.ws-feat-title {
  font-size: 15px; font-weight: 800; color: #001647;
  margin: 0 0 8px;
}
.ws-feat-desc { font-size: 13px; color: #4a6080; line-height: 1.75; margin: 0; }
.ws-feats-note-box {
  display: flex; align-items: center; gap: 10px;
  background: #eef4fc;
  border: 1px solid #c5ddf5;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 14px; color: #1a3a6e; line-height: 1.7;
}
.ws-feats-note-box svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── INDUSTRY FEATURES (業種別機能) ── */
.ws-ind {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle, rgba(11,99,206,0.1) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(165deg, #deeaff 0%, #edf5ff 45%, #e2eeff 100%);
  padding: 80px 24px 72px; text-align: center;
}
.ws-ind-bg-tr, .ws-ind-bg-bl {
  position: absolute; width: 320px; height: 320px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cg stroke='%230b63ce' stroke-width='1.5' fill='none' opacity='0.5'%3E%3Cline x1='0' y1='60' x2='160' y2='60'/%3E%3Cline x1='80' y1='0' x2='80' y2='130'/%3E%3Cline x1='160' y1='0' x2='160' y2='60'/%3E%3Cline x1='0' y1='130' x2='120' y2='130'/%3E%3Cline x1='120' y1='130' x2='120' y2='210'/%3E%3Cline x1='0' y1='210' x2='120' y2='210'/%3E%3Cline x1='180' y1='80' x2='300' y2='80'/%3E%3Cline x1='180' y1='80' x2='180' y2='300'/%3E%3Cline x1='250' y1='80' x2='250' y2='300'/%3E%3Cline x1='180' y1='190' x2='300' y2='190'/%3E%3C/g%3E%3Cg fill='%230b63ce' opacity='0.7'%3E%3Ccircle cx='80' cy='60' r='4'/%3E%3Ccircle cx='160' cy='60' r='4'/%3E%3Ccircle cx='80' cy='130' r='4'/%3E%3Ccircle cx='120' cy='130' r='4'/%3E%3Ccircle cx='120' cy='210' r='4'/%3E%3Ccircle cx='180' cy='80' r='4'/%3E%3Ccircle cx='250' cy='80' r='4'/%3E%3Ccircle cx='180' cy='190' r='4'/%3E%3Ccircle cx='250' cy='190' r='4'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.15;
}
.ws-ind-bg-tr { top: 0; right: 0; }
.ws-ind-bg-bl { bottom: 0; left: 0; transform: rotate(180deg); }

.ws-ind-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }

.ws-ind-head { margin-bottom: 52px; }
.ws-ind-line-top {
  width: 36px; height: 3px; background: #0b63ce;
  margin: 0 auto 22px; border-radius: 2px;
}
.ws-ind-title {
  font-size: clamp(26px, 3.8vw, 40px); font-weight: 900;
  color: #0b2050; margin: 0 0 14px; line-height: 1.25;
}
.ws-ind-blue { color: #0b63ce; }
.ws-ind-line-dot {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 0 auto 22px; width: fit-content;
}
.ws-ind-line-dot::before, .ws-ind-line-dot::after {
  content: ''; display: block; width: 56px; height: 2px;
  background: #0b63ce; border-radius: 1px; opacity: 0.4;
}
.ws-ind-line-dot span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0b63ce; display: block; flex-shrink: 0;
}
.ws-ind-sub { font-size: 15px; color: #5a7090; line-height: 1.8; margin: 0; }

.ws-ind-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 36px; text-align: left;
}
.ws-ind-card {
  display: flex; align-items: flex-start; gap: 22px;
  background: #fff; border-radius: 16px; padding: 26px 26px 22px;
  box-shadow: 0 2px 20px rgba(0,40,120,0.07);
  border: 1px solid rgba(180,210,240,0.7);
}
.ws-ind-icon-wrap {
  position: relative; flex-shrink: 0;
  width: 108px; height: 108px;
}
.ws-ind-icon-circle {
  width: 108px; height: 108px; border-radius: 50%;
  background: #dbeafe;
  display: flex; align-items: center; justify-content: center;
}
.ws-ind-svg { width: 66px; height: 66px; }
.ws-ind-sp {
  position: absolute; color: #0b63ce;
  font-size: 12px; line-height: 1; font-style: normal;
  opacity: 0.65; user-select: none; pointer-events: none;
}
.ws-ind-sp--tl { top: 2px; left: 6px; }
.ws-ind-sp--br { bottom: 2px; right: 6px; }

.ws-ind-card-body { flex: 1; min-width: 0; }
.ws-ind-card-hd { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ws-ind-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
  background: #0b2050; color: #fff; font-size: 13px; font-weight: 900;
}
.ws-ind-name { font-size: 19px; font-weight: 800; color: #0b2050; line-height: 1.2; }
.ws-ind-desc { font-size: 13.5px; color: #5a7090; margin: 0 0 14px; line-height: 1.65; }
.ws-ind-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ws-ind-chip {
  display: inline-block; padding: 4px 12px;
  background: #fff; border: 1.5px solid #c8ddf0; border-radius: 100px;
  font-size: 12px; color: #2d4870;
}

.ws-ind-cta {
  display: flex; align-items: center; gap: 16px;
  background: rgba(11,99,206,0.1); border-radius: 100px;
  padding: 14px 18px 14px 14px; max-width: 900px; margin: 0 auto;
}
.ws-ind-cta-bulb {
  flex-shrink: 0; width: 46px; height: 46px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ws-ind-cta-bulb svg { width: 26px; height: 26px; }
.ws-ind-cta-text { flex: 1; font-size: 14px; color: #0b2050; margin: 0; text-align: left; line-height: 1.6; }
.ws-ind-cta-text strong { color: #0b63ce; }
.ws-ind-cta-btn {
  flex-shrink: 0; width: 46px; height: 46px;
  background: #0b63ce; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.ws-ind-cta-btn:hover { background: #0952b3; transform: scale(1.05); }
.ws-ind-cta-btn svg { width: 20px; height: 20px; }

/* ── LOCAL SEO ── */
.ws-local-seo { background: #f8f9fc; padding: 64px 24px; }
.ws-local-seo-inner { max-width: 1000px; margin: 0 auto; }
.ws-local-seo-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ws-local-seo-item {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 10px; padding: 18px 20px;
}
.ws-local-seo-cat {
  font-size: 13px; font-weight: 800; color: #0b63ce;
  letter-spacing: 0.03em;
}
.ws-local-seo-desc {
  font-size: 13px; color: #4a5568; line-height: 1.7;
}
.ws-local-seo-note {
  margin-top: 20px; font-size: 13px; color: #5a7090;
  text-align: center; line-height: 1.7;
}
@media (max-width: 640px) {
  .ws-local-seo-list { grid-template-columns: 1fr; }
}

/* ── LEAD ── */
.ws-lead { background: linear-gradient(135deg, #001647 0%, #0b3a8a 60%, #0b63ce 100%); padding: 72px 24px; }
.ws-lead-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ws-lead-title {
  font-size: clamp(20px, 2.8vw, 28px); font-weight: 900;
  color: #fff; margin: 0 0 16px; line-height: 1.45;
}
.ws-lead-sub {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.85; margin: 0 0 44px;
}
.ws-lead-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.ws-lead-step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 20px 28px;
  min-width: 160px;
}
.ws-lead-num {
  font-size: 11px; font-weight: 900; letter-spacing: 0.1em;
  color: #f5c400;
}
.ws-lead-step-text {
  font-size: 14px; font-weight: 700; color: #fff;
  line-height: 1.5; text-align: center; margin: 0;
}
.ws-lead-arrow {
  font-size: 22px; color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ── CTA ── */
.ws-cta { background: #fff; padding: 64px 24px 80px; }
.ws-cta-inner {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(120deg, #daeaf9 0%, #cce0f6 55%, #bcd6f3 100%);
  border-radius: 20px;
  display: flex; align-items: center;
  position: relative; overflow: hidden; min-height: 220px;
}
.ws-cta-illo { flex: 0 0 320px; align-self: flex-end; line-height: 0; }
.ws-cta-illo img { width: 100%; display: block; }
.ws-cta-body { flex: 1; padding: 48px 48px 48px 24px; position: relative; z-index: 1; }
.ws-cta-title {
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 900;
  color: #001647; margin: 0 0 12px; line-height: 1.5;
}
.ws-cta-sub {
  font-size: 14px; color: #2a4a72;
  line-height: 1.85; margin: 0 0 28px;
}
.ws-cta-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ws-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 800;
  border-radius: 100px; padding: 13px 32px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap;
}
.ws-cta-btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.ws-cta-btn--primary { background: #f5c400; color: #001647; box-shadow: 0 4px 18px rgba(245,196,0,0.4); }
.ws-cta-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(245,196,0,0.5); }
.ws-cta-btn--outline { background: #fff; color: #0b63ce; border: 2px solid #0b63ce; }
.ws-cta-btn--outline:hover { background: #e8f0fb; transform: translateY(-2px); }
.ws-cta-deco {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 320px; pointer-events: none; z-index: 0;
}
.ws-cta-deco svg { width: 100%; height: 100%; }

/* ── WORKS MODAL (カテゴリ一覧) ── */
.ws-cat-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
}
.ws-cat-modal[aria-hidden="true"] { pointer-events: none; visibility: hidden; }
.ws-cat-modal[aria-hidden="true"] .ws-cat-overlay { opacity: 0; }
.ws-cat-modal[aria-hidden="true"] .ws-cat-box { opacity: 0; transform: translateY(16px) scale(0.97); }

.ws-cat-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 20, 60, 0.6);
  backdrop-filter: blur(4px);
  transition: opacity 0.25s;
}
.ws-cat-wrap {
  position: relative; z-index: 1;
  width: 92%; max-width: 960px;
  max-height: 90vh; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
}
.ws-cat-box {
  position: relative;
  background: linear-gradient(140deg, #ddeeff 0%, #eef5ff 45%, #f5f9ff 100%);
  border-radius: 20px;
  padding: 52px 52px 56px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 30, 80, 0.2), 0 6px 24px rgba(0, 30, 80, 0.1);
  transition: opacity 0.25s, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ws-cat-close {
  position: absolute; top: 18px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: 1.5px solid #c8ddf0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #1a3a8a; transition: background 0.15s, transform 0.2s;
  z-index: 2;
}
.ws-cat-close:hover { background: #fff; transform: rotate(90deg); }
.ws-cat-close svg { width: 18px; height: 18px; }

.ws-cat-head { margin-bottom: 32px; }
.ws-cat-title {
  font-size: 22px; font-weight: 800; color: #0b2050;
  margin: 0 0 10px; line-height: 1.3;
}
.ws-cat-sub { font-size: 14px; color: #4a6080; line-height: 1.75; margin: 0; }

.ws-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.ws-cat-item {
  background: #fff; border: 1.5px solid #cfe0f0; border-radius: 12px;
  overflow: hidden; transition: border-color 0.2s, background 0.2s;
}
.ws-cat-item.is-open { background: #eef5ff; border-color: #0b63ce; }

.ws-cat-item-hd {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: none; border: none; cursor: pointer;
  text-align: left;
}
.ws-cat-item-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.ws-cat-item-icon svg { width: 36px; height: 36px; }
.ws-cat-item-name {
  flex: 1; font-size: 13.5px; font-weight: 700; color: #0b2050; line-height: 1.3;
}
.ws-cat-item-chevron {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s;
}
.ws-cat-item-chevron svg { width: 12px; height: 8px; display: block; }
.ws-cat-item.is-open .ws-cat-item-chevron { transform: rotate(180deg); }

.ws-cat-item-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
}
.ws-cat-item.is-open .ws-cat-item-body { max-height: 260px; padding: 0 16px 16px; }

.ws-cat-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.ws-cat-chip {
  display: inline-block; padding: 5px 14px;
  background: #fff; border: 1.5px solid #c0d4e8; border-radius: 100px;
  font-size: 12px; color: #2d4870; text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.ws-cat-chip:hover { border-color: #0b63ce; color: #0b63ce; background: #e8f0fb; }

@media (max-width: 640px) {
  .ws-cat-box { padding: 48px 24px 40px; }
  .ws-cat-grid { grid-template-columns: 1fr; }
  .ws-cat-title { font-size: 18px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ws-genre-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-feats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .ws-ind-grid { grid-template-columns: 1fr; }
  .ws-ind-icon-wrap, .ws-ind-icon-circle { width: 90px; height: 90px; }
  .ws-ind-svg { width: 56px; height: 56px; }
}
@media (max-width: 600px) {
  .ws-ind { padding: 60px 16px 52px; }
  .ws-ind-name { font-size: 16px; }
  .ws-ind-card { gap: 16px; padding: 20px 18px 18px; }
  .ws-ind-cta { border-radius: 14px; }
}
@media (max-width: 960px) {
  .ws-hero-visual { flex: 0 0 380px; }
  .ws-hero-devices { max-width: 380px; }
  .ws-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ws-hero-inner { flex-direction: column; }
  .ws-hero-visual { flex: none; width: 100%; max-width: 460px; margin: 0 auto; }
  .ws-hero-devices { max-width: 100%; }
  .ws-genre-grid { grid-template-columns: repeat(2, 1fr); }
  .ws-grid { grid-template-columns: 1fr; }
  .ws-lead-steps { flex-direction: column; }
  .ws-lead-arrow { transform: rotate(90deg); }
  .ws-cta-inner { flex-direction: column; }
  .ws-cta-illo { flex: none; width: 55%; max-width: 220px; align-self: center; }
  .ws-cta-body { padding: 0 24px 36px; text-align: center; }
  .ws-cta-btns { justify-content: center; }
  .ws-cta-deco { display: none; }
}
@media (max-width: 520px) {
  .ws-genre-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ws-genre-name { font-size: 11px; }
  .ws-genre-icon { width: 32px; height: 32px; }
  .ws-feats-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   WORKS SAMPLE DETAIL  (wsd-)
══════════════════════════════════════════════════════ */

/* ── breadcrumb ── */
.wsd-bc { border-bottom: 1px solid #e4ecf8; background: #f7faff; }
.wsd-bc-inner { max-width: 1180px; margin: 0 auto; padding: 12px 24px; }
.wsd-bc-list {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px 0;
  list-style: none; padding: 0; margin: 0;
}
.wsd-bc-list li { display: flex; align-items: center; font-size: 13px; color: #8898b0; }
.wsd-bc-list li + li::before { content: '›'; margin: 0 6px; color: #b8c8da; }
.wsd-bc-list a { color: #0b63ce; text-decoration: none; }
.wsd-bc-list a:hover { text-decoration: underline; }

/* ── hero ── */
.wsd-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #eef5ff 0%, #dbeafe 50%, #e8f2ff 100%);
  padding: 56px 24px 48px;
}
.wsd-hero-deco {
  position: absolute; top: -80px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  background:
    radial-gradient(circle, rgba(11,99,206,0.12) 1.5px, transparent 1.5px) 0 0 / 22px 22px;
  pointer-events: none;
}
.wsd-hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
}
.wsd-badge {
  display: inline-block; background: #0b63ce; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 4px 14px; border-radius: 4px; margin-bottom: 22px;
}
.wsd-hero-title {
  font-size: clamp(20px, 3.8vw, 30px); font-weight: 800;
  line-height: 1.2; color: #0a1e50; margin: 0 0 20px;
}
.wsd-hero-visual {
  width: 70%; margin-left: auto;
}
.wsd-hero-rule {
  width: 56px; height: 4px; background: #0b63ce;
  border-radius: 2px; margin-bottom: 24px;
}
.wsd-hero-copy {
  font-size: clamp(16px, 1.6vw, 20px); font-weight: 700;
  color: #0b63ce; line-height: 1.65; margin: 0 0 16px;
}
.wsd-hero-sub {
  font-size: 15px; color: #526890; line-height: 1.85; margin: 0;
}
.wsd-hero-notice {
  margin: 18px 0 0;
  padding: 14px 18px;
  background: #f0f6ff;
  border-left: 3px solid #1456b4;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  line-height: 1.9;
  color: #3a5068;
}

/* ── device mockup image ── */
.wsd-mockup-img {
  width: 100%; display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 8px 32px rgba(11,32,80,0.16);
}
/* ── device mockups (CSS fallback) ── */
.wsd-devices { position: relative; }

/* laptop */
.wsd-laptop {
  width: 100%;
  filter: drop-shadow(0 18px 48px rgba(11,32,80,0.18));
}
.wsd-laptop-lid {
  background: #1c1c24; border-radius: 10px 10px 0 0;
  padding: 10px 12px 0; border: 2px solid #2c2c38; border-bottom: none;
}
.wsd-laptop-cam {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3c3c4e; margin: 0 auto 6px;
}
.wsd-laptop-screen {
  background: #fff; border-radius: 3px 3px 0 0;
  overflow: hidden; aspect-ratio: 16/10;
}
.wsd-laptop-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
.wsd-laptop-hinge {
  background: linear-gradient(to bottom, #26262e, #1c1c24);
  height: 6px;
}
.wsd-laptop-base {
  background: linear-gradient(to bottom, #c4c4cc, #a8a8b0);
  height: 16px; border-radius: 0 0 2px 2px;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 0;
}
.wsd-laptop-foot {
  width: 58%; height: 5px;
  background: linear-gradient(to bottom, #969698, #828288);
  border-radius: 0 0 4px 4px;
}

/* phone */
.wsd-phone {
  position: absolute; width: 20%; right: -3%; bottom: 8px;
  background: #1c1c24; border-radius: 24px;
  border: 2px solid #2c2c38;
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
  display: flex; flex-direction: column;
}
.wsd-phone-top {
  padding: 12px 8px 0; display: flex; justify-content: center;
}
.wsd-phone-notch {
  width: 36%; height: 7px; background: #0c0c14;
  border-radius: 0 0 6px 6px;
}
.wsd-phone-screen {
  margin: 8px 8px 0; background: #fff;
  border-radius: 10px; overflow: hidden; aspect-ratio: 9/19;
}
.wsd-phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left; display: block;
}
.wsd-phone-bottom {
  padding: 10px 8px 14px; display: flex; justify-content: center;
}
.wsd-phone-bar {
  width: 32%; height: 4px; background: #3c3c4c; border-radius: 2px;
}

/* ── section commons ── */
.wsd-sec { padding: 72px 24px; background: #fff; }
.wsd-sec--alt  { background: #f4f8ff; }
.wsd-sec--pale { background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 100%); }
.wsd-sec-inner { max-width: 1060px; margin: 0 auto; }
.wsd-sec-hd {
  display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
}
.wsd-sec-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: #0b63ce; color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center;
}
.wsd-sec-title {
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 800;
  color: #0a1e50; margin: 0;
  padding-bottom: 10px; position: relative;
}
.wsd-sec-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px; background: #0b63ce; border-radius: 2px;
}

/* ── features ── */
.wsd-feat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  list-style: none; padding: 0; margin: 0;
}
.wsd-feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f8fbff; border: 1px solid #d4e6fa;
  border-radius: 10px; padding: 16px 20px;
  font-size: 15px; font-weight: 600; color: #1a3868; line-height: 1.5;
}
.wsd-feat-item[data-feat] {
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.wsd-feat-item[data-feat]:hover {
  background: #e8f2ff;
  border-color: #1456b4;
  box-shadow: 0 4px 14px rgba(11,63,206,0.12);
}
.wsd-feat-item[data-feat]::after {
  content: '詳細';
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #1286e8;
  background: #daeeff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.wsd-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background-color: #0b63ce;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L19 7' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  margin-top: 1px;
}

/* ── pages ── */
.wsd-pages-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.wsd-pages-grid li {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #d4e6fa;
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; font-weight: 600; color: #1a3868; line-height: 1.4;
}
.wsd-pages-grid li::before {
  content: '';
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background-color: #0b63ce;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L19 7' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* ── plus ── */
.wsd-plus-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  list-style: none; padding: 0; margin: 0;
}
.wsd-plus-item {
  display: flex; align-items: center; gap: 14px;
  background: #f4f8ff; border-radius: 10px; padding: 14px 20px;
  font-size: 15px; font-weight: 600; color: #1a3868;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.wsd-plus-item:hover { background: #e0eeff; transform: translateY(-2px); }
.wsd-plus-item[data-plus]::after {
  content: '詳細';
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #1286e8;
  background: #daeeff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── プラスα モーダル ── */
.plus-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.plus-modal[aria-hidden="false"] { display: flex; }
.plus-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 40, 0.55);
  backdrop-filter: blur(3px);
}
.plus-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  width: min(calc(100% - 40px), 520px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 30, 80, 0.22);
}
.plus-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  color: #7a8fa6;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.plus-modal-close:hover { color: #1a3868; }
.plus-modal-img-wrap {
  border-radius: 14px 14px 0 0;
  background: #eef4fb;
  padding: 16px 0;
}
.plus-modal-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.plus-modal-body {
  padding: 28px 28px 32px;
}
.plus-modal-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #002868;
}
.plus-modal-desc {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #3a5068;
  font-weight: 500;
}
.plus-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 24px;
  gap: 12px;
}
.plus-modal-nav-btn {
  background: #f0f6ff;
  border: 1px solid #cdddf7;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1456b4;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.plus-modal-nav-btn:hover:not(:disabled) {
  background: #1456b4;
  color: #fff;
  border-color: #1456b4;
}
.plus-modal-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.plus-modal-counter {
  font-size: 13px;
  color: #7a8fa6;
  font-weight: 600;
  flex-shrink: 0;
}
.plus-modal-note {
  margin: 0;
  padding: 0 28px 18px;
  font-size: 11px;
  color: #aab8c8;
  text-align: center;
}
.plus-modal-alert {
  display: block;
  background: #fff0f0;
  border-left: 4px solid #d93025;
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.85;
  color: #b91c1c;
}
.wsd-plus-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(11,63,206,0.10);
}
.wsd-plus-icon svg { width: 22px; height: 22px; }

/* ── plan ── */
.wsd-plan-box {
  display: flex; align-items: center; gap: 32px;
  background: #fff; border-radius: 16px; padding: 36px 40px;
  box-shadow: 0 4px 28px rgba(11,63,206,0.09);
}
.wsd-plan-icon { flex-shrink: 0; width: 84px; height: 84px; }
.wsd-plan-icon svg { width: 100%; height: 100%; }
.wsd-plan-body { flex: 1; }
.wsd-plan-main {
  font-size: 20px; font-weight: 800; color: #0a1e50; margin: 0 0 10px;
}
.wsd-plan-note {
  font-size: 13px; color: #6880a0; line-height: 1.75; margin: 0 0 18px;
}
.wsd-plan-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #0b63ce; font-size: 14px; font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(11,99,206,0.3); padding-bottom: 2px;
}
.wsd-plan-link:hover { border-color: #0b63ce; }
.wsd-plan-link svg { width: 16px; height: 16px; }

/* ── FAQ ── */
.wsd-faq-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 0; padding: 0;
}
.wsd-faq-item {
  background: #fff; border: 1px solid #d4e6fa;
  border-radius: 12px; overflow: hidden;
}
.wsd-faq-q {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px; margin: 0;
  font-size: 16px; font-weight: 700; color: #0a1e50; line-height: 1.5;
}
.wsd-faq-a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 24px; margin: 0;
  background: #f4f8ff; border-top: 1px solid #d4e6fa;
  font-size: 15px; color: #3a5070; line-height: 1.75;
}
.wsd-faq-qlabel, .wsd-faq-alabel {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; margin-top: 1px;
}
.wsd-faq-qlabel { background: #0b63ce; color: #fff; }
.wsd-faq-alabel { background: #dbeafe; color: #0b63ce; }

/* ── ローカルSEOエリア ── */
.wsd-local-area { background: #f0f4fa; padding: 40px 24px; }
.wsd-local-area-inner { max-width: 860px; margin: 0 auto; }
.wsd-local-area-title {
  font-size: 17px; font-weight: 800; color: #1a3a5c;
  margin: 0 0 12px; line-height: 1.5;
}
.wsd-local-area-desc {
  font-size: 13px; color: #4a5568; line-height: 1.85; margin: 0;
}

/* ── 資料請求 CTA ── */
.wsd-dl-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(130deg, #071840 0%, #0b3080 50%, #0b63ce 100%);
  padding: 72px 24px;
}
.wsd-dl-deco {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px) 0 0 / 24px 24px;
}
.wsd-dl-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 0 36px; align-items: center;
  position: relative; z-index: 1;
}
.wsd-dl-icon { width: 80px; height: 80px; flex-shrink: 0; }
.wsd-dl-icon svg { width: 100%; height: 100%; }
.wsd-dl-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,0.5); margin: 0 0 10px; text-transform: uppercase;
}
.wsd-dl-title {
  font-size: clamp(18px, 2vw, 24px); font-weight: 800;
  color: #fff; line-height: 1.45; margin: 0 0 12px;
}
.wsd-dl-sub {
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; margin: 0;
}
.wsd-dl-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 12px;
  background: #f5b800; color: #1a1a1a;
  padding: 14px 28px; border-radius: 16px; text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(245,184,0,0.4);
  transition: transform .15s, box-shadow .15s;
}
.wsd-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,184,0,0.5); }
.wsd-dl-btn-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; }
.wsd-dl-btn-icon svg { width: 100%; height: 100%; }
.wsd-dl-btn-inner { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.wsd-dl-btn-label { font-size: 16px; font-weight: 600; opacity: .7; letter-spacing: .04em; }
.wsd-dl-btn-main { font-size: 16px; font-weight: 800; }
@media (max-width: 860px) {
  .wsd-dl-inner {
    grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px;
  }
  .wsd-dl-sub br { display: none; }
}

/* ── CTA ── */
/* ── カテゴリー一覧ページ（medical等）── */
.wsd-hero--cat .wsd-hero-inner { grid-template-columns: 1fr; max-width: 700px; }
.wsd-cat-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.wsd-cat-card {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,22,71,0.1);
  background: #fff; position: relative;
}
.wsd-cat-card--linked { cursor: pointer; transition: transform .15s, box-shadow .15s; }
.wsd-cat-card--linked:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,22,71,0.15); }
.wsd-cat-overlay { position: absolute; inset: 0; z-index: 2; border-radius: 14px; }
.wsd-cat-mock { height: 140px; display: flex; flex-direction: column; overflow: hidden; }
.wsd-cat-ss-img { display: block; width: 100%; flex: 1; object-fit: cover; object-position: top left; min-height: 0; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.wsd-cat-bar {
  height: 18px; background: rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 4px; padding: 0 8px; flex-shrink: 0;
}
.wsd-cat-bar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.wsd-cat-header {
  height: 30px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 12px; flex-shrink: 0;
}
.wsd-cat-logo { width: 52px; height: 8px; background: rgba(255,255,255,0.85); border-radius: 2px; }
.wsd-cat-nav { display: flex; gap: 5px; }
.wsd-cat-nav span { width: 20px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 2px; }
.wsd-cat-hero {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 10px 14px; gap: 6px;
}
.wsd-cat-ttl { height: 9px; width: 65%; border-radius: 3px; background: rgba(255,255,255,0.9); }
.wsd-cat-sub { height: 6px; width: 44%; border-radius: 2px; background: rgba(255,255,255,0.55); }
.wsd-cat-btn { height: 14px; width: 64px; border-radius: 8px; background: rgba(255,255,255,0.8); margin-top: 4px; }
.wsd-cat-body {
  padding: 14px 16px; display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}
.wsd-cat-name { font-size: 15px; font-weight: 700; color: #0a1e50; margin: 0; }
.wsd-cat-badge {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.wsd-cat-badge--ready { background: #dbeafe; color: #0b63ce; }
.wsd-cat-badge--soon  { background: #f1f5f9; color: #94a3b8; }
@media (max-width: 700px) {
  .wsd-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 420px) {
  .wsd-cat-grid { grid-template-columns: 1fr; }
}

/* ── カラーバリエーション ── */
.wsd-colors {
  background: #f0f6ff; padding: 72px 0 0;
  border-top: 1px solid #d4e6fa; overflow: hidden;
}
.wsd-colors-hd {
  max-width: 1060px; margin: 0 auto; padding: 0 24px 56px; text-align: center;
}
.wsd-colors-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; color: #0b63ce; margin: 0 0 10px;
}
.wsd-colors-title {
  font-size: clamp(18px, 2.4vw, 26px); font-weight: 800; color: #0a1e50; margin: 0 0 12px;
}
.wsd-colors-sub { font-size: 14px; color: #5a6e8a; line-height: 1.75; margin: 0; }

/* marquee */
.wsd-scr-wrap { overflow: hidden; padding-bottom: 64px; }
.wsd-scr-track {
  display: flex; gap: 20px; width: max-content;
  animation: wsd-marquee 28s linear infinite;
}
@keyframes wsd-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* mini browser card */
.wsd-scr-card {
  width: 240px; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,22,71,0.13);
  flex-shrink: 0; background: #fff;
  display: flex; flex-direction: column;
}
.wsd-scr-bar {
  height: 22px; background: #dde3ea;
  display: flex; align-items: center; gap: 5px; padding: 0 10px; flex-shrink: 0;
}
.wsd-scr-bar span { width: 7px; height: 7px; border-radius: 50%; background: #b8c1cc; }
.wsd-scr-header {
  height: 38px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 14px; flex-shrink: 0;
}
.wsd-scr-logo { width: 64px; height: 10px; background: rgba(255,255,255,0.88); border-radius: 3px; }
.wsd-scr-nav { display: flex; gap: 7px; }
.wsd-scr-nav span { width: 26px; height: 6px; background: rgba(255,255,255,0.55); border-radius: 2px; }
.wsd-scr-hero {
  height: 90px; display: flex; flex-direction: column;
  justify-content: center; padding: 14px 16px; gap: 7px; flex-shrink: 0;
}
.wsd-scr-hero-ttl { height: 10px; width: 68%; border-radius: 3px; background: rgba(255,255,255,0.92); }
.wsd-scr-hero-sub { height: 7px; width: 48%; border-radius: 2px; background: rgba(255,255,255,0.55); }
.wsd-scr-hero-btn {
  height: 16px; width: 76px; border-radius: 10px;
  background: rgba(255,255,255,0.82); margin-top: 4px;
}
.wsd-scr-body {
  flex: 1; padding: 12px 16px; display: flex; flex-direction: column; gap: 7px;
}
.wsd-scr-line { height: 7px; background: #d8e4f0; border-radius: 3px; width: 80%; }
.wsd-scr-line--s { width: 55%; }

/* ── responsive ── */
@media (max-width: 900px) {
  .wsd-hero-inner { grid-template-columns: 1fr; }
  .wsd-hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .wsd-feat-grid { grid-template-columns: 1fr; }
  .wsd-pages-grid { grid-template-columns: repeat(2, 1fr); }
  .wsd-plus-grid  { grid-template-columns: 1fr; }
  .wsd-plan-box   { flex-direction: column; text-align: center; padding: 28px 24px; }
}
@media (max-width: 600px) {
  .wsd-hero { padding: 40px 16px 32px; }
  .wsd-sec  { padding: 52px 16px; }
  .wsd-pages-grid { grid-template-columns: 1fr; }
  .wsd-scr-card { width: 200px; }
}

/* ── デバイス別改行ユーティリティ ── */
.pc-br { display: block; }
@media (max-width: 900px) {
  .pc-br { display: none; }
}

.tb-br { display: none; }
@media (max-width: 900px) and (min-width: 431px) {
  .tb-br { display: block; }
}

.sp-br { display: none; }
@media (max-width: 430px) {
  .sp-br { display: block; }
}
