@charset "utf-8";
html {
  scroll-behavior: smooth; /* CSSだけで滑らかに移動できる */
  font-size: 62.5%; /* 1rem = 10px */
}
a {
  transition: 0.3s ease;
}

main {
  overflow: visible;
}
/* dialogue-head固定用 */

.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

:root {
  /* 色 例）color: var(--white); */
  --black: #373737;
  --white: #fafafa;
  --txt_blue: #005c6c;
  --base_blue: #00bec8;
  --blue01: #69c3c6;
  --red01: #ff6987;
  --gradation: linear-gradient(90deg, #64cde6, #ffffb4);

  /* header */
  --header-height100: 100px;
  --header-height80: 80px;

  /* font-family */
  --notosan: "Noto Sans JP", sans-serif;
  --zenkaku: "Zen Kaku Gothic New", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --outfit: "Outfit", sans-serif;

  /* font-weight */
  --Regular: 400;
  --Medium: 500;
  --Bold: 700;
  --Black: 900;

  /* font */
  --size50: 5rem;
  --size43: 4.3rem;
  --size40: 4rem;
  --size36: 3.6rem;
  --size32: 3.2rem;
  --size30: 3rem;
  --size28: 2.8rem;
  --size24: 2.4rem;
  --size19: 1.9rem;

  /* border-radius */
  --border10: 10px;
  --border20: 20px;
  --border30: 30px;
  --border50: 50px;

  /* line height */
  --line20: 2;
  --line19: 1.9;
  --line18: 1.8;
  --line17: 1.7;
  --line16: 1.6;
  --line15: 1.5;
  --line14: 1.4;
  --line13: 1.3;
  --line12: 1.2;

  /* letter-spacing */
  --ls10: 0.01em;
  --ls20: 0.02em;
  --ls30: 0.03em;
  --ls40: 0.04em;
  --ls50: 0.05em;
  --ls60: 0.06em;
  --ls75: 0.075em;
  --ls100: 0.1em;
  --ls200: 0.2em;
}

@media (max-width: 1024px) {
  :root {
    --size50: 4.2rem;
    --size43: 4rem;
    --size40: 3.2rem;
    --size36: 3rem;
    --size32: 2.6rem;
    --size30: 2.4rem;
    --size24: 2.2rem;
  }
}

@media (max-width: 860px) {
  :root {
    --size50: 4rem;
    --size43: 3.6rem;
    --size40: 3rem;
    --size28: 2.4rem;
    --size19: 1.8rem;
  }
}

@media (max-width: 768px) {
  :root {
    --size50: 3.6rem;
    --size43: 3.2rem;
    --size40: 2.6rem;
    --size36: 2.6rem;
    --size32: 2.2rem;
    --size30: 2.2rem;
    --size24: 2rem;
    --size19: 1.7rem;
  }
}

@media (max-width: 480px) {
  :root {
    --size50: 3rem;
    --size43: 2.6rem;
    --size40: 2.4rem;
    --size36: 2.2rem;
    --size32: 2rem;
    --size28: 2.2rem;
    --size24: 1.8rem;
    --size19: 1.6rem;

    --ls60: 0.03em;
  }
}

@media (max-width: 375px) {
  :root {
    --size50: 2.8rem;
    --size43: 2.3rem;
    --size40: 2.2rem;
    --size36: 2rem;
    --size32: 1.9rem;
    --size30: 1.9rem;
    --size28: 2rem;
    --size24: 1.8rem;
  }
}

body {
  background-color: var(--white);
  color: var(--txt_blue);
  font-family: var(--zenkaku);
  font-weight: var(--Medium);
  font-size: var(--size19);
  line-height: var(--line16);
  letter-spacing: var(--ls60);
  text-align: center;
  width: 100%;
}

/* ↓↓↓↓ヘッダー分MVを下げる↓↓↓↓ */
main {
  margin-top: var(--header-height100);
}

@media (max-width: 768px) {
  main {
    margin-top: 0;
  }
}

/* ↓↓↓↓スワイパーの速さを一定にする↓↓↓↓ */
/* .mv-wrapper {
  transition-timing-function: linear;
} */

/*******************************************************
ヘッダー
*******************************************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height100);
  background-color: #fff;
  z-index: 5;
  /* padding-left: 2.167%; */
  padding-right: 3.611%;
  transition: position 0.3s;
}

.header-inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* 左側を縮ませない */
}

.logo {
  max-width: clamp(200px, 25vw, 240px);
  width: 100%;
  display: block;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1; /* 残りスペースを確保 */
  min-width: 0; /* flexbox の省略時改行を防止 */
}

.jump {
  display: flex;
  gap: 3rem;
  flex-shrink: 1; /* 必要に応じて縮む */
  min-width: 0; /* flexbox内での縮みを許容 */
  white-space: nowrap;
}

.jump-list {
  display: inline-block;
  font-size: 1.8rem;

  line-height: 50px;
  letter-spacing: 0;
}

.jump-list:hover {
  color: var(--base_blue);
}

@media (max-width: 1024px) {
  .jump-list {
    font-size: 1.6rem;
  }
}
@media (max-width: 860px) {
  .jump {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    position: static;
    height: var(--header-height80);
  }

  .logo {
    max-width: clamp(150px, 37vw, 200px);
  }

  .jump-list {
    display: none;
  }
}

/*******************************************************
ハンバーガー
*******************************************************/
.hamburger {
  display: none;
}

/* 線のスタイル */
.hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--base_blue);
  transition: all 0.4s;
}

/* 各線の位置 */
.hamburger span:nth-of-type(1) {
  top: 25%;
  transform: translateX(-50%);
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateX(-50%);
}
.hamburger span:nth-of-type(3) {
  top: 75%;
  transform: translateX(-50%);
}

/* ハンバーガーがアクティブ時 */
.hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(135deg);
  background-color: var(--blue01);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-135deg);
  background-color: var(--blue01);
}

.hamburger:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s;
    height: 55px;
    width: 55px;
    top: 13px;
    right: 2%;
    z-index: 11;
  }
}

@media (max-width: 480px) {
  .hamburger {
    height: 45px;
    width: 45px;
    top: 15px;
  }
}

/* ↓↓↓↓↓↓↓↓↓↓ハンバーガー内メニュー↓↓↓↓↓↓↓↓↓↓ */

.burger-mask {
  display: none;
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.burger-mask.js-active {
  display: block;
}

.navi {
  position: fixed;
  z-index: 10;
  top: 0;
  right: -100%;

  width: 60%;
  height: 100%;
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.6s;
}

.navi.active {
  visibility: visible;
  right: 0;
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 80px 40px 60px;
}

.menu-list {
  text-decoration: none;
  line-height: 1.6;
  min-height: 60px;
}

.menu-jp {
  font-size: 2rem;
  line-height: 1.4;
  padding: 1em;
  border-bottom: 2px solid var(--blue01);
  width: 100%;
}

.menu-list:hover {
  color: var(--blue01);
}

@media (max-width: 768px) {
  .navi {
    width: 80%;
  }

  .menu {
    padding: 55px 35px;
  }

  .menu-jp {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .menu-jp {
    font-size: 1.6rem;
  }
}

@media (max-width: 333px) {
  .menu-jp {
    font-size: 1.5rem;
  }
}

#us,
#features,
#job {
  scroll-margin-top: 80px;
}

#faq {
  scroll-margin-top: -120px;
}

@media (max-width: 768px) {
  #us,
  #features,
  #job {
    scroll-margin-top: 0;
  }
  #faq {
    scroll-margin-top: -150px;
  }
}
/*******************************************************
ボタン
*******************************************************/
/* ボタン共通 */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 17px;
  letter-spacing: var(--ls75);
  color: var(--white);
  border-radius: var(--border20);
  padding: 0 10px;
}

.btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* メニューボタン */
.menu-btn {
  max-width: 300px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
}

.menu-button {
  font-size: 1.6rem;
}

/* jobボタン */
.job-btn {
  max-width: 500px;
  width: 100%;
  height: 110px;
  margin: 0 auto;
}

.job-button {
  font-size: 2.5rem;
}

/* joinusボタン */
.join-btn {
  max-width: 500px;
  width: 100%;
  height: 120px;
  margin: 0 auto;
}

.join-button {
  font-size: 2.6rem;
}

/* ↓↓↓↓矢印↓↓↓↓ */

.arrow {
  position: absolute;
  right: 5%;
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--white);
}

/* メニューボタン */
.menu-button .arrow {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--white);
}

/* ↑↑↑↑矢印↑↑↑↑ */

@media (max-width: 860px) {
  .job-btn {
    max-width: 400px;
    height: 100px;
  }

  .job-button {
    font-size: 2.2rem;
  }

  .join-btn {
    max-width: 450px;
    height: 100px;
  }

  .join-button {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .menu-btn {
    width: calc(100% - 40px);
    max-width: 280px;
  }

  .job-btn {
    max-width: 300px;
    height: 95px;
  }

  .job-button {
    font-size: 2rem;
  }

  .join-btn {
    max-width: 350px;
    height: 100px;
  }

  .join-button {
    font-size: 2.1rem;
  }
}

/*******************************************************
共通
*******************************************************/
/******** 余白 *******/
.inner-1100 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.inner-980 {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1150px) {
  .inner-980,
  .inner-1100 {
    padding-inline: max(5%, 20px);
  }
}

.sec-pd {
  padding: 100px 0 135px;
}

@media (max-width: 768px) {
  .sec-pd {
    padding: 80px 0 100px;
  }
}

@media (max-width: 480px) {
  .sec-pd {
    padding: 70px 0 80px;
  }
}

/******** 改行 *******/
.block {
  display: inline-block;
}
.br400 {
  display: none;
}

@media (max-width: 1024px) {
  .br_pc,
  .br_pc2 {
    display: none;
  }
}

@media (max-width: 860px) {
  .block-860 {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .br_pc {
    display: block;
  }
}

@media (max-width: 480px) {
  .block-480 {
    display: inline-block;
  }
}
@media (max-width: 400px) {
  .br400 {
    display: block;
  }
}

/******** 色 *******/
.color_red {
  background-color: var(--red01);
}
/******** 文字 *******/

/******** others *******/
.flex {
  display: flex;
}

.section-ttl {
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 9.092%;
}

.ttl-en {
  max-width: 608px;
  width: 100%;
  margin-right: auto;
}

.ttl-jp {
  display: inline-block;
  font-size: var(--size50);
  font-family: var(--notoserif);
  letter-spacing: var(--ls75);
  margin: -3% auto 0;
}

.ttl-2 .ttl-en {
  margin-right: 0;
  margin-left: auto;
}

.ttl-4 .ttl-en {
  margin-right: 0;
  margin: 0 auto;
}

.ttl-4 .ttl-jp {
  color: var(--white);
}

.head {
  font-family: var(--notoserif);
  font-size: var(--size40);
  letter-spacing: var(--ls75);
}

.line {
  width: 100%;
  margin: -1% auto 0;
}
.line1-2 {
  max-width: 251px;
}

.line3 {
  max-width: 290px;
}

.line4 {
  max-width: 488px;
}
.line5 {
  max-width: 758px;
}

@media (max-width: 1024px) {
  .ttl-en {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .ttl-en {
    width: 60%;
  }

  .line {
    width: 50%;
    margin: 0 auto;
  }

  .line.line5 {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .ttl-en {
    width: 80%;
  }

  .line.line4 {
    width: 80%;
  }
  .line.line5 {
    width: 100%;
  }
}

/*******************************************************
MV
*******************************************************/
.mv {
  position: relative;
}

.mv-item {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
}
/*******************************************************
01_section
*******************************************************/

.section1 {
  position: relative;
  padding: 80px 0 112px;

  background: var(--white);
  background: bottom/contain no-repeat url(../img/message/back.png);
}

.section1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36.102%;
  aspect-ratio: 500 / 2265;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about_us/back_left.png");
  z-index: -1;
}

.section1::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 39.928%;
  aspect-ratio: 553 / 1482;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about_us/back_right.png");
  z-index: -1;
}

@media (max-width: 768px) {
  .section1 {
    padding: 80px 0 100px;
  }
}

@media (max-width: 480px) {
  .section1 {
    padding: 70px 0 80px;
  }

  .section1::before {
    width: 65%;
  }

  .section1::after {
    width: 65%;
    bottom: 5%;
  }
}

/******** メッセージ *******/
.message {
  position: relative;
  background: var(--blue01);
  color: var(--white);
  width: 100%;
  border-radius: var(--border30);
  padding: 80px 0 305px;
  margin-bottom: 65px;
  z-index: 1;
}

.message-txt {
  position: relative;
  padding: 0 60px;
  z-index: 1;
}

.message-top {
  width: fit-content;
  font-size: var(--size24);

  padding: 0 40px 50px;
}

.message-bottom {
  flex-direction: column;
  gap: 5rem;
  padding: 0 30px;
}

.message-pic {
  position: absolute;
  bottom: 0;
  max-width: 1100px;
  width: 100%;
  z-index: 0;
}

@media (max-width: 1024px) {
  .message-top {
    padding: 0 0 50px;
  }
}

@media (max-width: 768px) {
  .message {
    padding: 60px 0 220px;
  }

  .message-txt {
    padding: 0 30px;
  }

  .message-top {
    padding: 0 0 40px;
  }

  .message-bottom {
    gap: 4rem;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .message {
    padding: 60px 0 180px;
  }
}

@media (max-width: 480px) {
  .message {
    padding: 60px 0 120px;
  }

  .message-txt {
    padding: 0 20px;
  }
}

/******** 役割 *******/
.role-outer {
  flex-direction: column;
  gap: 6.6rem;
  padding-bottom: 100px;
}

.role-img {
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}

.role-box {
  display: flex;
  justify-content: center;
  align-items: center;

  max-width: 700px;
  width: 100%;
  height: 155px;
  margin: 0 auto;
  background-color: var(--base_blue);
  border-radius: var(--border20);
}

.role-txt {
  font-size: var(--size24);
  color: var(--white);
}

@media (max-width: 1024px) {
  .role-img {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .role-outer {
    gap: 6rem;
    padding-bottom: 60px;
  }

  .role-img {
    width: 80%;
  }

  .role-box {
    width: 90%;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .role-outer {
    gap: 3rem;
  }

  .role-img {
    width: 90%;
  }

  .role-box {
    height: 130px;
  }

  .role-txt {
    font-size: 1.7rem;
  }
}
@media (max-width: 375px) {
  .role-img {
    width: 100%;
  }

  .role-txt {
    font-size: 1.6rem;
  }
}

/******** 対応案件(ギャラリー) *******/

.slide-box {
  display: flex;
  overflow-x: hidden;
  padding-top: 90px;
}

.slideshow {
  justify-content: center;
  align-items: flex-start;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
}

.content:nth-child(odd) {
  margin-top: 45px;
}

.content img {
  width: 400px;

  height: auto;
  display: block;
}

.slideshow {
  animation-name: loop-slide; /* アニメーション名 */
  animation-duration: 20s; /* 開始から終了までの所要時間 */
  animation-iteration-count: infinite; /* アニメーションのループ回数 */
  animation-timing-function: linear; /* 動きの加減速 */
  animation-delay: 1s; /* アニメーションが開始するまでの遅延時間 */
  animation-fill-mode: both; /* アニメーション開始前・終了後の挙動 */
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 860px) {
  .slide-box {
    padding-top: 60px;
  }

  .content img {
    width: 265px;
  }
}

@media (max-width: 768px) {
  .content {
    padding-right: 20px;
  }

  .content img {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .slide-box {
    padding-top: 40px;
  }

  .content img {
    width: 200px;
  }
}

/*******************************************************
02_section
*******************************************************/
.section2 {
  position: relative;
  background: center/cover no-repeat url(../img/features/back.jpg);
}

/******** 共通 *******/

/******** 環境 *******/

/******** 入り口ボタン *******/

.open-modal {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.open-modal:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.environment-outer {
  position: relative;
  display: grid;
  grid-template-columns: 628px 1fr;
  padding: 90px 0 160px;
}

.environment-outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 13%;
  transform: translate(100%, 0);
  width: 43.455%;
  aspect-ratio: 478 / 194;
  pointer-events: none;
  background: center/contain no-repeat url("../img/features/fukidashi_pc.png");
  z-index: 1;
}

.open-modal {
  width: auto;
}

.environment-outer button:nth-child(even) {
  justify-self: end;
}

.environment-outer button:nth-child(1) {
  position: relative;
}

.environment-outer button:nth-child(1) .environment-btn {
  max-width: 628px;
  width: 100%;
}

.environment-outer button:nth-child(2) {
  position: relative;
  top: 50%;
}

.environment-outer button:nth-child(2) .environment-btn {
  max-width: 462px;
  width: 100%;
}

.environment-outer button:nth-child(3) {
  position: relative;
  top: 25%;
  right: -15%;
}

.environment-outer button:nth-child(3) .environment-btn {
  max-width: 462px;
  width: 100%;
}

.environment-outer button:nth-child(4) {
  position: relative;
  top: 80%;
}

.environment-outer button:nth-child(4) .environment-btn {
  max-width: 450px;
  width: 100%;
}

.environment-outer button:nth-child(5) {
  position: relative;
  top: 25%;
  left: -10%;
}

.environment-outer button:nth-child(5) .environment-btn {
  max-width: 459px;
  width: 100%;
}

@media (max-width: 1150px) {
  .environment-outer {
    grid-template-columns: repeat(2, 1fr);

    padding: 90px 0 280px;
  }

  .environment-outer button:nth-child(1) {
    position: relative;
    right: -9%;
  }

  .environment-outer button:nth-child(4) {
    right: -10%;
  }

  .environment-outer button:nth-child(5) {
    top: 50%;
    left: 0;
  }
}

@media (max-width: 768px) {
  .environment-outer::before {
    background: center/contain no-repeat url("../img/features/fukidashi_sp.png");
  }

  .environment-outer {
    grid-template-columns: 1fr;
    justify-items: stretch !important;
    padding: 160px 0 80px;
  }

  .environment-outer::before {
    width: 60%;
    top: 1%;
    left: -16%;
  }

  .environment-outer button {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;

    justify-self: center !important;
    width: 100%;
  }

  .environment-outer button:nth-child(odd) .environment-btn {
    margin-right: auto;
    margin-left: 0;
  }

  .environment-outer button:nth-child(even) .environment-btn {
    margin-left: auto;
    margin-right: 0;
  }

  .environment-outer .environment-btn {
    width: 60% !important;
  }

  .environment-outer button:nth-child(1) .environment-btn {
    width: 80% !important;
  }

  .environment-outer button {
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  .environment-outer {
    padding: 140px 0 60px;
  }
}

@media (max-width: 375px) {
  .environment-outer {
    padding: 100px 0 70px;
  }

  .environment-outer .environment-btn {
    width: 75% !important;
  }

  .environment-outer button:nth-child(1) .environment-btn {
    width: 85% !important;
  }
}

/******** モーダル全体 *******/
.modal {
  opacity: 0;
  display: flex;
  visibility: hidden;
  pointer-events: none; /* 非表示中はクリック不可 */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto; /* スクロール可能 */
  background: url("../img/features/back.jpg") no-repeat center / cover;
  z-index: 11;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fade-in {
  transform: translateY(100%);
  transition: all 0.5s ease;
}

body.modal-open {
  overflow: hidden; /* スクロール禁止 */
}

/* モーダル表示中にヘッダーを止める */
body.modal-open .header {
  position: static;
}

/* モーダル表示中はハンバーガー非表示 */
body.modal-open .hamburger {
  display: none !important;
}

/* モーダル表示中は追従ボタン非表示 */
body.modal-open .slidebtn-wrap {
  display: none !important;
}

/******** モーダル中身 *******/

.modal-wapper {
  padding: 70px 0 80px;
  border-radius: var(--border30);
}

.modal-box {
  position: relative;
  max-width: 792px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  border: 6px solid var(--base_blue);
  border-radius: 40px;
  padding: 55px 55px 80px;
}

.modal-title {
  position: relative;
  font-size: var(--size36);
  display: inline-block;
  padding: 0 1%;
}

.modal-title p {
  position: relative;

  display: inline;
}

.modal-title p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3%;
  transform: translate(-50%, -50%);
  width: 12.343%;
  aspect-ratio: 55 / 49;
  pointer-events: none;
  background: center/contain no-repeat url("../img/common/deco.png");
}

.modal-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background: var(--gradation);
}

.modal-icon {
  max-width: 493px;
  width: 100%;
  margin: 50px auto 0;
}

.modal-icon img {
  border-radius: 30px;
}

.modal-txt {
  font-size: 1.8rem;
  letter-spacing: 0;
  padding-top: 40px;
}

.modal-txt p {
  display: inline;
  padding-bottom: 5px;
  background-image: radial-gradient(
    circle,
    var(--base_blue) 1px,
    transparent 2px
  );
  background-size: 13px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
  line-height: 2;
}

@media (max-width: 768px) {
  .modal-box {
    padding: 55px 30px 80px;
  }

  .modal-txt {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .modal-box {
    padding: 50px 20px 80px;
  }

  .modal-icon {
    margin: 35px auto 0;
  }

  .modal-txt {
    font-size: 1.6rem;
    padding-top: 20px;
  }
}

/******** 閉じるボタン *******/

.close-btn {
  position: absolute;
  max-width: 73px;
  right: -1px;
  bottom: -1px;
}

.close-button:hover {
  opacity: 0.7;
}

/******** 数字 *******/
.data-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 70px 0;
}

.data-box {
  max-width: 470px;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--border20);
  padding: 30px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.data-head {
  font-size: var(--size30);
  padding-bottom: 5px;
}

.data-img {
  max-width: 469px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .data-outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
  }

  .data-img {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .data-box {
    width: 85%;
  }

  .data-img {
    width: 100%;
  }
}

/******** インタビュー *******/

.interview-q {
  background-color: var(--white);
  border: 1px solid var(--txt_blue);
  border-radius: var(--border50);
  width: 544px;
  line-height: 80px;
  margin: 77px auto 45px;
}

.interview-q p {
  font-size: var(--size32);
}

.interview-outer {
  align-items: stretch;
  gap: 4rem;
}

.interview-box {
  flex-direction: column;
  gap: 5rem;
  flex: 1;
}

.int-txtbox {
  position: relative;
  background-color: var(--white);
  border-radius: var(--border20);
  max-width: 340px;
  width: 100%;
  min-height: 175px;
  flex-grow: 1;
  padding: 25px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.int-txtbox::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 23.5px solid var(--white);
}

.int-txtbox p {
  text-align: justify;
  padding: 0 18px;
}

.int-pic img {
  width: 100%;
  border-radius: var(--border20);
}

@media (max-width: 1024px) {
  .interview-q {
    width: 500px;
    margin: 50px auto 45px;
  }
}

@media (max-width: 768px) {
  .interview-q {
    max-width: 430px;
    width: 100%;
    line-height: 70px;
    margin: 45px auto;
  }

  .interview-outer {
    flex-direction: column;
  }

  .int-txtbox {
    max-width: 470px;
    min-height: auto;
    margin: 0 auto;
  }

  .int-pic img {
    max-width: 470px;
  }
}

@media (max-width: 480px) {
  .int-pic img {
    width: 80%;
  }

  .int-txtbox p {
    padding: 0 22px;
  }
}
/*******************************************************
03_section
*******************************************************/

.section3 {
  position: relative;
  background: var(--white);
  padding: 100px 0 0;
  z-index: 0;
}

.section3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1400 / 3000;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about_job/deco_top.png");
  z-index: -1;
}

.section3::after {
  content: "";
  position: absolute;
  bottom: 13%;
  left: 0;
  width: 100%;
  aspect-ratio: 1400 / 2215;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about_job/deco_bottom.png");
  z-index: -1;
}

@media (max-width: 1170px) {
  .section3::after {
    bottom: 16%;
  }
}

@media (max-width: 768px) {
  .section3 {
    padding: 100px 0 0;
  }

  .section3::before {
    aspect-ratio: 980 / 3500;
    background: center/contain no-repeat url("../img/about_job/top_sp.png");
  }

  .section3::after {
    bottom: 50%;
    aspect-ratio: 980 / 2800;
    background: center/contain no-repeat url("../img/about_job/bottoom_sp.png");
  }
}

@media (max-width: 480px) {
  .section3 {
    padding: 70px 0 0;
  }
}

.job-wrapper {
  padding-bottom: 190px;
}

.job-wrapper:nth-of-type(2) {
  padding-bottom: 0;
}

.job-head {
  font-size: var(--size43);
}

.job-head span {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: var(--base_blue);
  vertical-align: middle;
  transform: translateY(-25%);
}
.job-head span:first-child {
  margin-right: 15px;
}

.job-head span:last-child {
  margin-left: 15px;
}

.job-set {
  gap: 4rem;
  padding: 30px 0 60px;
}

.job-pic {
  max-width: 470px;
  width: 100%;
}

.job-pic img {
  border-radius: var(--border30);
}

.job-set .txt {
  max-width: 460px;
  width: 100%;
  text-align: justify;
  padding-top: 40px;
}

@media (max-width: 1024px) {
  .job-wrapper {
    padding-bottom: 120px;
  }
}

@media (max-width: 768px) {
  .job-wrapper {
    padding-bottom: 100px;
  }

  .job-set {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 30px 0 60px;
  }

  .job-set .txt {
    max-width: 500px;

    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .job-wrapper:nth-of-type(2) {
    padding-bottom: 40px;
  }
}

/******** 電話内容 *******/
.tel-box {
  max-width: 800px;
  width: 100%;
  background: center/cover no-repeat url(../img/about_job/gradation.png);
  border-radius: var(--border20);
  margin: 0 auto;
  padding: 30px 0;
}

.tel-head {
  font-size: var(--size28);
  padding-bottom: 30px;
}

.tel-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
}

.tel-list p {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 2.1rem;
  padding-bottom: 5px;
}

.tel-list p:last-child {
  padding-bottom: 0;
}

.tel-list span {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: var(--base_blue);
  transform: rotate(45deg);
  vertical-align: middle;
}

@media (max-width: 768px) {
  .tel-list p {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .tel-box {
    padding: 25px 0;
  }

  .tel-head {
    padding-bottom: 20px;
  }

  .tel-list p {
    font-size: 1.7rem;
  }

  .tel-list span {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 400px) {
  .tel-list p {
    text-align: justify;
    align-items: baseline;
    gap: 1rem;
  }
}

/******** 会話 *******/

.dialogue-wrapper {
  flex-direction: column;
  padding-top: 100px;
}

.dialogue-outer {
  gap: 6rem;
  padding-bottom: 5%;
}

.dialogue-head {
  display: inline-flex;
  position: sticky;
  top: 15%;
  writing-mode: vertical-rl;
  height: auto;
  align-self: flex-start;
  font-size: var(--size40);
  text-align: justify;
  letter-spacing: var(--ls75);
}

.dialogue-list {
  flex-direction: column;
}

.dialogue-set {
  gap: 8rem;
}

/* ①全体の2つ目 */
.dialogue-set + .dialogue-set {
  margin: 170px 0 200px;
}

/* ②本数変更編だけ変更 */
.num-change ~ .dialogue-set + .dialogue-set {
  margin: 170px 0 0;
}

/* ③本数変更編だけの3つ目だけ */
.num-change + .dialogue-set + .dialogue-set + .dialogue-set {
  margin: 170px 0 200px;
}

.dialogue-box {
  padding: 60px 10px 60px 20px;
  border-radius: var(--border30);
  justify-content: center;
  align-items: center;
}

.dialogue-left,
.dialogue-right {
  position: relative;
  display: flex;

  min-width: 0;
}

.dialogue-left {
  justify-content: flex-start;
}

.dialogue-right {
  justify-content: flex-end;
}

.dialogue-right .dialogue-box {
  transform: translateY(40px);
}

.box-left {
  position: relative;
  background-color: #b9eade;
  width: 360px;
  max-width: 100%;
  max-height: 150px;
}

.box-left::after {
  content: "";
  position: absolute;
  bottom: 1%;
  right: 25%;
  transform: translate(-100%, 100%);
  width: 15.88%;
  aspect-ratio: 55 / 37;
  pointer-events: none;
  background: center/contain no-repeat url(../img/about_job/item01.png);
  z-index: 0;
}

.box-right {
  position: relative;
  background-color: #70cbb9;
  width: 380px;
  max-width: 100%;
  max-height: 200px;
}
.box-right::after {
  content: "";
  position: absolute;
  bottom: 1%;
  left: 30%;
  transform: translate(100%, 100%);
  width: 12.703%;
  aspect-ratio: 47 / 32;
  pointer-events: none;
  background: center/contain no-repeat url(../img/about_job/item02.png);
  z-index: 0;
}

.dialogue-txt {
  letter-spacing: 0;
  font-size: 2rem;
  text-align: start;
}

.box-right .dialogue-txt {
  margin-right: auto;
}

.dialogue-icon {
  position: absolute;
  bottom: 0;
  width: 119px;
}

.icon-left {
  left: 5%;
  transform: translateY(80%);
}

.icon-right {
  right: 5%;
  transform: translateY(80%);
}

.dialogue-ttl {
  background-color: var(--white);
  border: 1px solid var(--txt_blue);
  border-radius: var(--border50);
  max-width: 300px;
  width: 100%;
  line-height: 55px;
  margin: 0 auto 40px;
}

.dialogue-ttl p {
  font-size: var(--size24);
}

@media (max-width: 1150px) {
  .dialogue-outer {
    gap: 4rem;
  }

  .dialogue-set {
    align-items: stretch;
    gap: 4rem;
  }
  .box-left,
  .box-right {
    flex: 1;
  }

  .dialogue-box {
    max-width: 400px;
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .dialogue-list {
    margin-left: auto;
  }

  .dialogue-box {
    max-width: clamp(265px, 30vw, 340px);
  }

  .dialogue-txt {
    font-size: 1.8rem;
  }

  .box-left::after {
    right: 10%;
  }

  .box-right::after {
    left: 15%;
  }
}

@media (max-width: 768px) {
  .dialogue-wrapper {
    padding-top: 60px;
  }

  .dialogue-outer {
    gap: 8rem;
  }

  .dialogue-head {
    top: 6%;
  }

  .dialogue-set {
    flex-direction: column;
    gap: 12rem;

    width: 100%;
  }

  .dialogue-list {
    flex-direction: column;
    margin-left: 0;
  }

  .box-left,
  .box-right {
    width: 100%;
    max-width: 400px;
  }
  .box-right .dialogue-txt {
    margin-right: 0;
  }

  .dialogue-right .dialogue-box {
    transform: none;
  }

  /* ①全体の2つ目 */
  .dialogue-set + .dialogue-set {
    margin: 120px 0 150px;
  }

  /* ②本数変更編だけ変更 */
  .num-change ~ .dialogue-set + .dialogue-set {
    margin: 120px 0 0;
  }

  /* ③本数変更編だけの3つ目だけ */
  .num-change + .dialogue-set + .dialogue-set + .dialogue-set {
    margin: 120px 0 150px;
  }
}

@media (max-width: 480px) {
  .dialogue-outer {
    gap: 4rem;
  }

  .dialogue-box {
    padding: 30px 20px;
  }

  .dialogue-txt {
    font-size: 1.7rem;
    text-align: start;
  }

  .dialogue-ttl {
    width: 80%;
    line-height: 45px;
  }
}

@media (max-width: 375px) {
  .dialogue-outer {
    flex-direction: column;
  }
  .dialogue-head {
    display: block;
    width: 100%;
    top: 0;
    writing-mode: horizontal-tb;
    background: var(--white);
    text-align: center;
    padding: 40px 20px 0;
    z-index: 2;
  }
}

/******** ひとこと *******/

.comment-wrapper {
  position: relative;
  background: center/cover no-repeat url(../img/about_job/back.png);
  padding: 280px 0 180px;
  overflow: hidden;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 30px 30px;
}

.comment-wrapper::before {
  content: "";
  position: absolute;
  top: -0.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 101.084%;
  aspect-ratio: 1400 / 131;
  pointer-events: none;
  background: center/contain no-repeat url("../img/about_job/shape.png");
}

.comment-outer {
  gap: 4rem;
  padding-top: 60px;
}

.comment-box {
  position: relative;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--border20);
  max-width: 340px;
  width: 100%;
  padding: 50px 0 85px;
}

.comment-txtbox {
  padding: 0 20px;
}

.comment-txtbox p {
  font-size: 1.8rem;
  text-align: justify;
}

.comment-pic {
  position: absolute;
  max-width: 170px;
  left: 50%;
  bottom: -3%;
  transform: translate(-50%, 50%);
}

@media (max-width: 860px) {
  .comment-outer {
    gap: 2rem;
  }
  .comment-txtbox p {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .comment-wrapper {
    background: bottom/cover no-repeat url(../img/about_job/back_sp.png);
    padding: 180px 0;
  }

  .comment-wrapper::before {
    width: 130.147%;
    aspect-ratio: 980 / 113;

    background: center/contain no-repeat url("../img/about_job/shape_sp.png");
  }

  .comment-outer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(2rem + 80px);
  }

  .comment-box {
    max-width: 470px;
    width: 100%;
    padding: 40px 0 90px;
  }
}

@media (max-width: 480px) {
  .comment-wrapper {
    padding: 120px 0;
  }

  .comment-pic {
    max-width: 150px;
  }
}

@media (max-width: 375px) {
  .comment-txtbox p {
    font-size: 1.6rem;
  }

  .comment-box {
    padding: 30px 0 90px;
  }
}

/*******************************************************
04_section
*******************************************************/

.section4 {
  position: relative;
  padding: 188px 0 135px;
}

.section4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1400 / 800;
  pointer-events: none;
  background: center/cover no-repeat url("../img/qa/deco01.png");
  z-index: -1;
}

.section4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1400 / 1140;
  pointer-events: none;
  background: center/cover no-repeat url("../img/qa/deco02.png");
  z-index: -1;
}

.faq-wrapper {
  background-color: var(--blue01);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 85px;
  border-radius: var(--border20);
}

@media (max-width: 1270px) {
  .faq-wrapper {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section4 {
    padding: 120px 0 100px;
  }

  .faq-wrapper {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .section4 {
    padding: 80px 0;
  }
}

/******** faq *******/

.faq-list {
  flex-direction: column;
  gap: 4.5rem;
}
.faq-box {
  background-color: var(--white);
  width: 100%;
  border-radius: var(--border20);
  padding: 20px 60px;
}

.q-set {
  align-items: center;
  gap: 1.5rem;
}

/* Qアイコン */
.icon-q {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--base_blue);
  border-radius: var(--border50);
  flex-shrink: 0;
}
.icon-q span {
  color: var(--white);
  font-size: var(--size24);
  font-family: var(--outfit);
  letter-spacing: 0;
}
.q-txt {
  position: relative;
  font-size: var(--size24);
  text-align: justify;
  padding-bottom: 10px;
}

.q-content {
  flex: 1;
}

.q-line {
  width: min(100%, 897px);
  height: 3px;

  background-image: radial-gradient(
    circle,
    var(--base_blue) 1px,
    transparent 2px
  );
  background-size: 13px 3px;
  background-repeat: repeat-x;
}
.a-txt {
  font-size: 1.8rem;
  text-align: justify;
  padding-top: 15px;
  padding-left: calc(50px + 15px);
}

@media (max-width: 1024px) {
  .faq-box {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .icon-q {
    width: 45px;
    height: 45px;
  }

  .a-txt {
    font-size: 1.7rem;
    padding-left: calc(45px + 15px);
  }
}

@media (max-width: 480px) {
  .q-set {
    gap: 1rem;
  }
  .a-txt {
    padding-left: calc(45px + 10px);
  }
}

@media (max-width: 375px) {
  .a-txt {
    padding-left: 0;
  }
}
/******** 研修 *******/

.training-outer {
  max-width: 800px;
  width: 100%;
  align-items: stretch;
  margin: 0 auto;
  padding-top: 15px;
}
.training-box {
  flex-direction: column;
  max-width: 200px;
  width: 100%;
}

.training-head {
  font-size: 1.8rem;
  line-height: 40px;
}

.training-box:nth-child(1) .training-head {
  background-color: #adf4e6;
}

.training-box:nth-child(2) .training-head {
  background-color: #99e0d2;
}

.training-box:nth-child(3) .training-head {
  background-color: #85ccbe;
}

.training-box:nth-child(4) .training-head {
  background-color: #71b8aa;
}

.training-txt {
  background-color: #dbf1f3;
  font-size: 1.6rem;
  text-align: justify;
  flex: 1;
  padding: 15px 10px;
}

.training-box:not(:last-child) .training-txt {
  position: relative;
}

.training-box:not(:last-child) .training-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 80%;
  background: var(--base_blue);
}

@media (max-width: 680px) {
  .training-outer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .training-box {
    max-width: 420px;
    width: 100%;
  }

  .training-box:not(:last-child) .training-txt::after {
    content: none;
  }
}

@media (max-width: 375px) {
  .training-head {
    font-size: 1.7rem;
    line-height: 35px;
  }

  .training-txt {
    font-size: 1.5rem;
  }
}

/**************** join us ***************/

.join-wrapper {
  position: relative;
  background: center/cover no-repeat url("../img/qa/last_back.jpg");
  padding: 60px 0 310px;
}

.join-txt {
  justify-content: center;
  align-items: center;
  line-height: 116px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.join-txt p {
  font-size: var(--size43);
}

@media (min-width: 1700px) {
  .join-wrapper {
    padding: 100px 0 500px;
  }
}

@media (max-width: 1024px) {
  .join-wrapper {
    padding: 60px 0 200px;
  }
}

@media (max-width: 860px) {
  .join-wrapper {
    padding: 60px 0 135px;
  }
}
@media (max-width: 768px) {
  .join-wrapper {
    background: center/cover no-repeat url("../img/qa/last_back_sp.jpg");
    padding: 70px 0 80px;
  }

  .join-txt {
    line-height: 80px;
    margin-bottom: 40px;
  }
}

@media (max-width: 375px) {
  .join-txt p {
    font-size: 2.2rem;
  }
}

/*******************************************************
フッター
*******************************************************/
footer {
  position: relative;
  background-color: var(--base_blue);
  color: var(--white);
  font-size: 1.6rem;
  padding: 50px 0;
}

.footer-inner {
  padding: 0 10px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 13rem;
  padding: 0 5%;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-left {
  gap: 4rem;
}
/* 
.footer-nav > a:not(:first-child)::before {
  content: "｜";
  position: relative;
  right: 3%;
} */

@media (max-width: 1180px) {
  .footer-nav {
    gap: 8rem;
  }
}

@media (max-width: 1120px) {
  .footer-nav {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .footer-left {
    justify-content: center;
    gap: 4rem;
  }
}

@media (max-width: 860px) {
  footer {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding-top: 35px;
    padding-bottom: 140px;
  }

  .footer-left {
    gap: 2rem;
    letter-spacing: 0;
  }
}

@media (max-width: 654px) {
  .footer-left {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 1rem 2rem;
  }

  .footer-left > *:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 375px) {
  footer {
    font-size: 1.3rem;
  }
}

/*******************************************************
追従ボタン
*******************************************************/

.slidebtn-wrap {
  position: fixed;
  top: 58%;
  right: 2%;
  z-index: 3;
}

.slide-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  aspect-ratio: 1 / 1;
  background-color: var(--base_blue);
  border-radius: 50%;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.slide-btn img {
  max-width: 84px;
  width: 100%;
  height: auto;
  display: block;
}

.slide-btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .slidebtn-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
  }

  .slidebtn-wrap.is-footer {
    border-top: 1px solid var(--white);
  }

  .slide-btn {
    border-radius: 0;
    width: 100%;
    height: 100px;
    transform: none;
  }

  .slide-btn img {
    max-width: 100px;
  }
}

/*******************************************************
トップボタン
*******************************************************/
.pagetop {
  position: fixed;
  max-width: 70px;
  width: 100%;
  bottom: 20px;
  right: 2%;
  z-index: 3;
  transition: bottom 1s;
  cursor: pointer;
}

.pagetop img {
  max-width: 70px;
  width: 100%;
}

.pagetop:hover {
  opacity: 0.7;
}

body.modal-open .pagetop {
  display: none !important;
}
