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

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Hiragino Kaku Gothic";
  src: url("../public/fonts/HiraginoKakuGothicProNW3.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Kaku Gothic";
  src: url("../public/fonts/HiraginoKakuGothicProNW6.ttf") format("truetype");
  font-weight: 600;
}
html {
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 10px;
  color: #15161b;
  scroll-behavior: smooth;
}

main {
  padding-top: 89px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 70px;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 211px;
  height: 77px;
  padding: 16px;
  background-color: #104488;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    min-width: unset;
    height: 60px;
    padding: 12px;
  }
}
.btn:hover {
  background-color: #2a6fc8;
}
.btn:hover .btn__icon.arrow::before {
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
}
.btn--line {
  background-color: #12c22c;
}
.btn--line:hover {
  background-color: #3bde53;
}
.btn__wrap {
  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: 767px) {
  .btn__wrap {
    gap: 10px;
  }
}
.btn__icon {
  position: relative;
  width: 20px;
  height: 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;
}
.btn__icon.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: url("../public/img/icons/arrow-right.svg") no-repeat center/contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn__text {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .btn__text {
    font-size: 18px;
  }
}
.btn__subtext {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .btn__subtext {
    font-size: 12px;
  }
}

.btn-link {
  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: 767px) {
  .btn-link {
    gap: 10px;
  }
}
.btn-link:hover .btn-link__text {
  color: #8a8d97;
}
.btn-link:hover .btn-link__icon {
  background-image: url("../public/img/icons/circle-arrow-right-light.svg");
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.btn-link.align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btn-link__text {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn-link__text {
    font-size: 16px;
  }
}
.btn-link__icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: url("../public/img/icons/circle-arrow-right.svg") no-repeat center/contain;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
@media screen and (max-width: 767px) {
  .btn-link__icon {
    width: 20px;
    height: 20px;
  }
}
.btn-link:not(:has(.btn-link__icon)) {
  font-size: 2rem;
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn-link:not(:has(.btn-link__icon)) {
    font-size: 16px;
  }
}
.btn-link:not(:has(.btn-link__icon))::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: url("../public/img/icons/circle-arrow-right.svg") no-repeat center/contain;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn-link:not(:has(.btn-link__icon))::after {
    width: 20px;
    height: 20px;
  }
}
.btn-link:not(:has(.btn-link__icon)):hover, a:hover > .btn-link:not(:has(.btn-link__icon)) {
  color: #8a8d97;
}
.btn-link:not(:has(.btn-link__icon)):hover::after, a:hover > .btn-link:not(:has(.btn-link__icon))::after {
  background-image: url("../public/img/icons/circle-arrow-right-light.svg");
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.btn-content {
  position: relative;
  display: inline-block;
  width: auto;
  padding-right: 15px;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn-content {
    padding-right: 12px;
  }
}
.btn-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #15161b;
}
.btn-content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: url("../public/img/icons/arrow-next.svg") no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn-content::after {
    width: 8px;
    height: 8px;
  }
}
.btn-content:hover {
  color: #8a8d97;
}
.btn-content:hover::before {
  background-color: #8a8d97;
}
.btn-content:hover::after {
  background-image: url("../public/img/icons/arrow-next-light.svg");
}
.btn-content.margin-inline {
  margin: 0 8px;
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.heading__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .heading__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
.heading__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .heading__block {
    gap: 12px;
  }
}
.heading__title {
  font-size: 4rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .heading__title {
    font-size: 24px;
  }
}
.heading__descr {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .heading__descr {
    font-size: 15px;
  }
}
.heading__bg-wrap {
  padding: 24px;
  background-color: #f2f5f8;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .heading__bg-wrap {
    padding: 16px;
    border-radius: 8px;
  }
}
.heading__border {
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .heading__border {
    margin-left: 16px;
    padding-left: 16px;
  }
}
.heading__border::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 90%;
  background-color: #63b6f2;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .heading__border::before {
    width: 6px;
  }
}
.heading__border.ml-none {
  margin-left: 0;
}
.heading__dot {
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .heading__dot {
    margin-left: 16px;
    padding-left: 16px;
  }
}
.heading__dot::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #63b6f2;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .heading__dot::before {
    width: 6px;
    height: 6px;
  }
}
.heading__dot.ml-none {
  margin-left: 0;
}
.heading__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.heading__num span.num-ctr {
  font-family: "Jost", sans-serif;
  color: #63b6f2;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .heading__num span.num-ctr {
    font-size: 20px;
  }
}
.heading__num.fs24 span.num-ctr {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .heading__num.fs24 span.num-ctr {
    font-size: 18px;
  }
}
.heading__num.fs24 .content__heading {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .heading__num.fs24 .content__heading {
    font-size: 18px;
  }
}
.heading__num.fs20 span.num-ctr {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .heading__num.fs20 span.num-ctr {
    font-size: 16px;
  }
}
.heading__num.fs20 .content__heading {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .heading__num.fs20 .content__heading {
    font-size: 16px;
  }
}
.heading__num.fs18 span.num-ctr {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .heading__num.fs18 span.num-ctr {
    font-size: 14px;
  }
}
.heading__num.fs18 .content__heading {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .heading__num.fs18 .content__heading {
    font-size: 14px;
  }
}

.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  pointer-events: none;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  background-color: #fff;
}
@media screen and (max-width: 1300px) {
  .header__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 0 4%;
  }
}
.header__logo {
  width: 100%;
  max-width: 192px;
  margin: 20px 0;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 112px;
  }
}
.header__menu {
  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;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .header__menu {
    position: absolute;
    top: 89px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    width: 100%;
    height: 0;
    padding: 0 24px;
    background-color: #fff;
    pointer-events: none;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    top: 69px;
    padding: 0 4%;
  }
}
@media screen and (max-width: 1300px) {
  .header__menu.toggle {
    padding: 60px 24px;
    pointer-events: all;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__menu.toggle {
    padding: 30px 4%;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin: 0 auto;
}
@media screen and (max-width: 1720px) {
  .header__nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    width: 100%;
  }
}
.header__nav-item {
  position: relative;
  padding: 30px 0;
  font-size: 1.5rem;
  line-height: 1.5em;
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1720px) {
  .header__nav-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav-item {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid #c2c5d2;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav-item:first-child {
    padding-top: 0;
  }
}
.header__nav-item:hover .header__nav-text {
  color: #8a8d97;
}
.header__nav-item.has-subnav .header__nav-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1300px) {
  .header__nav-item.has-subnav .header__nav-text {
    width: 100%;
  }
}
.header__nav-item.has-subnav:hover .header__nav-text-icon {
  background-image: url("../public/img/icons/circle-arrow-down-light.svg");
}
.header__nav-item.has-subnav:hover .header__subnav {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media screen and (max-width: 1300px) {
  .header__nav-item.has-subnav.open .header__nav-text {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav-item.has-subnav.open .header__subnav {
    max-height: none;
    border-top: 1px solid #c2c5d2;
  }
}
.header__nav-text-icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18.5px;
  height: 19.2px;
  background: url("../public/img/icons/circle-arrow-down.svg") no-repeat center/contain;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
.header__subnav {
  position: absolute;
  z-index: -1;
  top: 84px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 24px;
  background-color: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1720px) {
  .header__subnav {
    gap: 16px;
    padding: 16px;
  }
}
@media screen and (max-width: 1300px) {
  .header__subnav {
    position: relative;
    z-index: unset;
    top: unset;
    gap: 0;
    width: 100%;
    max-height: 0;
    padding: 0 24px;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    pointer-events: all;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.header__subnav::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.header__subnav-item {
  position: relative;
  padding-right: 24px;
  font-size: 1.5rem;
  line-height: 1.5em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1720px) {
  .header__subnav-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1300px) {
  .header__subnav-item {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid #c2c5d2;
  }
}
@media screen and (max-width: 767px) {
  .header__subnav-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 1300px) {
  .header__subnav-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.header__subnav-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  background: url("../public/img/icons/arrow-right-gray.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__subnav-item:hover {
  color: #8a8d97;
}
.header__subnav-item:hover::after {
  -webkit-transform: translate(3px, -50%);
          transform: translate(3px, -50%);
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1300px) {
  .header__contact {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    margin-left: auto;
  }
}
.header__ct-btn {
  min-width: 150px;
  height: 55px;
  pointer-events: all;
}
@media screen and (max-width: 1720px) {
  .header__ct-btn {
    min-width: 110px;
    height: 48px;
  }
}
@media screen and (max-width: 1300px) {
  .header__ct-btn {
    min-width: 100px !important;
    height: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__ct-btn {
    min-width: unset !important;
    padding: 8px;
  }
}
.header__ct-btn--line {
  min-width: 180px;
}
@media screen and (max-width: 1720px) {
  .header__ct-btn--line {
    min-width: 135px;
  }
}
.header__ct-btn .btn__text {
  font-size: 1.5rem;
}
@media screen and (max-width: 1720px) {
  .header__ct-btn .btn__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1300px) {
  .header__ct-btn .btn__text {
    text-align: center;
    word-break: keep-all;
  }
}
@media screen and (max-width: 767px) {
  .header__ct-btn .btn__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 1300px) {
  .header__ct-btn .btn__icon {
    display: none;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header__hamburger {
    position: relative;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 18px;
    height: 18px;
    margin: auto 0 auto 18px;
    cursor: pointer;
    pointer-events: all;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__hamburger span {
  position: absolute;
  top: 0;
  display: block;
  width: 18px;
  height: 2px;
  background-color: #15161b;
  border-radius: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__hamburger span:nth-of-type(2) {
  top: 9px;
}
.header__hamburger span:last-of-type {
  top: 18px;
}
.header__hamburger.toggle span {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.toggle span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.header__hamburger.toggle span:last-of-type {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer {
  padding-bottom: 100px;
  background-color: #f2f5f8;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 40px;
  }
}
.footer__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    gap: 40px;
    padding-top: 40px;
  }
}
.footer__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 50%;
}
@media screen and (max-width: 1300px) {
  .footer__about {
    gap: 20px;
    width: 100%;
  }
}
.footer__logo {
  width: 100%;
  max-width: 312px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 240px;
  }
}
.footer__about-title {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer__about-title {
    font-size: 18px;
  }
}
.footer__about-text {
  font-size: 1.5rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .footer__about-text {
    font-size: 14px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  gap: 40px;
}
@media screen and (max-width: 1300px) {
  .footer__nav {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__nav-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1300px) {
  .footer__nav-col {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-col {
    gap: 24px;
    width: 100%;
  }
}
.footer__nav-label {
  font-family: "Jost", sans-serif;
  color: #8a8d97;
  font-size: 1.5rem;
}
.footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__nav-item:not(.has-subnav):hover {
  color: #8a8d97;
}
.footer__nav-item.target-blank span.footer__nav-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-right: 15px;
}
.footer__nav-item.target-blank span.footer__nav-text::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 13px;
  height: 13px;
  background: url("../public/img/icons/external.svg") no-repeat center/contain;
}
.footer__nav-text {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer__nav-text {
    font-size: 16px;
  }
}
.footer__subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.footer__subnav-item {
  position: relative;
  padding-left: 20px;
  font-size: 1.5rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__subnav-item {
    padding-left: 12px;
    font-size: 14px;
  }
}
.footer__subnav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #15161b;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__subnav-item:hover {
  color: #8a8d97;
}
.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    gap: 12px;
  }
}
.footer__ct-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 16px;
  background-color: #104488;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
.footer__ct-btn:hover {
  background-color: #2a6fc8;
}
.footer__ct-btn--line {
  background-color: #12c22c;
}
.footer__ct-btn--line:hover {
  background-color: #3bde53;
}
.footer__copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    max-width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .footer__copyright {
    position: relative;
  }
}
.footer__copyright p {
  color: #8a8d97;
  font-size: 1.4rem;
  word-break: break-all;
}
@media screen and (max-width: 1300px) {
  .footer__copyright p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright p {
    font-size: 12px;
  }
}

.content__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  max-width: 1000px;
  padding: 90px 0 100px;
}
@media screen and (max-width: 1300px) {
  .content__page {
    padding: 90px 4% 100px;
  }
}
@media screen and (max-width: 767px) {
  .content__page {
    gap: 54px;
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
.content__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .content__section {
    gap: 26px;
  }
}
.content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .content__body {
    gap: 26px;
    padding: 0 16px;
  }
}
.content__body--flush {
  padding: 0;
}
.content__block {
  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;
}
@media screen and (max-width: 767px) {
  .content__block {
    gap: 10px;
  }
}
.content__inset {
  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;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .content__inset {
    padding-inline: 8px;
    gap: 10px;
  }
}
.content__inset--grouped {
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .content__inset--grouped {
    gap: 20px;
  }
}
.content__inset .content__bullet,
.content__inset .content__ordered,
.content__inset ul,
.content__inset ol {
  padding-left: 0;
}
.content__inset .def-table {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .content__inset .def-table {
    margin-bottom: 10px;
  }
}
.content__heading {
  font-size: 5.2rem;
  line-height: 1.75em;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .content__heading {
    font-size: 36px;
  }
}
.content__text {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .content__text {
    font-size: 15px;
  }
}
.content__text.indent {
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .content__text.indent {
    padding-left: 26px;
  }
}
.content__ordered, .content__body ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  counter-reset: ol-counter;
  list-style: none;
}
.content__ordered li, .content__body ol li {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 2em;
  counter-increment: ol-counter;
}
@media screen and (max-width: 767px) {
  .content__ordered li, .content__body ol li {
    font-size: 15px;
  }
}
.content__ordered li::before, .content__body ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
}
.content__bullet, .content__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .content__bullet, .content__body ul {
    padding-left: 8px;
  }
}
.content__bullet li, .content__body ul li {
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .content__bullet li, .content__body ul li {
    margin-left: 12px;
    padding-left: 12px;
    font-size: 15px;
  }
}
.content__bullet li::before, .content__body ul li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #15161b;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .content__bullet li::before, .content__body ul li::before {
    top: 13px;
  }
}
.content__img {
  width: 100%;
  height: auto;
}
.content__img--half {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .content__img--half {
    max-width: 100%;
  }
}
.content__img--partial {
  max-width: 704px;
}
@media screen and (max-width: 767px) {
  .content__img--partial {
    max-width: 100%;
  }
}
.content__img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .content__img-grid {
    grid-template-columns: 1fr;
  }
}
.content__img-grid img {
  width: 100%;
  height: auto;
}

.toc.closed .toc__list {
  height: 0;
  margin: 0;
  padding: 0 32px 0 16px;
  border: none;
}
@media screen and (max-width: 767px) {
  .toc.closed .toc__list {
    padding: 0 16px 0 8px;
  }
}
.toc.closed .toc__btn::before {
  height: 10px;
}
.toc__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 24px 40px;
  background-color: #f2f5f8;
}
@media screen and (max-width: 767px) {
  .toc__container {
    padding: 12px 20px;
  }
}
.toc__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.toc__label {
  color: #104488;
  font-size: 1.5rem;
  font-weight: 600;
}
.toc__btn {
  position: relative;
  padding-right: 24px;
  color: #104488;
  font-size: 1.3rem;
  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;
}
@media screen and (max-width: 767px) {
  .toc__btn {
    padding-right: 12px;
    font-size: 12px;
  }
}
.toc__btn::before, .toc__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: #104488;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.toc__btn::before {
  width: 1px;
  height: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.toc__btn::after {
  right: -5px;
  width: 11px;
  height: 1px;
}
.toc__list {
  margin: 24px 0;
  padding: 24px 32px 24px 16px;
  border-top: 1px solid #c2c5d2;
  border-bottom: 1px solid #c2c5d2;
  overflow: hidden;
  -webkit-transition: margin 0.3s ease, padding 0.3s ease;
  transition: margin 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 767px) {
  .toc__list {
    margin: 12px 0;
    padding: 12px 16px 12px 8px;
  }
}
.toc__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border-bottom: 2px dashed #c2c5d2;
  cursor: pointer;
}
.toc__row:first-child .toc__main-item {
  padding-top: 0;
}
.toc__row:last-child {
  border-bottom: none;
}
.toc__row:last-child:not(.has-sublist) .toc__main-item {
  padding-bottom: 0;
}
.toc__row.has-sublist .toc__main-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.toc__row.has-sublist .toc__sublist {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toc__row.has-sublist.open .toc__sublist {
  height: auto;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .toc__row.has-sublist.open .toc__sublist {
    padding-bottom: 12px;
  }
}
.toc__main-item {
  width: 100%;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .toc__main-item {
    padding: 8px 0;
  }
}
.toc__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .toc__sublist {
    gap: 4px;
    padding-left: 8px;
  }
}
.toc__sub-item {
  font-size: 1.4rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .toc__sub-item {
    font-size: 13px;
  }
}

.step {
  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;
  padding: 24px;
  background-color: #fff;
  border: 1px solid #c2c5d2;
  border-radius: 10px;
}
.step__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .step__header {
    gap: 12px;
  }
}
.step__badge {
  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: 71px;
  padding: 4px 12px;
  background-color: #fff47d;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.step__badge--accent {
  background-color: #63b6f2;
}
.step__badge--accent .step__badge-text {
  color: #fff;
}
.step__badge-text {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  color: #15161b;
  text-align: center;
  white-space: nowrap;
}
.step__title {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .step__title {
    font-size: 16px;
  }
}
.step__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .step__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.step__btn {
  min-width: unset;
  height: auto;
  padding: 12px 12px 12px 16px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .step__btn {
    height: auto;
  }
}
.step__btn .btn__text {
  font-size: 15px;
}
.step__text-link {
  width: auto;
  margin: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .step__text-link {
    font-size: 12px;
  }
}

.step-flow {
  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: 12px;
}
.step-flow .step {
  width: 100%;
}
.step-flow__separator {
  width: 20px;
  height: 20px;
  background: url("../public/img/icons/caret.svg") no-repeat center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pagebanner {
  padding: 0 3%;
  margin: 0 auto;
  max-width: calc(1794px + 6%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .pagebanner {
    max-width: 100%;
  }
}
.pagebanner__banner {
  position: relative;
  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;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pagebanner__banner {
    height: 180px;
    border-radius: 6px;
  }
}
.pagebanner__bg {
  position: absolute;
  inset: 0;
}
.pagebanner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(16, 68, 136, 0.3);
  pointer-events: none;
}
.pagebanner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.pagebanner__title {
  font-family: "Shippori Antique", "シッポリアンティーク", sans-serif;
  font-size: clamp(2.4rem, 3vw, 5rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .pagebanner__title {
    font-size: 2.4rem;
    white-space: normal;
  }
}
.pagebanner__breadcrumbs {
  padding: 8px 0;
}
.pagebanner__breadcrumbs--standalone {
  padding-top: 62px;
}
@media screen and (max-width: 767px) {
  .pagebanner__breadcrumbs--standalone {
    padding-top: 24px;
  }
}
.pagebanner__breadcrumbs-inner {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1300px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .pagebanner__breadcrumbs-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pagebanner__breadcrumbs-inner {
    gap: 4px 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pagebanner__crumb {
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
  color: #8a8d97;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .pagebanner__crumb {
    font-size: 12px;
  }
}
.pagebanner__crumb--current {
  color: #15161b;
}
.pagebanner__separator {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6px;
  height: 9px;
  background: url("../public/img/icons/caret-black.svg") no-repeat center/contain;
}
.pagebanner--plain .pagebanner__banner {
  height: auto;
  padding: 64px 0 24px;
  border-radius: 0;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .pagebanner--plain .pagebanner__banner {
    padding: 40px 0 12px;
  }
}
.pagebanner--plain .pagebanner__title {
  color: #15161b;
}

.info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #c2c5d2;
}
@media screen and (max-width: 980px) {
  .info-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .info-list {
    padding: 32px 16px;
    -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: 32px;
  }
}
.info-list__item {
  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-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 170px;
}
@media screen and (max-width: 980px) {
  .info-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .info-list__item {
    width: 100%;
    max-width: 100%;
  }
}
.info-list__img {
  width: 100%;
  aspect-ratio: 170/115;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .info-list__img {
    margin: 0 auto;
    max-width: 140px;
  }
}
.info-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.info-list__header {
  margin-block: 16px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .info-list__header {
    margin-block: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.info-list__num {
  border-right: 1px solid #c2c5d2;
  padding-right: 16px;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 55px;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 980px) {
  .info-list__num {
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .info-list__num {
    font-size: 16px;
    height: 40px;
  }
}
.info-list__title {
  padding-left: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .info-list__title {
    padding-left: 10px;
  }
}
.info-list__text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .info-list__text {
    font-size: 12px;
    text-align: center;
  }
}
.info-list__text strong {
  font-weight: 700;
}

.area-map {
  background-color: #fff;
  border: 1px solid #c2c5d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 40px 35px;
}
@media screen and (max-width: 767px) {
  .area-map {
    gap: 24px;
    padding: 24px 16px;
  }
}
.area-map__map {
  width: 100%;
  aspect-ratio: 930/380;
}
.area-map__legend {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 24px;
}
@media screen and (max-width: 767px) {
  .area-map__legend {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.area-map__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.area-map__name {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.area-map__name::before {
  border-radius: 10px;
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 20px;
  width: 5px;
}
.area-map__name--bkk1::before {
  background-color: #26b4da;
}
.area-map__name--tonle::before {
  background-color: #ecee28;
}
.area-map__name--toul-tom-pong::before {
  background-color: #885bba;
}
.area-map__name--duan-penh::before {
  background-color: #efa45e;
}
.area-map__name--toul-kork::before {
  background-color: #546bef;
}
.area-map__name--chroy::before {
  background-color: #f37d93;
}
.area-map__name--koh-pich::before {
  background-color: #12c22c;
}
.area-map__name--bkk2::before {
  background-color: #0b5464;
}
.area-map__name--prampir::before {
  background-color: #977970;
}
.area-map__descr {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .area-map__descr {
    font-size: 13px;
  }
}

.def-table {
  border: 1px solid #c2c5d2;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .def-table {
    padding: 16px;
  }
}
.def-table--headed {
  padding-top: 0;
  padding-inline: 0;
}
.def-table--headed .def-table__cell {
  margin-inline: 24px;
}
@media screen and (max-width: 767px) {
  .def-table--headed .def-table__cell {
    margin-inline: 16px;
  }
}
.def-table__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 24px 16px;
  background-color: #f2f5f8;
}
@media screen and (max-width: 767px) {
  .def-table__head {
    padding: 16px;
  }
}
.def-table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.def-table__cell--accent .def-table__key,
.def-table__cell--accent .def-table__val {
  color: #efa45e;
}
.def-table__cell--pros .def-table__key,
.def-table__cell--pros .def-table__val {
  color: #00f;
}
.def-table__cell--cons .def-table__key,
.def-table__cell--cons .def-table__val {
  color: #f00;
}
.def-table__cell--summary {
  background-color: #f2f5f8;
  margin-inline: -24px;
  margin-bottom: -24px;
  padding-inline: 24px;
  padding-block: 16px 24px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767px) {
  .def-table__cell--summary {
    margin-inline: -16px;
    margin-bottom: -16px;
    padding-inline: 16px;
    padding-bottom: 16px;
  }
}
.def-table__cell--summary .def-table__key {
  color: #63b6f2;
}
.def-table__cell + .def-table__cell {
  border-top: 1px solid #f2f5f8;
  padding-top: 16px;
}
.def-table__cell + .def-table__cell--summary {
  border-top: none;
}
.def-table__key {
  min-width: 186px;
  padding-inline: 8px;
  width: 186px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .def-table__key {
    padding-left: 0;
    min-width: 100px;
    width: 40%;
    font-size: 13px;
  }
}
.def-table__val {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-inline: 8px;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .def-table__val {
    padding-inline: 0;
    font-size: 13px;
  }
}
.def-table__val .content__bullet,
.def-table__val ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding-left: 0;
}
.def-table__val .content__bullet li,
.def-table__val ul li {
  position: relative;
  margin-left: 0;
  padding-left: 12px;
  font-size: 1.5rem;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .def-table__val .content__bullet li,
  .def-table__val ul li {
    margin-left: 0;
    padding-left: 10px;
    font-size: 13px;
  }
}
.def-table__val .content__bullet li::before,
.def-table__val ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #15161b;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .def-table__val .content__bullet li::before,
  .def-table__val ul li::before {
    top: 11px;
  }
}
.def-table__val .content__ordered,
.def-table__val ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding-left: 0;
  list-style: decimal;
}
.def-table__val .content__ordered li,
.def-table__val ol li {
  padding-left: 4px;
  font-size: 1.5rem;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .def-table__val .content__ordered li,
  .def-table__val ol li {
    font-size: 13px;
  }
}

.comp-table {
  border: 1px solid #c2c5d2;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .comp-table {
    overflow-x: scroll;
  }
}
.comp-table__table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .comp-table__table {
    min-width: 520px;
  }
}
.comp-table__th {
  background-color: #f2f5f8;
  font-weight: 600;
  padding: 16px 24px;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .comp-table__th {
    font-size: 13px;
    padding: 12px 16px;
  }
}
.comp-table__th:not(:last-child) {
  border-right: 1px solid #c2c5d2;
}
.comp-table__tr {
  border-top: 1px solid #c2c5d2;
}
.comp-table__label {
  font-weight: 600;
  padding: 16px 24px;
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  line-height: 1.55;
  border-right: 1px solid #c2c5d2;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .comp-table__label {
    font-size: 13px;
    padding: 12px 16px;
  }
}
.comp-table__td {
  padding: 16px 24px;
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  line-height: 1.55;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .comp-table__td {
    font-size: 13px;
    padding: 12px 16px;
  }
}
.comp-table__td:not(:last-child) {
  border-right: 1px solid #c2c5d2;
}

.news-tag {
  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;
  padding: 4px 12px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  border: 1px solid #4e79a6;
  border-radius: 5px;
  color: #4e79a6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-tag {
    padding-inline: 8px;
    font-size: 12px;
  }
}
.news-tag.is-active, .news-tag:hover {
  background-color: #4e79a6;
  color: #fff;
}

.c-slider .splide__track {
  border-radius: 10px;
  overflow: hidden;
}
.c-slider__image {
  margin: 0;
}
.c-slider__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-slider__cap {
  padding: 8px 12px;
  color: #8a8d97;
  font-size: 1.3rem;
  text-align: center;
}
.c-slider .splide__arrows {
  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: 16px;
  margin-top: 16px;
}
.c-slider .splide__arrow {
  width: 48px;
  height: 48px;
  background-color: #63b6f2;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-slider .splide__arrow svg {
  fill: #fff;
  width: 15px;
  height: 15px;
}
.c-slider .splide__arrow:hover:not(:disabled) {
  opacity: 0.8;
}
.c-slider .splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.c-slider .splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.top__mv {
  position: relative;
  width: 100%;
  height: auto;
}
.top__mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__mv-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(80%, transparent));
  background: linear-gradient(to right, #000 0%, transparent 80%);
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .top__mv-bg::after {
    background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(80%, transparent));
    background: linear-gradient(to bottom, #000 0%, transparent 80%);
  }
}
.top__mv-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__mv-content {
  position: relative;
  padding: 80px 0 130px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__mv-content {
    padding: 50px 0;
  }
}
.top__mv-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 0 10%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__mv-content-inner {
    padding: 0 4%;
  }
}
.top__mv-label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top__mv-label {
    font-size: 13px;
  }
}
.top__mv-title {
  font-size: 5.2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top__mv-title {
    font-size: 36px;
  }
}
.top__mv-descr {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top__mv-descr {
    font-size: 15px;
  }
}
.top__mv-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top__mv-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-btn {
    width: 100% !important;
  }
}
.top__mv-btn--line {
  width: 294px;
}
.top__mv-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.top__mv-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 4px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top__mv-tag {
    font-size: 15px;
  }
}
.top__mv-tag::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../public/img/icons/check.svg") no-repeat center/contain;
}
.top__section {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top__section {
    padding-bottom: 40px;
  }
}
.top__about {
  padding: 40px 0;
}
.top__about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top__about-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__about-item {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33.33%;
  padding: 20px 32px;
  color: #fff;
  text-align: center;
  background-color: #63b6f2;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .top__about-item {
    width: 100%;
  }
}
.top__about-label {
  margin-bottom: 4px;
  padding: 2px 12px;
  background-color: #fff;
  border-radius: 20px;
  color: #63b6f2;
}
.top__about-title {
  margin-bottom: 12px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .top__about-title {
    font-size: 20px;
  }
}
.top__about-descr {
  font-size: 1.5rem;
}
.top__learn-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12.5px;
  margin: 32px auto 0;
  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;
}
@media screen and (max-width: 1300px) {
  .top__learn-list {
    max-width: 750px;
  }
}
@media screen and (max-width: 767px) {
  .top__learn-list {
    max-width: 100%;
  }
}
.top__learn-item {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: calc(20% - 10px);
  max-width: 250px;
  aspect-ratio: 1/1;
  padding-bottom: 20px;
  background-color: #f2f5f8;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
@media screen and (max-width: 1300px) {
  .top__learn-item {
    gap: 10px;
    width: calc(33.33% - 9px);
  }
}
@media screen and (max-width: 767px) {
  .top__learn-item {
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    padding: 24px;
  }
}
.top__learn-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 10px 0 0;
}
.top__learn-item::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: url("../public/img/icons/arrow-right-gray.svg") no-repeat center/contain;
}
.top__learn-item:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.top__learn-icon {
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .top__learn-icon {
    width: 60px;
    height: 60px;
  }
}
.top__learn-title {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__learn-title {
    font-size: 15px;
  }
}
.top__learn-note {
  color: #8a8d97;
  font-size: 1.5rem;
}
.top__why-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 12px;
  margin-top: 32px;
}
.top__why-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  width: calc(50% - 6px);
  padding: 32px;
  background-color: #f2f5f8;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .top__why-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__why-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
}
.top__why-item--caution {
  padding: 70px 45px 70px 30px;
  background-color: #63b6f2;
}
@media screen and (max-width: 767px) {
  .top__why-item--caution {
    padding: 20px 6px;
  }
}
.top__why-item--caution .top__why-thumb {
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .top__why-item--caution .top__why-thumb {
    width: 70px;
    height: 70px;
  }
}
.top__why-item--caution .top__why-title {
  color: #fff;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top__why-item--caution .top__why-title {
    font-size: 18px;
  }
}
.top__why-item--caution .top__why-descr {
  color: #fff;
}
.top__why-thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__why-thumb {
    width: 300px;
  }
}
.top__why-num {
  color: #63b6f2;
  font-size: 1.6rem;
  font-weight: 300;
}
.top__why-title {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .top__why-title {
    font-size: 20px;
  }
}
.top__why-descr {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__why-descr {
    font-size: 15px;
  }
}
.top__risk {
  position: relative;
  background-color: #a7daff;
  padding: 64px 3%;
}
@media screen and (max-width: 767px) {
  .top__risk {
    padding: 30px 4%;
  }
}
.top__risk-upper {
  margin-bottom: 64px;
  padding: 80px 0;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .top__risk-upper {
    margin-bottom: 32px;
    padding: 30px 0;
    border-radius: 15px;
  }
}
.top__risk-head {
  width: 100%;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #c2c5d2;
}
.top__risk-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  padding: 13px 16px;
  background-color: #fff47d;
  border-radius: 5px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top__risk-headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 15px;
  }
}
.top__risk-headline span.risk-note {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top__risk-headline span.risk-note {
    font-size: 13px;
  }
}
.top__risk-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .top__risk-list {
    gap: 24px;
  }
}
.top__risk-item {
  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;
  width: calc(25% - 27px);
  padding: 16px 24px;
  border: 1px solid #c2c5d2;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .top__risk-item {
    width: calc(50% - 18px);
  }
}
@media screen and (max-width: 767px) {
  .top__risk-item {
    width: 100%;
    padding: 16px;
  }
}
.top__risk-title {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top__risk-title {
    font-size: 18px;
  }
}
.top__risk-descr {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top__risk-descr {
    font-size: 13px;
  }
}
.top__risk-btns {
  gap: 32px;
  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;
}
@media screen and (max-width: 767px) {
  .top__risk-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top__risk-btn {
    width: 100% !important;
  }
}
.top__risk-btn--line {
  width: 400px;
}
.top__service {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__service {
    padding-top: 40px;
  }
}
.top__service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .top__service-list {
    gap: 24px;
  }
}
.top__service-item {
  position: relative;
  width: calc(25% - 24px);
  height: 376px;
  padding: 12px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .top__service-item {
    width: calc(50% - 16.5px);
  }
}
@media screen and (max-width: 767px) {
  .top__service-item {
    width: 100%;
  }
}
.top__service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__service-content {
  position: relative;
  z-index: 1;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 24px;
  color: #fff;
}
.top__service-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: linear-gradient(to bottom, transparent 0%, #000 100%);
  border-radius: 10px;
  opacity: 0.3;
}
.top__service-title {
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top__service-title {
    font-size: 20px;
  }
}
.top__service-descr {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2em;
}
.top__strength {
  padding-top: 100px;
  background-color: #f2f5f8;
}
@media screen and (max-width: 767px) {
  .top__strength {
    padding-top: 40px;
  }
}
.top__strength-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  margin-top: 32px;
}
.top__strength-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.33% - 34px);
}
@media screen and (max-width: 1300px) {
  .top__strength-item {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 767px) {
  .top__strength-item {
    width: 100%;
  }
}
.top__strength-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-color: #f2f5f8;
  border-radius: 0 0 10px;
  font-family: "Jost", sans-serif;
  color: #63b6f2;
  font-size: 2rem;
  font-weight: 300;
  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;
}
.top__strength-thumb {
  margin-bottom: 24px;
  aspect-ratio: 8/5;
  border-radius: 10px;
  overflow: hidden;
}
.top__strength-content {
  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;
}
.top__strength-title {
  color: #104488;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top__strength-title {
    font-size: 18px;
  }
}
.top__strength-descr {
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__strength-descr {
    font-size: 15px;
  }
}
.top__banner {
  position: relative;
  padding: 50px 0;
}
.top__banner-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top__banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(22, 89, 160, 0.5)), color-stop(75%, #1659a0), to(#08203a));
  background: linear-gradient(to right, rgba(22, 89, 160, 0.5) 0%, #1659a0 75%, #08203a 100%);
}
.top__banner-content {
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: auto 0;
  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;
}
.top__banner-label {
  padding: 4px 16px;
  background-color: #fff;
  border-radius: 20px;
  color: #104488;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__banner-label {
    font-size: 15px;
  }
}
.top__banner-message {
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__banner-message {
    font-size: 24px;
  }
}
.top__properties {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top__properties {
    padding: 40px 0;
  }
}
.top__property-list {
  padding: 32px 0 40px !important;
}
.top__property-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__property-item:hover {
  opacity: 0.8;
}
.top__property-item:hover .top__property-thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top__property-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  background-color: #c2c5d2;
  border-radius: 10px;
  overflow: hidden;
}
.top__property-thumb img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__property-name {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 16px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .top__property-name {
    font-size: 20px;
  }
}
.top__property-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__property-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.top__property-info-row.mb {
  margin-bottom: 16px;
}
.top__property-info-row.no-gap {
  gap: 0;
}
.top__property-info-row dt,
.top__property-info-row dd {
  font-size: 1.5rem;
  letter-spacing: 0.025em;
}
.top__property-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  padding: 0;
  -webkit-transform: none;
          transform: none;
}
.top__property-page {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #c2c5d2;
}
.top__property-page.is-active {
  background-color: #63b6f2;
  border: none;
  -webkit-transform: none;
          transform: none;
}
.top__property-arrow {
  top: 30%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #c2c5d2;
  opacity: 1;
}
.top__property-arrow svg {
  fill: #63b6f2;
}
.top__property-arrow--prev {
  left: -25px;
}
@media screen and (max-width: 767px) {
  .top__property-arrow--prev {
    left: 0;
  }
}
.top__property-arrow--next {
  right: -25px;
}
@media screen and (max-width: 767px) {
  .top__property-arrow--next {
    right: 0;
  }
}
.top__know {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding: 64px 3%;
  background-color: #f2f5f8;
}
.top__know-block {
  padding: 80px 0;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .top__know-block {
    padding: 30px 0;
    border-radius: 15px;
  }
}
.top__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-top: 32px;
}
@media screen and (max-width: 1440px) {
  .top__steps {
    -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;
  }
}
.top__step-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  width: 35%;
  padding: 16px 0;
  border-radius: 10px;
}
@media screen and (max-width: 1440px) {
  .top__step-group {
    gap: 30px;
    width: 45%;
    padding: 0;
  }
}
@media screen and (max-width: 1300px) {
  .top__step-group {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top__step-group {
    width: 100%;
  }
}
.top__step-group--yellow {
  width: 65%;
  padding: 16px;
  background-color: #fff47d;
}
@media screen and (max-width: 1440px) {
  .top__step-group--yellow {
    width: 80%;
  }
}
@media screen and (max-width: 1300px) {
  .top__step-group--yellow {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__step-group--yellow {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .top__step-group--yellow::after {
    content: "";
    position: absolute;
    bottom: -34px;
    right: 50%;
    width: 20px;
    height: 20px;
    background: url("../public/img/icons/caret.svg") no-repeat center/contain;
    -webkit-transform: translateX(50%) rotate(90deg);
            transform: translateX(50%) rotate(90deg);
  }
}
.top__step-group-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  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;
}
.top__step-group-heading {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top__step-group-heading {
    font-size: 18px;
  }
}
.top__step-group-p {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top__step-group-p {
    font-size: 13px;
  }
}
.top__step-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__step-row {
    -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;
  }
}
.top__step-item {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 200px;
  min-height: 160px;
  padding: 16px 20px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  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;
}
@media screen and (max-width: 1440px) {
  .top__step-item {
    min-width: unset;
  }
}
.top__step-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 20px;
  height: 20px;
  background: url("../public/img/icons/caret.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__step-item::after {
    top: unset;
    bottom: -34px;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(90deg);
            transform: translateX(50%) rotate(90deg);
  }
}
.top__step-item--btns {
  min-width: 260px;
}
.top__step-item--border {
  border: 1px solid #c2c5d2;
}
.top__step-item--middle::after {
  right: -50px;
}
@media screen and (max-width: 1440px) {
  .top__step-item--middle::after {
    content: none;
  }
}
.top__step-item--no-arrow::after {
  content: none;
}
.top__step-num {
  padding: 4px 16px;
  background-color: #63b6f2;
  font-family: "Jost", sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
}
.top__step-num--yellow {
  background-color: #fff47d;
  color: #15161b;
}
.top__step-title {
  font-size: 2rem;
}
.top__step-btns {
  gap: 4px;
  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;
}
.top__step-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 4px 10px;
  background-color: #104488;
  border-radius: 5px;
  color: #fff;
  font-size: 1.5rem;
}
.top__step-btn--line {
  background-color: #12c22c;
}
.top__news {
  padding-top: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top__news {
    padding-top: 40px;
  }
}
.top__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .top__news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.top__news-item {
  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;
  width: 33.33%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__news-item {
    width: 100%;
  }
}
.top__news-item:hover {
  opacity: 0.8;
}
.top__news-item:hover .top__news-thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top__news-thumb {
  aspect-ratio: 400/211;
  background-color: #c4c4c4;
  border-radius: 10px;
  overflow: hidden;
}
.top__news-thumb img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .top__news-content {
    margin-top: 0;
  }
}
.top__news-date {
  color: #8a8d97;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 13px;
  }
}
.top__news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 2rem;
  line-height: 1.75em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__news-title {
    font-size: 18px;
  }
}
.top__news-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top__news-tag {
  padding: 4px 12px;
  border: 1px solid #4e79a6;
  border-radius: 5px;
  color: #4e79a6;
  font-size: 1.4rem;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .top__news-tag {
    font-size: 12px;
  }
}

.prop-mgmt__body {
  gap: 24px;
}
.prop-mgmt__price-table .def-table__key {
  width: 210px;
  min-width: 210px;
}
@media screen and (max-width: 767px) {
  .prop-mgmt__price-table .def-table__key {
    width: 40%;
    min-width: 110px;
  }
}

.purchase__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .purchase__info-row {
    -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: 16px;
    padding: 0;
  }
}
.purchase__info-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30%;
  max-width: 245px;
}
@media screen and (max-width: 767px) {
  .purchase__info-image {
    width: 100%;
    max-width: unset;
  }
}
.purchase__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
.purchase__btn-link {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .purchase__btn-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.risks__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.process__links {
  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;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .process__links {
    padding-inline: 8px;
  }
}

.area-chars__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .area-chars__body {
    padding-inline: 0;
  }
}
.area-chars__links {
  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;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .area-chars__links {
    padding-inline: 8px;
  }
}

.ownership__note {
  color: #8a8d97;
}

.news__page {
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .news__page {
    gap: 34px;
  }
}
.news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news__body {
    gap: 24px;
  }
}
.news__filter {
  border-bottom: 1px solid #c2c5d2;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__filter {
    padding-bottom: 24px;
    gap: 8px;
  }
}
.news__filter-btn {
  padding-block: 8px;
}
@media screen and (max-width: 767px) {
  .news__filter-btn {
    padding-block: 4px;
  }
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
}
@media screen and (max-width: 767px) {
  .news__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.news__pagination {
  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: 40px;
}
@media screen and (max-width: 767px) {
  .news__pagination {
    gap: 20px;
  }
}
.news__pagination .previouspostslink,
.news__pagination .nextpostslink {
  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;
  height: 40px;
  padding: 9px 18px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.025em;
  border-radius: 5px;
  background-color: #63b6f2;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__pagination .previouspostslink,
  .news__pagination .nextpostslink {
    font-size: 13px;
    height: 32px;
    padding: 8px;
  }
}
.news__pagination .previouspostslink.disabled,
.news__pagination .nextpostslink.disabled {
  background-color: #f2f5f8;
  color: #8a8d97;
  pointer-events: none;
}
.news__pagination .previouspostslink.disabled::before,
.news__pagination .nextpostslink.disabled::before {
  background-color: #8a8d97;
}
.news__pagination .previouspostslink::before,
.news__pagination .nextpostslink::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  background-color: #fff;
  -webkit-mask: url("../public/img/icons/arrow-prev.svg") no-repeat center/contain;
          mask: url("../public/img/icons/arrow-prev.svg") no-repeat center/contain;
}
.news__pagination .previouspostslink:hover,
.news__pagination .nextpostslink:hover {
  opacity: 0.7;
}
.news__pagination .nextpostslink {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.news__pagination .nextpostslink::before {
  margin-inline: 7px 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: #15161b;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-card {
    gap: 12px;
  }
}
.news-card:hover {
  opacity: 0.8;
}
.news-card__thumb {
  width: 100%;
  aspect-ratio: 300/158;
  border-radius: 10px;
  overflow: hidden;
  background-color: #c4c4c4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.news-card__date {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.025em;
  color: #8a8d97;
}
@media screen and (max-width: 767px) {
  .news-card__date {
    font-size: 13px;
  }
}
.news-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .news-card__title {
    font-size: 16px;
  }
}
.news-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.news-card__tag {
  pointer-events: none;
}

.news-detail__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news-detail__head {
    gap: 24px;
  }
}
.news-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .news-detail__meta {
    gap: 12px;
  }
}
.news-detail__date {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    font-size: 14px;
  }
}
.news-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.news-detail__tag {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news-detail__tag {
    font-size: 13px;
  }
}
.news-detail__title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    font-size: 22px;
  }
}
.news-detail__hero {
  width: 100%;
  aspect-ratio: 340/179;
  border-radius: 10px;
  overflow: hidden;
  background-color: #c4c4c4;
}
@media screen and (max-width: 767px) {
  .news-detail__hero {
    border-radius: 6px;
  }
}
.news-detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}
@media screen and (max-width: 767px) {
  .news-detail__gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.news-detail__photo {
  margin: 0;
}
.news-detail__photo-img {
  width: 100%;
}
.news-detail__photo-cap {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.025em;
  text-align: center;
  color: #8a8d97;
}
@media screen and (max-width: 767px) {
  .news-detail__photo-cap {
    font-size: 12px;
  }
}
.news-detail__block .content__inset {
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .news-detail__block .content__inset {
    gap: 18px;
  }
}
.news-detail__related-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .news-detail__related-links {
    gap: 8px;
  }
}
.news-detail__related-links li {
  display: contents;
}
.news-detail__related-links .btn-link__text {
  font-weight: 600;
}
.news-detail__contact {
  padding: 24px;
  border: 1px solid #c2c5d2;
  border-radius: 10px;
  background-color: #fff;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .news-detail__contact {
    padding: 16px;
    border-radius: 8px;
  }
  .news-detail__contact .content__text {
    white-space: normal;
  }
}
.news-detail__nav {
  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;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .news-detail__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}
.news-detail__nav .btn-link__text {
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}
.news-detail__nav-prev.disabled, .news-detail__nav-next.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.news-detail__nav-prev .btn-link__text {
  font-weight: 600;
}
.news-detail__nav-prev .btn-link__icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.news-detail__nav-prev:hover .btn-link__icon {
  -webkit-transform: scaleX(-1) translateX(3px);
          transform: scaleX(-1) translateX(3px);
  background-image: url("../public/img/icons/circle-arrow-right-light.svg");
}
.news-detail__nav-back {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: #15161b;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-detail__nav-back {
    font-size: 16px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.news-detail__nav-back:hover {
  color: #8a8d97;
}
.news-detail__nav-next .btn-link__text {
  font-weight: 600;
}
.news-detail__body .content__text span,
.news-detail__body .content__text a {
  font-family: inherit !important;
  font-size: inherit !important;
}

.overflow {
  overflow: hidden;
}

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

.pc-mxw-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1300px) {
  .pc-mxw-flex {
    display: none;
  }
}

.mxw-sp-flex {
  display: none;
}
@media screen and (max-width: 1300px) {
  .mxw-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

.ff-hiragino {
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
}

.ff-inter {
  font-family: "Inter", sans-serif;
}

.ff-jost {
  font-family: "Jost", sans-serif;
}

.ff-shippori {
  font-family: "Shippori Antique", "シッポリアンティーク", sans-serif;
}

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

.semibold {
  font-weight: 600;
}

.c-text {
  color: #15161b;
}

.c-gray {
  color: #8a8d97;
}

.c-orange {
  color: #efa45e;
}

.fs40 {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .fs40 {
    font-size: 28px;
  }
}

.fs28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .fs28 {
    font-size: 20px;
  }
}

.fs24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .fs24 {
    font-size: 18px;
  }
}

.fs20 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .fs20 {
    font-size: 16px;
  }
}

.fs18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .fs18 {
    font-size: 14px;
  }
}

.fs15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .fs15 {
    font-size: 13px;
  }
}

.text-indent {
  margin-left: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .text-indent {
    margin-left: 16px;
    padding-left: 16px;
  }
}

.indent {
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .indent {
    padding-left: 26px;
  }
}

.nowrap {
  white-space: nowrap;
}

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

.components-showcase {
  padding: 40px;
  background-color: #f2f5f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.components-showcase__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c2c5d2;
}
.components-showcase__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.components-showcase__variant {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8a8d97;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wp-pagenavi {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 6px;
  }
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend {
  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;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.025em;
  border-radius: 5px;
  color: #15161b;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .first,
  .wp-pagenavi .last,
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .extend {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
.wp-pagenavi a.first,
.wp-pagenavi a.last,
.wp-pagenavi a.page {
  border: 1px solid transparent;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi a.first:hover,
.wp-pagenavi a.last:hover,
.wp-pagenavi a.page:hover {
  opacity: 0.7;
  border-color: #63b6f2;
}
.wp-pagenavi .current {
  border: 1px solid #63b6f2;
  font-weight: 600;
  background-color: #fff;
}