/*--
  font-family
--*/
/*--
  font-weight
  Noto Sans
--*/
/*--
  colors
--*/
/*--
  break points
--*/
/**
 * font-size
 *
 * @param $fontSize
 */
/**
 * for mobile font-size
 *
 * @param $fontSize
 */
/**
 * letter-spacing
 *
 * @param $letterSpacingValue
 * @param $isMinus
 */
/**
 * line-height
 *
 * @param $fs
 * @param $lh
 */
/*--
  media queries
--*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
}

a {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

.c-visually-hidden {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

@media screen and (max-width: 767px) {
  .c-mobile-hidden {
    display: none;
  }
}

.c-animation {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.c-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  z-index: 100;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.header.fixed .header__navigation__link {
  color: #222;
}
@media screen and (max-width: 767px) {
  .header.fixed .header__navigation__link {
    color: #0077CD;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header.fixed .header__navigation__link {
    color: #0077CD;
  }
}
.header.fixed .header__navigation__link.contact-button {
  color: #0077CD;
  border-color: #0077CD;
}
.header.fixed .header__navigation__link.free-button {
  color: #fff;
}
.header.fixed .header__hamburger__border {
  background-color: #000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1040px;
  padding: 12px 20px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__inner {
    max-width: unset;
  }
}
.header__link {
  width: 223px;
}
@media screen and (max-width: 767px) {
  .header__link {
    width: 70%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link {
    width: 50%;
  }
}
.header__link__image {
  width: 100%;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 17px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger__border {
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background-color: #fff;
}
.header__navigation {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    overflow-y: auto;
    background-color: #F3FAFF;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: block;
    width: 50%;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    overflow-y: auto;
    background-color: #F3FAFF;
  }
}
.header__navigation.active {
  transform: translateX(0);
}
.header__navigation__mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .header__navigation__mobile-header {
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation__mobile-header {
    display: flex;
  }
}
.header__navigation__mobile-header .logo {
  width: 70%;
}
.header__navigation__mobile-header .close {
  position: relative;
  width: 17px;
  height: 17px;
  transform: rotate(45deg);
}
.header__navigation__mobile-header .close__border {
  position: absolute;
  display: block;
  border-radius: 20px;
  background-color: #222;
}
.header__navigation__mobile-header .close__border:first-of-type {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
}
.header__navigation__mobile-header .close__border:last-of-type {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 17px;
}
.header__navigation__link {
  font-size: 0.875rem;
  color: #fff;
  line-height: 180%;
  margin: 0 8px 0 0;
}
@media screen and (max-width: 767px) {
  .header__navigation__link {
    display: block;
    width: calc(100% - 70px);
    font-size: 5vw;
    color: #0077CD;
    line-height: 200%;
    padding: 0 0 20px;
    margin: 0 auto 20px;
    border-bottom: 2px solid #C9DBE8;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation__link {
    display: block;
    width: calc(100% - 70px);
    color: #0077CD;
    line-height: 200%;
    padding: 0 0 20px;
    margin: 0 auto 20px;
    border-bottom: 2px solid #C9DBE8;
  }
}
.header__navigation__link.contact-button {
  width: fit-content;
  padding: 8px 18px;
  margin: 0;
  border-radius: 40px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .header__navigation__link.contact-button {
    width: calc(100% - 30px);
    font-size: 5vw;
    margin-inline: auto;
    text-align: center;
    border-color: #0077CD;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation__link.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 30px);
    height: 70px;
    font-size: 1rem;
    margin-inline: auto;
    text-align: center;
    border-color: #0077CD;
  }
}
.header__navigation__link.free-button {
  width: fit-content;
  padding: 8px 14px;
  margin: 0;
  border-radius: 40px;
  background: linear-gradient(96deg, #E7B400 10.13%, #F35800 89.58%);
}
@media screen and (max-width: 767px) {
  .header__navigation__link.free-button {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation__link.free-button {
    display: none;
  }
}
.header__navigation__free-button {
  display: none;
  flex-direction: column;
  width: calc(100% - 30px);
  margin: 50px auto 16px;
}
@media screen and (max-width: 767px) {
  .header__navigation__free-button {
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation__free-button {
    display: flex;
  }
}
.header__navigation__free-button__text {
  position: relative;
  width: fit-content;
  font-size: 4.0625vw;
  color: #00449F;
  line-height: 140%;
  padding: 6px 14px;
  margin-inline: auto;
  border-radius: 63px;
  background-color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__navigation__free-button__text {
    font-size: 0.8125rem;
  }
}
.header__navigation__free-button__text::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
.header__navigation__free-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  font-size: 1.25rem;
  color: #fff;
  padding: 23px 0 17px;
  margin: -10px 0 0;
  text-align: center;
  border-radius: 40px;
  background: linear-gradient(96deg, #E7B400 10.13%, #F35800 89.58%);
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .header__navigation__free-button__link {
    font-size: 5vw;
  }
}

.footer {
  padding: 60px 15px 30px;
  background-color: #003A5B;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0 6px;
  }
}
.footer__inner {
  display: grid;
  gap: 0 12%;
  grid-template-columns: 38.2% 1fr;
  grid-template-rows: auto 1fr auto;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__inner {
    gap: 0 24px;
  }
}
.footer__logo {
  grid-column: 1/2;
  grid-row: 1/2;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    display: block;
    grid-column: 1/3;
    width: calc(100% - 30px);
    margin: 0 auto 20px;
  }
}
.footer__text {
  grid-column: 1/2;
  grid-row: 2/3;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .footer__text {
    grid-column: 1/3;
    font-size: 4.0625vw;
    margin: 0 0 50px;
    text-align: center;
  }
}
.footer__navigation {
  grid-column: 2/3;
  grid-row: 1/3;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__navigation {
    grid-column: 1/3;
    grid-row: 3/4;
    gap: 20px;
    flex-direction: column;
    width: fit-content;
    margin-inline: auto;
  }
}
.footer__navigation__list {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.footer__navigation__list li {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.footer__navigation__list li::before {
  content: "-";
  color: #fff;
}
.footer__navigation__list li a {
  font-size: 0.875rem;
  color: #fff;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .footer__navigation__list li a {
    font-size: 4.375vw;
  }
}
.footer__bottom {
  grid-column: 1/3;
  grid-row: 3/4;
  display: grid;
  grid-template-columns: 38.2% 1fr;
  gap: 12%;
  padding: 30px 0 0;
  margin: 80px 0 0;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    gap: 30px;
    grid-column: 1/3;
    grid-row: 4/5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__bottom {
    gap: 0 24px;
  }
}
.footer__copyright {
  font-weight: 500;
  font-size: 0.75rem;
  color: #fff;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    grid-column: 1/3;
    grid-row: 2/3;
    justify-self: center;
    font-size: 3.75vw;
  }
}
.footer__links {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer__links {
    grid-column: 1/3;
    grid-row: 1/2;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__links {
    gap: 0 8px;
  }
}
.footer__links a {
  font-weight: 500;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: underline;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .footer__links a {
    font-size: 3.75vw;
  }
}

.top-wrapper {
  background-image: url("../../images/lp/main-bk.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-wrapper {
    background-image: url("../../images/lp/sp-main-bk.webp");
  }
}

.main-visual {
  display: grid;
  grid-template-columns: 1fr 54%;
  max-width: 1040px;
  color: #fff;
  padding: 38px 20px 41px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .main-visual {
    grid-template-columns: 1fr;
    padding: 20px 15px 39px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual {
    gap: 16px 0;
  }
}
.main-visual__title {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  gap: 8px;
  flex-direction: column;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .main-visual__title {
    margin: 0 0 16px;
  }
}
.main-visual__title__small {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: 0.8125rem;
  padding: 0 10px;
  line-height: 210%;
  border-radius: 5px;
  border: 1px solid #fff;
}
.main-visual__title__small img {
  width: 52px;
  height: 20px;
}
.main-visual__title__large {
  font-size: clamp(2.9375rem, 4.16vw, 3.75rem);
  line-height: 130%;
  letter-spacing: -0.18rem;
}
@media screen and (max-width: 767px) {
  .main-visual__title__large {
    font-size: 11.25vw;
    letter-spacing: unset;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__title__large {
    font-size: 2.75rem;
  }
}
.main-visual__text {
  grid-column: 1/2;
  grid-row: 2/3;
  line-height: 210%;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .main-visual__text {
    font-size: 4.0625vw;
    line-height: 200%;
    text-align: center;
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__text br {
    display: none;
  }
}
.main-visual__link {
  grid-column: 1/2;
  grid-row: 3/4;
  display: flex;
  flex-direction: column;
  width: 87%;
  margin: 0 0 16px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.main-visual__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .main-visual__link {
    grid-row: 4/5;
    width: 100%;
  }
}
.main-visual__link__text {
  position: relative;
  width: fit-content;
  font-size: 0.8125rem;
  color: #00449F;
  line-height: 140%;
  padding: 6px 14px;
  margin-inline: auto;
  border-radius: 63px;
  background-color: #fff;
}
.main-visual__link__text::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
.main-visual__link__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  font-size: 1.25rem;
  color: #fff;
  padding: 23px 0 17px;
  margin: -10px 0 0;
  text-align: center;
  border-radius: 40px;
  background: linear-gradient(96deg, #E7B400 10.13%, #F35800 89.58%);
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.main-visual__link__link:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .main-visual__link__link {
    font-size: 5vw;
  }
}
.main-visual__contact-link {
  grid-column: 1/2;
  grid-row: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 87%;
  height: 70px;
  line-height: 150%;
  padding: 21px 0;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .main-visual__contact-link {
    grid-row: 5/6;
    width: 100%;
    font-size: 5vw;
  }
}
.main-visual__image {
  grid-column: 2/3;
  grid-row: 1/5;
}
@media screen and (max-width: 767px) {
  .main-visual__image {
    grid-column: 1/2;
    grid-row: 3/4;
    margin: 0 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__image {
    align-self: center;
  }
}
.main-visual__image__image {
  width: 100%;
}
.main-visual__image__wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 50px;
  margin: -50px 0 0;
}
@media screen and (max-width: 767px) {
  .main-visual__image__wrapper {
    padding: 0;
  }
}
.main-visual__image__wrapper .item {
  position: relative;
  width: calc((100% - 20px) / 3);
}
.main-visual__image__wrapper .item__text {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  color: #fff;
  border-radius: 50%;
  background-color: #27B22F;
}
.main-visual__image__wrapper .item__image {
  width: 100%;
  margin: 0 0 5px;
}
.main-visual__image__wrapper .item__caption {
  font-size: 0.875rem;
  color: #fff;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__image__wrapper .item__caption {
    font-size: 0.75rem;
  }
}

.main {
  display: block;
}

.introduction {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 38px 15px 41px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .introduction {
    gap: 10px 7px;
    flex-wrap: wrap;
    padding: 19px 15px;
  }
}
.introduction__title {
  font-size: 1.5rem;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .introduction__title {
    width: 100%;
    font-size: 7.5vw;
    text-align: center;
    padding: 0;
  }
}
.introduction__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .introduction__title br {
    display: block;
  }
}
.introduction__item {
  min-height: 38px;
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  color: #74542E;
  line-height: 160%;
  padding: 0 18px;
  background-image: url("../../images/lp/tip-left.png"), url("../../images/lp/tip-right.png");
  background-repeat: no-repeat;
  background-position: top left, top right;
  background-size: 17px auto;
}
@media screen and (max-width: 767px) {
  .introduction__item {
    font-size: 5.625vw;
  }
}

.about {
  padding: 59px 15px 6px;
  background-color: #DFF0FD;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 40px 15px 20px;
  }
}
.about__title {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .about__title {
    gap: 0;
    flex-direction: column;
    margin: 0 0 19px;
  }
}
.about__title__image {
  max-width: 517px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .about__title__image {
    width: 100%;
  }
}
.about__title__large {
  font-size: 2.5rem;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .about__title__large {
    font-size: 10vw;
  }
}
.about__text {
  line-height: 200%;
  margin: 0 0 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 4.375vw;
  }
}
.about__text span {
  color: #0077CD;
}
.about__important {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 7px 54px 17px;
  margin: 0 auto 34px;
  filter: drop-shadow(0 0 25px rgba(0, 158, 230, 0.2));
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .about__important {
    width: 100%;
    gap: 9px;
    padding: 5px;
    margin: 0 auto 38px;
  }
}
.about__important::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
.about__important__heading {
  grid-column: 1/4;
  grid-row: 1/2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 2rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .about__important__heading {
    font-size: 5.625vw;
  }
}
.about__important__heading .blue {
  color: #0077CD;
}
.about__important__heading .large {
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  color: #0077CD;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .about__important__heading .large {
    font-size: 15.625vw;
    line-height: 100%;
  }
}
.about__important__bottom {
  display: flex;
  gap: 11px;
  justify-content: center;
  width: fit-content;
  padding: 6px 25px 2px;
  border-radius: 63px;
  background-color: #EBF5FC;
}
@media screen and (max-width: 767px) {
  .about__important__bottom {
    gap: 9px;
    width: 100%;
    padding: 6px 5px 2px;
  }
}
.about__important__before {
  display: flex;
  align-items: baseline;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .about__important__before {
    gap: 5px;
    font-size: 3.75vw;
    white-space: nowrap;
    align-self: center;
  }
}
.about__important__before .large {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .about__important__before .large {
    font-size: 5.625vw;
  }
}
.about__important__arrow {
  width: 15px;
}
@media screen and (max-width: 767px) {
  .about__important__arrow {
    width: 3.125vw;
  }
}
.about__important__after {
  display: flex;
  align-items: baseline;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .about__important__after {
    gap: 5px;
    font-size: 3.75vw;
    white-space: nowrap;
  }
}
.about__important__after .logo {
  display: flex;
  gap: 3px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about__important__after .logo {
    width: 107px;
  }
}
.about__important__after .logo__image {
  width: 156px;
  height: auto;
}
.about__important__after .large {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .about__important__after .large {
    grid-column: 1/2;
    justify-self: flex-end;
  }
}
.about__images {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 60px;
  justify-content: center;
  max-width: 1000px;
  margin-inline: auto;
  background-image: url("../../images/lp/arrow-gray.svg");
  background-repeat: no-repeat;
  background-size: 29px auto;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .about__images {
    gap: 0;
    background-image: url("../../images/lp/arrow-gray-bottom.svg");
    background-size: auto 16px;
    background-position: center 45%;
  }
}
.about__images__item {
  position: relative;
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .about__images__item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about__images__item:first-of-type {
    margin: 0 0 39px;
  }
}
.about__images__item .image {
  width: 100%;
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 0 26.912px 0 rgba(0, 158, 230, 0.2);
}
.about__images__item .text {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 96px;
  font-size: 1.25rem;
  color: #fff;
  padding: 20px 0 0;
  aspect-ratio: 1/1;
  text-align: center;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .about__images__item .text {
    top: -19px;
  }
}
.about__images__item .text.red {
  background-color: #F83939;
}
.about__images__item .text.green {
  background-color: #27B22F;
}
.about__images__item .text__large {
  font-family: "Oswald", sans-serif;
  font-size: 2.25rem;
  line-height: 90%;
}
.about__images__item .text__small {
  font-size: 0.75rem;
  line-height: 170%;
}
.about__images__caption {
  width: 100%;
  font-weight: 500;
  font-size: 0.625rem;
  color: #747474;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .about__images__caption {
    font-size: 3.75vw;
    margin: 19px 0 0;
    line-height: 150%;
    text-align: left;
  }
}

.issue {
  padding: 49px 0 0;
  background-color: #C9DBEB;
}
@media screen and (max-width: 767px) {
  .issue {
    padding: 40px 0 0;
  }
}
.issue__title {
  font-size: 2.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .issue__title {
    font-size: 10vw;
    margin: 0 0 20px;
  }
}
.issue__top {
  padding: 0 15px 9px;
}
@media screen and (max-width: 767px) {
  .issue__top {
    padding: 0 20px 50px;
  }
}
.issue__top__images {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  margin: 0 0 16px;
}
@media screen and (max-width: 767px) {
  .issue__top__images {
    gap: 9px;
    margin: 0;
  }
}
.issue__top__images .item {
  position: relative;
  width: 180px;
}
@media screen and (max-width: 767px) {
  .issue__top__images .item {
    width: calc((100% - 18px) / 3);
    max-width: 100%;
  }
}
.issue__top__images .item__point {
  position: absolute;
  top: 15px;
  left: 0;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .issue__top__images .item__point {
    width: 19px;
    height: 19px;
  }
}
.issue__top__images .item__image {
  width: 100%;
}
.issue__top__images .item__caption {
  font-size: 1.25rem;
  line-height: 150%;
  text-align: center;
  margin: 9px 0;
}
@media screen and (max-width: 767px) {
  .issue__top__images .item__caption {
    font-size: 4.0625vw;
    line-height: 140%;
  }
}
.issue__top__illustration {
  display: grid;
  gap: 20px 0;
  grid-template-columns: 13% 1fr 10%;
  grid-template-rows: repeat(2, auto) 1fr;
  max-width: 670px;
  margin-inline: auto;
}
.issue__top__illustration .arrow {
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: center;
}
.issue__top__illustration .women {
  align-self: end;
  position: relative;
  z-index: 1;
  grid-column: 1/2;
  grid-row: 1/4;
}
@media screen and (max-width: 767px) {
  .issue__top__illustration .women {
    grid-row: 1/3;
    align-self: end;
  }
}
.issue__top__illustration .balloon {
  position: relative;
  grid-column: 2/3;
  grid-row: 2/3;
  justify-self: center;
  align-self: flex-start;
  width: fit-content;
  font-size: 1.5rem;
  line-height: 160%;
  text-align: center;
  padding: 19px 48px 21px;
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .issue__top__illustration .balloon {
    position: static;
    align-self: center;
    grid-column: 1/4;
    width: 100%;
    font-size: 5vw;
    padding: 10px 48px 6px;
  }
}
.issue__top__illustration .balloon::before, .issue__top__illustration .balloon::after {
  position: absolute;
  top: 0;
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .issue__top__illustration .balloon::before, .issue__top__illustration .balloon::after {
    display: none;
  }
}
.issue__top__illustration .balloon::before {
  left: 9px;
  transform: rotate(130deg);
}
.issue__top__illustration .balloon::after {
  right: 9px;
  transform: rotate(-130deg);
}
.issue__top__illustration .balloon .blue {
  color: #0077CD;
}
.issue__top__illustration .text {
  grid-column: 2/3;
  grid-row: 3/4;
  font-size: 0.875rem;
  line-height: 200%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .issue__top__illustration .text {
    grid-column: 1/4;
    font-size: 4.375vw;
  }
}
.issue__top__illustration .men {
  position: relative;
  grid-column: 3/4;
  grid-row: 1/4;
}
@media screen and (max-width: 767px) {
  .issue__top__illustration .men {
    grid-row: 1/3;
    align-self: end;
  }
}
.issue__middle {
  padding: 50px 15px 60px;
  background-color: #003A5B;
}
@media screen and (max-width: 767px) {
  .issue__middle {
    padding: 40px 15px 33px;
  }
}
.issue__middle__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .issue__middle__title {
    gap: 11px;
    margin: 0 0 20px;
  }
}
.issue__middle__title .small {
  font-size: 1.25rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .issue__middle__title .small {
    font-size: 5.625vw;
    line-height: 150%;
  }
}
.issue__middle__title .large {
  font-size: 2.5rem;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .issue__middle__title .large {
    font-size: 10vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .issue__middle__title .large {
    font-size: 1.875rem;
  }
}
.issue__middle__items {
  display: flex;
  gap: 19px;
  justify-content: center;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .issue__middle__items {
    gap: 15px;
    flex-direction: column;
  }
}
.issue__middle__items .item {
  width: calc((100% - 40px) / 3);
  overflow: hidden;
  border-radius: 15px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .issue__middle__items .item {
    width: 100%;
  }
}
.issue__middle__items .item__image {
  margin: 0 0 16px;
  background-color: #D6E1EB;
}
.issue__middle__items .item__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .issue__middle__items .item__image img {
    aspect-ratio: 29/14;
    object-fit: cover;
  }
}
.issue__middle__items .item__title {
  font-size: 1.25rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .issue__middle__items .item__title {
    font-size: 5.625vw;
  }
}
.issue__middle__items .item__text {
  font-size: 0.8125rem;
  line-height: 140%;
  padding: 0 16px 16px;
}
@media screen and (max-width: 767px) {
  .issue__middle__items .item__text {
    font-size: 4.0625vw;
  }
}
.issue__middle__items .item__text .blue {
  color: #0077CD;
}
.issue__bottom {
  padding: 0 15px;
  background-color: #003A5B;
}
@media screen and (max-width: 767px) {
  .issue__bottom {
    padding: 0 0 0 15px;
  }
}
.issue__bottom__inner {
  display: grid;
  gap: 13px;
  grid-template-columns: auto 1fr auto;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .issue__bottom__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
}
.issue__bottom__image {
  grid-row: 1/4;
  grid-column: 1/3;
  width: 290px;
  justify-self: end;
}
@media screen and (max-width: 767px) {
  .issue__bottom__image {
    grid-row: 2/4;
    grid-column: 1/2;
    max-width: 96.25vw;
    margin: 0 -40px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .issue__bottom__image {
    max-width: 100%;
  }
}
.issue__bottom__voice01, .issue__bottom__voice02, .issue__bottom__voice03 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 45px;
  font-size: 0.875rem;
  padding: 0 35px;
  border-radius: 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .issue__bottom__voice01, .issue__bottom__voice02, .issue__bottom__voice03 {
    padding: 0 30px;
  }
}
.issue__bottom__voice01::after, .issue__bottom__voice02::after, .issue__bottom__voice03::after {
  position: absolute;
  content: "";
  width: 15px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
.issue__bottom__voice01 {
  grid-row: 1/2;
  grid-column: 3/4;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .issue__bottom__voice01 {
    grid-row: 2/3;
    grid-column: 1/2;
    margin: 0;
  }
}
.issue__bottom__voice01::after {
  top: 27px;
  left: -5px;
  transform: rotate(62deg);
}
@media screen and (max-width: 767px) {
  .issue__bottom__voice01::after {
    right: -5px;
    left: unset;
    transform: rotate(-62deg);
  }
}
.issue__bottom__voice02 {
  grid-row: 1/3;
  grid-column: 1/2;
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .issue__bottom__voice02 {
    grid-row: 1/2;
    grid-column: 1/2;
    margin: 0;
  }
}
.issue__bottom__voice02::after {
  top: 27px;
  right: -5px;
  transform: rotate(-62deg);
}
.issue__bottom__voice03 {
  grid-row: 2/3;
  grid-column: 3/4;
}
@media screen and (max-width: 767px) {
  .issue__bottom__voice03 {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
.issue__bottom__voice03::after {
  top: 27px;
  left: -5px;
  transform: rotate(62deg);
}
@media screen and (max-width: 767px) {
  .issue__bottom__voice03::after {
    right: -5px;
    left: unset;
    transform: rotate(-62deg);
  }
}

.solution {
  padding: 60px 15px;
  background-image: url("../../images/lp/solution-bk.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .solution {
    padding: 40px 6px 50px;
  }
}
.solution__title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 3.125rem;
  line-height: 150%;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .solution__title {
    display: block;
    font-size: 10vw;
    text-align: center;
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .solution__title {
    font-size: 2.5rem;
  }
}
.solution__title__image {
  width: 564px;
}
@media screen and (max-width: 767px) {
  .solution__title__image {
    width: 79.6875vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .solution__title__image {
    width: 60%;
  }
}
.solution__text {
  line-height: 200%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .solution__text {
    font-size: 4.375vw;
  }
}
.solution__text .blue {
  color: #0077CD;
}
.solution__image {
  display: block;
  max-width: 910px;
  margin-inline: auto;
}

.verification {
  padding: 49px 15px 60px;
  background-color: #F3FAFF;
}
@media screen and (max-width: 767px) {
  .verification {
    padding: 40px 15px 50px;
  }
}
.verification__title {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 1.125rem;
  color: #fff;
  line-height: 160%;
  padding: 8px 32px;
  margin: 0 auto 17px;
  border-radius: 63px;
  background-color: #0077CD;
}
@media screen and (max-width: 767px) {
  .verification__title {
    gap: 5px;
    width: 100%;
    font-size: 4.375vw;
    white-space: nowrap;
    padding: 8px;
  }
}
.verification__title::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #0077CD;
}
.verification__title__image {
  width: 198px;
}
.verification__large-text {
  font-size: 2.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .verification__large-text {
    font-size: 10vw;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .verification__large-text__mobile-small {
    font-size: 7.5vw;
  }
}
.verification__large-text .blue {
  color: #0077CD;
}
.verification__examples {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  max-width: 664px;
  margin-inline: auto;
}
.verification__examples__item {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .verification__examples__item {
    gap: 10px;
    flex-direction: column;
    align-items: unset;
    width: 100%;
  }
}
.verification__examples__item .image {
  width: 100%;
  max-width: 301px;
  filter: drop-shadow(0 0 23.102px rgba(0, 158, 230, 0.2));
}
@media screen and (max-width: 767px) {
  .verification__examples__item .image {
    max-width: unset;
  }
}
.verification__examples__item .caption {
  font-size: 1.5rem;
  white-space: nowrap;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .verification__examples__item .caption {
    font-size: 4.375vw;
  }
}
.verification__examples__item .caption__name {
  width: fit-content;
  font-size: 0.8125rem;
  color: #0077CD;
  line-height: 140%;
  padding: 4px 12px;
  margin: 0 0 12px;
  border-radius: 45px;
  border: 1px solid #0077CD;
}
@media screen and (max-width: 767px) {
  .verification__examples__item .caption__name {
    font-size: 4.0625vw;
  }
}
.verification__examples__item .caption__icon {
  width: 54px;
  align-self: 1/1;
}
@media screen and (max-width: 767px) {
  .verification__examples__item .caption__icon {
    width: 16.875vw;
  }
}
.verification__examples__item .caption__large {
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  color: #F83939;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .verification__examples__item .caption__large {
    font-size: 15.625vw;
    line-height: 100%;
  }
}
.verification__examples__item .caption__middle {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #F83939;
}
@media screen and (max-width: 767px) {
  .verification__examples__item .caption__middle {
    font-size: 10vw;
  }
}

.check {
  background: linear-gradient(to top, #D1E9FA 0% 50%, #F3FAFF 50% 100%);
}
.check--2 {
  background: linear-gradient(to top, #000 0% 50%, #D1E9FA 50% 100%);
}
.check__inner {
  padding: 60px 15px 70px;
  border-radius: 50px;
  background: url("../../images/lp/check-bk.png"), linear-gradient(100deg, #009EE6 13.98%, #00449F 87.64%);
  background-repeat: no-repeat;
  background-size: 52.6% auto, 100% 100%;
  background-position: right bottom, top left;
}
@media screen and (max-width: 767px) {
  .check__inner {
    padding: 60px 15px;
    border-radius: 30px;
    background-size: 80% auto, 100% 100%;
  }
}
.check__title {
  font-size: 1.5rem;
  color: #fff;
  line-height: 140%;
  text-align: center;
  margin: 0 0 18px;
}
@media screen and (max-width: 767px) {
  .check__title {
    font-size: 4.375vw;
    margin: 0 0 20px;
  }
}
.check__large-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3.125rem;
  color: #fff;
  line-height: 160%;
  margin: 0 0 27px;
}
@media screen and (max-width: 767px) {
  .check__large-text {
    font-size: 10vw;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .check__large-text__top {
    display: flex;
    gap: 3px;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .check__large-text__mobile-small {
    font-size: 5.625vw;
    line-height: 130%;
  }
}
.check__large-text__image {
  width: 626px;
}
@media screen and (max-width: 767px) {
  .check__large-text__image {
    width: 93%;
  }
}
.check__large-text__small {
  font-size: 1.8125rem;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .check__large-text__small {
    font-size: 0.75rem;
  }
}
.check__buttons {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  max-width: 816px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .check__buttons {
    flex-direction: column;
  }
}
.check__button {
  display: flex;
  flex-direction: column;
  flex: 1;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.check__button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .check__button {
    width: 100%;
  }
}
.check__button__text {
  position: relative;
  width: fit-content;
  font-size: 0.8125rem;
  color: #00449F;
  line-height: 140%;
  padding: 6px 14px;
  margin-inline: auto;
  border-radius: 63px;
  background-color: #fff;
}
.check__button__text::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
.check__button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  font-size: 1.25rem;
  color: #fff;
  padding: 23px 0 17px;
  margin: -10px 0 0;
  text-align: center;
  border-radius: 40px;
  background: linear-gradient(96deg, #E7B400 10.13%, #F35800 89.58%);
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.2);
}
.check__button__link:hover {
  opacity: 1;
}
.check__contact-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  font-size: 1.25rem;
  color: #fff;
  line-height: 150%;
  padding: 21px 0;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .check__contact-button {
    width: 100%;
  }
}

.feature {
  padding: 79px 15px 60px;
  background-color: #D1E9FA;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 44px 15px 50px;
  }
}
.feature__title {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  line-height: 160%;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .feature__title {
    display: block;
    font-size: 10vw;
    text-align: center;
    margin: 0 0 20px;
  }
}
.feature__title__image {
  width: 512px;
}
@media screen and (max-width: 767px) {
  .feature__title__image {
    width: 80vw;
  }
}
.feature__base {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .feature__base {
    flex-direction: column;
  }
}
.feature__base__item {
  width: calc(50% - 15px);
  padding: 0 0 20px;
  border-radius: 15px;
  box-shadow: 0 0 23.102px rgba(0, 158, 230, 0.2);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .feature__base__item {
    width: 100%;
  }
}
.feature__base__item .image {
  width: 100%;
  aspect-ratio: 390/211;
  margin: 0 0 20px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .feature__base__item .image {
    aspect-ratio: 29/16;
  }
}
.feature__base__item .title {
  font-size: 1.25rem;
  color: #0077CD;
  line-height: 150%;
  margin: 0 0 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__base__item .title {
    font-size: 5.625vw;
  }
}
.feature__base__item .text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .feature__base__item .text {
    font-size: 4.375vw;
  }
}
.feature__other {
  max-width: 800px;
  margin: 0 auto 46px;
}
.feature__other__title {
  font-size: 1.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 14px;
}
@media screen and (max-width: 767px) {
  .feature__other__title {
    font-size: 7.5vw;
    margin: 0 0 15px;
  }
}
.feature__other__items {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 20px;
}
@media screen and (max-width: 767px) {
  .feature__other__items {
    gap: 10px;
    flex-direction: column;
  }
}
.feature__other__items .item {
  position: relative;
  width: calc(50% - 10px);
  padding: 20px 20px 25px;
  border-radius: 15px;
  box-shadow: 0 0 23.102px rgba(0, 158, 230, 0.2);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .feature__other__items .item {
    width: 100%;
    padding: 15px;
  }
}
.feature__other__items .item.coming-soon {
  background-color: #EEEEEE;
}
@media screen and (max-width: 767px) {
  .feature__other__items .item.coming-soon {
    margin: 13px 0 0;
  }
}
.feature__other__items .item__title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 13px;
}
@media screen and (max-width: 767px) {
  .feature__other__items .item__title {
    margin: 0 0 10px;
  }
}
.feature__other__items .item__title__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  background-color: #0077CD;
}
.feature__other__items .item__title__icon svg {
  width: 22px;
}
.feature__other__items .item__title__text {
  font-size: 1.125rem;
  color: #0077CD;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .feature__other__items .item__title__text {
    font-size: 4.375vw;
  }
}
.feature__other__items .item__text {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .feature__other__items .item__text {
    font-size: 4.0625vw;
  }
}
.feature__other__items .item__cs {
  position: absolute;
  top: -7px;
  left: 10px;
  font-size: 0.75rem;
  color: #fff;
  padding: 2px 12px;
  line-height: 160%;
  border-radius: 50px;
  background-color: #818181;
}
@media screen and (max-width: 767px) {
  .feature__other__items .item__cs {
    top: -13px;
    left: 0;
    padding: 0 12px;
    font-size: 3.75vw;
  }
}
.feature__ckan__title {
  font-size: 1.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 14px;
}
@media screen and (max-width: 767px) {
  .feature__ckan__title {
    font-size: 7.5vw;
    margin: 0 0 15px;
  }
}
.feature__ckan__text {
  max-width: 800px;
  font-size: 0.875rem;
  line-height: 200%;
  padding: 20px 20px 25px;
  margin-inline: auto;
  border-radius: 15px;
  box-shadow: 0 0 23.102px rgba(0, 158, 230, 0.2);
  background-color: #fff;
}
.feature__ckan__text .blue {
  font-size: 1.125rem;
  color: #0077CD;
  line-height: 160%;
  text-align: center;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .feature__ckan__text .blue {
    font-size: 5.625vw;
  }
}
.feature__ckan__text .text {
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .feature__ckan__text .text {
    font-size: 4.0625vw;
  }
}

.operation {
  padding: 60px 15px;
  background-color: #EBF3F8;
}
@media screen and (max-width: 767px) {
  .operation {
    padding: 40px 0 50px 15px;
  }
}
.operation__title {
  font-size: 2.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .operation__title {
    font-size: 10vw;
    margin: 0 0 20px;
  }
}
.operation__title .blue {
  color: #0077CD;
}
.operation__body {
  display: flex;
  justify-content: flex-end;
  max-width: 800px;
  margin-inline: auto;
}
.operation__body__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 883px;
  margin-left: -83px;
}
@media screen and (max-width: 767px) {
  .operation__body__inner {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .operation__body__inner {
    flex-direction: column;
    max-width: 800px;
    margin: 0;
  }
}
.operation__body__text {
  order: 2;
  width: 39%;
  font-size: 0.875rem;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .operation__body__text {
    grid-column: 1/2;
    grid-row: 3/4;
    width: 100%;
    font-size: 4.375vw;
    padding: 0 15px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .operation__body__text {
    width: 100%;
  }
}
.operation__body__text p:not(:first-of-type) {
  margin: 1em 0 0;
}
.operation__body__text p .blue {
  color: #0077CD;
}
.operation__body__image {
  display: grid;
  gap: 11px;
  grid-template-columns: 83px 1fr;
  order: 1;
  width: 59%;
}
@media screen and (max-width: 767px) {
  .operation__body__image {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .operation__body__image {
    width: 100%;
  }
}
.operation__body__image .voice01,
.operation__body__image .voice02 {
  position: relative;
  grid-column: 1/3;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 45px;
  font-size: 0.875rem;
  padding: 0 35px;
  border-radius: 50px;
  filter: drop-shadow(4px 3px 11px rgba(0, 0, 0, 0.2));
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .operation__body__image .voice01,
  .operation__body__image .voice02 {
    height: auto;
    font-size: 4.0625vw;
    line-height: 150%;
    padding: 10px 15px;
  }
}
.operation__body__image .voice01::after,
.operation__body__image .voice02::after {
  position: absolute;
  top: 30px;
  right: -8px;
  transform: rotate(-62deg);
  content: "";
  width: 15px;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
}
.operation__body__image .voice01 {
  grid-row: 2/3;
}
.operation__body__image .voice02 {
  grid-row: 3/4;
}
@media screen and (max-width: 767px) {
  .operation__body__image .voice02::after {
    top: 70%;
  }
}
.operation__body__image .image {
  grid-row: 1/5;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .operation__body__image .image {
    width: 117vw;
    max-width: unset;
    margin: 0 -117px 0 0;
  }
}

.introduction-02 {
  padding: 60px 15px 70px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .introduction-02 {
    padding: 49px 15px 48px;
  }
}
.introduction-02__title {
  font-size: 2.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .introduction-02__title {
    font-size: 10vw;
  }
}
.introduction-02__items {
  display: flex;
  gap: 25px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .introduction-02__items {
    width: 100%;
    gap: 7px;
  }
}
.introduction-02__items__item {
  font-size: 2rem;
  color: #74542E;
  padding: 8px 38px;
  line-height: 160%;
  background-image: url("../../images/lp/tip-left.png"), url("../../images/lp/tip-right.png");
  background-repeat: no-repeat;
  background-position: top left, top right;
  background-size: 29px auto;
}
@media screen and (max-width: 767px) {
  .introduction-02__items__item {
    flex: 1;
    font-size: 5.625vw;
    white-space: nowrap;
    padding: 8px 13px;
    text-align: center;
    background-position: center left, center right;
    background-size: 18px auto;
  }
}

.event {
  padding: 60px 15px 62px;
  background-color: #0077CD;
}
@media screen and (max-width: 767px) {
  .event {
    padding: 40px 15px 50px;
  }
}
.event__title {
  font-size: 2.5rem;
  color: #fff;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .event__title {
    font-size: 10vw;
    margin: 0 0 22px;
  }
}
.event__images {
  display: flex;
  gap: 31px;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .event__images {
    gap: 40px;
    flex-direction: column;
  }
}
.event__images__item {
  position: relative;
  width: 33%;
  max-width: 397px;
}
@media screen and (max-width: 767px) {
  .event__images__item {
    width: 100%;
    max-width: unset;
  }
}
.event__images__item .image-frame {
  aspect-ratio: 5/3;
  margin: 0 0 15px;
  overflow: hidden;
  border-radius: 15px;
}
.event__images__item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event__images__item .icon {
  position: absolute;
  top: -8px;
  left: -17px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 77px;
  font-family: "Oswald", sans-serif;
  font-size: 1.125rem;
  color: #0077CD;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #F4CF0E;
}
@media screen and (max-width: 767px) {
  .event__images__item .icon {
    top: -12px;
    left: -6px;
    width: 16.25vw;
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .event__images__item .icon {
    top: unset;
    bottom: 80px;
  }
}
.event__images__item .caption {
  font-size: 1.5rem;
  color: #fff;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .event__images__item .caption {
    font-size: 5.625vw;
  }
}
.event__images__item .caption__link {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 12px 0 0;
}
@media screen and (max-width: 767px) {
  .event__images__item .caption__link {
    margin: 10px 0 0;
  }
}
.event__images__item .caption svg {
  width: 17px;
}
.event__images__item .caption a {
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: underline;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .event__images__item .caption a {
    font-size: 3.75vw;
  }
}

.flow {
  padding: 60px 15px 58px;
  background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 40px 15px 50px;
  }
}
.flow__title {
  font-size: 2.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 10vw;
  }
}
.flow__body {
  display: flex;
  gap: 18px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow__body {
    gap: 15px;
    flex-direction: column;
  }
}
.flow__body__item {
  width: 18%;
  max-width: 228px;
}
@media screen and (max-width: 767px) {
  .flow__body__item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__body__item {
    width: 25%;
  }
}
.flow__body__item .number {
  position: absolute;
  top: 0;
  left: -28px;
  font-family: "Oswald", sans-serif;
  font-size: 3.125rem;
  color: #D3D3D3;
  line-height: 90%;
}
@media screen and (max-width: 767px) {
  .flow__body__item .number {
    font-size: 15.625vw;
  }
}
.flow__body__item .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  aspect-ratio: 1/1;
  margin: 0 auto 15px;
  border-radius: 50%;
  background-color: #EAEAEA;
}
@media screen and (max-width: 767px) {
  .flow__body__item .image {
    width: 40.625vw;
  }
}
.flow__body__item .image__item.icon-contact {
  width: 68px;
}
@media screen and (max-width: 767px) {
  .flow__body__item .image__item.icon-contact {
    width: 21.25vw;
  }
}
.flow__body__item .image__item.icon-documents {
  width: 93px;
  margin: 0 0 0 -20px;
}
@media screen and (max-width: 767px) {
  .flow__body__item .image__item.icon-documents {
    width: 29.0625vw;
  }
}
.flow__body__item .image__item.icon-pc {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .flow__body__item .image__item.icon-pc {
    width: 21.875vw;
  }
}
.flow__body__item .title {
  font-size: 1.125rem;
  line-height: 160%;
  margin: 0 0 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__body__item .title {
    font-size: 5.625vw;
  }
}
.flow__body__item .text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .flow__body__item .text {
    font-size: 4.375vw;
    line-height: 160%;
  }
}
.flow__body__arrow {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .flow__body__arrow {
    width: 6.25vw;
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

.faq {
  padding: 60px 15px 64px;
  background-color: #D1E9FA;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 15px 50px;
  }
}
.faq__title {
  font-size: 2.5rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 12.5vw;
    margin: 0 0 20px;
  }
}
.faq__text {
  font-size: 1.25rem;
  line-height: 150%;
  text-align: center;
  margin: 0 0 29px;
}
@media screen and (max-width: 767px) {
  .faq__text {
    font-size: 5vw;
    line-height: 160%;
    margin: 0 0 20px;
  }
}
.faq__list {
  display: flex;
  gap: 15px;
  flex-direction: column;
  max-width: 800px;
  margin-inline: auto;
}
.faq__list__item {
  border-radius: 15px;
  background-color: #fff;
}
.faq__list__item .question {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 12 6.554"><path fill="%23B3C5D4" d="M11.5,7.05,6.5,2.5,1.5,7.05l-1-1.1L6.5.5l6,5.454Z" transform="translate(12.5 7.05) rotate(180)" /></svg>');
}
.faq__list__item[open] .question {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 12 6.554"><path fill="%23B3C5D4" d="M11.5,7.05,6.5,2.5,1.5,7.05l-1-1.1L6.5.5l6,5.454Z" transform="translate(-0.5 -0.496)" /></svg>');
}
.faq__list .question {
  display: grid;
  gap: 10px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  line-height: 150%;
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 13px 8px;
}
@media screen and (max-width: 767px) {
  .faq__list .question {
    display: flex;
    font-size: 4.375vw;
    padding: 15px 56px 15px 15px;
  }
}
.faq__list .question::-webkit-details-marker {
  display: none;
}
.faq__list .question__icon {
  font-family: "Oswald", sans-serif;
  font-size: 1.125rem;
  color: #fff;
  line-height: 27px;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0077CD;
}
@media screen and (max-width: 767px) {
  .faq__list .question__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .faq__list .question__text {
    width: calc(100% - 40px);
  }
}
.faq__list .answer {
  font-weight: 500;
  font-size: 0.875rem;
  color: #7D7D7D;
  line-height: 160%;
  padding: 20px 27px;
  border-top: 2px solid #E3F2FA;
}
@media screen and (max-width: 767px) {
  .faq__list .answer {
    font-size: 4.375vw;
    padding: 20px;
  }
}

.soil {
  padding: 60px 15px 60px;
  background-image: url("../../images/lp/soil-bk.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .soil {
    padding: 44px 15px 50px;
    background-size: 600%;
    background-position: center 0;
  }
}
.soil__title {
  color: #fff;
  margin: 0 0 35px;
}
@media screen and (max-width: 767px) {
  .soil__title {
    margin: 0 0 30px;
  }
}
.soil__title__small, .soil__title__large {
  display: block;
  line-height: 150%;
  text-align: center;
}
.soil__title__small {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .soil__title__small {
    font-size: 4.375vw;
    margin: 0 0 10px;
  }
}
.soil__title__large {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .soil__title__large {
    display: none;
  }
}
.soil__title__mobile-large {
  display: none;
}
@media screen and (max-width: 767px) {
  .soil__title__mobile-large {
    display: block;
    font-size: 10vw;
    line-height: 130%;
    text-align: center;
  }
}
.soil__body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 830px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .soil__body {
    flex-direction: column;
  }
}
.soil__body__text {
  font-size: 0.875rem;
  color: #fff;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .soil__body__text {
    order: 2;
    font-size: 4.375vw;
  }
}
.soil__body__text p:not(:first-of-type) {
  margin: 2.5em 0;
}
.soil__body__image {
  position: relative;
  width: 37%;
}
@media screen and (max-width: 767px) {
  .soil__body__image {
    order: 1;
    align-self: center;
    width: 100%;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .soil__body__image .circle-image {
    display: block;
    width: 75vw;
    margin-inline: auto;
  }
}
.soil__body__image .text-image {
  position: absolute;
  right: 9px;
  bottom: 0;
  width: 400px;
  transform: rotate(-7.105deg);
}
@media screen and (max-width: 767px) {
  .soil__body__image .text-image {
    right: -15px;
    width: 81.25vw;
  }
}

.company {
  padding: 60px 0;
  background-image: url("../../images/lp/company-bk.png");
  background-repeat: no-repeat;
  background-size: 60% auto;
  background-position: -16px 46px;
  background-color: #EBF3F8;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 40px 0 6px;
    background-size: 109% auto;
    background-position: -24.3749vw 150px;
  }
}
.company__title {
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  font-size: 1.25rem;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .company__title {
    gap: 28px;
    font-size: 4.375vw;
    padding: 0 15px;
    margin: 0 0 20px;
  }
}
.company__title__text {
  line-height: 150%;
}
.company__title__logo {
  width: 371px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .company__title {
    width: 100%;
  }
}
.company__large-text {
  font-size: 1.25rem;
  color: #0077CD;
  line-height: 150%;
  text-align: center;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .company__large-text {
    font-size: 7.5vw;
    margin: 0 0 30px;
  }
}
.company__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 200%;
  text-align: center;
  padding: 0 15px;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .company__text {
    font-size: 4.375vw;
    margin: 0 0 30px;
  }
}
.company__link-button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 0.875rem;
  color: #0077CD;
  line-height: 160%;
  padding: 14px 20px;
  margin: 0 auto 56px;
  border-radius: 40px;
  border: 1px solid #0077CD;
}
@media screen and (max-width: 767px) {
  .company__link-button {
    width: calc(100% - 30px);
    font-size: 4.375vw;
    margin: 0 auto 28px;
  }
}
.company__link-button path {
  fill: #0077CD;
}
.company__slider {
  width: 100%;
}
.company__slider .swiper-wrapper {
  overflow-y: visible;
}
.company__slider .swiper-slide {
  width: 20%;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow-y: visible;
  border-radius: 10px;
  box-shadow: 0 0 23.102px rgba(0, 158, 230, 0.2);
}
@media screen and (max-width: 767px) {
  .company__slider .swiper-slide {
    width: 53.4375vw;
  }
}

.contact {
  padding: 50px 15px 60px;
  background-color: #D1E9FA;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 15px 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner iframe {
    height: 1570px;
  }
}
.contact__other {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  padding: 20px 20px 25px;
  margin: 40px auto 0;
  border-radius: 15px;
  border: 1px solid #0077CD;
}
@media screen and (max-width: 767px) {
  .contact__other {
    padding: 20px 15px 25px;
  }
}
.contact__other__title {
  font-size: 1.25rem;
  color: #0077CD;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .contact__other__title {
    font-size: 5.625vw;
    text-align: center;
    margin: 0 0 20px;
  }
}
.contact__other__list li {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__other__list li:first-of-type {
    margin: 0 0 10px;
  }
}
.contact__other__list img {
  width: 25px;
}
@media screen and (max-width: 767px) {
  .contact__other__list img {
    width: 7.8125vw;
  }
}
.contact__other__list a,
.contact__other__list span {
  max-width: calc(100% - 30px);
  font-weight: 500;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .contact__other__list a,
  .contact__other__list span {
    max-width: calc(100% - 7.8125vw - 5px);
    font-size: 4.375vw;
    line-height: 150%;
  }
}
@media screen and (max-width: 767px) {
  .contact__other__list .mobile-small {
    font-size: 3.75vw;
  }
}

/*# sourceMappingURL=style.css.map */
