@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:target {
  scroll-margin-top: 80px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2D3140;
  background-color: #F8F7F4;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.3;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1A2B5C;
  text-align: center;
  margin-bottom: 0.5em;
  padding-bottom: 1.25rem;
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #D4A853, #B8902E);
  border-radius: 2px;
}

.section-subheading {
  font-size: 1.125rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 3rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--white {
  background-color: #FFFFFF;
}

.section--alt {
  background-color: #EEF0F5;
}

.section--primary {
  background-color: #1A2B5C;
  color: #FFFFFF;
}

.section-illust {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.section-illust img {
  width: min(360px, 80vw);
  height: auto;
}

.section-wave {
  line-height: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.section-wave svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 40px;
}
.section-wave--navy-to-white {
  background: #1A2B5C;
}
.section-wave--white-to-alt {
  background: #FFFFFF;
}
.section-wave--alt-to-white {
  background: #EEF0F5;
}
.section-wave--white-to-navy {
  background: #FFFFFF;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.btn__line-icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}
.btn {
  padding: 1em 2.5em;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: #D4A853;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}
.btn--primary:hover {
  background-color: #B8902E;
  box-shadow: 0 8px 28px rgba(212, 168, 83, 0.5);
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-15deg);
  animation: btn-shimmer 4s ease-in-out infinite 1.5s;
  pointer-events: none;
}

.btn--line {
  background-color: #06C755;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.35);
}
.btn--line:hover {
  background-color: #05a847;
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.45);
  transform: translateY(-2px);
}
.btn--line::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-15deg);
  animation: btn-shimmer 4s ease-in-out infinite 2.5s;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.btn--outline {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn--outline-dark {
  border: 2px solid #1A2B5C;
  color: #1A2B5C;
}
.btn--outline-dark:hover {
  background-color: #1A2B5C;
  color: #FFFFFF;
}

.btn--lg {
  padding: 1.25em 3em;
  font-size: 1.25rem;
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26, 43, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 43, 92, 0.12);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.8em;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--accent {
  background-color: rgba(212, 168, 83, 0.15);
  color: #B8902E;
}

.badge--primary {
  background-color: rgba(26, 43, 92, 0.1);
  color: #1A2B5C;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E2E4EA;
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 8px rgba(26, 43, 92, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.header__logo {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A2B5C;
  letter-spacing: -0.01em;
}
.header__logo span {
  color: #D4A853;
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1A2B5C;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.header__hamburger:hover {
  background: #F8F7F4;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #FFFFFF;
  z-index: 300;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-drawer.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav-drawer {
    display: none;
  }
}
.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.75rem 2rem;
  height: 100%;
}
.nav-drawer__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1A2B5C;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}
.nav-drawer__close:hover {
  background: #F8F7F4;
}
.nav-drawer__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}
.nav-drawer__link {
  display: block;
  padding: 0.875rem 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A2B5C;
  border-bottom: 1px solid #E2E4EA;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.nav-drawer__link:hover {
  color: #B8902E;
  padding-left: 0.875rem;
}
.nav-drawer__cta {
  width: 100%;
  margin-top: 2rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 92, 0.45);
  backdrop-filter: blur(2px);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .nav-overlay {
    display: none;
  }
}

.footer {
  background: #1A2B5C;
  color: rgba(255, 255, 255, 0.7);
  padding-block: 3rem 2rem;
  font-size: 0.875rem;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__logo {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.footer__tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 0.4rem 2rem;
}
@media (min-width: 768px) {
  .footer__nav-list {
    justify-content: end;
  }
}
.footer__nav-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer__nav-link:hover {
  color: #FFFFFF;
}
.footer__copy {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.75rem;
}
.footer__legal {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer__legal-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.tokusho-dialog {
  width: min(640px, 92vw);
  max-height: 85vh;
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.tokusho-dialog::backdrop {
  background: rgba(26, 43, 92, 0.5);
  backdrop-filter: blur(3px);
}
.tokusho-dialog__inner {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}
.tokusho-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E2E4EA;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 1;
}
.tokusho-dialog__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A2B5C;
}
.tokusho-dialog__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #6B7280;
  transition: background 0.3s ease;
}
.tokusho-dialog__close:hover {
  background: #F8F7F4;
}
.tokusho-dialog__body {
  overflow-y: auto;
  padding: 1.5rem;
}
.tokusho-dialog__prose {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #2D3140;
}
.tokusho-dialog__prose h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A2B5C;
  margin: 1.5rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E4EA;
}
.tokusho-dialog__prose h3:first-of-type {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}
.tokusho-dialog__prose p {
  margin: 0.5rem 0;
}
.tokusho-dialog__prose ol, .tokusho-dialog__prose ul {
  padding-left: 1.4rem;
  margin: 0.5rem 0;
}
.tokusho-dialog__prose ol li, .tokusho-dialog__prose ul li {
  margin-bottom: 0.3rem;
}
.tokusho-dialog__prose ul {
  list-style: disc;
}
.tokusho-dialog__prose ol {
  list-style: decimal;
}
.tokusho-dialog__prose .tokusho-dialog__table {
  margin: 0.75rem 0;
}
.tokusho-dialog__meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #E2E4EA;
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.7;
}
.tokusho-dialog__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.tokusho-dialog__table th, .tokusho-dialog__table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #E2E4EA;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.tokusho-dialog__table th {
  width: 38%;
  color: #6B7280;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .tokusho-dialog__table th {
    white-space: normal;
    width: 42%;
  }
}
.tokusho-dialog__table td {
  color: #2D3140;
}
.tokusho-dialog__table td a {
  color: #B8902E;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tokusho-dialog__table td a:hover {
  color: #D4A853;
}

.sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.875rem 1.25rem;
    padding-bottom: calc(0.875rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid #E2E4EA;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sticky-cta.is-visible {
    transform: translateY(0);
  }
  .sticky-cta.is-hidden {
    transform: translateY(100%);
  }
}
.sticky-cta__btn {
  width: 100%;
  font-size: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #1A2B5C;
  color: #FFFFFF;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(42, 63, 128, 0.5) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 2.5rem;
  padding-bottom: 320px;
}
@media (min-width: 1024px) {
  .hero__inner {
    padding-block: 5rem;
    padding-bottom: 5rem;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 83, 0.15);
  border: 1.5px solid rgba(212, 168, 83, 0.6);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #D4A853;
  letter-spacing: 0.06em;
  opacity: 0;
}
.hero__badge strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #D4A853;
  margin-bottom: 1.5rem;
  margin-left: 0.5rem;
  opacity: 0;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero__title em {
  font-style: normal;
  color: #D4A853;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: 0.01em;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero__cta {
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero__visual {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 360px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__visual {
    position: relative;
    bottom: auto;
    left: auto;
    transform: translateX(40px);
    width: auto;
    z-index: 1;
    margin-top: 0;
  }
}
.hero__fade {
  display: block;
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #1A2B5C, transparent);
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__fade {
    display: none;
  }
}
.hero__person {
  position: absolute;
  bottom: 0;
  right: -0.5rem;
  width: 55%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}
@media (min-width: 1024px) {
  .hero__person {
    bottom: -1.5rem;
    right: -2rem;
    width: 75%;
  }
}
.hero__float {
  position: absolute;
  z-index: 3;
  animation: hero-float 3.5s ease-in-out infinite;
  display: none;
}
@media (min-width: 1024px) {
  .hero__float {
    display: flex;
  }
}
.hero__float--notify {
  top: 0.5rem;
  left: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  animation-delay: 0s;
}
.hero__float--notify .hero__float-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #22c55e;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__float--notify .hero__float-title {
  font-size: 11px;
  font-weight: 700;
  color: #1A2B5C;
  white-space: nowrap;
}
.hero__float--notify .hero__float-meta {
  font-size: 10px;
  color: #6B7280;
  white-space: nowrap;
}
.hero__float--status {
  top: 3rem;
  right: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 0.4rem 0.875rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  font-size: 11px;
  font-weight: 700;
  color: #1A2B5C;
  white-space: nowrap;
  animation-delay: 0.6s;
}
.hero__float--status .hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: float-dot-pulse 2s ease-in-out infinite;
}
.hero__float--illust {
  bottom: 3.5rem;
  left: -1rem;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 0.625rem 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 110px;
  animation-delay: 1.1s;
}
.hero__float--illust img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}
.hero__float--illust span {
  font-size: 10px;
  font-weight: 700;
  color: #1A2B5C;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 5rem;
  }
}

.mockup-browser {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .mockup-browser {
    max-width: 480px;
  }
}
.mockup-browser {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center center;
}
.mockup-browser__chrome {
  background: #d1d5db;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-browser__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-browser__dot--red {
  background: #ff5f57;
}
.mockup-browser__dot--yellow {
  background: #ffbd2e;
}
.mockup-browser__dot--green {
  background: #28ca41;
}
.mockup-browser__url {
  flex: 1;
  background: #FFFFFF;
  border-radius: 4px;
  height: 22px;
  margin-left: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: #6b7280;
  font-family: monospace;
}
.mockup-browser__content {
  background: #FFFFFF;
}

.mockup-site__hero {
  background: #1A2B5C;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-site__hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.mockup-site__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-site__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.mockup-card {
  background: #F8F7F4;
  border-radius: 6px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(26, 43, 92, 0.15);
  margin-bottom: 2px;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(26, 43, 92, 0.12);
}
.mockup-line--light {
  background: rgba(255, 255, 255, 0.35);
}
.mockup-line--full {
  width: 100%;
}
.mockup-line--wide {
  width: 75%;
}
.mockup-line--mid {
  width: 50%;
}

.problem__header-illust {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.problem__header-illust img {
  width: min(400px, 80vw);
  height: auto;
}
.problem__list {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin-inline: auto;
  counter-reset: problem-counter;
}
.problem__item {
  counter-increment: problem-counter;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.25rem 0.75rem;
  border-bottom: 1px solid #E2E4EA;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.problem__item:first-child {
  border-top: 1px solid #E2E4EA;
}
.problem__item:hover {
  background: rgba(212, 168, 83, 0.035);
  padding-left: 1.25rem;
}
.problem__item::before {
  content: counter(problem-counter, decimal-leading-zero);
  color: #D4A853;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
  min-width: 2.25rem;
}
.problem__item::after {
  content: counter(problem-counter, decimal-leading-zero);
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  font-size: 5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  color: rgba(212, 168, 83, 0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.problem__item strong {
  font-size: 1.08em;
  font-weight: 700;
  color: #1A2B5C;
  margin-inline: 0.2em;
  padding: 0.05em 0.3em;
  background: rgba(26, 43, 92, 0.06);
  border-radius: 4px;
}

.solution__header-illust {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.solution__header-illust img {
  width: min(380px, 80vw);
  height: auto;
}
.solution__lead {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #1A2B5C;
  text-align: center;
  margin-bottom: 3rem;
}
.solution__table {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 43, 92, 0.12);
}
.solution__table th {
  background: #1A2B5C;
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
}
.solution__table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #E2E4EA;
  vertical-align: middle;
  background: #FFFFFF;
}
.solution__table tr:last-child td {
  border-bottom: none;
}
.solution__table tr:nth-child(odd) td {
  background: rgba(212, 168, 83, 0.04);
}
.solution__table .solution__answer {
  color: #1A2B5C;
  font-weight: 700;
}
.solution__table .solution__answer strong {
  color: #B8902E;
}

.steps__list {
  max-width: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.steps__item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}
.steps__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.steps__circle {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #1A2B5C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(26, 43, 92, 0.28);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.steps__circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 83, 0.35);
}
.steps__circle span {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: #D4A853;
  letter-spacing: 0.02em;
  line-height: 1;
}
.steps__circle--last {
  background: linear-gradient(135deg, #B8902E, #D4A853);
  box-shadow: 0 4px 14px rgba(212, 168, 83, 0.35);
}
.steps__circle--last::before {
  border-color: rgba(212, 168, 83, 0.5);
}
.steps__circle--last span {
  color: #FFFFFF;
}
.steps__line {
  width: 2px;
  min-height: 3.5rem;
  flex: 1;
  background: linear-gradient(to bottom, rgba(26, 43, 92, 0.25), rgba(26, 43, 92, 0.06));
  margin-block: 0.25rem;
}
.steps__content {
  padding-bottom: 3rem;
  padding-top: 0.5rem;
}
.steps__item:last-child .steps__content {
  padding-bottom: 0;
}
.steps__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #B8902E;
  margin-bottom: 0.35rem;
}
.steps__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A2B5C;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.steps__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.service__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service__card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26, 43, 92, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 43, 92, 0.12);
}
.service__card-illust {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.service__card-illust img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.service__card:hover .service__card-illust {
  transform: scale(1.04);
}
.service__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #D4A853;
  color: #1A2B5C;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}
.service__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A2B5C;
  margin-bottom: 0.5rem;
}
.service__card-text {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.8;
}
.service__card-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #B8902E;
  background: rgba(212, 168, 83, 0.07);
  border-radius: 6px;
  padding: 0.4em 0.75em;
  display: inline-block;
}
.service__card--included {
  border-top: 3px solid #D4A853;
}
.service__card--extra {
  border-top: 3px dashed #E2E4EA;
}
.service__card--extra .service__card-title {
  color: #6B7280;
}

.demo__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .demo__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.demo__card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 43, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.demo__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 43, 92, 0.12);
}
.demo__browser {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #E2E4EA;
}
.demo__chrome {
  background: #d1d5db;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.demo__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a0a0a0;
  flex-shrink: 0;
}
.demo__dot:nth-child(1) {
  background: #ff5f57;
}
.demo__dot:nth-child(2) {
  background: #ffbd2e;
}
.demo__dot:nth-child(3) {
  background: #28ca41;
}
.demo__url {
  flex: 1;
  background: #FFFFFF;
  border-radius: 3px;
  height: 16px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-size: 9px;
  color: #9ca3af;
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
}
.demo__screen-hero {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo__screen-body {
  background: #FFFFFF;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.demo__screen-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(26, 43, 92, 0.12);
}
.demo__screen-line--light {
  background: rgba(255, 255, 255, 0.45);
}
.demo__screen-line--full {
  width: 100%;
}
.demo__screen-line--wide {
  width: 72%;
}
.demo__screen-line--mid {
  width: 48%;
}
.demo__screen-btn {
  width: 56px;
  height: 14px;
  border-radius: 7px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.55);
}
.demo__screen--cafe {
  background: #7B4F35;
}
.demo__screen--beauty {
  background: #9C5B72;
}
.demo__screen--lesson {
  background: #3B6EA5;
}
.demo__screen--service {
  background: #2E7060;
}
.demo__screen--photo {
  height: 160px;
  overflow: hidden;
}
.demo__screen--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.demo__link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #1A2B5C;
  color: #FFFFFF;
  border: 1px solid #1A2B5C;
  border-radius: 999px;
  padding: 0.5rem 0.7rem;
  transition: opacity 0.3s ease;
}
.demo__link:hover {
  opacity: 0.75;
}
.demo__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0.875rem;
}
.demo__industry {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1A2B5C;
  line-height: 1.4;
}
.demo__badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6B7280;
  background: #EEF0F5;
  border: 1px solid #E2E4EA;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.report__image-wrap {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.report__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #E2E4EA;
  box-shadow: 0 8px 32px rgba(26, 43, 92, 0.12);
  display: block;
  background: #EEF0F5;
  min-height: 200px;
}
.report__caption {
  font-size: 0.75rem;
  color: #6B7280;
  text-align: center;
  opacity: 0.75;
}

.pricing__anchor {
  text-align: center;
  margin-bottom: 0;
  padding: 2rem;
  background: #EEF0F5;
  border-radius: 20px 20px 0 0;
  max-width: 520px;
  margin-inline: auto;
  border: 1px solid #E2E4EA;
  border-bottom: none;
  position: relative;
}
.pricing__anchor::after {
  content: "通常の制作費";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #6B7280;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing__anchor-text {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.25rem;
  display: none;
}
.pricing__anchor-price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #6B7280;
  text-decoration: line-through;
  text-decoration-color: rgba(212, 168, 83, 0.6);
  text-decoration-thickness: 3px;
}
.pricing__anchor-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: #6B7280;
  opacity: 0.75;
  line-height: 1.6;
}
.pricing__anchor-note::before {
  content: "※ ";
}
.pricing__divider {
  max-width: 520px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #EEF0F5, rgba(26, 43, 92, 0.08));
  border-left: 1px solid #E2E4EA;
  border-right: 1px solid #E2E4EA;
  padding: 0.75rem 0;
  position: relative;
}
.pricing__divider-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #B8902E;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pricing__divider svg {
  color: #D4A853;
  animation: bounce-down 1.8s ease-in-out infinite;
}
.pricing__card {
  max-width: 520px;
  margin-inline: auto;
  background: #1A2B5C;
  border-radius: 0 0 32px 32px;
  padding: 3rem 2.5rem;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 20px 60px rgba(26, 43, 92, 0.16);
  position: relative;
  overflow: hidden;
}
.pricing__card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.08);
  pointer-events: none;
}
.pricing__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  animation: card-shine 5s ease-in-out infinite 1s;
  pointer-events: none;
}
.pricing__card-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #D4A853;
  margin-bottom: 0.5rem;
}
.pricing__card-price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}
.pricing__card-price small {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.8;
}
.pricing__card-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}
.pricing__card-daily {
  display: inline-block;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #D4A853;
  margin-bottom: 2rem;
}
.pricing__includes {
  text-align: left;
  margin-bottom: 2rem;
}
.pricing__includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing__includes li::before {
  content: "✓";
  color: #D4A853;
  font-weight: 700;
  flex-shrink: 0;
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E2E4EA;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq__item.is-open {
  box-shadow: 0 8px 32px rgba(26, 43, 92, 0.12);
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}
.faq__label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.faq__label--q {
  background: #1A2B5C;
  color: #FFFFFF;
}
.faq__label--a {
  background: rgba(212, 168, 83, 0.15);
  color: #B8902E;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A2B5C;
  user-select: none;
  text-align: left;
}
.faq__question:hover {
  background: #F8F7F4;
}
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(26, 43, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #1A2B5C;
}
.faq__answer {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.9;
}
.faq__answer.is-open {
  display: flex;
}

.terms__table {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  border-collapse: collapse;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(26, 43, 92, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.terms__table th {
  background: #1A2B5C;
  color: #FFFFFF;
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 700;
  width: 40%;
}
.terms__table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #E2E4EA;
  background: #FFFFFF;
}
.terms__table tr:last-child td {
  border-bottom: none;
}
.terms__note {
  max-width: 640px;
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(212, 168, 83, 0.08);
  border-left: 4px solid #D4A853;
  border-radius: 0 6px 6px 0;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 24px, rgba(255, 255, 255, 0.025) 24px, rgba(255, 255, 255, 0.025) 48px);
  pointer-events: none;
}
.final-cta > .container {
  position: relative;
  z-index: 1;
}
.final-cta__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.final-cta__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.final-cta__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: translateY(-7px);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.13));
  }
}
@keyframes float-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
  }
}
@keyframes card-shine {
  0% {
    left: -100%;
  }
  30% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
