@charset "UTF-8";
/* ========================================
  ユーティリティクラス
   ======================================== */

/* コンテナ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 751px) {
  .container {
    width: calc(100% - 60px);
    /* border: solid 1px red; */
  }
}

@media (max-width: 750px) {
  .container {
    padding: 0 15px;
    /* border: solid 1px red; */
  }
}

/* ========================================
  レイアウトコンポーネント
  ======================================== */

/* ヘッダー */
header {
  width: 100%;
  z-index: 1001;
  /* border: solid 1px white; */
}

header h1 {
  /* z-index: 1002; */
  /* border: solid red; */
}

header a.logo {
  display: flex;
  align-items: center;
  gap: 24px;
}

header a.logo .txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

header .header-right {
  /* border: solid red 1px; */
}

header .global-nav .nav-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: 100%;
  /*padding-bottom: 40px;*/
  overflow-y: auto;
}

header .global-nav .menu-list {
  display: flex;
  align-items: center;
  gap: 1.8229166666666667vw;
}

header .global-nav .menu-list .menu-item a span {
  font-size: clamp(0.9rem, 0.644rem + 1.09vw, 1.6rem);
  letter-spacing: .05em;
  color: #ffffff;
}

header .global-nav .site-list,
header .global-nav .sns-list {
  display: none;
}

header .global-nav .nav-cta {
  width: 100%;
}


header .global-nav .nav-cta .btn-action {
  margin: 0 auto;
}

header .btn-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 180px;
  height: 45px;
  background: #06C755;
  background: linear-gradient(360deg, rgba(28, 151, 78, 1) 0%, rgba(6, 199, 85, 1) 100%);
}

header .btn-entry .text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #ffffff;
}


@media (min-width: 751px) {
  header {
    height: 100px;
    padding: 0 30px 0 20px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header h1 {
    margin: 12px 0 9px;
    z-index: 10000;
  }

  header a {
    display: flex;
    align-items: center;
    /* gap: 24px; */
    gap: 0;
  }

  header img.logo {
    width: 75px;
  }

  header a span.txt {
    font-size: 1.6rem;
    font-size: clamp(0.9rem, 0.644rem + 1.09vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: .0125em;
  }

  header .header-right {
    margin: 3px 0 0;
    display: flex;
    align-items: center;
    gap: 40px;
    gap: 2.083333333333333vw;
  }

  header .btn-entry img {
    width: 32px;
    margin-top: -2px;
  }

  header #hamburger-menu {
    display: none;
  }
}

@media (min-width: 1421px) {
  header a {
    gap: 24px;
  }

  header .header-right {
    gap: 40px;
  }

  header .header-right nav {
    display: block !important;
  }

  header .global-nav .menu-list {
    gap: 32px;
  }

  header .global-nav .menu-list .menu-item a span {
    font-size: 1.6rem;
  }
}

@media (max-width: 1400px) {
  header {
    background-color: #000;
  }

  header .global-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 150px 30px;
    background-color: #000;
  }

  header .global-nav .menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 65px;
  }

  header .global-nav .menu-list .menu-item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #ffffff;
  }

  header .global-nav .menu-list .menu-item a {
    width: 100%;
    padding: 28px 0;
  }

  header .global-nav .menu-list .menu-item a span {
    font-size: 24px;
  }

  header .global-nav .site-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 43px;
  }

  header .global-nav .site-list .site-item {
    width: 100%;
    padding: 0;
  }

  header .global-nav .site-list .site-item a {
    width: 100%;
    padding: 28px 0;
  }

  header .global-nav .site-list .site-item a span {
    font-size: 2.4rem;
    color: #ffffff;
  }

  header .sns-list .sns-item a .icon {
    width: 66px;
    height: 66px;
    display: block;
  }

  header .global-nav .sns-list {
    display: flex;
    margin-bottom: 70px;
    gap: 40px;
  }

  header .btn-entry {
    display: none;
  }
}




@media (max-width: 750px) {
  header {
    height: 50px;
    padding: 0 13px 0 10px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header h1 {
    margin: 6px 0 5px;
    z-index: 10000;
  }

  header h1 a {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  header img.logo {
    width: 38px;
  }

  header a span.txt {
    font-size: 2.4vw;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: 0;
  }

  header .header-right {
    margin: 3px 0 0;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  header #hamburger-menu {
    display: none;
  }

  header .global-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 75px 15px 0;
    background-color: #000;
  }

  header .global-nav .menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 30px;
  }

  header .global-nav .menu-list .menu-item a {
    width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    letter-spacing: .025em;
    pointer-events: auto;
  }

  header .global-nav .menu-list .menu-item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #ffffff;
  }

  header .global-nav .menu-list .menu-item a span {
    font-size: 1.4rem;
  }

  header .global-nav .site-list {
    width: 100%;
    display: block;
    margin-bottom: 15px;
  }

  header .global-nav .site-list .site-item a {
    width: 100%;
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    letter-spacing: .025em;
  }

  header .global-nav .site-list .site-item a span {
    font-size: 1.4rem;
    letter-spacing: .025em;
    color: #ffffff;
  }

  header .global-nav .site-list .site-item {
    width: 100%;
    padding: 0;
  }

  header .sns-list .sns-item a .icon {
    width: 33px;
    height: 33px;
    display: block;
  }

  header .global-nav .sns-list {
    display: flex;
    margin-bottom: 34px;
    gap: 20px;
  }

  header .btn-entry {
    display: none;
  }
}

@media (min-width: 1401px) {
  header .global-nav .nav-cta {
    display: none;
  }
}


header #hamburger-menu span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

header #hamburger-menu span:nth-child(1) {
  left: 0;
  top: 0;
}

header #hamburger-menu span:nth-child(2) {
  left: 0;
  top: 50%;
}

header #hamburger-menu span:nth-child(3) {
  left: 0;
  bottom: 0;
}

header.open {
  position: fixed;
}


@media (max-width: 1400px) {
  header #hamburger-menu {
    position: absolute;
    right: 25px;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    display: block;
    width: 50px;
    height: 42px;
    cursor: pointer;
    z-index: 1005;
  }

  header.open #hamburger-menu span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  header.open #hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  header.open #hamburger-menu span:nth-child(3) {
    bottom: 21px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 750px) {
  header #hamburger-menu {
    width: 25px;
    height: 21px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 13px;
    bottom: 0;
    transform: translateY(0);
    display: block;
    cursor: pointer;
    z-index: 1005;
  }

  header.open #hamburger-menu span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  header.open #hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  header.open #hamburger-menu span:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
  }
}

/* アンカーリンクが2回タップが必要な対処法 */
@media (min-width: 1px) and (max-width: 1050px) {

  header .global-nav .menu-list .menu-item a {
    pointer-events: auto;
  }

  header .global-nav .menu-list .menu-item a:hover {
    opacity: 1;
  }
}

/* フッター */
footer {
  padding: 140px 0 150px 0;
  background-color: #000;
}

footer .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

footer .sns-list .sns-item a .icon {
  display: block;
  width: 42px;
  height: 42px;
}

footer .sns-list .sns-item a .icon img {
  width: 100%;
}

footer #footer-nav {
  margin-bottom: 50px;
}

footer #footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer #footer-nav ul li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #ffffff;
}

footer #footer-nav ul li a {
  display: inline-block;
  line-height: 1;
}

footer #footer-nav ul li a span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
}

footer #footer-nav ul li:first-child {
  border-left: 1px solid #ffffff;
}

footer .copyright {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

footer .footer-cta {
  padding: 20px 0;
  background: linear-gradient(180deg, #dcdcdc 0%, #f1f1f1 100%);
  text-align: center;
}

footer .btn-footer-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  max-width: 600px;
  width: 100%;
  min-height: 60px;
  padding: 15px 30px;
  background-color: #06c755;
  border-radius: 4px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
}

footer .btn-footer-line:hover {
  opacity: 0.85;
}

@media (max-width: 750px) {
  footer {
    padding: 20px 0 76px 0;
  }

  footer .copyright {
    font-size: 1.2rem;
  }

  footer #footer-nav {
    display: none;
  }

  footer .footer-cta {
    padding: 15px 20px;
  }

  footer .btn-footer-line {
    min-width: 0;
    min-height: 50px;
    font-size: 1.6rem;
  }
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* CTAボタン */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-row .cta-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  margin-top: -45px;
}

.cta-row .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  gap: 20px;
  width: 600px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #ffffff;
}

.cta-row .btn-action .en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .05em;
}

span.cta-icon_line {
  width: 54px;
  display: block;
}

.cta-row .btn-action .big {
  font-size: 2rem;
}

.cta-row .btn-entry {
  background: #06C755;
  background: linear-gradient(360deg, rgba(28, 151, 78, 1) 0%, rgba(6, 199, 85, 1) 100%);
  white-space: nowrap;
  overflow: hidden;
}

.cta-row .contact_but {
  background: rgb(255 203 58);
  background: linear-gradient(360deg, rgb(255 153 0) 0%, rgb(255 203 58) 100%);
  white-space: nowrap;
  overflow: hidden;
}

.cta-row .btn-more {
  background-color: #000;
}

.cta-row.left {
  justify-content: flex-start;
}

.cta-row.left .btn-action {
  margin: 0;
}

span.cta-icon_line {
  width: 54px;
  display: block;
}


@media (max-width: 750px) {
  .main-visual-cta.cta-row {
    gap: 2vw;
  }

  .cta-row .cta-list {
    width: calc(100% - 30px);
    margin-top: -24px;
    gap: 15px;
  }

  .cta-row .btn-action .en {
    font-size: 1.6rem;
  }

  .cta-row .btn-action {
    width: 100%;
    height: auto;
    min-height: 50px;
    line-height: 1;
    letter-spacing: 0;
    gap: 15px;
    font-size: 1.4rem;
  }

  .main-visual-cta.cta-row .btn-action {
    gap: 2vw;
    font-size: 3.2vw
  }

  span.cta-icon_line {
    max-width: 33px;
    width: 8.799999999999999vw;
  }

  .main-visual-cta.cta-row span.cta-icon_line {
    width: 4.3999999999999995vw;
  }

  .cta-row .btn-action .big {
    font-size: 1.6rem;
    line-height: 1.125;
  }
}

@media (min-width: 751px) {
  .main-visual-cta.cta-row {
    gap: 15px;
  }

  .main-visual-cta.cta-row .btn-action {
    max-width: 600px;
    width: 50vw;
    max-height: 90px;
    height: 7.5vw;
    margin: 0;
  }
}

@media (min-width: 751px) and (max-width: 1200px) {
  .main-visual-cta.cta-row .btn-action {
    gap: 1.6666666666666667vw;
    font-size: clamp(1.4rem, -0.267rem + 3.56vw, 2.4rem);
  }

  .main-visual-cta.cta-row span.cta-icon_line {
    width: 4.5vw;
  }
}

@media (min-width: 1200px) {
  .main-visual-cta.cta-row .btn-action {
    font-size: 2.4rem;
  }
}


/* セクションタイトル */
.sec-ttl {
  position: relative;
  margin-bottom: 60px;
  font-size: 6rem;
  font-size: min(4.477611940298507vw, 6rem);
  /* font-size: clamp(3rem, 1.077rem + 4.1vw, 6rem); */
  font-weight: 600;
  line-height: 1.333;
  letter-spacing: .025em;
  color: #ffffff;
  z-index: 1;
}

.sec-ttl .sub-ttl {
  display: block;
  margin-top: 20px;
  font-size: 2rem;
  /* font-size: min(1.4925373134328357vw, 2rem); */
  font-size: clamp(1.6rem, 1.344rem + 0.55vw, 2rem);
  letter-spacing: .025em;
}

@media (max-width: 750px) {
  .sec-ttl .sub-ttl {
    margin-top: 15px;
    font-size: 1.6rem;
    line-height: 1.563;
  }

  .sec-ttl {
    margin-bottom: 70px;
    font-size: 3rem;
    /* border: solid red; */
  }
}


.sec-ttl-eng {
  position: absolute;
  top: -30px;
  right: 0;
  font-family: "Raleway", sans-serif;
  font-size: 21rem;
  font-size: min(15vw, 21rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 750px) {
  .sec-ttl-eng {
    top: -8px;
    font-size: 6rem;
  }
}

.item-ttl {
  margin-bottom: 30px;
  font-size: 2.8rem;
  /* font-size: min(2.0895522388059704vw, 2.8rem); */
  font-size: clamp(2rem, 1.487rem + 1.09vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.5;
  /* border: solid red; */
}

@media (max-width: 750px) {
  .item-ttl {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.35;
  }
}

/* フローリスト（理由・ワークフロー・応募フローなどで使用） */
.flow-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-list li {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  gap: 3.3333333333333335%;
  border-bottom: 1px solid #aaa9a8;
}

@media (max-width: 750px) {
  .flow-list li {
    flex-direction: column;
  }
}

.flow-list li .image {
  max-width: 400px;
  width: 33.33333333333333%;
}

@media (max-width: 750px) {
  .flow-list li .image {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
  }
}

.flow-list li .image img {
  width: 100%;
}

.flow-list li .infos {
  display: flex;
  gap: 40px;
  width: 66.666666666%;
}

.flow-list li .infos .head {
  width: 63px;
  margin-left: -3px;
  text-align: center;
  font-weight: 600;
  color: #000;
}

.flow-list li .infos .head .text {
  font-size: 2rem;
  writing-mode: vertical-lr;
}

.flow-list li .infos .head .digit {
  font-size: 2.8rem;
  font-size: clamp(2rem, 1.487rem + 1.09vw, 2.8rem);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.flow-list li .infos .body {
  width: calc(100% - 100px);
}

.flow-list li .infos .body .ttl {
  margin-bottom: 22px;
  color: #000;
}

.flow-list li .infos .body p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

.flow-list.has-arrow li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 20px solid #888785;
}

.flow-list.has-arrow li:last-child::after {
  content: none;
}


@media (max-width: 750px) {
  .flow-list li .infos {
    width: 100%;
    gap: 20px;
  }

  .flow-list li .infos .head {
    width: 35px;
    margin-left: 0;
  }

  .flow-list li .infos .head .text {
    font-size: 1.6rem;
  }

  .flow-list li .infos .head .digit {
    font-size: 2rem;
    line-height: 1.35;
  }

  .flow-list li .infos .body {
    width: 100%;
  }

  .flow-list li .infos .body .ttl {
    margin-bottom: 15px;
  }

  .flow-list li .infos .body p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.786;
  }

  .flow-list.has-arrow li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 10px solid #888785;
  }

  .flow-list.has-arrow li:last-child::after {
    content: none;
  }
}

/* チェックリスト */
.check-list,
#recruitment .recruitment__check-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 40px;
}

.check-list li,
#recruitment .recruitment__check-list li {
  width: 100%;
  min-height: 72px;
  padding: 6px 40px 6px 53px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.667;
  letter-spacing: .025em;
  color: #000;
  position: relative;
  background-color: rgb(230, 230, 229);
}

.check-list li .mark,
#recruitment .recruitment__check-list li .mark {
  width: 15px;
  height: 13px;
  margin: auto 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 24px;
  bottom: 0;
}

.check-list li .text,
#recruitment .recruitment__check-list li .text {
  width: calc(100% - 29px);
}

@media (max-width: 750px) {
  .check-list {
    gap: 10px;
    margin: 0;
  }

  #recruitment .recruitment__check-list {
    gap: 10px;
    margin: 0 0 40px;
  }

  .check-list li,
  #recruitment .recruitment__check-list li {
    min-height: 62px;
    padding: 5px 15px 6px 30px;
    font-size: 1.6rem;
    line-height: 1.563;
  }

  .check-list li .mark,
  #recruitment .recruitment__check-list li .mark {
    width: 13px;
    height: 11px;
    top: 0;
    left: 10px;
    bottom: 0;
  }

  .check-list li .text,
  #recruitment .recruitment__check-list li .text {
    width: 100%;
  }
}

.check-list li:nth-child(even),
#recruitment .recruitment__check-list li:nth-child(even) {
  background-color: #f2f2f2;
}

/* 動画セクション */
.video-row {
  padding: 45px 0 130px;
}

.video-row .video-col {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.video-row .video-col .video-ttl {
  margin-top: -60px;
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1;
}

.video-row .video-col .video-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

@media (max-width: 750px) {
  .video-row {
    padding: 25px 0 65px;
  }

  .video-row .video-col {
    padding: 0 15px;
  }

  .video-row .video-col .video-ttl {
    margin-top: -34px;
    font-size: 1.6rem;
  }

  .video-row .video-col .video-wrapper {
    border-radius: 6px;
  }

}

/* テキストスタイル */
p.spec {
  position: relative;
  padding-left: 16px;
}

p.spec::before {
  margin-left: -16px;
}

p.spec.maru::before {
  content: "◎";
}

li.spec.dot::before,
p.spec.dot::before {
  content: "・";
}

p.spec.dot-big::before {
  content: "●";
}

p.spec.sankou::before {
  content: "※";
}

p.strong {
  font-weight: 700;
}

p.small {
  font-size: 15px;
}

@media (max-width: 750px) {
  p.small {
    font-size: 24px;
  }
}

a.link {
  color: #48a3d2;
}

/* テーブル */
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  /* border-spacing: 3px; */
}

table colgroup col:nth-child(1) {
  width: 22%;
}

@media (max-width: 750px) {
  table colgroup col:nth-child(1) {
    width: 100%;
  }
}

table colgroup col:nth-child(2) {
  width: 78%;
}

@media (max-width: 750px) {
  table colgroup col:nth-child(2) {
    display: none;
  }
}

@media (max-width: 750px) {
  table tbody tr {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 2px;
  }
}

table tbody tr td {
  padding: 6px 15px;
  font-size: 1.6rem;
  letter-spacing: 0.025rem;
  font-weight: 400;
  line-height: 1.875;
  color: #000;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
}

table tbody tr td+td {
  border-right: none;
}

table tbody tr td p {
  line-height: 1.875;
}

@media (max-width: 750px) {
  table tbody tr td {
    width: 100%;
    font-size: 1.5rem;
    border: none;
  }
}

table tbody tr td:nth-child(1) {
  background-color: #e6e6e5;
}

table tbody tr td:nth-child(2) {
  background-color: #f2f2f2;
}

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

/* メインビジュアル */
#main-visual {
  position: relative;
  width: 100%;
}

.main-visual__contents {
  width: 100%;
  height: auto;
  padding-top: 0;
  background-color: #000;
  position: relative;
}

.main-visual-cta.cta-row {
  width: 100%;
  padding: 20px;
  background: #dcdcdc;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
}

@media (min-width: 751px) and (max-width: 1400px) {
  #main-visual {
    padding-top: 100px;
  }

  #main-visual .main-visual__contents {
    /* height: 0; */
    /* padding-top: 65.71428571428571%; */
  }
}


@media (max-width: 750px) {
  #main-visual {
    height: auto;
    padding-top: 50px;
  }

  #main-visual .main-visual__contents {
    /* height: 0; */
    /* padding-top: 148.53333333333333%; */
  }

  .main-visual-cta.cta-row {
    padding: 6px 15px;
  }

  .mv_lead {
    width: 100%;
    height: auto;
    padding: 0 0 40px 0;
    background-color: #000;
    position: relative;
  }

  .mv_lead p {
    margin: 0 0 30px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.786;
  }

  .mv_lead p:last-child {
    margin: 0;
  }
}

#main-visual .mv-row {
  width: 80dvw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  /* left: 0; */
  display: flex;
  align-items: flex-start;
  /* border: solid pink; */
}

#main-visual .mv-row::after {
  content: "";
  max-width: 384px;
  width: 25vw;
  max-height: 453px;
  height: 49.23913043478261%;
  position: absolute;
  left: -327px;
  left: -21.2890625%;
  top: 14.782608695652174%;
  background: url("../img/mv/deco.png") no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}

@media (max-width: 750px) {
  #main-visual .mv-row::after {
    left: 2.666666666666667%;
    top: 62.69230769230769%;
    max-width: 156px;
    width: 41.6%;
    max-height: 208px;
    height: 53.205128205128204%;
  }
}

@media (max-width: 750px) {
  #main-visual .mv-row {
    width: 100dvw;
    height: 70.01795332136446%;
    left: 0;
  }
}

#main-visual .mv-row .mv-col {
  position: relative;
  width: 25%;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  z-index: 10;
}

#main-visual .mv-row .mv-col::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(219, 161, 122, 0.15) 0%, rgba(200, 145, 129, 0.15) 100%);
}

#main-visual .mv-row .mv-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

#main-visual .mv-row .mv-col:nth-child(1) {
  height: 40%;
  background: url("../img/mv/mv-2.jpg");
}

#main-visual .mv-row .mv-col:nth-child(2) {
  height: 60%;
  background: url("../img/mv/mv-3.jpg");
}

#main-visual .mv-row .mv-col:nth-child(3) {
  height: 80%;
  background: url("../img/mv/mv-4.jpg");
}

#main-visual .mv-row .mv-col:nth-child(4) {
  height: 100%;
  background: url("../img/mv/mv-5.jpg");
}

#main-visual .mv-inner {
  width: 89.58333333333334%;
  margin: 0 auto;
  position: absolute;
  top: 48.369565217391305%;
  /* top: 445px; */
  right: 0;
  left: 0;
  /* border: solid 1px white; */
  z-index: 20;
}

@media (min-width: 1420px) {
  #main-visual .mv-inner {
    width: calc(100dvw - 200px);
    top: 445px;
  }
}

#main-visual .mv-inner .mv-ttl {
  max-width: 1117px;
  width: 64.94186046511628dvw;
  position: relative;
  margin-bottom: 48px;
  font-size: 6.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.235;
  color: #ffffff;
}

#main-visual .mv-ttl span {
  max-width: 449px;
  width: 40.19695613249776%;
  margin: 0 0 28px;
  font-size: 4.2rem;
  display: block;
}

#main-visual .mv-inner .main-visual-cta {
  position: absolute;
  left: 0;
  bottom: -130px;
  width: 100%;
  height: 130px;
  background-color: #b3b2b1;
}

#main-visual .mv-inner .mv-txt {
  margin: 0 0 25px;
  font-size: 1.8rem;
  font-size: min(1.2162162162162162vw, 1.8rem);
  line-height: 1.667;
  letter-spacing: .025em;
  color: #ffffff;
}



@media (max-width: 750px) {
  #main-visual .mv-inner {
    width: fit-content;
    margin: 0 auto;
    position: absolute;
    top: 67.62331838565022%;
    right: unset;
    left: 4.266666666666667%;
  }

  #main-visual .mv-inner .mv-ttl {
    /* max-width: 325px; */
    width: 86.53333333333333dvw;
    position: relative;
    margin-bottom: 0;
  }

  #main-visual .mv-ttl span {
    /* max-width: 225px; */
    width: 69.07692307692308%;
    margin: 0 0 16px;
  }

  #main-visual .mv-inner .mv-txt {
    display: none;
  }
}

#main-visual .mv-inner .mv-txt:last-child {
  margin: 0;
}

/* 導入ピッチ（未経験から始める仕事） */
#intro-pitch {
  position: relative;
}

#intro-pitch .intro-pitch__inner {
  padding: 40px 0;
  background-color: rgba(35, 57, 84, 0.65);
}

#intro-pitch .intro-pitch__ttl {
  margin: 0 auto 24px;
  max-width: 866px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

#intro-pitch .intro-pitch__txt {
  margin: 0 auto;
  max-width: 866px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.667;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

@media (max-width: 750px) {
  #intro-pitch .intro-pitch__inner {
    padding: 20px 0 15px;
  }

  #intro-pitch .intro-pitch__ttl {
    margin-bottom: 10px;
    max-width: none;
    font-size: 1.9rem;
    line-height: 1.447;
    text-align: left;
  }

  #intro-pitch .intro-pitch__ttl br.sp {
    display: block;
  }

  #intro-pitch .intro-pitch__txt {
    max-width: none;
    font-size: 1.4rem;
    line-height: 1.786;
    text-align: left;
  }
}

/* リクルートセクション */
#recruitment .recruitment__head {
  width: 100%;
  min-height: 230px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
}

#recruitment .recruitment__head .recruitment__head-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
}

#recruitment .recruitment__head .recruitment__head-row .recruitment__head-col {
  width: 50%;
}

@media (max-width: 750px) {
  #recruitment .recruitment__head {
    padding: 40px 0;
  }

  #recruitment .recruitment__head .recruitment__head-row {
    gap: 20px;
  }

  #recruitment .recruitment__head .recruitment__head-row .recruitment__head-col {
    width: 100%;
  }
}

#recruitment .recruitment__head .recruitment__head-row .recruitment__head-col .recruitment__head-ttl {
  font-size: 3.8rem;
  font-size: min(2.8358208955223883vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.316;
  color: #000;
}

@media (min-width: 751px) and (max-width: 1200px) {

  #recruitment .recruitment__head .recruitment__head-row .recruitment__head-col:nth-of-type(1) {
    /* width: 50%; */
    /* padding-right: 65px; */
  }

}

#recruitment .recruitment__head .recruitment__head-row .recruitment__head-col .recruitment__head-ttl span {
  display: block;
  font-size: 2.4rem;
  font-size: min(1.791044776119403vw, 2.4rem);
}

#recruitment .recruitment__head .recruitment__head-row .recruitment__head-col .recruitment__head-txt {
  font-size: 2rem;
  font-size: min(1.4925373134328357vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.025em;
  color: #000;
}

#recruitment .recruitment__head .recruitment-ttl-eng {
  position: absolute;
  right: 0;
  bottom: -20px;
  font-family: "Raleway", sans-serif;
  font-size: 12rem;
  font-size: min(8.571428571428571vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  z-index: 1;
}

@media (max-width: 750px) {
  #recruitment .recruitment__head .recruitment__head-row .recruitment__head-col .recruitment__head-ttl {
    font-size: 2rem;
    line-height: 1.35;
  }

  #recruitment .recruitment__head .recruitment__head-row .recruitment__head-col .recruitment__head-ttl span {
    font-size: 1.6rem;
  }

  #recruitment .recruitment__head .recruitment__head-row .recruitment__head-col .recruitment__head-txt {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #recruitment .recruitment__head .recruitment-ttl-eng {
    bottom: -6px;
    font-size: 4rem;
  }
}

#recruitment .recruitment__body {
  padding: 100px 0;
}

#recruitment .recruitment__body .recruitment__body-row {
  display: flex;
  flex-wrap: wrap;
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col {
  position: relative;
  width: 50%;
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col p {
  margin: 0 0 40px;
  line-height: 1.875;
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col h4 {
  font-size: 2.8rem;
  font-weight: 600;
  margin: 0 0 25px;
  line-height: 1.5;
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col p+p {
  margin: 0 0 35px;
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col .recruitment-ttl {
  color: #000;
  /* white-space: nowrap; */
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#recruitment .recruitment__body .recruitment__body-row .recruitment__body-col:nth-child(1) .recruitment__visual-bottom {
  max-width: 393px;
  width: 56.14285714285714%;
  margin: 190px 0 0;
  display: block;
}

@media (max-width: 750px) {
  #recruitment .recruitment__body {
    padding: 30px 0 20px;
  }

  #recruitment .recruitment__body .recruitment__body-row .recruitment__body-col {
    width: 100%;
  }

  #recruitment .recruitment__body .recruitment__body-row .recruitment__body-col:nth-child(1) .recruitment__visual-bottom {
    max-width: 197px;
    width: 52.400000000000006dvw;
    margin: 0;
    position: absolute;
    right: 0;
    left: unset;
    top: 0;
  }

  #recruitment .recruitment__body .recruitment__body-row .recruitment__body-col .recruitment-ttl {
    font-size: 3rem;
    margin-bottom: 155px;
  }

  #recruitment .recruitment__body .recruitment__body-row .recruitment__body-col p {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #recruitment .recruitment__body .recruitment__body-row .recruitment__body-col h4 {
    font-size: 1.8rem;
  }
}


/* バリューセクション（デバイスで叶う3つの価値） */
#value {
  position: relative;
  padding: 112px 0 120px 0;
  background-color: #218398;
}

#value .value-ttl {
  margin-bottom: 70px;
  color: #ffffff;
}

#value .value-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

#value .value-list .value-item {
  padding: 0 0 0 200px;
  padding-left: 14.285714285714285%;
}

#value .value-list .value-item .box {
  width: 100%;
  min-height: 306px;
  padding: 30px 100px 30px 500px;
  padding-left: 41.66666666666667%;
  padding-right: 8.333333333333332%;
  display: flex;
  align-items: center;
  background-color: #d5e8ec;
  position: relative;
}

#value .value-list .value-item:nth-of-type(3) .box {
  background-color: #e9f3f5;
}

#value .value-list .value-item .box .num {
  width: fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  left: -.65em;
  top: -15px;
  bottom: 0;
  font-size: 11rem;
  font-size: min(8.208955223880597vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #a2ced7;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#value .value-list .value-item .box .image {
  margin: auto 0;
  top: 0;
  bottom: 0;
  display: block;
  text-align: center;
  position: absolute;
}

#value .value-list .value-item .box .image img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}

#value .value-list .value-item .box .image:after {
  content: "";
  width: 211px;
  height: 176px;
  /* border: solid 1px; */
  display: block;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: 1;
}

#value .value-list .value-item .box .infos .ttl {
  color: #000;
}

#value .value-list .value-item .box .infos p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#value .value-list .value-item .box .infos p:last-child {
  margin: 0;
}

#value .value-list .value-item:nth-child(1) .box .image {
  max-width: 262px;
  width: 21.833333333333332%;
  max-height: 271px;
  height: fit-content;
  left: 10.5%;
}

#value .value-list .value-item:nth-child(1) .box .image:after {
  content: "";
  max-width: 192px;
  width: 66.20689655172414%;
  max-height: 133px;
  height: 58.590308370044056%;
  position: absolute;
  top: 12.213740458015266%;
  left: 12.213740458015266%;
}

#value .value-list .value-item:nth-child(2) {
  padding: 0 200px 0 0;
  padding-right: 14.285714285714285%;
}

#value .value-list .value-item:nth-child(2) .box .image:before {
  content: "";
  max-width: 184px;
  width: 66.9090909090909%;
  max-height: 101px;
  height: 54.891304347826086%;
  position: absolute;
  top: 0;
  left: -16.363636363636363%;
  background: #fff;
  display: block;
}

#value .value-list .value-item:nth-child(2) .box .image:after {
  content: "";
  max-width: 138px;
  width: 50.18181818181818%;
  max-height: 165px;
  height: 119.56521739130434%;
  position: absolute;
  top: 20.44609665427509%;
  right: -4.363636363636364%;
}

#value .value-list .value-item:nth-child(2) .box {
  flex-direction: row-reverse;
  padding: 30px 500px 30px 100px;
  padding-right: 41.66666666666667%;
  padding-left: 8.333333333333332%;
}

#value .value-list .value-item:nth-child(2) .box .num {
  left: unset;
  right: -.65em;
}

#value .value-list .value-item:nth-child(2) .box .image {
  max-width: 275px;
  width: 22.916666666666664%;
  max-height: 269px;
  height: fit-content;
  right: 10.333333333333334%;
}

#value .value-list .value-item:nth-child(3) .box .image {
  max-width: 301px;
  width: 25.083333333333336%;
  max-height: 217px;
  height: fit-content;
  top: 15.5%;
  left: 9%;
}

#value .value-list .value-item:nth-child(3) .box .image:after {
  content: "";
  max-width: 193px;
  width: 61.858974358974365%;
  max-height: 124px;
  height: 55.60538116591929%;
  position: absolute;
  top: -12.903225806451612%;
  right: -6.312292358803987%;
}

#value .value-list .value-item:nth-child(3) .box .image:before {
  content: "";
  max-width: 103px;
  width: 33.01282051282051%;
  max-height: 83px;
  height: 37.219730941704036%;
  /* border: solid 1px; */
  display: block;
  position: absolute;
  left: 1.9933554817275747%;
  bottom: 10.138248847926267%;
  background: rgba(255, 255, 255, .65);
}


@media (max-width: 750px) {
  #value {
    padding: 30px 0 40px;
  }

  #value .value-list {
    gap: 28px;
  }

  #value .value-ttl {
    margin-bottom: 35px;
  }

  #value .value-list .value-item {
    padding: 0 0 0 35px;
  }

  #value .value-list .value-item .box {
    flex-direction: column;
    height: auto;
    padding: 26px 15px 30px 15px;
  }

  #value .value-list .value-item .box .num {
    top: 85px;
    bottom: unset;
    font-size: 5.5rem;
  }

  #value .value-list .value-item .box .image img {
    width: auto;
  }

  #value .value-list .value-item .box .image {
    left: unset;
    position: relative;
  }

  #value .value-list .value-item:nth-child(1) .box .image {
    max-width: 183px;
    width: 48.66666666666667dvw;
    max-height: 189px;
    margin: 0 0 4.266666666666667dvw;
    position: relative;
    left: -1.2dvw;
  }

  #value .value-list .value-item:nth-child(1) .box .image:after {
    content: "";
    max-width: 135px;
    width: 36dvw;
    max-height: 94px;
    height: 24.933333333333334dvw;
    position: absolute;
    top: 11.232876712328768%;
    left: 11.232876712328768%;
  }

  #value .value-list .value-item:nth-child(1) .box .infos {
    width: 100%;
  }

  #value .value-list .value-item:nth-child(2) {
    padding: 0 35px 0 0;
  }

  #value .value-list .value-item:nth-child(2) .box {
    flex-direction: column;
    padding: 30px 15px;
  }

  #value .value-list .value-item:nth-child(2) .box .image {
    max-width: 200px;
    width: 53.333333333333336dvw;
    max-height: 188px;
    right: unset;
    margin-bottom: 10px;
  }

  #value .value-list .value-item:nth-child(2) .box .image:before {
    content: "";
    max-width: 130px;
    width: 34.53333333333333dvw;
    max-height: 71px;
    height: 18.933333333333334dvw;
    position: absolute;
    top: 0;
    left: -7.333333333333333dvw;
    background: #fff;
    display: block;
  }

  #value .value-list .value-item:nth-child(2) .box .image:after {
    content: "";
    max-width: 97px;
    width: 25.866666666666667dvw;
    max-height: 116px;
    height: 30.933333333333334dvw;
    position: absolute;
    top: 9.866666666666667vw;
    right: -2.4dvw;
  }

  #value .value-list .value-item:nth-child(2) .box .infos {
    width: 100%;
  }

  #value .value-list .value-item:nth-child(3) .box .image {
    max-width: 211px;
    width: 56.13333333333333dvw;
    max-height: 152px;
    margin: 14.285714285714285% 0 30px;
    position: relative;
    top: unset;
    left: -1.4285714285714286%;
  }

  #value .value-list .value-item:nth-child(3) .box .image:after {
    content: "";
    max-width: 193px;
    width: 61.858974358974365%;
    max-height: 124px;
    height: 55.60538116591929%;
    position: absolute;
    top: -5.333333333333334vw;
    right: -7.733333333333333dvw;
  }

  #value .value-list .value-item:nth-child(3) .box .image:before {
    content: "";
    max-width: 103px;
    width: 33.01282051282051%;
    max-height: 83px;
    height: 37.219730941704036%;
    /* border: solid 1px; */
    display: block;
    position: absolute;
    left: 1.9933554817275747%;
    bottom: 10.138248847926267%;
    background: rgba(255, 255, 255, .65);
  }

  #value .value-list .value-item:nth-child(3) .box .infos {
    width: 100%;
  }

  #value .value-list .value-item .box .infos p {
    font-size: 1.5rem;
    line-height: 1.786;
  }
}

/* リーズンセクション（なぜその価値を実現できるのか） */
#about-company {
  position: relative;
  padding: 105px 0 120px 0;
  overflow: hidden;
}

#about-company .about-company__ttl-eng {
  color: rgba(84, 116, 128, 0.15);
}

#about-company .about-company__ttl {
  margin-bottom: 70px;
  color: #000;
}

#about-company .about-company__list {
  margin-bottom: 130px;
}

#about-company .about-company__list .about-company__item {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

@media screen and (min-width: 751px) {
  #about-company .about-company__list .about-company__item .about-company__image {
    width: 400px;
  }
}

#about-company .about-company__list .about-company__item .about-company__image img {
  width: 100%;
}

#about-company .about-company__list .about-company__item .infos {
  display: flex;
  gap: 40px;
  width: 66.666666666%;
}

#about-company .about-company__list .about-company__item .infos .head {
  width: 60px;
  text-align: center;
  font-weight: 700;
  color: #000;
}

#about-company .about-company__list .about-company__item .infos .head .text {
  font-size: 2rem;
  letter-spacing: 0.025em;
  writing-mode: vertical-lr;
}

#about-company .about-company__list .about-company__item .infos .head .digit {
  font-size: 5rem;
}

#about-company .about-company__list .about-company__item .infos .body {
  width: calc(100%);
}

#about-company .about-company__list .about-company__item .infos .body .ttl {
  margin: 0 0 22px;
  color: #000;
}

#about-company .about-company__list .about-company__item .infos .body p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#about-company .about-company__list .about-company__item .infos .body p:last-child {
  margin: 0;
}

#about-company .about-company__video {
  color: #000;
  background-color: #f1f1f1;
}


@media (max-width: 750px) {
  #about-company {
    padding: 30px 0 40px;
  }

  #about-company .about-company__list {
    margin-bottom: 35px;
  }

  #about-company .about-company__ttl {
    margin-bottom: 30px;
  }

  #about-company .about-company__list .about-company__item {
    margin: 0 0 40px;
    padding: 0 0 25px;
    gap: 20px;
    flex-direction: column;
  }

  #about-company .about-company__list .about-company__item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  #about-company .about-company__list .about-company__item .infos {
    width: 100%;
    gap: 15px;
  }

  #about-company .about-company__list .about-company__item .infos .head {
    width: 35px;
    margin: 0;
  }

  #about-company .about-company__list .about-company__item .infos .head .text {
    font-size: 1.6rem;
  }

  #about-company .about-company__list .about-company__item .infos .head .digit {
    /* margin-top: -.5em; */
    font-size: 3rem;
    white-space: nowrap;
    line-height: 1;
  }

  #about-company .about-company__list .about-company__item .infos .body .ttl {
    margin: 0 0 15px;
  }

  #about-company .about-company__list .about-company__item .infos .body p {
    font-size: 1.5rem;
    line-height: 1.786;
  }
}

/* 記者兼広告営業の仕事（#about ナビ用・class: work） */
#about.work,
.work {
  position: relative;
  padding: 105px 0 120px;
  background-color: #218398;
}

#about.work .work-ttl-eng,
.work .work-ttl-eng {
  color: rgba(255, 255, 255, 0.08);
}

#about.work .work-ttl,
.work .work-ttl {
  margin-bottom: 115px;
  color: #fff;
  line-height: 1.333;
}

#about.work .work-list,
.work .work-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px 40px;
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0;
  list-style: none;
}

#about.work .work-item,
.work .work-item {
  position: relative;
  padding: 55px 40px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  list-style: none;
}

#about.work .work-item__badge,
.work .work-item__badge {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  /* min-width: 120px; */
  /* padding: 12px 20px 16px; */
  vertical-align: bottom;
  text-align: center;
}

#about.work .work-item__file,
.work .work-item__file {
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #a2ced7;
}

#about.work .work-item__num,
.work .work-item__num {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #a2ced7;
}

#about.work .work-item__image,
.work .work-item__image {
  height: 16.583333333333332vw;
  max-height: 199px;
  margin: 0 auto 24px;
  text-align: center;
  position: relative;
}

#about.work .work-item__image img,
.work .work-item__image img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}

.work .work-item__image:after {
  content: "";
  width: 153px;
  height: 135px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

.work-item:nth-of-type(1) .work-item__image {
  max-width: 205px;
  width: 41%;
  max-height: 199px;
}

.work-item:nth-of-type(1) .work-item__image:after {
  content: "";
  max-width: 153px;
  width: 74.63414634146342%;
  max-height: 135px;
  height: 88.23529411764706%;
  top: 16.33986928104575%;
  right: -10.731707317073171%;
}

.work-item:nth-of-type(2) .work-item__image {
  max-width: 335px;
  width: 67%;
  padding-top: 12px;
  /* max-height: 185px; */
}

.work-item:nth-of-type(2) .work-item__image:after {
  content: "";
  max-width: 223px;
  width: 66.56716417910448%;
  max-height: 105px;
  height: 47.08520179372198%;
  top: 5.381165919282512%;
  left: 3.2835820895522385%;
}

.work-item:nth-of-type(3) .work-item__image {
  max-width: 214px;
  width: 42.8%;
  padding-top: 24px;
  /* max-height: 346px; */
}

.work-item:nth-of-type(3) .work-item__image:after {
  content: "";
  max-width: 161px;
  width: 75.23364485981308%;
  max-height: 98px;
  height: 60.86956521739131%;
  top: 3.1055900621118013%;
  left: -10.559006211180124%;
}

.work-item:nth-of-type(4) .work-item__image {
  max-width: 170px;
  width: 34%;
  padding-top: 11px;
  /* max-height: 199px; */
}

.work-item:nth-of-type(4) .work-item__image:after {
  content: "";
  max-width: 239px;
  width: 140.58823529411762%;
  max-height: 125px;
  height: 52.30125523012552%;
  top: 0;
  left: -22.35294117647059%;
}








#about.work .work-item__cat,
.work .work-item__cat {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #0d0d0d;
  text-align: center;
}

#about.work .work-item__ttl,
.work .work-item__ttl {
  margin: 0 0 20px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.357;
  letter-spacing: 0;
  color: #0d0d0d;
  text-align: center;
}

#about.work .work-item__txt,
.work .work-item__txt {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #0d0d0d;
}

#about.work .work-media__lead,
.work .work-media__lead {
  margin: 0 0 50px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

#about.work .work-media__grid,
.work .work-media__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#about.work .work-media__item,
.work .work-media__item {
  color: #fff;
}

#about.work .work-media__visual,
.work .work-media__visual {
  margin-bottom: 24px;
  text-align: center;
}

#about.work .work-media__visual img,
.work .work-media__visual img {
  max-width: 100%;
  height: auto;
}

#about.work .work-media__visual--joho,
.work .work-media__visual--joho {
  position: relative;
}

#about.work .work-media__visual-sub,
.work .work-media__visual-sub {
  display: block;
  max-width: 70%;
  margin: -40px auto 0;
}

#about.work .work-media__name,
.work .work-media__name {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

#about.work .work-media__txt,
.work .work-media__txt {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #fff;
}

#about.work .work-media__txt .link,
.work .work-media__txt .link {
  color: #fff;
  word-break: break-all;
}

@media (max-width: 750px) {

  #about.work,
  .work {
    padding: 30px 0 50px;
  }

  #about.work .work-ttl,
  .work .work-ttl {
    margin-bottom: 40px;
    font-size: 3rem;
    line-height: 1.333;
  }

  #about.work .work-list,
  .work .work-list {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  #about.work .work-item,
  .work .work-item {
    padding: 30px 15px;
  }

  #about.work .work-item__badge,
  .work .work-item__badge {}

  #about.work .work-item__file,
  .work .work-item__file {
    font-size: 1.6rem;
  }

  #about.work .work-item__num,
  .work .work-item__num {
    font-size: 3rem;
  }

  #about.work .work-item__cat,
  .work .work-item__cat {
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
  }

  #about.work .work-item__image,
  .work .work-item__image {
    height: auto;
    max-height: unset;
  }

  #about.work .work-item__ttl,
  .work .work-item__ttl {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.375;
    text-align: center;
  }

  #about.work .work-item__txt,
  .work .work-item__txt {
    font-size: 1.4rem;
    line-height: 1.786;
  }

  #about.work .work-media__lead,
  .work .work-media__lead {
    margin-bottom: 30px;
    font-size: 1.9rem;
    line-height: 1;
  }

  #about.work .work-media__grid,
  .work .work-media__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #about.work .work-media__name,
  .work .work-media__name {
    font-size: 1.5rem;
    text-align: center;
  }

  #about.work .work-media__txt,
  .work .work-media__txt {
    font-size: 1.4rem;
    line-height: 1.786;
    /* text-align: center; */
  }
}

/* ワークフローセクション（REASON／成長ストーリー） */
#reason {
  position: relative;
  padding: 105px 0 120px;
  overflow: hidden;
  background-color: #218398;
}

#reason .reason__ttl-eng {
  color: rgba(255, 255, 255, 0.08);
}

#reason .reason__ttl {
  margin-bottom: 70px;
  color: #ffffff;
}

#reason .reason__lead {
  margin: 0 auto 70px;
  max-width: 750px;
  font-size: 1.6rem;
  /* font-weight: 500;*/
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}

#reason .reason__list {
  margin-bottom: 80px;
}

#reason .reason__list .reason__item {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

#reason .reason__list .reason__item .infos {
  display: flex;
  gap: 40px;
  width: 66.666666666%;
}

#reason .reason__list .reason__item .infos .head {
  width: 60px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

#reason .reason__list .reason__item .infos .head .text {
  font-size: 2rem;
  letter-spacing: 0.025em;
  writing-mode: vertical-lr;
}

#reason .reason__list .reason__item .infos .head .digit {
  font-size: 5rem;
}

#reason .reason__list .reason__item .infos .body {
  width: calc(100%);
}

#reason .reason__list .reason__item .infos .body .ttl {
  margin: 0 0 22px;
  color: #fff;
}

#reason .reason__list .reason__item .infos .body p {
  margin: 0 0 25px;
  line-height: 1.875;
  letter-spacing: 0.025em;
  color: #fff;
}

#reason .reason__list .reason__item .infos .body p:last-child {
  margin: 0;
}

#reason .reason__list.flow-list li {
  border-bottom: 1px solid #90c1cc;
}

#reason .reason__story-lead {
  margin: 0 auto 30px;
  max-width: 750px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

#reason .reason__story-intro {
  margin: 0 auto 110px;
  max-width: 750px;
  font-size: 1.6rem;
  /*font-weight: 500;*/
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #fff;
}

#reason .reason__story {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 75px 60px 80px;
  background-color: rgba(255, 255, 255, 0.9);
}

#reason .reason__story-ttl {
  margin: 0 0 85px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #0d0d0d;
  text-align: center;
}

#reason .reason__growth-list {
  margin-bottom: 0;
}

#reason .reason__growth-list .reason__growth-item {
  margin-bottom: 70px;
  padding-bottom: 50px;
}

#reason .reason__growth-list .reason__growth-item:last-child {
  margin-bottom: 0;
}

#reason .flow-list li .infos .body .ttl {
  margin-bottom: 33px;
  color: #0d0d0d;
}

#reason .flow-list li .infos .body p {
  margin-bottom: 0;
}

#reason .flow-list li .infos .head {
  width: 12vw;
  max-width: 100px;
  margin-left: 0;
  text-align: left;
}

#reason .flow-list li .infos .head .digit {
  font-size: 2.8rem;
  line-height: 1.2;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}

#reason .reason__growth-list .reason__growth-item:last-child .infos .head .digit {
  font-size: 2rem;
  line-height: 2;
}


#reason .flow-list li .infos .head .digit-unit {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

#reason .reason__growth-item--future .head .digit {
  font-size: 2rem;
  white-space: normal;
}

@media (max-width: 750px) {
  #reason {
    padding: 30px 0 50px;
  }

  #reason .reason__ttl {
    margin-bottom: 10px;
  }

  #reason .reason__lead {
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 1.786;
  }

  #reason .reason__list {
    margin-bottom: 75px;
  }

  #reason .reason__list .reason__item {
    margin: 0 0 40px;
    padding: 0 0 25px;
    gap: 20px;
    flex-direction: column;
  }

  #reason .reason__list .reason__item:last-child {}

  #reason .reason__list .reason__item .infos {
    width: 100%;
    gap: 15px;
  }

  #reason .reason__list .reason__item .infos .head {
    width: 35px;
    margin: 0;
  }

  #reason .reason__list .reason__item .infos .head .text {
    font-size: 1.6rem;
  }

  #reason .reason__list .reason__item .infos .head .digit {
    font-size: 3rem;
    white-space: nowrap;
  }

  #reason .reason__list .reason__item .infos .body .ttl {
    margin: 0 0 15px;
  }

  #reason .reason__list .reason__item .infos .body p {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #reason .reason__story-lead {
    margin-bottom: 15px;
    font-size: 1.9rem;
    line-height: 1.421;
  }

  #reason .reason__story-intro {
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 1.786;
  }

  #reason .reason__story {
    padding: 30px 20px 40px;
  }

  #reason .reason__story-ttl {
    margin-bottom: 30px;
    font-size: 2.1rem;
    line-height: 1;
  }

  #reason .reason__growth-list {
    margin-bottom: 0;
  }

  #reason .reason__growth-list .reason__growth-item {
    margin-bottom: 45px;
    padding-bottom: 30px;
    gap: 20px;
  }

  #reason .reason__growth-list .reason__growth-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  #reason .flow-list li .infos .body .ttl {
    margin-bottom: 15px;
  }

  #reason .flow-list li .infos .head {
    width: auto;
    min-width: 35px;
  }

  #reason .flow-list li .infos .head .digit {
    font-size: 2rem;
    line-height: 1.35;
  }

  #reason .reason__growth-list .reason__growth-item:last-child .infos .head .digit {
    font-size: 1.5rem;
    line-height: 1.333;
  }

  #reason .flow-list li .infos .head .digit-unit {
    font-size: 1.5rem;
    line-height: 1.333;
    letter-spacing: 0;
    display: block;
  }

  #reason .reason__growth-item--future .head .digit {
    font-size: 3.2rem;
  }
}


/* 環境セクション */
#environment {
  position: relative;
  padding: 105px 0 115px 0;
  background-color: #f1f1f1;
  overflow: hidden;
}

#environment .environment-ttl-eng {
  color: rgba(33, 131, 152, 0.15)
}

#environment .sec-ttl {
  margin-bottom: 75px;
  color: #0d0d0d;
}

p.environment-note {
  max-width: 750px;
  margin: 0 auto 64px;
  font-size: 1.6rem;
  line-height: 1.785;
}

#environment .environment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  gap: 3.428571428571429%;
  margin-bottom: 72px;
}

#environment .environment-list .environment-item {
  display: flex;
  flex-direction: column;
  width: 31%;
  max-width: 435px;
  padding: 40px;
  padding: 2.857142857142857%;
  background-color: #fff;
}

#environment .environment-list .environment-item .body {
  flex: 1;
}

#environment .environment-list .environment-item .fig {
  max-height: 184px;
  height: 13.142857142857142vw;
  margin: 0 auto;
  margin-bottom: 2.142857142857143vw;
  text-align: center;
  position: relative;
}

#environment .environment-list .environment-item .fig img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 10;
  position: relative;
}

#environment .environment-list .environment-item .fig:after {
  content: "";
  width: 211px;
  height: 176px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}


#environment .environment-list .environment-item:nth-of-type(1) .fig {
  max-width: 270px;
  width: 76.27118644067797%;
  max-height: 184px;
}

#environment .environment-list .environment-item:nth-of-type(1) .fig:after {
  content: "";
  max-width: 161px;
  width: 72.52252252252252%;
  max-height: 158px;
  height: 82.72251308900523%;
  top: 0;
  right: 0;
}

#environment .environment-list .environment-item:nth-of-type(2) .fig {
  max-width: 248px;
  width: 70.05649717514125%;
  padding-top: 9px;
}

#environment .environment-list .environment-item:nth-of-type(2) .fig:after {
  content: "";
  max-width: 193px;
  width: 78.13765182186235%;
  max-height: 137px;
  height: 64.31924882629107%;
  margin: auto;
  top: 7.317073170731707%;
  right: 0;
}

#environment .environment-list .environment-item:nth-of-type(3) .fig {
  max-width: 259px;
  width: 73.1638418079096%;
  padding-top: 7px;
}

#environment .environment-list .environment-item:nth-of-type(3) .fig:after {
  content: "";
  max-width: 224px;
  width: 100%;
  max-height: 128px;
  height: 63.366336633663366%;
  top: 12.376237623762377%;
  left: 0;
}



@media (min-width: 1400px) {

  #environment .environment-list .environment-item .fig,
  #environment .environment-list .environment-item:nth-of-type(1) .fig {
    height: 184px;
    margin-bottom: 30px;
  }
}

#environment .environment-list .environment-item.fig img {
  width: 100%;
}

#environment .environment-list .environment-item .ttl {
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.357;
}

#environment .environment-list .environment-item ul li {
  line-height: 1.875;
  letter-spacing: 0.01em;
}

#environment .environment-lead {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

#environment .environment-lead .txt {
  color: #0d0d0d;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

@media (max-width: 750px) {
  #environment {
    padding: 30px 0 50px;
  }

  #environment .environment-ttl-eng {
    font-size: 4rem;
  }

  #environment .sec-ttl {
    margin-bottom: 30px;
  }

  p.environment-note {
    margin-bottom: 35px;
    font-size: 1.4rem;
    line-height: 1.785;
  }

  #environment .environment-list {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
    flex-flow: row wrap;
    justify-content: center;
  }

  #environment .environment-list .environment-item {
    width: 100%;
    padding: 30px 15px;
  }

  #environment .environment-list .environment-item .body .fig {
    margin-bottom: 20px;
    height: auto;
  }

  #environment .environment-list .environment-item .body .fig img {
    width: auto;
  }

  #environment .environment-list .environment-item:nth-of-type(1) .body .fig {
    max-width: 167px;
    width: 58.42105263157895%;
    max-height: 151px;
    /* height: auto; */
    margin: 0 auto 15px;
  }

  #environment .environment-list .environment-item:nth-of-type(2) .body .fig {
    max-width: 185px;
    width: 65.08771929824562%;
    max-height: 160px;
    margin: 0 auto 15px;
  }

  #environment .environment-list .environment-item:nth-of-type(3) .body .fig {
    max-width: 154px;
    width: 53.85964912280702%;
    max-height: 138px;
    margin: 0 auto 15px;
  }

  #environment .environment-list .environment-item .body {
    flex: 1;
  }

  #environment .environment-list .environment-item .fig {
    width: 220px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
  }

  #environment .environment-list .environment-item.fig img {
    width: 100%;
  }

  #environment .environment-list .environment-item ul li {
    font-size: 1.5rem;
    line-height: 1.786;
  }

  #environment .environment-lead .txt {
    font-size: 1.5rem;
    line-height: 1.786;
  }
}

/* チェックリストセクション（マッチ度診断） */
#checklist {
  position: relative;
  padding: 70px 0 110px;
}

#checklist .container {
  z-index: 1;
}

#checklist .checklist-row {
  display: flex;
  flex-wrap: wrap;
}

#checklist .checklist-row .checklist-col {
  position: relative;
  width: 50%;
}

#checklist h4.checklist-txt.item-ttl {
  margin-bottom: 44px;
}

#checklist .checklist-row .checklist-col .cta-row {
  justify-content: flex-start;
}

#checklist .checklist-row .checklist-col .cta-row .btn-action {
  margin: 0;
}

#checklist .checklist-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: url("../img/checklist/bg.jpg") no-repeat;
  background-size: cover !important;
}

/*#checklist .checklist-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.3)); 
}

#checklist .checklist-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(76, 72, 71, 0.7); 
}*/

@media (max-width: 750px) {
  #checklist {
    padding: 0;
  }

  #checklist .container {
    padding: 0;
  }

  #checklist .checklist-row .checklist-col {
    width: 100%;
    padding: 30px 15px 50px;
  }

  #checklist .checklist-row .checklist-col .checklist-ttl {
    margin: 0;
  }

  #checklist h4.checklist-txt.item-ttl {
    margin-bottom: 15px;
  }

  #checklist .checklist-row .checklist-col .cta-row .btn-action {
    margin: 0 auto;
  }

  #checklist .checklist-row .checklist-col:nth-child(1) {
    padding: 25px 15px 35px;
    background: url("../img/checklist/bg_sp.jpg") no-repeat;
    background-size: cover;
  }

  #checklist .checklist-bg {
    display: none;
  }
}

/* ボイスセクション（先輩社員の声） */
#voice {
  position: relative;
  padding: 105px 0 115px 0;
  background-color: #f1f1f1;
  overflow: hidden;
}

#voice .voice-ttl-eng {
  color: rgba(33, 131, 152, 0.15);
}

#voice .voice-ttl {
  margin-bottom: 70px;
  color: #000;
}

#voice .voice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

p.voice-note {
  width: 100%;
  max-width: 1200px;
  margin: 45px auto 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: right;
}

#voice .voice-list .voice-item {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  gap: 5.454545454545454%;
  padding: 50px;
  color: #000;
  background-color: #ffffff;
}

#voice .voice-list .voice-item .left {
  max-width: 410px;
  width: 37.27272727272727%;
}

#voice .voice-list .voice-item .left .ttl {
  margin-bottom: 20px;
}

#voice .voice-list .voice-item .left .name {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.9;
  color: #000;
}

#voice .voice-list .voice-item .left .fig img {
  width: 100%;
}

#voice .voice-list .voice-item .right {
  width: calc(100% - 42.72727272727273%);
  /* width: 100%; */
}

#voice .voice-list .voice-item .right p {
  margin: 0 0 30px;
  line-height: 1.875;
  letter-spacing: 0.025em;
}

#voice .voice-list .voice-item .right p:last-child {
  margin: 0;
}


@media (max-width: 750px) {
  #voice {
    padding: 30px 0 50px;
  }

  #voice .voice-ttl {
    margin-bottom: 35px;
  }


  #voice .voice-list {
    gap: 25px;
  }

  p.voice-note {
    /* width: 100%; */
    /* max-width: 1200px; */
    margin: 30px auto 0;
    font-size: 1.4rem;
    /* font-weight: 400; */
    text-align: left;
  }

  #voice .voice-list .voice-item {
    gap: 20px;
    padding: 25px 15px 30px;
    flex-direction: column;
  }

  #voice .voice-list .voice-item .left {
    width: 100%;
    max-width: unset;
  }

  #voice .voice-list .voice-item .left .ttl {
    margin-bottom: 4px;
  }

  #voice .voice-list .voice-item .left .name {
    margin-bottom: 18px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  #voice .voice-list .voice-item .left .fig {
    width: 100%;
    display: block;
  }


  #voice .voice-list .voice-item .left .fig img {
    width: 100%;
  }

  #voice .voice-list .voice-item .right {
    width: 100%;
  }

  #voice .voice-list .voice-item .right p {
    margin: 0 0 25px;
    font-size: 1.5rem;
    line-height: 1.786;
  }
}

/* 要件セクション（募集要項） */
#requirements {
  padding: 105px 0 120px 0;
}

#requirements .requirements-row {
  display: flex;
  flex-wrap: wrap;
}

#requirements .requirements-row .left {
  width: 37%;
  max-width: 518px;
  position: relative;
  display: flex;
}

@media (max-width: 750px) {
  #requirements {
    padding: 30px 0 50px;
  }

  #requirements .requirements-row {
    display: block;
  }

  #requirements .requirements-row .left {
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    margin-bottom: 30px;
    /* border: solid; */
  }
}

#requirements .requirements-row .left .requirements-ttl {
  color: #000;
}

@media (max-width: 750px) {
  #requirements .requirements-row .left .requirements-ttl {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

#requirements .requirements-row .left .fig-1 {
  max-width: 368px;
  width: 26.285714285714285vw;
  height: fit-content;
  position: absolute;
  top: 29.714285714285715vw;
  left: 0;
}

#requirements .requirements-row .left .fig-1 img {
  width: 100%;
}

#requirements .requirements-row .left .fig-2 {
  max-width: 316px;
  width: 22.57142857142857vw;
  position: absolute;
  top: 109.14285714285714vw;
  left: 0;
}

#requirements .requirements-row .left .fig-3 {
  width: calc(100% - 30px);
  position: absolute;
  top: 75.18731988472622%;
  left: 35px;
  left: 6.756756756756757%;
}


@media (min-width: 1400px) {
  #requirements .requirements-row .left .fig-1 {
    width: calc(100% - 30px);
    top: 416px;
  }

  #requirements .requirements-row .left .fig-2 {
    width: calc(100% - 30px);
    top: 1528px;
  }

}

@media (max-width: 750px) {
  #requirements .requirements-row .left .fig-1 {
    max-width: 227px;
    width: 60.4dvw;
    max-height: 271px;
    height: 72.13333333333334dvw;
    margin: 0;
    top: 0;
    right: 0;
    left: unset;
    position: relative;
    /* margin-top: -156px; */
    /* text-align: right; */
  }

  #requirements .requirements-row .left .fig-1 img {
    width: auto;
  }

  #requirements .requirements-row .left .fig-2 {
    display: none;
  }

  #requirements .requirements-row .left .fig-3 {
    display: none;
  }
}

#requirements .requirements-row .right {
  width: 63%;
  margin-top: 65px;
}

@media (max-width: 750px) {
  #requirements .requirements-row .right {
    width: 100%;
  }
}

/* 一日密着セクション（CLOSE-UP） */
#closeup {
  position: relative;
  padding: 105px 0 110px 0;
  background-color: #f1f1f1;
  overflow: hidden;
}

#closeup .closeup-ttl-eng {
  top: -25px;
  font-size: 175px;
  color: rgba(33, 131, 152, 0.15);
}

#closeup .closeup-ttl {
  color: #000;
}

#closeup .closeup-list {
  margin-bottom: 100px;
}

#closeup .closeup-list .closeup-item {
  margin-bottom: 70px;
  padding-bottom: 50px;
}

#closeup .flow-list li .infos .body .ttl {
  margin-bottom: 33px;
}

#closeup .flow-list li .infos .body p {
  margin-bottom: 0;
}

#closeup .flow-list li .infos .head {
  width: auto;
  min-width: 63px;
  text-align: left;
}

#closeup .flow-list li .infos .head .digit {
  writing-mode: horizontal-tb;
}

@media (max-width: 750px) {
  #closeup {
    padding: 30px 0 40px;
  }

  #closeup .closeup-ttl-eng {
    top: -8px;
    font-size: 6rem;
  }

  #closeup .closeup-ttl {
    margin-bottom: 30px;
  }

  #closeup .closeup-list {
    margin-bottom: 35px;
  }

  #closeup .closeup-list .closeup-item {
    margin-bottom: 45px;
    padding-bottom: 30px;
    gap: 20px;
  }

  #closeup .closeup-list .closeup-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  #closeup .flow-list li .infos .body .ttl {
    margin-bottom: 15px;
  }

  #closeup .flow-list li .infos .head {
    width: auto;
    min-width: 35px;
  }
}

/* 応募フローセクション */
#application {
  position: relative;
  padding: 105px 0 100px 0;
  background-color: #f1f1f1;
  overflow: hidden;
}

#application .application__ttl-eng {
  top: -25px;
  font-size: 175px;
  color: rgba(33, 131, 152, 0.15);
}

#application .application__ttl {
  color: #000;
}

#application .application__list {
  /* margin-bottom: 100px; */
}

#application .application__list .application__item {
  margin-bottom: 70px;
  padding-bottom: 50px;
}

#application .application__list .application__item .body .cta-row .btn-action {
  max-width: 450px;
  height: 60px;
  font-size: 30px;
  font-weight: bold;
}

#application .flow-list li .infos .body .ttl {
  margin-bottom: 33px;
}

#application .flow-list li .infos .body p {
  margin-bottom: 0;
}

#application .flow-list li .infos .body p.dot-big {
  margin-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
}

#application .flow-list li .infos .body p.dot-big+p {
  margin-bottom: 35px;
}

#application .application__list .application__item .body .tbl-wrapper {
  margin: 30px 0;
}

#application p.spec.sankou {
  margin-bottom: 0;
}

#application table {
  border-spacing: 3px;
}

#application table td {
  border: none;
}

#application .application__list .application__item .body .tbl-wrapper table tbody tr td:nth-child(2) {
  background-color: #ffffff;
}

#application .flow-list li .infos .body td p.dot {
  margin-bottom: 0;
}



@media (max-width: 750px) {
  #application {
    padding: 30px 0 40px;
  }

  #application .application__ttl-eng {
    top: -5px;
    font-size: 4rem;
  }

  #application .application__ttl {
    margin-bottom: 30px;
  }

  #application .application__list {
    margin-bottom: 35px;
  }

  #application .application__list .application__item {
    margin-bottom: 45px;
    padding-bottom: 30px;
    gap: 20px;
  }

  #application .application__list .application__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  #application .application__list .application__item .body .cta-row .btn-action {
    max-width: 450px;
    height: 60px;
    font-size: 30px;
    font-weight: bold;
  }

  #application .flow-list li .infos .body .ttl {
    margin-bottom: 15px;
  }

  #application .flow-list li .infos .body p.dot-big {
    margin-top: 25px;
  }

  #application .flow-list li .infos .body p.dot-big+p {
    margin-bottom: 20px;
  }

  #application .application__list .application__item .body .cta-row .btn-action {
    width: 100%;
    max-width: unset;
    height: 50px;
  }

  #application .application__list .application__item .body .tbl-wrapper {
    margin: 15px 0;
  }

  #application table {
    border-spacing: 0;
  }
}

/* FAQセクション（よくある質問） */
#faq {
  position: relative;
  padding: 105px 0 80px;
  overflow: hidden;
}

#faq .faq-ttl-eng {
  color: rgba(84, 116, 128, 0.15);
}

#faq .faq-ttl {
  margin-bottom: 80px;
  color: #000;
}

#faq .faq-group {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 95px;
}

#faq .faq-group .faq-group-ttl {
  margin-bottom: 70px;
}

#faq .faq-group .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#faq .faq-group .faq-list .faq-item {
  width: 100%;
}

#faq .faq-group .faq-list .faq-item p {
  position: relative;
  transition: all 0.3s ease;
}

#faq .faq-group .faq-list .faq-item p.q {
  padding: 10px 65px;
  background-color: #e6e6e5;
  cursor: pointer;
}

#faq .faq-group .faq-list .faq-item p.q .mark {
  position: absolute;
  left: 14px;
  top: -25px;
  font-family: "Raleway", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: #a2ced7;
}

#faq .faq-group .faq-list .faq-item p.q .text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}

#faq .faq-group .faq-list .faq-item p.q .plus {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
}

#faq .faq-group .faq-list .faq-item p.q .plus::before,
#faq .faq-group .faq-list .faq-item p.q .plus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #000;
}

#faq .faq-group .faq-list .faq-item p.q .plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: ease 0.3s all;
}

#faq .faq-group .faq-list .faq-item p.q.open .plus::after {
  transform: translateY(-50%);
}

#faq .faq-group .faq-list .faq-item div.a {
  /*display: none;*/
  height: 0;
  overflow: hidden;
  padding: 0 125px;
  transition: all .5s ease;
}

#faq .faq-group .faq-list .faq-item div.a p {
  padding-top: 30px;
}

@media (max-width: 750px) {
  #faq {
    padding: 30px 0 50px;
  }

  #faq .faq-group {
    margin-bottom: 45px;
  }

  #faq .faq-group .faq-group-ttl {
    margin-bottom: 46px;
  }

  #faq .faq-group .faq-list {
    gap: 45px;
  }

  #faq .faq-ttl {
    margin-bottom: 25px;
  }

  #faq .faq-group .faq-list .faq-item p {
    position: relative;
    transition: all 0.3s ease;
  }

  #faq .faq-group .faq-list .faq-item p.q {
    padding: 10px 65px;
    background-color: #e6e6e5;
    cursor: pointer;
  }

  #faq .faq-group .faq-list .faq-item p.q {
    padding: 14px 42px 16px 27px;
  }

  #faq .faq-group .faq-list .faq-item p.q .mark {
    top: -22px;
    left: 5px;
    font-size: 3.5rem;
  }

  #faq .faq-group .faq-list .faq-item p.q .text {
    font-size: 1.6rem;
    line-height: 1.563;
  }

  #faq .faq-group .faq-list .faq-item p.q .plus {
    width: 20px;
    height: 20px;
    right: 14px;
  }

  #faq .faq-group .faq-list .faq-item p.q .plus::before,
  #faq .faq-group .faq-list .faq-item p.q .plus::after {
    height: 3px;
  }

  #faq .faq-group .faq-list .faq-item div.a {
    padding: 0 15px 0 27px;
  }

  #faq .faq-group .faq-list .faq-item div.a p {
    padding-top: 25px;
    font-size: 1.6rem;
    line-height: 1.563;
  }
}

#faq .faq-group:last-child {
  margin-bottom: 0;
}

/* 会社概要セクション */
#company {
  position: relative;
  padding: 105px 0 100px 0;
  background-color: #218398;
  overflow: hidden;
}

#company .company-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* margin-bottom: 100px; */
}

#company .company-table td {
  border-color: #218398;
}

#company p.spec.dot-big::before {
  content: "・";
}

@media (max-width: 750px) {
  #company {
    padding: 30px 0 40px 0;
  }

  #company h3.company-ttl {
    margin-bottom: 30px;
  }

  #company .company-table {
    margin-bottom: 35px;
  }
}



@media (min-width:751px) and (max-width: 1180px) {
  #recruitment .recruitment__body {
    padding-top: 5.208333333333334dvw;
  }

  #value {
    padding-top: 5.989583333333334dvw;
  }

  #about-company,
  #about,
  #closeup,
  #reason,
  #environment,
  #voice,
  #requirements,
  #application,
  #faq,
  #company {
    padding-top: 5.989583333333334dvw;
  }

  #recruitment .recruitment__body .recruitment__body-row .recruitment__body-col:nth-child(1) {
    padding-right: 40px;
  }

}

/* ページトップへ戻る（固定・スクロールで表示 / フッター手前で寄せ） */
.footer__gotop {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  border: solid 1px #000;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, bottom 0.25s ease;
}

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

.footer__gotop:hover {
  opacity: 0.6;
}

.footer__gotop.is-visible:hover {
  opacity: 0.6;
}

.footer__gotop__img {
  display: block;
}

@media (min-width: 751px) {
  .footer__gotop {
    right: 40px;
    bottom: 160px;
    width: 60px;
    height: 60px;
  }

  .footer__gotop.footer__gotop--dock-footer {
    bottom: 220px;
  }

  .footer__gotop__img {
    width: 32px;
  }
}

@media (max-width: 750px) {
  .footer__gotop {
    right: 15px;
    bottom: 67px;
    width: 35px;
    height: 35px;
  }

  .footer__gotop.footer__gotop--dock-footer {
    bottom: 52vw;
  }

  .footer__gotop__img {
    width: 19px;
  }
}

.text_750_white {
  margin: 60px auto 60px;
  max-width: 750px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #fff;
}

.text_750_black {
  margin: 60px auto 60px;
  max-width: 750px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #000;
}

.pc_text_center {
  text-align: center;
}

@media (max-width: 750px) {

  .text_750_white,
  .text_750_black {
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 1.786;
  }

  .pc_text_center {
    text-align: left;
  }
}

.contact_but {
  background-color: #FD9817;
  background: linear-gradient(360deg, rgb(255 153 0) 0%, rgb(255 203 58) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  gap: 20px;
  width: 600px;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #ffffff;
}

@media (max-width: 750px) {
  .contact_but {
    width: 100%;
    height: auto;
    min-height: 50px;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0;
  }
}

.sp_hbg {
  display: none;
}

@media (max-width: 1400px) {
  .sp_hbg {
    display: block;
    margin: 2rem 0;
    text-align: center;
    width: 100%;
  }
}

/*260605 ADD*/
#value p.value__txt{
	text-align: center;
	margin-top: 50px;
	font-size: clamp(2rem, 1.487rem + 1.09vw, 2.8rem);
    font-weight: 600;
	letter-spacing: 0.025em;
    line-height: 1.5;
	color: #fff;
}