@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: 11rem;
  --center_percent: 90%;
  --section_margin: 12.5em;
  --black: #222222;
  --middle-gray: #A7A6A6;
  /* --dark-blue: #006AAD; */
  --dark-blue: #2F5265;
  --main-blue: #0076C3;
  --light-blue: #2BA1EB;
  --green-blue: #00A8C2;
  --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(--dark-blue); */
  color: var(--dark-blue);
}

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;
  backdrop-filter: blur(10px);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
  height: var(--header__height);
}

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

.header__logo {
  margin-left: 5em;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  display: flex;
  aspect-ratio: 3/1;
}

.header__logo__link {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration__common);
  width: min(12.5vw, 18rem);
  position: relative;
}

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

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

body:has(.page--top) .header .header__logo__img.--white {
  opacity: 1;
  visibility: visible;
}


body:has(.page--top) .header.open .header__logo__img.--white,
body:has(.page--top) .header.is_scrolled .header__logo__img.--white {
  opacity: 0;
  visibility: hidden;
}

body:has(.page--top) .header {
  background-color: transparent;
  backdrop-filter: none;
  color: #fff;
  transition: var(--duration__common);
}

body:has(.page--top) .header.open,
body:has(.page--top) .header.is_scrolled {
  background-color: #ffffffBF;
  backdrop-filter: blur(10px);
  color: var(--dark-blue);
  filter: none;
}










.header__nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  /* background-color: tomato; */
  width: 100%;
}

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

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

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

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

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



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

.nav__other__item {
  font-size: clamp(1rem, 1.04vw, 1.4rem);
  line-height: 1.25;
  aspect-ratio: 1/1;
  height: var(--header__height);
  background-color: var(--green-blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  text-align: center;
}

.nav__other__item.--tel {
  background-color: var(--dark-blue);
}

.nav__other__item__icon {
  width: 2.4rem;
}

.nav__other__item__icon img {
  width: 100%;
}


/*===============main===============*/
/*=====common=====*/
/* =========== ホバーアニメーション =========== */

.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: 8em;
  line-height: 0.8;
  color: var(--main-blue);
  font-style: italic;
}

.section__title--sub {
  color: var(--green-blue);
}


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

.common__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 1em;
  background-color: #fff;
  background-color: var(--green-blue);
  color: #fff;
  padding: 0.5em 1em;
  transition: var(--duration__common);
  width: min(24rem, 100%);
}

.common__btn__arrow {
  background-color: #fff;
  width: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(../img/common/icon__arrow--blue-grenn.svg);
  background-size: 40%;
  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-image: url(../img/common/icon__arrow--blue.svg);
}

/* ========== /ボタンスタイル/ ========== */
/* =========== その他 =========== */

.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);
}

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

.top__fv {
  margin-top: 0;
}

.top__fv__main__img__wrap {
  position: relative;
}

.top__fv__main__img {
  width: 100%;
}

.top__fv__inazuma {
  position: absolute;
  right: 7.57vw;
  top: 0;
  width: 53.359%;
}

.top__fv__content {
  z-index: 2;
  position: relative;
  /* padding-block: 10vw calc(5vw + var(--section_margin)); */
  padding-block: 10vw var(--section_margin);
  display: flex;
  flex-direction: column;
  gap: 4em;
  overflow-x: clip;
}

.top__fv__catch {
  font-size: 3.25em;
  background: linear-gradient(180deg, #0076C3 -18.09%, #00A8C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top__fv__text {
  font-size: 1.125em;
  font-weight: bold;
  color: var(--dark-blue);
  margin-left: 10rem;
}

.top__fv__river {
  width: 100%;
  overflow: hidden;
}

.top__fv__river__inner {
  display: flex;
  width: max-content;
  animation: riverScroll 30s linear infinite;
}

.top__fv__river__img {
  width: auto;
  max-width: none;
  flex-shrink: 0;
  height: clamp(40px, 7.77vw, 112px);
}

@keyframes riverScroll {
  0% {
    transform: translateX(0);
  }

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

.top__service__wrap {
  display: flex;
  /* background-color: red; */
  position: relative;
}

.top__service__img__wrap {
  /* background-color: turquoise; */
  position: sticky;
  top: var(--header__height);
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: min(34.03vw, 49rem); */
  /* aspect-ratio: 490/640; */
  width: 49rem;
  height: 64rem;
  margin-left: max(-22rem, -15.28vw);
}

.top__service__img__wrap img {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
  filter: blur(4px);
}

.top__service__img__wrap img.show {
  opacity: 1;
  filter: blur(0px);
}

.top__service__content {
  /* background-color: tomato; */
  margin-left: auto;
  width: min(62rem, 80%);
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.top__service__list {
  display: flex;
  flex-direction: column;
}

.top__service__item {
  padding-block: 4em;
  border-top: 1px solid #a2a2a2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.top__service__item::before {
  content: '';
  width: 3em;
  height: 2px;
  background-color: var(--main-blue);
  position: absolute;
  top: 0;
  left: 0;
}


.top__service__item__header__title {
  font-size: 1.5em;
  display: flex;
  align-items: center;
  gap: 1em;
}

.top__service__item__header__title::before {
  content: '';
  width: 1.675em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__inazuma--blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.top__service__item__header__text {
  margin-top: 2em;
}

.top__service__item__about__list {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.top__service__item__about__item {
  background-color: var(--bg__gray);
  width: min(25rem, calc((100% - 1em) / 2));
  line-height: 1;
  padding: 1em 0.5em;
  border-radius: 0.5em;
  text-align: center;
}

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

.top__works__header {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.top__works__header__text {
  text-align: center;
}

.top__works__list {
  margin-top: 3em;
  display: flex;
  flex-wrap: wrap;
}

.top__works__item {
  flex-basis: 50%;
  position: relative;
}

.top__works__item__img img {
  width: 100%;
}

.top__works__item__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #006AAD00 29.33%, #006AAD 100%);
}

.top__works__item__title {
  font-size: min(2em, 2.22vw);
  font-weight: normal;
  position: absolute;
  width: 100%;
  padding: 0.5em 0.5em;
  bottom: 0.5em;
  color: #fff;
  text-align: center;
}

.top__recruit__fv {
  /* background-color: tomato; */
  width: 100%;
  position: relative;
}

.top__recruit__fv__img__wrap {
  position: relative;
}

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

.top__recruit__inazuma__left {
  position: absolute;
  left: 0;
  top: -5.56vw;
  width: 25%;
}

.top__recruit__inazuma__right {
  position: absolute;
  right: 0;
  top: -87.28vw;
  width: 46.11%;
}

.top__recruit__fv__btn {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 12rem;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
}

.top__recruit__fv__btn p {
  font-size: 1.5em;
}

.top__recruit__fv__btn::after {
  content: '';
  width: 0.75em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__arrow--white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.top__recruit__fv__title {
  position: absolute;
  bottom: 3em;
}

.top__recruit__fv__title .section__title--main {
  color: #fff;
}

.top__recruit__content {
  margin-top: 6.25em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top__recruit__catch {
  font-size: 2em;
  color: var(--green-blue);
}

.top__recruit__text {
  margin-top: 2em;
  color: var(--dark-blue);
  font-weight: bold;
}

.top__recruit__content .common__btn {
  margin-top: 3em;
}

.top__recruit__slider {
  margin-top: 6.25em;

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

.top__recruit__slider__img {
  width: 100%;
}

.top__recruit__slider .splide__slide.--01 {
  margin-top: 2em;
}

.top__recruit__slider .splide__slide.--03 {
  margin-top: 4em;
}

.top__recruit__slider .splide__slide.--04 {
  margin-top: 2em;
}

.top__company {
  position: relative;
  color: #fff;
  padding-bottom: calc(var(--section_margin) / 1.5);
}

.top__company::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  position: absolute;
  top: calc(var(--section_margin) / 2);
  transform: skewY(-8deg);
  transform-origin: top left;
  z-index: -2;
}

.top__message {
  display: flex;
  gap: 2em;
  /* background-color: tomato; */
  /* overflow-x: clip; */
  position: relative;
}

.top__message__img {
  width: 49.3%;
  flex-shrink: 0;
}

.top__message__img img {
  width: 100%;
}

.top__message__content {
  margin-top: 4em;
  margin-top: min(2em, 4.44vw);
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.top__message__catch {
  font-size: min(2em, 2.22vw);
}

.top__message__text,
.top__message__name {
  font-size: min(1.4rem, 1.11vw);
  font-size: clamp(1.2rem, 1.11vw, 1.4rem);
}

.top__message__line {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: -8vw;
  left: 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
}

.top__message__line span {
  width: 97.22%;
  height: 3em;
  background-color: var(--main-blue);
  transform: skewY(-8deg);
  transform-origin: top left;
}

.top__message__line span:nth-child(2) {
  transform: skewY(-8deg) translateX(2em);
  background-color: var(--green-blue);
}

.top__outline {
  margin-top: calc(var(--section_margin) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
}

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

.top__outline .section__title--main {
  font-size: 3em;
  color: #fff;
}

.top__outline__content {
  width: min(75rem, 100%);
  background-image: url(../img/common/company__bg__logo__iinazuma.svg);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
}

.top__outline__content table {
  width: 100%;
  line-height: 1.75;
}

.top__outline__content table tr {
  border-bottom: 1px solid #006AAD;
  display: flex;
  gap: 1em;
  padding-block: 1.5em;
}

.top__outline__content table tr td:nth-child(1) {
  width: 8em;
  flex-shrink: 0;
}

.top__outline__gmap {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--light-blue);
  text-decoration: underline;
}

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

.top__contact__wrap {
  display: flex;
  flex-direction: column;
  gap: 4em;
  align-items: flex-end;
}

.top__contact__content {
  width: 100%;
  color: #fff;
}

.top__contact__tel {
  display: flex;
  padding: 2em 3em;
  background-color: var(--main-blue);
  justify-content: space-between;
  align-items: center;

  gap: 2em;
}

.top__contact__tel__header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.top__contact__tel__header__title {
  font-size: 1.75em;
}

.top__contact__tel__header p {
  font-size: 0.875em;
}

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

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

.contact__form__content {
  margin-top: 4em;
  background-color: var(--main-blue);
  padding: 3em;
}

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

.contact__form__header__title {
  font-size: 1.5em;
}

.contact__form__header__note {
  color: #FFCC00;
}

.contact__table {
  margin-top: 3em;
  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: var(--green-blue);
  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: #fff;
}

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

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

.privacypolicy_text {
  color: var(--dark-blue);
  line-height: 1.5;
  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 span {
  position: absolute;
  right: 1em;
  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: 40%;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--duration__common);
}

.contact__submit input {
  /* min-width: 18rem;
  background-color: var(--main-blue);
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .2s;
  text-align: center; */
  background-color: #fff;
  color: var(--main-blue);
  padding: 0.5em 1em;
  transition: var(--duration__common);
  width: 24rem;
}

.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;
  color: #A2A2a2;
}

.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);
}

/*=====/top=====*/
/*=====recruit=====*/

.recruit__fv {
  margin-top: 0;
}

.recruit__fv__wrap {
  position: relative;
}

.recruit__fv__img__wrap {
  /* width: 100vw;
  height: 100svh; */
  background-color: tomato;
  position: relative;
}

.rectuit__fv__inazuma__left {
  position: absolute;
  top: var(--header__height);
  left: 0;
  width: 20.97%;
}

.rectuit__fv__inazuma__right {
  position: absolute;
  right: 0;
  width: 25.97%;
}

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

.recruit__fv__content {
  /* background-color: tomato; */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4em;
  z-index: 2;
}

.recruit__fv__content .section__title--main {
  background: linear-gradient(180deg, #0076C3 -18.09%, #00A8C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.2em;
}

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

.recruit__fv__header {
  margin-top: var(--section_margin);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2em;
}

.recruit__fv__header__detail {
  border: 1px solid var(--dark-blue);
  line-height: 1;
  padding: 1em 2em;
  border-radius: 1em;
  color: var(--dark-blue);
}

.recruit__fv__header__catch {
  font-size: 3.25em;
  font-feature-settings: "palt";
  background: linear-gradient(180deg, #0076C3 -18.09%, #00A8C2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruit__content {
  overflow-x: clip;
}

.recruit__content__wrap {
  display: flex;
  gap: 2em;
}

.recruit__content__list {
  width: min(62rem, 62%);
  flex-shrink: 0;
}

.recruit__content__item+.recruit__content__item {
  margin-top: 7.5em;
}

.recruit__content__item {
  display: flex;
  flex-direction: column;
  /* gap: 3em; */
}

.recruit__content__item__header {
  border-bottom: 1px solid #a2a2a2;
  position: relative;
  padding-bottom: 1em;
}

.recruit__content__item__header::before {
  content: '';
  width: 3em;
  height: 2px;
  background-color: var(--main-blue);
  position: absolute;
  top: 100%;
  left: 0;
}

.recruit__content__item__body__catch {
  color: var(--main-blue);
  font-size: 2em;
  margin-block: 1.5em;
}

.recruit__content__img {
  position: sticky;
  top: calc(var(--header__height) + 2em);
  width: 49rem;
  height: 64rem;
  margin-right: max(-22rem, -15.28vw);
}

.recruit__content__img img {
  width: 100%;
}

.recruit__content__row {
  position: relative;
}

.recruit__content__row__inazuma {
  position: absolute;
  top: -10rem;
  left: 0;
  z-index: -1;
  width: 53.93%;
}

.recruit__content__row__header__img__wrap {
  width: calc(50% + 50vw);
  margin-bottom: 6.25em;
  position: relative;
}

.recruit__content__row__header__img {
  width: 100%;
}

.top__scroll__img__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100lvh;
  overflow: hidden;
}

.top__scroll__img {
  aspect-ratio: 16/9;
  width: min(var(--m_width), var(--center_percent));
  /* height: 45%; */
  overflow: hidden;
}

.top__scroll__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
}


.recruit__sche {
  padding-block: var(--section_margin);
  position: relative;
}

.recruit__sche::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0076C3 27.37%, #00A8C2 100%);
  position: absolute;
  top: calc(var(--section_margin) / 2);
  transform: skewY(-8deg);
  transform-origin: top left;
  z-index: -2;
}

.recruit__sche .section__title--main,
.recruit__sche .section__title--sub {
  color: #fff;
}

.recruit__sche__list {
  margin-top: 6.25em;
  color: #fff;
}

.recruit__sche__item+.recruit__sche__item {
  margin-top: 2em;
}

.recruit__sche__item {
  background-color: #00A8C2;
  display: flex;
  align-items: center;
  /* gap: 1em; */
  padding-block: 2em;
}

.recruit__sche__item__time__wrap {
  /* background-color: turquoise; */
  width: 18rem;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.recruit__sche__item__time {
  font-size: 2em;
  font-style: italic;
}

.recruit__sche__item__content {
  /* background-color: tomato; */
  width: 100%;
  padding-right: 1em;
}

.recruit__sche__item__title {
  font-size: 1.125em;
  font-weight: normal;
  margin-bottom: 1em;
}

.recruit__sche__item__text {
  font-size: 1.4rem;
  line-height: 1.75;
}


.recruit__info {
  padding-block: calc(var(--section_margin) / 2) var(--section_margin);
  margin-top: calc(-1 * calc(var(--section_margin) / 2));
  margin-bottom: 0;
  background-color: #2F5265;
  position: relative;
}

.recruit__info::before {
  content: '';
  width: 100%;
  height: 100vh;

  background-color: #2F5265;
  position: absolute;
  top: 0;
  transform: skewY(-8deg);
  transform-origin: top left;
  z-index: -2;
}

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

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

.recruit__info__content {
  margin-top: 6.25em;
}

.recruit__info__wrap+.recruit__info__wrap {
  margin-top: 7.5em;
}

.recruit__info__header {
  color: #fff;
}

.recruit__info__header__title {
  border-bottom: 1px solid #a2a2a2;
  position: relative;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-size: 1.75em;
}

.recruit__info__header__title::before {
  content: '';
  width: 3em;
  height: 2px;
  background-color: var(--green-blue);
  position: absolute;
  top: 100%;
  left: 0;
}

.recruit__info__list {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.recruit__info__item {
  background-color: #fff;
  overflow: hidden;
}

.recruit__info__item__header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-blue);
  padding: 0.5em 7rem;
  position: relative;
  font-size: 1.75em;
}

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

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

.recruit__info__item__header__toggle::before {
  width: 2px;
  height: 100%;
}

.recruit__info__item__header__toggle::after {
  width: 100%;
  height: 2px;
}

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

.recruit__info__item__content__table__wrap {
  padding: 4em 7rem;
}

.recruit__info__item__content__table {
  width: 100%;
  padding-inline: 3em;
  line-height: 1.75;
}

.recruit__info__item__content__table tr {
  display: flex;
  /* align-items: center; */
  border-bottom: 1px solid #A2A2A2;
}

.recruit__info__item__content__table tr:first-child {
  border-top: 1px solid #A2A2A2;
}

.recruit__info__item__content__table td {
  padding: 1.5em 2em;
}

.recruit__info__item__content__table td:nth-child(1) {
  width: 20rem;
  flex-shrink: 0;
  background-color: var(--dark-blue);
  color: #fff;
  display: flex;
  align-items: center;
}

.recruit__info__item__content__table td:nth-child(2) {
  width: 100%;
}

.recruit__info__item__content__table td:nth-child(2) p+p {
  margin-top: 1em;
}

.recruit__info__item.is-open .recruit__info__item__header {
  background-color: #F0F3F6;
}

.recruit__info__item.is-open .recruit__info__item__header__toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.recruit__info__item.is-open .recruit__info__item__content-box {
  opacity: 1;
}


.recruit__entry__cta {
  margin-top: 10em;
  /* background-color: tomato; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit__entry__cta .section__title__wrap {
  position: absolute;
}

.recruit__entry__cta .section__title--main,
.recruit__entry__cta .section__title--sub {
  color: #fff;
}
























/*=====/recruit=====*/
/*===============/main===============*/
/*===============footer===============*/
.footer {
  background-color: var(--bg__gray);
  color: var(--dark-blue);
  padding-block: 5em 2.5em;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 4em;
  margin-bottom: 5em;
}

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

.footer__about__logo {
  width: 30rem;
}

.footer__detail {
  font-size: 1.4rem;
}

.footer__detail__gmap {
  display: flex;
  margin-top: 1em;
  text-decoration: underline;
}

.footer__menu {
  /* background-color: tomato; */
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 2em;
}

.footer__menu__list {
  width: min(26rem, 50%);
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.footer__menu__item {
  display: flex;
  flex-direction: column;
  line-height: 1;
  /* gap: 1em; */
}

.footer__menu__item--main {
  font-size: 2.5em;
}

.footer__menu__item--sub {
  margin-top: 1em;
  font-size: 0.875em;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.footer__bottom__logo-text {
  width: 100%;
}

.footer__bottom__copyright {
  color: var(--green-blue);
}

/*===============/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: 100%;
    padding-inline: 1em;
    /* background-color: tomato; */
  }

  .header__logo {
    margin-left: 0;
    aspect-ratio: 3/1;
  }

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

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

  .header__nav__wrap {
    display: none;
    background-color: #ffffff;
    width: 100%;
    height: 100dvh;
    padding-top: calc(var(--header__height) + 1em);
    padding-inline: 2em;
    padding-bottom: 40dvh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: scroll;
    gap: 4em;
    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;
    justify-content: 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__other__list {
    /* flex-direction: column; */
    align-items: flex-start;
    width: 100%;
    gap: 2em;
  }

  .nav__other__item {
    font-size: 1em;
    width: 50%;
    height: auto;
    padding: 1em 0.5em;
    aspect-ratio: initial;
  }

  .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(--dark-blue);
    width: 60%;
    left: 20%;
    height: 1px;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  }

  body:has(.page--top) .header__nav__btn__line {
    background-color: #fff;
  }

  body:has(.page--top) .header.open .header__nav__btn__line,
  body:has(.page--top) .header.is_scrolled .header__nav__btn__line {
    background-color: var(--dark-blue);
  }

  .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: 6em;
    font-size: min(6em, 15vw);
  }

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

  .top__fv__catch {
    filter: drop-shadow(2px 2px 0px #ffffff80);
  }

  .top__fv__text {
    margin-left: 0;
  }

  .top__fv__river__img {
    height: 15vw;
  }

  .top__service__img__wrap {
    display: none;
  }

  .top__service__content {
    width: 100%;
  }

  .top__service__item__img__wrap {
    margin-inline: auto;
    width: 100%;
  }

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

  .top__works__list {
    flex-direction: column;
  }

  .top__works__item__title {
    font-size: min(1.5em, 5vw);
  }




  .top__recruit__fv__title {
    bottom: 1.5em;
  }

  .top__recruit__fv__img {
    aspect-ratio: 1/1;
  }

  .top__recruit__content {
    margin-top: 4em;
  }

  .top__recruit__fv__btn {
    display: none;
  }




  .top__company::before {
    top: calc(var(--section_margin) / 1);
  }

  .top__message {
    flex-direction: column;
  }

  .top__message__img {
    margin-inline: auto;
    width: min(40rem, 60%);
  }

  .top__message__content {
    margin-top: 0;
  }

  .top__message__catch {
    font-size: 1.75em;
  }

  .top__message__text,
  .top__message__name {
    font-size: 1em;
  }

  .top__message__name {
    text-align: right;
  }

  .top__message__line {
    display: none;
  }

  .top__outline {
    flex-direction: column;
    align-items: flex-start;
    margin-top: var(--section_margin);
  }

  .top__contact {
    margin-top: calc(var(--section_margin) * 1.5);
  }

  .top__contact__tel {
    flex-direction: column;
    padding: 2em 1em;
  }

  .top__contact__tel__header {
    align-items: center;
  }

  .top__contact__tel__header__title {
    font-size: 1.5em;
  }

  .contact__form__content {
    padding: 2em;
  }

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


  .recruit__fv__img {
    aspect-ratio: 1/1;
  }

  .recruit__fv__content {
    bottom: 1.5em;
  }

  /* .recruit__fv__content .section__title--main {
    color: #fff;
    background: none;
    -webkit-text-fill-color: initial;
  } */



  .recruit__fv__header__catch {
    font-size: 1.75em;
  }

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

  .recruit__content__img {
    position: initial;
    top: 0;
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .recruit__content__list {
    width: 100%;
  }

  .recruit__content__item__body__catch {
    font-size: 1.75em;
  }

  .recruit__content__item+.recruit__content__item {
    margin-top: 5em;
  }

  .recruit__content__row__inazuma {
    top: -4rem;
  }

  .recruit__sche__item__time__wrap {
    width: 10rem;
  }

  .recruit__info__item__header {
    padding: 0.5em 1em;
    font-size: 1.5em;
  }

  .recruit__info__item__content__table__wrap {
    padding: 1em;
  }

  .recruit__info__item__content__table tr {
    flex-direction: column;
  }

  .recruit__info__item__content__table td:nth-child(1) {
    width: 100%;
  }

  .recruit__info__item__content__table td:nth-child(2) {
    padding: 1.5em 0;
  }

  .recruit__entry__cta .section__title--main {
    font-size: 10vw;
  }

  .recruit__entry__cta .section__title--sub {
    font-size: 4vw;
  }

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

  .footer {
    padding-top: 1em;
  }

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

  .footer__menu__list {
    display: contents;
  }

  .footer__menu {
    flex-direction: column;
    gap: 0em;
  }

  .footer__menu__item {
    border-bottom: 1px solid var(--main-blue);
    padding-block: 1.5em;
  }

  .footer__about__logo {
    width: min(20rem, 80%);
  }


  /*===============/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===============*/
}