@charset "UTF-8";
.js__fade-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
  transform: translateY(150px);
}
.js__fade-in.is-active {
  /* 要素を表示 */
  opacity: 1;
  visibility: visible;
  /* 元の位置に戻す */
  transform: translateY(0);
}

/*
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
@keyframes infinity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-2080px - 14rem)); /* 1セット分正確にスライド */
  }
}
/* アニメーションの定義 */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-infinity {
  overflow: hidden;
  width: 100vw;
}
.scroll-infinity__wrap {
  display: flex;
}
@media (max-width: 480px) {
  .scroll-infinity__wrap {
    height: 180px;
  }
}
.scroll-infinity.reverse .scroll-infinity__wrap {
  justify-content: flex-end;
}
.scroll-infinity__list {
  flex-shrink: 0;
  display: flex;
  transform: translate(0, 0);
  transition-timing-function: linear;
  transition-duration: 3s;
}
@media (min-width: 768px) {
  .scroll-infinity__list {
    transition-duration: 5s;
  }
}
.scroll-infinity__item {
  flex-shrink: 0;
  width: 33.3333333333vw;
  max-width: 530px;
  aspect-ratio: 25/19;
  padding: 0 min(1vw, 15px);
  transition-timing-function: linear;
  transition-duration: 0s;
}
@media only screen and (max-width: 30em) {
  .scroll-infinity__item {
    width: 71.4285714286vw;
  }
}
.scroll-infinity__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: min(3.333vw, 50px);
}
.scroll-infinity__item.current {
  transition: margin 3s linear;
}
@media (min-width: 768px) {
  .scroll-infinity__item.current {
    transition-duration: 5s;
  }
}

.recruit__img-scroll .recruit__img-wrap {
  height: 340px;
}
@media only screen and (max-width: 75em) {
  .recruit__img-scroll .recruit__img-wrap {
    height: 250px;
  }
}
@media only screen and (max-width: 56.25em) {
  .recruit__img-scroll .recruit__img-wrap {
    height: 220px;
  }
}
@media only screen and (max-width: 43.75em) {
  .recruit__img-scroll .recruit__img-wrap {
    height: 150px;
  }
}
@media only screen and (max-width: 30em) {
  .recruit__img-scroll .recruit__img-wrap {
    height: 126px;
  }
}
.recruit__img-scroll__item {
  flex-shrink: 0;
  width: 33.3333333333vw;
  max-width: 460px;
  aspect-ratio: 25/19;
  padding: 0 min(1vw, 15px);
  transition-timing-function: linear;
  transition-duration: 0s;
}
@media only screen and (max-width: 30em) {
  .recruit__img-scroll__item {
    width: 71.4285714286vw;
  }
}
.recruit__img-scroll__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: min(3.333vw, 50px);
}

.scroll-infinity__item--recruit {
  max-width: 460px;
}
@media only screen and (max-width: 75em) {
  .scroll-infinity__item--recruit {
    max-width: 350px;
  }
}
@media only screen and (max-width: 30em) {
  .scroll-infinity__item--recruit {
    max-width: 170px;
  }
}
.scroll-infinity__item--recruit img {
  height: 100%;
  border-radius: min(3.333vw, 15px);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", serif;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 30em) {
  html {
    font-size: 62.5%;
  }
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

textarea {
  resize: none;
}

.sp-br {
  display: none;
}

@media only screen and (max-width: 30em) {
  .sp-br {
    display: block;
  }
}
.poppins {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.sans {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.icon-mail-icon {
  width: 4.5rem;
  height: 1.5rem;
}

.hero__content {
  position: absolute;
  z-index: 1;
  color: white;
  text-align: left;
  top: 30%;
  left: 8.2%;
  transform: translate(0, 50%);
  line-height: 1;
}
@media only screen and (max-width: 30em) {
  .hero__content {
    top: 29%;
  }
}
.hero__content .hero__title {
  font-size: 12.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .hero__content .hero__title {
    font-size: 7.8rem;
  }
}
.hero__content .hero__subtitle {
  font-size: 3rem;
  line-height: 1.7;
}
@media only screen and (max-width: 30em) {
  .hero__content .hero__subtitle {
    font-size: 1.8rem;
  }
}

.company__title,
.business__title,
.recruit__title,
.contact__title,
.page-header__title {
  font-size: 5.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 30em) {
  .company__title,
  .business__title,
  .recruit__title,
  .contact__title,
  .page-header__title {
    font-size: 4rem;
  }
}

.company__title,
.business__title {
  margin-bottom: 2.3rem;
}

@media only screen and (max-width: 30em) {
  .business__title {
    margin-bottom: 1.3rem;
  }
}
.contact__title {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .contact__title {
    margin-bottom: 1.7rem;
  }
}

.recruit__title {
  margin-bottom: 1.7rem;
}

.company__subtitle,
.business__subtitle,
.recruit__subtitle,
.contact__subtitle,
.page-header__subtitle {
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 30em) {
  .company__subtitle,
  .business__subtitle,
  .recruit__subtitle,
  .contact__subtitle,
  .page-header__subtitle {
    font-size: 1.4rem;
  }
}

.company__description,
.business__description p,
.recruit__description,
.link__btn {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (max-width: 30em) {
  .company__description,
  .business__description p,
  .recruit__description,
  .link__btn {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 30em) {
  .company__description,
  .business__description p,
  .recruit__description,
  .contact__description {
    font-size: 1.4rem;
  }
}

.header__menu-item a,
.header__contact-btn,
.footer__menu a,
.footer__contact-btn,
.footer__address {
  font-size: 1.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 30em) {
  .footer__address {
    font-size: 1.4rem;
  }
}

.components__sec-heading--size {
  font-size: 2.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 30em) {
  .components__sec-heading--size {
    font-size: 2.2rem;
  }
}

.components__message--size {
  font-size: 1.6rem;
}

.contents-header__title {
  font-size: 4.2rem;
}
@media only screen and (max-width: 30em) {
  .contents-header__title {
    font-size: 2.8rem;
  }
}
.contents-header__subtitle {
  font-size: 1.4rem;
}
@media only screen and (max-width: 30em) {
  .contents-header__subtitle {
    font-size: 1.1rem;
  }
}

.component-table__label {
  font-weight: 500;
  color: #333;
  font-size: 1.6rem;
}
@media only screen and (max-width: 43.75em) {
  .component-table__label {
    font-size: 1.4rem;
  }
}
.component-table__value {
  font-size: 1.6rem;
}
@media only screen and (max-width: 30em) {
  .component-table__value {
    font-size: 1.4rem;
  }
}

.company__title,
.business__title,
.company__subtitle,
.business__subtitle,
.company__description,
.business__description p,
.header__menu-item a {
  color: #1a1311;
}

.recruit__content,
.recruit__description,
.contact__title,
.footer__menu a {
  color: #ffffff;
}

.company__right {
  color: #1a1311;
}
.company__right .company__heading {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 3.65rem;
}
@media only screen and (max-width: 30em) {
  .company__right .company__heading {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.company__right .company__description {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 9rem;
}
@media only screen and (max-width: 30em) {
  .company__right .company__description {
    font-size: 1.5rem;
    line-height: 1.85;
    margin-bottom: 3.5rem;
  }
}
.company__right .company__description br {
  margin-bottom: 10px;
}
.company .company__button {
  font-size: 1.6rem;
}

.business__item-text {
  font-size: 2rem;
}
@media only screen and (max-width: 30em) {
  .business__item-text {
    font-size: 1.3rem;
  }
}

.business__description--heading {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 3.65rem;
  color: #333;
}
@media only screen and (max-width: 30em) {
  .business__description--heading {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.recruit__subtitle {
  padding-bottom: 7rem;
}
@media only screen and (max-width: 30em) {
  .recruit__subtitle {
    padding-bottom: 5.5rem;
  }
}

.recruit__description {
  padding-bottom: 7.5rem;
}
@media only screen and (max-width: 30em) {
  .recruit__description {
    padding-bottom: 0.9rem;
  }
}
.recruit__description--heading {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.65rem;
  line-height: 1.5;
  color: #ffffff;
}
@media only screen and (max-width: 30em) {
  .recruit__description--heading {
    font-size: 2rem;
    line-height: 1.8;
    color: #ffffff;
  }
}

.page-company__message--title {
  font-size: 1.8rem;
}
.page-company__message--signature {
  font-size: 1.4rem;
  color: #333;
}
@media only screen and (max-width: 30em) {
  .page-company__message--signature {
    font-size: 1.2rem;
  }
}
.page-company__message--signature strong {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 30em) {
  .page-company__message--signature strong {
    font-size: 2rem;
  }
}

.tabs__item {
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 30em) {
  .tabs__item {
    font-size: 1.2rem;
  }
}

.contact {
  position: relative;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 4.1rem 17.5rem 16.7rem 19rem;
}
@media only screen and (max-width: 75em) {
  .contact {
    padding: 8.5rem 10rem 8.7rem 10rem;
  }
}
@media only screen and (max-width: 43.75em) {
  .contact {
    padding: 8.5rem 5rem 8.7rem 5rem;
  }
}
@media only screen and (max-width: 30em) {
  .contact {
    padding: 0 2.5rem 2.7rem 2.7rem;
    margin-bottom: 6.8rem;
  }
}
.contact__container {
  max-width: 1120px;
  border-radius: 20px;
  background: url("../img/cta-image.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 8.5rem 15rem 8.7rem 10rem;
  margin: 0 auto;
}
@media only screen and (max-width: 43.75em) {
  .contact__container {
    padding: 8.5rem 15rem 8.7rem 5rem;
  }
}
@media only screen and (max-width: 30em) {
  .contact__container {
    padding: 6.5rem 3rem 4rem 2rem;
  }
}
.contact__container:hover .contact__arrow-svg .contact__arrow-circle {
  stroke-dashoffset: 0;
}
.contact__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.contact__content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  color: #fff;
}
.contact__content .contact__subtitle {
  margin-bottom: 6.6rem;
}
@media only screen and (max-width: 30em) {
  .contact__content .contact__subtitle {
    margin-bottom: 4.4rem;
  }
}
.contact__content .contact__description {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (max-width: 30em) {
  .contact__content .contact__description {
    font-size: 1.4rem;
  }
}
.contact__arrow {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(-50%, -50%);
  transform: translateY(-50%);
  width: 153px;
  height: 153px;
  margin-right: 0.5rem;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact__arrow .contact__arrow-svg {
  width: 100%;
  height: 100%;
}
.contact__arrow .contact__arrow-svg .contact__arrow-circle {
  stroke-dasharray: 580;
  stroke-dashoffset: 580;
  transition: stroke-dashoffset 0.5s ease-in-out;
}
.contact__arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}
.contact__arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 62.5em) {
  .contact__arrow {
    top: 38%;
    right: 10%;
    width: 10vw;
    height: 10vw;
    max-width: 153px;
    max-height: 153px;
    min-width: 71px;
    min-height: 71px;
  }
}
@media only screen and (max-width: 62.5em) and (max-width: 30em) {
  .contact__arrow {
    top: 51%;
    right: 4%;
  }
}
.contact__arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.components__nav-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15rem;
  background-color: #38a1db;
  color: #fff;
  padding: 1rem 2.9rem 1rem 2rem;
  margin-right: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s;
  pointer-events: auto;
}
.components__nav-contact:hover {
  background-color: #0056b3;
}

.link__btn {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  max-width: 256px;
  min-width: 200px;
  color: #38a1db;
  padding: 1.7rem 0 1.7rem 9.5rem;
  margin-left: auto;
  border-radius: 10px;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #38a1db;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #ffffff;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 75em) {
  .link__btn {
    padding: 1.3rem 0 1.3rem 8rem;
    max-width: 220px;
  }
}
@media only screen and (max-width: 56.25em) {
  .link__btn {
    padding: 1.3rem 0 1.3rem 8.5rem;
    max-width: 200px;
  }
}
@media only screen and (max-width: 43.75em) {
  .link__btn {
    max-width: 180px;
  }
}
@media only screen and (max-width: 30em) {
  .link__btn {
    min-width: 180px;
    width: 28%;
    padding: 0.9rem 1.5rem;
    justify-content: flex-end;
  }
}
.link__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #38a1db;
  z-index: -1;
  transition: width 0.3s ease;
}
.link__btn .link__arrow {
  position: relative;
  margin-left: 6rem;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 30em) {
  .link__btn .link__arrow {
    margin-left: 4rem;
  }
}
.link__btn .link__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #38a1db;
  border-right: 1px solid #38a1db;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
.link__btn:hover {
  color: #ffffff;
}
.link__btn:hover::before {
  width: 100%;
}
.link__btn:hover .link__arrow::before {
  border-color: #ffffff;
}

.link__btn--center {
  margin: 0 auto;
}

.link__btn--blue {
  color: #ffffff;
  background-color: #38a1db;
  border: 1px solid #ffffff;
  padding-left: 8rem;
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 75em) {
  .link__btn--blue {
    padding-left: 6.7rem;
    max-width: 220px;
  }
}
@media only screen and (max-width: 56.25em) {
  .link__btn--blue {
    max-width: 200px;
  }
}
@media only screen and (max-width: 43.75em) {
  .link__btn--blue {
    max-width: 180px;
  }
}
@media only screen and (max-width: 30em) {
  .link__btn--blue {
    padding-left: 0;
  }
}
.link__btn--blue::before {
  content: "";
  background-color: #ffffff;
}
.link__btn--blue .link__arrow {
  margin-left: 4.3rem;
}
.link__btn--blue .link__arrow::before {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.link__btn--blue:hover {
  color: #38a1db;
  background-color: #38a1db;
  border: 1px solid #38a1db;
}
.link__btn--blue:hover .link__arrow::before {
  border-color: #38a1db; /* 矢印の色を変更 */
}

.link__btn--contact-sendback {
  padding: 1.7rem 0;
  width: 103%;
  justify-content: center;
}
@media only screen and (max-width: 43.75em) {
  .link__btn--contact-sendback {
    margin-bottom: 2rem;
    padding: 1.7rem 1rem;
  }
}
.link__btn--contact-sendback .link__arrow {
  margin-left: 2rem;
}

.page-header {
  text-align: left;
  max-width: 1184px;
  width: 100%;
  margin: 0 auto 13.3rem;
  padding: 22rem 4rem 0 4rem;
  margin-bottom: 6.3rem;
}
@media only screen and (max-width: 30em) {
  .page-header {
    padding-top: 12rem;
    padding-left: 2.6rem;
    margin-bottom: 0;
  }
}
.page-header__title {
  color: #333;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .page-header__title {
    margin-bottom: 1rem;
  }
}
.page-header__decoration {
  display: inline-block;
  padding: 0;
  border-radius: 5px;
}
@media only screen and (max-width: 43.75em) {
  .page-header__decoration {
    padding: 0.55rem 0;
  }
}
.page-header__decoration .page-header__subtitle {
  color: #333;
  font-weight: bold;
}

.contents-header {
  text-align: left;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 30em) {
  .contents-header {
    margin-bottom: 6.5rem;
  }
}
.contents-header__title {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}
.contents-header__subtitle {
  color: #666;
}
.contents-header--center {
  text-align: center;
}
.contents-header--center__title, .contents-header--center__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.component-table {
  font-size: clamp(14px, 2vw, 16px);
}
.component-table__item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 56.25em) {
  .component-table__item {
    gap: 2.4rem;
    margin-bottom: 3rem;
  }
}
.component-table__item:last-child {
  margin-bottom: 0;
}
.component-table__row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media only screen and (min-width: 56.25em) {
  .component-table__row {
    flex-direction: row;
  }
}
.component-table__label {
  font-weight: 600;
  line-height: 1.6;
}
.component-table__value {
  line-height: 1.6;
}
.component-table__border {
  display: flex;
}
.component-table__border-blue, .component-table__border-gray {
  height: 1px;
}
.component-table__border-blue {
  background-color: #38a1db;
}
.component-table__border-gray {
  background-color: #ccc;
  width: 100%;
}
.component-table__label, .component-table__border-blue {
  min-width: 12.4rem;
}
@media only screen and (min-width: 56.25em) {
  .component-table__label, .component-table__border-blue {
    min-width: 18rem;
  }
}

/* 初期状態 */
.fade-up {
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
}

.header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: 100vw;
  pointer-events: none;
  position: fixed;
  z-index: 100;
  transition: all 0.3s ease;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 11rem;
  margin: auto 3rem auto 5rem;
}
@media only screen and (max-width: 30em) {
  .header__container {
    margin: -2.8rem 0;
  }
}
.header__logo {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 43.75em) {
  .header__logo .icon-logo-white {
    width: 80%;
  }
}
@media only screen and (max-width: 30em) {
  .header__logo .icon-logo-white {
    width: 68%;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 2rem 1.6rem 1.8rem 4rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 75em) {
  .header__menu {
    display: none;
  }
}
.header__menu .header__nav {
  margin-left: auto;
  margin-right: 5rem;
  pointer-events: auto;
}
.header__menu .header__nav .header__menu-container {
  list-style: none;
  display: flex;
  gap: 4rem;
}
.header__menu .header__nav .header__menu-container .header__menu-item {
  position: relative;
}
.header__menu .header__nav .header__menu-container .header__menu-item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.header__menu .header__nav .header__menu-container .header__menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #38a1db;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.header__menu .header__nav .header__menu-container .header__menu-item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header__hamburger-nav {
  position: relative;
  pointer-events: auto;
  display: none;
}
@media only screen and (max-width: 75em) {
  .header__hamburger-nav {
    display: block;
  }
}
.header__hamburger-nav .header__hamburger {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 200;
}
@media only screen and (max-width: 30em) {
  .header__hamburger-nav .header__hamburger {
    width: 23px;
    height: 11px;
  }
}
.header__hamburger-nav .header__hamburger .hamburger__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header__hamburger-nav .header__hamburger .hamburger__line:nth-child(3) {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}
.header__hamburger-nav .header__hamburger.is-active .hamburger__line:nth-child(1) {
  transform: rotate(25deg) translate(5px, 5px);
}
.header__hamburger-nav .header__hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.header__hamburger-nav .header__hamburger.is-active .hamburger__line:nth-child(3) {
  width: 100%;
  transform: rotate(-25deg) translate(5px, -4.2px);
}
.header__hamburger-nav .header__hamburger.is-active .hamburger__line .page-hamburger__nav--line-color {
  background-color: #ffffff;
}
.header__hamburger-nav__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  min-height: 100vh;
  padding: 8rem;
  background-color: #1a2b48;
  color: #ffffff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateX(100%);
  opacity: 0;
  overflow: visible;
  visibility: hidden;
  transition: all 0.6s ease;
}
.header__hamburger-nav__nav.is-open {
  transform: translateX(-75%);
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 640px) {
  .header__hamburger-nav__nav.is-open {
    transform: translateX(-100%);
    padding: 10rem 4rem 4rem;
  }
}
.header__hamburger-nav__nav .header__hamburger-nav__menu-container {
  list-style: none;
  text-align: left;
  margin-bottom: 11.4rem;
}
@media only screen and (max-width: 30em) {
  .header__hamburger-nav__nav .header__hamburger-nav__menu-container {
    margin-bottom: 5.4rem;
  }
}
.header__hamburger-nav__nav .header__hamburger-nav__menu-container .header__hamburger-nav__menu-item {
  margin: 3.2rem 0;
}
.header__hamburger-nav__nav .header__hamburger-nav__menu-container .header__hamburger-nav__menu-item:first-child {
  margin-top: 0;
}
.header__hamburger-nav__nav .header__hamburger-nav__menu-container .header__hamburger-nav__menu-item:last-child {
  margin-bottom: 0;
}
.header__hamburger-nav__nav .header__hamburger-nav__menu-container .header__hamburger-nav__menu-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__hamburger-nav__nav .header__hamburger-nav__menu-container .header__hamburger-nav__menu-item a:hover {
  color: #ffffff;
}
@media only screen and (max-width: 30em) {
  .header__hamburger-nav__nav .header__hamburger-nav__menu-container .header__hamburger-nav__menu-item a {
    font-size: 1.8rem;
  }
}

.page__header-position {
  padding: 30px 20px 0;
}
@media only screen and (max-width: 30em) {
  .page__header-position {
    padding: 12px 13px 0;
  }
}
.page__header-position .page__header {
  display: inline-flex;
  align-items: center;
  margin: 0 3rem;
  padding: 20px 0;
  height: 7.2rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 30em) {
  .page__header-position .page__header {
    margin: 0;
    height: 5.2rem;
  }
}
.page__header-position .page__header .header__logo {
  padding-left: 2rem;
}
@media only screen and (max-width: 30em) {
  .page__header-position .page__header .header__logo {
    padding-left: 1rem;
  }
}
.page__header-position .page__header .header__menu {
  background-color: #ffffff;
  padding: 0 1.6rem 0 4rem;
}
.page__header-position .page-hamburger__nav {
  margin-right: 3rem;
}
@media only screen and (max-width: 30em) {
  .page__header-position .page-hamburger__nav {
    margin-right: 1.3rem;
  }
}
.page__header-position .page-hamburger__nav--line .hamburger__line {
  background-color: #1a1311;
}
.page__header-position .page-hamburger__nav.is-active .hamburger__line:nth-child(1) {
  background-color: #ffffff;
}
.page__header-position .page-hamburger__nav.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.page__header-position .page-hamburger__nav.is-active .hamburger__line:nth-child(3) {
  background-color: #ffffff;
}

.top-nav__menu-content {
  padding: 1.5rem 1.6rem 1.5rem 4rem !important;
}

/* `.top-navigation` がある間はドロップシャドウなし */
.top-navigation .page__header-position .page__header {
  box-shadow: none !important;
}

/* top-navigationがある間はハンバーガーアイコンの色を白に */
.top-navigation .header__hamburger .hamburger__line {
  background-color: #ffffff !important;
}

.header__container {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

.page__header-position .page__header.top-navigation__bg {
  background-color: transparent;
}

.footer {
  background-color: #1a2b48;
  color: #ffffff;
  width: 100vw;
  height: 72rem;
  padding: 10.5rem 19rem;
}
@media only screen and (max-width: 75em) {
  .footer {
    text-align: center;
    padding: 10.5rem 0;
  }
}
@media only screen and (max-width: 30em) {
  .footer {
    height: 42rem;
    padding: 0.5rem 0 10rem;
  }
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 43.75em) {
  .footer__container {
    margin: 0;
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .footer__container {
    flex-direction: column;
    text-align: left;
    padding-left: 2.8rem;
  }
}
.footer__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
}
@media only screen and (max-width: 75em) {
  .footer__left {
    flex: none;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 43.75em) {
  .footer__left {
    margin: 0;
  }
}
@media only screen and (max-width: 30em) {
  .footer__left {
    margin: 0;
  }
}
.footer__left__block--top .icon-logo-white {
  width: 100px; /* 初期サイズ */
  height: auto;
}
@media only screen and (max-width: 30em) {
  .footer__left__block--top .icon-logo-white {
    width: 50%; /* レスポンシブでの調整 */
  }
}
.footer__left .footer__address {
  margin-top: -1.2rem;
  line-height: 1.74;
}
@media only screen and (max-width: 43.75em) {
  .footer__left .footer__address {
    text-align: left;
  }
}
@media only screen and (max-width: 30em) {
  .footer__left .footer__address {
    margin-top: -3.2rem;
  }
}
.footer__left .footer__address-font1 {
  letter-spacing: -1px;
}
.footer__left .footer__address-font2 {
  letter-spacing: 0;
}
.footer__left .footer__address-font3 {
  letter-spacing: -0.7px;
}
.footer__left .footer__copy {
  margin-top: 23rem;
  margin-left: 0.2rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 43.75em) {
  .footer__left .footer__copy {
    text-align: left;
  }
}
@media only screen and (max-width: 30em) {
  .footer__left .footer__copy {
    margin-top: 11rem;
  }
}
.footer__right {
  flex: 1.51;
  text-align: right;
}
@media only screen and (max-width: 75em) {
  .footer__right {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__right {
    text-align: center;
  }
}
.footer__right .footer__nav {
  display: flex;
  align-items: center;
  padding: 5.8rem 2rem 2rem 4.2rem;
  border-radius: 2rem;
}
.footer__right .footer__nav .footer__menu-container {
  list-style: none;
  display: flex;
  gap: 42px;
  margin-right: 5rem;
}
.footer__right__bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #ccc;
}
@media only screen and (max-width: 43.75em) {
  .footer__right__bottom {
    text-align: left;
  }
}

.footer__block--top .icon-logo-white {
  width: 300px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 30em) {
  .footer__block--top .icon-logo-white {
    width: 66%;
  }
}

.hamburger-footer {
  text-align: left;
  color: #9ba4ba;
  font-size: 1.8rem;
}
@media only screen and (max-width: 30em) {
  .hamburger-footer {
    font-size: 1.4rem;
  }
}
.hamburger-footer__top .icon-logo-white {
  width: 300px;
}
@media only screen and (max-width: 30em) {
  .hamburger-footer__top .icon-logo-white {
    width: 85%;
  }
}
.hamburger-footer .hamburger-footer__address--description {
  margin-bottom: 5.9rem;
}
.hamburger-footer .hamburger-footer__address--description p {
  margin-bottom: 1.4rem;
}
.hamburger-footer .hamburger-footer__address--description p:last-child {
  margin-bottom: 0;
}

.page-business {
  background-color: #fff;
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  margin-top: 9.5rem;
  margin-bottom: 16.5rem;
  padding: 0 20px 0 40px;
}
@media only screen and (max-width: 43.75em) {
  .page-business {
    padding: 4rem;
    margin: 6.3rem 0;
  }
}
@media only screen and (max-width: 30em) {
  .page-business {
    margin: 0;
    padding: 4rem 2.5rem;
  }
}
.page-business__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 43.75em) {
  .page-business__container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
.page-business__left {
  max-width: 545px;
  width: 100%;
  text-align: left;
  padding-right: 20px;
}
@media only screen and (max-width: 43.75em) {
  .page-business__left {
    max-width: 100%;
    padding-right: 0;
  }
}
.page-business__left .page-business__message {
  padding-top: 5.5rem;
}
@media only screen and (max-width: 30em) {
  .page-business__left .page-business__message {
    padding-top: 7.5rem;
  }
}
.page-business__left .page-business__message--title {
  padding: 4rem 0 3.5rem;
}
@media only screen and (max-width: 30em) {
  .page-business__left .page-business__message--title {
    padding: 6rem 0 2.5rem 0;
  }
}
.page-business__left .page-business__message--heading {
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 30em) {
  .page-business__left .page-business__message--heading {
    line-height: 1.3;
    margin-bottom: 3rem;
  }
}
.page-business__left .page-business__message--description {
  line-height: 2;
  margin-bottom: 2.8rem;
}
@media only screen and (max-width: 30em) {
  .page-business__left .page-business__message--description {
    line-height: 1.75;
  }
}
@media only screen and (max-width: 43.75em) {
  .page-business__right {
    padding-right: 0;
  }
}
.page-business__right .page-business__image {
  display: block;
  max-width: 500px;
  max-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 43.75em) {
  .page-business__right .page-business__image {
    max-width: 100%;
  }
}
.page-business__right .page-business__image--content {
  width: 108%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 30em) {
  .page-business__right .page-business__image--content {
    width: 99%;
    height: 99%;
  }
}

.business-profile {
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  margin-bottom: 16rem;
}
@media only screen and (max-width: 30em) {
  .business-profile {
    margin-top: 0;
    margin-bottom: 10rem;
    padding: 0 2.5rem;
  }
}

.contents-header__title--business {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 30em) {
  .contents-header__title--business {
    margin-bottom: 2.2rem;
  }
}

.contents-header__business--project {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 30em) {
  .contents-header__business--project {
    margin-bottom: 5rem;
  }
}

.project-slider {
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  margin-bottom: 14rem;
}
@media only screen and (max-width: 43.75em) {
  .project-slider {
    padding: 4rem;
    margin: 6.3rem 0;
  }
}
@media only screen and (max-width: 30em) {
  .project-slider {
    padding: 4rem 2rem;
    margin: -0.7rem 0;
  }
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}
@media (max-width: 600px) {
  .project-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.project-gallery__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}
.project-gallery__image {
  aspect-ratio: 360/500;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 0;
}
.project-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.project-gallery__caption {
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (max-width: 30em) {
  .project-gallery__caption {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.page__business-cta {
  padding-bottom: 20rem;
}
@media only screen and (max-width: 30em) {
  .page__business-cta {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
}

.page-company {
  background-color: #fff;
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  margin-top: 9.5rem;
  margin-bottom: 19.8rem;
  padding: 0 40px;
}
@media only screen and (max-width: 43.75em) {
  .page-company {
    padding: 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .page-company {
    margin-top: 0;
    margin-bottom: 5.8rem;
    padding: 4rem 2.5rem;
  }
}
.page-company__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 43.75em) {
  .page-company__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.page-company__right {
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 43.75em) {
  .page-company__right {
    max-width: 100%;
  }
}
.page-company__right .page-company__message--title {
  padding: 4rem 0 3.5rem;
}
@media only screen and (max-width: 30em) {
  .page-company__right .page-company__message--title {
    padding: 6rem 0 2.5rem 0;
  }
}
.page-company__right .page-company__message--heading {
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 30em) {
  .page-company__right .page-company__message--heading {
    line-height: 1.3;
    margin-bottom: 2.6rem;
  }
}
.page-company__right .page-company__message--description {
  line-height: 1.85;
  margin-bottom: 2.8rem;
}
@media only screen and (max-width: 30em) {
  .page-company__right .page-company__message--description {
    line-height: 1.75;
  }
}
.page-company__right .page-company__message--signature {
  text-align: right;
}
.page-company__right .page-company__message--signature strong {
  margin-left: 2.1rem;
}
@media only screen and (max-width: 30em) {
  .page-company__right .page-company__message--signature strong {
    margin-left: 1rem;
  }
}

.company-profile {
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  margin-bottom: 16rem;
}
@media only screen and (max-width: 30em) {
  .company-profile {
    margin-top: 0;
    margin-bottom: 10rem;
    padding: 0 2.5rem;
  }
}
.company-profile .contents-header__title {
  margin-bottom: 1.9rem;
}
@media only screen and (max-width: 30em) {
  .company-profile .contents-header__title {
    margin-bottom: 1.5rem;
  }
}

.company__cta {
  padding-bottom: 20rem;
}

.page-header__contact {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 30em) {
  .page-header__contact {
    margin-bottom: 4.6rem;
  }
}

.contact-form {
  background-color: #f5f6f8;
  padding-bottom: 16.5rem;
  border-radius: 10px;
}
@media only screen and (max-width: 75em) {
  .contact-form {
    padding: 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .contact-form {
    padding: 4rem 2rem 9.5rem;
  }
}
.contact-form .tel__container {
  max-width: 970px;
  background-color: #f5f6f8;
  padding: 2.5rem 0 2.5rem 1.25rem;
  border-radius: 0.625rem;
  text-align: center;
  margin: 1.25rem auto;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container {
    padding: 0;
  }
}
.contact-form .tel__container--text {
  margin: 7.2rem 0 4.2rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container--text {
    margin: 0 0 3.2rem;
  }
}
.contact-form .tel__container--text p {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
  text-align: left;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container--text p {
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.9;
  }
}
.contact-form .tel__container--link {
  background-color: #ffffff;
  padding: 4.8rem 4.8rem 3.8rem 4.8rem;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container--link {
    padding: 4.8rem 0.8rem 1.8rem 0.8rem;
  }
}
.contact-form .tel__container--link p {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.3rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container--link p {
    font-size: 1.4rem;
  }
}
.contact-form .tel__container--link .tel-link {
  font-size: 4.6rem;
  color: #38a1db;
  text-decoration: none;
  margin-bottom: 1.5rem;
  display: inline-block;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container--link .tel-link {
    font-size: 3.2rem;
  }
}
.contact-form .tel__container--link .sub-text {
  font-size: 1.4rem;
  color: #666;
}
@media only screen and (max-width: 30em) {
  .contact-form .tel__container--link .sub-text {
    font-size: 1rem;
  }
}
.contact-form .form {
  max-width: 960px;
  width: 100%;
  margin: 2rem auto 0;
  padding: 1rem 0 1rem 1rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form {
    margin: 3.5rem auto 0;
    padding: 1rem 0 1rem 0.5rem;
  }
}
.contact-form .form__group {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form__group {
    margin-bottom: 2rem;
  }
  .contact-form .form__group:nth-child(3) {
    margin-bottom: 2.5rem;
  }
}
.contact-form .form__group .form__label {
  display: block;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form__group .form__label {
    font-size: 1.4rem;
  }
}
.contact-form .form__group .form__label .form__required {
  font-size: 1.2rem;
  color: #ffffff;
  margin-right: 1rem;
  background-color: #38a1db;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
}
@media only screen and (max-width: 30em) {
  .contact-form .form__group .form__label .form__required {
    font-size: 0.9rem;
  }
}
.contact-form .form__group .form__input,
.contact-form .form__group .form__textarea {
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  color: #333;
  background-color: #ffffff;
  box-shadow: inset 0 0 0.25rem rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s;
  height: 60px;
}
@media only screen and (max-width: 30em) {
  .contact-form .form__group .form__input,
  .contact-form .form__group .form__textarea {
    font-size: 1.4rem;
    height: 45px;
  }
}
.contact-form .form__group .form__input:focus,
.contact-form .form__group .form__textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: inset 0 0 0.25rem rgba(0, 123, 255, 0.25);
}
.contact-form .form__group .form__textarea {
  resize: none;
  height: 30rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form__group .form__textarea {
    height: 24rem;
  }
}
.contact-form .form .contact-mb {
  margin-bottom: 1.9rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form .contact-mb {
    margin-bottom: 1rem;
  }
}
.contact-form .form__subtext {
  margin-bottom: 8.5rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form__subtext {
    margin-bottom: 6.5rem;
  }
}
.contact-form .form__subtext #form__subtext--privacy-policy {
  display: flex;
  align-items: center;
}
.contact-form .form__subtext #privacy-policy-checkbox {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  width: 15px;
  height: 15px;
  margin-right: 10px; /* ラベルとの間隔を設定 */
  cursor: pointer;
}
.contact-form .form__subtext p, .contact-form .form__subtext--privacy_policy {
  font-size: 1.2rem;
  line-height: 1.8;
}
.contact-form .form__subtext p {
  margin-bottom: 2rem;
}
.contact-form .form__subtext--privacy_policy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  color: inherit;
}
.contact-form .form .link__btn--contact {
  padding: 1.7rem 0 1.7rem 7.4rem;
}
@media only screen and (max-width: 75em) {
  .contact-form .form .link__btn--contact {
    max-width: 233px;
  }
}
@media only screen and (max-width: 56.25em) {
  .contact-form .form .link__btn--contact {
    max-width: 206px;
  }
}
@media only screen and (max-width: 30em) {
  .contact-form .form .link__btn--contact {
    padding: 1.3rem 1.7rem 1.3rem 2.4rem;
  }
}
.contact-form .form .link__btn--contact .link__arrow {
  margin-left: 3.5rem;
}
@media only screen and (max-width: 30em) {
  .contact-form .form .link__btn--contact .link__arrow {
    margin-left: 2rem;
  }
}
.contact-form .form .form__error {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #ff0000;
}
.contact-form .form__submit {
  text-align: center;
}
.contact-form .form__submit .form__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form .form__submit .form__button:hover {
  background-color: #0056b3;
}

.contact-confirm {
  background-color: #f5f6f8;
  padding: 10rem 1.25rem 18rem;
  border-radius: 0.625rem;
  text-align: center;
}
@media only screen and (max-width: 30em) {
  .contact-confirm {
    padding: 6rem 1.25rem 8.3rem;
  }
}
.contact-confirm__wrap {
  max-width: 960px;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .contact-confirm__wrap {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .contact-confirm__wrap {
    padding: 0 1.5rem;
  }
}
.contact-confirm__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.contact-confirm__message {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 30em) {
  .contact-confirm__message {
    font-size: 1.6rem;
  }
}
.contact-confirm__list {
  margin-bottom: 8.3rem;
}
.contact-confirm__item {
  display: flex;
  padding: 2.1rem 0;
  font-size: 1.6rem;
  color: #333;
  border-top: solid 1px #dcdddd;
}
@media only screen and (max-width: 43.75em) {
  .contact-confirm__item {
    display: block;
  }
}
@media only screen and (max-width: 30em) {
  .contact-confirm__item {
    font-size: 1.4rem;
  }
  .contact-confirm__item:nth-child(1) {
    margin-bottom: 0.9rem;
  }
  .contact-confirm__item:nth-child(3) {
    margin-bottom: 0.9rem;
  }
}
.contact-confirm__item:last-child {
  border-bottom: solid 1px #dcdddd;
}
.contact-confirm__item dt {
  width: 18.5%;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 43.75em) {
  .contact-confirm__item dt {
    width: 30%;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 30em) {
  .contact-confirm__item dt {
    width: 40%;
    margin-bottom: 1rem;
  }
}
.contact-confirm__item dd {
  text-align: left;
}
.contact-confirm__item--textline {
  line-height: 1.8;
  font-size: 1.4rem;
  color: #666;
}
.contact-confirm__btn-wrap {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 1.6rem;
}
@media only screen and (max-width: 43.75em) {
  .contact-confirm__btn-wrap {
    flex-direction: column;
  }
}
.contact-confirm form {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .contact-confirm form {
    justify-content: center;
  }
}

.contact-confirm__btn-wrap .business__cta .link__btn {
  display: block;
  text-align: center;
  margin: 0;
  padding: 1.7rem 0;
  width: 100%;
  min-width: 252px;
}
@media only screen and (max-width: 30em) {
  .contact-confirm__btn-wrap .business__cta .link__btn {
    min-width: 180px;
    width: 100%;
    padding: 1.3rem 0;
    font-size: 1.1rem;
  }
}
.contact-confirm__btn-wrap .business__cta .link__btn--arrow {
  transform: rotate(180deg);
}
@media only screen and (max-width: 30em) {
  .contact-confirm__btn-wrap .business__cta .link__btn--arrow::before {
    width: 7px;
    height: 7px;
  }
}
.contact-confirm__btn-wrap .link__btn--contact-sendback {
  position: relative;
  padding-left: 3.8rem;
}
.contact-confirm__btn-wrap .link__btn--contact-sendback::after {
  content: "";
  position: absolute;
  left: 1.9rem;
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 1px;
  background-color: transparent;
}
.contact-confirm__btn-wrap .link__btn--contact-sendnext {
  position: relative;
  padding-right: 3.8rem;
}
.contact-confirm__btn-wrap .link__btn--contact-sendnext::after {
  content: "";
  position: absolute;
  right: 1.9rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #38a1db;
  border-right: 1px solid #38a1db;
  border-radius: 1px;
}
.contact-confirm__btn-wrap .link__btn--contact-sendnext:hover::after {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}

.contact-thanks {
  text-align: center;
  background-color: #f5f6f8;
  padding-bottom: 6rem;
}
.contact-thanks__wrap {
  max-width: 640px;
  padding: 11rem 0;
  margin: 0 auto;
}
@media only screen and (max-width: 43.75em) {
  .contact-thanks__wrap {
    padding: 6rem 3rem;
  }
}
.contact-thanks__title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .contact-thanks__title {
    font-size: 1.6rem;
    margin-bottom: 9rem;
  }
}
.contact-thanks__message {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.8;
  color: #333;
}
@media only screen and (max-width: 30em) {
  .contact-thanks__message {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 112rem;
  overflow: hidden;
}
@media only screen and (max-width: 30em) {
  .hero {
    height: 96vh;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__background .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company {
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  margin-bottom: 16.7rem;
  background-color: #fff;
  padding: 0 25px 0 40px;
}
@media only screen and (max-width: 30em) {
  .company {
    margin: 9.7rem auto;
    padding: 0 25px;
  }
}
.company__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .company__container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 30em) {
  .company__container {
    gap: 5.3rem;
  }
}
.company__left {
  flex: 1;
  text-align: left;
}
.company__right {
  flex: 1.65;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.4rem;
}
.company__right .quotation-link {
  display: inline-block;
  margin-top: 2.5rem;
  text-decoration: underline;
  padding: 0;
  margin-top: 2.5rem;
  transition: transform 0.3s ease;
}
.company__right .quotation-link:hover {
  transform: translateY(-5px);
}

.business {
  max-width: 1184px;
  width: 100%;
  margin: 13.3rem auto;
  padding: 0 40px;
  padding: 0 25px 0 40px;
  margin: 18.3rem auto 19.5rem;
  background-color: #fff;
}
@media only screen and (max-width: 30em) {
  .business {
    padding: 0 25px;
    margin-top: 9.7rem;
    margin-bottom: 11.7rem;
  }
}
.business__container {
  max-width: 1200px;
  margin: 0 auto;
}
.business__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10.8rem;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .business__header {
    flex-direction: column;
  }
}
@media only screen and (max-width: 30em) {
  .business__header {
    gap: 2.6rem;
    padding-bottom: 5.5rem;
  }
}
.business__title-container {
  flex: 1;
  text-align: left;
}
.business__description {
  flex: 2;
  margin-top: 1.6rem;
  text-align: left;
}
.business__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 62.5em) {
  .business__items {
    display: none;
  }
}
@media only screen and (max-width: 62.5em) and (max-width: 30em) {
  .business__items {
    margin-bottom: 5.5rem;
  }
}
.business__items .business__item {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 62.5em) {
  .business__items .business__item {
    max-width: calc(40% - 20px);
  }
}
@media only screen and (max-width: 62.5em) and (max-width: 30em) {
  .business__items .business__item {
    max-width: calc(55% - 20px);
  }
}
.business__items .business__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 260/220;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.business__items .business__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 1;
  transition: background 0.3s ease;
}
.business__items .business__item:hover img {
  transform: scale(1.1);
}
.business__items .business__item .business__item-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  color: #fff;
  border-radius: 4px;
  z-index: 10;
}
.business__items-sp {
  display: none;
}
@media only screen and (max-width: 62.5em) {
  .business__items-sp {
    display: block;
  }
  .business__items-sp--img {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 6.8rem;
  }
}
@media only screen and (max-width: 62.5em) and (max-width: 30em) {
  .business__items-sp--img {
    gap: 1.1rem;
    margin-bottom: 1.1rem;
  }
}
.business__cta {
  text-align: center;
}
.business__cta .business__button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.3s;
  border: 1px solid transparent;
}
.business__cta .business__button:hover {
  background-color: #38a1db;
  border: 1px solid #38a1db;
}

.recruit {
  background-color: #38a1db;
  border-radius: 0 20px 20px 0;
  width: 91.5%;
  margin-bottom: 13rem;
  position: relative;
}
@media only screen and (max-width: 30em) {
  .recruit {
    width: 92.5%;
  }
}
.recruit__container {
  padding: 17.5rem 74rem 22.5rem 19rem;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 81.25em) {
  .recruit__container {
    padding-right: calc((100vw - 1300px) / 2 + 55rem);
  }
}
@media only screen and (max-width: 75em) {
  .recruit__container {
    padding-right: calc((100vw - 1100px) / 2 + 55rem);
  }
}
@media only screen and (max-width: 62.5em) {
  .recruit__container {
    display: none;
  }
}
.recruit__content {
  flex: 1;
}
.recruit__content .recruit__button {
  display: inline-block;
  background-color: #fff;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.recruit__content .recruit__button:hover {
  background-color: #0056b3;
  color: #fff;
}
.recruit__image {
  flex: 1;
  position: absolute;
  top: 20%;
  left: 82.5%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
@media only screen and (max-width: 62.5em) {
  .recruit__image {
    left: 50.5%;
  }
}
.recruit__image img {
  max-width: 760px;
  aspect-ratio: 760/480;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 81.25em) {
  .recruit__image img {
    width: 50vw;
    max-width: 930px;
    min-width: 300px;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
}
@media only screen and (max-width: 62.5em) {
  .recruit__image img {
    width: 100vw;
    left: 50.5%;
  }
}
.recruit__container--sp {
  display: none;
}
@media only screen and (max-width: 62.5em) {
  .recruit__container--sp {
    display: block;
    padding: 8rem;
  }
}
@media only screen and (max-width: 62.5em) and (max-width: 30em) {
  .recruit__container--sp {
    padding: 8.8rem 3rem 10rem 2.5rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .recruit__container--sp .recruit__content--top {
    position: relative;
  }
  .recruit__container--sp .recruit__image {
    position: relative;
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 62.5em) and (max-width: 30em) {
  .recruit__container--sp .recruit__image {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .recruit__container--sp .recruit__image__img {
    transform: none;
    transition: none;
  }
}

.recruit__img-scroll {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 30em) {
  .recruit__img-scroll {
    margin-bottom: 0.5rem;
  }
}

.reverse {
  margin-bottom: 0;
}

.page-header--recruit {
  margin-bottom: 9.3rem;
}
@media only screen and (max-width: 30em) {
  .page-header--recruit {
    margin-bottom: 4.3rem;
  }
}

.recruit-profile {
  max-width: 1184px;
  width: 100%;
  margin: 0 auto 13.3rem;
  margin-top: 12.5rem;
  margin-bottom: 11.4rem;
}
@media only screen and (max-width: 43.75em) {
  .recruit-profile {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .recruit-profile {
    padding: 0;
    margin-top: 6rem;
    margin-bottom: 9rem;
  }
}
.recruit-profile .contents-header__title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 4.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 30em) {
  .recruit-profile .contents-header__title {
    font-size: 2.2rem;
    margin-bottom: 2.3rem;
  }
}
.recruit-profile .contents-header__subtext {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.9;
}
@media only screen and (max-width: 30em) {
  .recruit-profile .contents-header__subtext {
    font-size: 1.4rem;
    padding: 0 2rem;
  }
}

.recruit-detail {
  max-width: 1184px;
  width: 100%;
  margin: 0 auto 13.3rem;
  padding: 0 4rem;
}
@media only screen and (max-width: 30em) {
  .recruit-detail {
    padding: 0 2.7rem;
    margin-bottom: 4.3rem;
  }
}
.recruit-detail .recruit-profile__container {
  margin-bottom: 8.3rem;
}
@media only screen and (max-width: 30em) {
  .recruit-detail .recruit-profile__container {
    margin-bottom: 3.3rem;
  }
}
.recruit-detail .recruit-profile__container .component-table__row .recruit-table__label {
  width: 20%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 30em) {
  .recruit-detail .recruit-profile__container .component-table__row .recruit-table__label {
    width: 30%;
  }
}
.recruit-detail .recruit-profile__container .component-table__row .recruit-table__value {
  width: 100%;
  font-size: 1.6rem;
}
.recruit-detail .recruit-table__content:nth-child(2) {
  padding-bottom: 1rem;
}
.recruit-detail .recruit-table__content:nth-child(3) {
  padding-bottom: 0.7rem;
}
.recruit-detail .recruit__cta {
  font-size: 2rem;
  line-height: 2;
  max-width: 485px;
  margin: 0 auto;
}
.recruit-detail .recruit__cta p {
  margin-bottom: 4.2rem;
}
@media only screen and (max-width: 30em) {
  .recruit-detail .recruit__cta p {
    margin-bottom: 3.5rem;
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.recruit-detail .recruit__cta .link__btn--center {
  margin-right: 10.6rem;
}
@media only screen and (max-width: 75em) {
  .recruit-detail .recruit__cta .link__btn--center {
    margin-right: auto;
  }
}

.recruit__sec--cta {
  padding-top: 6.5rem;
  padding-bottom: 20rem;
}
@media only screen and (max-width: 30em) {
  .recruit__sec--cta {
    padding-bottom: 2.4rem;
  }
}