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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 41);
    scroll-padding-top: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  overflow-x: clip;
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.1176470588;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #082e65;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #082e65;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.inner {
  width: 100%;
  padding-inline: 4rem;
}
@media (max-width: 1024px) {
  .inner {
    padding-inline: 3rem;
  }
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 2rem;
  }
}

.inner-box {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
}

.inner-box--narrow {
  max-width: 102.4rem;
}

.grid {
  display: grid;
  gap: 4rem;
}
@media (max-width: 768px) {
  .grid {
    gap: 2.4rem;
  }
}

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

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

@media (max-width: 768px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

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

.flex {
  display: flex;
  gap: 4rem;
}
@media (max-width: 768px) {
  .flex {
    gap: 2.4rem;
  }
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

.site-header {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 1000;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3rem;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding-block: 1rem;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo a {
  display: block;
}
.site-header__logo img {
  width: 16.9rem;
  height: auto;
}
@media (max-width: 768px) {
  .site-header__logo img {
    width: 14rem;
  }
}

.has-fixed-header .site-content {
  padding-top: 7rem;
}
@media (max-width: 768px) {
  .has-fixed-header .site-content {
    padding-top: 6rem;
  }
}

@media (max-width: 1024px) {
  .gnav {
    display: none;
  }
}
.gnav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.gnav__link {
  color: #082e65;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5rem;
  transition: opacity 0.2s;
}
.gnav__link:hover {
  opacity: 0.7;
  text-decoration: none;
}

.sticky-header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7rem;
  z-index: 1000;
  background: #082e65;
  translate: 0 -100%;
  visibility: hidden;
  transition: translate 0.3s, visibility 0.3s;
}
.sticky-header.is-visible {
  translate: 0 0;
  visibility: visible;
}
@media (max-width: 768px) {
  .sticky-header {
    height: 6rem;
  }
}
.sticky-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
}
@media (max-width: 768px) {
  .sticky-header__inner {
    height: 6rem;
  }
}
.sticky-header__logo a {
  display: block;
}
.sticky-header__logo img {
  width: 14rem;
  height: auto;
}
@media (max-width: 768px) {
  .sticky-header__logo img {
    width: 12rem;
  }
}
.sticky-header__menu {
  padding: 0.8rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sticky-header__menu:hover {
  opacity: 0.7;
}
.sticky-header__menu span {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: currentColor;
  mask: url("../img/common/icon-menu.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-menu.svg") no-repeat center/contain;
}

.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-content: center;
  background: rgba(8, 46, 101, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
body.is-nav-open .overlay-nav {
  opacity: 1;
  visibility: visible;
}
.overlay-nav__list {
  display: grid;
  gap: 2.4rem;
  text-align: center;
}
.overlay-nav__link {
  color: #fff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  transition: opacity 0.2s;
}
.overlay-nav__link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.overlay-nav__close {
  position: absolute;
  top: 2rem;
  right: 3.4rem;
  width: 4.4rem;
  height: 4.4rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.overlay-nav__close:hover {
  opacity: 0.7;
}
.overlay-nav__close::before, .overlay-nav__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 0.2rem;
  background: currentColor;
  border-radius: 0.2rem;
}
.overlay-nav__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.overlay-nav__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-nav-open .js-menu-toggle:not(.overlay-nav__close) {
  position: relative;
  z-index: 1101;
}

.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    padding: 0.8rem;
    border: 0;
    background: transparent;
    color: #082e65;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .hamburger:hover {
    opacity: 0.7;
  }
}
.hamburger__icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: currentColor;
  mask: url("../img/common/icon-menu.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-menu.svg") no-repeat center/contain;
}
body.is-nav-open .hamburger {
  color: #fff;
}

.site-footer__main {
  padding-block: 8rem 7rem;
  background: #082e65;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .site-footer__main {
    padding-block: 5rem 4rem;
  }
}
.site-footer__logo img {
  width: 21.6rem;
  height: auto;
}
@media (max-width: 768px) {
  .site-footer__logo img {
    width: 18rem;
  }
}
.site-footer__tagline {
  margin-top: 3rem;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .site-footer__tagline {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}
.site-footer__desc {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .site-footer__desc {
    font-size: 1.4rem;
  }
}
.site-footer__copy {
  background: #fff;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
    margin-top: 3rem;
  }
}
.footer-nav__link {
  position: relative;
  padding-inline: 2.8rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2;
  transition: opacity 0.2s;
}
.footer-nav__link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.footer-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 1.6rem;
  background: rgba(255, 255, 255, 0.6);
}
.footer-nav__link:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 1.6rem;
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .footer-nav__link {
    padding-inline: 1.4rem;
    font-size: 1.2rem;
    text-align: center;
  }
  .footer-nav__link:nth-child(odd)::before {
    content: none;
  }
  .footer-nav__link:last-child::after {
    content: none;
  }
}

.footer-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 8rem;
  padding-block: 1.4rem;
}
@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    gap: 1.4rem;
  }
}
.footer-bar__brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.footer-bar__logo {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.footer-bar__logo img {
  width: 15rem;
  height: auto;
}
.footer-bar__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  transition: opacity 0.2s;
}
.footer-bar__sns:hover {
  opacity: 0.6;
}
.footer-bar__sns span {
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background: currentColor;
  mask: url("../img/common/icon-x.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-x.svg") no-repeat center/contain;
}
.footer-bar__sns--note span {
  mask-image: url("../img/common/icon-note.svg");
  -webkit-mask-image: url("../img/common/icon-note.svg");
}
.footer-bar__links {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer-bar__links {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    gap: 1rem;
  }
}
.footer-bar__links a {
  color: #000;
  font-size: 1.2rem;
}
.footer-bar__links a:hover {
  text-decoration: underline;
}
.footer-bar__copyright {
  color: #000;
  font-size: 1.2rem;
  margin-left: 4rem;
}
@media (max-width: 768px) {
  .footer-bar__copyright {
    margin-left: 0;
    margin-top: 1.6rem;
    font-size: 1rem;
  }
}

.fv {
  position: relative;
  height: min(62.5vw, 103.5rem);
  min-height: 60rem;
  background: #3db7fc;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    height: auto;
    min-height: 56rem;
  }
}
.fv__bg {
  position: absolute;
  inset: 0;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__bg::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 27rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}
.fv__copy {
  position: relative;
  padding-block: 14rem 8rem;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .fv__copy {
    padding-block: 10rem 3rem;
  }
}
.fv__catch {
  color: #082e65;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1.55;
  letter-spacing: 0.24em;
}
@media (max-width: 1280px) {
  .fv__catch {
    font-size: 5.47vw;
  }
}
@media (max-width: 768px) {
  .fv__catch {
    font-size: 3.8rem;
  }
}
.fv__catch .is-small {
  font-size: 0.72em;
  letter-spacing: 0.24em;
}
.fv__catch .is-gold {
  color: #ba9574;
  font-size: 1.15em;
  letter-spacing: 0.2em;
}
.fv__catch .is-gold .is-small {
  font-size: 0.75em;
}
.fv__sub {
  margin-top: 2.4rem;
  color: #082e65;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-shadow: 0 0 0.4rem #fff, 0 0 0.8rem #fff, 0 0 1.6rem #fff, 0 0 2.4rem rgba(255, 255, 255, 0.9);
}
@media (max-width: 1280px) {
  .fv__sub {
    font-size: max(1.41vw, 12px);
  }
}
@media (max-width: 768px) {
  .fv__sub {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
}

.stats {
  position: relative;
  z-index: 1;
  margin-top: -6rem;
}
@media (max-width: 768px) {
  .stats {
    margin-top: -4rem;
  }
}
.stats__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 1rem;
  background: #082e65;
  color: #fff;
  padding-block: 2.3rem;
}
@media (max-width: 1024px) {
  .stats__box {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.6rem;
  }
}
@media (max-width: 768px) {
  .stats__box {
    padding-block: 1.6rem;
  }
}
.stats__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding-inline: 1.6rem;
}
.stats__item + .stats__item {
  border-left: 1px solid #fff;
}
@media (max-width: 1024px) {
  .stats__item + .stats__item {
    border-left: 0;
  }
  .stats__item:nth-child(even) {
    border-left: 1px solid #fff;
  }
}
.stats__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #e7c19e;
}
.stats__icon span {
  display: inline-block;
  width: 6.6rem;
  height: 6.6rem;
  background: currentColor;
  mask: url("../img/common/icon-handshake.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-handshake.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .stats__icon span {
    display: inline-block;
    width: 4.4rem;
    height: 4.4rem;
    background: currentColor;
    mask: url("../img/common/icon-handshake.svg") no-repeat center/contain;
    -webkit-mask: url("../img/common/icon-handshake.svg") no-repeat center/contain;
  }
}
.stats__icon--world span {
  mask-image: url("../img/common/icon-world.svg");
  -webkit-mask-image: url("../img/common/icon-world.svg");
}
.stats__icon--building span {
  mask-image: url("../img/common/icon-building.svg");
  -webkit-mask-image: url("../img/common/icon-building.svg");
}
.stats__icon--money span {
  mask-image: url("../img/common/icon-money.svg");
  -webkit-mask-image: url("../img/common/icon-money.svg");
}
.stats__label {
  display: block;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 1280px) {
  .stats__label {
    font-size: 1.09vw;
  }
}
@media (max-width: 1024px) {
  .stats__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .stats__label {
    font-size: 1.1rem;
  }
}
.stats__value {
  display: block;
  font-weight: 600;
  font-size: 5rem;
  line-height: 1;
  margin-top: 1rem;
}
@media (max-width: 1280px) {
  .stats__value {
    font-size: 3.91vw;
  }
}
@media (max-width: 1024px) {
  .stats__value {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .stats__value {
    font-size: 2.4rem;
  }
}
.stats__value .is-unit {
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  .stats__value .is-unit {
    font-size: 1.41vw;
  }
}
@media (max-width: 1024px) {
  .stats__value .is-unit {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .stats__value .is-unit {
    font-size: 1.1rem;
  }
}
.stats__value--md {
  font-size: 4rem;
}
@media (max-width: 1280px) {
  .stats__value--md {
    font-size: 3.13vw;
  }
}
@media (max-width: 1024px) {
  .stats__value--md {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .stats__value--md {
    font-size: 2rem;
  }
}
.stats__value--sm {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 1.2rem;
}
@media (max-width: 1280px) {
  .stats__value--sm {
    font-size: 1.41vw;
  }
}
@media (max-width: 1024px) {
  .stats__value--sm {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .stats__value--sm {
    font-size: 1.3rem;
  }
}
.stats__note {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 1280px) {
  .stats__note {
    font-size: 1.09vw;
  }
}
@media (max-width: 1024px) {
  .stats__note {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .stats__note {
    font-size: 1rem;
  }
}

.sec-head {
  text-align: center;
}
.sec-head__en {
  display: block;
  color: #082e65;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  line-height: 1;
}
.sec-head__en::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.2rem;
  margin: 2.7rem auto 0;
  background: #082e65;
}
.sec-head__ja {
  margin-top: 1.8rem;
  font-size: 3rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sec-head__ja {
    font-size: 2.4rem;
  }
}
.sec-head__ja .is-plain {
  color: #000;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .sec-head__ja .is-plain {
    font-size: 1.8rem;
  }
}
.sec-head__ja .is-gold {
  color: #ba9574;
}
.sec-head__ja .is-black {
  color: #000;
}
.sec-head__lead {
  display: inline-block;
  margin-top: 4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #000;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sec-head__lead {
    margin-top: 2.4rem;
    font-size: 1.6rem;
  }
}
.sec-head--white .sec-head__en,
.sec-head--white .sec-head__ja {
  color: #fff;
}
.sec-head--white .sec-head__en::after {
  background: #fff;
}
.sec-head--white .sec-head__lead {
  color: #fff;
  border-color: #fff;
}

.btn-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  padding: 1rem 7rem;
  border-radius: 3rem;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  transition: opacity 0.3s;
}
@media (max-width: 1280px) {
  .btn-pill {
    font-size: 1.88vw;
  }
}
@media (max-width: 768px) {
  .btn-pill {
    min-height: 5rem;
    padding: 0.8rem 4.8rem;
    font-size: 1.6rem;
  }
}
.btn-pill:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn-pill .is-sm {
  font-size: 0.75em;
}
.btn-pill__arrow {
  position: absolute;
  right: 4rem;
  top: 50%;
  translate: 0 -50%;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: currentColor;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .btn-pill__arrow {
    right: 1.6rem;
    display: inline-block;
    width: 3.2rem;
    height: 3.2rem;
    background: currentColor;
    mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
    -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  }
}
.btn-pill--cyan {
  background: #0b9ec1;
  color: #fff;
}
.btn-pill--navy {
  background: #082e65;
  color: #fff;
}
.btn-pill--white {
  background: #fff;
  color: #082e65;
}
.btn-pill--sm {
  min-height: 4rem;
  padding: 0.6rem 5rem;
  font-size: 1.6rem;
}
.btn-pill--sm .btn-pill__arrow {
  right: 2rem;
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background: currentColor;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
}

.deco-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  color: #0b9ec1;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4;
}
@media (max-width: 1280px) {
  .deco-label {
    font-size: 1.72vw;
  }
}
@media (max-width: 768px) {
  .deco-label {
    gap: 1rem;
    font-size: 1.6rem;
  }
}
.deco-label::before, .deco-label::after {
  content: "";
  width: 1px;
  height: 2.8rem;
  background: currentColor;
}
@media (max-width: 768px) {
  .deco-label::before, .deco-label::after {
    height: 2rem;
  }
}
.deco-label::before {
  rotate: -20deg;
}
.deco-label::after {
  rotate: 20deg;
}
.deco-label__text {
  margin-right: -0.39em;
}
.deco-label--white {
  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  padding: 0.4rem 1.4rem;
  border-radius: 3rem;
  background: #007fc6;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.tag--local {
  background: #3db7fc;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18.4rem;
  padding: 0 1.6rem;
  border: 2px solid #082e65;
  color: #082e65;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 4.4rem;
}
@media (max-width: 768px) {
  .label-pill {
    min-width: 14rem;
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #082e65;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}
.more-link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.more-link::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: currentColor;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
}

@media (max-width: 1024px) {
  .reason-card {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: center;
    column-gap: 2.4rem;
  }
}
@media (max-width: 768px) {
  .reason-card {
    display: block;
  }
}
.reason-card__img {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 373/220;
}
@media (max-width: 1024px) {
  .reason-card__img {
    grid-row: 1/3;
  }
}
.reason-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 2.8rem auto 0;
  padding: 0;
  background: #082e65;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
}
@media (max-width: 1280px) {
  .reason-card__label {
    font-size: 1.88vw;
  }
}
@media (max-width: 1024px) {
  .reason-card__label {
    margin: 0;
    align-self: end;
    font-size: max(2.15vw, 18px);
  }
}
@media (max-width: 768px) {
  .reason-card__label {
    margin: 1.6rem auto 0;
    align-self: auto;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.reason-card__text {
  margin-top: 2.8rem;
  text-align: justify;
}
@media (max-width: 1024px) {
  .reason-card__text {
    margin-top: 1.2rem;
    align-self: start;
  }
}
@media (max-width: 768px) {
  .reason-card__text {
    margin-top: 1.4rem;
    align-self: auto;
  }
}

@media (max-width: 1024px) {
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

.concern-row {
  display: grid;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .concern-row {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .concern-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.concern-row + .concern-row {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .concern-row + .concern-row {
    margin-top: 6rem;
  }
}
.concern-row__img {
  overflow: hidden;
}
.concern-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 620/400;
}
.concern-row--img-left {
  margin-left: calc(50% - 50vw);
  grid-template-columns: minmax(0, 1fr) 58rem;
}
@media (max-width: 1024px) {
  .concern-row--img-left {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.concern-row--img-left .concern-row__img {
  border-radius: 0;
}
.concern-row--img-right {
  margin-right: calc(50% - 50vw);
  grid-template-columns: 58rem minmax(0, 1fr);
}
@media (max-width: 1024px) {
  .concern-row--img-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.concern-row--img-right .concern-row__img {
  order: 2;
  border-radius: 0;
}
@media (max-width: 768px) {
  .concern-row--img-right .concern-row__img {
    order: 0;
  }
}
.concern-row--img-right .concern-row__body {
  order: 1;
}
@media (max-width: 768px) {
  .concern-row--img-left, .concern-row--img-right {
    margin-inline: 0;
    grid-template-columns: 1fr;
  }
  .concern-row--img-left .concern-row__img {
    margin-inline: calc(50% - 50vw) 0;
  }
  .concern-row--img-right .concern-row__img {
    margin-inline: 0 calc(50% - 50vw);
  }
}
.concern-row__lead {
  margin-top: 2.4rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .concern-row__lead {
    margin-top: 1.6rem;
    font-size: 1.8rem;
  }
}
.concern-row__list {
  margin-top: 2.4rem;
}
.concern-row__list li {
  position: relative;
  padding-left: 3.4rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
.concern-row__list li + li {
  margin-top: 1.3rem;
}
.concern-row__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #ba9574;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background: currentColor;
  mask: url("../img/common/icon-check.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-check.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .concern-row__list li {
    font-size: 1.4rem;
  }
}

.case-row {
  display: grid;
  grid-template-columns: 49.2rem 1fr;
  align-items: start;
  gap: 4rem;
}
@media (max-width: 768px) {
  .case-row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.case-row + .case-row {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .case-row + .case-row {
    margin-top: 4rem;
  }
}
.case-row__img {
  border-radius: 1rem;
  overflow: hidden;
}
.case-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 492/336;
}
.case-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.case-row__title {
  margin-top: 2rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5833333333;
}
@media (max-width: 768px) {
  .case-row__title {
    margin-top: 1.2rem;
    font-size: 2rem;
  }
}
.case-row__text {
  margin-top: 1.6rem;
}
.case-row__more {
  margin-top: auto;
  margin-left: auto;
  padding-top: 1.6rem;
}

.case-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  gap: 4rem;
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .case-btns {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 5rem;
  }
}
.case-btns__col .deco-label {
  margin-bottom: 1rem;
}

.dotted-rule {
  margin-top: 10rem;
  border: 0;
  height: 1px;
  background: repeating-linear-gradient(to right, #082e65 0 0.2rem, transparent 0.2rem 0.4rem);
}
@media (max-width: 768px) {
  .dotted-rule {
    margin-top: 6rem;
  }
}

.mission {
  text-align: center;
}
.mission__title {
  display: inline-block;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #000;
  color: #000;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4166666667;
}
@media (max-width: 768px) {
  .mission__title {
    font-size: 1.8rem;
  }
}
.mission__text {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .mission__text {
    margin-top: 2rem;
    text-align: left;
  }
}

.case-gallery {
  gap: 4rem;
}
.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 492/300;
  border-radius: 1rem;
}

.property-box {
  padding: 2rem;
  border: 1px solid #082e65;
  border-radius: 1rem;
  color: #082e65;
}
.property-box__title {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.property-box__list {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 2.25;
}
@media (max-width: 768px) {
  .property-box__list {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.cta {
  color: #fff;
}
.cta__head {
  text-align: center;
}
.cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.4rem;
  border: 1px solid #e7c19e;
  border-radius: 0.5rem;
  color: #e7c19e;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .cta__badge {
    font-size: 1.56vw;
  }
}
@media (max-width: 1024px) {
  .cta__badge {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .cta__badge {
    padding: 0.5rem 1.6rem;
    font-size: 1.4rem;
  }
}
.cta__catch {
  margin-top: 2rem;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4;
}
@media (max-width: 1280px) {
  .cta__catch {
    font-size: 2.81vw;
  }
}
@media (max-width: 1024px) {
  .cta__catch {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .cta__catch {
    margin-top: 1.6rem;
    font-size: 2rem;
  }
}
.cta__catch--lg {
  margin-top: 0.6rem;
  font-size: 4.4rem;
}
@media (max-width: 1280px) {
  .cta__catch--lg {
    font-size: 3.44vw;
  }
}
@media (max-width: 1024px) {
  .cta__catch--lg {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .cta__catch--lg {
    margin-top: 0.4rem;
    font-size: 2.4rem;
  }
}
.cta__catch .is-gold {
  color: #e7c19e;
}
.cta__btn {
  width: 59rem;
  max-width: 100%;
  margin: 3.6rem auto 0;
}
@media (max-width: 768px) {
  .cta__btn {
    width: 100%;
    margin-top: 2.4rem;
  }
}
.cta__notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.4rem;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .cta__notes {
    font-size: 1.56vw;
  }
}
@media (max-width: 1024px) {
  .cta__notes {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .cta__notes {
    gap: 1.6rem;
    margin-top: 1.6rem;
    font-size: 1.3rem;
  }
}
.cta__notes span + span {
  position: relative;
}
.cta__notes span + span::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 1.2em;
  background: currentColor;
}
@media (max-width: 768px) {
  .cta__notes span + span::before {
    left: -0.8rem;
  }
}
.cta__alert {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.6rem;
  padding: 2rem 4rem;
  border: 1px solid #ffca43;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .cta__alert {
    margin-top: 2rem;
    padding: 1.6rem 2rem;
    gap: 1.2rem;
    font-size: 1.3rem;
  }
}
.cta__alert::before {
  content: "";
  flex-shrink: 0;
  color: #ffca43;
  display: inline-block;
  width: 5.6rem;
  height: 5.6rem;
  background: currentColor;
  mask: url("../img/common/icon-alert.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-alert.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .cta__alert::before {
    display: inline-block;
    width: 3.6rem;
    height: 3.6rem;
    background: currentColor;
    mask: url("../img/common/icon-alert.svg") no-repeat center/contain;
    -webkit-mask: url("../img/common/icon-alert.svg") no-repeat center/contain;
  }
}

.column-slider {
  overflow: hidden;
}
.column-slider .swiper-slide {
  width: 36rem;
  height: auto;
}
@media (max-width: 768px) {
  .column-slider .swiper-slide {
    width: 30rem;
  }
}

.column-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 2rem 2rem 1.6rem;
  border-radius: 1rem;
  background: #fff;
  transition: opacity 0.3s;
}
.column-card:hover {
  opacity: 0.8;
  text-decoration: none;
}
.column-card__img {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 320/180;
  background: #d9d9d9;
}
.column-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  margin-top: 2rem;
}
.column-card__date {
  color: #777;
  font-size: 1.2rem;
  line-height: 1;
}
.column-card__title {
  margin-top: 1.6rem;
  color: #000;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.column-card__excerpt {
  margin-top: 1rem;
  color: #000;
  font-size: 1.4rem;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.column-card__arrow {
  margin-top: auto;
  margin-left: auto;
  padding-top: 1rem;
  color: #082e65;
}
.column-card__arrow span {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: currentColor;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
}

.flow-band {
  position: relative;
  background: #082e65;
  overflow: hidden;
}
.flow-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top/flow-pattern.webp") center/cover no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.flow-band > * {
  position: relative;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.flow-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2rem;
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .flow-card {
    padding: 1.6rem;
  }
}
.flow-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #082e65;
}
.flow-card__icon span {
  display: inline-block;
  width: 6rem;
  height: 6rem;
  background: currentColor;
  mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .flow-card__icon span {
    display: inline-block;
    width: 4.4rem;
    height: 4.4rem;
    background: currentColor;
    mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
    -webkit-mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
  }
}
.flow-card__icon--search span {
  mask-image: url("../img/common/icon-home-search.svg");
  -webkit-mask-image: url("../img/common/icon-home-search.svg");
}
.flow-card__icon--contract span {
  mask-image: url("../img/common/icon-contract.svg");
  -webkit-mask-image: url("../img/common/icon-contract.svg");
}
.flow-card__icon--money span {
  mask-image: url("../img/common/icon-money.svg");
  -webkit-mask-image: url("../img/common/icon-money.svg");
}
.flow-card__icon--alert span {
  mask-image: url("../img/common/icon-alert.svg");
  -webkit-mask-image: url("../img/common/icon-alert.svg");
}
.flow-card__body {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid #d5d5d5;
}
@media (max-width: 768px) {
  .flow-card__body {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
}
.flow-card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5rem;
  color: #ba9574;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .flow-card__title {
    min-height: 0;
    font-size: 1.6rem;
  }
}
.flow-card__title--navy {
  color: #082e65;
}
.flow-card__num {
  flex-shrink: 0;
  margin-right: 0.6rem;
}
.flow-card__title span + span {
  text-align: left;
}
.flow-card .is-paren {
  display: inline-block;
  margin-left: -0.4em;
}
.flow-card__text {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.75;
  text-align: left;
}
@media (max-width: 768px) {
  .flow-card__text {
    font-size: 1.4rem;
  }
}
.flow-card--wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 9.6rem 1fr;
  align-items: center;
  min-height: 10rem;
  padding: 2.4rem 3rem 2.4rem 0;
  background: transparent;
  border: 1px solid #ffca43;
  text-align: left;
}
@media (max-width: 768px) {
  .flow-card--wide {
    grid-template-columns: 7.2rem 1fr;
    padding: 1.6rem 1.6rem 1.6rem 0;
  }
}
.flow-card--wide .flow-card__icon {
  color: #ffca43;
}
.flow-card--wide .flow-card__body {
  margin-top: 0;
  padding-top: 0;
  padding-left: 3rem;
  border-top: 0;
  border-left: 1px solid #ffca43;
}
@media (max-width: 768px) {
  .flow-card--wide .flow-card__body {
    padding-left: 1.6rem;
  }
}
.flow-card--wide .flow-card__title {
  justify-content: flex-start;
  min-height: 0;
  color: #ffca43;
}
.flow-card--wide .flow-card__title .is-sub {
  font-size: 1.4rem;
}
.flow-card--wide .flow-card__text {
  color: #fff;
}

.faq__item {
  border-bottom: 1px dashed #082e65;
}
.faq__item:first-child {
  border-top: 1px dashed #082e65;
}
.faq__q {
  display: grid;
  grid-template-columns: 4rem 1fr 4rem;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 3rem 0;
  border: 0;
  background: transparent;
  color: #082e65;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__q {
    grid-template-columns: 3rem 1fr 3rem;
    gap: 1.2rem;
    padding: 2rem 0;
    font-size: 1.6rem;
  }
}
.faq__q::before {
  content: "";
  color: #082e65;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: currentColor;
  mask: url("../img/common/icon-faq.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-faq.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .faq__q::before {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: currentColor;
    mask: url("../img/common/icon-faq.svg") no-repeat center/contain;
    -webkit-mask: url("../img/common/icon-faq.svg") no-repeat center/contain;
  }
}
.faq__toggle {
  position: relative;
  width: 4rem;
  height: 4rem;
  color: #082e65;
}
@media (max-width: 768px) {
  .faq__toggle {
    width: 3rem;
    height: 3rem;
  }
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: currentColor;
  border-radius: 0.2rem;
  transition: transform 0.3s;
}
.faq__toggle::before {
  width: 2.2rem;
  height: 0.2rem;
}
.faq__toggle::after {
  width: 0.2rem;
  height: 2.2rem;
}
.is-open .faq__toggle::after {
  transform: rotate(90deg);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.faq__a > div {
  overflow: hidden;
}
.faq__a p {
  padding: 0 0 3rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .faq__a p {
    padding: 0 0 2rem;
    font-size: 1.4rem;
  }
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.contact-grid {
  gap: 3rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 22rem;
  padding: 3rem 4rem;
  border-radius: 2rem;
  background: #f0f5f8;
  text-align: center;
}
@media (max-width: 1024px) {
  .contact-block {
    padding-inline: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-block {
    min-height: 0;
    padding: 2.4rem 2rem;
  }
}
.contact-block__note {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .contact-block__note {
    font-size: max(1.25vw, 12px);
  }
}
@media (max-width: 768px) {
  .contact-block__note {
    font-size: 1.4rem;
  }
}
.contact-block--cyan {
  background: #0b9ec1;
}
.contact-block--line {
  background: #06c755;
}
.contact-block--cyan, .contact-block--line {
  color: #fff;
}
.contact-block--cyan .contact-block__note, .contact-block--line .contact-block__note {
  color: #fff;
}
.contact-block--cyan .contact-block__title, .contact-block--line .contact-block__title {
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 1280px) {
  .contact-block--cyan .contact-block__title, .contact-block--line .contact-block__title {
    font-size: 2.34vw;
  }
}
@media (max-width: 768px) {
  .contact-block--cyan .contact-block__title, .contact-block--line .contact-block__title {
    font-size: 2.4rem;
  }
}
.contact-block--cyan .btn-pill--white {
  color: #0b9ec1;
}
.contact-block--line .btn-pill--white {
  color: #06c755;
}
.contact-block__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
  color: #082e65;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  .contact-block__title {
    font-size: 1.88vw;
  }
}
@media (max-width: 768px) {
  .contact-block__title {
    font-size: 2rem;
  }
}
.contact-block__title::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 3.2rem;
  height: 4rem;
  background: currentColor;
  mask: url("../img/common/icon-phone.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-phone.svg") no-repeat center/contain;
}
.contact-block__title--edit::before {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: currentColor;
  mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
}
.contact-block__title--line::before {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: currentColor;
  mask: url("../img/common/icon-line.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-line.svg") no-repeat center/contain;
}
.contact-block__tel {
  margin-top: 1rem;
  color: #082e65;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.contact-block__tel:hover {
  text-decoration: none;
}
@media (max-width: 1280px) {
  .contact-block__tel {
    font-size: 3.13vw;
  }
}
@media (max-width: 768px) {
  .contact-block__tel {
    font-size: 3.2rem;
  }
}
.contact-block__hours {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.contact-block__btn {
  width: 100%;
  max-width: 30rem;
  margin-top: 2rem;
}

.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .side-tab {
    top: auto;
    bottom: 0;
    translate: 0 0;
    flex-direction: row;
    gap: 0;
    width: 100%;
  }
}
.side-tab__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 8.1rem;
  height: 8rem;
  border: 1px solid #e5eaf0;
  border-right: 0;
  border-radius: 1rem 0 0 1rem;
  background: #fff;
  color: #082e65;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  transition: background-color 0.2s;
}
.side-tab__link:hover {
  background: #e8f6ff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .side-tab__link {
    flex: 1;
    width: auto;
    height: 6rem;
    gap: 0.6rem;
    border-radius: 0;
    border: 0;
    border-top: 1px solid #e5eaf0;
    box-shadow: none;
    font-size: 1.1rem;
  }
  .side-tab__link + .side-tab__link {
    border-left: 1px solid #e5eaf0;
  }
}
.side-tab__link span {
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background: currentColor;
  mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .side-tab__link span {
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background: currentColor;
    mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
    -webkit-mask: url("../img/common/icon-edit.svg") no-repeat center/contain;
  }
}
.side-tab__link--diag span {
  display: inline-block;
  width: 3.75rem;
  height: 3.33rem;
  background: currentColor;
  mask: url("../img/common/icon-edit-trim.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-edit-trim.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .side-tab__link--diag span {
    width: 1.95rem;
    height: 1.73rem;
  }
}
.side-tab__link--tel span {
  mask-image: url("../img/common/icon-phone.svg");
  -webkit-mask-image: url("../img/common/icon-phone.svg");
  width: 2rem;
}
@media (max-width: 768px) {
  .side-tab__link--tel span {
    width: 1.6rem;
  }
}
.side-tab__link--line span {
  mask-image: url("../img/common/icon-line.svg");
  -webkit-mask-image: url("../img/common/icon-line.svg");
}

@media (max-width: 768px) {
  body {
    padding-bottom: 6rem;
  }
}
.article-card {
  background: #fff;
  border-radius: 1rem;
  padding: 6rem 6rem 10rem;
}
@media (max-width: 768px) {
  .article-card {
    padding: 3rem 2rem 5rem;
  }
}
.article-card__head {
  padding-bottom: 3rem;
  background-image: repeating-linear-gradient(to right, #bebebe 0 0.2rem, transparent 0.2rem 0.5rem);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}
@media (max-width: 768px) {
  .article-card__head {
    padding-bottom: 1.6rem;
  }
}
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.article-card__date {
  color: #777;
  font-size: 1.4rem;
  line-height: 1;
}
.article-card__title {
  margin-top: 2rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .article-card__title {
    margin-top: 1.2rem;
    font-size: 1.7rem;
  }
}

.entry-content {
  display: flow-root;
  margin-top: 6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  --wp--style--gallery-gap-default: 4rem;
}
@media (max-width: 768px) {
  .entry-content {
    margin-top: 3rem;
    font-size: 1.4rem;
    --wp--style--gallery-gap-default: 1.6rem;
  }
}
.entry-content > * + * {
  margin-top: 4rem;
}
.entry-content > p + p {
  margin-top: 2.8rem;
}
.entry-content h2,
.entry-content h3 {
  margin-top: 6rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media (max-width: 768px) {
  .entry-content h2,
  .entry-content h3 {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
}
.entry-content h4 {
  margin-top: 4rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #000;
}
.entry-content :is(h2, h3, h4) + * {
  margin-top: 2rem;
}
.entry-content > :first-child {
  margin-top: 0;
}
.entry-content :is(strong, b) {
  background: #082e65;
  color: #fff;
  font-weight: 500;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.entry-content a {
  color: #082e65;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.entry-content a:hover {
  opacity: 0.75;
}
.entry-content a :is(strong, b),
.entry-content :is(strong, b) a {
  background: none;
  color: inherit;
}
.entry-content .is-note,
.entry-content small,
.entry-content figcaption {
  font-size: 1.2rem;
  color: #777;
}
.entry-content figcaption {
  margin-top: 0.8rem;
  text-align: center;
}
.entry-content ul,
.entry-content ol {
  padding-left: 2.4rem;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content li + li {
  margin-top: 0.8rem;
}
.entry-content img {
  display: block;
  width: 100%;
  height: auto;
}
.entry-content figure {
  margin-inline: 0;
  margin-block-end: 0;
}
.entry-content blockquote {
  margin: 0;
  padding: 0.8rem 2rem;
  border-left: 3px solid #082e65;
}

.legal-card {
  background: #fff;
  border-radius: 1rem;
  padding: 10rem 6rem;
}
@media (max-width: 768px) {
  .legal-card {
    padding: 5rem 2rem;
  }
}

.entry-content--legal {
  margin-top: 0;
}
.entry-content--legal > * + * {
  margin-top: 0;
}
.entry-content--legal > p + p {
  margin-top: 0;
}
.entry-content--legal h2,
.entry-content--legal h3 {
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
}
.entry-content--legal :is(h2, h3, h4) + * {
  margin-top: 0;
}
.entry-content--legal ul {
  list-style: none;
  padding-left: 0;
}
.entry-content--legal ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.entry-content--legal ul li::before {
  content: "・";
}
.entry-content--legal li + li {
  margin-top: 0;
}
.entry-content--legal .has-text-align-right {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .entry-content--legal .has-text-align-right {
    margin-bottom: 3rem;
  }
}

.case-slider {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .case-slider {
    margin-top: 3rem;
  }
}
.case-slider__main {
  overflow: hidden;
}
.case-slider__main img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7760314342;
  object-fit: cover;
}
.case-slider__thumbs {
  margin-top: 2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .case-slider__thumbs {
    margin-top: 1rem;
  }
}
.case-slider__thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.case-slider__thumbs .swiper-slide:hover, .case-slider__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.case-slider__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7777777778;
  object-fit: cover;
}

.case-card {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 27.5rem minmax(0, 1fr);
  grid-template-areas: "img head" "text text";
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  color: #000;
  transition: background-color 0.2s;
}
.case-card:hover {
  background: #e8f6ff;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .case-card {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "head" "text";
  }
}
.case-card__img {
  grid-area: img;
}
.case-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7741935484;
  object-fit: cover;
  border-radius: 1rem;
}
.case-card__head {
  grid-area: head;
}
.case-card__head .tag {
  display: flex;
  width: fit-content;
}
.case-card__title {
  margin-top: 2rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .case-card__title {
    margin-top: 1.2rem;
  }
}
.case-card__text {
  grid-area: text;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .case-card__text {
    padding-right: 4.4rem;
  }
}
@media (max-width: 768px) {
  .case-card__text {
    font-size: 1.4rem;
  }
}
.case-card__arrow {
  position: absolute;
  right: 2rem;
  top: 14.5rem;
  color: #082e65;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: currentColor;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
}
@media (max-width: 1024px) {
  .case-card__arrow {
    top: auto;
    bottom: 2rem;
  }
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #082e65;
  border-radius: 0.8rem;
  background: #fff;
  color: #082e65;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  transition: opacity 0.3s;
}
.pagination .page-numbers:hover {
  opacity: 0.7;
  text-decoration: none;
}
.pagination .page-numbers.current {
  background: #082e65;
  color: #fff;
}
.pagination .page-numbers.dots {
  width: auto;
  border: none;
  background: none;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 3rem;
  padding: 0.4rem 2rem;
  border-radius: 3rem;
  background: #082e65;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  transition: opacity 0.3s;
}
.btn-back:hover {
  opacity: 0.8;
  text-decoration: none;
}

.column-cards {
  row-gap: 6rem;
}
@media (max-width: 1024px) {
  .column-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .column-cards {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}

.contact-form {
  font-size: 1.6rem;
  line-height: 1.75;
}
.contact-form .req {
  color: #e40000;
}
.contact-form label,
.contact-form .form-label {
  display: block;
  margin: 0;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 6rem;
}
@media (max-width: 768px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}
.contact-form .form-grid + .form-field,
.contact-form .form-field + .form-field {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .contact-form .form-grid + .form-field,
  .contact-form .form-field + .form-field {
    margin-top: 3rem;
  }
}
.contact-form .form-grid > .form-field {
  margin-top: 0;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 1rem;
}
.contact-form .wpcf7-form-control-wrap:has(.wpcf7-checkbox), .contact-form .wpcf7-form-control-wrap:has(textarea) {
  margin-top: 2rem;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email] {
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
  border: 1px solid #082e65;
  border-radius: 2rem;
  background: #fff;
  font-size: 1.4rem;
}
.contact-form textarea {
  display: block;
  width: 100%;
  height: 20rem;
  padding: 2rem 3rem;
  border: 1px solid #082e65;
  border-radius: 2rem;
  background: #fff;
  font-size: 1.4rem;
  line-height: 2;
  resize: vertical;
}
.contact-form ::placeholder {
  color: #828282;
}
.contact-form .wpcf7-list-item {
  margin: 0 4rem 0 0;
}
.contact-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.contact-form input[type=checkbox] {
  appearance: none;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin: 0;
  border: 1px solid #082e65;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.contact-form input[type=checkbox]:checked {
  background-image: radial-gradient(circle, #082e65 0 0.7rem, transparent 0.7rem);
}
.contact-form .form-note {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 2.3333333333;
}
.contact-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.contact-form .wpcf7-acceptance a {
  color: #082e65;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.contact-form .wpcf7-acceptance a:hover {
  opacity: 0.75;
}
.contact-form .form-policy {
  height: 30rem;
  margin-top: 2rem;
  padding: 2rem 3rem;
  overflow-y: auto;
  border: 1px solid #082e65;
  background: #fff;
  font-size: 1.4rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .contact-form .form-policy {
    padding: 1.5rem 1.5rem;
  }
}
.contact-form .form-policy p {
  margin: 0;
}
.contact-form .form-submit {
  position: relative;
  margin-top: 6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-form .form-submit {
    margin-top: 3rem;
  }
}
.contact-form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  margin: 0 0 0 1rem;
}
.contact-form input[type=submit] {
  width: 24.1rem;
  height: 4.3rem;
  border: 0;
  border-radius: 4rem;
  background: #082e65;
  color: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact-form input[type=submit]:hover {
  opacity: 0.8;
}
.contact-form .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  color: #e40000;
  font-size: 1.2rem;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 4rem 0 0;
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
}

.thanks {
  text-align: center;
}
.thanks__title {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.6;
  color: #082e65;
}
@media (max-width: 768px) {
  .thanks__title {
    font-size: 2.4rem;
  }
}
.thanks__lead {
  margin-top: 4rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .thanks__lead {
    margin-top: 2rem;
    text-align: left;
  }
}
.thanks__links {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .thanks__links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}
.thanks__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39.2rem;
  max-width: 100%;
  height: 4.3rem;
  border-radius: 4rem;
  background: #082e65;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}
.thanks__btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.thanks__btn span {
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background: currentColor;
  mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-arrow.svg") no-repeat center/contain;
}

.assessment-card {
  border-radius: 3rem;
}

.assessment__step {
  display: none;
}
.assessment__step.is-active {
  display: block;
  animation: assessment-in 0.35s ease-out;
}
.assessment__q {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #082e65;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .assessment__q {
    gap: 0.8rem;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.assessment__q-icon {
  flex-shrink: 0;
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  background: currentColor;
  mask: url("../img/common/icon-question.svg") no-repeat center/contain;
  -webkit-mask: url("../img/common/icon-question.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .assessment__q-icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.assessment__options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 82.4rem;
  max-width: 100%;
  margin: 6rem auto 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .assessment__options {
    gap: 1.5rem;
    margin-top: 3rem;
  }
}
.assessment__option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 6.2rem;
  padding: 0.9rem 4rem;
  border: 1px solid #082e65;
  border-radius: 2rem;
  background: #fff;
  color: #082e65;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.1;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}
.assessment__option:hover {
  background: #e8f6ff;
}
@media (max-width: 768px) {
  .assessment__option {
    min-height: 5rem;
    padding: 0.8rem 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.assessment__option-label {
  line-height: 1.4;
}
.assessment__option-note {
  margin-top: 0;
  color: #777;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .assessment__option-note {
    font-size: 1.2rem;
  }
}

@keyframes assessment-in {
  from {
    opacity: 0;
    translate: 0 1rem;
  }
}
.assessment-form .form-field {
  width: 43.15rem;
  max-width: 100%;
  margin-inline: auto;
}
.assessment-form .form-field + .form-field {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .assessment-form .form-field + .form-field {
    margin-top: 2.5rem;
  }
}
.assessment-form .form-field label {
  color: #082e65;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4;
}
.assessment-form .req {
  font-size: 1.4rem;
}
.assessment-form .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}
.assessment-form input[type=text],
.assessment-form input[type=tel],
.assessment-form input[type=email] {
  font-size: 1.6rem;
}
.assessment-form ::placeholder {
  color: #ccc;
}
.assessment-form .form-submit {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .assessment-form .form-submit {
    margin-top: 4rem;
  }
}

.assessment-thanks {
  text-align: center;
}
.assessment-thanks p {
  color: #082e65;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.1;
}
@media (max-width: 768px) {
  .assessment-thanks p {
    font-size: 1.5rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--anim-delay, 0s);
  }
  [data-anim=fade-up] {
    transform: translateY(3rem);
  }
  [data-anim].is-inview {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .fv__bg img {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fv__catch,
  .fv__sub,
  .stats__box {
    opacity: 0;
    transform: translateY(3rem);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .fv__catch {
    transition-delay: 0.5s;
  }
  .fv__sub {
    transition-delay: 0.75s;
  }
  .stats__box {
    transition-delay: 1.05s;
  }
  .is-loaded .fv__bg img,
  .is-loaded .fv__catch,
  .is-loaded .fv__sub,
  .is-loaded .stats__box {
    opacity: 1;
    transform: none;
  }
}
.m-0 {
  margin: 0rem;
}

.m-4 {
  margin: 0.4rem;
}

.m-8 {
  margin: 0.8rem;
}

.m-12 {
  margin: 1.2rem;
}

.m-16 {
  margin: 1.6rem;
}

.m-20 {
  margin: 2rem;
}

.m-24 {
  margin: 2.4rem;
}

.m-30 {
  margin: 3rem;
}

.m-40 {
  margin: 4rem;
}

.m-50 {
  margin: 5rem;
}

.m-60 {
  margin: 6rem;
}

.m-80 {
  margin: 8rem;
}

.m-100 {
  margin: 10rem;
}

.m-120 {
  margin: 12rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-4 {
  margin-top: 0.4rem;
}

.mt-8 {
  margin-top: 0.8rem;
}

.mt-12 {
  margin-top: 1.2rem;
}

.mt-16 {
  margin-top: 1.6rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-24 {
  margin-top: 2.4rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-40 {
  margin-top: 4rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mt-60 {
  margin-top: 6rem;
}

.mt-80 {
  margin-top: 8rem;
}

.mt-100 {
  margin-top: 10rem;
}

.mt-120 {
  margin-top: 12rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mr-4 {
  margin-right: 0.4rem;
}

.mr-8 {
  margin-right: 0.8rem;
}

.mr-12 {
  margin-right: 1.2rem;
}

.mr-16 {
  margin-right: 1.6rem;
}

.mr-20 {
  margin-right: 2rem;
}

.mr-24 {
  margin-right: 2.4rem;
}

.mr-30 {
  margin-right: 3rem;
}

.mr-40 {
  margin-right: 4rem;
}

.mr-50 {
  margin-right: 5rem;
}

.mr-60 {
  margin-right: 6rem;
}

.mr-80 {
  margin-right: 8rem;
}

.mr-100 {
  margin-right: 10rem;
}

.mr-120 {
  margin-right: 12rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-4 {
  margin-bottom: 0.4rem;
}

.mb-8 {
  margin-bottom: 0.8rem;
}

.mb-12 {
  margin-bottom: 1.2rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mb-60 {
  margin-bottom: 6rem;
}

.mb-80 {
  margin-bottom: 8rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

.mb-120 {
  margin-bottom: 12rem;
}

.ml-0 {
  margin-left: 0rem;
}

.ml-4 {
  margin-left: 0.4rem;
}

.ml-8 {
  margin-left: 0.8rem;
}

.ml-12 {
  margin-left: 1.2rem;
}

.ml-16 {
  margin-left: 1.6rem;
}

.ml-20 {
  margin-left: 2rem;
}

.ml-24 {
  margin-left: 2.4rem;
}

.ml-30 {
  margin-left: 3rem;
}

.ml-40 {
  margin-left: 4rem;
}

.ml-50 {
  margin-left: 5rem;
}

.ml-60 {
  margin-left: 6rem;
}

.ml-80 {
  margin-left: 8rem;
}

.ml-100 {
  margin-left: 10rem;
}

.ml-120 {
  margin-left: 12rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.mx-4 {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.mx-8 {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.mx-12 {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.mx-16 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.mx-20 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-24 {
  margin-left: 2.4rem;
  margin-right: 2.4rem;
}

.mx-30 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-40 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-50 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-60 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mx-80 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.mx-100 {
  margin-left: 10rem;
  margin-right: 10rem;
}

.mx-120 {
  margin-left: 12rem;
  margin-right: 12rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.my-4 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.my-8 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.my-12 {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.my-16 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.my-20 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-24 {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.my-30 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-40 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-50 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-60 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-80 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.my-100 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.my-120 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.p-0 {
  padding: 0rem;
}

.p-4 {
  padding: 0.4rem;
}

.p-8 {
  padding: 0.8rem;
}

.p-12 {
  padding: 1.2rem;
}

.p-16 {
  padding: 1.6rem;
}

.p-20 {
  padding: 2rem;
}

.p-24 {
  padding: 2.4rem;
}

.p-30 {
  padding: 3rem;
}

.p-40 {
  padding: 4rem;
}

.p-50 {
  padding: 5rem;
}

.p-60 {
  padding: 6rem;
}

.p-80 {
  padding: 8rem;
}

.p-100 {
  padding: 10rem;
}

.p-120 {
  padding: 12rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pt-4 {
  padding-top: 0.4rem;
}

.pt-8 {
  padding-top: 0.8rem;
}

.pt-12 {
  padding-top: 1.2rem;
}

.pt-16 {
  padding-top: 1.6rem;
}

.pt-20 {
  padding-top: 2rem;
}

.pt-24 {
  padding-top: 2.4rem;
}

.pt-30 {
  padding-top: 3rem;
}

.pt-40 {
  padding-top: 4rem;
}

.pt-50 {
  padding-top: 5rem;
}

.pt-60 {
  padding-top: 6rem;
}

.pt-80 {
  padding-top: 8rem;
}

.pt-100 {
  padding-top: 10rem;
}

.pt-120 {
  padding-top: 12rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pr-4 {
  padding-right: 0.4rem;
}

.pr-8 {
  padding-right: 0.8rem;
}

.pr-12 {
  padding-right: 1.2rem;
}

.pr-16 {
  padding-right: 1.6rem;
}

.pr-20 {
  padding-right: 2rem;
}

.pr-24 {
  padding-right: 2.4rem;
}

.pr-30 {
  padding-right: 3rem;
}

.pr-40 {
  padding-right: 4rem;
}

.pr-50 {
  padding-right: 5rem;
}

.pr-60 {
  padding-right: 6rem;
}

.pr-80 {
  padding-right: 8rem;
}

.pr-100 {
  padding-right: 10rem;
}

.pr-120 {
  padding-right: 12rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pb-4 {
  padding-bottom: 0.4rem;
}

.pb-8 {
  padding-bottom: 0.8rem;
}

.pb-12 {
  padding-bottom: 1.2rem;
}

.pb-16 {
  padding-bottom: 1.6rem;
}

.pb-20 {
  padding-bottom: 2rem;
}

.pb-24 {
  padding-bottom: 2.4rem;
}

.pb-30 {
  padding-bottom: 3rem;
}

.pb-40 {
  padding-bottom: 4rem;
}

.pb-50 {
  padding-bottom: 5rem;
}

.pb-60 {
  padding-bottom: 6rem;
}

.pb-80 {
  padding-bottom: 8rem;
}

.pb-100 {
  padding-bottom: 10rem;
}

.pb-120 {
  padding-bottom: 12rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pl-4 {
  padding-left: 0.4rem;
}

.pl-8 {
  padding-left: 0.8rem;
}

.pl-12 {
  padding-left: 1.2rem;
}

.pl-16 {
  padding-left: 1.6rem;
}

.pl-20 {
  padding-left: 2rem;
}

.pl-24 {
  padding-left: 2.4rem;
}

.pl-30 {
  padding-left: 3rem;
}

.pl-40 {
  padding-left: 4rem;
}

.pl-50 {
  padding-left: 5rem;
}

.pl-60 {
  padding-left: 6rem;
}

.pl-80 {
  padding-left: 8rem;
}

.pl-100 {
  padding-left: 10rem;
}

.pl-120 {
  padding-left: 12rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.px-4 {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.px-8 {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.px-12 {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.px-16 {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.px-20 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-24 {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.px-30 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-40 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-50 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-60 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-80 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.px-100 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.px-120 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.py-4 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.py-8 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.py-12 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.py-16 {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.py-20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-24 {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.py-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-40 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-50 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-60 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-80 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-100 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.py-120 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.fz-12 {
  font-size: 1.2rem;
}

.fz-13 {
  font-size: 1.3rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-20 {
  font-size: 2rem;
}

.fz-24 {
  font-size: 2.4rem;
}

.fz-28 {
  font-size: 2.8rem;
}

.fz-30 {
  font-size: 3rem;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-auto {
  width: auto;
}

@media (max-width: 768px) {
  .m-0-sp {
    margin: 0rem;
  }
  .m-4-sp {
    margin: 0.4rem;
  }
  .m-8-sp {
    margin: 0.8rem;
  }
  .m-12-sp {
    margin: 1.2rem;
  }
  .m-16-sp {
    margin: 1.6rem;
  }
  .m-20-sp {
    margin: 2rem;
  }
  .m-24-sp {
    margin: 2.4rem;
  }
  .m-30-sp {
    margin: 3rem;
  }
  .m-40-sp {
    margin: 4rem;
  }
  .m-50-sp {
    margin: 5rem;
  }
  .m-60-sp {
    margin: 6rem;
  }
  .m-80-sp {
    margin: 8rem;
  }
  .m-100-sp {
    margin: 10rem;
  }
  .m-120-sp {
    margin: 12rem;
  }
  .mt-0-sp {
    margin-top: 0rem;
  }
  .mt-4-sp {
    margin-top: 0.4rem;
  }
  .mt-8-sp {
    margin-top: 0.8rem;
  }
  .mt-12-sp {
    margin-top: 1.2rem;
  }
  .mt-16-sp {
    margin-top: 1.6rem;
  }
  .mt-20-sp {
    margin-top: 2rem;
  }
  .mt-24-sp {
    margin-top: 2.4rem;
  }
  .mt-30-sp {
    margin-top: 3rem;
  }
  .mt-40-sp {
    margin-top: 4rem;
  }
  .mt-50-sp {
    margin-top: 5rem;
  }
  .mt-60-sp {
    margin-top: 6rem;
  }
  .mt-80-sp {
    margin-top: 8rem;
  }
  .mt-100-sp {
    margin-top: 10rem;
  }
  .mt-120-sp {
    margin-top: 12rem;
  }
  .mr-0-sp {
    margin-right: 0rem;
  }
  .mr-4-sp {
    margin-right: 0.4rem;
  }
  .mr-8-sp {
    margin-right: 0.8rem;
  }
  .mr-12-sp {
    margin-right: 1.2rem;
  }
  .mr-16-sp {
    margin-right: 1.6rem;
  }
  .mr-20-sp {
    margin-right: 2rem;
  }
  .mr-24-sp {
    margin-right: 2.4rem;
  }
  .mr-30-sp {
    margin-right: 3rem;
  }
  .mr-40-sp {
    margin-right: 4rem;
  }
  .mr-50-sp {
    margin-right: 5rem;
  }
  .mr-60-sp {
    margin-right: 6rem;
  }
  .mr-80-sp {
    margin-right: 8rem;
  }
  .mr-100-sp {
    margin-right: 10rem;
  }
  .mr-120-sp {
    margin-right: 12rem;
  }
  .mb-0-sp {
    margin-bottom: 0rem;
  }
  .mb-4-sp {
    margin-bottom: 0.4rem;
  }
  .mb-8-sp {
    margin-bottom: 0.8rem;
  }
  .mb-12-sp {
    margin-bottom: 1.2rem;
  }
  .mb-16-sp {
    margin-bottom: 1.6rem;
  }
  .mb-20-sp {
    margin-bottom: 2rem;
  }
  .mb-24-sp {
    margin-bottom: 2.4rem;
  }
  .mb-30-sp {
    margin-bottom: 3rem;
  }
  .mb-40-sp {
    margin-bottom: 4rem;
  }
  .mb-50-sp {
    margin-bottom: 5rem;
  }
  .mb-60-sp {
    margin-bottom: 6rem;
  }
  .mb-80-sp {
    margin-bottom: 8rem;
  }
  .mb-100-sp {
    margin-bottom: 10rem;
  }
  .mb-120-sp {
    margin-bottom: 12rem;
  }
  .ml-0-sp {
    margin-left: 0rem;
  }
  .ml-4-sp {
    margin-left: 0.4rem;
  }
  .ml-8-sp {
    margin-left: 0.8rem;
  }
  .ml-12-sp {
    margin-left: 1.2rem;
  }
  .ml-16-sp {
    margin-left: 1.6rem;
  }
  .ml-20-sp {
    margin-left: 2rem;
  }
  .ml-24-sp {
    margin-left: 2.4rem;
  }
  .ml-30-sp {
    margin-left: 3rem;
  }
  .ml-40-sp {
    margin-left: 4rem;
  }
  .ml-50-sp {
    margin-left: 5rem;
  }
  .ml-60-sp {
    margin-left: 6rem;
  }
  .ml-80-sp {
    margin-left: 8rem;
  }
  .ml-100-sp {
    margin-left: 10rem;
  }
  .ml-120-sp {
    margin-left: 12rem;
  }
  .mx-0-sp {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .mx-4-sp {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
  .mx-8-sp {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
  .mx-12-sp {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }
  .mx-16-sp {
    margin-left: 1.6rem;
    margin-right: 1.6rem;
  }
  .mx-20-sp {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .mx-24-sp {
    margin-left: 2.4rem;
    margin-right: 2.4rem;
  }
  .mx-30-sp {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .mx-40-sp {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .mx-50-sp {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .mx-60-sp {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .mx-80-sp {
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .mx-100-sp {
    margin-left: 10rem;
    margin-right: 10rem;
  }
  .mx-120-sp {
    margin-left: 12rem;
    margin-right: 12rem;
  }
  .my-0-sp {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
  .my-4-sp {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
  .my-8-sp {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .my-12-sp {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .my-16-sp {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .my-20-sp {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .my-24-sp {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .my-30-sp {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .my-40-sp {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .my-50-sp {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .my-60-sp {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .my-80-sp {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
  .my-100-sp {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
  .my-120-sp {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
  .p-0-sp {
    padding: 0rem;
  }
  .p-4-sp {
    padding: 0.4rem;
  }
  .p-8-sp {
    padding: 0.8rem;
  }
  .p-12-sp {
    padding: 1.2rem;
  }
  .p-16-sp {
    padding: 1.6rem;
  }
  .p-20-sp {
    padding: 2rem;
  }
  .p-24-sp {
    padding: 2.4rem;
  }
  .p-30-sp {
    padding: 3rem;
  }
  .p-40-sp {
    padding: 4rem;
  }
  .p-50-sp {
    padding: 5rem;
  }
  .p-60-sp {
    padding: 6rem;
  }
  .p-80-sp {
    padding: 8rem;
  }
  .p-100-sp {
    padding: 10rem;
  }
  .p-120-sp {
    padding: 12rem;
  }
  .pt-0-sp {
    padding-top: 0rem;
  }
  .pt-4-sp {
    padding-top: 0.4rem;
  }
  .pt-8-sp {
    padding-top: 0.8rem;
  }
  .pt-12-sp {
    padding-top: 1.2rem;
  }
  .pt-16-sp {
    padding-top: 1.6rem;
  }
  .pt-20-sp {
    padding-top: 2rem;
  }
  .pt-24-sp {
    padding-top: 2.4rem;
  }
  .pt-30-sp {
    padding-top: 3rem;
  }
  .pt-40-sp {
    padding-top: 4rem;
  }
  .pt-50-sp {
    padding-top: 5rem;
  }
  .pt-60-sp {
    padding-top: 6rem;
  }
  .pt-80-sp {
    padding-top: 8rem;
  }
  .pt-100-sp {
    padding-top: 10rem;
  }
  .pt-120-sp {
    padding-top: 12rem;
  }
  .pr-0-sp {
    padding-right: 0rem;
  }
  .pr-4-sp {
    padding-right: 0.4rem;
  }
  .pr-8-sp {
    padding-right: 0.8rem;
  }
  .pr-12-sp {
    padding-right: 1.2rem;
  }
  .pr-16-sp {
    padding-right: 1.6rem;
  }
  .pr-20-sp {
    padding-right: 2rem;
  }
  .pr-24-sp {
    padding-right: 2.4rem;
  }
  .pr-30-sp {
    padding-right: 3rem;
  }
  .pr-40-sp {
    padding-right: 4rem;
  }
  .pr-50-sp {
    padding-right: 5rem;
  }
  .pr-60-sp {
    padding-right: 6rem;
  }
  .pr-80-sp {
    padding-right: 8rem;
  }
  .pr-100-sp {
    padding-right: 10rem;
  }
  .pr-120-sp {
    padding-right: 12rem;
  }
  .pb-0-sp {
    padding-bottom: 0rem;
  }
  .pb-4-sp {
    padding-bottom: 0.4rem;
  }
  .pb-8-sp {
    padding-bottom: 0.8rem;
  }
  .pb-12-sp {
    padding-bottom: 1.2rem;
  }
  .pb-16-sp {
    padding-bottom: 1.6rem;
  }
  .pb-20-sp {
    padding-bottom: 2rem;
  }
  .pb-24-sp {
    padding-bottom: 2.4rem;
  }
  .pb-30-sp {
    padding-bottom: 3rem;
  }
  .pb-40-sp {
    padding-bottom: 4rem;
  }
  .pb-50-sp {
    padding-bottom: 5rem;
  }
  .pb-60-sp {
    padding-bottom: 6rem;
  }
  .pb-80-sp {
    padding-bottom: 8rem;
  }
  .pb-100-sp {
    padding-bottom: 10rem;
  }
  .pb-120-sp {
    padding-bottom: 12rem;
  }
  .pl-0-sp {
    padding-left: 0rem;
  }
  .pl-4-sp {
    padding-left: 0.4rem;
  }
  .pl-8-sp {
    padding-left: 0.8rem;
  }
  .pl-12-sp {
    padding-left: 1.2rem;
  }
  .pl-16-sp {
    padding-left: 1.6rem;
  }
  .pl-20-sp {
    padding-left: 2rem;
  }
  .pl-24-sp {
    padding-left: 2.4rem;
  }
  .pl-30-sp {
    padding-left: 3rem;
  }
  .pl-40-sp {
    padding-left: 4rem;
  }
  .pl-50-sp {
    padding-left: 5rem;
  }
  .pl-60-sp {
    padding-left: 6rem;
  }
  .pl-80-sp {
    padding-left: 8rem;
  }
  .pl-100-sp {
    padding-left: 10rem;
  }
  .pl-120-sp {
    padding-left: 12rem;
  }
  .px-0-sp {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .px-4-sp {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .px-8-sp {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .px-12-sp {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .px-16-sp {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .px-20-sp {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .px-24-sp {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
  .px-30-sp {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .px-40-sp {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .px-50-sp {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .px-60-sp {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .px-80-sp {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .px-100-sp {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .px-120-sp {
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .py-0-sp {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .py-4-sp {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .py-8-sp {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .py-12-sp {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .py-16-sp {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .py-20-sp {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .py-24-sp {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .py-30-sp {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .py-40-sp {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .py-50-sp {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .py-60-sp {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .py-80-sp {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .py-100-sp {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .py-120-sp {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .fz-12-sp {
    font-size: 1.2rem;
  }
  .fz-13-sp {
    font-size: 1.3rem;
  }
  .fz-14-sp {
    font-size: 1.4rem;
  }
  .fz-16-sp {
    font-size: 1.6rem;
  }
  .fz-18-sp {
    font-size: 1.8rem;
  }
  .fz-20-sp {
    font-size: 2rem;
  }
  .fz-24-sp {
    font-size: 2.4rem;
  }
  .fz-28-sp {
    font-size: 2.8rem;
  }
  .fz-30-sp {
    font-size: 3rem;
  }
  .w-full-sp {
    width: 100%;
  }
  .w-half-sp {
    width: 50%;
  }
  .w-auto-sp {
    width: auto;
  }
}
.ta-center {
  text-align: center;
}

.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.tc-navy {
  color: #082e65;
}

.tc-gold {
  color: #ba9574;
}

.tc-white {
  color: #fff;
}

.tc-text {
  color: #000;
}

.bg-navy {
  background-color: #082e65;
}

.bg-tint {
  background-color: #f7fafc;
}

.bg-white {
  background-color: #fff;
}

.ff-serif {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.ff-sans {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
}

.fw-bold {
  font-weight: 700;
}

.fw-medium {
  font-weight: 500;
}

.fw-normal {
  font-weight: 400;
}

@media (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

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

.hover-line {
  transition: color 0.2s;
}
.hover-line:hover {
  color: #007fc6;
  text-decoration: underline;
}
