@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
body {
  color: #111827;
}

/* -------------------------------------------- */
/* ----------------- フォント名 --------------- */
/* -------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.footer {
  padding-block: 4rem 3.375rem;
  background: -webkit-gradient(linear, left top, right top, from(#B5CFE4), color-stop(#015EA6), to(navy));
  background: linear-gradient(to right, #B5CFE4, #015EA6, navy);
}
@media screen and (min-width: 780px) {
  .footer {
    padding-block: 5rem 4.1875rem;
  }
}

.footer__inner {
  padding-inline: 1.5rem;
}
@media screen and (min-width: 780px) {
  .footer__inner {
    max-width: 68.125rem;
  }
}

.footer__logo {
  width: 9.875rem;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .footer__logo {
    width: 13.8125rem;
  }
}

.footer__info {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 2.75rem;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8125rem;
}
@media screen and (min-width: 780px) {
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
  }
}

.footer__nav-item {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.footer__nav-link {
  color: #FFFFFF;
}

.footer__contact {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .footer__contact {
    margin-top: initial;
  }
}

.footer__contact-btn {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: capitalize;
  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;
  background-color: #0C3062;
  border-radius: 1.5rem;
  padding-block: 0.75rem;
  width: 11.25rem;
  max-width: 100%;
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  border: 1px solid #0C3062;
}

.footer__contact-btn:hover {
  color: #0C3062;
  background-color: #FFFFFF;
}

.footer__tel {
  margin-top: 1rem;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  display: block;
}
@media screen and (min-width: 780px) {
  .footer__tel {
    text-align: right;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__tel span {
    font-size: 0.75rem;
  }
}

.footer__time {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 780px) {
  .footer__time {
    font-size: 0.875rem;
    text-align: right;
    margin-top: initial;
  }
}

.footer__bottom {
  margin-top: 2.5rem;
  border-top: 1px solid #FFFFFF;
  padding-top: 2rem;
}
@media screen and (min-width: 780px) {
  .footer__bottom {
    padding-top: 1.6875rem;
    margin-top: 3.125rem;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 780px) {
  .footer__sns {
    margin-top: 0.25rem;
  }
}

.footer__sns-item {
  width: 2.5rem;
  height: 2.5rem;
}

.footer__copyright {
  font-weight: 400;
  font-size: 0.875rem;
  color: #FFFFFF;
}
@media screen and (min-width: 780px) {
  .footer__copyright {
    font-size: 0.9375rem;
  }
}

.header {
  height: 3.25rem;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (min-width: 780px) {
  .header {
    height: 4.3125rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
}
@media screen and (min-width: 780px) {
  .header__inner {
    padding-inline: 1.25rem;
    max-width: 85.5rem;
  }
}

.header__logo {
  width: 9.75rem;
  max-width: 100%;
}

.header__nav {
  height: inherit;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 400;
  text-transform: capitalize;
  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;
  height: inherit;
}

.header__nav-button {
  font-size: 0.8125rem;
  line-height: 1.5714285714;
  font-weight: 700;
  text-transform: capitalize;
  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;
  background-color: #0C3062;
  border-radius: 2.125rem;
  padding-block: 0.625rem 0.5rem;
  width: 7.8125rem;
  max-width: 100%;
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.875rem;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  border: 1px solid #0C3062;
}

.header__nav-button:hover {
  color: #0C3062;
  background-color: #FFFFFF;
}

.fv {
  margin-top: 3.25rem;
}
@media screen and (min-width: 780px) {
  .fv {
    margin-top: 4.3125rem;
  }
}

.fv__inner {
  position: relative;
}

.fv__content {
  position: absolute;
  left: 0;
  bottom: -5.4375rem;
}
@media screen and (min-width: 780px) {
  .fv__content {
    top: 22%;
    bottom: initial;
  }
}

.fv__title {
  padding-left: 1rem;
}
@media screen and (min-width: 780px) {
  .fv__title {
    padding-left: 5.125rem;
  }
}

.fv__title--emphasis {
  font-size: 1.75rem;
  color: #0C3062;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  text-shadow: 0 0 10px #FFFFFF;
}
@media screen and (min-width: 780px) {
  .fv__title--emphasis {
    font-size: 4.6875rem;
  }
}

.fv__title--emphasis::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 60%;
  width: calc(100% + 2.25rem);
  height: 0.8125rem;
  background-color: rgba(59, 130, 246, 0.15);
  z-index: -1;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
}
@media screen and (min-width: 780px) {
  .fv__title--emphasis::before {
    height: 2.5rem;
    left: -5.125rem;
    width: calc(100% + 8.25rem);
  }
}

.fv__subtitle {
  margin-top: 0.5rem;
  color: #0C3062;
  font-size: 0.875rem;
  line-height: 1.7777777778;
  font-weight: 700;
  margin-left: 1.0625rem;
}
@media screen and (min-width: 780px) {
  .fv__subtitle {
    margin-top: 0.9375rem;
    font-size: 1.125rem;
    margin-left: 5.125rem;
  }
}

.fv__image {
  width: 100%;
  aspect-ratio: 448/329;
  min-height: 20.5625rem;
}
@media screen and (min-width: 780px) {
  .fv__image {
    margin-inline: auto 0;
    max-width: 59.625rem;
    min-height: initial;
    aspect-ratio: 954/678;
  }
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.about {
  margin-top: 7.625rem;
  background-image: url(../image/img/about-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about {
    margin-top: initial;
    padding-top: 8.6875rem;
  }
}

.about__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about__content {
    margin-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.625rem;
  }
}

.about__image {
  aspect-ratio: 340/270;
}
@media screen and (min-width: 780px) {
  .about__image {
    aspect-ratio: 584/407;
    max-width: 36.5rem;
  }
}

.about__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.about__text-block {
  margin-top: 1rem;
}
@media screen and (min-width: 780px) {
  .about__text-block {
    margin-top: initial;
    max-width: 29.9375rem;
  }
}

.about__lead {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 780px) {
  .about__lead {
    font-size: 2rem;
  }
}

.about__description {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 500;
}
@media screen and (min-width: 780px) {
  .about__description {
    margin-top: 2.25rem;
    line-height: 2;
  }
}

.about__button {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .about__button {
    margin-inline: auto 0;
    margin-top: 1.5625rem;
  }
}

.about__logo {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .about__logo {
    margin-top: 4.75rem;
  }
}

.section__heading {
  text-align: center;
}

.section__title {
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #0C3062;
}
@media screen and (min-width: 780px) {
  .section__title {
    font-size: 3.4375rem;
  }
}

.section__subtitle {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #3B82F6;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 780px) {
  .section__subtitle {
    font-size: 1.125rem;
    margin-top: initial;
  }
}

.section__title--white {
  color: #FFFFFF;
}

.section__subtitle--white {
  color: #FFFFFF;
}

.button {
  display: block;
  width: 18.75rem;
  background-color: #0C3062;
  color: #FFFFFF;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding-block: 1.1875rem 1.25rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  letter-spacing: 0.12em;
  border: 1px solid #0C3062;
}

.button::after {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  right: 0.375rem;
  width: 1rem;
  height: 1rem;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #FFFFFF;
  border-right: 0.5rem solid #FFFFFF;
  border-left: 0.5rem solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.button:hover {
  background-color: #FFFFFF;
  color: #0C3062;
}

.button:hover::after {
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #0C3062;
  border-right: 0.5rem solid #0C3062;
  border-left: 0.5rem solid transparent;
}

.training {
  margin-block: 1.8125rem 0.8125rem;
}
@media screen and (min-width: 780px) {
  .training {
    margin-block: 4.125rem 0.4375rem;
  }
}

@media screen and (min-width: 780px) {
  .training__inner {
    max-width: 74.4375rem;
  }
}

.training__header {
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .training__header {
    margin-top: 4.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.training__description {
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
}

.training__button {
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .training__button {
    margin-top: 1.25rem;
    margin-inline: initial;
  }
}

.training__list {
  margin-top: 1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
  -webkit-column-gap: 1.8125rem;
     -moz-column-gap: 1.8125rem;
          column-gap: 1.8125rem;
}
@media screen and (min-width: 780px) {
  .training__list {
    margin-top: 4.625rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3.875rem;
  }
}

.training__image {
  aspect-ratio: 343/240;
}
@media screen and (min-width: 780px) {
  .training__image {
    aspect-ratio: 361/335;
  }
}

.training__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.training__label {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .training__label {
    font-size: 1.375rem;
    margin-top: 1.5rem;
  }
}

.training__logo {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .training__logo {
    margin-top: 3.75rem;
  }
}

.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 24, 39, 0)), to(rgb(17, 24, 39))), url(../image/img/contact-bg-sp.jpg);
  background: linear-gradient(rgba(17, 24, 39, 0), rgb(17, 24, 39)), url(../image/img/contact-bg-sp.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4.25rem;
}
@media screen and (min-width: 780px) {
  .contact {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 24, 39, 0)), to(rgb(17, 24, 39))), url(../image/img/contact-bg.jpg);
    background: linear-gradient(rgba(17, 24, 39, 0), rgb(17, 24, 39)), url(../image/img/contact-bg.jpg);
    padding-block: 8.5625rem;
    background-size: cover;
  }
}

.contact__inner {
  padding-inline: 1.375rem;
}

.contact__text {
  margin-top: 4rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (min-width: 780px) {
  .contact__text {
    margin-top: 4.375rem;
  }
}

.contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.6875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  margin-top: 2.9375rem;
  width: 17.1875rem;
  margin-inline: auto;
  padding-block: 0.1875rem;
  background-color: #0C3062;
  color: #FFFFFF;
  border-radius: 6.25rem;
  text-align: center;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
}
@media screen and (min-width: 780px) {
  .contact__button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: initial;
    margin-top: 4.75rem;
    gap: 0.375rem;
    width: 25rem;
    padding-block: 0.9375rem;
  }
}

.contact__button:hover {
  color: #0C3062;
  background-color: #FFFFFF;
}

.contact__button-icon {
  width: 1.6875rem;
  height: 1.6875rem;
}

.contact__button-icon path {
  fill: #FFFFFF;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.contact__button:hover .contact__button-icon path {
  fill: #0C3062;
}

.contact__button-text {
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 2.4705882353;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .contact__button-text {
    font-size: 1.25rem;
    line-height: 2.1;
  }
}

.contact__button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: 1.6875rem;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transition: border-top 0.3s ease, border-right 0.3s ease;
  transition: border-top 0.3s ease, border-right 0.3s ease;
}
@media screen and (min-width: 780px) {
  .contact__button::after {
    right: 2.5625rem;
  }
}

.contact__button:hover.contact__button::after {
  border-top: 2px solid #0C3062;
  border-right: 2px solid #0C3062;
}

.open-btn {
  width: 1.5rem;
  padding: 0;
  z-index: 9999;
}

.open-btn span {
  display: block;
  background: #111827;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 0.625rem;
  position: relative;
  z-index: 11;
}

.open-btn span:nth-of-type(2) {
  margin-block: 0.375rem;
}

.open-btn:not(.active) {
  -webkit-animation-name: burgerAnimationSlide;
          animation-name: burgerAnimationSlide;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.open-btn.active span {
  -webkit-animation-name: burgerAnimationSlide;
          animation-name: burgerAnimationSlide;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.open-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0.75rem;
}

.open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.open-btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -0.25rem;
}

@-webkit-keyframes burgerAnimationSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  49% {
    -webkit-transform: translateX(-0.7em);
            transform: translateX(-0.7em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(0.7em);
            transform: translateX(0.7em);
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes burgerAnimationSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  49% {
    -webkit-transform: translateX(-0.7em);
            transform: translateX(-0.7em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(0.7em);
            transform: translateX(0.7em);
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}
.sp-menu {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: scroll;
  max-width: 100vi;
  margin-top: 3.25rem;
  background-color: #FFFFFF;
}

.sp-menu.active {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.sp-menu__inner {
  max-width: 14.9375rem;
  margin-inline: auto;
}

.sp-menu__list {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  padding-top: 4.25rem;
}

.sp-menu__item-link {
  font-weight: 400;
  font-size: 1rem;
  text-transform: capitalize;
  color: #111827;
}

.sp-menu__item-button {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: capitalize;
  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;
  background-color: #0C3062;
  border-radius: 1.5rem;
  padding-block: 0.75rem;
  width: 100%;
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  border: 1px solid #0C3062;
}

.sp-menu__item-button:hover {
  color: #0C3062;
  background-color: #FFFFFF;
}

.fv-under {
  padding-block: 5.1875rem 5.4375rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 780px) {
  .fv-under {
    padding-block: 13.125rem 13.5625rem;
  }
}

.fv-under--training {
  background-image: url(../image/fv/fv-training-sp.jpg);
}
@media screen and (min-width: 780px) {
  .fv-under--training {
    background-image: url(../image/fv/fv-training.jpg);
  }
}

.fv-under--company {
  background-image: url(../image/fv/fv-company-sp.jpg);
  padding-block: 4.3125rem 4.625rem;
}
@media screen and (min-width: 780px) {
  .fv-under--company {
    background-image: url(../image/fv/fv-company.jpg);
    padding-block: 13.125rem 13.5625rem;
  }
}

.fv-under--contact {
  background-image: url(../image/fv/fv-contact-sp.jpg);
  padding-block: 5.8125rem 6.25rem;
}
@media screen and (min-width: 780px) {
  .fv-under--contact {
    background-image: url(../image/fv/fv-contact.jpg);
    padding-block: 13.125rem 13.5625rem;
  }
}

.fv-under__inner {
  margin-inline: calc(50% - 50vi);
}

@media screen and (min-width: 780px) {
  .fv-under__content {
    margin-left: 3.5625rem;
  }
}

.fv-under__title--emphasis {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 780px) {
  .fv-under__title--emphasis {
    font-size: 3.75rem;
  }
}

.fv-under__title--emphasis::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 60%;
  width: calc(100% + 2.25rem);
  height: 0.8125rem;
  background-color: rgba(59, 130, 246, 0.15);
  z-index: -1;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
}
@media screen and (min-width: 780px) {
  .fv-under__title--emphasis::before {
    height: 2.5rem;
    left: -5.125rem;
    width: calc(100% + 8.25rem);
  }
}

.fv-under__subtitle {
  margin-top: 0.875rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.8;
}
@media screen and (min-width: 780px) {
  .fv-under__subtitle {
    margin-top: 0.375rem;
    font-size: 1.125rem;
  }
}

.training-page {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .training-page {
    margin-top: 4.1875rem;
  }
}

.training-page__inner {
  margin-top: 1.5rem;
  background-color: #F7F7F7;
}
@media screen and (min-width: 780px) {
  .training-page__inner {
    margin-top: 2.875rem;
  }
}

.training-page-container {
  padding: 3.625rem 1rem 1.5rem;
  display: -ms-grid;
  display: grid;
  gap: 2.875rem;
}
@media screen and (min-width: 780px) {
  .training-page-container {
    padding: 10.625rem 7.5rem 7.9375rem;
    gap: 6.125rem;
  }
}

.training-page__item {
  padding-block: 5.3125rem 2rem;
  padding-inline: 1.5625rem;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 1.1875rem 0 0.625rem 0;
}
@media screen and (min-width: 780px) {
  .training-page__item {
    padding-block: 5rem;
    border-radius: initial;
  }
}

@media screen and (min-width: 780px) {
  .training-page__item:nth-child(odd) {
    padding-inline: 9.375rem 3.125rem;
  }
}

@media screen and (min-width: 780px) {
  .training-page__item:nth-child(even) {
    padding-inline: 3.125rem 9.375rem;
  }
}

.training-page__item:nth-child(1) {
  padding-inline: 0.1875rem;
  border-radius: 10px 0 10px 0;
  padding-top: 5rem;
}
@media screen and (min-width: 780px) {
  .training-page__item:nth-child(1) {
    padding-inline: 11.25rem 5rem;
  }
}

.training-page__number {
  position: absolute;
  font-weight: 500;
  font-size: 3.75rem;
  color: #0C3062;
  top: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .training-page__number {
    font-size: 6.25rem;
    top: -3.125rem;
  }
}

@media screen and (min-width: 780px) {
  .training-page__item:nth-child(odd) .training-page__number {
    left: 10.6875rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 780px) {
  .training-page__item:nth-child(even) .training-page__number {
    left: 37rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.training-page__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: 1.5rem;
}
@media screen and (min-width: 780px) {
  .training-page__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.training-page__item:nth-child(1) .training-page__content {
  padding-inline: 1.375rem;
}
@media screen and (min-width: 780px) {
  .training-page__item:nth-child(1) .training-page__content {
    padding-inline: initial;
  }
}

@media screen and (min-width: 780px) {
  .training-page__item:nth-child(even) .training-page__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.training-page__text-block {
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .training-page__text-block {
    width: 28.625rem;
  }
}

@media screen and (min-width: 780px) {
  .training-page__item:nth-child(1) .training-page__text-block {
    width: 24.375rem;
  }
}

.training-page__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .training-page__title {
    font-size: 1.75rem;
  }
}

.training-page__description {
  margin-top: 1.6875rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
}
@media screen and (min-width: 780px) {
  .training-page__description {
    margin-top: 2rem;
  }
}

.training-page__image {
  aspect-ratio: 300/230;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .training-page__image {
    aspect-ratio: 462/340;
    max-width: 28.875rem;
  }
}

.training-page__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.training-page__table {
  margin-top: 2rem;
  border-collapse: collapse;
  width: 21.4375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .training-page__table {
    margin-top: 5rem;
    width: 43.5rem;
  }
}

.training-page__table th {
  background-color: rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 100%;
  color: #000;
  text-align: left;
  padding-block: 0.5rem;
  padding-left: 0.75rem;
  border: 1px solid #B9B9B9;
}

.training-page__table td {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #000;
  padding-block: 0.625rem;
  padding-left: 0.625rem;
  border: 1px solid #B9B9B9;
}

.training-page__table td:first-of-type {
  font-size: 1rem;
}

.training-page__note {
  margin-top: 2rem;
  font-weight: 400;
  padding-inline: 0.4375rem;
  font-size: 1rem;
  line-height: 100%;
}
@media screen and (min-width: 780px) {
  .training-page__note {
    margin-top: 5rem;
    text-align: center;
    padding-inline: initial;
  }
}

.company-page {
  margin-block: 2.125rem 2.5625rem;
}
@media screen and (min-width: 780px) {
  .company-page {
    margin-block: 4.25rem 5rem;
  }
}

.company-page__inner {
  margin-top: 1.5rem;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .company-page__inner {
    margin-top: 5.4375rem;
    width: 53.125rem;
    margin-inline: auto;
  }
}

.company-page__table {
  display: block;
  padding-inline: 0.625rem;
  border-collapse: collapse;
}
@media screen and (min-width: 780px) {
  .company-page__table {
    display: table;
    padding-inline: initial;
  }
}

.company-page__table tbody {
  display: block;
}

.company-page__row {
  display: block;
}
@media screen and (min-width: 780px) {
  .company-page__row {
    display: table-row;
  }
}

.company-page__heading {
  display: block;
  width: 100%;
  background-color: #F7F7F7;
  border: 1px solid #E5E7EB;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  padding-block: 0.875rem;
  padding-left: 1rem;
  text-align: left;
}
@media screen and (min-width: 780px) {
  .company-page__heading {
    display: table-cell;
    width: 13rem;
    padding-left: 1.5rem;
    padding-block: 1rem;
  }
}

.company-page__data {
  width: 100%;
  display: block;
  border: 1px solid #E5E7EB;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  padding-block: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 780px) {
  .company-page__data {
    width: 36.75rem;
    display: table-cell;
    padding-left: 1.5rem;
  }
}

.contact-form {
  margin-block: 1.5rem;
}
@media screen and (min-width: 780px) {
  .contact-form {
    margin-block: 5rem;
  }
}

@media screen and (min-width: 780px) {
  .contact-form__inner {
    max-width: 60.625rem;
  }
}

.contact-form__description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .contact-form__description {
    text-align: center;
  }
}

.contact-form__form {
  background-color: #F7F7F7;
  padding: 1.5rem 0.75rem;
  margin-top: 1rem;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 780px) {
  .contact-form__form {
    padding: 5rem 8.75rem;
    margin-top: 2.5rem;
  }
}

.contact-form__label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__required {
  display: inline-block;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #0C3062;
  padding: 0.1875rem 0.5rem;
  margin-right: 0.5rem;
}

.contact-form__input,
.contact-form__textarea {
  display: block;
  width: 100%;
  padding-block: 0.5rem;
  padding-left: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  margin-top: 0.5rem;
}
@media screen and (min-width: 780px) {
  .contact-form__input,
  .contact-form__textarea {
    font-size: 1rem;
  }
}

.contact-form__textarea {
  min-height: 15rem;
}

.contact-form__check {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
}

.contact-form__link {
  color: #0C3062;
  text-decoration: underline;
}

.contact-form__submit input {
  margin-top: 0.625rem;
  display: block;
  margin-inline: auto;
  background-color: #0C3062;
  border-radius: 2.25rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  padding-block: 1rem;
  max-width: 100%;
  width: 100%;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 780px) {
  .contact-form__submit input {
    margin-top: 2.125rem;
    width: 13rem;
  }
}

.contact-form__submit input:hover {
  color: #0C3062;
  background-color: #FFFFFF;
}

.contact-form__note {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .contact-form__note {
    margin-top: 5rem;
    max-width: 45.8125rem;
    margin-inline: auto;
  }
}

.confirm {
  margin-block: 3.25rem 1.5rem;
}
@media screen and (min-width: 780px) {
  .confirm {
    margin-block: 5rem;
  }
}

@media screen and (min-width: 780px) {
  .confirm__inner {
    max-width: 57.5rem;
  }
}

.confirm__title {
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #0C3062;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .confirm__title {
    font-size: 3.4375rem;
  }
}

.confirm__text {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .confirm__text {
    margin-top: 2rem;
    text-align: center;
  }
}

.confirm__table {
  margin-top: 1.5rem;
  display: block;
  border-collapse: collapse;
}
@media screen and (min-width: 780px) {
  .confirm__table {
    display: table;
  }
}

.confirm__table tbody {
  display: block;
}

.confirm__table tr {
  display: block;
}
@media screen and (min-width: 780px) {
  .confirm__table tr {
    display: table-row;
  }
}

.confirm__table th {
  display: block;
  width: 100%;
  background-color: #F7F7F7;
  border: 1px solid #E5E7EB;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  padding-block: 1rem;
  padding-left: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 780px) {
  .confirm__table th {
    display: table-cell;
    width: 13rem;
  }
}

.confirm__table td {
  width: 100%;
  display: block;
  border: 1px solid #E5E7EB;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  padding-block: 1rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 780px) {
  .confirm__table td {
    width: 36.75rem;
    display: table-cell;
  }
}

.confirm__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.confirm__submit input[type=submit] {
  margin-top: 3rem;
  display: block;
  background-color: #0C3062;
  border-radius: 2.25rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  padding-block: 1rem;
  max-width: 100%;
  width: 100%;
  border: 1px solid #0C3062;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 780px) {
  .confirm__submit input[type=submit] {
    margin-top: 2.125rem;
    width: 13rem;
  }
}

.confirm__submit input[type=submit]:hover {
  color: #0C3062;
  background-color: #FFFFFF;
}

.confirm__submit input[type=button] {
  margin-top: 3rem;
  display: block;
  background-color: #FFFFFF;
  border-radius: 2.25rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: #0C3062;
  text-align: center;
  padding-block: 1rem;
  max-width: 100%;
  width: 100%;
  border: 1px solid #0C3062;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 780px) {
  .confirm__submit input[type=button] {
    margin-top: 2.125rem;
    width: 13rem;
  }
}

.confirm__submit input[type=button]:hover {
  color: #FFFFFF;
  background-color: #0C3062;
}

.thanks {
  padding-block: 5rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .thanks {
    padding-block: 13.375rem;
  }
}

@media screen and (min-width: 780px) {
  .thanks__inner {
    max-width: 37.5rem;
  }
}

.thanks__title {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .thanks__title {
    margin-top: 2.1875rem;
    font-size: 1.5rem;
  }
}

.thanks__text {
  text-align: center;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .thanks__text {
    margin-top: 1.3125rem;
  }
}

.thanks__button {
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .thanks__button {
    margin-top: 2.5rem;
  }
}
/*# sourceMappingURL=styles.css.map */