@charset "UTF-8";

* {
  min-inline-size: 0
}

:root {
  --l_width: 1200px;
  --m_width: 1000px;
  --s_width: 800px;
  --font--en: "Barlow Condensed", "Noto Sans JP", sans-serif;
  --font--jp: "Noto Sans JP", sans-serif;

  --header__height: 9rem;
  --center_percent: 90%;
  --section_margin: 12.5em;
  --black: #222222;
  --middle-gray: #A7A6A6;
  --dark-blue: #183366;
  --main-blue: #228ACB;
  --light-blue: #DBEDFB;
  --bg__gray: #F5F5F5;
  --bg__blue: #F4FBFF;
  --dark-red: #BA1702;
  --easing_1: cubic-bezier(0.65, 0.05, 0.36, 1);
  --easing_2: cubic-bezier(0.79, 0.14, 0.15, 0.86);
  --hover_opacity: 0.5;
  --duration__common: .2s;
  --duration--200: .2s;
  --duration--400: .4s;
  --duration--600: .6s;
  /* --duration--800: .8s; */
  --duration--800: 1.4s;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header__height) + 2em);
}

body {
  /* font-feature-settings: "palt"; */
  font-family: var(--font--jp);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2;
  color: var(--black);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.container--L {
  max-width: var(--l_width);
  width: var(--center_percent);
  margin: 0 auto;
}

.container--M {
  max-width: var(--m_width);
  width: var(--center_percent);
  margin: 0 auto;
}

.container--S {
  max-width: var(--s_width);
  width: var(--center_percent);
  margin: 0 auto;
}

section {
  margin-block: var(--section_margin);
}

.from--tb {
  display: none;
}

.from--sp {
  display: none;
}

.indention p+p {
  margin-top: 1em;
}

.indention span {
  display: inline-block;
}

.ff--en {
  font-family: var(--font--en);
  line-height: 1;
}

.fs--12 {
  font-size: 1.2rem;
}

.fs--14 {
  font-size: 1.4rem;
}

.fw--300 {
  font-weight: 300;
}

.fw--500 {
  font-weight: 500;
}

.fw--700 {
  font-weight: 700;
}

.fw--400 {
  font-weight: 400;
}

.lh--100 {
  line-height: 1.00;
}

.lh--125 {
  line-height: 1.25;
}

.lh--150 {
  line-height: 1.5;
}

.lh--175 {
  line-height: 1.75;
}

.section__margin--M {
  margin-block: 7.5em;
}

.mt--1em {
  margin-top: 1em;
}

.mt--80 {
  margin-top: 5em;
}

.mt--120 {
  margin-top: 7.5em;
}

.mb--40 {
  margin-bottom: 2.5em;
}

.mb--64 {
  margin-bottom: 4em;
}

.mb--80 {
  margin-bottom: 5em;
}

.mb--120 {
  margin-bottom: 7.5em;
}

.uppercase {
  text-transform: uppercase;
}


/*===============/header===============*/

.header {
  background-color: #ffffffBF;
  position: fixed;
  top: 0;
  z-index: 9;
  width: min(90%, var(--l_width));
  left: 50%;
  top: 1em;
  transform: translateX(-50%);
  height: var(--header__height);
  padding-inline: 2em;
  border-radius: 1em;
}

.header__wrap {
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 2em;
}

.header__logo {
  position: relative;
  z-index: 5;
}

.header__logo__link {
  /* background-color: turquoise; */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration__common);
  width: min(16.67vw, 24rem);
  position: relative;
}

.header__logo__img {
  position: absolute;
  width: 100%;
  transition: .2s;
  /* width: min(25vw, 36rem); */
}

.header__logo__img.--white {
  opacity: 0;
  visibility: hidden;
}

.header__nav__wrap {
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav__item {
  display: flex;
  position: relative;
}

.nav__item__link,
.nav__item__sub__item {
  font-size: clamp(1rem, 1.04vw, 1.4rem);
  line-height: 1;
  transition: var(--duration__common);
  display: flex;
  gap: 0.5em;
}

.nav__item__link:hover,
.nav__item__sub__item:hover {
  opacity: var(--hover_opacity);
}

.header__nav__btn__wrap {
  display: none;
  z-index: 9;
}

.nav__item:has(.nav__item__sub) .nav__item__link::after {
  content: '';
  width: 0.625em;
  height: 0.625em;
  /* background-color: tomato; */
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  rotate: 45deg;
  transform: translateY(-0.125em);
}

.nav__item:has(.nav__item__sub):hover .nav__item__sub {
  opacity: 1;
  visibility: visible;
}

.nav__item__sub {
  /* background-color: tomato; */
  transition: var(--duration__common);
  visibility: hidden;
  opacity: 0;
  padding-top: 1em;
  filter: drop-shadow(0px 0px 4px #00000040);
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 0em);
  left: 50%;
  transform: translateX(-50%);
}

.nav__item__sub__list {
  background-color: #fff;
  border-radius: 0.5em;
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.nav__other__list {
  display: flex;
  align-items: center;
  gap: 1em;
}

.nav__other__item {
  font-size: clamp(1rem, 1.04vw, 1.4rem);
  line-height: 1;
}

.nav__other__item.common__btn {
  background-color: var(--main-blue);
  color: #fff;
}

.nav__other__item.common__btn .common__btn__arrow {
  background-color: #fff;
  background-image: url(../img/common/icon__arrow--blue.svg);
}

.nav__other__item.common__btn:hover {
  background-color: transparent;
  color: var(--main-blue);
}

.nav__other__item.common__btn:hover .common__btn__arrow {
  background-color: var(--main-blue);
  background-image: url(../img/common/icon__arrow--white.svg);
}

.nav__other__item.--tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: bold;
  gap: 0.25em;
  white-space: nowrap;
}

.nav__other__tel__number {
  font-size: clamp(1.4rem, 1.39vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.nav__other__tel__number::before {
  content: '';
  width: 0.75em;
  height: 0.75em;
  background-image: url(../img/common/icon__tell--black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.nav__other__tel__note {
  font-size: 1.2rem;
  font-size: clamp(0.6rem, 0.83vw, 1.2rem);
}

.nav__other__item.--sns img {
  width: 1.5em;
}


/*===============main===============*/
/*=====loading=====*/

.top__loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100svh;
  background-color: #fff;
  transition: 1s 1s;
}

.top__loading.is-finished {
  opacity: 0;
  visibility: hidden;
}

.top__loading__slider,
.top__loading__slider .splide__track,
.top__loading__slider .splide__list {
  height: 100%;
}

.top__loading__slider__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top__loading__slider__item__inner {
  width: 35rem;
  height: 35rem;
  overflow: hidden;
  position: relative;
  transition: 1s var(--easing_1);
}

.top__loading__slider__item__img__wrap.full-size {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100svh;
}

.top__loading__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=====/loading=====*/
/*=====common=====*/
/* =========== トップに戻るボタン =========== */

.btn__to-top {
  position: fixed;
  z-index: 9;
  right: 2em;
  bottom: 2em;
  width: 3em;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

.btn__to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.btn__to-top img {
  width: 100%;
}

/* =========== /トップに戻るボタン =========== */
/* =========== ホバーアニメーション =========== */

.hover--fade {
  transition: var(--duration__common);
}

.hover--fade:hover {
  opacity: var(--hover_opacity);
}

/* ========== /ホバーアニメーション/ ========== */
/* =========== 出現アニメーション =========== */

.target {
  transition: .6s var(--easing_1);
}

.link--arrow::after {
  content: '';
  inline-size: .9em;
  block-size: .9em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.link--mini {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  color: #ffffff;
}

.link--mini::after {
  content: '';
  inline-size: .8em;
  block-size: .8em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.target.fade--blur {
  transition: var(--duration--600) var(--easing_1);
}

.fv__target {
  transition: .6s var(--easing_2);
}

.fade--blur {
  opacity: 0;
  filter: blur(5px);
}

.fade--blur.show {
  opacity: 1;
  filter: blur(0);
}

.fade--up-blur {
  opacity: 0;
  transform: translateY(1em);
  filter: blur(5px);
}

.fade--up-blur.show {
  opacity: 1;
  transform: translateY(0em);
  filter: blur(0);
}

.fv__target.fade--blur.show {
  opacity: 1;
  filter: blur(0) drop-shadow(0 0 20px #00000080);
}

.target.fade--up {
  opacity: 0;
  transform: translateY(1em);
  transition: .6s var(--easing_1);
}

.target.show.fade--up {
  opacity: 1;
  transform: translateY(0);
}

/* ========== /出現アニメーション/ ========== */
/* =========== セクションタイトル =========== */

.section__title__wrap {
  display: flex;
  gap: 1em;
  line-height: 1;
}

.section__title__wrap.--v--center {
  flex-direction: column;
  align-items: center;
}

.section__title__wrap.--v--left {
  flex-direction: column;
  align-items: flex-start;
}

.section__title--main {
  font-size: 3.5em;
  line-height: 0.75;
}

.section__title--sub {
  font-size: 1.4rem;
  color: var(--main-blue);
}


/* ========== /セクションタイトル/ ========== */
/* =========== ボタンスタイル =========== */

.common__btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1em;
  background-color: #fff;
  border: 1px solid #0086CB40;
  padding: 0.5em 1em;
  border-radius: 5em;
  transition: var(--duration__common);
}

.common__btn__arrow {
  background-color: var(--main-blue);
  width: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(../img/common/icon__arrow--white.svg);
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--duration__common);
}

.common__btn:hover {
  color: #fff;
  background-color: var(--dark-blue);
}

.common__btn:hover .common__btn__arrow {
  background-color: #fff;
  background-image: url(../img/common/icon__arrow--dark-blue.svg);
}

/* ========== /ボタンスタイル/ ========== */
/* ========== /1文字ずつ表示/ ========== */

.text__anime {
  overflow: hidden;
}

.text__anime span {
  display: inline-block;
}

/* ========== /1文字ずつ表示/ ========== */
/* =========== その他 =========== */


.color--blue {
  color: var(--main-blue);
}

.text--center {
  text-align: center;
}

.--fade-in {
  opacity: 0;
  transition: var(--duration--800);
}

.fade--up {
  opacity: 0;
  transform: translateY(2em);
  transition: var(--duration--800);
}


.icon__check {
  display: flex;
  align-items: center;
  gap: 1em;
}

.icon__check::before {
  content: '';
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__check--blue.svg);
  background-size: contain;
  background-position: center;
}

/* ========== /その他/ ========== */
/*=====/common=====*/
/*=====top=====*/


.top__fv {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.top__fv__slider {
  width: 100vw;
  height: 100svh;
}

.top__fv__slider .splide__track {
  width: 100%;
  height: 100%;
}

.top__fv__slider__item {
  width: 100%;
  height: 100%;
}

.top__fv__slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  transition: transform 6s ease-out;
}

.top__fv__slider__item.is-active img {
  transform: scale(1.1);
}

.top__fv__catch {
  font-size: min(4em, 2.78vw);
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1.65;
  opacity: 0;
  filter: blur(4px);
  transition: 1s 0.4s;
}

.top__fv__catch.show {
  opacity: 1;
  filter: blur(0);
}

@media (min-width: 1334px) {
  .top__fv__catch {
    left: 1em;
  }
}


.top__intro {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  /* padding-bottom: 10em; */
}

.top__intro::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% + 10em);
  top: 0;
  left: 0;
  background: linear-gradient(180.07deg, #0086CB 0.06%, #32BFFF 61.92%, #ffffff00 100%);
}

.top__intro__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top__intro__catch {
  display: flex;
  justify-content: center;
  font-size: 9vw;
  white-space: nowrap;
  color: #ffffff4D;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.top__intro__content {
  margin-top: 6.25em;
  display: flex;
  align-items: center;
  gap: 4em;
  color: #fff;
}

.top__intro__img {
  flex-basis: 50%;
  flex-shrink: 0;
}

.top__intro__detail {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.top__intro__detail__catch {
  font-size: 3em;
  line-height: 1.25;
}

.top__intro__detail__text {
  font-size: 1.125em;
}

.top__about {
  margin-top: 10em;
}

.top__about__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}

.top__about__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

.top__about__title span {
  font-weight: normal;
  color: var(--dark-blue);
}

.top__about__catch {
  text-align: center;
  font-size: 2em;
}

.top__about__text {
  margin-top: 2em;
  text-align: center;
}

.top__about__text span {
  color: var(--main-blue);
  font-weight: 700;
}

.top__service__wrap {
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.top__service__header {
  display: flex;
  justify-content: space-between;
  gap: 4em;
}

.top__service__header .section__title__wrap {
  flex-shrink: 0;
}

.top__service__header__text {
  width: min(100%, 80rem);
}

.top__service__slider {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.top__service__slider__img {
  width: 100%;
}



.top__works__content {
  margin-top: 4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4em;
}

.top__works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
}

.top__works__item__img {
  overflow: hidden;
  border-radius: 1em;
  /* 画像の縦横比を調整する場合はpadding-topなどを使用 */
}

.top__works__item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.top__works__item__title {
  margin-top: 0.5em;
  line-height: 1.5;
}

.top__works__item.hidden {
  display: none;
}

.common__btn.top__works__toggle-btn .common__btn__arrow {
  rotate: 90deg;
}

.common__btn.top__works__toggle-btn.close .common__btn__arrow {
  rotate: -90deg;
}

.top__company {
  position: relative;
  padding-block: 10em;
  background-color: #F0F3F6;
  margin-bottom: 0;
  overflow: hidden;
}


.top__company__bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
}

.top__company__bg::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #F0F3F6 100%);
}

.top__company__bg__img {
  width: 100%;
  opacity: 0.2;
}


.top__company__wrap {
  position: relative;
  z-index: 2;
}

.top__company__message {
  margin-top: 4em;
}

.top__company__message .section__title--main {
  font-size: 2em;
}

.top__company__message .section__title--sub {
  font-size: 0.75em;
}

.top__company__message__wrap {
  margin-top: 4em;
  display: flex;
  align-items: center;
  gap: 4em;
}

.top__company__message__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.top__company__message__catch {
  font-size: 1.75em;
}

.top__company__message__img__wrap {
  flex-basis: 35%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1em;
  font-size: 1.4rem;
  line-height: 1.5;
}

.top__company__message__img {
  width: 100%;
}

.top__company__message__img__person {
  width: 100%;
}

.top__company__table {
  background-color: #fff;
  width: 100%;
  margin-top: 6.25em;
  border-radius: 1em;
}

.top__company__table tr {
  display: flex;
  border-right: 1px solid #0086CB40;
  border-bottom: 1px solid #0086CB40;
}

.top__company__table tr:first-child {
  border-top: 1px solid #0086CB40;
  border-radius: 1em 1em 0 0;
  overflow: hidden;
}

.top__company__table tr:last-child {
  overflow: hidden;
  border-bottom: 1px solid #0086CB40;
  border-radius: 0 0 1em 1em;
}

.top__company__table th,
.top__company__table td {
  padding-block: 1em;
}

.top__company__table th {
  width: 25rem;
  flex-shrink: 0;
  background-color: var(--main-blue);
  color: #fff;
  text-align: center;
}

.top__company__table td {
  width: 100%;
  padding-inline: 2em;
}

.top__company__table td.row__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0em 2em;
}

.top__company__table .icon__gmap {
  display: inline-flex;
  text-decoration: underline;
  align-items: center;
  gap: 0.25em;
  color: var(--main-blue);
}

.top__company__table .icon__gmap::before {
  content: '';
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__pin--blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}





.top__recruit {
  margin-top: 0;
  background-color: var(--main-blue);
  color: #fff;
  padding-bottom: 7.5em;
}

.top__recruit__header {
  position: relative;
}

.top__recruit__header__img {
  width: 100%;
}

.top__recruit__header__river {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: absolute;
  bottom: 1em;
}

.top__recruit__header__river__item {
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 6.67vw;
  line-height: 0.8;
  padding-right: 1vw;
  opacity: 0.5;
}

.top__recruit__header__river__item:nth-child(odd) .top__recruit__header__river:not(.no-tick) {
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}

.top__recruit__header__river__item:nth-child(even) .top__recruit__header__river:not(.no-tick) {
  animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}

.top__recruit__header__river:not(.no-tick) .top__recruit__header__river__item:nth-child(odd) {
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}

.top__recruit__header__river:not(.no-tick) .top__recruit__header__river__item:nth-child(even) {
  animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}


@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.top__recruit__content {
  margin-top: 6.25em;
  display: flex;
  flex-direction: column;
  gap: 6.25em;
}

.top__recruit__intro__wrap {
  display: flex;
  align-items: flex-start;
  gap: 4em;
}

.top__recruit__intro {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.top__recruit__intro .section__title--sub,
.top__rec__info .section__title--sub {
  color: #fff;
}

.top__recruit__intro__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.top__recruit__intro__catch {
  font-size: 1.75em;
}



.top__recruit__intro__link__list {
  flex-basis: 47.5%;
  flex-shrink: 0;
  display: flex;
  gap: 1em;
}

.top__recruit__intro__link__item {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 1em;
  overflow: hidden;
}

.top__recruit__intro__link__item img {
  width: 100%;
}

.top__recruit__intro__link__item .common__btn {
  position: absolute;
  bottom: 1em;
  font-size: 1.2rem;
  color: var(--black);
}

.top__recruit__intro__link__item .common__btn:hover {
  color: #fff;
}


.top__recruit__detail {
  display: flex;
  align-items: center;
  gap: 4em;
}

.top__recruit__detail__img {
  flex-basis: 54.17%;
  flex-shrink: 0;
}

.top__recruit__detail__img img {
  width: 100%;
}

.top__recruit__detail__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.top__recruit__detail__catch {
  font-size: 1.75em;
}


.top__rec__info__content {
  margin-top: 4em;
  width: min(100%, var(--m_width));
  margin-inline: auto;
}

.top__rec__info__list__wrap+.top__rec__info__list__wrap {
  margin-top: 6.25em;
}

.top__rec__info__list__wrap__title {
  font-size: 1.75em;
  border-bottom: 1px solid #fff;
  line-height: 1;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}

.top__rec__info__list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.feature__faq__item {
  background-color: #fff;
  border-radius: 1em;
  overflow: hidden;
}

.faq__question-wrap {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-blue);
  padding: 0.5em;
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
}

/* トグルボタン（開閉アイコン）のスタイル */
.faq__toggle-btn {
  position: absolute;
  right: 0.75em;
  width: 0.75em;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

/* プラス記号（横線） */
.faq__toggle-btn::before,
.faq__toggle-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-blue);
  transition: transform var(--duration__common);
  border-radius: 5px;
}

.faq__toggle-btn::before {
  width: 2px;
  height: 100%;
}

.faq__toggle-btn::after {
  width: 100%;
  height: 2px;
}

.faq__answer-box {
  height: 0;
  opacity: 0;
  transition: height var(--duration__common), opacity var(--duration__common);
  padding: 0em;
}

.faq__answer__table__wrap {
  padding: 4em 4em;
}

.faq__answer__table {
  width: 100%;
  color: var(--black);
  padding-inline: 3em;
}

.faq__answer__table tr {
  display: flex;
  align-items: center;
  padding-block: 1.5em;
  border-bottom: 1px solid #0086CB40;
}

.faq__answer__table tr:first-child {
  border-top: 1px solid #0086CB40;
}

.faq__answer__table td {
  padding-inline: 2em;
}

.faq__answer__table td:nth-child(1) {
  width: 20rem;
  flex-shrink: 0;
}





.feature__faq__item.is-open .faq__question-wrap {
  background-color: #F0F3F6;
}

.feature__faq__item.is-open .faq__toggle-btn::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature__faq__item.is-open .faq__answer-box {
  opacity: 1;
}

.top__news__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4em;
}

.top__news__list {
  margin-top: 4em;
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.top__news__item {
  display: flex;
  align-items: flex-start;
  gap: 3em;
}

.top__news__item.hidden {
  display: none;
}

.top__news__item__img {
  flex-shrink: 0;
  width: min(30%, 30rem);
  border-radius: 1em;
  overflow: hidden;
}

.top__news__item__img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.top__news__item__content {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.top__news__item__date,
.top__news__item__body {
  font-size: 1.4rem;
}

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

.contact__form__header {
  margin-bottom: 3em;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.contact__form__wrap:has(.mw_wp_form_complete) .contact__form__header__text {
  display: none;
}

.contact__form__header__text__note {
  color: red;
}

.contact__table {
  width: 100%;
}

.contact__table tbody {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.contact__table tr {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contact__table tr td:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 1em;
}

.contact__table .need {
  flex-shrink: 0;
}

.need {
  background-color: red;
  line-height: 1;
  padding: 0.375em 0.5em;
  border-radius: 3px;
  color: #fff;
  font-size: 0.875em;
}

.contact__table input[type=text],
.contact__table input[type=email],
.contact__table input[type=tel],
.contact__table input[type=file],
.contact__table select,
.contact__table textarea,
.privacypolicy_text {
  width: 100%;
  border-radius: 0.8rem;
  padding: 1em 1em;
  background-color: #fafafa;
}

.contact__table ::placeholder {
  font-size: 0.875em;
  color: #A2A2A2;
}

.privacypolicy_content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: flex-end;
}

.privacypolicy_text {
  padding: 1em;
  font-size: 1.2rem;
  font-weight: 300;
  height: 15em;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.privacy_item_title {
  margin-bottom: 0.5em;
  text-decoration: underline;
}

.privacypolicy_check a {
  text-decoration: underline;
}

.privacypolicy_check label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.privacypolicy_check input[type="checkbox"] {
  width: 1.5em;
  height: 1.5em;
}

.contact__submit {
  position: relative;
  display: flex;
  align-items: center;
}

.contact__submit input {
  min-width: 18rem;
  background-color: var(--main-blue);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 2em;
  padding: 0.5em 1em;
  display: flex;
  transition: .2s;
  text-align: center;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  margin-right: 0;
}

.privacypolicy_check .mwform-checkbox-field-text {
  display: flex;
  align-items: center;
}

.privacypolicy_check .mwform-checkbox-field-text .need {
  margin-left: 0.5em;
}

.contact__table .select {
  width: min(40rem, 100%);
  position: relative;
  display: flex;
  align-items: center;
  /* cursor: pointer; */
}

.contact__table .select select {
  cursor: pointer;
}

.contact__table .select::after {
  content: '';
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  right: 1.5em;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
}

.page--confirmation .contact__table .select::after {
  content: none;
}

.contact__cta__content {
  background-color: #F0F3F6;
  padding: 2em 2em;
  border-radius: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}

.contact__cta__list {
  /* background-color: turquoise; */
  position: relative;
  display: flex;
  width: min(90rem, 100%);
}

.contact__cta__list::after {
  content: '';
  width: 2px;
  height: 100%;
  background-color: var(--main-blue);
  position: absolute;
  left: 50%;
}

.contact__cta__item {
  flex-basis: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
}

/* .contact__cta__item:first-child {
  border-right: 2px solid var(--main-blue);
} */

.contact__cta__item__text,
.contact__cta__note {
  font-weight: 700;
  font-size: 1.25em;
}

.contact__cta__item__number {
  font-size: 1.75em;
  color: var(--main-blue);
}

.contact__cta__item__number span {
  font-weight: 700;
}


/*=====/top=====*/
/*=====interview=====*/

.inter__fv {
  width: 100vw;
  height: 100svh;
  background-color: var(--main-blue);
  margin-block: 0;
  color: #fff;
  position: relative;
}

.inter__fv__img,
.inter__fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.inter__fv__img::before {
  content: '';
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--main-blue) 0%, transparent 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.inter__fv__content {
  position: absolute;
  z-index: 2;
  left: 8.33vw;
  /* background-color: tomato; */
  top: calc((var(--header__height) / 2) + 50%);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: min(7em, 10vh);
}

.inter__fv__header {
  display: flex;
  flex-direction: column;
  /* filter: drop-shadow(0 2px 4px #00000080); */
}

.inter__fv__title {
  font-size: 3.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1;
}

.inter__fv__catch {
  font-size: 2em;
  line-height: 1.5;
  margin-block: 1em 0.75em;
}

.inter__fv__name {
  font-size: 1.25em;
}

.inter__fv__index__title {
  border-bottom: 1px solid #fff;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}

.inter__fv__index__list {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1.5em;
  font-weight: 400;
}

.inter__fv__index__item {
  display: flex;
  align-items: center;
  gap: 2em;
}

.inter__fv__index__item__number {
  width: 2em;
  text-align: center;
}

.interview {
  margin-top: 0;
}

.interview__list__wrap {
  background-color: #F0F3F6;
  padding-block: calc(var(--section_margin) / 2 * 1.5);
}

.interview__wide__img+.interview__list {
  margin-top: calc(var(--section_margin) / 2 * 1.5);
}

.interview__item {
  display: flex;
  align-items: center;
  gap: 6.25em;
}

.interview__item:nth-child(even) {
  flex-direction: row-reverse;
}

.interview__item+.interview__item {
  margin-top: calc(var(--section_margin) / 2 * 1.5);
}

.interview__item>* {
  flex-basis: 50%;
}

.interview__item__img img {
  width: 100%;
}

.interview__item__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  color: var(--dark-blue);
  font-weight: bold;
}

.interview__item__header {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.interview__item__number {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1;
  font-size: 2.5em;
  color: var(--main-blue);
}

.interview__item__q {
  font-size: 1.125em;
  line-height: 1.5;
}

.interview__item__a {
  font-size: 1.25em;
}

.interview__wide__img,
.interview__wide__img img {
  width: 100%;
}

.top__schedule__list {
  width: min(53rem, 100%);
  color: var(--main-blue);
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.top__schedule__item {
  display: flex;
  align-items: center;
  gap: 2em;
}

.top__schedule__item__time {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.top__schedule__item__time__text {
  position: absolute;
  top: calc(100% + 0.5em);
}

.top__schedule__item__line {
  flex-shrink: 0;
  width: 5em;
  height: 1px;
  background-color: var(--main-blue);
}

.top__schedule__item__title {
  font-size: 1.125em;
  line-height: 1.5;
}

.top__attraction__wrap {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}

.top__attraction__header {
  flex-shrink: 0;
}

.top__attraction__header .section__title__wrap {
  position: sticky;
  top: calc(var(--header__height) + 4em);
}

/*=====/interview=====*/
/*===============/main===============*/
/*===============footer===============*/

.footer__entry {
  background-color: var(--main-blue);
  display: flex;
  justify-content: center;
  padding-block: 4em;
  color: #fff;
}

.footer__entry .section__title--sub {
  color: #fff;
}

.footer__content {
  background-color: var(--dark-blue);
  padding-block: 5em;
  padding-inline: 2em;
  color: #fff;
  position: relative;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4em;
}

.footer__detail {
  display: flex;
  align-items: center;
  gap: 4em;
}

.footer__logo img {
  width: 28rem;
}

.footer__address {
  font-size: 1.4rem;
  line-height: 1.5;
}

.footer__copyright {
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer__page-top {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: min(9.72vw, 14rem);
}

.footer__page-top img {
  width: 100%;
}


/*===============/footer===============*/


@media screen and (max-width: 900px) {
  :root {
    --header__height: 6rem;
    --section_margin: 8em;
  }

  body {
    font-size: 1.4rem;
  }

  section {
    margin: var(--section_margin) 0;
  }

  .from--tb {
    display: block;
  }

  .none--tb {
    display: none;
  }

  /*===============header===============*/


  .header {
    width: calc(100% - 2rem);
    top: 1rem;
    left: 1rem;
    transform: translateX(0);
    padding-inline: 1em;
  }

  .header__logo__link {
    width: min(20rem, 50vw);
  }

  /* .header__logo__img {
    width: min(20rem, 50vw);
  } */

  .header__nav__wrap {
    display: none;
    background-color: #fff;
    border-radius: 1em;
    width: 100%;
    height: calc(100dvh - 2rem);
    padding-top: calc(var(--header__height) + 0em);
    padding-inline: 2em;
    padding-bottom: 40dvh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: scroll;
    gap: 2em;
    visibility: hidden;
    opacity: 0;
    transition: all var(--duration__common) cubic-bezier(0.79, 0.14, 0.15, 0.86);
    flex-direction: column;
    align-items: flex-start;
  }

  .header.open .header__nav__wrap {
    display: flex;
    filter: drop-shadow(0 0 1rem #00000040);
    visibility: visible;
    opacity: 1;
  }

  .nav__list {
    width: 100%;
    flex-direction: column;
    gap: 0;
    font-size: 1.125em;
  }

  .nav__item {
    width: 100%;
    flex-direction: column;
    border-bottom: 1px solid #00000080;
  }

  .nav__item__link {
    width: 100%;
    padding-block: 1.5em;
    display: flex;
    justify-content: space-between;
    font-size: 1em;
  }

  .nav__item:has(.nav__item__sub) .nav__item__link::after {
    content: none;
  }


  .nav__item__sub {
    padding-top: 0;
    visibility: visible;
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    filter: none;
  }

  .nav__item__sub__list {
    border-radius: 0;
    border-top: 1px solid #0000001A;
  }

  .nav__item__sub__item {
    font-size: 0.875em;
  }

  .nav__other__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2em;
  }

  .nav__other__item {
    font-size: 1em;
  }

  .nav__other__item.--contact {
    justify-content: center;
  }

  .nav__other__tel__number {
    font-size: 2rem;
  }

  .nav__other__tel__note {
    font-size: 1.4rem;
  }

  .header__nav__btn__wrap {
    display: flex;
  }

  .header__nav__btn {
    cursor: pointer;
    width: calc(var(--header__height) * 0.8);
    height: calc(var(--header__height) * 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .header__nav__btn__line {
    position: absolute;
    background-color: var(--black);
    width: 60%;
    left: 20%;
    height: 1px;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  }

  .header__nav__btn__line:nth-child(1) {
    top: 35%;
  }

  .header__nav__btn__line:nth-child(2) {
    top: 65%;
  }

  .header__nav__btn.open .header__nav__btn__line:nth-child(1) {
    top: 50%;
    transform: rotate(25deg);
  }

  .header__nav__btn.open .header__nav__btn__line:nth-child(2) {
    top: 50%;
    transform: rotate(-25deg);
  }

  .header__nav__btn.open .header__nav__btn__line:nth-child(3) {
    opacity: 0;
  }

  /*===============main===============*/
  /*=====common=====*/

  .section__title--main {
    font-size: 3em;
  }

  /*=====/common=====*/
  /*=====top=====*/


  .top__fv__catch {
    left: 1em;
    top: auto;
    bottom: 1em;
    transform: translateX(0);

    font-size: min(2em, 8vw);
  }

  .top__intro::before {
    height: calc(100% + 30em);
  }

  .top__intro__catch {
    font-size: 8.9vw;
  }

  .top__intro__detail {
    display: contents;
  }

  .top__intro__content {
    flex-direction: column;
  }

  .top__intro__detail__catch {
    order: 1;
    font-size: min(3em, 9.5vw);
  }

  .top__intro__img {
    order: 2;
  }

  .top__intro__detail__text {
    order: 3;
  }

  .top__about__title__img {
    width: min(40rem, 100%);
  }

  .top__about__catch {
    font-size: 1.75em;
  }

  .top__about__text {
    text-align: left;
  }

  .top__service__wrap {
    gap: 2em;
  }

  .top__service__header {
    display: contents;
  }

  .top__service__header .section__title__wrap {
    order: 1;
  }

  .top__service__slider {
    order: 2;
  }

  .top__service__header__text {
    order: 3;
  }

  .top__works__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .top__company__message__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }

  .top__company__message__content,
  .top__company__message__img__wrap {
    display: contents;
  }

  .top__company__message__wrap .section__title__wrap {
    order: 1;
  }

  .top__company__message__catch {
    order: 2;
  }

  .top__company__message__img {
    order: 3;
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .top__company__message__img__bg__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .top__company__message__img__bg__wrap::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #F0F3F6 0%, #F0F3F600 30%, #F0F3F600 70%, #F0F3F6 100%);
    width: 100%;
    height: 100%;
  }

  .top__company__message__img__bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }

  .top__company__message__img__person {
    position: relative;
    width: min(30rem, 80%);
    z-index: 2;
  }

  .top__company__message__text {
    order: 4;
  }

  .top__company__message__img__name {
    order: 5;
    text-align: right;
    margin-left: auto;
  }


  .top__company__table {
    display: flex;
    padding: 0em 2em;
  }

  .top__company__table tr {
    flex-direction: column;
    padding-block: 2em;
    border-right: none;
  }

  .top__company__table tr:first-child {
    border-top: none;
  }

  .top__company__table tr:last-child {
    border-bottom: none;
  }

  .top__company__table th,
  .top__company__table td {
    padding: 0;
  }

  .top__company__table th {
    width: auto;
    background-color: transparent;
    color: var(--main-blue);
    text-align: left;
  }

  .top__company__table td {
    padding-inline: 0;
  }

  .top__recruit__header__img {
    aspect-ratio: 3/2;
    object-fit: cover;
  }

  .top__recruit__header__river__item {
    font-size: 10vw;
  }

  .top__recruit__intro__wrap {
    flex-direction: column;
  }

  .top__recruit__intro__link__list {
    flex-direction: column;
    width: 100%;
    gap: 3em;
  }

  .top__recruit__intro__link__item .common__btn {
    bottom: 2em;
  }

  .top__recruit__detail {
    flex-direction: column-reverse;
  }

  .faq__question-wrap {
    font-size: 1.5em;
  }

  .faq__answer__table__wrap {
    padding: 3em 1.5em;
  }

  .faq__answer__table tr {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }

  .faq__answer__table td {
    padding-block: 1.5em;
    padding-inline: 1em;
  }

  .faq__answer__table td:nth-child(1) {
    width: 100%;
    border-bottom: 1px solid #0086CB40;
    background-color: #F0F3F6;
  }

  .top__news__item {
    flex-direction: column;
    gap: 1.5em;
  }

  .top__news__item__img {
    width: 100%;
  }

  .contact__cta__list {
    order: 2;
    flex-direction: column;
    width: min(30rem, 100%);
  }

  .contact__cta__list::after {
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .contact__cta__item {
    padding-block: 2em;
  }

  /*=====/top=====*/
  /*=====interview=====*/

  .inter__fv__img::before {
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--main-blue) 0%, transparent 100%);
    left: 0;
    top: auto;
    bottom: 0;
  }

  .inter__fv__content {
    left: 5%;
    top: auto;
    bottom: 2em;
    transform: none;
    display: flex;
    flex-direction: column;
  }

  .inter__fv__header {
    gap: 1em;
  }

  .inter__fv__title {
    font-size: 1.75em;
  }

  .inter__fv__catch {
    margin-block: auto;
    font-size: min(2em, 7vw);
  }

  .interview__item,
  .interview__item:nth-child(even) {
    flex-direction: column;
    gap: 3em;
  }

  .interview__item__content {
    order: 2;
  }

  .interview__item__number {
    font-size: 2em;
  }

  .top__schedule__item {
    gap: 1em;
  }

  .top__schedule__item__line {
    width: 2em;
  }


  .top__attraction__wrap:has(.top__schedule__item) {
    align-items: center;
  }

  .top__schedule__list {
    width: auto;
  }

  .top__attraction__wrap {
    flex-direction: column;
    gap: 4em;
  }

  /*=====/interview=====*/
  /*===============/main===============*/
  /*===============footer===============*/

  .footer__content {
    padding-block: 3em;
  }

  .footer__inner {
    align-items: flex-start;
    width: 80%;
    gap: 3em;
  }

  .footer__detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }

  .footer__logo img {
    width: min(70vw, 23rem);
  }

  .footer__page-top {
    width: min(20%, 10rem);
    top: auto;
    bottom: 3em;
    transform: translateY(0);
  }


  /*===============/footer===============*/
}

@media screen and (max-width: 480px) {

  :root {
    --center_percent: 90%;
  }

  .from--sp {
    display: block;
  }

  .none--sp {
    display: none;
  }

  /*===============header===============*/

  .header {
    padding-inline: 1rem 0;
  }

  .header__wrap {
    gap: 0.5em;
  }

  /*===============/header===============*/
  /*===============main===============*/
  /*=====top=====*/

  .top__recruit__img__main {
    transform: translateY(-0.5em);
  }

  /*=====/top=====*/
  /*===============/main===============*/
  /*===============footer===============*/



  /*===============/footer===============*/
}









.renewal__body {
  background-image: url(../img/common/bg__img@1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.renewal__header {
  margin-block: 7.5em;
  display: flex;
  justify-content: center;
}

.renewal__header__logo {
  width: min(43rem, 80%);
  display: flex;
}

.renewal__header__logo img {
  width: 100%;
}

.renewal__intro {
  margin-top: 0;
}

.renewal__intro__content {
  text-align: center;
}

.renewal__intro__title {
  font-size: 2.25em;
  margin-bottom: 1em;
}


.renewal__intro__contact__tel {
  margin-top: 6.5em;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1em;
}

.renewal__intro__contact__tel__title {
  color: #fff;
  background-color: var(--black);
  line-height: 1;
  padding: 0.5em 1.5em;
  border-radius: 5em;
}

.renewal__intro__contact__tel__number {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 2.875em;
}

.renewal__intro__contact__tel__number::before {
  content: '';
  width: 0.75em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__tel.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.renewal__intro__recruit__btn {
  margin-top: 5em;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: min(60rem, 100%);
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 1em;
  padding: 2em 4em;
}

.renewal__intro__recruit__btn__title--main {
  font-size: 3.5em;
}

.renewal__intro__recruit__btn__title--sub {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.renewal__intro__recruit__btn__title--sub::after {
  content: '';
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.renewal__intro__recruit__btn::after {
  content: '';
  width: 1.25em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__arrow__diagonal--white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
}

.renewal__footer {
  margin-bottom: 5em;
}

.renewal__footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.renewal__footer__logo {
  width: 18rem;
}

.renewal__footer__logo img {
  width: 100%;
}

.renewal__footer__detail {
  line-height: 1.5;
  font-size: 1.25em;
}

.renewal__footer__gmap {
  text-decoration: underline;
}



@media screen and (max-width: 900px) {
  .renewal__intro__title {
    font-size: 1.5em;
  }

  .renewal__intro__recruit__btn {
    padding: 2em 1em;
  }

  .renewal__intro__recruit__btn__title--main {
    font-size: 2em;
  }

  .renewal__footer__content {
    flex-direction: column;
    gap: 2em;
  }
}