@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

/* 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,
picture {
  max-width: 100%;
  display: block;
}

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

/* reduceでもこのループだけは必ず回す */
@media (prefers-reduced-motion: reduce) {
  .member__rail {
    /* reset.scss の 0.01ms / 1回 を上書きする */
    animation-name: member-rail-scroll !important;
    animation-duration: var(--speed, 20s) !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.layout-about {
  padding-top: 7.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-about {
    padding-top: 3.75rem;
    margin-bottom: initial;
    margin-bottom: 2.5rem;
  }
}

.layout-company {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-company {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.layout-contact {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .layout-contact {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.layout-faq {
  padding-top: 7.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-faq {
    padding-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.layout-flow {
  padding-top: 6.875rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-flow {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.layout-occupation {
  padding-top: 7.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-occupation {
    padding-top: 2.5rem;
    margin-bottom: 2.5rem;
    margin-top: initial;
  }
}

.layout-reason {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .layout-reason {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.25rem;
}

.inner {
  width: 100%;
  max-width: 91.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.inner-small {
  width: 100%;
  max-width: 75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 1699px) {
  .section-title {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title span {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #2949A5;
}
@media screen and (max-width: 1699px) {
  .section-title span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title span {
    font-size: 1.125rem;
  }
}

.text-large {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #000000;
  line-height: 1.5333333333;
}
@media screen and (max-width: 767px) {
  .text-large {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.text-small {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .text-small {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.about {
  width: 100%;
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about {
    overflow: initial;
  }
}

.about__inner {
  width: 100%;
}

.about__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  height: 33.75rem;
  gap: 5.125rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1699px) {
  .about__top {
    margin-left: 6.25rem;
    height: auto;
    margin-right: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .about__top {
    flex-direction: column;
    margin-left: 1.25rem;
    margin-right: inherit;
  }
}

.about__title {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 1699px) {
  .about__title {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .about__title {
    margin-top: initial;
  }
}

.section-title.section-title--about {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--about {
    text-align: center;
  }
}

.about__top-text {
  width: 26%;
}
@media screen and (max-width: 1699px) {
  .about__top-text {
    width: 50%;
  }
}

.about__top-contents {
  margin-top: 1.875rem;
}

.about__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
  width: 100%;
  max-width: 41.25rem;
  top: 47%;
}
@media screen and (max-width: 1699px) {
  .about__text {
    top: 37%;
    flex-wrap: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .about__text {
    gap: 0.6875rem;
  }
}

.about__text p {
  background: linear-gradient(150deg, #2949A5 0%, #1F367B 55%, #152553 100%);
  width: 100%;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0.625rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__text p {
    font-size: 1.125rem;
    padding: 0.8125rem 1.25rem;
  }
}

.about__text-sp p {
  background: linear-gradient(150deg, #2949A5 0%, #1F367B 55%, #152553 100%);
  width: 100%;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0.8125rem 1.25rem;
  position: relative;
}

.about__text-sp {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}

.about__under {
  height: 33.75rem;
  margin-top: 3.75rem;
  margin-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .about__under {
    flex-direction: column;
    margin-top: 1.875rem;
    gap: 1.875rem;
    height: auto;
  }
}

.about__under-text-large {
  margin-top: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about__under-text-large {
    margin-top: initial;
  }
}

.about__img {
  width: 100%;
  max-width: 65rem;
}

.about__img img {
  width: 100%;
  aspect-ratio: 1040/540;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__under-text {
  width: 100%;
  max-width: 41.25rem;
}
@media screen and (max-width: 767px) {
  .about__under-text {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.about__under-text-small {
  margin-top: 0.3125rem;
}

.company {
  background-color: #F3F3F3;
}

.company__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .company__contents {
    flex-direction: column;
    align-items: center;
  }
}

.company__title {
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .company__title {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.section-title.section-title--company {
  writing-mode: vertical-rl;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--company {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}

.section-title.section-title--company span {
  display: flex;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--company span {
    display: block;
  }
}

.company__title h3 {
  writing-mode: vertical-rl;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .company__title h3 {
    writing-mode: horizontal-tb;
    font-size: 1.25rem;
    text-align: center;
  }
}

.company__items {
  width: 100%;
  max-width: 47.5rem;
}
@media screen and (max-width: 767px) {
  .company__items {
    margin-top: 1.875rem;
  }
}

.company__item {
  display: flex;
  align-items: flex-start;
  padding-top: 0.625rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #717171;
}
@media screen and (max-width: 767px) {
  .company__item {
    flex-direction: column;
  }
}

.company__item:nth-child(1) {
  border-top: 1px solid #717171;
}

.prof__title {
  width: 26.3%;
  font-size: 1.125rem;
  padding-left: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .prof__title {
    width: 100%;
    padding-left: initial;
  }
}

.prof__text p {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .prof__text p {
    font-size: 1rem;
  }
}

.prof__text--large {
  font-weight: 700;
}

.contact {
  background-image: url(../images/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: auto;
}

.section-title.section-title--contact,
.section-title.section-title--contact span {
  color: #ffffff;
}

.contact__text {
  margin-top: 2.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.contact__items {
  margin-top: 3rem;
  display: flex;
  gap: 2.375rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__items {
    margin-top: 1.875rem;
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.contact__tel {
  width: 22.5rem;
  height: 7.5rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s, color 0.4s, opacity 0.4s;
}
@media screen and (max-width: 767px) {
  .contact__tel {
    width: 20.9375rem;
  }
}

.contact__mail {
  width: 22.5rem;
  height: 7.5rem;
  background: linear-gradient(160deg, #224DC7 0%, #1137A2 55%, #022381 100%);
  background-position: 200% 200%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s, color 0.4s, opacity 0.4s;
}
@media screen and (max-width: 767px) {
  .contact__mail {
    width: 20.9375rem;
  }
}

.contact__mail.contact__mail--green {
  background: linear-gradient(160deg, #5CBBB6 0%, #2CAEA8 55%, #00A29A 100%);
  background-position: 200% 200%;
}

.contact__tel-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__tel-text {
    font-size: 1rem;
  }
}

.contact__tel-number {
  position: relative;
  padding-left: 1.25rem;
  font-size: 2.0625rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #000000;
}

.contact__tel-number::before {
  position: absolute;
  content: "";
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.8125rem;
  height: 1.8125rem;
  top: 50%;
  left: -0.625rem;
  transform: translateY(-50%);
}

.contact__tel-text-small {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}

.contact__mail-text-small {
  position: relative;
  padding-left: 1.5625rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__mail-text-small {
    width: 63%;
  }
}

.contact__mail-text-small::before {
  position: absolute;
  content: "";
  background-image: url(../images/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 30%;
  width: 1.25rem;
  height: 1rem;
}

.contact__mail-text {
  position: relative;
  margin-top: 1.375rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  padding-right: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__mail-text {
    margin-top: 0.625rem;
    font-size: 1.25rem;
  }
}

.contact__mail-text::after {
  position: absolute;
  content: "";
  background-image: url(../images/btn-arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 0.875rem;
  height: 1.375rem;
  right: 0;
  top: 20%;
}

.contact__tel:hover,
.contact__mail:hover {
  opacity: 1;
}

.faq__contents {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__contents {
    margin-top: 1.875rem;
  }
}

.faq__sub-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #2949A5;
}
@media screen and (max-width: 767px) {
  .faq__sub-title {
    font-size: 1.25rem;
  }
}

.faq__sub-title.faq__sub-title--green {
  color: #00A29A;
  margin-top: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .faq__sub-title.faq__sub-title--green {
    margin-top: 1.875rem;
  }
}

.accordion {
  width: 100%;
}

.accordion__title {
  margin-top: 1.1875rem;
  padding: 0.625rem 3.125rem 0.625rem 1.5625rem;
  width: 100%;
  background-color: #E0EAF1;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .accordion__title {
    padding: 0.625rem 0.9375rem 0.625rem 0.625rem;
  }
}

.accordion__title-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #2949A5;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .accordion__title-text {
    font-size: 1rem;
  }
}

.accordion__title-text span {
  font-size: 1.625rem;
  margin-right: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .accordion__title-text span {
    font-size: 1.125rem;
    margin-right: 0.625rem;
  }
}

.accordion__title::before,
.accordion__title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.875rem;
  width: 1.125rem;
  height: 0.125rem;
  background-color: #717171;
  transition: 0.4s transform, 0.4s opacity;
}
@media screen and (max-width: 767px) {
  .accordion__title::before,
  .accordion__title::after {
    right: 0.625rem;
    width: 0.9375rem;
  }
}

.accordion__title::before {
  transform: rotate(90deg);
}

.accordion__title.is-open::before {
  transform: rotate(180deg);
}

.accordion__title.is-open::after {
  opacity: 1;
}

.accordion__content {
  padding: 0.9375rem 3.125rem 0.9375rem 1.5625rem;
  background-color: #ffffff;
  display: none;
}
@media screen and (max-width: 767px) {
  .accordion__content {
    padding: 0.625rem 0.9375rem 0.625rem 0.625rem;
  }
}

.accordion__text {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4444444444;
  color: #2949A5;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .accordion__text {
    font-size: 1rem;
  }
}

.accordion__text span {
  font-size: 1.625rem;
  font-weight: 700;
  margin-right: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .accordion__text span {
    font-size: 1.125rem;
    margin-right: 0.625rem;
  }
}

.accordion__title.accordion__title--green {
  background-color: #DFF3F2;
}

.accordion__title-text.accordion__title-text--green,
.accordion__text.accordion__text--green {
  color: #00A29A;
}

.flow {
  background-color: #E0EAF1;
}

.flow__contents {
  margin-top: 2rem;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__contents {
    flex-direction: column;
    gap: 1.875rem;
    margin-top: 1.875rem;
    align-items: center;
  }
}

.flow__left,
.flow__right {
  width: 100%;
  max-width: 35rem;
  background-color: #ffffff;
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .flow__left,
  .flow__right {
    padding-bottom: 1.875rem;
  }
}

.flow__left-title,
.flow__right-title {
  padding: 1.3125rem 0 1.0625rem;
  text-align: center;
  padding: 0.9375rem 0.625rem;
}

.flow__left-title {
  background-color: #2949A5;
}

.flow__right-title {
  background-color: #00A29A;
}

.flow__left-title p,
.flow__right-title p {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .flow__left-title p,
  .flow__right-title p {
    font-size: 1.25rem;
  }
}

.flow__items {
  padding: 3.4375rem 3.75rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__items {
    padding: 1.875rem 0.625rem;
    row-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}

.flow__item {
  background-color: #F3F3F3;
  padding-bottom: 2.75rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    padding-bottom: 1.25rem;
  }
}

.flow__number {
  background-color: #2949A5;
  width: 3.3125rem;
  height: 3.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow__number {
    width: 2.5rem;
    height: 2.8125rem;
  }
}

.flow__number.flow__number--green {
  background-color: #00A29A;
}

.flow__number p {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .flow__number p {
    font-size: 1.5625rem;
  }
}

.flow__img {
  margin: 0.75rem auto 0;
  width: 100%;
  max-width: 7.75rem;
}
@media screen and (max-width: 767px) {
  .flow__img {
    margin-top: 0.3125rem;
    max-width: 6.25rem;
  }
}

.flow__img img {
  width: 100%;
  aspect-ratio: 124/130;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow__text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #2949A5;
  text-align: center;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 1.25rem;
  }
}

.flow__text.flow__text--green {
  color: #00A29A;
}

.flow__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .flow__btn {
    margin-top: initial;
  }
}

.flow__btn a {
  background: linear-gradient(76deg, #2949A5 0%, #1238A3 55%, #022381 100%);
  padding: 1.25rem 0 1.25rem 2rem;
  width: 22.5rem;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  position: relative;
  border: 1px solid transparent;
  transition: color 0.4s, background-color 0.4s, opacity 0.4s, border 0.4s;
}
@media screen and (max-width: 767px) {
  .flow__btn a {
    padding: 0.9375rem 0 0.9375rem 1.25rem;
    width: 20rem;
    font-size: 1.125rem;
  }
}

.flow__btn.flow__btn--green a {
  background: linear-gradient(75deg, #5CBBB6 0%, #2CAEA8 55%, #00A29A 100%);
}

.flow__btn a::after {
  position: absolute;
  content: "";
  background-image: url(../images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.8125rem;
  height: 1.3125rem;
  right: 1.625rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-image 0.4s;
}
@media screen and (max-width: 767px) {
  .flow__btn a::after {
    width: 0.6875rem;
    height: 1.1875rem;
    right: 0.9375rem;
  }
}

.flow__btn a:hover {
  opacity: 1;
  color: #2949A5;
  background: #ffffff;
  border: 1px solid #2949A5;
}

.flow__btn a:hover::after {
  background-image: url(../images/btn-arrow-blue.svg);
}

.flow__btn.flow__btn--green a:hover {
  opacity: 1;
  color: #00A29A;
  background: #ffffff;
  border: 1px solid #00A29A;
}

.flow__btn.flow__btn--green a:hover::after {
  background-image: url(../images/btn-arrow-green.svg);
}

.footer__inner {
  padding-top: 6.4375rem;
  padding-bottom: 6.5rem;
  background-color: #E0EAF1;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.footer__items {
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .footer__items {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.footer__logo {
  display: inline-block;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    min-width: 20rem;
  }
}

.footer__logo img {
  width: 100%;
  aspect-ratio: 360/31;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__text {
  margin-top: 0.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .footer__text {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.footer__bnr {
  display: inline-block;
  width: 100%;
  max-width: 22.5rem;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .footer__bnr {
    max-width: 20rem;
    margin-top: 0.9375rem;
  }
}

.footer__bnr img {
  width: 100%;
  aspect-ratio: 360/80;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__item.footer__item--link {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .footer__item.footer__item--link {
    gap: 0.625rem;
  }
}

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

.footer__link {
  position: relative;
  padding-left: 0.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .footer__link {
    padding-left: 0.625rem;
    font-size: 1rem;
  }
}

.footer__link::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #2949A5;
  left: 0;
  top: 40%;
}
@media screen and (max-width: 767px) {
  .footer__link::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.footer__link-small {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
  position: inherit;
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 0.75rem;
    padding: 0.625rem;
  }
}

.footer__copy small {
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}

.header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 100%);
  height: 7.375rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.5rem;
    background: none;
  }
}

.header.change-color {
  background-color: #ffffff;
}

.header__inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 0.78125rem;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .header__logo a {
    max-width: 14.75rem;
  }
}

.header__logo a img {
  height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: flex-end;
}

.header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__nav-item + .header__nav-item {
  padding-left: 0.9375rem;
}

.header__nav-item a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.5rem 0.46875rem;
  transition: all 0.4s ease;
  position: relative;
}

.header__nav-item a::before {
  background: #2949A5;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s, opacity 0.4s;
}

.header__nav-item a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  opacity: 1;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 1.4375rem;
  padding-right: 0.46875rem;
}

.header__tel {
  font-size: 1.625rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  padding-left: 1.375rem;
}

.header__tel::before {
  position: absolute;
  content: "";
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.1875rem;
  height: 1.1875rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.header__cta {
  padding: 0.75rem 2.4375rem;
  background: linear-gradient(135deg, #2949A5 0%, #1238A3 55%, #022381 100%);
  background-position: 0 0;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  transition: background-color 0.4s, opacity 0.4s, color 0.4s, border 0.4s, padding 0.4s;
}

.header__cta--green {
  background: linear-gradient(135deg, #5CBBB6 0%, #2CAEA8 55%, #00A29A 100%);
  background-position: 0 0;
}

.header__cta::before {
  position: absolute;
  content: "";
  background-image: url(../images/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.125rem;
  height: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0.75rem;
  transition: background-image 0.4s;
}

.header__cta::after {
  position: absolute;
  content: "";
  background-image: url(../images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.625rem;
  height: 1rem;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: background-image 0.4s;
}

.header__cta:hover {
  opacity: 1;
  color: #2949A5;
  background: #ffffff;
}

.header__cta.header__cta--green:hover {
  opacity: 1;
  color: #00A29A;
  background: #ffffff;
}

.header__cta:hover::before {
  background-image: url(../images/mail-icon-blue.svg);
}

.header__cta:hover::after {
  background-image: url(../images/btn-arrow-blue.svg);
}

.header__cta.header__cta--green:hover::before {
  background-image: url(../images/mail-icon-green.svg);
}

.header__cta.header__cta--green:hover::after {
  background-image: url(../images/btn-arrow-green.svg);
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #2949A5;
  cursor: pointer;
}

.hamburger.is-active {
  top: 0;
  right: 0;
  background-color: #E0EAF1;
}

.hamburger span {
  position: absolute;
  top: 1.25rem;
  left: 0.875rem;
  width: 1.8125rem;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s transform, 0.4s background-color;
}

.hamburger.is-active span {
  background-color: #000000;
}

.hamburger span:nth-child(1) {
  top: 1.25rem;
}

.hamburger span:nth-child(2) {
  top: 1.8125rem;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 2.375rem;
}

.hamburger.hamburger.is-active span:nth-child(1) {
  top: 1.5625rem;
  transform: rotate(-45deg);
}

.hamburger.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.hamburger.is-active span:nth-child(3) {
  top: 1.5625rem;
  transform: rotate(45deg);
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100vh;
  background-color: #E0EAF1;
}

.drawer-menu__inner {
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drawer-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.125rem;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drawer-menu__item {
  height: inherit;
}

.drawer-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: #000000;
  padding: 0.9375rem;
}

.drawer-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.drawer-menu__tel.header__tel {
  color: #000000;
  background-color: #ffffff;
  width: 15rem;
  padding: 0.75rem 2.375rem;
  display: flex;
  font-size: 1.25rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

.drawer-menu__tel.header__tel::before {
  background-image: url(../images/phone-icon.svg);
  left: 0.625rem;
}

.drawer-menu__tel.header__tel::after {
  position: absolute;
  content: "";
  background-image: url(../images/btn-arrow-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.625rem;
  height: 1rem;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  transition: background-image 0.4s;
}

.drawer-menu__cta {
  width: 15rem;
  margin-left: initial;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

.mv {
  width: 100%;
  height: calc(100vh - 60px);
}
@media screen and (max-width: 767px) {
  .mv {
    height: 43rem;
  }
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.mv__slider,
.swiper-slide picture,
.swiper-slide img {
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .mv__slider,
  .swiper-slide picture,
  .swiper-slide img {
    height: 24.625rem;
  }
}

.swiper-slide picture,
.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title-wrap {
  position: absolute;
  top: 37%;
  left: 6%;
  z-index: 300;
}
@media screen and (max-width: 1699px) {
  .mv__title-wrap {
    top: 32%;
  }
}

.mv__title-large {
  font-size: 4.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 1699px) {
  .mv__title-large {
    font-size: 3.75rem;
  }
}

.mv__title-small {
  margin-top: 0.625rem;
  margin-left: 0.625rem;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #000000;
}

.mv__button {
  margin-top: 1.5rem;
}

.mv__button a {
  display: inline-block;
  padding: 2.625rem 6.25rem 2.625rem 2.25rem;
  background: linear-gradient(135deg, #3FA9F5 0%, #347ACE 55%, #2949A5 100%);
  background-position: 200% 200%;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  position: relative;
  transition: background-color 0.4s, opacity 0.4s, color 0.4s, border 0.4s;
}

.mv__button a:hover {
  opacity: 1;
  color: #2949A5;
  background: #ffffff;
  border: 1px solid #2949A5;
}

.mv__button a::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1.5625rem;
  background-image: url(../images/btn-arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 40%;
  right: 2.1875rem;
}

.mv__button a:hover::after {
  background-image: url(../images/btn-arrow-blue.svg);
}

.mv__title-wrap-sp {
  background-color: #2949A5;
  height: auto;
  padding: 1.375rem 1.125rem 1.375rem 1.25rem;
}

.mv__title-large-sp {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
}

.mv__title-small-sp {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.mv__button-sp {
  margin-top: 0.875rem;
}

.mv__button-sp a {
  display: inline-block;
  padding: 1.3125rem 3.4375rem 1.3125rem 1rem;
  position: relative;
  color: #ffffff;
  background: linear-gradient(135deg, #3FA9F5 0%, #3784EC 55%, #2E5DE2 100%);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
}

.mv__button-sp a:hover {
  background-position: 100% 0;
  opacity: 1;
}

.mv__button-sp a::after {
  position: absolute;
  content: "";
  background-image: url(../images/btn-arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  right: 1.25rem;
  top: 40%;
  width: 0.625rem;
  height: 0.9375rem;
}

.occupation__sub-title {
  margin-top: 1.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .occupation__sub-title {
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .text-large.text-large--occupation {
    font-size: 1.125rem;
  }
}

.occupation__contents {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .occupation__contents {
    margin-top: 1.875rem;
  }
}

.occupation__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .occupation__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.875rem;
    align-items: center;
  }
}

.occupation__item {
  width: 100%;
  max-width: 22.5rem;
  height: 100%;
  background-color: #E0EAF1;
}
@media screen and (max-width: 767px) {
  .occupation__item {
    margin: 0 auto;
    max-width: 37.5rem;
    height: auto;
  }
}

.occupation__img {
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .occupation__img {
    max-width: 37.5rem;
  }
}

.occupation__img img {
  width: 100%;
  aspect-ratio: 360/240;
  -o-object-fit: cover;
     object-fit: cover;
}

.occupation__text-body {
  padding: 1.4375rem 0 4.375rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .occupation__text-body {
    padding: 1.25rem 0.9375rem;
  }
}

.occupation__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #2949A5;
}
@media screen and (max-width: 767px) {
  .occupation__item-title {
    font-size: 1.125rem;
  }
}

.occupation__text {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.625;
  color: #000000;
  width: 83%;
}
@media screen and (max-width: 767px) {
  .occupation__text {
    margin-top: 0.625rem;
  }
}

.reason {
  background-color: #E0EAF1;
}

.reason__items {
  margin-top: 1.875rem;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .reason__items {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.reason__item {
  width: 100%;
  max-width: 22.5rem;
  padding: 2.3125rem 2.4375rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .reason__item {
    padding: 0.8125rem 2.1875rem 1.25rem;
    max-width: 37.5rem;
  }
}

.reason__img {
  width: 100%;
  max-width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .reason__img {
    max-width: 7.375rem;
  }
}

.reason__img img {
  width: 100%;
  aspect-ratio: 120/120;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason__sub-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3333333333;
  color: #2949A5;
  text-align: center;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .reason__sub-title {
    margin-top: 0.4375rem;
    font-size: 1.25rem;
  }
}

.reason__text {
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .reason__text {
    margin-top: 0.8125rem;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 20rem;
  }
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
