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

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px !important;
  color: #1A2340;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
.btn--primary {
  background: #F0C040;
  color: #0A1A3C;
  border-color: #F0C040;
}
.btn--primary:hover {
  background: #D4A800;
  border-color: #D4A800;
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 50px;
          box-shadow: 50px;
}
.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--outline-primary {
  background: transparent;
  color: #003B96;
  border-color: #003B96;
}
.btn--outline-primary:hover {
  background: #003B96;
  color: #FFFFFF;
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--arrow::after {
  content: "›";
  font-size: 1.3em;
  line-height: 1;
}

.header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
}
.header__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 64px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 56px;
  }
}
.header__logo {
  display: block;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 180px;
  }
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  font-size: 0.82rem;
  color: #1A2340;
  font-weight: 500;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.header__nav a:hover {
  color: #003B96;
  opacity: 1;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .header__actions {
    gap: 8px;
  }
}
.header__actions .btn {
  padding: 8px 18px !important;
  font-size: 0.82rem;
}
@media screen and (max-width: 767px) {
  .header__actions .btn {
    display: none;
  }
}
.header .btn--outline-primary {
  background-color: #003B96;
  color: #ffffff;
  padding: 8px 45px !important;
}
.header__trial-btn {
  background: #F0C040;
  color: #0A1A3C;
  padding: 8px 30px !important;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__trial-btn {
    display: none;
  }
}
.header__trial-btn:hover {
  background: #D4A800;
  opacity: 1;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger span {
  display: block;
  height: 2px;
  background: #1A2340;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media screen and (max-width: 1024px) {
  .drawer {
    display: block;
  }
}
.drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.drawer__nav a {
  padding: 16px 4px;
  font-size: 0.95rem;
  color: #1A2340;
  font-weight: 500;
  border-bottom: 1px solid #D0DCEC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer__nav a::after {
  content: "›";
  color: #003B96;
  font-size: 1.2em;
}
.drawer__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.drawer__actions .btn--outline-primary {
  background: #003B96;
  color: #ffffff;
}
.drawer__actions .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 20px;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 60, 0.5);
  z-index: 998;
}
@media screen and (max-width: 1024px) {
  .drawer-overlay.is-visible {
    display: block;
  }
}

/* Override theme styles that force buttons to full width or narrow height */
.solution__actions .btn,
.price__actions .btn,
.faq__actions .btn,
.cta-bottom__actions .btn {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.5 !important;
}

/* Override theme padding that reduces button height */
.solution__actions a.btn {
  padding: 10px 40px !important;
}
.price__actions a.btn {
  padding: 8px 50px !important;
}
.faq__actions a.btn {
  padding: 14px 40px !important;
}
.cta-bottom__actions a.btn {
  padding: 8px 50px !important;
}

.hero {
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 160px;
  background: url(../img/fv-accent.webp) no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  .hero::after {
    bottom: -35px;
  }
}
@media screen and (max-width: 767px) {
  .hero::after {
    width: 150%;
    height: 100px;
    bottom: 40%;
    left: 90%;
    right: 0;
    -webkit-transform: translateX(-50%) rotate(-90deg);
            transform: translateX(-50%) rotate(-90deg);
  }
}
@media screen and (max-width: 1024px) {
  .hero {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 80px;
  }
}
.hero__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding-top: 36px;
    padding-bottom: 50px;
    gap: 28px;
  }
}
.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 580px;
}
@media screen and (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 767px) {
  .hero__content {
    max-width: 450px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.hero__eyecatch {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.hero__subtitle__small {
  background: #003B96;
  color: #ffffff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  margin-bottom: 5px;
  padding: 3px 15px;
}
@media screen and (min-width: 768px) {
  .hero__subtitle__small {
    margin-bottom: 12px;
  }
}

/* WordPress管理バー表示時の位置補正 */
.admin-bar .header {
  top: 32px;
}
.admin-bar .hero {
  padding-top: 96px;
}
@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
  .admin-bar .hero {
    padding-top: 110px;
  }
}
.hero__subtitle {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 120%;
  display: block;
}
.hero__subtitle span {
  background: #003B96;
  color: #ffffff;
  padding: 3px 15px;
  white-space: nowrap;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero__subtitle span {
    white-space: normal;
    display: inline-block;
    line-height: 1.6;
  }
  .sp-only {
    display: block;
  }
}
.hero__title {
  color: #003B96;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1024px) {
  .hero__title {
    font-size: 2.2rem;
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 1.2rem;
  }
}
.hero__desc {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 480px;
  color: #003B96;
}
@media screen and (max-width: 1024px) {
  .hero__desc {
    max-width: 100%;
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hero__desc {
    font-size: 0.82rem;
  }
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero__actions a {
  -webkit-box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  width: 245px;
}
@media screen and (max-width: 767px) {
  .hero__actions a {
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 15px;
  }
}
.hero__actions .btn--primary {
  background: #003B96;
  color: #ffffff;
  border: 1px solid #003B96;
  padding: 8px 30px;
}
@media screen and (max-width: 767px) {
  .hero__actions .btn--primary {
    padding: 8px 15px;
  }
}
.hero__actions .btn--outline {
  background: #F0C040;
  color: #003B96;
  border: #F0C040;
}
.hero__visual {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  max-width: 520px;
}
@media screen and (max-width: 1024px) {
  .hero__visual {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -150px;
  }
}
@media screen and (max-width: 767px) {
  .hero__visual {
    max-width: 340px;
    width: 60%;
    margin-top: -10%;
    z-index: -1;
  }
}

@-webkit-keyframes hero-float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes hero-float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.section {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
}
.section__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section__label {
  display: inline-block;
  background-color: #F0C040;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  position: relative;
}
.section__label::after {
  position: absolute;
  content: "▼";
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #F0C040;
}
.section__label--pain {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  background-color: #003B96;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.section__label--pain::after {
  position: absolute;
  content: "▼";
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #003B96;
}
.section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #003B96;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 1.4rem;
  }
}
.section__lead {
  display: block;
  max-width: 820px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem !important;
  text-align: left;
  line-height: 160%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .section__lead {
    font-size: 15px;
  }
}
.section__subtitle {
  font-size: 1rem;
  color: #666B7A;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .section__subtitle {
    font-size: 0.88rem;
    margin-bottom: 36px;
  }
}
.section__header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .section__header {
    margin-bottom: 36px;
  }
}

.pain {
  background: #EFF6FF;
  position: relative;
}
.pain::after {
  position: absolute;
  content: "";
  bottom: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 320px;
  height: 60px;
  background: url(../img/pain-arrow.webp) no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pain::after {
    width: 200px;
    height: 35px;
    bottom: -32px;
  }
}
.pain__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media screen and (max-width: 1024px) {
  .pain__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .pain__grid {
    margin-top: 30px;
  }
}
.pain__card {
  background: #FFFFFF;
  padding: 32px 28px;
  -webkit-box-shadow: 0 4px 20px rgba(10, 26, 60, 0.07);
          box-shadow: 0 4px 20px rgba(10, 26, 60, 0.07);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .pain__card {
    padding: 20px 15px;
  }
}
.pain__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 36px rgba(0, 59, 150, 0.15);
          box-shadow: 0 12px 36px rgba(0, 59, 150, 0.15);
  border-color: rgba(0, 59, 150, 0.3);
}
.pain__icon {
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
}
.pain__icon img {
  width: 100%;
  aspect-ratio: 180/120;
  -o-object-fit: cover;
     object-fit: cover;
}
.pain__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A2340;
  margin-bottom: 12px;
  line-height: 1.5;
  text-align: center;
}
.pain__card-text {
  font-size: 0.84rem;
  color: #666B7A;
  line-height: 1.9;
}

.solution {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .solution {
    padding-bottom: 40px;
  }
}
.solution::before {
  position: absolute;
  content: "";
  top: -50px;
  right: 0;
  width: 200px;
  height: 300px;
  background: url(../img/accent-dashed.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .solution::before {
    width: 180px;
    height: 265px;
  }
}
.solution::after {
  position: absolute;
  content: "";
  top: 5%;
  left: 0;
  width: 220px;
  height: 600px;
  background: url(../img/accent-circle.webp) no-repeat center/cover;
}
@media screen and (max-width: 1024px) {
  .solution::after {
    width: 190px;
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .solution::after {
    top: 40%;
    width: 140px;
    height: 380px;
  }
}
.solution__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}
.solution__label {
  display: inline-block;
  background-color: #F0C040;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  position: relative;
  background: #F0C040;
  color: #0A1A3C;
}
.solution__label::after {
  position: absolute;
  content: "▼";
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #F0C040;
}
.solution__label--pain {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  background-color: #003B96;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.solution__label--pain::after {
  position: absolute;
  content: "▼";
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #003B96;
}
.solution__title {
  font-size: 2rem;
  font-weight: 700;
  color: #003B96;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .solution__title {
    font-size: 1.4rem;
  }
}
.solution__subtitle {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .solution__subtitle {
    font-size: 0.84rem;
    margin-bottom: 36px;
  }
}
.solution__diagram {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}
.solution__diagram-img {
  width: 100%;
  border-radius: 12px;
  -webkit-filter: drop-shadow(0 20px 50px rgba(10, 26, 60, 0.5));
          filter: drop-shadow(0 20px 50px rgba(10, 26, 60, 0.5));
}
.solution__hub {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: 720px;
  margin: 0 auto;
}
.solution__hub-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.solution__hub-badge {
  background: #003B96;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.solution__hub-title {
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .solution__hub-title {
    font-size: 1.5rem;
  }
}
.solution__hub-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.solution__hub-features span {
  background: rgba(240, 192, 64, 0.15);
  border: 1px solid rgba(240, 192, 64, 0.3);
  color: #F0C040;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
}
.solution__connectors {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .solution__connectors {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .solution__connectors {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.solution__connector {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.solution__connector:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.solution__connector-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}
.solution__connector-name {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.solution__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .solution__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 300px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.solution__actions a {
  min-width: 250px;
  padding: 10px 40px;
  -webkit-box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.solution__actions .btn--outline {
  background-color: #DBE6F5;
  color: #003B96;
  border: 2px solid #DBE6F5;
}
.solution .solution__image {
  background-color: #EFF6FF;
  padding: 30px 0;
  margin-top: 60px;
}
.solution .solution__image img {
  display: block;
  max-width: 800px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .solution .solution__image img {
    max-width: 600px;
  }
}

.merit {
  background: #FFFFFF;
  padding-top: 0;
  position: relative;
}
.merit::before {
  position: absolute;
  content: "";
  top: -180px;
  right: 0;
  width: 145px;
  height: 240px;
  background: url(../img/accent-dot.webp) no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .merit::before {
    width: 100px;
    height: 165px;
  }
}
@media screen and (max-width: 767px) {
  .merit::before {
    top: -100px;
    width: 60px;
    height: 100px;
  }
}
.merit__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .merit__grid {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
  }
}
@media screen and (max-width: 767px) {
  .merit__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.merit__card {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.merit__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 40px rgba(0, 59, 150, 0.12);
          box-shadow: 0 16px 40px rgba(0, 59, 150, 0.12);
  border-color: rgba(0, 59, 150, 0.25);
}
.merit__card:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.merit__card-number {
  font-size: 0.72rem;
  font-weight: 800;
  color: #003B96;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.merit__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.merit__icon img {
  width: 80%;
  aspect-ratio: 228/132;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .merit__icon img {
    width: 65%;
  }
}
.merit__card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A2340;
  margin-bottom: 10px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.merit__card-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: #F0C040;
}
@media screen and (max-width: 767px) {
  .merit__card-title br {
    display: none;
  }
}
.merit__card-text {
  font-size: 0.8rem;
  color: #666B7A;
  line-height: 1.85;
}
.merit__card-text small {
  display: block;
  font-size: 12px;
}

.case {
  padding-top: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case {
    width: 89%;
    margin-right: auto;
    margin-left: auto;
    border: 3px solid #003B96;
    border-radius: 20px;
    padding: 30px 15px;
  }
}
.case::before {
  position: absolute;
  content: "";
  top: -200px;
  right: 0;
  width: 200px;
  height: 300px;
  background: url(../img/accent-dashed.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .case::before {
    width: 180px;
    height: 265px;
  }
}
.case__header .section__title {
  text-align: left;
}
.case__header .section__lead {
  max-width: 100%;
  margin-left: 0;
  text-align: left;
}
.case__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .case__flex {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .case__flex {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__contents {
  width: calc(100% - 395px);
}
@media screen and (max-width: 1024px) {
  .case__contents {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 767px) {
  .case__contents {
    width: 100%;
  }
}
.case__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .case__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.case__case__img {
  display: block;
  width: 40px;
}
.case__case__title {
  font-size: 18px;
  margin-top: 8px;
}
.case__case__text {
  font-size: 15px;
  margin-top: 5px;
}
.case__image {
  width: 395px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .case__image {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .case__image {
    width: 70%;
  }
}

.process {
  background: #EFF6FF;
  position: relative;
}
.process::before {
  position: absolute;
  content: "";
  top: -100px;
  left: 0;
  width: 150px;
  height: 250px;
  background: url(../img/accent-dot.webp) no-repeat center/cover;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .process::before {
    width: 100px;
    height: 200px;
    background-size: contain;
  }
}
.process::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 123px;
  height: 100%;
  background: url(../img/prosess-accent.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .process::after {
    display: none;
  }
}
.process__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .process__steps {
    max-width: 600px;
  }
}
.process__steps::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 80px;
  width: 2px;
  height: 90%;
  background: url(../img/prosess-flow.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .process__steps::before {
    left: 40px;
  }
}
.process__step {
  position: relative;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding: 10px 30px;
  position: relative;
}
.process__step::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: #F0C040;
}
@media screen and (max-width: 767px) {
  .process__step {
    gap: 0;
    padding: 10px 0;
    padding-right: 15px;
  }
}
.process__step-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #F0C040;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .process__step-num {
    width: 50px;
    text-align: center;
    font-size: 1.8em;
  }
}
.process__step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #003B96;
}
@media screen and (max-width: 767px) {
  .process__step-title {
    font-size: 17px;
  }
}
.process__step-text {
  font-size: 0.84rem;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .process__step-text {
    font-size: 15px;
    line-height: 160%;
  }
}

.price {
  color: #FFFFFF;
  background: url(../img/price-bg.webp) no-repeat center/cover;
}
.price::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.price__header .price__title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .price__header .price__title {
    text-align: center;
  }
}
.price__header .section__lead {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .price__header .section__lead {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .price__header {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.price__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}
.price__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  .price__flex {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .price__flex {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .price__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: contents;
  }
}
.price__title {
  font-size: 2rem;
  font-weight: 700;
  color: #003B96;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .price__title {
    font-size: 1.4rem;
  }
}
.price__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
}
.price__actions .btn--primary {
  width: 200px;
  padding: 8px 50px;
}
@media screen and (max-width: 767px) {
  .price__actions {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.price__img {
  width: 180px;
}
@media screen and (max-width: 1024px) {
  .price__img {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .price__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.faq {
  position: relative;
}
.faq::after {
  position: absolute;
  content: "";
  bottom: -150px;
  left: 0;
  -webkit-transform: rotate(-75deg);
          transform: rotate(-75deg);
  width: 220px;
  height: 600px;
  background: url(../img/accent-circle.webp) no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .faq::after {
    width: 190px;
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .faq::after {
    bottom: -60px;
    width: 80px;
    height: 170px;
  }
}
.faq__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .faq__flex {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .faq__flex {
    display: block;
    max-width: 550px;
  }
}
.faq__header {
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .faq__header {
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .faq__header {
    max-width: 100%;
  }
}
.faq__header .section__title {
  text-align: left;
}
.faq__header .section__lead {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .faq__header .section__lead {
    margin-top: 20px;
  }
}
.faq__header .faq__actions {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__header .faq__actions {
    display: none;
  }
}
.faq__header .faq__actions .btn--primary {
  background-color: #003B96;
  color: #ffffff;
  border: none;
  padding: 10px 50px;
  margin-top: 30px;
}
.faq__list {
  width: calc(100% - 450px);
  margin: 0 auto;
  border-top: 1px solid #003B96;
}
@media screen and (max-width: 1024px) {
  .faq__list {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 767px) {
  .faq__list {
    width: 100%;
  }
}
.faq__item {
  border-bottom: 1px solid #003B96;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.faq__item.is-open .faq__question::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item.is-open .faq__answer {
  display: block;
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: #003B96;
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 16px 18px;
    font-size: 0.86rem;
  }
}
.faq__question::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230062B1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.86rem;
  color: #666B7A;
  line-height: 1.9;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    font-size: 0.84rem;
  }
}
.faq__answer-inner {
  padding: 16px 24px 20px 24px;
}
@media screen and (max-width: 767px) {
  .faq__answer-inner {
    padding: 14px 18px 16px 18px;
  }
}
.faq__item.is-open .faq__answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

.cta-bottom {
  background: url(../img/cta-bg.webp) no-repeat center/cover;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta-bottom {
    padding: 60px 0;
    padding-bottom: 30px;
  }
}
.cta-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-bottom__inner {
  background-color: #ffffff;
  width: 89%;
  padding: 35px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-bottom__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #003B96;
}
@media screen and (max-width: 767px) {
  .cta-bottom__title {
    font-size: 1.3rem;
  }
}
.cta-bottom__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .cta-bottom__desc {
    font-size: 0.84rem;
  }
}
.cta-bottom__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.cta-bottom__actions a {
  min-width: 248px;
  padding: 8px 50px;
}
.cta-bottom__actions .btn--outline {
  background-color: #003B96;
  color: #ffffff;
}
.cta-bottom small {
  color: #D2D2D2;
  display: block;
  max-width: 1100px;
  width: 89%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .cta-bottom small {
    margin-top: 10px;
  }
}

.footer {
  background: linear-gradient(-45deg, #003B96 0%, #3C9BE6 100%);
  color: #ffffff;
  font-size: 1rem;
  padding-top: 60px;
  padding-bottom: 20px;
}
.footer__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.footer__top {
  padding-bottom: 60px;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding-bottom: 15px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.footer__nav a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: #FFFFFF;
  opacity: 1;
}
.footer__nav__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__nav__sub {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
}
.footer__nav__sub li a {
  font-size: 0.875rem;
  text-decoration: underline;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
.footer__copy {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
  margin-top: 30px;
}
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.footer__policy a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__policy a:hover {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-in {
  -webkit-animation: fade-in-up 0.6s ease both;
          animation: fade-in-up 0.6s ease both;
}

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

.popup-overlay {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 2000;
  width: 340px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .popup-overlay {
    bottom: 16px;
    right: auto;
    left: 16px;
    width: calc(100% - 32px);
    max-width: 320px;
  }
}
.popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.popup {
  position: relative;
  background: #FFFFFF;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.popup__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 2px solid #003B96;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #003B96;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  z-index: 1;
}
.popup__close:hover {
  background: rgba(255, 255, 255, 0.4);
}
.popup__header {
  background: #003B96;
  padding: 22px 24px;
  text-align: center;
}
.popup__header-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
}
.popup__body {
  padding: 20px 24px 24px;
  background: #FFFFFF;
}
.popup__desc {
  font-size: 0.88rem;
  color: #1A2340;
  text-align: center;
  line-height: 1.85;
  margin-bottom: 16px;
}
.popup__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F0C040;
  color: #0A1A3C;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
  width: 100%;
}
.popup__btn:hover {
  background: #D4A800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 1;
}