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

html {
  scroll-behavior: smooth;
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  color: #0E1D25;
  background: #ffffff;
  font-size: 1rem;
}

.sp-br {
  display: block;
}

.pc-br {
  display: none;
}

@media (min-width: 1023px) {
  .sp-br {
    display: none;
  }
  .pc-br {
    display: block;
  }
}
.sec-label {
  display: block;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #066b9f;
  margin-bottom: 0;
}

.sec-heading {
  text-align: center;
  font-size: clamp(1.6rem, 6.5vw, 2.222rem);
  font-weight: 900;
  color: #053249;
  margin: 0 0 1.75rem;
}
@media (min-width: 1023px) {
  .sec-heading {
    line-height: 1.5;
  }
}
.sec-heading .quote {
  color: #066b9f;
}

.sec-heading-strong {
  font-size: 1.1em;
  display: block;
  white-space: nowrap;
}

.sec-subheading {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: #324A58;
  line-height: 1.9;
  text-align: center;
}

#site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 100%;
  z-index: 100;
  background: #ffffff;
  border-bottom: none;
  opacity: 1;
  transition: opacity 0.32s ease;
}
@media (min-width: 1023px) {
  #site-header {
    top: 12px;
    background: transparent;
  }
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#site-header.is-hiding {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

#site-header.is-sticky.is-hiding {
  transform: translateX(-50%) translateY(-10px);
}

#site-header.is-sticky {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: min(100% - 32px, 1500px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(10, 45, 78, 0.13), 0 1px 4px rgba(10, 45, 78, 0.08);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 0.68, 0, 1.1);
}
#site-header.is-sticky .header-inner {
  height: 62px;
  padding: 0 1rem;
  font-size: 16px;
}
@media (min-width: 1023px) {
  #site-header.is-sticky .header-inner {
    padding: 0 1.5rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.5vw;
}

.logo-svg-sp {
  display: block;
  height: 0.9rem;
  width: auto;
}

.logo-svg-pc {
  display: none;
  height: clamp(2vw, 78px, 6vw);
  width: auto;
  position: absolute;
  top: 20px;
}

@media (min-width: 1023px) {
  .logo-svg-sp {
    display: none;
  }
  .logo-svg-pc {
    display: block;
  }
  #site-header.is-sticky .logo-svg-sp {
    display: block;
    height: 0.85rem;
    max-width: 200px;
  }
  #site-header.is-sticky .logo-svg-pc {
    display: none;
  }
}
.logo-svg-sp path,
.logo-svg-sp polygon,
.logo-svg-pc path,
.logo-svg-pc polygon {
  transition: fill 0.35s ease;
}

.header-nav {
  display: none;
}
@media (min-width: 1023px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 1.75vw;
    font-size: clamp(0.8rem, 1.4vw, 1.125rem);
    margin-left: auto;
    margin-right: 1.75vw;
  }
  .header-nav a {
    text-decoration: none;
    color: #074564;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  .header-nav a:hover {
    color: #066b9f;
  }
}
@media (min-width: 1100px) {
  .header-nav br {
    display: none;
  }
}
@media (min-width: 1500px) {
  .header-nav {
    gap: 1.75em;
    margin-right: 1.75em;
  }
}

#site-header.is-sticky .header-nav {
  gap: 0.7em;
  max-width: 780px;
}
#site-header.is-sticky .header-nav a {
  color: #074564;
  font-size: clamp(0.8rem, 1.2vw, 1.125rem);
}

.header-cta-group {
  display: none;
  align-items: center;
  gap: 1.5em;
}
@media (min-width: 1023px) {
  .header-cta-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
}
.header-cta-group a {
  font-size: clamp(0.8rem, 1.25vw, 1rem);
  font-weight: 700;
  padding: 0.75rem 1.25vw;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  min-width: 10em;
}

.header-cta {
  background: #066b9f;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.15s;
}
.header-cta:hover {
  background: #09587f;
  transform: translateY(-1px);
}

.header-cta-outline {
  background: #ffffff;
  color: #066b9f;
  border: 1.5px solid #066b9f;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s;
}
.header-cta-outline:hover {
  background: #066b9f;
  color: #ffffff;
  transform: translateY(-1px);
}

#site-header.is-sticky .header-cta-outline {
  color: #066b9f;
  border-color: #066b9f;
}
#site-header.is-sticky .header-cta-outline:hover {
  background: #066b9f;
  color: #ffffff;
}

.drawer-cta-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: #066b9f;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem;
  border-radius: 100px;
  border: 1.5px solid #066b9f;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.drawer-cta-outline:hover {
  background: #066b9f;
  color: #ffffff;
}

.header-sp-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1023px) {
  .header-sp-right {
    display: none;
  }
}

.header-cta-sp {
  background: #066b9f;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.65rem 0.8rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.header-cta-sp:hover {
  background: #09587f;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #074564;
  border-radius: 2px;
  transition: transform 0.3s ease, background 0.35s ease;
  transform-origin: center;
}
.hamburger::after {
  display: block;
  content: "メニュー";
  font-size: 0.6em;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  height: 1em;
  background: none;
  margin-top: -2px;
}
#site-header.is-sticky .hamburger span {
  background: #066b9f;
}
.hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.hamburger[aria-expanded=true] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
@media (min-width: 1023px) {
  .hamburger {
    display: none;
  }
}

#drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  z-index: 99;
  overflow-y: auto;
  padding: calc(62px + 2rem) 1.5rem 3rem;
}
#drawer.is-open {
  display: block;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
}
.drawer-nav a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #e5f1f8;
  font-size: 1rem;
  font-weight: 700;
  color: #053249;
  text-decoration: none;
  transition: color 0.2s ease;
}
.drawer-nav a:hover {
  color: #066b9f;
}

.drawer-cta {
  display: block;
  text-align: center;
  background: #066b9f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(6, 107, 159, 0.28);
}

#site-footer {
  background: #053249;
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 1.5rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 160px 1fr;
    gap: 4rem;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo-svg {
  width: 128px;
  height: auto;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-nav-col h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav-col ul li a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-nav-col ul li a:hover {
  color: #ffffff;
}
.footer-nav-col ul li a sup {
  font-size: 0.6em;
  line-height: 1;
}
.footer-nav-col ul li a img {
  width: 10px;
  height: 10px;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom-links a img {
  width: 9px;
  height: 9px;
}

#hero {
  position: relative;
  height: 50em;
  max-height: 800px;
  padding-top: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  clip-path: url(#hero-clip);
}
@media (min-width: 1023px) {
  #hero {
    height: 95svh;
    padding-bottom: 40px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(220, 240, 255, 0.38);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1023px) {
  .hero-inner {
    flex-direction: row;
    padding: 0 2rem 0;
  }
}

.hero-copy {
  flex: 0 0 auto;
  text-align: center;
}
@media (min-width: 1023px) {
  .hero-copy {
    padding-bottom: 1rem;
    text-align: left;
  }
}

.hero-heading {
  font-size: clamp(1.7rem, 4.8vw, 2.667rem);
  font-weight: 900;
  line-height: 1.55;
  color: #053249;
  margin: 0 0 1.1rem;
}
@media (max-width: 1023px) {
  .hero-heading .hero-heading-strong {
    font-size: 1.3em;
  }
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 0.93rem);
  color: #324A58;
  line-height: 1.9;
  margin: 0 0 1.75rem;
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0B6A9B;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26, 111, 175, 0.28);
  transition: background 0.2s ease, transform 0.15s, box-shadow 0.2s ease;
}
.btn-dl:hover {
  background: #09587f;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 111, 175, 0.38);
}
.btn-dl img {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.hero-copy .btn-dl {
  display: none;
}

.hero-cta-sp {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem 2rem;
  margin-top: -1.2rem;
}

@media (min-width: 1023px) {
  .hero-copy .btn-dl {
    display: inline-flex;
  }
  .hero-cta-sp {
    display: none;
  }
}
.hero-visual {
  z-index: 2;
  width: 85%;
  pointer-events: none;
  max-width: 400px;
  margin-left: 11vw;
}
@media (min-width: 1023px) {
  .hero-visual {
    position: relative;
    right: auto;
    bottom: -30px;
    margin-left: auto;
    width: clamp(500px, 60%, 600px);
    align-self: flex-end;
    flex-shrink: 0;
    max-width: none;
  }
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

#features {
  padding: 6rem 1.5rem 5rem;
}
@media (min-width: 1023px) {
  #features {
    padding: 8rem 1.5rem 5rem;
  }
}

#features-title {
  position: relative;
}
#features-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 11em;
  position: absolute;
  background-image: url(/assets/icon/icon_check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: clamp(-250px, -33vw, -160px);
  left: 0;
  z-index: -1;
}
@media (min-width: 1023px) {
  #features-title::before {
    top: -17vw;
    left: -3em;
  }
}

.scene-cards {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

.scene-card {
  width: 100%;
  background: linear-gradient(95deg, #066b9f 27.39%, #3492c2 96.23%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 160px;
}
@media (min-width: 1023px) {
  .scene-card {
    flex-direction: row;
  }
}

.scene-card-img {
  flex-shrink: 0;
  width: clamp(120px, 22vw, 240px);
  height: clamp(120px, 22vw, 240px);
  margin: 1.75rem 0 0;
  border-radius: 50%;
  background: #cfe5f0;
  overflow: hidden;
}
@media (min-width: 1023px) {
  .scene-card-img {
    margin: 1.75rem 0 1.75rem 40px;
  }
}
.scene-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.scene-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #6b9ebb;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
}

.scene-card-body {
  flex: 1;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 1023px) {
  .scene-card-body {
    padding: 1.75rem 2rem 1.75rem 1.75rem;
  }
}

.scene-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 0.75rem;
}
@media (min-width: 1023px) {
  .scene-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.scene-tag {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  background: #ffffff;
  color: #053249;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.55rem 0.25rem;
  min-width: calc(50% - 0.5em);
  justify-content: center;
  flex-wrap: wrap;
}
.scene-tag strong {
  font-weight: 900;
  color: #053249;
}
.scene-tag span {
  font-size: 0.8em;
  font-weight: 500;
  color: #324A58;
}

.scene-desc {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
}
.scene-desc strong {
  font-weight: 900;
}

.features-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.feature-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  text-align: left;
}
@media (min-width: 640px) {
  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
}

.feature-illust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1/3;
  align-self: center;
}
.feature-illust img {
  width: 100%;
  height: auto;
}
@media (min-width: 640px) {
  .feature-illust {
    margin-bottom: 1.1rem;
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
  }
  .feature-illust svg {
    width: 64px;
    height: 64px;
  }
}

.feature-title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: flex-start;
  margin-bottom: 0.3rem;
  grid-column: 2;
  grid-row: 1;
  position: relative;
}
@media (min-width: 640px) {
  .feature-title-row {
    justify-content: center;
    margin-bottom: 0.6rem;
    grid-column: unset;
    grid-row: unset;
  }
}

.feature-catch {
  font-size: 1.25rem;
  font-weight: 900;
  color: #053249;
  line-height: 1.5;
  margin: 0;
  position: relative;
}
.feature-catch .highlight {
  color: #066b9f;
}
.feature-catch::before {
  content: "";
  width: 76px;
  height: 40px;
  flex-shrink: 0;
  display: none;
  position: absolute;
  background-image: url(../assets/icon/icon_check.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
  z-index: -1;
}
@media (min-width: 1023px) {
  .feature-catch::before {
    width: 106px;
    height: 65px;
    left: -40px;
    top: -160%;
    display: block;
  }
}
@media (min-width: 640px) {
  .feature-catch {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }
}

.feature-desc {
  font-size: 0.88rem;
  color: #324A58;
  line-height: 1.75;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
}
@media (min-width: 640px) {
  .feature-desc {
    grid-column: unset;
    grid-row: unset;
  }
}

#about-header {
  padding: 3.5rem 1.5rem 0;
  text-align: center;
}

#about-points {
  margin: 0;
  padding: 0;
}

.about-point {
  position: relative;
  background: transparent;
  color: #ffffff;
  margin-bottom: 0;
  padding: 8rem 0 clamp(0rem, 13vw, 7rem);
  z-index: 1;
}
.about-point:not(:first-child) {
  margin-top: -24vw;
}
.about-point::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 389 519' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='679.7' y1='74.2' x2='-303.2' y2='64.3' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237EBADC'/%3E%3Cstop offset='1' stop-color='%23066B9F'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M-1 63.5V519H389V0L-1 63.5Z' fill='url(%23g)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.about-point:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 389 519' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='-303.2' y1='64.3' x2='679.7' y2='74.2' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%237EBADC'/%3E%3Cstop offset='1' stop-color='%23066B9F'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M390 63.5V519H0V0L390 63.5Z' fill='url(%23g)'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .about-point {
    padding: 4rem 0 5rem;
  }
  .about-point:not(:first-child) {
    margin-top: 0;
  }
  .about-point::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1034 400" preserveAspectRatio="none"><defs><linearGradient id="g" x1="1034" y1="200" x2="-22.5" y2="211.2" gradientUnits="userSpaceOnUse"><stop stop-color="%237EBADC"/><stop offset="1" stop-color="%23066B9F"/></linearGradient></defs><path d="M934.5 400H0L0 0H1034L934.5 400Z" fill="url(%23g)"/></svg>');
    background-size: 65% 100%;
    background-position: left top;
  }
  .about-point:nth-child(2) {
    top: -1.5rem;
  }
  .about-point:nth-child(2)::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1034 400" preserveAspectRatio="none"><defs><linearGradient id="g" x1="-22.5" y1="211.2" x2="1034" y2="200" gradientUnits="userSpaceOnUse"><stop stop-color="%237EBADC"/><stop offset="1" stop-color="%23066B9F"/></linearGradient></defs><path d="M99.5 400H1034L1034 0H0L99.5 400Z" fill="url(%23g)"/></svg>');
    background-size: 65% 100%;
    background-position: right top;
  }
  .about-point:nth-child(3) {
    top: -3rem;
  }
}

.about-point-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .about-point-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 768px) {
  .about-point:nth-child(even) .about-point-text {
    order: 2;
  }
  .about-point:nth-child(even) .about-point-illust {
    order: 1;
  }
}
.about-point:nth-child(2) .about-point-inner {
  display: flex;
  flex-direction: column;
}
.about-point:nth-child(2) .about-point-inner .about-point-text {
  order: 1;
}
.about-point:nth-child(2) .about-point-inner .about-point-illust {
  order: 2;
}
@media (min-width: 768px) {
  .about-point:nth-child(2) .about-point-inner {
    display: grid;
  }
  .about-point:nth-child(2) .about-point-inner .about-point-text {
    order: 2;
  }
  .about-point:nth-child(2) .about-point-inner .about-point-illust {
    order: 1;
  }
}

.about-point-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a7d0e7;
  margin-bottom: 0.5rem;
  display: block;
}

.about-point-title {
  font-size: clamp(1.7rem, 3.6vw, 2.222rem);
  font-weight: 900;
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 1.1rem;
}

.about-point-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.about-point-illust {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.about-point-illust img,
.about-point-illust svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .about-point-illust {
    position: relative;
    top: clamp(4rem, 6vw, 5rem);
  }
}

#service {
  padding: 4rem 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.service-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid #d1e6f2;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 80px;
  background-color: #d1e6f2;
  z-index: 1;
}
@media (min-width: 1023px) {
  .service-tabs {
    overflow-x: initial;
    -webkit-overflow-scrolling: initial;
  }
}

.service-tab {
  flex: 1;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #58829a;
  background: #e5f1f8;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-align: center;
  line-height: 1.4;
}
.service-tab.is-active {
  color: #ffffff;
  background: #0B6A9B;
  border-bottom-color: #0B6A9B;
}
@media (min-width: 1023px) {
  .service-tab.is-active {
    position: relative;
  }
  .service-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0B6A9B;
    pointer-events: none;
    z-index: 10;
  }
}

.service-panel {
  display: none;
}
.service-panel.is-active {
  display: block;
}

.service-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .service-panel-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.service-panel-img {
  order: 2;
}
@media (min-width: 768px) {
  .service-panel-img {
    order: 1;
  }
}

.service-panel-text {
  order: 1;
}
@media (min-width: 768px) {
  .service-panel-text {
    order: 2;
  }
}

.service-panel-img {
  display: flex;
  justify-content: center;
  gap: 1vw;
}
.service-panel-img img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(10, 45, 78, 0.15);
}

picture.service-panel-img-half {
  width: calc(50% - 1vw);
  position: relative;
}
picture.service-panel-img-half:nth-child(2) {
  top: 5rem;
  left: -10%;
}

.service-panel-title {
  font-size: clamp(1.8rem, 3.6vw, 2.222rem);
  font-weight: 900;
  color: #053249;
  line-height: 1.45;
  margin: 0 0 1.25rem;
}
.service-panel-title::after {
  content: "";
  display: block;
  width: 30%;
  height: 4px;
  background-color: #7ebadc;
  margin: 1.25em 0;
}

.service-panel-desc {
  font-size: 1rem;
  color: #324A58;
  line-height: 1.9;
  margin: 0 0 1.25rem;
}

.service-panel-table-caption {
  font-size: 1rem;
  color: #324A58;
  line-height: 1.9;
  margin: 0 0 0.25em;
}

.service-panel-table {
  display: grid;
  grid-template: 1fr 1fr 1fr/1fr 1fr;
  align-items: center;
  gap: 0;
  border-top: 1px solid #d1e6f2;
  margin-top: 0;
}
@media (min-width: 768px) {
  .service-panel-table {
    grid-template: 1fr 1fr 1fr/13em 1fr;
  }
}
.service-panel-table dt, .service-panel-table dd {
  display: flex;
  align-items: center;
  padding: 0.75em 1.5em;
  margin: 0;
  border: 1px solid #d1e6f2;
  border-top: none;
}
.service-panel-table dt {
  background-color: #e5f1f8;
  border-right: none;
  font-weight: 500;
  height: 100%;
}
.service-panel-table dd {
  color: #324A58;
}

.service-compat {
  font-size: 0.88rem;
  color: #58829a;
  border-top: 1px solid #d1e6f2;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}
.service-compat span {
  display: block;
  font-weight: 700;
  color: #066b9f;
  margin-bottom: 0.25rem;
}

.about-point-note {
  font-size: 0.88rem;
}

#pricing {
  background: linear-gradient(180deg, #ffffff 0%, #cfe5f0 100%);
  padding: 5rem 1.5rem 4rem;
  position: relative;
}

.pricing-bgline {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  overflow: hidden;
}
.pricing-bgline::before {
  content: "";
  position: absolute;
  top: -24vw;
  left: 0;
  width: 100%;
  height: 50vw;
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2NDAiIHZpZXdCb3g9IjAgMCAxNDQwIDY0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNLTg5LjI1IDEzMS40NjlDMTAuNTgzMyAxMTQuODAzIDE2Mi4yNSAxNy45Njk1IDMyOS43NSAyNzYuOTY5QzQ5Ny4yNSA1MzUuOTY5IDcwOC43NSA1OTIuOTY5IDk0Mi4yNSA0OTEuOTY5QzExNzUuNzUgMzkwLjk2OSAxNDIxLjc1IDM5My45NjkgMTUyOS4yNSA1NjcuNDY5IiBzdHJva2U9InVybCgjcGFpbnQwX2xpbmVhcl81M180MTkyKSIgc3Ryb2tlLXdpZHRoPSIyMDAiLz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfNTNfNDE5MiIgeDE9Ii04OS4yNSIgeTE9IjMzMy43MzMiIHgyPSIxNTI5LjI1IiB5Mj0iMzMzLjczMyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiM3RUJBREMiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM3RUJBREMiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: 110% auto;
}

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

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  position: relative;
}
@media (min-width: 640px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2rem 3.25rem;
  box-shadow: 0 4px 20px rgba(10, 45, 78, 0.08);
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media (min-width: 640px) {
  .pricing-card:first-child {
    border-radius: 16px 0 0 16px;
  }
  .pricing-card:last-child {
    border-radius: 0 16px 16px 0;
  }
}

.pricing-card-label {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #58829a;
  margin-bottom: 1rem;
}

.pricing-amount {
  text-align: center;
  font-size: clamp(2.8rem, 32px, 10.5vw);
  font-weight: 900;
  color: #0B6A9B;
  margin: 0.25rem 0 2.5rem;
  line-height: 1;
}
.pricing-amount small {
  font-size: 0.55em;
  font-weight: 700;
  color: #0B6A9B;
}

.pricing-divider {
  border: none;
  border-top: 1px solid #e5f1f8;
  margin: 0 0 1.25rem;
}

.pricing-includes-note {
  font-size: 0.88rem;
  font-weight: 400;
  color: #666a6d;
  margin: 0;
  text-align: center;
}

.pricing-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #324A58;
  line-height: 1.5;
}
.pricing-includes li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: #0B6A9B;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='3,8 6.5,11.5 13,4.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

.pricing-plus {
  display: none;
}
@media (min-width: 640px) {
  .pricing-plus {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #cfe5f0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 1.2rem;
    color: #0B6A9B;
    font-weight: 700;
  }
}

.pricing-notes {
  font-size: 0.88rem;
  color: #58829a;
  line-height: 1.8;
  margin: 0 0;
}
.pricing-notes p {
  margin: 0;
}

.pricing-info-box {
  margin-bottom: 1.75rem;
}
.pricing-info-box > h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #58829a;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.pricing-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.options-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 4px 20px rgba(10, 45, 78, 0.08);
  width: 100%;
}

.options-amount {
  text-align: center;
  font-size: clamp(2.3rem, 28px, 9.5vw);
  font-weight: 900;
  color: #0B6A9B;
  margin: 0 0 1.5rem;
  line-height: 1;
}
.options-amount small {
  font-size: 0.55em;
  font-weight: 700;
  color: #0B6A9B;
}

.options-divider {
  border: none;
  border-top: 1px solid #e5f1f8;
  margin: 0 0 1.25rem;
}

.options-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.options-includes li {
  display: grid;
  gap: 0.5rem;
  font-size: 1rem;
  color: #324A58;
  line-height: 1.6;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  font-weight: 700;
}
@media (min-width: 1023px) {
  .options-includes {
    display: grid;
    gap: 0.75rem;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.options-contents {
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3492c2;
  color: #ffffff;
}

.options-details {
  grid-area: 2/1/3/3;
  font-size: 0.88em;
  color: #58829a;
  font-weight: 400;
}

.pricing-cta-wrap {
  text-align: center;
}

.btn-pricing {
  display: inline-block;
  background: #0B6A9B;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s;
  box-shadow: 0 4px 14px rgba(22, 96, 160, 0.3);
}
.btn-pricing:hover {
  background: #09587f;
  transform: translateY(-2px);
}

#faq {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(25, 87, 119, 0.2);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.is-open {
  box-shadow: 0 4px 16px rgba(10, 45, 78, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-q-text {
  font-size: 1rem;
  font-weight: 700;
  color: #053249;
  line-height: 1.55;
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #0B6A9B;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
  display: block;
}

.faq-item.is-open .faq-icon svg {
  transform: rotate(180deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0.25rem 1.25rem 1.25rem;
  font-size: 1rem;
  color: #324A58;
  line-height: 1.85;
  border-top: 1px solid #e5f1f8;
}

#cta {
  background: #ffffff;
  padding: 3rem 1.5rem 4rem;
}

.cta-card {
  max-width: 1300px;
  margin: 0 auto;
  background: linear-gradient(95deg, #066b9f 27.39%, #3492c2 96.23%);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .cta-card {
    grid-template-columns: minmax(280px, 340px) 1fr;
  }
}
@media (min-width: 1100px) {
  .cta-card {
    grid-template-columns: 380px 1fr;
  }
}

.cta-img {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .cta-img {
    min-height: auto;
  }
}
.cta-img img {
  margin-top: 32px;
  width: clamp(16rem, 340px, 30vw);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .cta-img img {
    margin-left: 5vw;
  }
}

.cta-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 740px;
}
@media (min-width: 1100px) {
  .cta-body {
    padding: 3rem 3rem 3rem 3.5rem;
  }
}

.cta-heading {
  font-size: clamp(1.7rem, 3.6vw, 2.222rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin: 0;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .cta-btns {
    justify-content: start;
  }
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #053249;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 2.75rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  width: 90%;
  justify-content: center;
}
@media (min-width: 768px) {
  .btn-cta-primary {
    width: auto;
  }
}
.btn-cta-primary:hover {
  opacity: 0.85;
}
.btn-cta-primary img {
  width: 1.25em;
  height: 1.25em;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.5rem 2.75rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 90%;
  justify-content: center;
}
@media (min-width: 768px) {
  .btn-cta-secondary {
    width: auto;
  }
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

#dealers {
  position: relative;
  background: #cfe5f0;
  padding: 5rem 1.5rem 7rem;
  overflow: hidden;
}

.dealers-bgline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60vw;
  max-height: 498px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI0OTgiIHZpZXdCb3g9IjAgMCAxNDQwIDQ5OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9Ii01OS40NjAzIiB5MT0iMzk5LjQ1MSIgeDI9IjE0NTkuNTQiIHkyPSI5OC4wODgzIiBzdHJva2U9InVybCgjcGFpbnQwX2xpbmVhcl81NV80MjAxKSIgc3Ryb2tlLXdpZHRoPSIyMDAiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl81NV80MjAxIiB4MT0iLTM5LjkwMjciIHkxPSI0OTguMDMiIHgyPSIxNDc5LjEiIHkyPSIxOTYuNjY3IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiM3RUJBREMiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjN0VCQURDIiBzdG9wLW9wYWNpdHk9IjAiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: 110% auto;
  background-position: left top;
  pointer-events: none;
  z-index: 0;
}

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

.dealers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  list-style: none;
  padding: 0;
}

.dealer-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 45, 78, 0.1);
  width: 100%;
  flex: 0 1 360px;
}
@media (min-width: 640px) {
  .dealer-card {
    flex: 0 1 340px;
  }
}
@media (min-width: 1023px) {
  .dealer-card {
    flex: 0 1 380px;
  }
}

.dealer-logo {
  background: rgba(229, 241, 248, 0.5);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer-logo-placeholder {
  font-size: 1.25rem;
  color: #324A58;
  font-weight: 300;
}

.dealer-body {
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: center;
}

.dealer-name {
  font-size: 1rem;
  font-weight: 900;
  color: #053249;
  margin: 0 0 0.4rem;
}

.dealer-area {
  font-size: 0.82rem;
  color: #58829a;
  margin: 0 0 0.5rem;
}

.dealer-tel {
  font-size: 0.82rem;
  color: #324A58;
}
.dealer-tel a {
  color: inherit;
  text-decoration: none;
}
.dealer-tel a:hover {
  color: #066b9f;
}

.dealers-cta-wrap {
  text-align: center;
}

.btn-dealers {
  display: inline-block;
  background: #0B6A9B;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s;
  box-shadow: 0 4px 14px rgba(22, 96, 160, 0.3);
}
.btn-dealers:hover {
  background: #09587f;
  transform: translateY(-2px);
}

.btn-dealers-outline {
  display: inline-block;
  background: #ffffff;
  color: #0B6A9B;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 100px;
  border: 1px solid #0B6A9B;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s;
  box-shadow: 0 4px 14px rgba(22, 96, 160, 0.3);
}
.btn-dealers-outline:hover {
  background: #09587f;
  color: #ffffff;
  transform: translateY(-2px);
}/*# sourceMappingURL=style.css.map */