@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

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

html {
  font-size: 1px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #284452;
  font-size: 16rem;
}
body.is-active {
  overflow: hidden;
}

.wrapper {
  overflow-x: hidden;
}

a {
  cursor: pointer;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 1024px) {
  .is-sp {
    display: none;
  }
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 48px;
  z-index: 300;
}
@media screen and (max-width: 767.9px) {
  .header {
    padding: 16px 16px;
    background: #FFF;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  }
}

.header__inner {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 179px;
  height: auto;
  margin-top: 8px;
}
@media screen and (max-width: 767.9px) {
  .header__logo {
    width: 120px;
    margin-top: 0;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 33px;
  color: #6B7280;
}
@media screen and (max-width: 767.9px) {
  .header__nav {
    display: none;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-item {
  position: relative;
}

.header__sublist {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  translate: -50%;
  width: fit-content;
  padding: 40px 132px 40px 40px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  white-space: nowrap;
  color: #6B7280;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__parent:hover .header__sublist {
  opacity: 1;
  visibility: visible;
}

.header__sublist-item {
  width: 200px;
}

.header__nav-contact {
  display: grid;
  place-items: center;
  width: 150px;
  height: 40px;
  background-color: #1D588E;
  color: #fff;
  font-weight: 700;
  border-radius: 200px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1024px) {
  .drawer__icon {
    display: none;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .drawer__icon {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    z-index: 600;
    cursor: pointer;
    background: transparent;
  }
}
@media screen and (max-width: 767.9px) {
  .drawer__icon {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    z-index: 600;
    cursor: pointer;
    background: transparent;
  }
}

@media screen and (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background-color: #fff;
    translate: 110% 0;
    transition: translate 0.3s ease;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 500;
    background-color: #fff;
    translate: 110% 0;
    transition: translate 0.3s ease;
  }
}

@media screen and (max-width: 767.9px) {
  .drawer.js-show {
    translate: 0 0;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .drawer.js-show {
    translate: 0 0;
  }
}

.drawer__inner {
  padding-inline: 20px;
  padding-top: 16px;
}

.drawer__logo {
  width: 120px;
  display: block;
}
.drawer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drawer__body {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  row-gap: 24px;
  width: fit-content;
  margin-inline: auto;
}

.drawer__links {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.drawer__links-service {
  grid-row: span 3;
}

.drawer__link {
  font-weight: 700;
}

.drawer__link-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 400;
  margin-left: 16px;
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.drawer__bg.js-show {
  display: block;
}

.main.single {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-block: 150px;
}
.main.single h1 {
  font-size: 36rem;
  line-height: 140%; /* 50.4px */
  font-weight: 700;
  margin-bottom: 36px;
}
.main.single p {
  margin-bottom: 16px;
  line-height: 150%;
}

.inner {
  max-width: 1440px;
  margin-inline: auto;
}

.footer {
  padding: 60px 48px 84px;
  background-color: #1D588E;
  color: #fff;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding: 48px 30px 58px;
  }
}

.footer__top {
  display: flex;
  align-items: stretch;
  padding-bottom: 32px;
  border-bottom: 1px solid #DADADA;
}
@media screen and (max-width: 767.9px) {
  .footer__top {
    flex-direction: column;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .footer__top {
    flex-direction: column;
  }
}

.footer__left {
  display: flex;
  flex-direction: column;
  height: 224px;
  justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .footer__left {
    height: auto;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .footer__left {
    height: auto;
  }
}

.footer__logo {
  width: 220px;
}
.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer__sns {
    margin-top: 33px;
    gap: 10px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .footer__sns {
    margin-top: 33px;
  }
}

.footer__sns-text {
  font-weight: 700;
  letter-spacing: 0.7px;
}

.footer__sns-link {
  width: 24px;
}
.footer__sns-link img {
  width: 100%;
  height: auto;
}

.footer__right {
  margin-left: auto;
  display: flex;
  gap: 81px;
  margin-right: 2px;
}
@media screen and (max-width: 767.9px) {
  .footer__right {
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
    grid-template-rows: auto;
    column-gap: 0;
    row-gap: 20px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .footer__right {
    margin-left: 0;
    margin-top: 52px;
  }
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 767.9px) {
  .footer__links-service {
    grid-row: span 3;
    margin-left: 12px;
  }
}

.footer__link {
  font-size: 14rem;
  line-height: 150%;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer__link-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 10px;
  font-size: 14rem;
  font-weight: 400;
  line-height: 142.857%; /* 142.857% */
  letter-spacing: 0.05em;
}

.footer__bottom {
  margin-top: 33px;
  line-height: 150%;
}
@media screen and (max-width: 767.9px) {
  .footer__bottom {
    font-size: 14rem;
  }
}

.footer__bottom-link {
  margin-top: 3px;
  display: inline-block;
}

.lower-header {
  margin-top: 72px;
  width: 100%;
  height: 360px;
  position: relative;
  align-content: end;
  padding-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .lower-header {
    margin-top: 56px;
    padding-bottom: 30px;
    height: 300px;
  }
}

.lower-header__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lower-header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.lower-header__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(179, 218, 243, 0.28) 52.41%, rgba(108, 183, 233, 0.6) 100%), no-repeat;
}

.lower-header__title {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 767.9px) {
  .lower-header__title {
    padding-inline: 20px;
  }
}

.lower-header__title--en {
  text-shadow: 0px 2px 4px rgba(84, 114, 148, 0.4);
  font-size: 20rem;
  font-weight: 700;
  line-height: 140%; /* 28px */
}
@media screen and (max-width: 767.9px) {
  .lower-header__title--en {
    font-size: 16px;
  }
}

.lower-header__title--ja {
  text-shadow: 0px 4px 4px rgba(84, 114, 148, 0.4);
  font-size: 60rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .lower-header__title--ja {
    font-size: 32rem;
  }
}

.more-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1D588E;
  font-size: 18rem;
  width: fit-content;
}

.breadcrumb {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: #6B7280;
  line-height: 140%; /* 22.4px */
}
@media screen and (max-width: 767.9px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb__link {
  color: #6892B8;
}

.section__title {
  color: #1D588E;
  font-size: 42rem;
  font-weight: 700;
  line-height: 160%; /* 76.8px */
}
@media screen and (max-width: 767.9px) {
  .section__title {
    font-size: 36rem;
  }
}

@media screen and (max-width: 767.9px) {
  .section__title.section__title--lower {
    font-size: 28rem;
  }
}

.top-fv {
  max-height: 699px;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  width: 100%;
  padding-top: min(260px, 18.0555555556%);
  padding-bottom: min(230px, 15.9722222222%);
}
@media screen and (max-width: 767.9px) {
  .top-fv {
    height: 100svh;
    max-height: 550px;
    margin-top: 57.8px;
    padding-top: 43px;
    padding-bottom: 0;
  }
}

.top-fv::before {
  content: "";
  position: absolute;
  height: 83.6909871245%;
  width: 100vw;
  top: 0;
  right: 365px;
  background-color: #F1F9FF;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-fv::before {
    display: none;
  }
}

.top-fv::after {
  content: "";
  position: absolute;
  height: 75.9656652361%;
  width: 100vw;
  bottom: 0;
  left: min(589px, 40.9027777778%);
  background: #E9EFF4;
  z-index: -2;
}
@media screen and (max-width: 767.9px) {
  .top-fv::after {
    display: none;
  }
}

.top-fv__title {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 7.5694444444%;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-fv__title {
    margin-inline: auto;
    width: fit-content;
    padding-left: 4px;
  }
}

.top-fv__title--en {
  font-size: min(136rem, 9.4444444444vw);
  font-family: "Caveat", cursive;
  font-weight: 700;
  transform: skew(-9deg) rotate(-5deg);
}
@media screen and (max-width: 767.9px) {
  .top-fv__title--en {
    font-size: min(64rem, 17.0666666667vw);
  }
}

.top-fv__title--ja {
  margin-top: min(34px, 2.3611111111vw);
  width: min(620px, 43.0555555556vw);
  height: auto;
  aspect-ratio: 620/107;
  margin-left: min(30px, 2.7777777778vw);
}
@media screen and (max-width: 767.9px) {
  .top-fv__title--ja {
    width: min(300px, 80vw);
    margin-top: 0;
  }
}
.top-fv__title--ja img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-fv__img {
  position: absolute;
  right: 46px;
  bottom: 54px;
  width: 64.5138888889%;
  height: auto;
  aspect-ratio: 929/542;
  box-shadow: 6px 6px 20px 6px rgba(192, 211, 228, 0.4);
}
@media screen and (max-width: 767.9px) {
  .top-fv__img {
    width: auto;
    height: 100%;
    bottom: auto;
    top: 0;
    right: 60%;
    translate: 50% 0;
  }
}
.top-fv__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-about {
  padding-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .top-about {
    padding-top: 50px;
    padding-bottom: 56px;
  }
}

.top-about__inner {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  align-items: start;
  column-gap: 80px;
  padding-right: 50px;
}
@media screen and (max-width: 767.9px) {
  .top-about__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-inline: 20px;
    row-gap: 30px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .top-about__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-inline: 20px;
    row-gap: 30px;
    max-width: 825px;
    margin-inline: auto;
  }
}

.top-about__title {
  order: 2;
  margin-top: 41px;
}
@media screen and (max-width: 767.9px) {
  .top-about__title {
    order: 1;
    margin-top: 0;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .top-about__title {
    margin-top: 0;
    order: 1;
    width: fit-content;
    margin-inline: auto;
  }
}

.top-about__img {
  order: 1;
  grid-row: span 2;
  height: auto;
}
.top-about__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .top-about__img {
    order: 2;
    grid-row: auto;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .top-about__img {
    order: 2;
    grid-row: auto;
    width: 80%;
    margin-inline: auto;
  }
}

.top-about__contents {
  order: 3;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media screen and (max-width: 767.9px) {
  .top-about__contents {
    margin-top: 0;
    gap: 16px;
  }
}

.top-about__text {
  font-size: 18rem;
  line-height: 200%;
}
@media screen and (max-width: 767.9px) {
  .top-about__text {
    font-size: 16rem;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .top-about__text {
    width: fit-content;
    margin-inline: auto;
  }
}

.top-about__link {
  margin-top: 28px;
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-about__link {
    margin-top: 18px;
  }
}

.top-service {
  padding-top: 100px;
  padding-bottom: 105px;
}
@media screen and (max-width: 767.9px) {
  .top-service {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #F1F9FF;
  }
}

.top-service__inner {
  padding-inline: 8.3333333333%;
}
@media screen and (max-width: 767.9px) {
  .top-service__inner {
    padding-inline: 20px;
  }
}

.top-service__head {
  display: flex;
  gap: 80px;
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .top-service__head {
    flex-direction: column;
    gap: 36px;
  }
}
@media screen and (max-width: 767.9px) {
  .top-service__head {
    flex-direction: column;
    gap: 30px;
  }
}

.top-service__title.section__title {
  flex-shrink: 0;
  font-size: 60rem;
  line-height: 140%;
}
@media screen and (max-width: 767.9px) {
  .top-service__title.section__title {
    font-size: 36rem;
  }
}

.top-service__text {
  font-size: 18rem;
  line-height: 200%; /* 36px */
  margin-top: 12px;
}
@media screen and (max-width: 767.9px) {
  .top-service__text {
    font-size: 16rem;
    margin-top: 0;
  }
}

.top-service__head-link {
  margin-left: auto;
  margin-top: 32px;
}
@media screen and (max-width: 767.9px) {
  .top-service__head-link {
    margin-top: 30px;
  }
}

.top-service__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.7777777778%;
  margin-top: 103px;
  row-gap: 17px;
}
@media screen and (max-width: 767.9px) {
  .top-service__items {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 63px;
    margin-top: 100px;
  }
}

.top-service__item {
  position: relative;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 6px 6px 0px rgba(84, 114, 148, 0.1);
}

.top-service__item:nth-child(2n) {
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .top-service__item:nth-child(2n) {
    margin-top: 0;
  }
}

.top-service__item:nth-child(2n+1) {
  margin-bottom: 84px;
}
@media screen and (max-width: 767.9px) {
  .top-service__item:nth-child(2n+1) {
    margin-bottom: 0;
  }
}

.top-service__item-label {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -100%;
  border-radius: 0px 26px 0px 0px;
  background: #F1F9FF;
  color: #6E91B8;
  font-size: 14rem;
  font-weight: 500;
  line-height: 150%; /* 21px */
  padding: 8px 40px;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-label {
    border-radius: 0px 26px 0px 0px;
    background: #FFF;
    padding: 6px 30px;
  }
}

.top-service__item-img {
  height: 140px;
  width: 100%;
}
.top-service__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-service__item-contents {
  padding: 30px 40px;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-contents {
    padding: 20px 20px 25px;
  }
}

.top-service__item-title {
  color: #1D588E;
  font-size: 24rem;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
}

.top-service__item-copy {
  font-size: 18rem;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  margin-top: 6px;
}

.top-service__item-text {
  color: #6B7280;
  font-size: 16rem;
  line-height: 160%; /* 25.6px */
  margin-top: 16px;
}

.top-service__item-link {
  margin-top: 19px;
  margin-left: auto;
}

.top-mission {
  padding-top: 60px;
  padding-bottom: 41px;
  background: #F1F9FF;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-mission {
    padding-top: 64px;
    padding-bottom: 50px;
  }
}

.top-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 234, 255, 0.3);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
@media screen and (max-width: 767.9px) {
  .top-mission::before {
    display: none;
  }
}

.top-mission__inner {
  position: relative;
}

.top-mission__title.section__title {
  text-align: center;
  font-size: 56rem;
  line-height: 140%;
}
@media screen and (max-width: 767.9px) {
  .top-mission__title.section__title {
    font-size: 36rem;
    line-height: 140%;
  }
}

.top-mission__copy {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-inline: 20px;
  margin-left: 3px;
}
@media screen and (max-width: 767.9px) {
  .top-mission__copy {
    margin-top: 20px;
    gap: 6px;
    margin-left: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .top-mission__copy-text {
    height: 28px;
    width: auto;
  }
}

.top-mission__img {
  margin-top: 47px;
  max-width: 930px;
  width: 100%;
}
.top-mission__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  .top-mission__img {
    margin-top: 19px;
  }
}

.top-mission__items-wrapper {
  margin-inline: 60px;
}
@media screen and (max-width: 767.9px) {
  .top-mission__items-wrapper {
    margin-inline: 20px;
  }
}

.top-mission__items {
  max-width: 800px;
  margin-left: auto;
  background-color: #fff;
  padding-block: 60px;
  text-align: center;
  margin-top: -319px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
  box-shadow: 0px 12px 12px 0px rgba(84, 114, 148, 0.1);
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .top-mission__items {
    margin-top: -240px;
  }
}
@media screen and (max-width: 767.9px) {
  .top-mission__items {
    margin-top: -100px;
    padding-block: 20px;
    border-radius: 1.051px;
    box-shadow: 0px 3.153px 3.153px 0px rgba(84, 114, 148, 0.1);
  }
}

.top-mission__item {
  padding: 16px;
}
@media screen and (max-width: 767.9px) {
  .top-mission__item {
    padding: 4px;
  }
}

.top-mission__item-point {
  color: #6892B8;
  font-family: "Crimson Text", serif;
  font-size: 22rem;
  font-style: italic;
  font-weight: 600;
  line-height: 100%; /* 22px */
}
@media screen and (max-width: 767.9px) {
  .top-mission__item-point {
    font-size: 18rem;
  }
}

.top-mission__item-title {
  margin-top: 12px;
  font-size: 20rem;
  font-weight: 700;
  line-height: 160%; /* 32px */
}
@media screen and (max-width: 767.9px) {
  .top-mission__item-title {
    margin-top: 10px;
    font-size: 18rem;
  }
}

.top-mission__item-text {
  margin-top: 12px;
  line-height: 160%; /* 25.6px */
  color: #6B7280;
}
@media screen and (max-width: 767.9px) {
  .top-mission__item-text {
    font-size: 14rem;
    padding-inline: 8px;
    margin-top: 8px;
  }
}

.top-blog {
  padding-top: 100px;
  padding-bottom: 148px;
}
@media screen and (max-width: 767.9px) {
  .top-blog {
    padding-top: 50px;
    padding-bottom: 84px;
  }
}

.top-blog__inner {
  padding-inline: 40px;
}
@media screen and (max-width: 767.9px) {
  .top-blog__inner {
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
  }
}

.top-blog__head {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-blog__head {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

.top-blog__title.section__title {
  flex-shrink: 0;
  font-size: 80rem;
  line-height: 140%; /* 112px */
}
@media screen and (max-width: 767.9px) {
  .top-blog__title.section__title {
    font-size: 36rem;
  }
}

.top-blog__head-text {
  margin-top: 20px;
  font-size: 18rem;
  line-height: 200%; /* 36px */
}
@media screen and (max-width: 767.9px) {
  .top-blog__head-text {
    margin-top: 0;
    font-size: 16rem;
  }
}

.top-blog__head-link {
  margin-left: auto;
  margin-right: 76px;
  margin-top: 6px;
}
@media screen and (max-width: 767.9px) {
  .top-blog__head-link {
    margin-right: 0;
    order: 3;
    margin-top: 30px;
  }
}

.top__blog-items {
  margin-top: 48px;
}
@media screen and (max-width: 767.9px) {
  .top__blog-items {
    margin-top: 30px;
  }
}

.top-blog__swiper-container {
  position: relative;
}

.top-blog__swiper-slide {
  width: 436px;
}
@media screen and (max-width: 767.9px) {
  .top-blog__swiper-slide {
    width: 335px;
  }
}

.top-blog__item {
  padding: 20px;
  border-radius: 4px;
  background: #F1F9FF;
  box-shadow: 0px 6px 12px 0px rgba(84, 114, 148, 0.1);
  display: block;
}

.top-blog__contents {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .top-blog__contents {
    gap: 10px;
  }
}

.top-blog__img {
  width: 200px;
  height: auto;
  aspect-ratio: 200/114;
  flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .top-blog__img {
    width: 150px;
  }
}
.top-blog__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-blog__date {
  color: #547294;
  font-size: 14rem;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
@media screen and (max-width: 767.9px) {
  .top-blog__date {
    font-size: 12rem;
  }
}

.top-blog__item-title {
  margin-top: 6px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767.9px) {
  .top-blog__item-title {
    margin-top: 4px;
    font-size: 14rem;
  }
}

.top-blog__labels {
  margin-top: 20px;
  display: flex;
  gap: 6px;
}

.top-blog__label {
  display: flex;
  padding: 6px 12px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #6892B8;
  font-size: 14rem;
  font-weight: 500;
  color: #fff;
  line-height: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-blog__label {
    font-size: 12rem;
  }
}

.top-blog__swiper-container .swiper-button-next {
  width: 40px;
  height: 40px;
  right: -20px;
  bottom: 22px;
  top: auto;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-blog__swiper-container .swiper-button-next {
    width: 30px;
    height: 30px;
    bottom: 2px;
    right: -18px;
  }
}

.top-blog__swiper-container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/icon_swiper-next.svg");
}

.top-blog__swiper-container .swiper-button-prev {
  width: 40px;
  height: 40px;
  left: -20px;
  bottom: 22px;
  top: auto;
  right: auto;
}
@media screen and (max-width: 767.9px) {
  .top-blog__swiper-container .swiper-button-prev {
    width: 30px;
    height: 30px;
    bottom: 2px;
    left: -18px;
  }
}

.top-blog__swiper-container .swiper-button-prev::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/icon_swiper-next.svg");
  rotate: 180deg;
}

.js-top-blog-button-prev.is-hidden,
.js-top-blog-button-next.is-hidden {
  display: none;
}

.top-blog__no-posts {
  text-align: center;
}

.cta-block {
  display: flex;
  color: #FFF;
}
@media screen and (max-width: 767.9px) {
  .cta-block {
    flex-direction: column;
  }
}

.cta-block__company,
.cta-block__contact {
  width: 50%;
  position: relative;
  padding: 58.5px 110px;
}
@media screen and (max-width: 767.9px) {
  .cta-block__company,
  .cta-block__contact {
    width: 100%;
    padding: 39px 30px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1023.9px) {
  .cta-block__company,
  .cta-block__contact {
    padding: 40px 40px;
  }
}

.cta-block__company {
  background: url(../img/common/contact_img1.jpg) no-repeat center center/cover;
}
.cta-block__company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(108, 183, 233) 0%, rgb(108, 183, 233) 100%), lightgray 0px -194.04px/117.5% 216.95% no-repeat;
  opacity: 0.8;
}

.cta-block__contact {
  background: url(../img/common/contact_img2.jpg) no-repeat center center/cover;
}
.cta-block__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(58, 137, 208) 0%, rgb(58, 137, 208) 100%), lightgray -80px -151.269px/111.111% 205.154% no-repeat;
  opacity: 0.8;
}

.cta-block__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.cta-block__title--en {
  font-size: 18rem;
}
@media screen and (max-width: 767.9px) {
  .cta-block__title--en {
    font-size: 16rem;
  }
}

.cta-block__title--ja {
  font-size: 32rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .cta-block__title--ja {
    font-size: 24rem;
  }
}

.cta-block__text {
  margin-top: 26px;
  line-height: 160%;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .cta-block__text {
    font-size: 14px;
    margin-top: 24px;
  }
}

.course-about {
  margin-top: 110px;
}
@media screen and (max-width: 767.9px) {
  .course-about {
    margin-top: 50px;
  }
}

.course-about__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  padding-right: min(100px, 6.9444444444%);
}
@media screen and (max-width: 767.9px) {
  .course-about__inner {
    flex-direction: column;
    gap: 50px;
    padding-right: 0;
    align-items: flex-start;
  }
}

.course-about__contents {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .course-about__contents {
    padding-inline: 20px;
    gap: 20px;
  }
}

.course-about__illust {
  position: absolute;
  top: 15.3846153846%;
  left: 75.0769230769%;
  width: 29.2307692308%;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .course-about__illust {
    width: 103px;
    left: auto;
    top: -16px;
    right: 31px;
  }
}

@media screen and (max-width: 767.9px) {
  .course-about__title.section__title {
    font-size: 28rem;
    line-height: 150%;
  }
}

.course-about__subtitle {
  font-size: 20rem;
  font-weight: 700;
  margin-top: 20px;
  color: #1D588E;
  line-height: 160%; /* 41.6px */
  /* wbrで改行 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767.9px) {
  .course-about__subtitle {
    font-size: 16rem;
    margin-top: 10px;
  }
}

.course-about__copy {
  font-size: 18rem;
  font-weight: 700;
  line-height: 160%; /* 41.6px */
  margin-top: 30px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767.9px) {
  .course-about__copy {
    font-size: 16rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.course-about__text {
  line-height: 200%; /* 32px */
}
@media screen and (max-width: 767.9px) {
  .course-about__text {
    line-height: 160%;
  }
}

.course-about__text:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .course-about__text:not(:last-child) {
    margin-bottom: 8px;
  }
}

.course-about__img {
  width: 48.5074626866%;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .course-about__img {
    width: 450px;
    height: 237px;
    margin-left: 30px;
  }
}

.course-about__img--inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .course-about__img--inner {
    object-fit: cover;
  }
}

.course-introduction {
  padding-top: 92px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .course-introduction {
    padding-top: 80px;
  }
}

.course-introduction__title.section__title {
  font-size: 42rem;
  line-height: 140%; /* 59px */
}
@media screen and (max-width: 767.9px) {
  .course-introduction__title.section__title {
    font-size: 28rem;
    line-height: 140%;
  }
}

.course__introduction__text {
  padding-inline: 40px;
  margin-top: 32px;
  line-height: 160%;
  font-size: 24rem;
  font-weight: 700;
  color: #6B7280;
  /* wbrで改行 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767.9px) {
  .course__introduction__text {
    margin-top: 21px;
    padding-inline: 20px;
    text-align: center;
    font-size: 20rem;
  }
}

.course-introduction__items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background-color: #F1F9FF;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .course-introduction__items {
    margin-top: 32px;
    padding: 40px 20px 32px;
  }
}

.course-introduction__items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(208, 234, 255, 0.3);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767.9px) {
  .course-introduction__items::before {
    display: none;
  }
}

.course-introduction__item {
  width: 100%;
  min-height: 190px;
  display: flex;
  align-items: center;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 10px 20px 0px rgba(84, 114, 148, 0.2);
  padding-inline: 20px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .course-introduction__item {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.course-introduction__item-illust {
  width: 240px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .course-introduction__item-illust {
    width: 95%;
    margin-inline: 7.5px;
  }
}

.course-introduction__item-illust--inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.course-introduction__item-contents {
  flex: 1;
  padding: 40px 6px 42px 40px;
}
@media screen and (max-width: 767.9px) {
  .course-introduction__item-contents {
    padding: 10px 0 0;
  }
}

.course-introduction__item-title {
  color: #1D588E;
  font-size: 24rem;
  font-weight: 700;
  line-height: 150%; /* 36px */
  /* wbrで改行 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767.9px) {
  .course-introduction__item-title {
    text-align: center;
    font-size: 22rem;
    line-height: 140%; /* 31px */
  }
}

.course-introduction__item-text {
  margin-top: 16px;
  line-height: 160%;
  font-size: 18rem;
}
@media screen and (max-width: 767.9px) {
  .course-introduction__item-text {
    padding-inline: 10px;
    margin-top: 20px;
    font-size: 16rem;
  }
}
.course-introduction__item-text strong {
  font-weight: 700;
  color: #6892B8;
}

.course-curriculum {
  padding-top: 186px;
  padding-bottom: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 40px;
  gap: 32px;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum {
    padding-top: 80px;
    padding-bottom: 82px;
    padding-inline: 20px;
    gap: 48px;
  }
}

.course-curriculum__title--en {
  position: absolute;
  top: 40px;
  color: #F2F9FF;
  font-size: min(200rem, 13.8888888889vw);
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum__title--en {
    font-size: 60rem;
    top: 40px;
  }
}

@media screen and (max-width: 767.9px) {
  .course-curriculum__title.section__title {
    line-height: 100%;
  }
}

.course-curriculum__types {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum__types {
    gap: 46px;
  }
}

.course-curriculum__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.course-curriculum__type-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1D588E;
}

.course-curriculum__type-title--img {
  width: 46px;
  height: auto;
}

.course-curriculum__type-title--text {
  color: #547294;
  font-size: 32rem;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
}

.course-curriculum__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum__items {
    gap: 22px;
  }
}

.course-curriculum__item {
  width: 320px;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum__item {
    width: min(335px, 100%);
  }
}

.course-curriculum__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/200;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum__item-img {
    aspect-ratio: 335/200;
  }
}

.course-curriculum__item-img--inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-curriculum__item-contents {
  padding: 20px 10px;
}

.course-curriculum__item-label {
  padding: 4px 8px;
  background: #F1F9FF;
  width: fit-content;
  color: #6E91B8;
  font-size: 14rem;
  font-weight: 500;
  line-height: 150%; /* 21px */
}

.course-curriculum__item-title {
  margin-top: 12px;
  color: #1D588E;
  font-size: 22rem;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767.9px) {
  .course-curriculum__item-title {
    margin-top: 10px;
  }
}

.course-curriculum__item-text {
  margin-top: 10px;
  color: #6B7280;
  line-height: 160%; /* 25.6px */
}

.course-curriculum__type--offline .course-curriculum__item-label {
  background: transparent;
  font-size: 16rem;
  padding: 0;
}
.course-curriculum__type--offline .course-curriculum__item-title {
  margin-top: 4px;
}

.course-contact {
  padding-top: 50px;
  background-color: #F1F9FF;
  text-align: center;
}

.course-contact__title.section__title {
  font-size: 32rem;
  line-height: 100%;
}
@media screen and (max-width: 767.9px) {
  .course-contact__title.section__title {
    font-size: 28rem;
    line-height: 140%;
  }
}

.course-contact__text {
  margin-top: 36px;
  font-size: 18rem;
  line-height: 160%; /* 28.8px */
  padding-inline: 20px;
}

.course-contact__link {
  margin-top: 36px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 200px;
  background: #1D588E;
  box-shadow: 0px 8px 8px 0px rgba(84, 114, 148, 0.3);
  color: #FFF;
  font-size: 18rem;
  font-weight: 500;
  line-height: 150%; /* 27px */
  padding-block: 18px;
  width: 400px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .course-contact__link {
    width: min(335px, 100%);
  }
}

.course-contact__link::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 100px;
  width: 31px;
  height: 7px;
  background: url("../img/common/link_arrow.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767.9px) {
  .course-contact__link::after {
    right: 67px;
  }
}

.course-contact__detail {
  background-color: #fff;
  padding-block: 60px 80px;
  text-align: left;
  margin-top: 50px;
}
@media screen and (max-width: 767.9px) {
  .course-contact__detail {
    padding-top: 30px;
  }
}

.course-contact__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 767.9px) {
  .course-contact__inner {
    padding-inline: 20px;
  }
}

.course-contact__detail-title {
  color: #547294;
  font-size: 18rem;
  font-weight: 700;
}

.course-contact__detail-text {
  margin-top: 20px;
  color: #6B7280;
  font-size: 14rem;
  line-height: 160%; /* 22.4px */
}

.course-banner {
  padding-block: 80px;
  padding-inline: 20px;
  position: relative;
  text-align: center;
  background: url("../img/sns-course/mv.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767.9px) {
  .course-banner {
    padding-block: 49px;
    padding-inline: 34px;
    background-image: url("../img/sns-course/mv_sp.jpg");
    background-position: center left 60%;
  }
}

.course-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.course-banner__title {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .course-banner__title {
    gap: 16px;
  }
}

.course-banner__title--img {
  height: 42px;
  width: auto;
}
@media screen and (max-width: 767.9px) {
  .course-banner__title--img {
    height: 25px;
  }
}

.course-banner__text {
  margin-top: 30px;
  color: #6B7280;
  font-size: 18rem;
  line-height: 200%; /* 36px */
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .course-banner__text {
    font-size: 14rem;
  }
}

.main.preparation {
  height: 60vh;
  display: grid;
  place-items: center;
  padding-inline: 20px;
}

.preparation__text {
  font-size: 32rem;
  line-height: 160%; /* 51.2px */
}