html {
  scroll-behavior: smooth;
}

body, a {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  body, a {
    font-size: 16px;
  }
}

body.open {
  height: 100vh;
  overflow: hidden;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

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

main {
  margin: 95px auto 0;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 65px;
  }
}

.container {
  max-width: 1336px;
  margin-inline: auto;
}
@media screen and (max-width: 1520px) {
  .container {
    max-width: none;
    padding-inline: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    padding-inline: 4%;
  }
}

.p-block {
  padding-block: 160px;
}
@media screen and (max-width: 1520px) {
  .p-block {
    padding-block: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .p-block {
    padding-block: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-block {
    padding-block: 60px;
  }
}
.p-block--relationship {
  padding-bottom: 100px;
}
@media screen and (max-width: 1520px) {
  .p-block--relationship {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .p-block--relationship {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .p-block--relationship {
    padding-block: 45px;
  }
}
.p-block--facility {
  padding-block: 80px 0;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 1200px) {
  .p-block--facility {
    padding-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .p-block--facility {
    padding-top: 45px;
  }
}
.p-block--equipment {
  padding-top: 177px;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 1520px) {
  .p-block--equipment {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .p-block--equipment {
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-block--equipment {
    padding-top: 60px;
  }
}
.p-block--footer {
  padding-block: 140px;
}
@media screen and (max-width: 1520px) {
  .p-block--footer {
    padding-block: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .p-block--footer {
    padding-block: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-block--footer {
    padding-block: 60px;
  }
}

.common-btn {
  border-radius: 100px;
  border: 2px solid #0080D9;
  color: #0080D9;
  font-weight: 700;
  line-height: 180%;
  display: block;
  width: 300px;
  padding-block: 22px;
  padding-left: 40px;
  position: relative;
  transition-duration: 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 1520px) {
  .common-btn {
    padding-block: 18px;
  }
}
@media screen and (max-width: 1300px) {
  .common-btn {
    font-size: 16px;
    width: 260px;
  }
}
@media screen and (max-width: 599px) {
  .common-btn {
    font-size: 14px;
    padding-block: 12px;
    padding-left: 7%;
    width: 200px;
  }
}
.common-btn p {
  position: relative;
  z-index: 20;
}
.common-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 33px;
  background: url(../../assets/image/common/common-arrow.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 599px) {
  .common-btn::before {
    right: 9%;
  }
}
.common-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0080D9;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}
.common-btn:hover {
  opacity: 1;
  color: #fff;
}
.common-btn:hover::after {
  transform: scale(1, 1);
}
.common-btn--blue {
  border: 2px solid #0080D9;
  color: #FFF;
  background: #0080D9;
}
.common-btn--blue::before {
  background: url(../../assets/image/common/common-arrow-white.svg) no-repeat center center/contain;
}
.common-btn--blue::after {
  background: #fff;
  border: 2px solid #FFF;
}
.common-btn--blue:hover {
  color: #0080D9;
}
.common-btn--other-blue {
  border: 2px solid #FFF;
}

.grecaptcha-badge {
  display: none;
}

.grecaptcha-logo {
  display: none;
}

.header-wrapper {
  background: #FFF;
  box-shadow: 0 0 40px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block: 16px;
  padding-inline: 2%;
  margin: 0 auto;
}
@media screen and (max-width: 1520px) {
  .header {
    padding-left: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding-inline: 2% 1.5%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
    padding-inline: 2.5%;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.header__logo img {
  width: auto;
  height: 46px;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo img {
    height: 40px;
  }
}
.header__logo-texts {
  font-weight: 700;
}
.header__lists {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__lists {
    display: none;
  }
}
.header__lists a {
  margin-left: 59px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1520px) {
  .header__lists a {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .header__lists a {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header__lists a {
    margin-left: 15px;
  }
}
.header__lists .hover-wrap {
  display: inline-block;
}
.header__lists .hover-wrap__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #fff;
  border-top: 1px solid #D3D3D3;
  display: none;
  z-index: 999;
}
.header__lists .hover-wrap__btns {
  padding-inline: 12%;
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
  flex-wrap: wrap;
}
.header__lists .hover-wrap__btn {
  margin-left: 0;
  flex: 0 0 23%;
  padding-block: 30px;
  padding-inline: 2% 1.1%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1520px) {
  .header__lists .hover-wrap__btn {
    padding-block: 20px;
  }
}
.header__lists .hover-wrap__btn--first {
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 1620px) {
  .header__lists .hover-wrap__btn p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1300px) {
  .header__lists .hover-wrap__btn p {
    font-size: 12px;
  }
}
.header__lists .hover-wrap:hover .hover-wrap__dropdown {
  transition: 0.3s;
  display: block;
}
.header__lists .head-click {
  display: flex;
  -moz-column-gap: 2px;
       column-gap: 2px;
}
.header__lists .head-click .text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.header__lists .head-click .plus {
  color: #0080D9;
  font-size: 16px;
  font-weight: 900;
}
.header__lists .recruit-btn {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: center;
}
.header__lists .recruit-btn p {
  white-space: nowrap;
}
.header__lists .recruit-btn img {
  flex: 0 0 14px;
}
.header__lists .change {
  border-radius: 100px;
  background: #0080D9;
  padding: 14px 53px;
  color: #FFF;
  font-family: "Golos Text", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  border: 2px solid #0080D9;
}
@media screen and (max-width: 1520px) {
  .header__lists .change {
    margin-left: 75px;
    padding: 18px 52px;
  }
}
@media screen and (max-width: 1400px) {
  .header__lists .change {
    margin-left: 20px;
  }
}
.header__lists .change p {
  position: relative;
  z-index: 20;
}
.header__lists .change::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}
.header__lists .change:hover {
  opacity: 1;
  color: #0080D9;
}
.header__lists .change:hover::after {
  transform: scale(1, 1);
}
.header .toggle-button {
  display: none;
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  .header .toggle-button {
    display: block;
  }
}
.header .toggle-button__hamburger {
  position: relative;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 900px) {
  .header .toggle-button__hamburger {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .header .toggle-button__hamburger {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 599px) {
  .header .toggle-button__hamburger {
    width: 25px;
    height: 25px;
  }
}
.header .toggle-button__hamburger span {
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.3s;
}
.header .toggle-button__hamburger span:first-child {
  top: 20%;
}
.header .toggle-button__hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}
.header .toggle-button__hamburger span:last-child {
  bottom: 20%;
}
.header .toggle-button.open span {
  transition: 0.3s;
}
.header .toggle-button.open span:first-child {
  top: calc(50% - 1px);
  transform: rotateZ(45deg);
}
.header .toggle-button.open span:nth-child(2) {
  display: none;
}
.header .toggle-button.open span:last-child {
  top: calc(50% - 1px);
  transform: rotateZ(-45deg);
}

.header-menu {
  z-index: 20;
  position: fixed;
  left: -70%;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(190deg, #03A1EA 0.14%, #0080D9 99.67%);
  transition: 0.3s;
  padding-left: 5%;
  padding-top: 70px;
  overflow-y: scroll;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header-menu {
    padding-top: 50px;
  }
}
@media screen and (max-width: 450px) {
  .header-menu {
    padding-block: 35px;
    width: 85%;
    left: -85%;
  }
}
.header-menu.open {
  left: 0;
  transition: 0.3s;
}
.header-menu__link {
  margin-top: 35px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
}
@media screen and (max-width: 900px) {
  .header-menu__link {
    margin-top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .header-menu__link {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 375px) {
  .header-menu__link {
    font-size: 14px;
  }
}
.header-menu__link--first {
  margin-top: 0;
}
.header-menu__link--service {
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .header-menu__link--service {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .header-menu__link--service {
    margin-top: 15px;
  }
}
.header-menu__link--change {
  margin-top: 20px;
  border-bottom: 1px solid;
  width: -moz-fit-content;
  width: fit-content;
}
.header-menu .common-btn {
  margin-top: 35px;
}

.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.black-bg.open {
  opacity: 0.3;
  visibility: visible;
}

.footer {
  background: #F9F9F9;
}
.footer__title {
  margin-bottom: 80px;
  font-size: 3.3vw;
  font-weight: 900;
}
@media screen and (max-width: 900px) {
  .footer__title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 4vw;
  }
}
@media screen and (max-width: 599px) {
  .footer__title {
    margin-bottom: 30px;
    font-size: 6vw;
  }
}
.footer__top {
  padding-left: 1.7%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .footer__top {
    padding-left: 0;
    flex-direction: column;
    row-gap: 30px;
    align-items: center;
  }
}
.footer__left {
  flex: 0 0 29%;
}
@media screen and (max-width: 1300px) {
  .footer__left {
    flex: 0 0 360px;
  }
}
@media screen and (max-width: 900px) {
  .footer__left {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__left {
    max-width: 360px;
    margin-inline: auto;
  }
  .footer__left img {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .footer__left {
    margin-left: 0;
    width: 100%;
  }
}
.footer__logo {
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__logo p {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .footer__logo p {
    font-size: 22px;
  }
}
.footer__logo-img {
  flex: 0 0 27%;
}
@media screen and (max-width: 1440px) {
  .footer__logo-img {
    flex: 0 0 23%;
  }
}
@media screen and (max-width: 900px) {
  .footer__logo-img {
    flex: 0 0 15%;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo-img {
    flex: 0 0 20%;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo-img {
    flex: 0 0 70px;
  }
}
.footer__logo-img img {
  width: auto;
}
.footer__ml {
  margin-left: 32px;
}
@media screen and (max-width: 900px) {
  .footer__ml {
    margin-left: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.footer__address--mb {
  margin-bottom: 8px;
}
.footer__number {
  margin-block: 17px 24px;
  display: block;
}
@media screen and (max-width: 900px) {
  .footer__number {
    margin-bottom: 0;
    margin-top: 13px;
  }
}
@media screen and (max-width: 599px) {
  .footer__number {
    margin-top: 12px;
  }
}
@media screen and (max-width: 1300px) {
  .footer__right {
    flex: 0 0 470px;
  }
}
@media screen and (max-width: 900px) {
  .footer__right {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}
.footer__right .common-btn {
  margin-top: 80px;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .footer__right .common-btn {
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .footer__right .common-btn {
    margin-top: 50px;
  }
}
.footer__blocks {
  display: flex;
  -moz-column-gap: 88px;
       column-gap: 88px;
}
@media screen and (max-width: 768px) {
  .footer__blocks {
    justify-content: center;
    -moz-column-gap: 10%;
         column-gap: 10%;
  }
}
.footer__link {
  margin-bottom: 24px;
  display: block;
  font-weight: 700;
}
.footer__link--none {
  margin-bottom: 0;
}
.footer__copyright {
  background: #323232;
  padding-block: 34px 15px;
}
@media screen and (max-width: 1520px) {
  .footer__copyright {
    padding-block: 28px 12px;
  }
}
@media screen and (max-width: 900px) {
  .footer__copyright {
    padding-block: 23px 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding-block: 20px 15px;
  }
}
.footer__copyright-flex {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (max-width: 1520px) {
  .footer__copyright-flex {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer__copyright-flex {
    margin-bottom: 20px;
    flex-direction: column;
    row-gap: 5px;
    align-items: center;
  }
}
.footer__copyright-flex a {
  color: #FFF;
  font-size: 16px;
  line-height: 187.5%;
}
@media screen and (max-width: 599px) {
  .footer__copyright-flex a {
    font-size: 14px;
  }
}
.footer__copyright-text {
  text-align: center;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .footer__copyright-text {
    font-size: 10px;
  }
}

.fv {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 11%;
  position: relative;
}
@media screen and (max-width: 599px) {
  .fv {
    height: calc(100svh - 65px);
  }
}
.fv__title {
  position: absolute;
  left: 11%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #86CDFF;
  mix-blend-mode: plus-lighter;
  font-size: 4.6vw;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 6vw;
  }
}
@media screen and (max-width: 599px) {
  .fv__title {
    font-size: 8vw;
  }
}
.fv__title.is-fixed {
  position: fixed;
  transform: none;
  left: 11%;
  z-index: 2;
}
.fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  .fv__img .pc {
    display: none;
  }
}
.fv__img .sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .fv__img .sp {
    display: block;
  }
}

.fv-under {
  border-radius: 0 0 0 200px;
  background: linear-gradient(73deg, #0080D9 3.73%, #03A1EA 100%);
  padding-block: 410px 160px;
}
@media screen and (max-width: 1520px) {
  .fv-under {
    padding-block: 360px 130px;
  }
}
@media screen and (max-width: 1300px) {
  .fv-under {
    padding-block: 300px 110px;
  }
}
@media screen and (max-width: 950px) {
  .fv-under {
    padding-block: 200px 90px;
  }
}
@media screen and (max-width: 599px) {
  .fv-under {
    border-radius: 0 0 0 120px;
    padding-block: 120px 80px;
  }
}
.fv-under__content {
  margin-top: 80px;
  padding-inline: 11% 13%;
  display: flex;
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media screen and (max-width: 1200px) {
  .fv-under__content {
    padding-right: 7%;
  }
}
@media screen and (max-width: 1024px) {
  .fv-under__content {
    margin-top: 60px;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .fv-under__content {
    row-gap: 25px;
  }
}
.fv-under__string {
  flex: 0 0 40%;
}
.fv-under__text {
  margin-bottom: 40px;
  color: #FFF;
  line-height: 180%;
}
@media screen and (max-width: 1024px) {
  .fv-under__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .fv-under__text {
    margin-bottom: 25px;
  }
}
.fv-under__video {
  flex: 0 0 54%;
}
.fv-under__video iframe {
  width: 100%;
  aspect-ratio: 1.777/1;
}

.top-title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 4.2vw;
  font-weight: 700;
}
.top-title-en--center {
  text-align: center;
}
.top-title-en--small {
  font-size: 3.15vw;
}
@media screen and (max-width: 1200px) {
  .top-title-en {
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .top-title-en {
    font-size: 7vw;
  }
}

.top-title-ja {
  color: #0080D9;
  font-size: 1.45vw;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.top-title-ja--center {
  text-align: center;
}
.top-title-ja--small {
  font-size: 1.25vw;
}
.top-title-ja--white {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .top-title-ja {
    font-size: 2vw;
  }
}
@media screen and (max-width: 599px) {
  .top-title-ja {
    font-size: 4vw;
  }
}

.top-advantage {
  background: #FAFAFA;
}
.top-advantage__text {
  margin-block: 48px 80px;
  line-height: 180%;
}
@media screen and (max-width: 900px) {
  .top-advantage__text {
    margin-block: 30px 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-advantage__text {
    margin-block: 25px 40px;
    line-height: 160%;
  }
}
@media screen and (max-width: 599px) {
  .top-advantage__text {
    margin-bottom: 30px;
  }
}
.top-advantage__text--white {
  color: #fff;
}
.top-advantage__flex {
  margin-top: 40px;
  display: flex;
  -moz-column-gap: 6%;
       column-gap: 6%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-advantage__flex {
    align-items: start;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-advantage__flex {
    row-gap: 14px;
  }
}
.top-advantage__flex--start {
  margin-top: 0;
}
.top-advantage__img {
  flex: 0 0 45%;
}
@media screen and (max-width: 1024px) {
  .top-advantage__img {
    flex: 0 0 42%;
  }
}
.top-advantage__string {
  flex: 0 0 47.5%;
}
@media screen and (max-width: 1024px) {
  .top-advantage__string {
    flex: 0 0 50.5%;
  }
}
.top-advantage__heading {
  color: #D90062;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .top-advantage__heading {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-advantage__heading {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .top-advantage__heading {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 599px) {
  .top-advantage__heading {
    font-size: 4vw;
  }
}
.top-advantage__heading--yellow {
  color: #D98D00;
}
.top-advantage__heading--blue {
  color: #0080D9;
}
.top-advantage__big {
  margin-block: 8px 40px;
  padding-inline: 34px;
  background: linear-gradient(90deg, #D90062 0%, rgba(217, 0, 98, 0) 100%);
  color: #FFF;
  font-size: 3.75vw;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .top-advantage__big {
    font-size: 3.75vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-advantage__big {
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 768px) {
  .top-advantage__big {
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .top-advantage__big {
    margin-bottom: 13px;
    font-size: 7vw;
  }
}
.top-advantage__big--yellow {
  background: linear-gradient(90deg, #D98D00 0%, rgba(217, 141, 0, 0) 100%);
}
.top-advantage__big--blue {
  background: linear-gradient(90deg, #0080D9 0%, rgba(0, 128, 217, 0) 100%);
}
.top-advantage__texts {
  list-style: auto;
  padding-left: 2em;
}

.top-service {
  background: url(../../assets/image/top/service-bg.webp) no-repeat center bottom/cover;
}
.top-service__flex {
  margin-top: 64px;
  display: flex;
  -moz-column-gap: 6%;
       column-gap: 6%;
  align-items: center;
}
.top-service__flex--start {
  margin-top: 0;
}
.top-service__flex--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .top-service__flex {
    margin-top: 50px;
    align-items: start;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__flex {
    margin-top: 40px;
    row-gap: 14px;
  }
}
.top-service__img {
  flex: 0 0 45%;
}
.top-service__string {
  flex: 0 0 47.5%;
}
.top-service__heading {
  font-size: 1.8vw;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .top-service__heading {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__heading {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 900px) {
  .top-service__heading {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .top-service__heading {
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .top-service__heading {
    font-size: 5.5vw;
  }
}
.top-service__text {
  margin-block: 22px 48px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .top-service__text {
    margin-block: 20px 40px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__text {
    margin-block: 15px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__text {
    margin-block: 8px 19px;
  }
}

.top-relationship {
  background: linear-gradient(0deg, rgba(0, 128, 217, 0.04) 0%, rgba(0, 128, 217, 0.04) 100%), #FFF;
}
.top-relationship .top-advantage__text {
  margin-bottom: 0;
}

.top-facility {
  background: rgba(0, 128, 217, 0.08);
  padding-bottom: 150px;
}
@media screen and (max-width: 1520px) {
  .top-facility {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .top-facility {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility {
    padding-bottom: 60px;
  }
}
.top-facility__sliders {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .top-facility__sliders {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-facility__sliders--pc {
    display: none;
  }
}
.top-facility__sliders--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-facility__sliders--sp {
    display: block;
  }
}
.top-facility__sliders .slick-track {
  display: flex;
  align-items: center;
}
.top-facility__slider {
  margin-inline: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1520px) {
  .top-facility__slider {
    margin-inline: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-facility__slider {
    margin-inline: 10px;
  }
}

.top-equipment {
  padding-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 1520px) {
  .top-equipment {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .top-equipment {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-equipment {
    padding-bottom: 60px;
  }
}
.top-equipment__logo {
  position: absolute;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
  width: 12.5%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1300px) {
  .top-equipment__logo {
    top: -14%;
  }
}
@media screen and (max-width: 1024px) {
  .top-equipment__logo {
    top: -11%;
  }
}
@media screen and (max-width: 768px) {
  .top-equipment__logo {
    width: 16%;
    top: -12%;
  }
}
@media screen and (max-width: 599px) {
  .top-equipment__logo {
    top: -10%;
  }
}
@media screen and (max-width: 450px) {
  .top-equipment__logo {
    width: 20%;
    top: -9%;
  }
}
.top-equipment__sliders {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .top-equipment__sliders {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-equipment__sliders--pc {
    display: none;
  }
}
.top-equipment__sliders--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-equipment__sliders--sp {
    display: block;
  }
}
.top-equipment__sliders .slick-track {
  display: flex;
  align-items: center;
}
.top-equipment__slider {
  margin-inline: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .top-equipment__slider {
    margin-inline: 15px;
  }
}

.facility-content {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.facility-content__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 10;
}
.facility-content__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #FFF;
  width: 60%;
  padding-block: 64px;
  padding-inline: 3.5%;
  display: none;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  animation: fadeIn 0.3s ease;
  z-index: 20;
}
@media screen and (max-width: 1520px) {
  .facility-content__card {
    width: 65%;
    padding-block: 35px;
  }
}
@media screen and (max-width: 768px) {
  .facility-content__card {
    width: 90%;
    padding-block: 45px;
  }
}
@media screen and (max-width: 599px) {
  .facility-content__card {
    padding-block: 25px;
  }
}
.facility-content__card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: url("../../assets/image/top/close.svg") no-repeat center/contain;
  z-index: 21;
  cursor: pointer;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .facility-content__card::after {
    width: 30px;
    height: 30px;
  }
}
.facility-content.is-active {
  pointer-events: auto;
}
.facility-content.is-active .facility-content__overlay {
  opacity: 1;
}
.facility-content.is-active .facility-content__card.is-active {
  display: block;
  opacity: 1;
}
.facility-content__title {
  color: #0080D9;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .facility-content__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .facility-content__title {
    font-size: 21px;
  }
}
.facility-content__img {
  margin-block: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1520px) {
  .facility-content__img {
    margin-block: 25px;
  }
}
@media screen and (max-width: 599px) {
  .facility-content__img {
    margin-block: 15px;
  }
}
.facility-content__img img {
  width: 66%;
  margin-inline: auto;
}
@media screen and (max-width: 1520px) {
  .facility-content__img img {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  .facility-content__img img {
    width: 45%;
  }
}
.facility-content__text {
  margin-bottom: 24px;
  padding-top: 28px;
  border-top: 1px solid #D3D3D3;
}
@media screen and (max-width: 599px) {
  .facility-content__text {
    margin-bottom: 20px;
    padding-top: 20px;
    font-size: 13px;
  }
}
.facility-content__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 1520px) {
  .facility-content__btns {
    gap: 12px;
  }
}
@media screen and (max-width: 599px) {
  .facility-content__btns {
    gap: 10px;
  }
}
.facility-content__btn {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  padding: 7px 24px;
  border-radius: 100px;
  border: 2px solid #0080D9;
}
@media screen and (max-width: 1520px) {
  .facility-content__btn {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 599px) {
  .facility-content__btn {
    padding: 2px 13px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.facility-content__btn p {
  color: #0080D9;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
@media screen and (max-width: 599px) {
  .facility-content__btn p {
    font-size: 12px;
  }
}
.facility-content__btn div img {
  width: -moz-fit-content;
  width: fit-content;
}

.top-promise {
  border-radius: 0 300px 10px 0;
  background: linear-gradient(244deg, #03A1EA 5.84%, #0080D9 100%);
  width: 96%;
}
@media screen and (max-width: 950px) {
  .top-promise {
    border-radius: 0 200px 10px 0;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-promise {
    border-radius: 0 120px 10px 0;
  }
}
.top-promise__content {
  display: flex;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
@media screen and (max-width: 950px) {
  .top-promise__content {
    row-gap: 40px;
    flex-wrap: wrap;
  }
}
.top-promise__column {
  flex: 0 0 47.5%;
}
@media screen and (max-width: 950px) {
  .top-promise__column {
    flex: 0 0 47.5%;
  }
}
@media screen and (max-width: 599px) {
  .top-promise__column {
    flex: 0 0 100%;
  }
}
.top-promise__heading {
  margin-block: 40px 12px;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .top-promise__heading {
    margin-block: 28px 10px;
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .top-promise__heading {
    margin-block: 20px 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .top-promise__heading {
    margin-block: 14px 8px;
    font-size: 22px;
  }
}
.top-promise__text {
  margin-bottom: 40px;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 900px) {
  .top-promise__text {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-promise__text {
    margin-bottom: 25px;
  }
}
.top-promise .common-btn {
  margin-inline: auto;
  background: transparent;
}

.top-news__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  .top-news__content {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__content {
    row-gap: 14px;
  }
}
.top-news__left {
  flex: 0 0 22%;
}
.top-news__left .common-btn {
  margin-top: 80px;
}
@media screen and (max-width: 1200px) {
  .top-news__left .common-btn {
    margin-top: 60px;
  }
}
@media screen and (max-width: 950px) {
  .top-news__left .common-btn {
    margin-top: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__left .common-btn {
    margin-top: 20px;
  }
}
.top-news__right {
  flex: 0 0 68.5%;
}
.top-news__link {
  padding: 45px 9% 46px 5%;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1520px) {
  .top-news__link {
    padding-block: 37px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__link {
    padding-block: 23px;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
.top-news__link::after {
  background: #0080D9;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.top-news__link:hover {
  opacity: 1;
}
.top-news__link:hover p {
  color: #fff !important;
  transition: 0.2s;
}
.top-news__link:hover::after {
  transform: scale(1, 1);
}
.top-news__date {
  margin-bottom: 16px;
  color: #BCBCBC;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .top-news__date {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__date {
    margin-bottom: 8px;
  }
}
.top-news__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .top-news__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .top-news__title {
    font-size: 18px;
  }
}
.top-news__img {
  background: #FFF;
  border-radius: 100px;
}
@media screen and (max-width: 950px) {
  .top-news__img {
    flex: 0 0 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__img {
    flex: 0 0 35px;
  }
}

.top-banner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-banner {
    flex-direction: column;
  }
}
.top-banner__link {
  background: url(../../assets/image/top/top-banner1.webp) no-repeat center center/cover;
  flex: 0 0 50%;
  aspect-ratio: 1.685;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-banner__link {
    width: 100%;
    margin-inline: auto;
  }
}
.top-banner__link--other {
  background: url(../../assets/image/top/top-banner2.webp) no-repeat center center/cover;
}
.top-banner__text {
  position: absolute;
  top: 10%;
  left: 8%;
}
.top-banner__text p {
  color: #FFF;
}
.top-banner__en {
  font-family: "Montserrat", sans-serif;
  font-size: 4.2vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-banner__en {
    font-size: 6vw;
  }
}
@media screen and (max-width: 599px) {
  .top-banner__en {
    font-size: 9vw;
  }
}
.top-banner__ja {
  font-size: 1.25vw;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .top-banner__ja {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .top-banner__ja {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 599px) {
  .top-banner__ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .top-banner__ja {
    font-size: 16px;
  }
}

.policy__title {
  color: #0080D9;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 1px solid #D3D3D3;
}
.policy__title--start {
  margin-top: 80px;
}
@media screen and (max-width: 599px) {
  .policy__title--start {
    margin-top: 55px;
  }
}
@media screen and (max-width: 599px) {
  .policy__title {
    font-size: 20px;
    padding-bottom: 13px;
  }
}
.policy__text {
  margin-block: 20px 54px;
  line-height: 177.778%;
}
@media screen and (max-width: 768px) {
  .policy__text {
    margin-block: 15px 40px;
  }
}
@media screen and (max-width: 599px) {
  .policy__text {
    margin-block: 13px 30px;
  }
}
.policy__text--last {
  margin-bottom: 0;
}
.policy__text--mt {
  margin-top: 12px;
}
.policy__text--privacy {
  margin-block: 80px;
}
@media screen and (max-width: 768px) {
  .policy__text--privacy {
    margin-block: 65px;
  }
}
@media screen and (max-width: 599px) {
  .policy__text--privacy {
    margin-block: 50px;
  }
}
.policy__text--contact {
  margin-block: 48px 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .policy__text--contact {
    margin-block: 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .policy__text--contact {
    margin-bottom: 50px;
  }
}
.policy__supplement {
  text-align: right;
  font-size: 16px;
  line-height: 200%;
}
@media screen and (max-width: 599px) {
  .policy__supplement {
    font-size: 14px;
  }
}

.news__content {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .news__content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .news__content {
    margin-top: 30px;
  }
}
.news__content--single {
  margin-top: 110px;
}
@media screen and (max-width: 1024px) {
  .news__content--single {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .news__content--single {
    margin-top: 65px;
  }
}
@media screen and (max-width: 599px) {
  .news__content--single {
    margin-top: 45px;
  }
}
.news .pagination {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .news .pagination {
    margin-top: 65px;
  }
}
@media screen and (max-width: 599px) {
  .news .pagination {
    margin-top: 50px;
  }
}
.news .pagination .screen-reader-text {
  display: none;
}
.news .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3%;
       column-gap: 3%;
}
@media screen and (max-width: 599px) {
  .news .pagination .nav-links {
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
.news .pagination .page-numbers {
  color: #BCBCBC;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .news .pagination .page-numbers {
    font-size: 20px;
  }
}
.news .pagination .current {
  color: #0080D9;
}
.news .pagination .next img, .news .pagination .prev img {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 599px) {
  .news .pagination .next img, .news .pagination .prev img {
    width: 24px;
  }
}
.news__single-top {
  padding-inline: 4%;
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 768px) {
  .news__single-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .news__single-top {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.news__single-title {
  color: #0080D9;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .news__single-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .news__single-title {
    font-size: 20px;
  }
}
.news__single-text {
  margin-bottom: 80px;
  padding-inline: 4%;
}
@media screen and (max-width: 599px) {
  .news__single-text {
    margin-bottom: 50px;
  }
}
.news .common-btn {
  margin-inline: auto;
}

.contact__blue-content {
  border-radius: 0 300px 10px 0;
  background: linear-gradient(244deg, rgba(0, 128, 217, 0.04) 5.84%, rgba(0, 128, 217, 0.08) 100%);
  width: 86.5%;
  padding-block: 100px;
  padding-inline: 16% 21.5%;
}
@media screen and (max-width: 1620px) {
  .contact__blue-content {
    padding-inline: 13% 18.5%;
  }
}
@media screen and (max-width: 1440px) {
  .contact__blue-content {
    width: 93%;
    padding-inline: 10% 15.5%;
  }
}
@media screen and (max-width: 1200px) {
  .contact__blue-content {
    padding-block: 80px;
    width: 100%;
    padding-inline: 4%;
    border-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  .contact__blue-content {
    padding-block: 60px;
  }
}
.contact__blue-title {
  margin-top: 80px;
  padding-left: 6%;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}
.contact__blue-title br {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact__blue-title {
    margin-top: 65px;
    text-align: center;
    font-size: 21px;
    padding-left: 0;
  }
  .contact__blue-title .tab-br {
    display: block;
  }
  .contact__blue-title .tab-span {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .contact__blue-title {
    margin-top: 45px;
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .contact__blue-title .sp-br {
    display: block;
  }
  .contact__blue-title .sp-span {
    display: none;
  }
}
.contact__blue-title--first {
  margin-top: 0;
}
.contact__blue-flex {
  padding-block: 50px;
  padding-inline: 6%;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact__blue-flex {
    padding-block: 40px;
    flex-direction: column;
    row-gap: 15px;
    justify-content: start;
  }
}
@media screen and (max-width: 599px) {
  .contact__blue-flex {
    padding-block: 30px;
  }
}
.contact__blue-heading {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .contact__blue-heading {
    text-align: center;
  }
}
.contact__blue-tels {
  display: flex;
  -moz-column-gap: 7px;
       column-gap: 7px;
  align-items: center;
}
.contact__blue-img {
  flex: 0 0 17%;
}
@media screen and (max-width: 599px) {
  .contact__blue-img {
    flex: 0 0 14%;
  }
}
.contact__blue-number {
  white-space: nowrap;
  color: #0080D9;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .contact__blue-number {
    font-size: 24px;
  }
}
.contact__tels-supplement {
  color: #0080D9;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.entry__content {
  background: #FFF;
  padding-block: 120px;
}
@media screen and (max-width: 1520px) {
  .entry__content {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .entry__content {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .entry__content {
    padding-block: 60px;
  }
}
.entry__container {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .entry__container {
    max-width: none;
    padding-inline: 4%;
  }
}
.entry__title {
  text-align: center;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 599px) {
  .entry__title {
    font-size: 6vw;
  }
}
.entry__title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 120px;
  height: 4px;
  background: #0080D9;
}
.entry__form {
  margin-top: 88px;
}
@media screen and (max-width: 950px) {
  .entry__form {
    margin-top: 65px;
  }
}
@media screen and (max-width: 660px) {
  .entry__form {
    margin-top: 50px;
  }
}
.entry__left {
  flex: 0 0 27%;
  display: flex;
  align-items: start;
}
@media screen and (max-width: 1200px) {
  .entry__left {
    flex: 0 0 242px;
  }
}
@media screen and (max-width: 950px) {
  .entry__left {
    padding-left: 0;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .entry__left {
    font-size: 14px;
  }
}
.entry__left p {
  font-weight: 900;
  letter-spacing: 0.08em;
}
.entry__left .attention {
  margin-left: 14px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 4px;
  border: 1px solid #0080D9;
  color: #0080D9;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.entry__right {
  flex: 0 0 67%;
}
@media screen and (max-width: 1200px) {
  .entry__right {
    flex-grow: 1;
  }
}
@media screen and (max-width: 950px) {
  .entry__right {
    width: 100%;
  }
}
.entry__right p {
  width: 100%;
}
.entry__right br {
  display: none;
}
.entry__right .reserve-br {
  display: block;
}
.entry__right .reserve {
  margin-top: 4px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #F5B52D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  font-weight: 700;
  position: relative;
}
.entry__right .reserve::before {
  content: "";
  width: 100%;
  height: 0.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #F5B52D;
}
.entry__right .wpcf7-form-control-wrap {
  width: 100%;
}
.entry__right input[type=text],
.entry__right input[type=tel],
.entry__right input[type=email] {
  background: rgba(0, 128, 217, 0.08);
  width: 100%;
  height: 60px;
  padding-inline: 21px;
}
@media screen and (max-width: 768px) {
  .entry__right input[type=text],
  .entry__right input[type=tel],
  .entry__right input[type=email] {
    padding-inline: 3%;
  }
}
.entry__right input[type=text]::-moz-placeholder, .entry__right input[type=tel]::-moz-placeholder, .entry__right input[type=email]::-moz-placeholder {
  color: rgba(21, 72, 148, 0.3);
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.entry__right input[type=text]::placeholder,
.entry__right input[type=tel]::placeholder,
.entry__right input[type=email]::placeholder {
  color: rgba(21, 72, 148, 0.3);
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 660px) {
  .entry__right input[type=text]::-moz-placeholder, .entry__right input[type=tel]::-moz-placeholder, .entry__right input[type=email]::-moz-placeholder {
    font-size: 14px;
  }
  .entry__right input[type=text]::placeholder,
  .entry__right input[type=tel]::placeholder,
  .entry__right input[type=email]::placeholder {
    font-size: 14px;
  }
}
.entry__right textarea {
  background: rgba(0, 128, 217, 0.08);
  width: 100%;
  height: auto;
  aspect-ratio: 2.23/1;
  resize: vertical;
  padding-inline: 21px;
  padding-block: 10px;
}
@media screen and (max-width: 1520px) {
  .entry__right textarea {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .entry__right textarea {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 599px) {
  .entry__right textarea {
    aspect-ratio: 2.5/1;
  }
}
.entry__right textarea::-moz-placeholder {
  color: rgba(21, 72, 148, 0.3);
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.entry__right textarea::placeholder {
  color: rgba(21, 72, 148, 0.3);
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 660px) {
  .entry__right textarea::-moz-placeholder {
    font-size: 14px;
  }
  .entry__right textarea::placeholder {
    font-size: 14px;
  }
}
.entry__right--half p {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media screen and (max-width: 660px) {
  .entry__right--half p {
    flex-direction: column;
    row-gap: 15px;
  }
}
.entry__right--half p span {
  flex: 0 0 48%;
  width: 100%;
}
.entry__column {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media screen and (max-width: 950px) {
  .entry__column {
    flex-direction: column;
    row-gap: 10px;
    align-items: normal;
  }
}
@media screen and (max-width: 660px) {
  .entry__column {
    margin-bottom: 30px;
  }
}
.entry__column--textarea {
  margin-block: 40px;
  align-items: start;
}
@media screen and (max-width: 660px) {
  .entry__column--textarea {
    margin-block: 35px;
  }
}
.entry__column--check {
  margin-bottom: 60px;
}
@media screen and (max-width: 660px) {
  .entry__column--check {
    margin-bottom: 45px;
  }
}
.entry__column--check .wpcf7-form-control-wrap {
  flex: 0 0 100%;
}
.entry__column--check .wpcf7-list-item {
  margin: 0;
}
.entry__column--check .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .entry__column--check .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.entry__column--check .wpcf7-list-item .wpcf7-list-item-label a {
  color: #154894;
  letter-spacing: inherit;
  text-decoration: underline;
  font-weight: inherit;
}
.entry__column--submit {
  margin-bottom: 0;
}
.entry__column--submit p {
  margin-inline: auto;
}
.entry__column--submit input {
  border-radius: 100px;
  background: #0080D9;
  padding-block: 24px;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  width: 300px;
  transition: 0.3s;
}
@media screen and (max-width: 660px) {
  .entry__column--submit input {
    font-size: 16px;
    width: 250px;
    padding-block: 16px;
  }
}
@media screen and (max-width: 599px) {
  .entry__column--submit input {
    width: 230px;
    padding-block: 15px 17px;
  }
}
.entry__column--submit input:not(:disabled):hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}
.entry__column--submit .wpcf7-spinner {
  display: none;
}
.entry__column--radio {
  align-items: start;
}
.entry__column--radio .wpcf7-radio {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.entry__column--radio .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.entry__column--radio .wpcf7-radio .wpcf7-list-item input {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .entry__column--radio .wpcf7-radio .wpcf7-list-item input {
    height: 18px;
    width: 18px;
  }
}
.entry__column--radio .wpcf7-radio label {
  padding-left: 0 !important;
  font-weight: 900;
}
.entry__column--file {
  align-items: start;
}
.entry__column--file .note {
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.entry__column--file .note .note-br {
  display: block;
}
.entry__column--file .note span {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.entry__column--file .wpcf7-form-control-wrap:nth-child(1) {
  display: block;
  margin-bottom: 12px;
}
.entry__policy {
  border-radius: 20px;
  border: 1px solid #CCC;
  background: #FFF;
  padding: 1px 16px 20px 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/1;
  overflow-y: scroll;
}
@media screen and (max-width: 599px) {
  .entry__policy {
    aspect-ratio: 2/1;
    font-size: 14px;
  }
}
.entry__policy span {
  margin-block: 20px;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 116.667%;
}
@media screen and (max-width: 768px) {
  .entry__policy span {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .entry__policy span {
    font-size: 16px;
    margin-bottom: 13px;
  }
}
.entry__policy .big {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .entry__policy .big {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .entry__policy .big {
    font-size: 18px;
    margin-bottom: 13px;
  }
}

.about--blue {
  background: rgba(0, 100, 217, 0.04);
  padding-top: 140px;
}
@media screen and (max-width: 1520px) {
  .about--blue {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .about--blue {
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .about--blue {
    padding-top: 60px;
  }
}
.about__flex {
  margin-block: 80px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media screen and (max-width: 1300px) {
  .about__flex {
    margin-block: 55px;
  }
}
@media screen and (max-width: 599px) {
  .about__flex {
    flex-direction: column;
    row-gap: 10px;
    margin-block: 25px 35px;
  }
}
.about__logo {
  flex: 0 0 32%;
}
@media screen and (max-width: 599px) {
  .about__logo {
    width: 60%;
    margin-inline: auto;
  }
}
.about__top-text {
  flex: 0 0 58%;
  font-size: 24px;
  line-height: 200%;
}
@media screen and (max-width: 950px) {
  .about__top-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about__top-text {
    line-height: 160%;
  }
}
@media screen and (max-width: 599px) {
  .about__top-text {
    font-size: 16px;
  }
}
.about__heading {
  margin-bottom: 42px;
  padding-block: 140px 42px;
  border-bottom: 1px solid #D3D3D3;
  padding-left: 1.1%;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .about__heading {
    font-size: 32px;
    margin-bottom: 30px;
    padding-block: 100px 30px;
  }
}
@media screen and (max-width: 768px) {
  .about__heading {
    font-size: 28px;
    margin-bottom: 20px;
    padding-block: 80px 20px;
  }
}
@media screen and (max-width: 599px) {
  .about__heading {
    font-size: 24px;
    margin-bottom: 10px;
    padding-block: 60px 10px;
  }
}
@media screen and (max-width: 450px) {
  .about__heading {
    font-size: 22px;
  }
}
.about__heading--first {
  padding-top: 0;
  margin-top: 80px;
}
@media screen and (max-width: 1300px) {
  .about__heading--first {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .about__heading--first {
    margin-top: 45px;
  }
}
@media screen and (max-width: 599px) {
  .about__heading--first {
    margin-top: 35px;
  }
}
.about__text {
  margin-bottom: 42px;
  padding-left: 1.1%;
  letter-spacing: 0.04em;
}
.about__beside {
  display: flex;
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media screen and (max-width: 768px) {
  .about__beside {
    flex-direction: column;
    row-gap: 25px;
  }
}
.about__beside--center {
  -moz-column-gap: 0;
       column-gap: 0;
  align-items: stretch;
}
@media screen and (max-width: 950px) {
  .about__beside--center {
    flex-direction: column;
    row-gap: 0;
  }
}
.about__half {
  flex: 0 0 47%;
}
.about__half-img--center {
  height: 100%;
}
.about__half-img--center img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__half-text {
  margin-top: 24px;
  padding-inline: 6%;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .about__half-text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .about__half-text {
    margin-top: 10px;
    padding-inline: 0;
  }
}
.about__attempt {
  margin-top: 56px;
  border-radius: 10px;
  border: 1px solid #0080D9;
  background: #FFF;
  padding: 64px 5%;
}
@media screen and (max-width: 768px) {
  .about__attempt {
    margin-top: 45px;
    padding-block: 40px;
  }
}
@media screen and (max-width: 599px) {
  .about__attempt {
    padding-block: 25px;
  }
}
.about__attempt-title {
  margin-bottom: 28px;
  color: #0080D9;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .about__attempt-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .about__attempt-title {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.about__attempt-lists {
  list-style-position: outside;
  padding-left: 2em;
  margin-left: 0;
}
.about__attempt-lists li {
  list-style-type: decimal;
  font-size: 20px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .about__attempt-lists li {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .about__attempt-lists li {
    font-size: 16px;
  }
}
.about__policy {
  flex: 0 0 48.5%;
  background: #FFF;
  padding: 27px 3%;
}
.about__policy-title {
  color: #0080D9;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .about__policy-title {
    font-size: 24px;
  }
}
.about__policy-text {
  margin-block: 18px 36px;
  letter-spacing: 0.04em;
}
.about__policy-heading {
  padding: 16px 5% 20px;
  border-radius: 10px;
  background: #0080D9;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .about__policy-heading {
    font-size: 18px;
  }
}
.about__policy-img {
  margin-block: 12px;
  width: 66%;
  margin-inline: auto;
}
@media screen and (max-width: 599px) {
  .about__policy-img {
    width: 90%;
  }
}
.about__policy-flex {
  display: flex;
  justify-content: space-between;
}
.about__policy-box {
  flex: 0 0 30%;
  padding-block: 11px;
  border-radius: 10px;
  border: 2px solid #0080D9;
  color: #0080D9;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 450px) {
  .about__policy-box {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .about__policy-box {
    font-size: 13px;
  }
}
.about__wrapper {
  overflow-x: scroll;
}
@media screen and (max-width: 1024px) {
  .about__wrapper {
    padding-bottom: 20px;
  }
}
.about__manner {
  background: #FFF;
  padding-block: 64px 110px;
  padding-inline: 5%;
}
@media screen and (max-width: 1024px) {
  .about__manner {
    padding-block: 50px 96px;
    min-width: 950px;
    padding-left: 8%;
  }
}
.about__manner-title {
  margin-bottom: 100px;
  text-align: center;
  font-size: 28px;
  color: #0064d9;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .about__manner-title {
    margin-bottom: 65px;
    text-align: left;
    font-size: 24px;
  }
}
.about__manner-flow {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.about__manner-step {
  flex: 0 0 calc(50% - 40px);
  position: relative;
  background: #fff;
  border: 2px solid #0080D9;
  border-radius: 10px;
  padding-block: 32px;
  padding-inline: 2.8%;
  aspect-ratio: 3.42/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .about__manner-step {
    padding-block: 25px;
    padding-inline: 2%;
  }
}
.about__manner-num {
  position: absolute;
  left: -5px;
  top: -12px;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .about__manner-num {
    font-size: 34px;
  }
}
@media screen and (max-width: 599px) {
  .about__manner-num {
    font-size: 26px;
  }
}
.about__manner-num::before {
  content: "";
  display: block;
  border-radius: 100px;
  background: #0080D9;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .about__manner-num::before {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 599px) {
  .about__manner-num::before {
    width: 45px;
    height: 45px;
  }
}
.about__manner-content ul {
  padding-left: 1.5em;
  list-style-type: disc;
}
.about__manner-content ul li {
  color: #0080D9;
  font-size: 16px;
}
.about__manner-label {
  position: absolute;
  color: #E6F2FB;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 950px) {
  .about__manner-label {
    font-size: 40px;
  }
}
.about__manner-label--one {
  bottom: -72px;
  right: 0;
}
.about__manner-label--two {
  right: -82px;
  bottom: -65px;
}
.about__manner-label--three {
  top: -72px;
  right: -30px;
}
.about__manner-label--four {
  top: -75px;
  left: -135px;
}
.about__manner-arrow {
  background: url(../../assets/image/about/arrow.svg) no-repeat center center/cover;
  width: 56px;
  height: 80px;
  position: absolute;
}
.about__manner-arrow--one {
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.about__manner-arrow--two {
  right: -72px;
  top: 50%;
  transform: translateY(-50%);
}
.about__manner-arrow--three {
  top: -85px;
  right: 50%;
  transform: translateX(50%) rotate(-90deg);
}
.about__manner-arrow--four {
  top: 50%;
  left: -72px;
  transform: translateY(-50%) rotate(-180deg);
}

@media screen and (max-width: 900px) {
  .about-bottom {
    aspect-ratio: 2/1;
  }
  .about-bottom img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.company__btns {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1520px) {
  .company__btns {
    margin-top: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .company__btns {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .company__btns {
    margin-top: 45px;
  }
}
.company__btn {
  flex: 0 0 49%;
  padding-block: 50px;
  border-bottom: 1px solid #D3D3D3;
  padding-inline: 3% 4%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  .company__btn {
    flex: 0 0 100%;
    padding-block: 40px;
  }
}
@media screen and (max-width: 599px) {
  .company__btn {
    padding-block: 30px;
    justify-content: space-between;
  }
}
.company__btn--top {
  border-top: 1px solid #D3D3D3;
}
@media screen and (max-width: 900px) {
  .company__btn--top:nth-child(2) {
    border-top: none;
  }
}
.company__btn div {
  background: #FFF;
  border-radius: 100px;
}
.company__btn::after {
  background: #0080D9;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.company__btn:hover {
  opacity: 1;
}
.company__btn:hover p {
  color: #fff !important;
}
.company__btn:hover::after {
  transform: scale(1, 1);
}
.company__btn-title {
  flex: 0 0 40%;
  color: #0080D9;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .company__btn-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .company__btn-title {
    flex: 0 0 34%;
    font-size: 18px;
  }
}
.company__btn-text {
  flex: 0 0 50%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 400px) {
  .company__btn-text br {
    display: none;
  }
}
.company__btn-img {
  flex: 0 0 10%;
}
.company__bg {
  background: #F9F9F9;
}
.company__under {
  border-radius: 100px 0;
  background: linear-gradient(244deg, #03A1EA 5.84%, #0080D9 100%);
  padding-top: 140px;
}
@media screen and (max-width: 1520px) {
  .company__under {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .company__under {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .company__under {
    border-radius: 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .company__under {
    padding-top: 60px;
  }
}
.company__under--none {
  background: transparent;
}
.company__under--last {
  background: linear-gradient(190deg, #03A1EA 0.14%, #0080D9 99.67%);
}
.company__under-content {
  border-radius: 30px;
  background: #FFF;
  padding-block: 60px;
  padding-inline: 7%;
}
@media screen and (max-width: 1400px) {
  .company__under-content {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 599px) {
  .company__under-content {
    padding-block: 30px 40px;
    padding-inline: 5%;
  }
}
.company__under-content--line {
  border: 1px solid #0080D9;
}
.company__under-content--activity {
  margin-block: 64px;
}
@media screen and (max-width: 599px) {
  .company__under-content--activity {
    margin-block: 45px;
  }
}
.company__title {
  margin-bottom: 56px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .company__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .company__title {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  .company__title {
    margin-bottom: 15px;
    font-size: 24px;
  }
}
.company__title br {
  display: none;
}
@media screen and (max-width: 450px) {
  .company__title br {
    display: block;
  }
}
.company__title--line {
  position: relative;
}
.company__title--line::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 120px;
  height: 4px;
  background: #0080D9;
}
@media screen and (max-width: 599px) {
  .company__title--line::before {
    bottom: -14px;
    width: 90px;
    height: 2px;
  }
}
.company__under-list {
  display: flex;
  padding-block: 42px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 1520px) {
  .company__under-list {
    padding-block: 32px;
  }
}
@media screen and (max-width: 768px) {
  .company__under-list {
    flex-direction: column;
    row-gap: 13px;
    padding-block: 30px;
  }
}
@media screen and (max-width: 599px) {
  .company__under-list {
    row-gap: 6px;
    padding-block: 20px;
  }
}
.company__under-left {
  flex: 0 0 23%;
  padding-left: 4.5%;
  color: #0080D9;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 1520px) {
  .company__under-left {
    font-size: 18px;
  }
}
@media screen and (max-width: 1300px) {
  .company__under-left {
    flex: 0 0 220px;
  }
}
@media screen and (max-width: 768px) {
  .company__under-left {
    flex: 0 0 auto;
    padding-inline: 0;
  }
}
@media screen and (max-width: 599px) {
  .company__under-left {
    font-size: 16px;
  }
}
.company__under-right {
  flex: 0 0 77%;
  padding-inline: 4%;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .company__under-right {
    font-size: 18px;
  }
}
@media screen and (max-width: 1300px) {
  .company__under-right {
    flex: 0 0 calc(100% - 220px);
  }
}
@media screen and (max-width: 768px) {
  .company__under-right {
    flex: 0 0 auto;
    padding-inline: 0;
  }
}
@media screen and (max-width: 599px) {
  .company__under-right {
    font-size: 16px;
  }
}
.company__under-right iframe {
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 2.315/1;
}
@media screen and (max-width: 768px) {
  .company__under-right iframe {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 599px) {
  .company__under-right iframe {
    margin-top: 20px;
  }
}
.company__under-right p, .company__under-right a {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.company__under .common-btn {
  margin-top: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .company__under .common-btn {
    margin-top: 55px;
  }
}
@media screen and (max-width: 599px) {
  .company__under .common-btn {
    margin-top: 30px;
  }
}

.partner__content {
  margin-top: 100px;
}
@media screen and (max-width: 1520px) {
  .partner__content {
    margin-top: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .partner__content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .partner__content {
    margin-top: 45px;
  }
}
.partner__content--under {
  margin-top: 160px;
}
@media screen and (max-width: 1520px) {
  .partner__content--under {
    margin-top: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .partner__content--under {
    margin-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .partner__content--under {
    margin-top: 75px;
  }
}
@media screen and (max-width: 599px) {
  .partner__content .company__title {
    margin-bottom: 35px;
  }
}
.partner__sub-title {
  margin-left: 2%;
  color: #0080D9;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .partner__sub-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .partner__sub-title {
    font-size: 20px;
  }
}
.partner__supplement {
  margin-bottom: 8px;
  text-align: right;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.partner__table-wrapper {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .partner__table-wrapper {
    overflow-x: scroll;
    padding-bottom: 15px;
  }
}
.partner__table-wrapper--last {
  margin-bottom: 90px;
}
@media screen and (max-width: 599px) {
  .partner__table-wrapper--last {
    margin-bottom: 60px;
  }
}
.partner__table-wrapper--third {
  overflow-y: hidden !important;
}
.partner__table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .partner__table {
    min-width: 800px;
  }
}
.partner__cell {
  width: 33.333%;
  border: 1px solid #D3D3D3;
  padding: 8px;
  vertical-align: middle;
  letter-spacing: 0.08em;
  padding-left: 2%;
  padding-block: 25px;
}
@media screen and (max-width: 768px) {
  .partner__cell {
    padding-block: 20px;
    padding-inline: 2%;
  }
}
.partner__content .common-btn {
  margin-inline: auto;
}

.permit .company__under-content {
  padding-block: 100px 160px;
}
@media screen and (max-width: 1520px) {
  .permit .company__under-content {
    padding-block: 90px 130px;
  }
}
@media screen and (max-width: 1024px) {
  .permit .company__under-content {
    padding-block: 70px 100px;
  }
}
@media screen and (max-width: 599px) {
  .permit .company__under-content {
    padding-block: 55px 75px;
  }
}
.permit .company__under-content:nth-child(5) {
  padding-block: 0 80px;
}
@media screen and (max-width: 1024px) {
  .permit .company__under-content:nth-child(5) {
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .permit .company__under-content:nth-child(5) {
    padding-bottom: 30px;
  }
}
.permit__bold {
  margin-bottom: 8px;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
@media screen and (max-width: 1520px) {
  .permit__bold {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 599px) {
  .permit__bold {
    font-size: 16px !important;
  }
}
.permit__mb {
  margin-bottom: 24px;
  font-size: 20px !important;
  letter-spacing: 0.08em !important;
}
@media screen and (max-width: 1520px) {
  .permit__mb {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 599px) {
  .permit__mb {
    font-size: 16px !important;
  }
}
.permit__mb--none {
  margin-bottom: 0;
}
.permit .common-btn {
  margin-inline: auto;
}

.message__content {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media screen and (max-width: 1024px) {
  .message__content {
    margin-top: 60px;
    flex-direction: column;
    row-gap: 45px;
  }
}
@media screen and (max-width: 599px) {
  .message__content {
    margin-top: 40px;
    row-gap: 30px;
  }
}
.message__img {
  flex: 0 0 32%;
}
@media screen and (max-width: 1440px) {
  .message__img {
    flex: 0 0 42%;
  }
}
@media screen and (max-width: 1024px) {
  .message__img {
    width: 66%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .message__img {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .message__img {
    width: 70%;
  }
}
.message__string {
  flex: 0 0 54%;
}
.message__text {
  line-height: 155.556%;
  letter-spacing: 0.04em;
}
.message__name {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: right;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.message__position {
  letter-spacing: 0.04em;
}
.message__name-img {
  flex: 0 0 160px;
}
.message .common-btn {
  margin-top: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .message .common-btn {
    margin-top: 55px;
  }
}
@media screen and (max-width: 599px) {
  .message .common-btn {
    margin-top: 45px;
  }
}

.philosophy {
  padding-bottom: 140px;
}
@media screen and (max-width: 1520px) {
  .philosophy {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .philosophy {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 450px) {
  .philosophy .page-container {
    padding-bottom: 50px;
  }
}
.philosophy__policy {
  margin-top: 80px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-radius: 10px;
  background: #F9F9F9;
  padding-block: 55px 80px;
  padding-inline: 13%;
}
@media screen and (max-width: 1520px) {
  .philosophy__policy {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .philosophy__policy {
    padding-block: 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__policy {
    margin-top: 45px;
    padding-block: 20px 35px;
  }
}
.philosophy__policy-title {
  margin-bottom: 28px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .philosophy__policy-title {
    margin-bottom: 20px;
    font-size: 21px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__policy-title {
    margin-bottom: 15px;
    font-size: 19px;
  }
}
.philosophy__policy-text {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1200px) {
  .philosophy__policy-text {
    font-size: 36px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__policy-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .philosophy__policy-text {
    font-size: 24px;
  }
}
.philosophy__blue {
  border-radius: 0 300px 10px 0;
  background: linear-gradient(244deg, #03A1EA 5.84%, #0080D9 100%);
  width: 96%;
  margin-right: auto;
  padding-block: 140px;
  padding-inline: 10%;
}
@media screen and (max-width: 1520px) {
  .philosophy__blue {
    padding-block: 120px;
  }
}
@media screen and (max-width: 1200px) {
  .philosophy__blue {
    padding-block: 100px;
    padding-inline: 6%;
    border-radius: 0 220px 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__blue {
    padding-block: 80px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__blue {
    padding-block: 40px;
    border-radius: 0 110px 10px 0;
  }
}
.philosophy__blue--center {
  margin-block: 64px;
  border-radius: 10px 0 0 10px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .philosophy__blue--center {
    margin-block: 50px;
  }
}
.philosophy__blue--last {
  border-radius: 0 10px 300px 0;
}
@media screen and (max-width: 1200px) {
  .philosophy__blue--last {
    border-radius: 0 10px 220px 0;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__blue--last {
    border-radius: 0 10px 110px 0;
  }
}
.philosophy__blue-title {
  margin-bottom: 80px;
  color: #FFF;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .philosophy__blue-title {
    margin-bottom: 50px;
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__blue-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__blue-title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.philosophy__blue-list {
  padding-block: 60px;
  border-bottom: 1px solid #fff;
  padding-inline: 2%;
  color: #FFF;
  font-size: 20px;
}
@media screen and (max-width: 1520px) {
  .philosophy__blue-list {
    padding-block: 42px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__blue-list {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .philosophy__blue-list {
    padding-block: 20px;
    font-size: 16px;
  }
}
.philosophy__blue-list--first {
  border-top: 1px solid #fff;
}
.philosophy .common-btn {
  margin-top: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .philosophy .common-btn {
    margin-top: 55px;
  }
}

.history {
  background: linear-gradient(244deg, #03A1EA 5.84%, #0080D9 100%);
}
.history .page-container {
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .history .page-container {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 450px) {
  .history .page-container {
    padding-bottom: 35px;
  }
}
.history__sliders {
  margin-bottom: 100px;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .history__sliders {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .history__sliders {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 450px) {
  .history__sliders {
    margin-bottom: 45px;
  }
}
.history__sliders .slick-slide {
  margin-right: -1px;
}
.history__slider {
  height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 1520px) {
  .history__slider {
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .history__slider {
    height: 200px;
  }
}
@media screen and (max-width: 450px) {
  .history__slider {
    height: 150px;
  }
}
.history__slider img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.history .company__under-left {
  letter-spacing: 0.08em;
}
.history .common-btn {
  margin-top: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .history .common-btn {
    margin-top: 55px;
  }
}

@media screen and (max-width: 768px) {
  .activity .company__under-list {
    row-gap: 12px;
  }
}
.activity .company__under-left {
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .activity .company__under-left br {
    display: none;
  }
}
.activity__mb {
  margin-bottom: 28px;
}
@media screen and (max-width: 599px) {
  .activity__mb {
    margin-bottom: 18px;
  }
}
.activity__flex {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media screen and (max-width: 599px) {
  .activity__flex {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
.activity__img {
  flex: 0 0 38%;
}
@media screen and (max-width: 599px) {
  .activity__img {
    flex: 0 0 100%;
  }
}
.activity__img--small {
  flex: 0 0 25%;
}
@media screen and (max-width: 599px) {
  .activity__img--small {
    flex: 0 0 40%;
  }
}
.activity__img--big {
  flex: 0 0 53%;
}
@media screen and (max-width: 599px) {
  .activity__img--big {
    flex: 0 0 70%;
  }
}
.activity__heading {
  margin-block: 28px 10px;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 599px) {
  .activity__heading {
    margin-top: 22px;
  }
}
.activity__heading p {
  color: #03A1EA;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.activity__heading div {
  flex-grow: 1;
  height: 1px;
  background: #03A1EA;
}
.activity__mini-text {
  font-size: 16px !important;
  letter-spacing: 0.08em !important;
}
.activity__link {
  display: block;
  margin-bottom: 28px;
  color: #03A1EA;
  line-height: 130%;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .activity__link {
    word-break: break-all;
  }
}
.activity .common-btn {
  margin-top: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .activity .common-btn {
    margin-top: 55px;
  }
}

.service .page-container {
  padding-bottom: 120px;
}
@media screen and (max-width: 1520px) {
  .service .page-container {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .service .page-container {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .service .page-container {
    padding-bottom: 60px;
  }
}
.service__top .page-container {
  max-width: 1385px;
}
.service__head {
  position: relative;
}
.service__head-string {
  position: absolute;
  bottom: -2px;
  left: -2px;
  border-radius: 0 60px 0 0;
  background: #FFF;
  width: 45%;
  height: 53%;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .service__head-string {
    margin-top: 6px;
    position: relative;
    padding-left: 1.5%;
    height: auto;
    width: auto;
  }
}
.service__head-string--big {
  height: 68%;
}
@media screen and (max-width: 599px) {
  .service__head-string--big {
    height: 76%;
    justify-content: end;
  }
}
.service__head-en {
  color: #0080D9;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .service__head-en {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .service__head-en {
    font-size: 16px;
  }
}
.service__head-ja {
  margin-top: 4px;
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.service__head-ja span {
  display: none;
}
@media screen and (max-width: 768px) {
  .service__head-ja {
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .service__head-ja {
    margin-top: 0;
    font-size: 25px;
    line-height: 130%;
  }
  .service__head-ja span {
    display: inline-block;
  }
  .service__head-ja br {
    display: none;
  }
  .service__head-ja .sp {
    display: block;
  }
}
.service__top-heading {
  margin-block: 80px 24px;
  color: #0080D9;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .service__top-heading {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .service__top-heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 599px) {
  .service__top-heading {
    margin-top: 30px;
    font-size: 20px;
  }
}
.service__top-text {
  letter-spacing: 0.04em;
}
.service__top-btns {
  margin-top: 80px;
  padding-inline: 11%;
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .service__top-btns {
    margin-top: 60px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .service__top-btns {
    margin-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .service__top-btns {
    margin-top: 35px;
  }
}
.service__top-btns--center {
  justify-content: center;
}
.service__top-btns--under {
  margin-top: 42px;
}
@media screen and (max-width: 599px) {
  .service__top-btns--under {
    margin-top: 35px;
  }
}
.service__top-btn {
  flex: 0 0 32%;
  padding-block: 30px;
  padding-inline: 2% 1.1%;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 900px) {
  .service__top-btn {
    flex: 0 0 49%;
  }
}
@media screen and (max-width: 599px) {
  .service__top-btn {
    flex: 0 0 100%;
    padding-block: 20px;
  }
}
.service__top-btn--first {
  border-top: 1px solid #D3D3D3;
}
@media screen and (max-width: 900px) {
  .service__top-btn--first:nth-child(3) {
    border-top: none;
  }
}
@media screen and (max-width: 599px) {
  .service__top-btn--first:nth-child(2) {
    border-top: none;
  }
}
.service__top-btn p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.service__top-btn div {
  flex: 0 0 18%;
  background: #FFF;
  border-radius: 100px;
}
@media screen and (max-width: 900px) {
  .service__top-btn div {
    flex: 0 0 12%;
  }
}
@media screen and (max-width: 599px) {
  .service__top-btn div {
    flex: 0 0 9%;
  }
}
.service__top-btn::after {
  background: #0080D9;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.service__top-btn:hover {
  opacity: 1;
}
.service__top-btn:hover p {
  color: #fff !important;
}
.service__top-btn:hover::after {
  transform: scale(1, 1);
}
.service__content {
  padding-top: 120px;
  background: #FAFAFA;
}
@media screen and (max-width: 1520px) {
  .service__content {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .service__content {
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .service__content {
    padding-top: 60px;
  }
}
.service__content--white {
  background: #FFF;
}
.service__content-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .service__content-top {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .service__content-top {
    row-gap: 20px;
  }
}
.service__content-img {
  flex: 0 0 34%;
}
@media screen and (max-width: 900px) {
  .service__content-img {
    width: 60%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .service__content-img {
    width: 100%;
  }
}
.service__content-img video {
  width: 100%;
}
.service__content-string {
  flex: 0 0 60%;
}
.service__content-title {
  padding-bottom: 24px;
  border-bottom: 1px solid #D3D3D3;
  color: #0080D9;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .service__content-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-title {
    padding-bottom: 20px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .service__content-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .service__content-title {
    padding-bottom: 15px;
    font-size: 22px;
  }
}
.service__content-title--under {
  margin-inline: 11%;
}
@media screen and (max-width: 1024px) {
  .service__content-title--under {
    margin-inline: 0;
  }
}
.service__content-heading {
  margin-block: 42px 24px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1520px) {
  .service__content-heading {
    font-size: 23px;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-heading {
    margin-block: 30px 18px;
    font-size: 21px;
  }
}
@media screen and (max-width: 599px) {
  .service__content-heading {
    margin-block: 15px 13px;
    font-size: 18px;
  }
}
.service__content-text {
  line-height: 177.778%;
  letter-spacing: 0.04em;
}
.service__content-flex {
  margin-top: 60px;
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
@media screen and (max-width: 900px) {
  .service__content-flex {
    margin-top: 45px;
  }
}
@media screen and (max-width: 599px) {
  .service__content-flex {
    flex-wrap: wrap;
    row-gap: 15px;
    margin-top: 20px;
  }
}
.service__content-box {
  flex: 0 0 32%;
}
@media screen and (max-width: 599px) {
  .service__content-box {
    flex: 0 0 49%;
  }
}
.service__content-supplement {
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .service__content-supplement {
    margin-top: 7px;
    font-size: 14px;
  }
}
.service__under {
  padding-top: 120px;
}
@media screen and (max-width: 1520px) {
  .service__under {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .service__under {
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .service__under {
    padding-top: 60px;
  }
}

.page-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-bottom: 140px;
}
@media screen and (max-width: 1520px) {
  .page-container {
    padding-bottom: 100px;
    max-width: none;
    padding-inline: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .page-container {
    padding-bottom: 80px;
    padding-inline: 4%;
  }
}
@media screen and (max-width: 599px) {
  .page-container {
    padding-bottom: 60px;
  }
}

.breadcrumb {
  padding-top: 40px;
  margin-bottom: 68px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 1200px) {
  .breadcrumb {
    margin-right: 7%;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb {
    padding-top: 25px;
    margin-bottom: 30px;
    margin-right: 4%;
  }
}
.breadcrumb p, .breadcrumb a {
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .breadcrumb p, .breadcrumb a {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb p, .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb img {
  width: auto;
}
.breadcrumb--white p, .breadcrumb--white a {
  color: #fff;
}/*# sourceMappingURL=style.css.map */