@charset "UTF-8";

* {
  min-inline-size: 0
}

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

  --header__height: 8rem;
  --center_percent: 90%;
  --section_margin: 12.5em;
  --black: #191D25;
  --middle-gray: #A7A6A6;
  --dark-blue: #0061C2;
  --main-blue: #0082D8;
  --light-blue: #EAF3FF;
  --green-blue: #00A8C2;
  --bg__gray: #F5F5F5;
  --bg__blue: #F4FBFF;
  --dark-red: #BA1702;

  --gradation: linear-gradient(270deg, #A2FFF4 0%, #93D4FF 100%);

  --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: 1.75;
  /* color: var(--dark-blue); */
  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;
  font-weight: 600;
}

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

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

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

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

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

.lh--200 {
  line-height: 2.0;
}

.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: #fff;

  position: fixed;
  z-index: 9;
  width: 100%;
  height: var(--header__height);
  top: 0;
  display: flex;
  justify-content: center;
}

.header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 2em;
  gap: 2em;
}

.header__logo__link {
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 1.5em;
  font-weight: normal;
  color: var(--black);
  /* width: min(50vw, 15rem); */
}

.header__logo__img {
  width: 24rem;
}

.header__nav__wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 9;
}

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

.nav__other__list .common__btn {
  height: auto;
  border: 1px solid #fff;
}

.common__btn__other-page {
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__other-page--white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--duration__common);
}

.nav__other__list .common__btn:hover .common__btn__other-page {
  background-image: url(../img/common/icon__other-page--blue.svg);
}

.header__nav__btn {
  /* background-color: turquoise; */
  cursor: pointer;
  width: 2.5em;
  height: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__nav__btn_line {
  width: 100%;
  height: 2px;
  background-color: var(--main-blue);
  position: absolute;
  transition: var(--duration__common);
}

.header__nav__btn_line:nth-child(1) {
  top: 10%;
}

.header__nav__btn_line:nth-child(3) {
  top: 90%;
}

.header__nav__btn.open .header__nav__btn_line {
  background-color: #fff;
}

.header__nav__btn.open .header__nav__btn_line:nth-child(1) {
  transform: scale(-1, -1) rotate(-45deg) translate(0.5em, -0.5em);
}

.header__nav__btn.open .header__nav__btn_line:nth-child(2) {
  opacity: 0;
}

.header__nav__btn.open .header__nav__btn_line:nth-child(3) {
  transform: scale(-1, -1) rotate(45deg) translate(0.6em, 0.6em);
}


.header_menu {
  /* background: linear-gradient(to right, #E60012 0%, #AA000D 100%); */
  background: var(--dark-blue);
  color: #fff;
  width: clamp(70rem, 50%, 100rem);
  height: 100svh;
  padding-top: calc(var(--header__height) + 2em);
  padding-bottom: 5em;
  padding-left: 5em;
  position: fixed;
  z-index: 1;
  top: 0;
  transition: .4s;
  overflow-y: scroll;
  /* right: -100%; */
  right: 0%;
  opacity: 0;
  visibility: hidden;
}

.header_menu.open {
  visibility: visible;
  opacity: 1;
}

.header_menu_inner {
  /* background-color: tomato; */
  margin-inline: auto;
  width: 90%;
  max-width: 58rem;
  display: flex;
  flex-direction: column;
  gap: 5em;
}

.header_menu_list_wrap {
  display: flex;
  gap: 5em;
}

.header_menu_list {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.header_menu_item_link {
  font-size: 1.5em;
}

.header_menu_item_link.--other-page,
.footer__menu__item__main.--other-page {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1.25;
}

.header_menu_item_link.--other-page::after,
.footer__menu__item__main.--other-page::after {
  content: '';
  width: 0.75em;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon__other-page--white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

.header_menu_link::before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -0.25em;
  scale: 0 1;
  transform-origin: right;
  transition: scale .4s;
}

.header_menu_link:hover::before {
  scale: 1 1;
  transform-origin: left;
}

.header_menu_item_sub_list {
  /* margin-left: 2em; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25em;
}

.header_menu_item_sub_item {
  line-height: 1;
}

.header_menu_entry_list {
  /* background-color: violet; */
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 3rem;
}

.header_menu_entry_list::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4em);
  height: calc(100% + 4em);
}

.header_menu_entry_list .top__join__link__item {
  /* background-color: violet; */
  flex-basis: calc((100% - 3rem) / 2);
  font-size: 1.125em;
}

.header_menu_corp_link.icon__other-page::after {
  background-image: url(../img/common/icon__other-page--white.svg);
}

body:has(.page--top) .header {
  background-color: transparent;
  transition: .4s;
}

body:has(.page--top) .header.open,
body:has(.page--top) .header.is_scrolled {
  background-color: #fff;
}

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

body:has(.page--top) .header.is_scrolled .header__nav__btn_line {
  background-color: var(--main-blue);
}


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

.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;
  flex-shrink: 0;
}

.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 {
  color: var(--main-blue);
  /* font-size: 7.5em; */
  font-size: min(7.5em, 8.33vw);
  line-height: 0.7;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  padding-right: 0.125em;
  margin-left: -0.125em;
}

.section__title--sub {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section__title--main span {
  display: inline-block;
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-scroll-anime.is-active .section__title--main span {
  opacity: 1;
  transform: translateY(0);
}

.js-scroll-anime.is-active .section__title--sub {
  opacity: 1;
}


.section__title__wrap.--mini .section__title--main {
  font-size: 1.75em;
}

.section__title__wrap.--mini .section__title--sub {
  font-size: 0.875em;
}

.section__title__wrap.--mini .section__title--sub::before {
  width: 1.5em;
}


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

/* ボタン本体の基本スタイル */
.common__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 17em;
  height: 6.5em;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 8px;
  padding: 0.5em 0em 0.5em 1em;
  background-color: var(--main-blue);
  /* border: 1px solid var(--main-blue); */
  color: #fff;
  overflow: hidden;
  z-index: 1;
  transition: 0.2s;
  gap: 1em;
  font-weight: 700;
}

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

.common__btn>* {
  position: relative;
  z-index: 2;
}

.common__btn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  background: var(--gradation);
  transition: 0.4s ease;
}

.common__btn:hover::before {
  opacity: 1;
}

.common__btn__arrow__wrap {
  /* background-color: turquoise; */
  width: 4.5em;
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--dark-blue);
}

.common__btn:hover .common__btn__arrow__wrap {
  border-color: #fff;
}

.common__btn__arrow {
  /* background-color: tomato; */
  position: relative;
  width: 0.75em;
  aspect-ratio: 1/1;
  background-color: transparent;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.common__btn__arrow::after,
.common__btn__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/icon__arrow--white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.common__btn__arrow::before {
  background-image: url(../img/common/icon__arrow--blue.svg);
  transform: translateX(-100%);
}

.common__btn:hover .common__btn__arrow::after {
  transform: translateX(100%);
}

.common__btn:hover .common__btn__arrow::before {
  transform: translateX(0);
}

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

.common__btn.--white .common__btn__arrow::after,
.common__btn.--white .common__btn__arrow::before {
  background-image: url(../img/common/icon__arrow--blue.svg);
}

.common__btn.--white::before {
  background-color: var(--light-blue);
}

.common__btn.--white:hover .common__btn__arrow {
  /* background-color: #fff; */
}

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

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

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

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

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

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

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

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

.icon__pdf::after {
  content: '';
  width: 1em;
  height: 1em;
  background-image: url(../img/common/icon__pdf--blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.icon__pdf.--white::after {
  background-image: url(../img/common/icon__pdf--white.svg);
}


.bg__light-blue {
  background-color: #EFF3F9;
  padding-top: var(--section_margin);
  border-radius: 2.5em 2.5em 0 0;
}

.icon__other-page {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.icon__other-page::after {
  content: '';
  width: 1em;
  height: 1em;
  background-image: url(../img/common/icon__other-page--blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.--uppercase {
  text-transform: uppercase;
}

.--italic {
  font-style: italic;
}

/* ========== /その他/ ========== */
/*=====/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__wrap {
  position: absolute;
  bottom: 0;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.top__fv__catch--sub {
  font-size: 2.43vw;
  margin-left: 1em;
  margin-bottom: 0.5em;
}

.top__fv__catch--main {
  font-size: 14.3vw;
  line-height: 0.7;
}

.top__intro {
  margin-top: 0;
  margin-bottom: 0;
  padding-block: calc(1.5 * var(--section_margin));
  background: linear-gradient(180deg, rgba(74, 202, 200, 0) 0%, rgba(74, 202, 200, 0.5) 16.8%, rgba(74, 202, 200, 0.7) 27.82%, #0082D8 100%);
}

.top__intro__catch {
  font-size: 4em;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1.5em;
}

.top__intro__text__wrap {
  font-size: 1.75em;
  font-weight: bold;
  text-align: right;
  color: #fff;
}

.top__intro__text__wrap span {
  color: #FFCC00;
  display: inline;
}






.top__bg__blue__header {
  position: relative;
}

.top__recruit__header__river {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: absolute;
  top: 0;
  /* background-color: turquoise; */
  transform: translateY(-50%);
}

.top__recruit__header__river__item {
  color: transparent;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 9.72vw;
  padding-right: 1vw;
  opacity: 1;
  line-height: 0.75;
  font-style: italic;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.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__bg__blue__header__img {
  width: 100%;
}

.top__bg__blue {
  background-color: var(--main-blue);
  color: #fff;
  padding-top: calc(var(--section_margin) / 3);
  padding-bottom: var(--section_margin);
  position: relative;
}

.top__bg__blue__circle {
  position: absolute;
  bottom: 100%;
  transform: translateY(1px);
  width: 100%;
}

.top__bg__blue>section:first-of-type {
  margin-top: 0;
}

.top__bg__blue section:last-of-type {
  margin-bottom: 0;
}


.top__service__wrap {
  display: flex;
  gap: 4em;
}

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

.top__service__header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 4em;
}

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

.top__service__catch {
  font-size: 1.75em;
}

.top__service__text {
  font-size: 1.4rem;
}




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

.top__benefit__list {
  display: flex;
  gap: 2em;
  width: max-content;
}

.top__benefit__item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  color: var(--main-blue);
  border-radius: 0.5em;
  width: clamp(280px, 28vw, 420px);
  flex-shrink: 0;
}

.top__benefit__item__header {
  padding: 1.5em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  border-bottom: 2px solid var(--main-blue);
}

.top__benefit__item__header__cate {
  font-size: 0.875em;
  border-radius: 5em;
  border: 1px solid var(--main-blue);
  padding: 0.25em 0.5em;
}

.top__benefit__item__header__title {
  font-size: 1.5em;
}

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

.top__benefit__item__img {
  display: flex;
  justify-content: center;
  width: min(24rem, 80%);
}

.top__benefit__item__img img {
  width: 100%;
}

.top__benefit__item__text {
  color: var(--black);
}

.top__data__list {
  margin-top: 4em;
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  justify-content: center;
}

.top__data__item {
  background-color: #ffffff1A;
  padding: 1.5em 2em;
  border-radius: 0.5em;
  flex-basis: calc((100% - 6em) / 3);
  border: 1px solid #ffffff40;
}

.top__data__item__header {
  font-size: 1.125em;
  border-bottom: 1px solid #ffffff40;
  text-align: center;
  padding-block: 0.5em 1.5em;
}

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

.top__data__item__img {
  width: min(15rem, 80%);
  /* background-color: tomato; */
  display: flex;
  justify-content: center;
}

.top__data__item__img img {
  width: 100%;
}

.top__data__item__title {
  display: flex;
  align-items: baseline;
  font-size: 4em;
}

.top__data__item__title__sub {
  font-size: 0.35em;
}

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


















.top__interview {
  overflow: hidden;
  /* 右方向はみ出し用 */
}

.top__interview__content {
  position: relative;
}

.top__interview__slider {
  margin-top: 4em;
}

.top__interview__slider .splide {
  overflow: visible;
}

.top__interview__slider .splide__track {
  overflow: visible;
}

.top__interview__slider a:hover .interview__slide__right img {
  scale: 1.25;
}

.interview__slide {
  position: relative;
  aspect-ratio: 1200 / 560;
  /* min-height: 440px; */
}

.interview__slide__left {
  position: relative;
  z-index: 2;
  /* background: turquoise; */
  padding: 52px 48px 52px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* アクティブスライドで表示 */
.splide__slide.is-active .interview__slide__left {
  opacity: 1;
  transform: translateY(0);
}

.interview__slide__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 60.42vw;
  height: 100%;
  overflow: hidden;
  margin-right: -5vw;
}

@media (min-width: 1281px) {
  .interview__slide__right {
    margin-right: calc((100vw - 1200px) / 2 * -1);
  }
}

.interview__slide__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: scale 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.splide__slide.is-active .interview__slide__right img {
  scale: 1.05;
}

/* ========================================
   左コンテンツの内部
======================================== */
.interview__voice__num {
  font-weight: bold;
  font-size: 1.5em;
  color: var(--black);
  /* margin-bottom: 1em; */
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.interview__voice__num span {
  font-size: 2em;
  color: var(--main-blue);
}

.interview__quote {
  font-size: min(2em, 2.43vw);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  font-style: italic;
}

.interview__quote span {
  display: inline-flex;
  background: var(--black);
  padding: 0.25em 0.25em;

}

.interview__meta {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.interview__name {
  margin-top: 1em;
  font-size: 1.125em;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.5em;
}

.interview__name::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-blue);
  flex-shrink: 0;
}

.interview__nav {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: absolute;
  bottom: 0;
}

.interview__nav__btn {
  width: 3.5em;
  height: 2em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  border-radius: 4px;
}

.interview__nav__btn--prev {
  background: #F3F3F3;
}

.interview__nav__btn--next {
  background: var(--main-blue);
}

.interview__nav__btn svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interview__nav__btn--prev svg {
  stroke: #B2B2B2;
}

.interview__nav__btn--next svg {
  stroke: #fff;
}

.interview__counter {
  margin-left: auto;
  font-size: 1.4rem;
  color: #ccc;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1em;
  align-items: center;
  gap: 0.5em;
}

.interview__counter__current {
  color: var(--black);
}

.interview__counter__sep {
  width: 1.5em;
  height: 2px;
  background: var(--main-blue);
}

.top__interview__btn__wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;

}

.splide__arrow {
  display: none !important;
}

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

.page--interview {
  overflow: clip;
}

.interview__column {
  display: flex;
  align-items: flex-start;
  gap: 2em;
}

.interview__column__side {
  /* background-color: tomato; */
  width: 10em;
  flex-shrink: 0;
  position: sticky;
  z-index: 5;
  top: calc(var(--header__height) + 2em);
}

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

.interview__column__side__item {
  line-height: 1;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: var(--duration__common);
}

.interview__column__side__item.active {
  font-weight: bold;
}

.interview__column__side__item.active::before {
  content: '';
  width: 2rem;
  height: 1rem;
  background: url(../img/interview/interview__column__side__item__active__icon.svg) no-repeat center / contain;
  transition: var(--duration__common);
  mix-blend-mode: difference;
}

.interview__column__main {
  width: 100%;
}

.interview__column__main section:first-of-type {
  margin-top: 0;
}

.interview__column__main section:last-of-type {
  margin-bottom: 0;
}

.interview__item {
  padding-left: 27rem;
  position: relative;
}

.interview__item::before {
  content: '';
  width: calc((var(--l_width) - 10em - 2rem) + (100vw - var(--l_width)) / 2);
  height: calc(100% - 25rem);
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, #4ACAC8 0%, rgba(74, 202, 200, 0.7) 27.82%, #0082D8 100%);
}

.interview__item:not(:has(.interview__item__flow)) {
  padding-bottom: 6.25em;
}


.interview__item__header {
  /* background-color: tomato; */
  aspect-ratio: 1170 / 740;
  display: flex;
  align-items: flex-end;
  margin-left: -27rem;
  /* padding-top: 20vw; */
  position: relative;
}

.interview__item__header__detail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.interview__item__header__img {
  margin-right: -5vw;
  position: absolute;
  bottom: 0;
  left: 27rem;
  width: min(120rem, 62.8vw);
  height: 100%;
}

.interview__item__header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 1281px) {
  .interview__item__header__img {
    margin-right: calc((100vw - 1200px) / 2 * -1);
  }
}

.interview__item__content__list {
  margin-top: 4em;
  display: flex;
  flex-direction: column;
  gap: 5em;
  color: #fff;
}

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

.interview__item__content__item__catch {
  font-size: 1.75em;
}

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


.interview__item__flow {
  margin-top: calc(var(--section_margin) / 2);
  z-index: 1;
  background-color: var(--main-blue);
  padding-block: 5em;
  width: 100vw;
  margin-inline: calc((50% - 10em - 2em - 27rem) - 50vw);
  margin-inline: calc((50% - 23.1rem) - 50vw);
}


.interview__item__flow__inner {
  width: min(68rem, var(--center_percent));
  margin-inline: auto;
}

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

.interview__item__flow .section__title--main {
  font-size: 2.5em;
}

.interview__item__flow__header__text {
  margin-top: 2.5em;
  text-align: center;
}

.interview__item__flow__list__wrap {
  margin-top: 4em;
  display: flex;
  gap: 2em;
}

.interview__item__flow__list {
  flex: 1;
}

.interview__item__flow__item {
  display: flex;
  align-items: baseline;
  gap: 1em;
  padding-bottom: 1.5em;
  line-height: 1.5;
  position: relative;
}

.interview__item__flow__item:last-of-type {
  padding-bottom: 0;
}

.interview__item__flow__item:last-of-type::after {
  height: 80%;
}

.interview__item__flow__list:last-of-type .interview__item__flow__item:last-of-type::after {
  content: none;
}

.interview__item__flow__item::before {
  content: '';
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}

.interview__item__flow__item::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0.5rem;
  transform: translateX(-50%);
  top: 1em;
}

.interview__item__flow__item__time {
  flex-shrink: 0;
}

.interview__item__flow__item__tile,
.interview__item__flow__item__text {
  font-size: 1.4rem;
}

.interview__item__flow__item__text {
  margin-top: 0.5em;
  /* line-height: 1; */
}

/*=====/interview=====*/
/*=====description=====*/

.page__header__img {
  margin-top: 2em;
}

.page__header__img img {
  width: 100%;
}

.page--desc .page__header {
  margin-bottom: 0;
}

.desc {
  margin-block: 0;
  background-color: var(--main-blue);
  color: #fff;
  padding-block: calc(var(--section_margin) / 2);
}

.desc.--mid {
  background-color: var(--dark-blue);
}

.desc__title {
  font-size: 2.5em;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

.desc__item+.desc__item {
  margin-top: calc(var(--section_margin) / 2);
  padding-top: calc(var(--section_margin) / 2);
  border-top: 1px solid #fff;
}

.desc__item__header__title {
  font-size: 1.75em;
  margin-bottom: 1em;
}

.desc__item__body {
  margin-top: 2.5em;
}

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

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

/* トグルボタン（開閉アイコン）のスタイル */
.faq__toggle-btn {
  background-color: var(--main-blue);
  width: 1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

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

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

.faq__toggle-btn::after {
  width: 50%;
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 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;
  color: var(--main-blue);
}

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

.faq__answer__table__wrap .common__btn {
  width: auto;
}

/*=====/description=====*/
/*=====contact=====*/

body:has(.page--contact) {
  background-color: #F3F3F3;
}

.page--contact .page__header {
  margin-bottom: 0;
}

.contact {
  margin-block: calc(var(--section_margin) / 2);
}

.contact__wrap {
  display: flex;
  flex-direction: column;
  gap: 6.25em;
}

.contact__item__title {
  font-size: 1.5em;
  color: var(--main-blue);
  margin-bottom: 1.5em;
}

.contact__tel__link {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 3em 1em;
  align-items: center;
  border-radius: 8px;
}

.contact__tel__number {
  font-size: 2em;
  color: var(--main-blue);
}

.contact__form__header__note {
  color: red;
  margin-top: 1em;
  display: inline-flex;
}

.contact__form__content {
  margin-top: 4em;
}

.contact__table {
  width: 100%;
}

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

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

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

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

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

.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(--orange);
  color: #fff;
  background-color: var(--main-blue);
  border-radius: 8px;
  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=====*/
/*===============/main===============*/
/*===============footer===============*/

.footer__entry__wrap {
  background-color: tomato;
  background-image: url(../img/common/footer__entry__img@2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 7.5em;
}

.footer__entry__inner {
  width: min(100rem, var(--center_percent));
  margin-inline: auto;
}

.footer__entry__desc__list {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}

.footer__entry__desc__list .common__btn {
  background-color: #ffffff80;
  backdrop-filter: blur(10px);
  color: var(--main-blue);
  flex-basis: 50%;
  font-size: 1.5em;
  height: auto;
  padding-block: 1em;
}

.footer__entry__desc__list .common__btn__arrow::after,
.footer__entry__btn.common__btn .common__btn__arrow::after {
  background-image: url(../img/common/icon__arrow--blue.svg);
}

.footer__entry__btn.common__btn {
  background-color: #ffffff80;
  backdrop-filter: blur(10px);
  color: var(--main-blue);
  width: 100%;
  font-size: 4em;
  height: auto;
  padding-block: 0.75em;
  font-style: italic;
}

.footer__entry__btn.common__btn .common__btn__arrow__wrap {
  width: 3em;
  height: 2em;
}

.footer__entry__btn.common__btn .common__btn__arrow {
  width: 0.5em;
}

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

.footer__wrap {
  /* padding-block: 6.25em 0; */
}

.footer__main {
  padding-block: 5em;
  display: flex;
  justify-content: space-between;
  gap: 4em;
}

.footer__detail {
  flex-shrink: 0;
}

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

.footer__logo__img {
  width: 25rem;
}

.footer__logo__text {
  font-size: 1.2rem;
}

.footer__address {
  margin-top: 2em;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.footer__address__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-right: 1em;
}

.footer__address__title::after {
  content: '';
  width: 1px;
  height: 1em;
  background-color: #fff;
}

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

.footer__sns__item {
  width: 1.5em;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__sns__item img {
  width: 100%;
}

.footer__menu {
  display: flex;
  gap: 3em;
}

.footer__menu__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3em;
}

.footer__menu__item__main {
  font-size: 1.25em;
  line-height: 0.8 !important;
  display: flex;
}

.footer__menu__item__child__list {
  margin-top: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}

.footer__menu__item__child__item {
  line-height: 1;
  font-size: 0.875em;
  font-weight: 600;
}

.footer__sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 2em;
  border-top: 1px solid #fff;
  gap: 3em;
}

.footer__sub__link__list {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.footer__sub__link__item,
.footer__copyright {
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer__sub__link__item.icon__other-page::after {
  background-image: url(../img/common/icon__other-page--white.svg);
}

/*===============/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__main {
    padding-inline: 5%;
  }

  .header__logo__link {
    gap: 1em;
  }

  .header__logo__img {
    width: min(40vw, 24rem);
  }

  .header__logo__link span {
    font-size: min(1em, 3vw);
  }

  .nav__other__list {
    display: none;
  }

  .header_menu {
    right: auto;
    left: 0;
    width: 100%;
    padding: calc(var(--header__height) + 2em) 5% 20vh;
  }

  .header_menu_inner {
    /* background-color: tomato; */
    width: 100%;
    max-width: 100%;
  }

  .header_menu_list {
    gap: 0;
  }

  .header_menu_item {
    padding-block: 2em;
    border-bottom: 1px solid #ffffff40;
  }

  .header_menu_list:first-of-type .header_menu_item:first-of-type {
    border-top: 1px solid #ffffff40;
  }

  .header_menu_list_wrap {
    flex-direction: column;
    gap: 0;
  }

  .header__nav__btn.open .header__nav__btn_line {
    background-color: #fff !important;
  }

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

  .section__title--main {
    /* font-size: min(6em, 15vw); */
  }

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

  .top__fv__catch--sub {
    font-size: 5vw;
    margin-left: 0.5em;
  }

  .top__intro__text__wrap {
    text-align: left;
  }

  .top__intro__catch {
    white-space: nowrap;
    font-size: min(4em, 11vw);
  }

  .top__intro__text__wrap {
    font-size: min(1.75em, 3.75vw);
    font-size: min(1.75em, 5vw);
  }

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

  .top__service__header,
  .top__service__content {
    /* flex-direction: column; */
    display: contents;
  }

  .top__service__wrap .common__btn.--white {
    order: 4;
    margin-left: auto;
  }

  .top__data__list {
    flex-direction: column;
  }

  .top__interview__slider {
    margin-top: 2em;
  }

  .interview__slide {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
  }

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

  .interview__slide__left {
    padding: 2em 0;
    order: 2;
    gap: 1.5em;
  }

  .interview__quote {
    font-size: 3.5vw;
  }

  .interview__nav {
    position: relative;
  }

  .top__interview__btn__wrap {
    margin-top: 4em;
  }

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

  .interview__column__side {
    display: none;
  }

  .interview__item__header {
    aspect-ratio: auto;
    flex-direction: column;
    margin-left: 0;
    gap: 1.5em;
  }

  .interview__item__header__detail {
    order: 2;
    width: 100%;
    gap: 1.5em;
  }

  .interview__item__header__img {
    position: relative;
    margin-right: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
  }

  .interview__item {
    padding-left: 0;
  }

  .interview__item::before {
    height: calc(100% - 5rem);
    width: 100% + 10vw;
    margin-left: -5vw;
  }

  .interview__item__content__item__catch {
    font-size: 1.25em;
  }

  .interview__item__flow {
    margin-inline: -5vw;
  }

  .interview__item__flow__list__wrap {
    flex-direction: column;
    gap: 0;
  }

  .interview__item__flow__item,
  .interview__item__flow__list:first-of-type .interview__item__flow__item:last-of-type {
    padding-bottom: 3em;
  }

  .interview__item__flow__list:first-of-type .interview__item__flow__item:last-of-type::after {
    /* background-color: tomato; */
    height: 100%;
  }

  /*=====/interview=====*/
  /*=====description=====*/

  .page__header__img img {
    aspect-ratio: 2/1;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

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

  .faq__answer__table__wrap {
    padding: 2em 2em;
    gap: 2em;
  }



  .faq__answer__table tr {
    flex-direction: column;
    gap: 1em;
  }

  .faq__answer__table td {
    width: 100%;
    padding: 0;
  }

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

  /*=====/description=====*/
  /*===============/main===============*/
  /*===============footer===============*/

  .footer__entry__desc__list {
    flex-direction: column;
  }

  .footer__entry__desc__list .common__btn {
    width: 100%;
  }

  .footer__entry__btn.common__btn {
    /* font-size: 1.5em; */
    font-size: 2em;
    padding-block: 1em;
  }

  .footer__entry__btn.common__btn .common__btn__arrow__wrap {
    width: 3.5em;
  }

  .footer__main {
    flex-direction: column;
  }

  .footer__logo__img {
    width: 20rem;
  }

  .footer__address {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }

  .footer__menu {
    flex-direction: column;
  }

  .footer__menu__item__main {
    font-size: 1.5em;
  }

  .footer__menu__item__child__item {
    font-size: 1em;
  }

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

  }

  /*===============/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===============*/
  /*===============main===============*/
  /*=====top=====*/

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

  /*=====/top=====*/
  /*=====works=====*/

  .works__list {
    flex-direction: column;
  }

  .works__item__table {
    font-size: 1.2rem;
  }

  /*=====/works=====*/
  /*=====works-single=====*/

  .works-single__header__detail {
    flex-direction: column;
    align-items: flex-start;
  }

  /*=====/works-single=====*/
  /*===============/main===============*/
  /*===============footer===============*/



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