@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
@media (max-width: 1160px) {
  html {
    font-size: 0.8620689655vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #0f4895;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(5.8571428571vw, 82px);
  background-color: #fff;
  -webkit-box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5.5rem;
  }
}

.l-header__inner {
  margin-inline: auto;
  padding-inline: min(2.7142857143vw, 38px);
  width: 100%;
  max-width: 1400px;
  height: inherit;
  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;
}

.l-header__name {
  height: inherit;
}

.l-header__name-link {
  width: min(17.9285714286vw, 251px);
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__name-link {
    width: 18.6rem;
  }
}

.l-header__menu-container {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: min(3.2142857143vw, 45px);
     -moz-column-gap: min(3.2142857143vw, 45px);
          column-gap: min(3.2142857143vw, 45px);
}

.l-header__nav {
  height: inherit;
}

.l-header__nav-lists {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: min(2vw, 28px);
     -moz-column-gap: min(2vw, 28px);
          column-gap: min(2vw, 28px);
}

.l-header__nav-list {
  height: inherit;
}

.l-header__nav-link {
  position: relative;
  padding: min(0.3571428571vw, 5px) 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(0.8571428571vw, 12px);
  line-height: 1.1;
  color: #000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.l-header__nav-link::before {
  position: absolute;
  content: "";
  bottom: min(2.0714285714vw, 29px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #0f4895;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.l-header__nav-link:hover {
  color: #0f4895;
}

.l-header__nav-link:hover::before {
  opacity: 1;
}

/* ------------------------------------------------
hamburger
--------------------------------------------------- */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 2.2rem;
    right: 2.3rem;
    width: 2.6rem;
    height: 1rem;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .l-hamburger.is-active {
    top: 2.8rem;
    right: 3rem;
    background-color: transparent;
  }
}

.l-hamburger__icon {
  position: absolute;
  left: 0;
  width: 2rem;
  height: 1px;
  background-color: #000;
}

.l-hamburger__icon:nth-child(1) {
  top: 0;
}

.l-hamburger__icon:nth-child(2) {
  top: 0.9rem;
}

/* ------------------------------------------------
drawer
--------------------------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  padding-left: 3rem;
  width: 100%;
  height: 100vh;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

.l-drawer.is-open {
  display: block;
  opacity: 1;
}

.l-drawer__icon-body {
  z-index: 9999;
  position: absolute;
  top: 2.2rem;
  right: 2.3rem;
  width: 2.6rem;
  height: 1rem;
  cursor: pointer;
}

.l-drawer__icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.1rem;
  height: 1px;
  background-color: #000;
}

.l-drawer__icon:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.l-drawer__icon:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.l-drawer__inner {
  position: relative;
  width: 100%;
  height: auto;
}

.l-drawer__body {
  padding: 4.9rem 2.4rem 5rem;
  width: 100%;
  height: 66.7rem;
  background-color: rgba(255, 255, 255, 0.9);
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow-y: auto;
}

.l-drawer__nav-lists {
  width: 100%;
  height: 47.4rem;
  padding: 1.5rem 2rem 2rem;
  background-color: #0f4895;
}

.l-drawer__nav-list {
  width: 100%;
}

.l-drawer__nav-list:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.l-drawer__link {
  position: relative;
  padding: 1.5rem 1.2rem 2rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #fff;
}

.l-drawer__link::before,
.l-drawer__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.035rem);
  right: 1.2rem;
  width: 1.23rem;
  height: 0.07rem;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 0.035rem) 50%;
          transform-origin: calc(100% - 0.035rem) 50%;
}

.l-drawer__link::before {
  -webkit-transform: rotate(32.75deg);
          transform: rotate(32.75deg);
}

.l-drawer__link::after {
  -webkit-transform: rotate(-32.75deg);
          transform: rotate(-32.75deg);
}

.l-drawer__link:hover {
  opacity: 0.7;
}

.l-drawer__contact {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-drawer__button {
  margin-inline: auto;
}

.l-drawer__sns-lists {
  margin-top: 2.3rem;
  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-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.l-drawer__sns-link {
  display: block;
}

.l-drawer__sns-list:nth-child(1) .l-drawer__sns-link {
  width: 4.4rem;
}

.l-drawer__sns-list:nth-child(2) .l-drawer__sns-link {
  width: 4.2rem;
}

.l-drawer__sns-list:nth-child(3) .l-drawer__sns-link {
  width: 4.4rem;
}

.footer {
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4.4rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }
}

.l-footer__logo {
  margin-inline: auto;
  width: 39.3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 26.7rem;
  }
}

.l-footer__wrapper {
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__wrapper {
    margin-top: 2.4rem;
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.l-footer__menu {
  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-column-gap: 4.2rem;
     -moz-column-gap: 4.2rem;
          column-gap: 4.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__menu {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.l-footer__nav-lists {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.8rem;
     -moz-column-gap: 2.8rem;
          column-gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-lists {
    margin-top: 1.8rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    row-gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__nav-link {
  position: relative;
  padding: 1rem 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    padding: 0.5rem 0;
  }
}

.l-footer__nav-link::before {
  position: absolute;
  content: "";
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #0f4895;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link::before {
    bottom: 0.2rem;
  }
}

.l-footer__nav-link:hover {
  color: #0f4895;
}

.l-footer__nav-link:hover::before {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .l-footer__contact {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.l-footer__contact-button.c-contact-button {
  padding: 0.3rem 1rem;
  width: 13.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-button.c-contact-button {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 12.6rem;
  }
}

.l-footer__contents {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    margin-top: 0;
    display: contents;
  }
}

.l-footer__info {
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    padding-top: initial;
    display: contents;
  }
}

.l-footer__info-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info-main {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
    margin-top: 1.2rem;
    -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;
  }
}

.l-footer__info-name {
  font-size: 1.7rem;
  line-height: 1.47;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .l-footer__info-name {
    font-size: 1.2rem;
    text-align: center;
  }
}

.l-footer__info-address {
  font-size: 1.4rem;
  line-height: 1.43;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .l-footer__info-address {
    margin-top: 0.3rem;
    font-size: 1.2rem;
    text-align: center;
  }
}

.l-footer__info-contact {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 2.8rem;
     -moz-column-gap: 2.8rem;
          column-gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info-contact {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__tel-container,
  .l-footer__sns-container {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__tel-container {
    margin-top: 2.4rem;
  }
}

.l-footer__tel,
.l-footer__fax {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.142;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-footer__tel,
  .l-footer__fax {
    font-size: 3rem;
  }
}

.l-footer__sns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 4.9rem;
    -webkit-column-gap: 0.9rem;
       -moz-column-gap: 0.9rem;
            column-gap: 0.9rem;
  }
}

.l-footer__sns-link {
  width: 6.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-link {
    width: 4rem;
  }
}

.l-footer__support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__support {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-top: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.l-footer__support-img {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .l-footer__support-img {
    width: 10rem;
  }
}

.l-footer__support-img img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__copyright {
  margin-top: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.4;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 1.2rem;
  }
}

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

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

.sp-only-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only-inline {
    display: inline-block;
  }
}

.container {
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
}

.l-inner {
  margin-inline: auto;
  padding-inline: 25px;
  width: 100%;
  max-width: 1160px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 1.5rem;
  }
}

.l-small-inner {
  margin-inline: auto;
  padding-inline: 8.7rem;
  width: 100%;
  max-width: 1160px;
}
@media screen and (max-width: 767px) {
  .l-small-inner {
    padding-inline: 1.5rem;
  }
}

.l-large-inner {
  margin-inline: auto;
  padding-inline: 25px;
  width: 100%;
  max-width: 1250px;
}
@media screen and (max-width: 767px) {
  .l-large-inner {
    padding-inline: 1.5rem;
  }
}

.side-lists {
  counter-reset: listnum;
}

.side-list,
.side-list--reverse {
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .side-list,
  .side-list--reverse {
    padding-top: 21.4rem;
  }
}

.side-list--reverse {
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .side-list--reverse {
    padding-top: 6.3rem;
  }
}

.side-list:not(:first-child) {
  margin-top: 11.1rem;
}
@media screen and (max-width: 767px) {
  .side-list:not(:first-child) {
    margin-top: 5.3rem;
  }
}

.side-list--reverse:not(:first-child) {
  margin-top: 16.7rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse:not(:first-child) {
    margin-top: 5.3rem;
  }
}

.side-text-area {
  z-index: 1;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 91.6rem;
  height: auto;
  min-height: 46.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .side-text-area {
    padding-top: 2.6rem;
    padding-bottom: 1.9rem;
    width: 100%;
  }
}

.side-list .side-text-area {
  background-color: #fff;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .side-list .side-text-area {
    z-index: 10;
    width: 35.2rem;
    min-height: 13.6rem;
  }
}

.side-list--reverse .side-text-area {
  background-color: #0f4895;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .side-list--reverse .side-text-area {
    padding-top: 20.9rem;
  }
}

.side-list:nth-child(odd) .side-text-area {
  padding-left: 8.8rem;
}
@media screen and (max-width: 767px) {
  .side-list:nth-child(odd) .side-text-area {
    margin-right: calc(50% - 50vw);
    padding-left: 3.5rem;
    padding-right: calc(50vw - 50%);
  }
}

.side-list:nth-child(even) .side-text-area {
  margin-left: auto;
  padding-right: 7.9rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .side-list:nth-child(even) .side-text-area {
    margin-left: calc(50% - 50vw);
    padding-right: 0;
    padding-left: calc(50vw - 50%);
  }
}

.side-list--reverse:nth-child(odd) .side-text-area {
  margin-left: auto;
  padding-right: 2.6rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .side-list--reverse:nth-child(odd) .side-text-area {
    padding-right: initial;
    padding-inline: 1.5rem;
  }
}

.side-list--reverse:nth-child(even) .side-text-area {
  padding-left: 8.8rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse:nth-child(even) .side-text-area {
    padding-left: initial;
    padding-inline: 1.5rem;
  }
}

.side-num {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 15.5rem;
  height: 15.9rem;
  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;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (max-width: 767px) {
  .side-num {
    width: 9.8rem;
    height: 10.1rem;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .side-list .side-num {
    top: -1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .side-list--reverse .side-num {
    top: 15.6rem;
  }
}

.side-list:nth-child(odd) .side-num {
  left: 2.2rem;
}
@media screen and (max-width: 767px) {
  .side-list:nth-child(odd) .side-num {
    left: initial;
    right: 0;
  }
}

.side-list:nth-child(even) .side-num {
  right: 1.3rem;
}
@media screen and (max-width: 767px) {
  .side-list:nth-child(even) .side-num {
    right: 0;
  }
}

.side-list--reverse:nth-child(odd) .side-num {
  right: 1.3rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse:nth-child(odd) .side-num {
    right: 0;
  }
}

.side-list--reverse:nth-child(even) .side-num {
  left: 2.2rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse:nth-child(even) .side-num {
    left: initial;
    right: 0;
  }
}

.side-num::before {
  z-index: -1;
  position: absolute;
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Roboto", sans-serif;
  font-size: 13.6rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(194, 200, 216, 0.15);
}
@media screen and (max-width: 767px) {
  .side-num::before {
    font-size: 8.6rem;
  }
}

.side-list .side-text-container {
  width: 43.5rem;
}
@media screen and (max-width: 767px) {
  .side-list .side-text-container {
    width: 100%;
  }
}

.side-list--reverse .side-text-container {
  width: 41.7rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse .side-text-container {
    width: 100%;
  }
}

.side-title {
  position: relative;
  font-weight: 700;
  line-height: 1.595;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .side-title {
    line-height: 1.48;
    letter-spacing: 0.02em;
  }
}

.side-list .side-title {
  padding-left: 2rem;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .side-list .side-title {
    padding-left: 1.7rem;
    font-size: 2rem;
  }
}

.side-list .side-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #0f4895;
}

.side-list--reverse .side-title {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse .side-title {
    font-size: 1.9rem;
  }
}

.side-list .side-text {
  margin-top: 4rem;
  min-height: 14.6rem;
  font-size: 1.5rem;
  line-height: 1.94;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .side-list .side-text {
    margin-top: 1.9rem;
    width: 28.6rem;
    min-height: initial;
    letter-spacing: 0;
  }
}

.side-list--reverse .side-text {
  margin-top: 2.7rem;
  width: 35.7rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .side-list--reverse .side-text {
    margin-top: 1.9rem;
    width: 100%;
    font-size: 1.5rem;
  }
}

.side-img {
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .side-img {
    top: 0;
    -webkit-transform: initial;
            transform: initial;
  }
}

.side-list:nth-child(odd) .side-img {
  right: -5rem;
}
@media screen and (max-width: 767px) {
  .side-list:nth-child(odd) .side-img {
    right: initial;
    left: -1.5rem;
  }
}

.side-list:nth-child(even) .side-img {
  left: -5rem;
}
@media screen and (max-width: 767px) {
  .side-list:nth-child(even) .side-img {
    left: initial;
    right: -1.5rem;
  }
}

.side-list--reverse:nth-child(odd) .side-img {
  left: 0;
}
@media screen and (max-width: 1399px) {
  .side-list--reverse:nth-child(odd) .side-img {
    left: -10rem;
  }
}
@media screen and (max-width: 767px) {
  .side-list--reverse:nth-child(odd) .side-img {
    left: -1.5rem;
  }
}

.side-list--reverse:nth-child(even) .side-img {
  right: 0;
}
@media screen and (max-width: 1399px) {
  .side-list--reverse:nth-child(even) .side-img {
    right: -10rem;
  }
}
@media screen and (max-width: 767px) {
  .side-list--reverse:nth-child(even) .side-img {
    right: -1.5rem;
  }
}

.side-list .side-img {
  width: 58.7rem;
}
@media screen and (max-width: 767px) {
  .side-list .side-img {
    width: 34.4rem;
  }
}

.side-list--reverse .side-img {
  width: auto;
  height: 53.2rem;
}
@media screen and (max-width: 767px) {
  .side-list--reverse .side-img {
    width: 34.4rem;
    height: auto;
  }
}

.side-list--reverse .side-img img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .side-list--reverse .side-img img {
    width: 100%;
    height: auto;
  }
}

.lower-head {
  padding-top: 7rem;
  padding-bottom: 11.7rem;
}
@media screen and (max-width: 767px) {
  .lower-head {
    padding-top: 3.6rem;
    padding-bottom: 5.4rem;
  }
}

.lower-head__title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower-head__title {
    font-size: 1.7rem;
    line-height: 1.72;
  }
}

.lower-head__text.main-text {
  margin-top: 4rem;
  line-height: 2.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lower-head__text.main-text {
    margin-top: 2.6rem;
    line-height: 1.6;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

/* ------------------------------------------------
mv
--------------------------------------------------- */
.mv {
  z-index: 1;
  position: relative;
  margin-top: min(5.8571428571vw, 82px);
  width: 100%;
  height: 25rem;
  background-color: #0D4D8E;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 5.5rem;
  }
}

.mv::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv__inner {
  z-index: 2;
  position: relative;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding-inline: 3rem;
  }
}

.mv__body {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mv__title {
  font-family: "Roboto", sans-serif;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.17;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 3.7rem;
  }
}

.mv__sub-title {
  margin-top: 1.2rem;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  height: 1.47em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__sub-title {
    margin-top: 0.7rem;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------
form
--------------------------------------------------- */
.form__head-text {
  font-size: 2.1rem;
  letter-spacing: 0.07em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__head-text {
    font-size: 1.5rem;
  }
}

.form {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .form {
    margin-top: 5.2rem;
  }
}

.form__field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}

.form__field:not(:first-child) {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .form__field:not(:first-child) {
    margin-top: 4.6rem;
  }
}

.form__label label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  color: #000;
}
@media screen and (max-width: 767px) {
  .form__label label {
    font-size: 1.5rem;
  }
}

.form .required {
  padding: 0.4rem;
  width: 4.1rem;
  height: 1.9rem;
  background-color: #cb3d63;
  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;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.form__data {
  width: 100%;
}

.form__input,
textarea.form__textarea {
  padding: 1rem 1.2rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #B2B2B3;
  border-radius: 0.02rem;
  font-size: 1.6rem;
  line-height: 1.43;
  color: #000;
}
@media screen and (max-width: 767px) {
  .form__input,
  textarea.form__textarea {
    font-size: 1.5rem;
  }
}

textarea.form__textarea {
  height: 25.8rem;
}
@media screen and (max-width: 767px) {
  textarea.form__textarea {
    height: 19.4rem;
  }
}

.form__input::-webkit-input-placeholder, textarea.form__textarea::-webkit-input-placeholder {
  color: #a3a3a3;
}

.form__input::-moz-placeholder, textarea.form__textarea::-moz-placeholder {
  color: #a3a3a3;
}

.form__input:-ms-input-placeholder, textarea.form__textarea:-ms-input-placeholder {
  color: #a3a3a3;
}

.form__input::-ms-input-placeholder, textarea.form__textarea::-ms-input-placeholder {
  color: #a3a3a3;
}

.form__input::placeholder,
textarea.form__textarea::placeholder {
  color: #a3a3a3;
}

.form__label-remarks {
  margin-top: 0.6rem;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  line-height: 1.43;
  color: #000;
}
@media screen and (max-width: 767px) {
  .form__label-remarks {
    margin-top: 0.4rem;
    font-size: 1.2rem;
  }
}

.wpcf7-character-count {
  font-size: 1.2rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wpcf7-character-count {
    font-size: 1rem;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.form__radio-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  color: #000;
}
@media screen and (max-width: 767px) {
  .form__radio-title {
    font-size: 1.5rem;
  }
}

.form__radio-input {
  padding: 1rem 2.7rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #B2B2B3;
  border-radius: 0.02rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .form__radio-input {
    padding: 1.2rem 1.1rem;
    -webkit-column-gap: 1.1rem;
       -moz-column-gap: 1.1rem;
            column-gap: 1.1rem;
    row-gap: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-form .form__radio-input {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label,
.wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 2.4rem;
  padding-right: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.43;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label,
  .wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item-label {
    font-size: 1.5rem;
  }
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label::before,
.wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label::before,
  .wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item-label::before {
    width: 2rem;
    height: 2rem;
  }
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label::after,
.wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #0f4895;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label::after,
  .wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item-label::after {
    left: 0.3rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
.wpcf7-form-control-wrap[data-name=radio-359] .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy {
  margin-top: 6rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    margin-top: 3.6rem;
  }
}

.form__privacy .wpcf7-list-item-label {
  position: relative;
  padding-left: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label {
    padding-left: 2.9rem;
  }
}

.form__privacy .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 51%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #0f4895;
}
.form__privacy .wpcf7-list-item-label::after {
  position: absolute;
  top: 0.8rem;
  left: 0.6rem;
  width: 1.2rem;
  height: auto;
  aspect-ratio: 23/15;
  content: "";
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  opacity: 0;
  border-bottom: 0.2rem solid #0f4895;
  border-left: 0.2rem solid #0f4895;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.form__privacy-link {
  color: #0082D6;
  text-decoration: underline;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: -6.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.3rem 0;
  background-color: #cb3d63;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 400;
  line-height: 1.43;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    top: -8.2rem;
  }
}

.wpcf7-not-valid-tip::after {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 1.5rem 0.8rem 0 0.8rem;
  border-style: solid;
  border-color: #cb3d63 transparent transparent transparent;
}

.wpcf7-form-control-wrap[data-name=text-410] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=text-182] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=text-603] .wpcf7-not-valid-tip {
  width: 22.3rem;
}

.wpcf7-form-control-wrap[data-name=tel-853] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=tel-802] .wpcf7-not-valid-tip {
  width: 23.3rem;
}

.wpcf7-form-control-wrap[data-name=email-748] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=email-188] .wpcf7-not-valid-tip {
  width: 28.3rem;
}

.form__radio .wpcf7-not-valid-tip {
  top: -4.2rem;
  width: 23.3rem;
}
@media screen and (max-width: 767px) {
  .form__radio .wpcf7-not-valid-tip {
    top: -6.6rem;
  }
}

.wpcf7-form-control-wrap[data-name=textarea-271] .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap[data-name=textarea-229] .wpcf7-not-valid-tip {
  top: -33rem;
  width: 30.3rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap[data-name=textarea-271] .wpcf7-not-valid-tip,
  .wpcf7-form-control-wrap[data-name=textarea-229] .wpcf7-not-valid-tip {
    top: -30.4rem;
  }
}

.form__privacy .wpcf7-not-valid-tip {
  top: -4.2rem;
  width: 34rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-not-valid-tip {
    top: -3.6rem;
  }
}

.form__input.wpcf7-not-valid,
.form__radio-input.wpcf7-not-valid,
.form__textarea.wpcf7-not-valid {
  background-color: #f1dfdf;
}

.wpcf7-response-output {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.43;
  color: #000;
}

.form__field-button {
  z-index: 1;
  position: relative;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .form__field-button {
    margin-top: 3.6rem;
  }
}

.form__submit-button:hover {
  opacity: 1;
}

.wpcf7-spinner {
  z-index: -1;
  position: absolute;
}

/* ------------------------------------------------
confirm
--------------------------------------------------- */
.confirm .form {
  margin-top: 3.7rem;
}
@media screen and (max-width: 767px) {
  .confirm .form {
    margin-top: 1.7rem;
  }
}

.confirm .form__field {
  border-bottom: 1px solid #B2B2B3;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .confirm .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.confirm .form__field:first-child {
  border-top: 1px solid #B2B2B3;
}

.confirm .form__field:not(:first-child) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .confirm .form__field:not(:first-child) {
    margin-top: 0;
  }
}

.confirm .form__label {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  width: 30.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .confirm .form__label {
    padding-top: 1.1rem;
    padding-bottom: 0;
    width: 18.7rem;
    font-size: 1.5rem;
  }
}

.confirm .form__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  padding-left: 3.3rem;
  width: 69.2%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #000;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .confirm .form__data {
    padding-top: 0;
    padding-bottom: 1.1rem;
    padding-left: 0;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.096em;
  }
}

.confirm .form__privacy {
  margin-top: 3.6rem;
}
.confirm .form__privacy-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}

.confirm .form__field-button {
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px) {
  .confirm .form__field-button {
    margin-top: 3.6rem;
  }
}

.confirm .form__submit-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.7rem;
     -moz-column-gap: 2.7rem;
          column-gap: 2.7rem;
}
@media screen and (max-width: 767px) {
  .confirm .form__submit-button {
    -webkit-column-gap: 2.2rem;
       -moz-column-gap: 2.2rem;
            column-gap: 2.2rem;
  }
}

.confirm .c-submit-input {
  margin-inline: initial;
}
@media screen and (max-width: 767px) {
  .confirm .c-submit-input {
    width: 14.5rem;
  }
}

.c-button {
  padding: 1.6rem 2rem;
  width: 21rem;
  background-color: #0f4895;
  outline: 1px solid #0f4895;
  offset: -1px;
  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;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  -webkit-transition: 0.3s background-color, 0.3s color;
  transition: 0.3s background-color, 0.3s color;
}

.c-button:hover {
  opacity: 1;
  background-color: #fff;
  color: #0f4895;
}

.c-button.--reverse {
  background-color: #fff;
  background-color: #fff;
  outline: 1px solid #fff;
  color: #0f4895;
}

.c-button.--reverse:hover {
  opacity: 1;
  background-color: #0f4895;
  color: #fff;
}

.c-contact-button {
  padding: min(0.7857142857vw, 11px) min(0.7142857143vw, 10px);
  width: min(9.7142857143vw, 136px);
  font-size: min(1.1428571429vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact-button {
    padding: 0.8rem 1rem;
    width: 14.5rem;
    font-size: 1.6rem;
  }
}

.c-submit-input {
  z-index: 5;
  position: relative;
  margin-inline: auto;
  padding: 1rem 2rem;
  width: 19.6rem;
  height: 4.9rem;
  border-radius: 2.5rem;
  background-color: #0f4895;
  outline: 1px solid #0f4895;
  offset: -1px;
  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;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transition: color 0.5s, background-color 0.5s ease;
  transition: color 0.5s, background-color 0.5s ease;
}
@media screen and (max-width: 767px) {
  .c-submit-input {
    width: 21rem;
    height: 5.1rem;
  }
}

.c-submit-input:hover {
  opacity: 1;
  background-color: #fff;
  color: #0f4895;
}

.c-submit-input.--reverse {
  background-color: #fff;
  color: #0f4895;
}

.c-submit-input.--reverse:hover {
  background-color: #0f4895;
  color: #fff;
}

.section-heading {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .section-heading {
    width: auto;
  }
}

.section-heading.--center {
  margin-inline: auto;
}

.section-main-heading {
  position: relative;
  padding-bottom: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.1785;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-main-heading {
    padding-bottom: 0.9rem;
    width: auto;
    font-size: 4.2rem;
  }
}

.section-main-heading::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5.7rem;
  height: 0.3rem;
  background-color: #0f4895;
}
@media screen and (max-width: 767px) {
  .section-main-heading::before {
    width: 4.2rem;
  }
}

.section-main-heading.--reverse {
  color: #fff;
}

.section-main-heading.--reverse::before {
  background-color: #fff;
}

.section-main-heading.--small {
  font-size: 4.2rem;
}

.section-sub-heading {
  margin-top: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-sub-heading {
    margin-top: 1.5rem;
    width: auto;
  }
}

.section-sub-heading.--reverse {
  color: #fff;
}

.main-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .main-text {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
  }
}

/* フェードアニメーション */
/* ----------FV---------- */
.fadeUp-fv {
  opacity: 0;
  -webkit-animation: fvFadeUp 0.8s ease-out 0s forwards;
          animation: fvFadeUp 0.8s ease-out 0s forwards;
}

@-webkit-keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes fvFadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translate(50%, 3rem);
              transform: translate(50%, 3rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(50%, 0);
              transform: translate(50%, 0);
    }
  }
  @keyframes fvFadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translate(50%, 3rem);
              transform: translate(50%, 3rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(50%, 0);
              transform: translate(50%, 0);
    }
  }
}
.fadeIn-fv {
  opacity: 0;
  -webkit-animation: fvFadeIn 1s ease-out 0.5s forwards;
          animation: fvFadeIn 1s ease-out 0.5s forwards;
}

@-webkit-keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----------下からふわっと---------- */
.fadeUp {
  opacity: 0;
}

.fadeUp.is-animated {
  opacity: 0;
  -webkit-animation: FadeUp 0.5s ease-out 0s forwards;
          animation: FadeUp 0.5s ease-out 0s forwards;
}

@-webkit-keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
main {
  z-index: 1;
  position: relative;
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.fv {
  z-index: 1;
  position: relative;
  padding-top: min(5.8571428571vw, 82px);
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 5.5rem;
  }
}

.fv__inner {
  z-index: 1;
  position: relative;
}

.fv__swiper {
  z-index: 1;
  position: relative;
  padding-bottom: 3.5714285714vw;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fv__swiper {
    padding-bottom: 3.6rem;
    width: 100%;
    height: auto;
  }
}

.fv__swiper-container {
  width: 100%;
  height: initial;
}

.fv__swiper picture {
  display: block;
}

.fv__slide {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 46.9285714286vw;
  aspect-ratio: 1400/657;
}
@media screen and (max-width: 767px) {
  .fv__slide {
    width: 100% !important;
    height: auto;
    aspect-ratio: initial;
  }
}

.fv__slide-img {
  width: 77.3571428571vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fv__slide-img {
    margin-top: 28.1rem;
    width: auto;
    height: 33.1rem;
  }
}

.fv__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1083/657;
}
@media screen and (max-width: 767px) {
  .fv__slide img {
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 375/331;
    height: 33.1rem;
  }
}

.fv__slide-wrapper {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fv__slide-wrapper {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.fv__slide-inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .fv__slide-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.fv__slide-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fv__text-area {
  padding-top: 11.6428571429vw;
  width: 34.7857142857vw;
}
@media screen and (max-width: 767px) {
  .fv__text-area {
    padding-top: 0.9rem;
    margin-inline: auto;
    width: 34.5rem;
  }
}

.fv__title {
  position: relative;
  padding-left: 1.7857142857vw;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .fv__title {
    padding-left: 0;
  }
}

.fv__title::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 6.1428571429vw;
  background-color: #0f4895;
  clip-path: polygon(1.8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .fv__title::before {
    left: 0;
    width: 100%;
    height: 6.4rem;
    clip-path: polygon(0 0, 100% 0%, 91.9% 100%, 0 100%);
  }
}

.fv__title--top {
  font-size: 5.1428571429vw;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .fv__title--top {
    font-size: 5.2rem;
  }
}

.fv__title--bottom {
  z-index: 1;
  position: relative;
  margin-top: 0.5714285714vw;
  padding-bottom: 0.5vw;
  padding-left: 1.7857142857vw;
  display: block;
  font-size: 4.3571428571vw;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__title--bottom {
    margin-top: 0.9rem;
    padding-bottom: 0.7rem;
    padding-left: 2.4rem;
    font-size: 4.4rem;
  }
}

.fv__text {
  margin-top: 2.6428571429vw;
  margin-left: 6.0714285714vw;
  font-size: min(1.6428571429vw, 23px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .fv__text {
    margin-top: 1.8rem;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 1.9rem;
    line-height: 1.105;
  }
}

.fv__text--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5714285714vw;
     -moz-column-gap: 0.5714285714vw;
          column-gap: 0.5714285714vw;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .fv__text--top {
    -webkit-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
  }
}

.fv__text--top .--strong {
  width: 11.4285714286vw;
  height: 3.7857142857vw;
  background-color: #0f4895;
  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;
  font-size: 2.3571428571vw;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__text--top .--strong {
    width: 13.3rem;
    height: 4.4rem;
    font-size: 2.7rem;
    line-height: 1.18;
  }
}

.fv__text--bottom {
  margin-top: 0.7857142857vw;
  margin-left: 8.4285714286vw;
  display: block;
}
@media screen and (max-width: 767px) {
  .fv__text--bottom {
    margin-top: initial;
    margin-left: initial;
  }
}

@media screen and (max-width: 767px) {
  .fv__text .--spPadding {
    padding-bottom: 1rem;
  }
}

.js-fv-pagination {
  z-index: 500;
  position: absolute;
  top: initial !important;
  bottom: 1px !important;
  left: 8.7142857143vw !important;
  width: 16.6428571429vw;
  height: 0.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .js-fv-pagination {
    top: initial !important;
    left: 1.5rem !important;
    width: 11rem;
    height: 0.7rem;
  }
}

.js-fv-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 8.3571428571vw;
  height: 100%;
  background-color: #fff;
  outline: 1px solid #0f4895;
  offset: -1px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .js-fv-pagination .swiper-pagination-bullet {
    width: 5.5rem;
  }
}

.js-fv-pagination .swiper-pagination-bullet-active {
  background-color: #0f4895;
}

/* ------------------------------------------------
message
--------------------------------------------------- */
.message {
  padding-top: 6.6rem;
  padding-bottom: 5.4rem;
}
@media screen and (max-width: 767px) {
  .message {
    padding-top: 1rem;
    padding-bottom: 2.3rem;
  }
}

.message__bg {
  background-image: url(../images/top/message-img.png);
  background-repeat: no-repeat;
  background-size: 69.4%;
  background-position: right center;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/668;
}
@media screen and (max-width: 767px) {
  .message__bg {
    background-image: url(../images/top/message-img-sp.png);
    background-size: 98%;
    aspect-ratio: 367/327;
    background-position: right 20%;
  }
}

@media screen and (max-width: 767px) {
  .message__bg-img {
    width: 100%;
    height: 34rem;
  }
}

.message__heading .section-main-heading {
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1.173;
}
@media screen and (max-width: 767px) {
  .message__heading .section-main-heading {
    padding-bottom: 0;
    font-size: 5.5rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.message__heading .section-main-heading::before {
  display: none;
}

.message__title {
  margin-top: 7.3rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.624;
}
@media screen and (max-width: 767px) {
  .message__title {
    margin-top: 4rem;
    font-size: 2.1rem;
  }
}

.message__text {
  margin-top: 3.3rem;
  width: 34.3rem;
  font-size: 1.6rem;
  line-height: 2.1875;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .message__text {
    margin-top: 2.5rem;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.99;
  }
}

/* ------------------------------------------------
strength
--------------------------------------------------- */
.strength {
  background-color: rgba(194, 200, 216, 0.17);
  overflow: hidden;
}

.strength__bg {
  z-index: 1;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 15.2rem;
  background-size: 3.2rem 3.2rem;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem), repeating-linear-gradient(0deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem);
}
@media screen and (max-width: 767px) {
  .strength__bg {
    padding-top: 4.5rem;
    padding-bottom: 7.7rem;
  }
}

.strength__bg::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: auto;
  aspect-ratio: 561/473;
  background-image: url(../images/top/bg-strength-topLeft.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .strength__bg::before {
    left: -10.3rem;
    width: 45.2rem;
  }
}

.strength__bg::after {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: auto;
  aspect-ratio: 561/473;
  background-image: url(../images/top/bg-strength-bottomRight.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .strength__bg::after {
    right: -10.3rem;
    width: 45.2rem;
  }
}

.strength__inner {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .strength__inner {
    padding-inline: initial;
  }
}

.strength__text {
  margin-top: 6.2rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .strength__text {
    margin-top: 5.1rem;
    font-size: 2rem;
  }
}

.strength__text .--strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 4.8rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .strength__text .--strong {
    margin-top: 0;
    font-size: 3.9rem;
  }
}

.strength__lists {
  margin-top: 7.4rem;
}
@media screen and (max-width: 767px) {
  .strength__lists {
    margin-top: 3.6rem;
  }
}

.strength .side-text-area {
  -webkit-box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .strength .side-text-area {
    -webkit-box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  }
}

.strength .side-list:nth-child(odd) .side-text-area {
  clip-path: polygon(0 0, 100% 0%, 84.9% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .strength .side-list:nth-child(odd) .side-text-area {
    margin-left: auto;
    padding-right: 3rem;
    clip-path: initial;
  }
}

.strength .side-list:nth-child(even) .side-text-area {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 15.1% 100%);
}
@media screen and (max-width: 767px) {
  .strength .side-list:nth-child(even) .side-text-area {
    margin-left: initial;
    margin-right: auto;
    padding-left: 3rem;
    clip-path: initial;
  }
}

.strength-bottom__swiper {
  width: 100%;
}

.strength-bottom__slide {
  width: 53.6rem;
  height: 46.7rem;
  aspect-ratio: 536/477;
}
@media screen and (max-width: 767px) {
  .strength-bottom__slide {
    width: 37.5rem;
    height: 33.3rem;
    aspect-ratio: 375/333;
  }
}

.strength-bottom__slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 536/477;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .strength-bottom__slide img {
    aspect-ratio: 374/333;
  }
}

.strength__navigation {
  z-index: 50;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-inline: auto;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.strength__navigation .strength__button-prev,
.strength__navigation .strength__button-next {
  position: relative;
  width: 4.1rem;
  height: auto;
  aspect-ratio: 41/93;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .strength__navigation .strength__button-prev,
  .strength__navigation .strength__button-next {
    width: 2rem;
  }
}

.strength__navigation .strength__button-prev::before,
.strength__navigation .strength__button-prev::after,
.strength__navigation .strength__button-next::before,
.strength__navigation .strength__button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  width: 151%;
  height: 1px;
  background-color: #fff;
}

.strength__navigation .strength__button-prev::before,
.strength__navigation .strength__button-prev::after {
  left: 0;
}

.strength__navigation .strength__button-next::before,
.strength__navigation .strength__button-next::after {
  left: -2rem;
}
@media screen and (max-width: 767px) {
  .strength__navigation .strength__button-next::before,
  .strength__navigation .strength__button-next::after {
    left: -1rem;
  }
}

.strength__navigation .strength__button-prev::before {
  -webkit-transform-origin: 0.5px 50%;
          transform-origin: 0.5px 50%;
  -webkit-transform: rotate(50.25deg);
          transform: rotate(50.25deg);
}

.strength__navigation .strength__button-prev::after {
  -webkit-transform-origin: 0.5px 50%;
          transform-origin: 0.5px 50%;
  -webkit-transform: rotate(-50.25deg);
          transform: rotate(-50.25deg);
}

.strength__navigation .strength__button-next::before {
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
  -webkit-transform: rotate(50.25deg);
          transform: rotate(50.25deg);
}

.strength__navigation .strength__button-next::after {
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
  -webkit-transform: rotate(-50.25deg);
          transform: rotate(-50.25deg);
}

/* ------------------------------------------------
specialty
--------------------------------------------------- */
.specialty {
  z-index: 1;
  position: relative;
  padding-top: 7.3rem;
  padding-bottom: 8.4rem;
  background-color: #0D4D8E;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .specialty {
    padding-top: 4rem;
    padding-bottom: 5.6rem;
  }
}

.specialty::before {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/bg-specialty.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .specialty::before {
    background-position: 50% 50%;
  }
}

.specialty__inner {
  z-index: 10;
  position: relative;
}

.specialty__text {
  margin-top: 7.4rem;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.48;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .specialty__text {
    margin-top: 3.2rem;
    font-size: 1.7rem;
    line-height: 1.69;
    letter-spacing: 0;
  }
}

.specialty__sub-text {
  margin-top: 4.3rem;
  font-size: 1.6rem;
  line-height: 1.958;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .specialty__sub-text {
    margin-top: 3.2rem;
    margin-inline: auto;
    width: 32rem;
    font-size: 1.4rem;
    line-height: 1.87;
    letter-spacing: 0;
    text-align: left;
  }
}

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

.specialty__swiper {
  margin-top: 5.9rem;
}
@media screen and (max-width: 767px) {
  .specialty__swiper {
    margin-top: 3.2rem;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.specialty__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .specialty__swiper-wrapper {
    -webkit-column-gap: initial;
       -moz-column-gap: initial;
            column-gap: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.specialty__slide {
  width: 28.4rem;
}
@media screen and (max-width: 767px) {
  .specialty__slide {
    width: 28rem;
    height: 23rem;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
         text-size-adjust: 100%;
    aspect-ratio: 280/230;
  }
}

@media screen and (max-width: 767px) {
  .specialty__slide img {
    width: 100%;
    height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.specialty__navigation {
  display: none;
}
@media screen and (max-width: 767px) {
  .specialty__navigation {
    z-index: 50;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin-inline: auto;
    width: 95%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-prev,
  .specialty__navigation .specialty__button-next {
    position: relative;
    width: 2rem;
    height: auto;
    aspect-ratio: 41/93;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-prev::before,
  .specialty__navigation .specialty__button-prev::after,
  .specialty__navigation .specialty__button-next::before,
  .specialty__navigation .specialty__button-next::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    width: 151%;
    height: 1px;
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-prev::before,
  .specialty__navigation .specialty__button-prev::after {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-next::before,
  .specialty__navigation .specialty__button-next::after {
    left: -1rem;
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-prev::before {
    -webkit-transform-origin: 0.5px 50%;
            transform-origin: 0.5px 50%;
    -webkit-transform: rotate(50.25deg);
            transform: rotate(50.25deg);
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-prev::after {
    -webkit-transform-origin: 0.5px 50%;
            transform-origin: 0.5px 50%;
    -webkit-transform: rotate(-50.25deg);
            transform: rotate(-50.25deg);
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-next::before {
    -webkit-transform-origin: calc(100% - 0.5px) 50%;
            transform-origin: calc(100% - 0.5px) 50%;
    -webkit-transform: rotate(50.25deg);
            transform: rotate(50.25deg);
  }
}

@media screen and (max-width: 767px) {
  .specialty__navigation .specialty__button-next::after {
    -webkit-transform-origin: calc(100% - 0.5px) 50%;
            transform-origin: calc(100% - 0.5px) 50%;
    -webkit-transform: rotate(-50.25deg);
            transform: rotate(-50.25deg);
  }
}

.specialty__button {
  margin-top: 8.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .specialty__button {
    margin-top: 3.2rem;
  }
}

/* ------------------------------------------------
prototype-works
--------------------------------------------------- */
.prototype-works {
  padding-top: 13.3rem;
  padding-bottom: 16.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .prototype-works {
    padding-top: 3.8rem;
    padding-bottom: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .prototype-works__inner {
    padding-inline: 3rem;
  }
}

.prototype-works__item {
  width: 117.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .prototype-works__item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.prototype-works__item:not(:first-child) {
  margin-top: 15.9rem;
}
@media screen and (max-width: 767px) {
  .prototype-works__item:not(:first-child) {
    margin-top: 8rem;
  }
}

.prototype-works__item:nth-child(odd) {
  margin-left: auto;
  padding-left: 25px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .prototype-works__item:nth-child(odd) {
    padding-left: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.prototype-works__item:nth-child(even) {
  margin-right: auto;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .prototype-works__item:nth-child(even) {
    padding-right: initial;
  }
}

.prototype-works__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 54.4rem;
}
@media screen and (max-width: 767px) {
  .prototype-works__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2rem;
    width: 34.5rem;
    height: 22rem;
  }
}

@media screen and (max-width: 767px) {
  .prototype-works__item:nth-child(odd) .prototype-works__img {
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (max-width: 767px) {
  .prototype-works__item:nth-child(even) .prototype-works__img {
    margin-left: initial;
    margin-right: calc(50% - 50vw);
  }
}

.prototype-works__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prototype-works__text-area {
  width: 42.3rem;
}
@media screen and (max-width: 767px) {
  .prototype-works__text-area {
    width: 100%;
    display: contents;
  }
}

.prototype-works__item:nth-child(odd) .prototype-works__text-area {
  padding-right: 6rem;
}
@media screen and (max-width: 767px) {
  .prototype-works__item:nth-child(odd) .prototype-works__text-area {
    padding-right: 0;
  }
}

.prototype-works__item:nth-child(even) .prototype-works__text-area {
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .prototype-works__item:nth-child(even) .prototype-works__text-area {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .prototype-works__heading {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-inline: auto;
  }
}

.prototype-works__text {
  margin-top: 6.4rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .prototype-works__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2.7rem;
    font-size: 1.9rem;
    letter-spacing: 0;
  }
}

.prototype-works__sub-text {
  margin-top: 3.3rem;
  height: auto;
  min-height: 12.9rem;
  font-size: 1.4rem;
  line-height: 1.84;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .prototype-works__sub-text {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 2.2rem;
    font-size: 1.4rem;
  }
}

.prototype-works__button {
  margin-top: 3.3rem;
}
@media screen and (max-width: 767px) {
  .prototype-works__button {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-top: 2rem;
    margin-inline: auto;
  }
}

/* ------------------------------------------------
facility-tour
--------------------------------------------------- */
.facility-tour {
  overflow: hidden;
}

.facility-tour__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .facility-tour__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.facility-tour__item {
  z-index: 1;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 54.8rem;
  background-color: #000;
  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;
}
@media screen and (max-width: 767px) {
  .facility-tour__item {
    height: 29.7rem;
  }
}

.facility-tour__item::before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.facility-tour__item:nth-child(1) {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50% + 25px);
}
@media screen and (max-width: 767px) {
  .facility-tour__item:nth-child(1) {
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50% + 1.5rem);
    padding-right: calc(50vw - 50% + 1.5rem);
  }
}

.facility-tour__item:nth-child(1)::before {
  right: 0;
  background-image: url(../images/top/facility-img.png);
}

.facility-tour__item:nth-child(2) {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50% + 25px);
}
@media screen and (max-width: 767px) {
  .facility-tour__item:nth-child(2) {
    margin-left: calc(50% - 50vw);
    padding-right: calc(50vw - 50% + 1.5rem);
    padding-left: calc(50vw - 50% + 1.5rem);
  }
}

.facility-tour__item:nth-child(2)::before {
  left: 0;
  background-image: url(../images/top/tour-img.png);
}

.facility-tour__text-area {
  z-index: 10;
  position: relative;
  height: inherit;
  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;
}

.facility-tour__button {
  margin-top: 5.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .facility-tour__button {
    margin-top: 3.6rem;
  }
}

/* ------------------------------------------------
company
--------------------------------------------------- */
.company-recruit {
  position: relative;
  overflow: hidden;
}

.company__name {
  position: absolute;
  top: 17rem;
  right: -26rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-family: "Roboto", sans-serif;
  font-size: 22.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(15, 72, 149, 0.06);
}
@media screen and (max-width: 767px) {
  .company__name {
    top: 10rem;
    right: -12.6rem;
    font-size: 10.5rem;
    line-height: 1;
  }
}

.company {
  padding-top: 10.3rem;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 3.2rem;
    padding-bottom: 5.5rem;
  }
}

.company__text {
  margin-top: 6.2rem;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__text {
    margin-top: 4.4rem;
    font-size: 2rem;
  }
}

.company__button {
  margin-top: 4.8rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .company__button {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
recruitment
--------------------------------------------------- */
@media screen and (max-width: 767px) {
  .recruitment__inner {
    padding-inline: 3rem;
  }
}

.recruitment__body {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 48rem;
  background-color: #000;
  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;
}
@media screen and (max-width: 767px) {
  .recruitment__body {
    height: 30.3rem;
  }
}

.recruitment__body::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/recruitment-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.recruitment__text-area {
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 767px) {
  .recruitment__heading .section-main-heading {
    padding-bottom: 0;
  }
}

.recruitment__heading .section-main-heading::before {
  display: none;
}

.recruitment__button {
  margin-top: 6.6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .recruitment__button {
    margin-top: 3.4rem;
  }
}

/* ------------------------------------------------
contact-area
--------------------------------------------------- */
.contact-area {
  z-index: 1;
  position: relative;
  margin-top: 5.8rem;
  width: 100%;
  height: 40.4rem;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .contact-area {
    margin-top: 4.2rem;
    height: 30.8rem;
  }
}

.contact-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top/contact-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-area__inner {
  height: inherit;
  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;
}

.contact-area__text-area {
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-area__heading .section-main-heading {
    padding-bottom: 0;
  }
}

.contact-area__heading .section-main-heading::before {
  display: none;
}

.contact-area__button {
  margin-top: 4.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact-area__button {
    margin-top: 4.4rem;
  }
}

/* ------------------------------------------------
floating-banner
--------------------------------------------------- */
.floating-banner {
  z-index: 500;
  position: fixed;
  bottom: 0.3rem;
  right: 0.3rem;
  width: 29.4rem;
  height: 10rem;
  background-color: #fff;
  outline: 0.3rem solid #0f4895;
  offset: -0.3rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .floating-banner {
    padding-bottom: 1.3rem;
    width: 22.6rem;
    height: 7.7rem;
  }
}

.floating-banner__link {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  display: block;
  width: 100%;
  height: 100%;
}

.floating-banner__inner {
  z-index: 510;
  position: relative;
  padding-inline: 2.5rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .floating-banner__inner {
    padding-inline: 1.9rem;
  }
}

.floating-banner__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .floating-banner__title {
    font-size: 1.2rem;
  }
}

.floating-banner__text {
  z-index: 510;
  position: relative;
  margin-top: 0.4rem;
  margin-left: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .floating-banner__text {
    margin-top: 0.1rem;
    margin-left: 0;
    font-size: 1.5rem;
  }
}

.floating-banner__text::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #F7F74E;
}

.floating-banner__img {
  position: absolute;
  bottom: -0.6rem;
  right: -0.6rem;
  width: 16.7rem;
}
@media screen and (max-width: 767px) {
  .floating-banner__img {
    bottom: -0.5rem;
    right: -0.4rem;
    width: 12.8rem;
  }
}

.service-strength {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-strength {
    padding-bottom: 11.4rem;
  }
}

.service-strength__bg {
  z-index: 1;
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 32.7rem;
  background-color: rgba(194, 200, 216, 0.17);
}
@media screen and (max-width: 767px) {
  .service-strength__bg {
    padding-top: 4rem;
    padding-bottom: 6.6rem;
  }
}

.service-strength__bg::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 3.2rem 3.2rem;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem), repeating-linear-gradient(0deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem);
}

.service-strength__bg-text {
  position: absolute;
  bottom: -5rem;
  right: -2rem;
  font-family: "Roboto", sans-serif;
  font-size: 28.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #e1e8f2;
}
@media screen and (max-width: 767px) {
  .service-strength__bg-text {
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    font-size: 11.5rem;
  }
}

.service-strength__lists {
  margin-top: 10.7rem;
}
@media screen and (max-width: 767px) {
  .service-strength__lists {
    margin-top: 5rem;
  }
}

.service-strength__container .side-list--reverse:nth-child(odd) {
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .service-strength__container .side-list--reverse:nth-child(odd) {
    padding-inline: 1.5rem;
  }
}

.service-strength__container .side-list--reverse:nth-child(even) {
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .service-strength__container .side-list--reverse:nth-child(even) {
    padding-inline: 1.5rem;
  }
}

.service-strength__lists .side-list--reverse .side-text-area {
  padding-bottom: 3.5rem;
}

.service-strength__lists .side-list--reverse:nth-child(4) .side-text {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .service-strength__lists .side-list--reverse:nth-child(4) .side-text {
    width: 100%;
  }
}

.service-strength__table {
  margin-top: 2rem;
}

.service-strength__item {
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
}

.service-strength__title {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  width: 44.2%;
}

.service-strength__text {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-strength__list-text {
  margin-top: 2.7rem;
  font-size: 1.3rem;
  line-height: 1.846;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .service-strength__list-text {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}

.service-bottom {
  z-index: 1;
  position: relative;
  padding-top: 8.2rem;
  padding-bottom: 8.4rem;
  background-color: #0D4D8E;
}
@media screen and (max-width: 767px) {
  .service-bottom {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.service-bottom::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/service/bg-service-bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .service-bottom::before {
    background-image: url(../images/service/bg-service-bottom-sp.png);
  }
}

.service-bottom__inner {
  z-index: 1;
  position: relative;
  padding-inline: 8.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .service-bottom__inner {
    padding-inline: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service-bottom__title-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-bottom__title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service-bottom__title {
    font-size: 2rem;
    text-align: center;
  }
}

.service-bottom__text-area {
  width: 39.9rem;
}
@media screen and (max-width: 767px) {
  .service-bottom__text-area {
    margin-top: 1.9rem;
    width: 100%;
  }
}

.service-bottom__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.92;
  letter-spacing: 0.01em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service-bottom__list {
    font-size: 1.6rem;
  }
}

.service-bottom__list dt {
  width: 73.6%;
}

.service-bottom__list dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .service-bottom__list dd {
    text-align: right;
  }
}

.technology-head {
  padding-top: 6.5rem;
  padding-bottom: 11.6rem;
  background-color: #0f4895;
}
@media screen and (max-width: 767px) {
  .technology-head {
    padding-top: 3.2rem;
    padding-bottom: 7.7rem;
  }
}

.technology-head__text {
  margin-top: 4.4rem;
  margin-inline: auto;
  width: 90rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .technology-head__text {
    margin-top: 2.7rem;
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.technology-head__text-link {
  color: #79DFF2;
  text-decoration: underline;
}

.technology-head__lists {
  margin-top: 5.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3.6rem;
     -moz-column-gap: 3.6rem;
          column-gap: 3.6rem;
}
@media screen and (max-width: 767px) {
  .technology-head__lists {
    margin-top: 2.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .technology-head__list {
    width: 46.9%;
  }
}

.technology-head__list .list-img img {
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .technology-head__list .list-img img {
    border-radius: 1rem;
  }
}

.technology-head__list .list-text {
  margin-top: 1.3rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .technology-head__list .list-text {
    margin-top: 0.5rem;
    letter-spacing: 0.07em;
  }
}

.technology-head__sub {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .technology-head__sub {
    margin-top: 5rem;
  }
}

.technology-head__sub-text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .technology-head__sub-text {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
}

.technology-head__sub-lists {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .technology-head__sub-lists {
    margin-top: 2.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1.4rem;
       -moz-column-gap: 1.4rem;
            column-gap: 1.4rem;
    row-gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .technology-head__sub-list {
    width: 30.2%;
  }
}

.technology-head__sub-list .list-text {
  margin-top: 0.5rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .technology-head__sub-list .list-text {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 767px) {
  .technology-head__sub-list .list-text {
    font-size: 1.4rem;
  }
}

.technology-bottom {
  padding-top: 6.7rem;
  padding-bottom: 11.7rem;
  background-size: 3.2rem 3.2rem;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem), repeating-linear-gradient(0deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem);
}
@media screen and (max-width: 767px) {
  .technology-bottom {
    padding-top: 6.2rem;
    padding-bottom: 3.2rem;
    background-image: initial;
  }
}

.technology-bottom__heading {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .technology-bottom__heading {
    font-size: 2rem;
  }
}

.technology-bottom__img {
  margin-top: 3.7rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .technology-bottom__img {
    margin-top: 1.3rem;
  }
}

.technology-bottom__table {
  margin-top: 7rem;
  margin-inline: auto;
  width: 63.2rem;
}
@media screen and (max-width: 767px) {
  .technology-bottom__table {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.technology-bottom__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width: 767px) {
  .technology-bottom__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.technology-bottom__item.main-text {
  letter-spacing: 0.07em;
}

.technology-bottom__item:first-child {
  border-top: 1px solid #E3E3E3;
}

.technology-bottom__item:nth-child(odd) {
  background-color: #F2F4F8;
}

.technology-bottom__item:nth-child(even) {
  background-color: #fff;
}

.technology-bottom__item dt {
  padding: 1rem 1rem 1rem 3.7rem;
  width: 30.6rem;
}
@media screen and (max-width: 767px) {
  .technology-bottom__item dt {
    padding: 1rem 1.5rem 0;
    width: 100%;
  }
}

.technology-bottom__item dd {
  padding: 1rem 1rem 1rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .technology-bottom__item dd {
    margin-top: 0.5rem;
    padding: 0 1.5rem 1.5rem;
  }
}

.technology-bottom__item .text-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.technology-bottom__item .text-table .title {
  width: 14.1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .technology-bottom__item .text-table .title {
    width: 13.8rem;
  }
}

.technology-bottom__item .text-table .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0;
}

.prototype-bottom {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/282;
  background-color: #0D4D8E;
  background-image: url(../images/prototype/bg-prototype-bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .prototype-bottom {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .case {
    overflow: hidden;
  }
}

.case-body {
  padding-bottom: 7.9rem;
}

.case-body__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .case-body__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 0.7rem;
  }
}

.case-body__tab-button {
  padding: 1.1rem 0;
  width: 15.9rem;
  border: 1px solid #0f4895;
  border-collapse: collapse;
  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;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.46;
}

.case-body__tab-button + .case-body__tab-button {
  border-left: none;
}
@media screen and (max-width: 767px) {
  .case-body__tab-button + .case-body__tab-button {
    border-left: 1px solid #0f4895;
  }
}

@media screen and (max-width: 767px) {
  .case-body__tab-button:nth-child(even) {
    border-left: none;
  }
}

.case-body__tab-button.is-active {
  background-color: #0f4895;
  color: #fff;
}

.case-body__items {
  margin-top: 3.4rem;
  padding: 2.4rem 9.5rem 7.7rem;
  background-color: #0f4895;
}
@media screen and (max-width: 767px) {
  .case-body__items {
    margin-top: 4.3rem;
    padding-top: 6.3rem;
    padding-bottom: 5.8rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

.case-body__unit {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .case-body__unit {
    display: none;
  }
}

.case-body__cards {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .case-body__cards {
    margin-top: initial;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 3.8rem;
     -moz-column-gap: 3.8rem;
          column-gap: 3.8rem;
  row-gap: 3.6rem;
}
@media screen and (max-width: 767px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card-img {
  z-index: 1;
  position: relative;
  width: 100%;
}

.card-img-slides {
  width: 100%;
}

.card-img-slide {
  width: 100% !important;
  height: auto;
  aspect-ratio: 1;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .card-img-slide {
    aspect-ratio: 345/230;
  }
}

.card-img-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .card-img-slide img {
    aspect-ratio: 345/230;
  }
}

.card-title {
  margin-top: 1.3rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-title {
    margin-top: 0.8rem;
    font-size: 1.7rem;
  }
}

.card-lists {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .card-lists {
    margin-top: 1.2rem;
  }
}

.card-list {
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.card-list:first-child {
  border-top: 1px solid #fff;
}

.card-list__title {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  width: 47%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .card-list__title {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    width: 40%;
    font-size: 1.4rem;
  }
}

.card-list__text {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .card-list__text {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 1.4rem;
    text-align: right;
  }
}

.card-list__not-text {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .card-list__not-text {
    font-size: 1.7rem;
  }
}

.card__navigation {
  z-index: 50;
  position: absolute;
  width: 100%;
  height: 2.1rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.card__navigation .case__button-prev,
.card__navigation .case__button-next {
  position: absolute;
  width: 0.8rem;
  height: 2.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.card__navigation .case__button-prev {
  left: 1.1rem;
}
@media screen and (max-width: 767px) {
  .card__navigation .case__button-prev {
    left: 1.5rem;
  }
}

.card__navigation .case__button-next {
  right: 1.1rem;
}
@media screen and (max-width: 767px) {
  .card__navigation .case__button-next {
    right: 1.5rem;
  }
}

.card__navigation .case__button-prev::before,
.card__navigation .case__button-prev::after,
.card__navigation .case__button-next::before,
.card__navigation .case__button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.05rem);
  left: 0;
  width: 1.34rem;
  height: 1px;
  background-color: #fff;
}

.card__navigation .case__button-prev::before,
.card__navigation .case__button-prev::after {
  -webkit-transform-origin: 0.05rem 50%;
          transform-origin: 0.05rem 50%;
}

.card__navigation .case__button-prev::before {
  -webkit-transform: rotate(64.8deg);
          transform: rotate(64.8deg);
}

.card__navigation .case__button-prev::after {
  -webkit-transform: rotate(-64.8deg);
          transform: rotate(-64.8deg);
}

.card__navigation .case__button-next::before,
.card__navigation .case__button-next::after {
  -webkit-transform-origin: calc(100% - 0.05rem) 50%;
          transform-origin: calc(100% - 0.05rem) 50%;
  left: -0.5rem;
}

.card__navigation .case__button-next::before {
  -webkit-transform: rotate(64.8deg);
          transform: rotate(64.8deg);
}

.card__navigation .case__button-next::after {
  -webkit-transform: rotate(-64.8deg);
          transform: rotate(-64.8deg);
}

.machine {
  z-index: 1;
  position: relative;
  padding-top: 6.2rem;
  padding-bottom: 13.7rem;
  background-color: #0f4895;
}
@media screen and (max-width: 767px) {
  .machine {
    padding-top: 2.8rem;
    padding-bottom: 6.4rem;
  }
}

.machine::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 3.2rem 3.2rem;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem), repeating-linear-gradient(0deg, rgba(194, 200, 216, 0.17), rgba(194, 200, 216, 0.17) 0.1rem, transparent 0.1rem, transparent 3.2rem);
}

.machine__inner {
  z-index: 1;
  position: relative;
}

.machine__contents {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5.8rem;
     -moz-column-gap: 5.8rem;
          column-gap: 5.8rem;
  row-gap: 4.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .machine__contents {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2.5rem;
  }
}

.machine__list {
  width: 42.1rem;
}
@media screen and (max-width: 767px) {
  .machine__list {
    width: 100%;
  }
}

.machine__list:not(:first-child) {
  border-top: 1px solid #E3E3E3;
}

.machine__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .machine__title {
    font-size: 1.6rem;
  }
}

.machine__title::before {
  content: "■ ";
}

.machine__text:nth-child(2) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .machine__text:nth-child(2) {
    margin-top: 1rem;
  }
}

.machine__list .text-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .machine__list .text-table {
    font-size: 1.5rem;
  }
}

.machine__list .text-table-num {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  width: 51%;
}
@media screen and (max-width: 767px) {
  .machine__list .text-table-num {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    padding-left: 1rem;
    width: 55%;
  }
}

.machine__list .text-table-name {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 35.3%;
}
@media screen and (max-width: 767px) {
  .machine__list .text-table-name {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    width: 35.1%;
  }
}

.machine__list .text-table-units {
  padding-top: 1rem;
  padding-bottom: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .machine__list .text-table-units {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
}

.tour {
  padding-bottom: 10.2rem;
}
@media screen and (max-width: 767px) {
  .tour {
    padding-bottom: 5rem;
  }
}

.tour-head__button {
  position: relative;
  margin-top: 1.6rem;
  margin-inline: auto;
  padding: 0.2rem 1rem 0.4rem;
  width: 32rem;
  height: 4.4rem;
  background-color: #0f4895;
  border-radius: 2.2rem;
  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;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}

.tour-head__button .arrow {
  position: absolute;
  top: 50%;
  right: 1.9rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 0.6rem;
  height: 1.2rem;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.tour-head__button:hover .arrow {
  right: 1.4rem;
}

.tour-head__button .arrow::before,
.tour-head__button .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.05rem);
  right: 0;
  width: 0.84rem;
  height: 0.01rem;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 0.05rem) 50%;
          transform-origin: calc(100% - 0.05rem) 50%;
}

.tour-head__button .arrow::before {
  -webkit-transform: rotate(47.75deg);
          transform: rotate(47.75deg);
}

.tour-head__button .arrow::after {
  -webkit-transform: rotate(-47.75deg);
          transform: rotate(-47.75deg);
}

.tour__video {
  width: 100%;
}

.tour__video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1100/480;
  border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
  .tour__video iframe {
    aspect-ratio: 345/194;
    border-radius: 0.8rem;
  }
}

/* ------------------------------------------------
company-head
--------------------------------------------------- */
.company-head {
  padding-top: 6.7rem;
}
@media screen and (max-width: 767px) {
  .company-head {
    padding-top: 3.6rem;
  }
}

.company-head__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company-head__title {
    font-size: 1.8rem;
  }
}

.company-head__text {
  margin-top: 3rem;
  padding: 1.9rem 2rem 2.2rem;
  width: 100%;
  border: 1px solid #0f4895;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company-head__text {
    margin-top: 1.2rem;
    padding: 1.5rem 1rem 2rem;
    font-size: 1.8rem;
  }
}

.company-message {
  padding-top: 10.4rem;
  padding-bottom: 11.3rem;
}
@media screen and (max-width: 767px) {
  .company-message {
    padding-top: 5.3rem;
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .company-message__inner {
    padding-inline: 1.5rem;
  }
}

.company-message__item {
  margin-left: auto;
  width: 117.5rem;
  padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .company-message__item {
    margin-left: initial;
    padding-left: initial;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company-message__textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .company-message__textarea {
    padding-right: 0;
    width: 100%;
  }
}

.company-message__title-container {
  margin-top: 3.9rem;
}
@media screen and (max-width: 767px) {
  .company-message__title-container {
    margin-top: 3.3rem;
  }
}

.company-message__title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company-message__title {
    font-size: 3.1rem;
    text-align: center;
  }
}

.company-message__sub-title {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .company-message__sub-title {
    margin-top: 0.6rem;
    font-size: 1.7rem;
    text-align: center;
  }
}

.company-message__text-container {
  margin-top: 3rem;
  width: 38.2rem;
}
@media screen and (max-width: 767px) {
  .company-message__text-container {
    margin-top: 1.9rem;
    width: 100%;
  }
}

.company-message__text.main-text {
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .company-message__text.main-text {
    line-height: 1.74;
    letter-spacing: 0.07em;
  }
}

.company-message__name-text.main-text {
  margin-top: 1.3rem;
  line-height: 1.84;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company-message__name-text.main-text {
    margin-top: 1.4rem;
    line-height: 1.53;
    letter-spacing: 0.07em;
  }
}

.company-message__img {
  width: 70rem;
}
@media screen and (max-width: 767px) {
  .company-message__img {
    margin-top: 2.5rem;
    width: 100%;
  }
}

/* ------------------------------------------------
forces
--------------------------------------------------- */
.forces {
  padding-top: 9.2rem;
  padding-bottom: 18.6rem;
  background-image: url(../images/company/bg-forces.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .forces {
    padding-top: 5.4rem;
    padding-bottom: 11.5rem;
    background-image: url(../images/company/bg-forces-sp.png);
  }
}

.forces-head {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .forces-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.forces-head__hero {
  z-index: 1;
  position: relative;
  width: 58.6%;
  height: auto;
  aspect-ratio: 672.87/618.56;
}
@media screen and (max-width: 767px) {
  .forces-head__hero {
    width: 100%;
  }
}

.forces-head__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .forces-head__text-area {
    margin-top: 5rem;
    padding-left: 0;
  }
}

.forces-head__title {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .forces-head__title {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    text-align: center;
  }
}

.forces-head__text {
  margin-top: 2.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .forces-head__text {
    margin-top: 3.3rem;
  }
}

.forces-lists {
  margin-top: 7.8rem;
}
@media screen and (min-width: 1600px) {
  .forces-lists {
    margin-top: 15rem;
  }
}
@media screen and (min-width: 1800px) {
  .forces-lists {
    margin-top: 35rem;
  }
}
@media screen and (max-width: 767px) {
  .forces-lists {
    margin-top: 7.3rem;
  }
}

@media screen and (max-width: 767px) {
  .forces-lists .side-list {
    padding-top: 25rem;
  }
}

@media screen and (max-width: 767px) {
  .forces-lists .side-list:not(:first-child) {
    margin-top: 4.5rem;
  }
}

.forces-lists .side-text-area {
  padding-top: 16.8rem;
  background: initial;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .forces-lists .side-text-area {
    padding-top: 1rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .forces-lists .side-list:nth-child(odd) .side-text-area {
    margin: initial;
    padding: initial;
    padding-top: 0.8rem;
    padding-inline: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .forces-lists .side-list:nth-child(even) .side-text-area {
    margin: initial;
    padding: initial;
    padding-top: 0.8rem;
    padding-inline: 1.5rem;
  }
}

.forces-lists .side-num {
  color: #fff;
}

.forces-lists .side-num::before {
  color: rgba(255, 255, 255, 0.2);
}

.forces-lists .side-list:nth-child(odd) .side-num {
  left: 7rem;
}
@media screen and (max-width: 767px) {
  .forces-lists .side-list:nth-child(odd) .side-num {
    left: initial;
    right: -0.5rem;
  }
}

.forces-lists .side-list:nth-child(even) .side-num {
  right: 36rem;
}
@media screen and (max-width: 767px) {
  .forces-lists .side-list:nth-child(even) .side-num {
    right: -0.5rem;
  }
}

.forces-lists .side-title {
  padding-left: 0;
  padding-bottom: 1.8rem;
  font-size: 4.4rem;
  line-height: 1.454;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .forces-lists .side-title {
    padding-bottom: 0;
    font-size: 3.6rem;
  }
}

.forces-lists .side-title::before {
  top: initial;
  -webkit-transform: initial;
          transform: initial;
  bottom: 0;
  width: 39.6rem;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .forces-lists .side-title::before {
    display: none;
  }
}

.forces-lists .side-text {
  margin-top: 2.6rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .forces-lists .side-text {
    margin-top: 1rem;
    letter-spacing: 0.07em;
  }
}

@media screen and (max-width: 767px) {
  .forces-lists .side-list .side-text {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .forces-lists .side-list .side-img {
    width: 36rem;
  }
}

/* ------------------------------------------------
info
--------------------------------------------------- */
.info {
  padding-top: 7.8rem;
  padding-bottom: 10.8rem;
  background-color: #f2f5f9;
}
@media screen and (max-width: 767px) {
  .info {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }
}

.info__table {
  margin-top: 7rem;
  padding-inline: 7rem;
}
@media screen and (max-width: 767px) {
  .info__table {
    margin-top: 2rem;
    padding-inline: 1.5rem;
  }
}

.info__table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .info__table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.5rem;
  }
}

.info__table-item.address {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .info__table-item.address {
    padding-bottom: 2.6em;
  }
}

.info__table-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .info__table-address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.5rem;
  }
}

.info__table-item:not(:last-child) {
  border-bottom: 1px solid #000;
}

.info__table-title {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .info__table-title {
    padding-top: 1.6rem;
    padding-bottom: 0;
    width: 100%;
  }
}

.info__table-title .title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0625;
  letter-spacing: 0.078em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .info__table-title .title {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.041em;
  }
}

.info__table-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .info__table-text {
    padding-top: 0;
    padding-bottom: 1.6rem;
  }
}

.info__table-text .text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0625;
  letter-spacing: 0.015em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .info__table-text .text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.73;
    letter-spacing: 0.07em;
  }
}

.info__table-text .text:not(:first-child) {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .info__table-text .text:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.info__table-map {
  width: 100%;
  height: auto;
}

.info__table-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 792/349;
}
@media screen and (max-width: 767px) {
  .info__table-map iframe {
    aspect-ratio: 314/138;
  }
}

.info__table-support {
  margin-inline: auto;
  padding-top: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .info__table-support {
    padding-top: 1.5rem;
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
}

.info__table-img {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .info__table-img {
    width: 30.6%;
  }
}

.info__table-img__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}

/* ------------------------------------------------
history
--------------------------------------------------- */
.history {
  position: relative;
  padding-top: 6.8rem;
  padding-bottom: 16.6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .history {
    padding-top: 5rem;
    padding-bottom: 12.5rem;
  }
}

.history__bg-text {
  position: absolute;
  top: 52rem;
  right: -23.5rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-family: "Roboto", sans-serif;
  font-size: 22.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(15, 72, 149, 0.06);
}
@media screen and (max-width: 767px) {
  .history__bg-text {
    top: initial;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    font-size: 11.5rem;
  }
}

.history__table {
  margin-top: 4rem;
  padding-inline: 5.5rem;
}
@media screen and (max-width: 767px) {
  .history__table {
    margin-top: 3.6rem;
    padding-inline: 1.5rem;
  }
}

.history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.6rem;
  }
}

.history__item:first-child {
  border-top: 1px solid #000;
}

.history__item-title {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 36.8%;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.041em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .history__item-title {
    padding-top: 1.4rem;
    padding-bottom: 0;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.history__item-text {
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.041em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .history__item-text {
    padding-top: 0;
    padding-bottom: 1.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0;
  }
}

/* ------------------------------------------------
recruit-head
--------------------------------------------------- */
.recruit-head {
  padding-top: 11.3rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .recruit-head {
    padding-top: 1.6em;
    padding-bottom: 2.1rem;
  }
}

.recruit-head__body {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1155/691;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .recruit-head__body {
    aspect-ratio: 342/430;
  }
}

.recruit-head__body::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/recruit/recruit-head-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .recruit-head__body::before {
    background-image: url(../images/recruit/recruit-head-img-sp.png);
  }
}

.recruit-head__body-area {
  position: relative;
  width: 100%;
  height: 100%;
  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;
}

.recruit-head__sub-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: center;
}

.recruit-head__title {
  margin-top: 1.4rem;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-head__title {
    margin-top: 1.8rem;
    font-size: 3.3rem;
  }
}

.recruit-head__text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-head__text {
    margin-top: 1.8rem;
    line-height: 1.6875;
  }
}

.recruit-head__button {
  margin-top: 4.3rem;
  width: 26.3rem;
  height: 5.6rem;
  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;
  background-color: #fff;
  border-radius: 2.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0f4895;
  -webkit-transition: 0.3s background-color, 0.3s color;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767px) {
  .recruit-head__button {
    margin-top: 4rem;
  }
}

.recruit-head__button:hover {
  opacity: 1;
  background-color: #0f4895;
  color: #fff;
}

/* ------------------------------------------------
data
--------------------------------------------------- */
.data {
  padding-top: 7rem;
  padding-bottom: 7.4rem;
  background-color: #f2f5f9;
}
@media screen and (max-width: 767px) {
  .data {
    padding-top: 2.3rem;
    padding-bottom: 6.3rem;
  }
}

.data__body {
  margin-top: 7.4rem;
  margin-inline: auto;
  width: 90rem;
}
@media screen and (max-width: 767px) {
  .data__body {
    margin-top: 3rem;
    width: 100%;
  }
}

.data__items {
  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;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .data__items {
    row-gap: 1.1rem;
  }
}

.data__item {
  background-color: #fff;
}

.data__item.large {
  padding: 2.4rem 2rem 1rem;
  width: 43rem;
  height: 30.9rem;
}
@media screen and (max-width: 767px) {
  .data__item.large {
    padding: 1.1rem 1rem 0;
    width: 16.6rem;
    height: 12.6rem;
  }
}

.data__item.regular {
  padding: 2.1rem 2rem 1rem;
  width: 28.6rem;
  height: 21.8rem;
}
@media screen and (max-width: 767px) {
  .data__item.regular {
    padding: 1.1rem 1rem 0;
    width: 16.6em;
    height: 12.6rem;
  }
}

.data__item-title {
  margin-inline: auto;
  outline: 1px solid #707070;
  offset: -1px;
  border-radius: 2.3rem;
  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;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .data__item-title {
    outline: 1px solid #0f4895;
    font-weight: 700;
    color: #0f4895;
  }
}

.data__item.large .data__item-title {
  width: 28.2rem;
  height: 4.6rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .data__item.large .data__item-title {
    width: 14.8rem;
    height: 2.7rem;
    font-size: 1.5rem;
  }
}

.data__item.regular .data__item-title {
  width: 19.9rem;
  height: 3.3rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .data__item.regular .data__item-title {
    width: 14.8rem;
    height: 2.7rem;
    font-size: 1.5rem;
  }
}

.data__item-text {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.data__item.large .data__item-text {
  margin-top: 5.4rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  font-size: 8.5rem;
}
@media screen and (max-width: 767px) {
  .data__item.large .data__item-text {
    margin-top: 1.6rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    font-size: 4.4rem;
  }
}

.data__item.regular .data__item-text {
  margin-top: 3.3rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .data__item.regular .data__item-text {
    margin-top: 1.6rem;
    font-size: 4.4rem;
  }
}

.data__item .--unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.6;
}
@media screen and (max-width: 767px) {
  .data__item .--unit {
    line-height: 2;
  }
}

.data__item.large .--unit {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .data__item.large .--unit {
    font-size: 1.5rem;
  }
}

.data__item.regular .--unit {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .data__item.regular .--unit {
    font-size: 1.5rem;
  }
}

.data__item-remarks {
  margin-top: 0.7rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .data__item-remarks {
    margin-top: -0.4rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .data__item.large.graph {
    height: 15.4rem;
  }
}

.data__graph {
  margin-top: 0.7rem;
  margin-inline: auto;
  width: 30.6rem;
}
@media screen and (max-width: 767px) {
  .data__graph {
    margin-top: 0.4rem;
    width: 15.3rem;
  }
}

.data__bottom-text {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .data__bottom-text {
    margin-top: -2rem;
  }
}

/* ------------------------------------------------
interview
--------------------------------------------------- */
.interview {
  padding-top: 5.2rem;
  padding-bottom: 6.8rem;
  background-color: #0f4895;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-top: 5.3rem;
    padding-bottom: 5rem;
  }
}

.interview__slide-container {
  margin-top: 8.6rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .interview__slide-container {
    margin-top: 2.8rem;
    padding-inline: initial;
  }
}

.interview__swiper {
  z-index: 1;
  position: relative;
  padding-bottom: 8.9rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}
@media screen and (max-width: 767px) {
  .interview__swiper {
    padding-bottom: initial;
  }
}

@media screen and (max-width: 767px) {
  .interview__swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4.2rem;
  }
}

.interview__swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5.7rem;
     -moz-column-gap: 5.7rem;
          column-gap: 5.7rem;
}
@media screen and (max-width: 767px) {
  .interview__swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.3rem;
  }
}

.interview__img-area {
  width: 40.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .interview__img-area {
    position: relative;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
  }
}

.interview__num {
  width: 6.6rem;
}
@media screen and (max-width: 767px) {
  .interview__num {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.5rem;
  }
}

.interview__num .--num-text {
  position: relative;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .interview__num .--num-text {
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
    font-size: 3rem;
  }
}

.interview__img-container {
  width: 30.8rem;
}
@media screen and (max-width: 767px) {
  .interview__img-container {
    margin-inline: auto;
    width: 20.8rem;
  }
}

.interview__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  width: 100%;
  height: auto;
}

.interview__joining {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .interview__joining {
    font-size: 1.5rem;
    bottom: 2rem;
  }
}

.interview__items {
  width: 41.5rem;
}
@media screen and (max-width: 767px) {
  .interview__items {
    width: 100%;
  }
}

.interview__item:not(:first-child) {
  padding-top: 1.5rem;
}

.interview__item:not(:last-child) {
  padding-bottom: 1.5rem;
  background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 3px, transparent 3px, transparent 7px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.interview__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .interview__title {
    font-size: 1.8rem;
  }
}

.interview__text {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #fff;
}

.interview__navigation {
  z-index: 50;
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-inline: auto;
  padding-right: 2.5rem;
  width: 94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .interview__navigation {
    display: none;
  }
}

.interview__navigation .interview__button-prev,
.interview__navigation .interview__button-next {
  position: relative;
  width: 4.1rem;
  height: 9.3rem;
  cursor: pointer;
}

.interview__navigation .interview__button-prev::before,
.interview__navigation .interview__button-prev::after,
.interview__navigation .interview__button-next::before,
.interview__navigation .interview__button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.05rem);
  width: 6.19rem;
  height: 1px;
  background-color: #fff;
}

.interview__navigation .interview__button-prev::before,
.interview__navigation .interview__button-prev::after {
  left: 0;
}

.interview__navigation .interview__button-next::before,
.interview__navigation .interview__button-next::after {
  left: -2rem;
}

.interview__navigation .interview__button-prev::before {
  -webkit-transform-origin: 0.05rem 50%;
          transform-origin: 0.05rem 50%;
  -webkit-transform: rotate(50.25deg);
          transform: rotate(50.25deg);
}

.interview__navigation .interview__button-prev::after {
  -webkit-transform-origin: 0.05rem 50%;
          transform-origin: 0.05rem 50%;
  -webkit-transform: rotate(-50.25deg);
          transform: rotate(-50.25deg);
}

.interview__navigation .interview__button-next::before {
  -webkit-transform-origin: calc(100% - 0.05rem) 50%;
          transform-origin: calc(100% - 0.05rem) 50%;
  -webkit-transform: rotate(50.25deg);
          transform: rotate(50.25deg);
}

.interview__navigation .interview__button-next::after {
  -webkit-transform-origin: calc(100% - 0.05rem) 50%;
          transform-origin: calc(100% - 0.05rem) 50%;
  -webkit-transform: rotate(-50.25deg);
          transform: rotate(-50.25deg);
}

.interview__pagination {
  position: absolute;
  top: initial !important;
  bottom: 2px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.9rem;
     -moz-column-gap: 0.9rem;
          column-gap: 0.9rem;
}
@media screen and (max-width: 767px) {
  .interview__pagination {
    display: none;
  }
}

.interview__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #0f4895;
  outline: 1px solid #fff;
  offset: -1px;
  border-radius: 50%;
}

.interview__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* ------------------------------------------------
flow
--------------------------------------------------- */
.flow {
  padding-top: 5.5rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 3.2rem;
    padding-bottom: 6.4rem;
  }
}

.flow__lists {
  margin-top: 5.3rem;
  padding-inline: 4.8rem;
  counter-reset: listnum;
}
@media screen and (max-width: 767px) {
  .flow__lists {
    margin-top: 2.7rem;
    padding-inline: initial;
  }
}

.flow__list {
  position: relative;
  width: 100%;
  padding: 1.7rem 2rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(36, 115, 224, 0.2);
          box-shadow: 0 0 1rem 0 rgba(36, 115, 224, 0.2);
  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;
}
@media screen and (max-width: 767px) {
  .flow__list {
    padding: 1.4rem 2rem;
  }
}

.flow__list:not(:first-child) {
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px) {
  .flow__list:not(:first-child) {
    margin-top: 3.6rem;
  }
}

.flow__list:not(:first-child)::before {
  position: absolute;
  content: "";
  top: -2.9rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2rem;
  height: 1.7rem;
  background-color: #0D4D8E;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 767px) {
  .flow__list:not(:first-child)::before {
    top: -2.3rem;
    width: 1.8rem;
    height: 1.5rem;
  }
}

.flow__num {
  position: absolute;
  top: 50%;
  left: 1.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.7rem;
  height: auto;
  background-color: #0f4895;
  aspect-ratio: 1;
  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;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .flow__num {
    width: 5.6rem;
    height: 2.5rem;
    aspect-ratio: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 0.3rem;
       -moz-column-gap: 0.3rem;
            column-gap: 0.3rem;
  }
}

.flow__num::after {
  counter-increment: listnum;
  content: counter(listnum);
  font-size: 1.9rem;
}

.flow__text {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.167;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------
job
--------------------------------------------------- */
.job {
  padding-top: 5.6rem;
  padding-bottom: 11rem;
  background-color: #f2f5f9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .job {
    padding-top: 4.5rem;
    padding-bottom: 5.1rem;
  }
}

.job__contents-wrapper {
  margin-top: 5.1rem;
}
@media screen and (max-width: 767px) {
  .job__contents-wrapper {
    position: relative;
    display: block;
    margin-top: 2.6rem;
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (max-width: 767px) {
  .job__contents-body {
    padding-bottom: 2.3rem;
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #0082D6 #d8dadb;
  }
}

@media screen and (max-width: 767px) {
  .job__contents-body::-webkit-scrollbar {
    width: 1.4rem;
  }
  .job__contents-body::-webkit-scrollbar-track {
    background-color: #d8dadb;
  }
  .job__contents-body::-webkit-scrollbar-thumb {
    background-color: #0082D6;
  }
}
.job__contents {
  margin-inline: auto;
  width: 90rem;
}
@media screen and (max-width: 767px) {
  .job__contents {
    max-width: none;
  }
}

.job__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .job__item {
    max-width: none;
  }
}

.job__item .job__head--title,
.job__item .job__title {
  width: 19.4%;
}

.job__item .job__head--text,
.job__item .job__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.job__item.--border {
  border-bottom: 1px solid #000;
}

.job__head--title {
  height: 4.3rem;
  background-color: #0185c1;
}

.job__head--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.job__text-head {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  height: 4.3rem;
  border-left: 1px solid #fff;
  background-color: #0185c1;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #fff;
}

.job__title {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 2.5rem;
  background-color: #EDEDED;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
}

.job__text-area.--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.job__text-area {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.job__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.041em;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.job__text p {
  font-size: 1.6rem;
}

.job__item:nth-child(7) .job__text {
  letter-spacing: 0;
}

.job__text:not(:first-child) {
  border-left: 1px solid #707070;
}

/* ------------------------------------------------
recruit-form
--------------------------------------------------- */
.recruit-form {
  padding-top: 4.7rem;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-form {
    padding-top: 5.7rem;
    padding-bottom: 7.6em;
  }
}

@media screen and (max-width: 767px) {
  .recruit-form__heading .section-main-heading {
    font-size: 3.8rem;
  }
}

.recruit-form__text {
  margin-top: 8.4rem;
}
@media screen and (max-width: 767px) {
  .recruit-form__text {
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
contact
--------------------------------------------------- */
.contact-form {
  padding-top: 6.2rem;
  padding-bottom: 8.2rem;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-top: 4rem;
    padding-bottom: 7.2rem;
  }
}

.contact-form .form {
  padding-inline: 10.4rem;
}
@media screen and (max-width: 767px) {
  .contact-form .form {
    padding-inline: initial;
  }
}

.contact-form__bottom {
  margin-top: 6rem;
  padding: 2.4rem 1rem 2.9rem;
  background-color: #0f4895;
}

.contact-form__bottom-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.contact-form__bottom-items {
  margin-top: 1.3rem;
  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-column-gap: 5.4rem;
     -moz-column-gap: 5.4rem;
          column-gap: 5.4rem;
}
@media screen and (max-width: 767px) {
  .contact-form__bottom-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-form__bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.contact-form__bottom-icon {
  width: 4.4rem;
  height: 4.4rem;
  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;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.contact-form__bottom-link {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
}

/* ------------------------------------------------
confirm
--------------------------------------------------- */
.confirm {
  padding-top: 6.2rem;
  padding-bottom: 10.3rem;
}
@media screen and (max-width: 767px) {
  .confirm {
    padding-top: 2.6rem;
    padding-bottom: 5.6rem;
  }
}

.confirm__head-text {
  font-size: 2.1rem;
  letter-spacing: 0.07em;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  .confirm__head-text {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.confirm-form {
  padding-inline: 10.4rem;
}
@media screen and (max-width: 767px) {
  .confirm-form {
    padding-inline: initial;
  }
}

/* ------------------------------------------------
thanks
--------------------------------------------------- */
.thanks {
  padding-top: 6.7rem;
  padding-bottom: 11.4rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 2.6rem;
    padding-bottom: 6.5rem;
  }
}

.thanks__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    letter-spacing: 0.07em;
  }
}

.thanks__button {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .thanks__button {
    margin-top: 3.6rem;
  }
}

/* ------------------------------------------------
privacy
--------------------------------------------------- */
.privacy {
  padding-top: 10rem;
  padding-bottom: 8.6rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding-top: 3rem;
    padding-bottom: 7.4rem;
  }
}

.privacy__content {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .privacy__content {
    margin-top: 2.8rem;
  }
}

.privacy__item:not(:first-child) {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .privacy__item:not(:first-child) {
    margin-top: 2.8rem;
  }
}

.privacy__head-text,
.privacy__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .privacy__head-text,
  .privacy__item-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.privacy__item-text.--contact {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .privacy__item-text.--contact {
    margin-top: 2.8rem;
  }
}

.privacy__item-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #0f4895;
}
@media screen and (max-width: 767px) {
  .privacy__item-title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/* ------------------------------------------------
error
--------------------------------------------------- */
.error {
  padding-top: 10rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .error {
    padding-top: 4rem;
  }
}

.error__text {
  text-align: center;
}

.error__button {
  margin-top: 8rem;
  margin-inline: auto;
  border-radius: 3.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .error__button {
    margin-top: 4rem;
  }
}

.error__button::before,
.error__button::after {
  border-radius: 3.4rem;
}

.error__button:hover {
  opacity: 1;
}

.error__button .c-button-text {
  font-size: 1.6rem;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */