@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 150%;
  color: #333;
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-tb {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-tb {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .hidden-tb {
    display: none;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
}
.overlay .open {
  opacity: 1;
  visibility: visible;
}

.fade-in-section {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}
.fade-in-section.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.delay-1.show {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-2.show {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay-3.show {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.entry-btn {
  position: fixed;
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.entry-btn a {
  display: block;
}
.entry-btn img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .entry-btn {
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .entry-btn {
    bottom: 20px;
    right: 20px;
    width: 250px;
  }
}
.entry-btn:hover {
  opacity: 0.8;
}

.inner {
  padding: 0 20px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .inner {
    padding: 0 20px;
    max-width: 1000px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #2850bd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.heading-en {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.98px;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .heading-en {
    font-size: 32px;
  }
}
.heading-ja {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .heading-ja {
    font-size: 14px;
  }
}

.button {
  display: inline-block;
  padding: 17px 44px;
  background-color: #2850bd;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  border: #fff 2px solid;
  -webkit-transition: background-color 0.6s;
  transition: background-color 0.6s;
  font-weight: 500;
}
.button:hover {
  background-color: #fff;
  border: #2850bd 2px solid;
  color: #2850bd;
  font-weight: 600;
}

.image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
}
@media screen and (min-width: 1024px) {
  .image-box {
    gap: 20px;
  }
}
.image-box img {
  width: 33.3333333333%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .image-box img {
    width: calc((100% - 60px) / 4);
    height: 211px;
  }
}
.image-box .hidden-sp {
  display: none;
}
@media screen and (min-width: 1024px) {
  .image-box .hidden-sp {
    display: block;
  }
}

.image-cards {
  margin-top: 60px;
  margin-bottom: 60px;
  border-radius: 5px;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .image-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    max-width: 734px;
    margin: 0 auto;
    margin-top: 110px;
    margin-bottom: 110px;
  }
}
.image-cards .image-card {
  -webkit-box-shadow: 0px 4px 13px 0px rgba(159, 159, 159, 0.25);
          box-shadow: 0px 4px 13px 0px rgba(159, 159, 159, 0.25);
  padding: 13px 12px 30px 12px;
  border-radius: 5px;
}
.image-cards .image-card:nth-child(2) {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .image-cards .image-card:nth-child(2) {
    margin-top: 0;
  }
}
.image-cards .image-card__text-box {
  padding: 0 18px;
}
.image-cards .image-card__text01 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
}
.image-cards .image-card__text02 {
  margin-top: 10px;
  font-size: 14px;
  color: #767676;
}
.image-cards .image-card img {
  width: 100%;
  height: 185px;
  -o-object-fit: cover;
     object-fit: cover;
}

.button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media screen and (min-width: 1024px) {
  .button-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    padding-top: 0;
    margin-bottom: 90px;
  }
}
.button-box .service-button,
.button-box .works-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  width: 327px;
  height: 133px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.192);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.192);
}
@media screen and (min-width: 1024px) {
  .button-box .service-button,
  .button-box .works-button {
    width: 467px;
    height: 196px;
    font-size: 20px;
  }
}
.button-box .service-button.bg1::before, .button-box .service-button.bg2::before,
.button-box .works-button.bg1::before,
.button-box .works-button.bg2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.button-box .service-button.bg1::before,
.button-box .works-button.bg1::before {
  background-image: url("../img/service-btn__bg.png");
}
.button-box .service-button.bg2::before,
.button-box .works-button.bg2::before {
  background-image: url("../img/works-btn__bg.png");
}
.button-box .service-button span,
.button-box .works-button span {
  position: relative;
  z-index: 2;
}
.button-box .service-button span:nth-child(1),
.button-box .works-button span:nth-child(1) {
  font-size: 20px;
}
.button-box .service-button span:nth-child(2),
.button-box .works-button span:nth-child(2) {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-top: 5px;
}
.button-box .service-button::after,
.button-box .works-button::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  z-index: 1;
  border: 1px solid #FFF;
}

.header {
  height: 70px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100000;
}
.header__left {
  padding-left: 27px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .header__left {
    padding-left: 72px;
  }
}
.header__left h1 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: -5px;
}
.header__left h1 img {
  width: 200px;
}
.header__left span {
  font-size: 14px;
  margin-top: -5px;
  letter-spacing: 2.3px;
  font-weight: 500;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__right .header__nav a {
  font-weight: 500;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__right .header__nav a:hover {
  color: #2850bd;
  border-bottom: #2850bd 2px solid;
  padding-bottom: 7px;
}
.header__right .header__nav i {
  font-size: 20px;
}
.header__right .header__button {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__right .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 40px;
  }
}
.header__right .header__button .header__entry-btn {
  display: inline-block;
  background: #31C531;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 500;
  border: #31C531 2px solid;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}
.header__right .header__button .header__entry-btn:hover {
  background: #fff;
  border: #31C531 2px solid;
  color: #31C531;
}

.hamburger {
  padding: 0 20px;
  background: #2850bd;
  line-height: 70px;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger .drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 1024px) {
  .hamburger .drawer-icon {
    display: none;
  }
}
.hamburger .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.hamburger .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.hamburger .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}
.hamburger .drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.hamburger .drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.hamburger .drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #2850bd;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-menu.is-checked {
  right: 0;
}
.drawer-menu .drawer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.drawer-menu a {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.drawer-menu .drawer_button {
  background-color: #FFF;
  padding: 10px 15px;
  width: 100%;
  color: #2850bd;
  text-align: center;
  border-radius: 5px;
}

@media screen and (max-width: 1150px) {
  .header__nav {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}
@media (min-width: 1024px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

.fv {
  margin-top: 70px;
}
.fv__bg {
  background-image: url("../img/top.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    background-image: url("../img/top-pc.webp");
  }
}
.fv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fv__head p {
  margin-top: 7px;
}
.fv__head p:nth-of-type(2) span {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .fv__head p:nth-of-type(2) span {
    font-size: 42px;
  }
}
.fv__head p:nth-of-type(4) {
  margin-top: 0;
}
.fv__head p span {
  display: inline-block;
  background-color: #fff;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .fv__head p span {
    font-size: 20px;
  }
}
.fv__content {
  height: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.fv__button {
  margin-top: 25px;
  max-width: 250px;
  background-color: #31C531;
  border: #fff 2px solid;
}
.fv__button:hover {
  border: #31C531 2px solid;
  color: #31C531;
}

.message {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .message {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
.message::before {
  content: "";
  position: absolute;
  top: 60%;
  left: -2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 567px;
  height: 567px;
  background: #F4F6FC;
  border-radius: 50%;
  z-index: -2; /* 背景にするため低めに */
}
.message__left .message__text-box .text-box_head p:nth-child(1) {
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .message__left .message__text-box .text-box_head p:nth-child(1) {
    font-size: 20px;
  }
}
.message__left .message__text-box .text-box_head p:nth-child(2) {
  font-size: 22px;
  font-weight: 600;
  padding-top: 5px;
  line-height: 170%;
}
@media screen and (min-width: 1024px) {
  .message__left .message__text-box .text-box_head p:nth-child(2) {
    font-size: 32px;
    padding-top: 10px;
  }
}
.message__left .message__text-box .text-box_text {
  font-size: 15px;
  line-height: 150%;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .message__left .message__text-box .text-box_text {
    font-size: 16px;
    line-height: 190%;
    color: #333;
  }
}
.message__right {
  text-align: center;
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .message__right {
    margin-top: 0;
    width: 350px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 10px;
  }
}
.message__right .message__x {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
  -webkit-box-shadow: 0 4px 12px rgba(49, 49, 49, 0.155);
          box-shadow: 0 4px 12px rgba(49, 49, 49, 0.155);
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .message__right .message__x {
    width: 100%;
  }
}
.message__right .message__x:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.message__right .message__x-text {
  background-color: #fff;
  padding: 14px 25px;
  text-align: center;
  display: block;
  -webkit-box-shadow: 0 4px 12px rgba(87, 87, 87, 0.155);
          box-shadow: 0 4px 12px rgba(87, 87, 87, 0.155);
  text-decoration: underline;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border-radius: 5px;
}
.message__right .message__x-text i {
  font-size: 20px;
  text-decoration: underline;
}
.message__right .message__x-text::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-image: url("/img/up-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.message__right .message__x-text:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 65px;
}
@media screen and (min-width: 1024px) {
  .message__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 80px;
  }
}

.merit {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .merit {
    padding: 50px 0;
  }
}
.merit::before {
  content: "";
  position: absolute;
  bottom: 900px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: #F4F6FC;
  border-radius: 50%;
  z-index: -1; /* 背景にするため低めに */
}
.merit__text1 {
  line-height: 170%;
  margin-top: 36px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .merit__text1 {
    margin-top: 58px;
    font-size: 18px;
  }
}
.merit__text2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 170%;
  margin-top: 36px;
  color: #2850bd;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .merit__text2 {
    font-size: 32px;
    margin-top: 110px;
    margin-bottom: 100px;
  }
}
.merit__text3 {
  margin-top: 36px;
  font-weight: 500;
  line-height: 190%;
  margin-bottom: 44px;
}
@media screen and (min-width: 1024px) {
  .merit__text3 {
    margin-top: 70px;
    margin-bottom: 80px;
    text-align: center;
    font-size: 18px;
  }
}
.merit__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 35px;
  margin-bottom: 100px;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .merit__boxes {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.merit__box {
  border-radius: 10px;
  border: 3px solid #E2ECFF;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 0px 0px #E2ECFF;
          box-shadow: 4px 4px 0px 0px #E2ECFF;
  text-align: center;
  padding: 40px 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 1024px) {
  .merit__box {
    padding: 40px 0;
  }
}
.merit__box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.merit__box:nth-child(1) {
  width: 100%;
}
.merit__box:nth-child(2), .merit__box:nth-child(3) {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .merit__box:nth-child(2), .merit__box:nth-child(3) {
    width: calc(50% - 10px);
    margin-top: 20px;
  }
}
.merit__box-head {
  color: #2850bd;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 130%;
}
@media screen and (min-width: 1024px) {
  .merit__box-head {
    text-align: left;
  }
}
.merit__box-text {
  margin-top: 25px;
}
.merit__box-text p {
  margin-top: 5px;
  font-weight: 500;
  line-height: 170%;
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .merit__box-text p {
    font-size: 18px;
  }
}
.merit__box-content {
  display: inline-block;
}
.merit__box i {
  color: #2850bd;
}

.benefit__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .benefit__boxes {
    margin-top: 75px;
  }
}
.benefit__box {
  background-color: #F4F6FD;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  border-radius: 10px;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 140px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.benefit__box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (min-width: 1024px) {
  .benefit__box {
    width: calc((100% - 120px) / 5);
  }
}
.benefit__box .box-content {
  text-align: center;
}
.benefit__box .box-content i {
  font-size: 40px;
  color: #2850bd;
}
.benefit__box .box-content p {
  font-size: 16px;
  margin-top: 11px;
  font-weight: 500;
  color: #2850bd;
}

.interview {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background-color: #3E61C3;
}
@media screen and (min-width: 1024px) {
  .interview {
    padding: 110px 0;
  }
}
.interview .heading {
  color: #fff;
}
.interview__boxes {
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .interview__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 110px;
  }
}
.interview__box {
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  height: 465px;
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 769px) {
  .interview__box {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.interview__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 235px;
}
.interview__box-content {
  position: relative;
}
.interview__name-box {
  border-radius: 0px 20px 0px 0px;
  background-color: rgba(255, 255, 255, 0.8745098039);
  position: absolute;
  bottom: -50px;
  left: 0;
  padding: 20px 17px;
  width: 205px;
}
.interview__name-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2850bd;
  font-weight: 700;
}
.interview__name-box p:nth-child(1) {
  font-size: 12px;
}
.interview__name-box p:nth-child(3) {
  font-size: 24px;
  color: #333;
}
.interview__name-box p:nth-child(4) {
  font-size: 14px;
  color: #333;
}
.interview__text {
  margin-top: 60px;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 0 17px 17px 17px;
}
.interview .slick-prev,
.interview .slick-next {
  background: rgba(255, 255, 255, 0.565);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  color: rgba(51, 51, 51, 0.6235294118);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .interview .slick-prev,
  .interview .slick-next {
    top: 60%;
    width: 40px;
    height: 40px;
  }
}
.interview .slick-prev:hover,
.interview .slick-next:hover {
  background: rgba(51, 51, 51, 0.4862745098);
  color: #fff;
}
.interview .slick-prev i,
.interview .slick-next i {
  font-size: 14px;
}
.interview .slick-prev {
  left: 10px;
}
@media screen and (min-width: 1024px) {
  .interview .slick-prev {
    left: -10px;
  }
}
.interview .slick-next {
  right: 10px;
}
@media screen and (min-width: 1024px) {
  .interview .slick-next {
    right: -10px;
  }
}

.schedule {
  padding-top: 87px;
  padding-bottom: 87px;
}
@media screen and (min-width: 1024px) {
  .schedule {
    padding-top: 110px;
    padding-bottom: 200px;
  }
}
.schedule__content {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .schedule__content {
    margin-top: 105px;
  }
}

.flow {
  padding-top: 70px;
  padding-bottom: 70px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(31.51%, #FFF), to(#B4CFFF));
  background: linear-gradient(180deg, #FFF 31.51%, #B4CFFF 100%);
}
@media screen and (min-width: 1024px) {
  .flow {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
.flow__heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flow__heading .heading-ja {
  color: #16186B;
  font-weight: 700;
  letter-spacing: 3.04px;
}
@media screen and (min-width: 1024px) {
  .flow__heading .heading-ja {
    font-size: 18px;
  }
}
.flow__heading .heading-en {
  color: #333;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .flow__heading .heading-en {
    font-size: 28px;
  }
}
.flow__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 0 20px;
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .flow__boxes {
    gap: 55px;
    margin-top: 95px;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.flow__box {
  position: relative;
  border: 3px solid #16186B;
  background-color: #fff;
  padding: 45px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  width: 100%;
}
.flow__box .box-num {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #16186B;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: -15px;
  top: -15px;
  font-weight: bold;
}
.flow__box .box-title {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #16186B;
}
.flow__box .box-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: justify;
  font-size: 16px;
  margin-top: 30px;
}
.flow__box .box-btn {
  cursor: pointer;
}
.flow__box .box-btn img {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .flow__box .box-btn img {
    margin-top: 35px;
  }
}

.requirements {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #B4CFFF;
}
.requirements__heading {
  text-align: center;
  color: #16186B;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .requirements__heading {
    font-size: 28px;
  }
}
.requirements__content {
  background-color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .requirements__content {
    padding: 105px 110px;
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.requirements-detail {
  max-width: 720px;
  margin: 0 auto;
}
.requirements-detail .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.requirements-detail .row dt {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.requirements-detail .row dd {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .requirements-detail .row dd {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .requirements-detail .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .requirements-detail .row dt {
    width: 120px;
    margin-bottom: 0;
  }
  .requirements-detail .row dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.faq {
  padding-top: 70px;
  padding-bottom: 70px;
}
.faq__content {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .faq__content {
    max-width: 800px;
  }
}
.faq__list {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .faq__list {
    margin-top: 80px;
  }
}
.faq__item {
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  border-bottom: 1px solid #ddd; /* 質問ごとの区切り */
}
@media screen and (min-width: 1024px) {
  .faq__item {
    border-radius: 5px;
  }
}
.faq__question {
  width: 100%;
  text-align: left;
  background-color: #ececec;
  color: #333;
  border: none;
  cursor: pointer;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 横並びにする */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* アイコンを中央に配置 */
  position: relative; /* 相対位置でアイコンを右寄せ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* アイコンと質問文を左右に配置 */
  font-size: 14px;
  padding: 20px 15px;
}
@media screen and (min-width: 1024px) {
  .faq__question {
    font-size: 18px;
    padding: 20px;
  }
}
.faq__question::after {
  content: "＋";
  font-size: 20px; /* アイコンの大きさ */
  font-weight: bold;
  position: absolute; /* 絶対位置で右寄せ */
  right: 10px; /* アイコンを少し右に */
  top: 50%; /* 垂直方向で中央に配置 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); /* 完全に中央にする */
}
@media screen and (min-width: 1024px) {
  .faq__question::after {
    right: 25px; /* 右側に余白を入れる */
  }
}
.faq__question.active::after {
  content: "−";
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 10px; /* スマホでは横パディングを小さく */
}
.faq__answer p {
  text-align: left;
  font-size: 14px;
  color: #333;
}
@media screen and (min-width: 1024px) {
  .faq__answer {
    font-size: 16px;
  }
}
.faq__answer.open {
  max-height: 500px;
  padding: 20px;
}

.footer {
  background: #2850bd;
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
}
.footer small {
  color: #fff;
  font-size: 11px;
}

.recruit__box {
  border: 3px solid #16186B;
  background-color: #fff;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .recruit__box {
    padding: 30px 10px;
  }
}
.recruit__box .box-title {
  font-weight: 500;
  color: #16186B;
  margin-bottom: 30px;
}
.recruit__box .box-text {
  margin-top: 15px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .recruit__box .box-text {
    text-align: center;
    margin-top: 5px;
  }
}
.recruit__box .box-text a {
  color: #1a0dab;
}
.recruit__box .box-text:nth-of-type(2) {
  margin-top: 10px;
}