@charset "UTF-8";
/* rem size  */
/* Media Quary */
/* ====================================================
config vw
// ----
// * ex) width: calcvw(200)
// ----
==================================================== */
/* ====================================================
@mixin output
// ----
// * ex) @include mixin_menu();
// ----
==================================================== */
/* ====================================================
Transiton
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
flexbox
==================================================== */
/* ====================================================
other
==================================================== */
/* ====================================================
extend
// ----
// * ex) @extend %extend;
// ----
==================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトマージン削除*/
body, p, ul, td, th {
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

h1, h2, h3, h4 {
  margin-block-start: 0;
}

/* リスト・ロールのリストスタイル削除 */
ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出し、インタラクティブ要素の行の高さ */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* rows属性のないtextareasが小さくならないようにする  */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーにスクロールマージン */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --black: #101112;
  --black02: #151c26;
  --main_color: #0a509c;
}

body {
  color: var(--black);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8125rem;
  }
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

img {
  height: auto;
}

img.w100 {
  width: 100%;
}

iframe, video {
  max-width: 100%;
}

section {
  overflow: hidden;
}

*::placeholder {
  color: #c2c7cb;
}

input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible {
  outline: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.c_bg {
  background: #f2f2f2;
}

.c_bg_grad {
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
}

.font_chil {
  font-family: "Chillax", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.anim_fade {
  opacity: 0;
  transform: translateY(50px);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shapeImgAnim {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes shapeImgAnimReserve {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -360deg;
  }
}
[data-section-title] {
  -webkit-mask-image: linear-gradient(90deg, #000 24%, transparent 33%);
          mask-image: linear-gradient(90deg, #000 24%, transparent 33%);
  -webkit-mask-position: 50% 0%;
          mask-position: 50% 0%;
  -webkit-mask-size: 400%;
          mask-size: 400%;
  display: block;
}

.c_heading .text_en {
  font-family: "Chillax", sans-serif;
  font-size: clamp(3.125rem, 12.5vw, 9.375rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}
.c_heading .text_ja {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.c_heading .text_ja + .text_en {
  margin-top: 10px;
}

.c_heading-02 .text_en {
  font-family: "Chillax", sans-serif;
  font-size: 2.625rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}
.c_heading-02 .text_ja {
  color: #979797;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0;
  float: right;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    float: none;
    font-size: 0.625rem;
    justify-content: flex-end;
  }
}
.breadcrumb li {
  color: #767676;
}
.breadcrumb li.current {
  color: #bbb;
}
.breadcrumb li:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background: #bbb;
  rotate: 40deg;
  vertical-align: middle;
  margin: 0 24px;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 767px) {
  .breadcrumb li:not(:first-of-type)::before {
    margin: 0 16px;
  }
}

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

.c_btn_arrow {
  border: 1px solid transparent;
  border-radius: 5em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.c_btn_arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  background-color: transparent;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}

.c_btn {
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
  border-radius: 5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  text-align: center;
  width: 12.5rem;
  height: 5.625rem;
}
@media screen and (max-width: 767px) {
  .c_btn {
    width: 11.25rem;
    height: 4.375rem;
  }
}

.c_btn02 {
  background: #fff;
  color: var(--r_main_color);
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 10px 1.25rem;
  z-index: 2;
}
.c_btn02 .hover_after {
  display: none;
}
.c_btn02::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.c_btn02:hover {
  color: #fff;
  opacity: 1;
}
.c_btn02:hover .hover_before {
  display: none;
}
.c_btn02:hover .hover_after {
  display: inline-block;
}
.c_btn02:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.c_btn03 {
  color: var(--r_main_color);
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.c_btn03:hover {
  opacity: 1;
}

.c_btn03.with_circle .c_btn_arrow {
  background-color: rgba(255, 255, 255, 0.4);
}
.c_btn03.with_circle:hover .c_btn_arrow::before {
  background-color: #fff;
  transform-origin: left top;
  transform: scale(1, 1);
}
.c_btn03.with_circle svg {
  width: 14px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 7px);
}

.c_recruit_mt {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c_recruit_mt {
    margin-top: 3.75rem;
  }
}
.c_recruit_mt.lg {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c_recruit_mt.lg {
    margin-top: 5rem;
  }
}

.c_sepalator_wrap {
  padding-top: 11.25rem;
  padding-bottom: 8.75rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c_sepalator_wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.c_sepalator_wrap .sepalator {
  background-color: color-mix(in srgb, #bbb 40%, transparent);
  display: block;
  height: 1px;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.recruit_site {
  --r_main_color: #051a28;
  background-color: #f2f2f2;
  color: var(--r_main_color);
  font-size: 1rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .recruit_site {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.content_cover {
  margin-right: auto;
  margin-left: auto;
}

.bg_fixed {
  position: fixed;
  top: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.bg_fixed video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 92%;
}
@media screen and (max-width: 767px) {
  .c_inner {
    width: 90%;
  }
  .c_inner.sp_sm {
    width: 84%;
  }
  .c_inner.sp_full {
    width: 100%;
  }
}

.c_inner.lg {
  max-width: 1400px;
}

.c_page_wrap {
  padding-top: 9.375rem;
  padding-bottom: 13.125rem;
}
@media screen and (max-width: 767px) {
  .c_page_wrap {
    padding-top: 6.875rem;
    padding-bottom: 8.75rem;
  }
}

.c_nav_list {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  gap: 2.5rem 5%;
}
@media screen and (max-width: 767px) {
  .c_nav_list {
    grid-template-columns: auto;
  }
}
.c_nav_list .nav_item {
  flex: 1 1 30%;
}
.c_nav_list .nav_parent {
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
}
.c_nav_list .nav_parent .en {
  font-family: "Chillax", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .c_nav_list .nav_parent .en {
    font-size: 1.125rem;
  }
}
.c_nav_list .nav_parent .ja {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c_nav_list .nav_parent .ja {
    font-size: 0.875rem;
  }
}
.c_nav_list .nav_parent_link {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c_nav_list .nav_child li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c_how_to_apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c_how_to_apply {
    flex-direction: column;
    gap: 1.5rem 0;
    max-width: 280px;
    width: 86%;
  }
}
.c_how_to_apply .item {
  width: 41%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_how_to_apply .item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c_how_to_apply .item:last-of-type {
    padding-top: 1.875rem;
  }
}
.c_how_to_apply .item:last-of-type::before {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: -18%;
}
@media screen and (max-width: 767px) {
  .c_how_to_apply .item:last-of-type::before {
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
  }
}

.c_apply_btn {
  color: #fff;
  font-size: 0.875rem;
  width: 100%;
}
.c_apply_btn img {
  vertical-align: bottom;
  margin: 10px 0;
}
.c_apply_btn .c_btn_arrow {
  width: 5.625rem;
  height: 5.625rem;
}
@media screen and (max-width: 767px) {
  .c_apply_btn .c_btn_arrow {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c_apply_btn .main_text_img {
    width: 130px;
  }
}
.c_apply_btn .main_text_en {
  font-family: "Chillax", sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c_apply_btn .main_text_en {
    font-size: 1.875rem;
  }
}

.recruit_common-join {
  background: #f2f2f2;
  border-radius: 3.75rem;
  margin-top: 33.75rem;
  padding: 10rem 0 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_common-join {
    border-radius: 1.875rem;
    margin-top: 23.75rem;
    padding: 7.5rem 0 6.25rem;
  }
}
.recruit_common-join .c_heading {
  position: relative;
}
.recruit_common-join .c_heading .text_en {
  font-weight: 600;
}
.recruit_common-join .shape_img {
  right: -8%;
  top: 10%;
  max-width: 580px;
  width: 45vw;
  animation: shapeImgAnim 30s infinite 0.5s linear;
}
@media screen and (max-width: 767px) {
  .recruit_common-join .shape_img {
    right: -10%;
    top: 6%;
    width: 48vw;
  }
}
.recruit_common-join .shape_img.shape02 {
  right: -14%;
  top: 26%;
  width: 32vw;
  animation: shapeImgAnimReserve 30s infinite 0.5s linear;
}
@media screen and (max-width: 767px) {
  .recruit_common-join .shape_img.shape02 {
    top: 14%;
    width: 40vw;
  }
}
.recruit_common-join .c_inner {
  position: relative;
  z-index: 1;
}

.recruit_common-join_linklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem 1.25rem;
  margin: 6.25rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .recruit_common-join_linklist {
    display: block;
  }
  .recruit_common-join_linklist li {
    margin-top: 10px;
  }
}
.recruit_common-join_linklist .c_btn02 {
  border-radius: 15px;
  height: 10rem;
  width: 100%;
  padding: 10px 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit_common-join_linklist .c_btn02 {
    height: 6.25rem;
  }
}
.recruit_common-join_linklist .c_btn_inner {
  max-width: 340px;
  margin: 0 auto;
}
.recruit_common-join_linklist .c_btn_text_2par .ja, .recruit_common-join_linklist .c_btn_text_2par .en {
  display: block;
  font-weight: 500;
  letter-spacing: 0;
}
.recruit_common-join_linklist .c_btn_text_2par .ja {
  font-size: 1.125rem;
  line-height: 1.1;
}
.recruit_common-join_linklist .c_btn_text_2par .en {
  font-family: "Chillax", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  margin-top: 10px;
}

.recruit-common-join_cta {
  background: linear-gradient(-90deg, #0c74c4, #00b0bc);
  border-radius: 3.75rem;
  color: #fff;
  padding: 5rem 0.875rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-common-join_cta {
    border-radius: 1.875rem;
    padding: 3.125rem 0.875rem;
  }
}
.recruit-common-join_cta .ttl {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-common-join_cta .ttl {
    font-size: 1.5rem;
  }
}
.recruit-common-join_cta .sub_text {
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-top: 1.875rem;
  text-align: center;
}
.recruit-common-join_cta .c_how_to_apply {
  margin: 6.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .recruit-common-join_cta .c_how_to_apply {
    margin: 3.75rem auto 0;
  }
}

.rectuit_c_box-number {
  background-color: #fff;
  border-radius: 15px;
  font-size: 0.875rem;
  line-height: 2.4;
  margin-top: 2.5rem;
  padding: 3.75rem 1.25rem 3.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .rectuit_c_box-number {
    padding: 2.25rem 1.625rem 2.25rem 1.625rem;
  }
}
.rectuit_c_box-number .box_inner {
  display: grid;
  grid-template-columns: 86px 1fr;
  max-width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .rectuit_c_box-number .box_inner {
    grid-template-columns: 3em 1fr;
  }
}
.rectuit_c_box-number .num {
  color: #1c7fc7;
  font-family: "Chillax", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  grid-row: 1/3;
  display: flex;
  align-items: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .rectuit_c_box-number .num {
    grid-row: inherit;
    align-items: flex-start;
  }
}
.rectuit_c_box-number .ttl {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .rectuit_c_box-number .detail {
    grid-column: 1/3;
  }
}
.rectuit_c_box-number a {
  color: #1c7fc7;
}

.rectuit_c_box-number.flow_arrow {
  position: relative;
}
.rectuit_c_box-number.flow_arrow:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -1.5625rem;
  left: 50%;
  display: inline-block;
  width: 20px;
  height: 10px;
  background: #1c7fc7;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.c_page_fv {
  position: relative;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c_page_fv {
    padding-top: 2.5rem;
  }
}
.c_page_fv img {
  vertical-align: bottom;
}
.c_page_fv .c_inner {
  position: relative;
}

.c_fv_shape_img {
  position: absolute;
  left: -10%;
  top: 0;
  max-width: 580px;
  width: 45vw;
  opacity: 0;
}
.c_fv_shape_img.active {
  animation: shapeImgAnim 30s infinite 0.5s linear;
  opacity: 1;
  transition: opacity 0.6s;
}

@media screen and (max-width: 767px) {
  .c_page_fv-ttl_bread {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.page_fv_img_wrap {
  overflow: hidden;
  width: 100vw;
  margin: 11.25rem calc(50% - 50vw) 0;
}
@media screen and (max-width: 767px) {
  .page_fv_img_wrap {
    margin-top: 5rem;
    height: 17.5rem;
  }
}

.page_fv_img {
  width: 90%;
  height: 100%;
  --radius: 60px;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(30vh);
}
@media screen and (max-width: 767px) {
  .page_fv_img {
    --radius: 20px;
  }
}
.page_fv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit_interview_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 2%;
}
@media screen and (max-width: 767px) {
  .recruit_interview_list {
    flex-direction: column;
    gap: 40px 2%;
  }
}
.recruit_interview_list li {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .recruit_interview_list li {
    width: 100%;
  }
}
.recruit_interview_list .interview_link {
  color: var(--r_main_color);
}
.recruit_interview_list .thumb_num {
  position: relative;
}
.recruit_interview_list .thumb_num::before {
  content: "";
  display: block;
  background: transparent;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.recruit_interview_list .thumb_num .thumb_wrap {
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit_interview_list .thumb_num .thumb_wrap {
    border-radius: 1.875rem;
  }
}
.recruit_interview_list .thumb_num img {
  vertical-align: bottom;
  width: 100%;
  transition: scale 0.2s ease-in;
}
.recruit_interview_list .interview_ttl {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .recruit_interview_list .interview_ttl {
    margin-top: 1.25rem;
  }
}
.recruit_interview_list .dept {
  font-size: 0.875rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .recruit_interview_list .dept {
    font-size: 0.75rem;
  }
}
.recruit_interview_list .interviewee_name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 20px;
}
@media screen and (max-width: 767px) {
  .recruit_interview_list .interviewee_name {
    font-size: 1.125rem;
  }
}
.recruit_interview_list .interviewee_name .name_en {
  color: #bbbbbb;
  font-family: "Chillax", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4px;
}

.recruit_interview_list .interview_link:hover {
  opacity: 1;
}
.recruit_interview_list .interview_link:hover .thumb_num::before {
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
  opacity: 0.7;
  z-index: 2;
}
.recruit_interview_list .interview_link:hover .thumb_num img {
  scale: 1.1;
  transition: scale 0.3s ease-in;
}
.recruit_interview_list .interview_link:hover .interview_ttl {
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
  -webkit-background-clip: text;
          background-clip: text;
  color: rgba(0, 0, 0, 0);
}

.recruit_interview_list.splide li {
  flex: none;
}
.recruit_interview_list.splide .splide__track {
  max-width: 100%;
}

.header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.875rem 1.25rem;
  z-index: 100;
}

.header_logo_wrap {
  display: flex;
  align-items: center;
  color: var(--r_main_color);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header_logo_wrap .c_header_img_logo {
    width: 8.75rem;
  }
}
.header_logo_wrap .logo_sub {
  font-family: "Chillax", sans-serif;
  font-weight: 550;
  margin-left: 20px;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header_logo_wrap .logo_sub {
    font-size: 0.6875rem;
    margin-left: 14px;
  }
}

.header.js-open .header_logo_wrap {
  opacity: 0;
}

.header.recruit_home .c_header_img_logo.color_logo {
  display: none;
}
.header.recruit_home .header_logo_wrap {
  color: #fff;
}

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

.header_cta_wrap {
  border-radius: 5em;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_cta_wrap {
    display: none;
  }
}
.header_cta_wrap a {
  color: #fff;
  padding: 10px;
}
.header_cta_wrap .slash {
  background: #fff;
  width: 1px;
  height: 1.5em;
  rotate: 30deg;
  margin: 0 10px;
}

.header_btn_menu {
  background-color: #fff;
  border-radius: 5em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .header_btn_menu {
    width: 50px;
    height: 50px;
  }
}

.header_buger_line {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--r_main_color);
  transition: all 0.3s ease-out;
  transform-origin: center;
  position: relative;
  top: -3px;
}
.header_buger_line:not(:first-child) {
  top: 3px;
}

.header_open {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
  will-change: opacity;
  z-index: 99;
}

.header_open_menu_box {
  border-radius: 3.75rem 0 0 3.75rem;
  background: #303b46;
  width: 80%;
  height: 100%;
  margin-left: auto;
  padding: 7.5rem 1.25rem 1.25rem;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .header_open_menu_box {
    border-radius: 0;
    width: 100%;
    margin: 0 auto;
    padding: 4.875rem 10% 4.25rem;
  }
}

.header_open_inner {
  max-width: 900px;
  margin: 0 auto;
  height: 100%;
  padding-bottom: 5rem;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .header_open_inner {
    min-width: 760px;
  }
}
@media screen and (max-width: 767px) {
  .header_open_inner {
    width: 88%;
    padding-right: 2%;
    margin: 0 auto 0 0;
    padding-bottom: 10px;
  }
}

.nav_list_header .nav_child li {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.6);
}
.nav_list_header .nav_child li a {
  padding: 10px 0;
}

.header_cta_box {
  border-radius: 1.875rem;
  padding: 3.75rem 10px;
  margin: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .header_cta_box {
    padding: 1.875rem 10px;
  }
}
@media screen and (max-width: 767px) {
  .header_cta_box .c_btn_inner {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .header_cta_box .c_apply_btn .c_btn_arrow {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header_cta_box .c_apply_btn .main_text_img {
    width: 150px;
  }
}
.header_cta_box .c_apply_btn .main_text_en {
  font-size: 2.375rem;
}

.header_lower_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .header_lower_list {
    gap: 3.125rem;
  }
}
.header_lower_list .lower_left {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
  font-size: 0.8125rem;
}
.header_lower_list .lower_right {
  font-family: "Chillax", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.header_lower_list .privacy_popup_text {
  text-decoration: none;
}

.header.js-open .header_logo_wrap, .header.js-open .header_cta_wrap {
  visibility: hidden;
}
.header.js-open + .header_open {
  opacity: 1;
  visibility: visible;
}
.header.js-open .header_buger_line {
  top: 0;
}
.header.js-open .header_buger_line:first-of-type {
  transform: rotate(45deg) translateY(1px);
  transition: transform 0.3s ease-out;
}
.header.js-open .header_buger_line:nth-of-type(2) {
  transform: rotate(-45deg) translateY(-1px);
  transition: transform 0.3s ease-out;
}

.footer {
  background: color-mix(in srgb, var(--r_main_color) 80%, transparent);
  color: #fff;
  font-size: 0.875rem;
  padding: 12.5rem 0 7.5rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 100px 0 60px;
    margin-top: -1.875rem;
  }
}

.footer_logo .text_wrap {
  display: inline-block;
  text-align: center;
  width: fit-content;
}
.footer_logo .logo_sub {
  font-family: "Chillax", sans-serif;
  font-weight: 550;
  margin-left: 20px;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer_logo .logo_sub {
    font-size: 0.75rem;
    margin-left: 20px;
  }
}

.footer_upper_cont {
  display: grid;
  grid-template-columns: 14% 50% 250px;
  gap: 8%;
  justify-content: space-between;
}

.nav_list_footer .nav_parent {
  border-bottom: 0.5px solid #fff;
  margin-bottom: 1.25rem;
}
.nav_list_footer .nav_parent .en {
  font-size: 1.125rem;
}
.nav_list_footer .nav_parent .ja {
  font-size: 1rem;
}
.nav_list_footer li {
  margin: 10px 0;
}
.nav_list_footer .nav_child {
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .footer_apply {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 1139px) {
  .footer_upper_cont {
    grid-template-columns: calc(95% - 220px) 220px;
    gap: 5%;
  }
  .footer_logo {
    grid-column: 1/3;
  }
  .nav_list_footer .nav_parent .en {
    font-size: 1rem;
  }
  .nav_list_footer .nav_parent .ja {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1000px) {
  .footer_logo {
    flex-basis: 100%;
    margin-bottom: 3.75rem;
  }
  .footer_logo .text_wrap {
    display: flex;
    align-items: center;
  }
  .nav_list_footer {
    flex-basis: 56%;
  }
}
@media screen and (max-width: 767px) {
  .footer_upper_cont {
    display: block;
  }
  .nav_list_footer {
    grid-template-columns: 50%;
    gap: 1.875rem 10%;
  }
}
.footer_btn_apply {
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 5.625rem;
}
@media screen and (min-width: 768px) {
  .footer_btn_apply {
    max-width: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .footer_btn_apply {
    width: 100%;
  }
}
.footer_btn_apply.color01 {
  background: #00b0bc;
}
.footer_btn_apply.color02 {
  background: #0c74c4;
  margin-top: 1.25rem;
}
.footer_btn_apply .btn_text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 4px;
}
.footer_btn_apply .logo_mynavi {
  width: 9em;
  vertical-align: bottom;
}
.footer_btn_apply .btn_text_entry {
  font-family: "Chillax", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.footer_lower_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 7.5rem;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer_lower_cont {
    margin-top: 3.125rem;
  }
}
.footer_lower_cont .link_list {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
}
@media screen and (max-width: 767px) {
  .footer_lower_cont .link_list {
    flex-direction: column;
  }
}
.footer_lower_cont .link_list .arrow {
  margin-left: 4px;
  vertical-align: middle;
}
.footer_lower_cont .privacy_popup_text {
  text-decoration: none;
}
.footer_lower_cont .copyright {
  color: #fefefe;
  font-family: "Chillax", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .footer_lower_cont .copyright {
    margin-top: 5rem;
    font-size: 0.875rem;
  }
}

.scroll_down {
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .scroll_down {
    display: none;
  }
}

.scroll_down_text {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  margin: auto;
  white-space: nowrap;
}
.scroll_down_text::after {
  content: "";
  display: block;
  width: 1px;
  height: 150px;
  background: #fff;
  animation: scrollDown 2s infinite;
  position: relative;
  right: 1px;
}

@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.shape_img {
  position: absolute;
}

.recruit_top-fv {
  color: #fff;
  width: 100%;
  height: 100%;
  margin-top: 50vh;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv {
    margin-top: 56dvh;
  }
}
.recruit_top-fv .c_fv_shape_img {
  left: -15%;
  top: 40vh;
  z-index: -1;
  max-width: fit-content;
  width: 44vw;
  opacity: 0;
}
.recruit_top-fv .c_fv_shape_img.active {
  animation: shapeImgAnim 30s infinite 0.5s linear;
  opacity: 1;
  transition: opacity 0.6s;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv .c_fv_shape_img {
    top: 49vh;
    width: 78vw;
    left: -26%;
  }
}
.recruit_top-fv .c_inner {
  position: relative;
}

.recruit_top-fv_title {
  width: 100%;
}
.recruit_top-fv_title .sub_text {
  font-size: clamp(1rem, 2.34vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.recruit_top-fv_title .main_text {
  font-family: "Chillax", sans-serif;
  font-size: clamp(3.75rem, 14.17vw, 10.625rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv_title .main_text {
    font-weight: 550;
    font-size: clamp(3.75rem, 16vw, 7.5rem);
  }
}
.recruit_top-fv_title .catch_img {
  position: absolute;
  top: 0.6em;
  left: calc(50% - 1.4em);
  width: 4em;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv_title .catch_img {
    position: relative;
    top: inherit;
    left: calc(50% - 2.1em);
    margin-top: -0.4em;
    width: 4.7em;
  }
}
.recruit_top-fv_title .text {
  display: block;
  white-space: nowrap;
}
.recruit_top-fv_title .text:nth-of-type(2) {
  margin-top: 0.4em;
  margin-left: 0.4em;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv_title .text:nth-of-type(2) {
    margin-top: -0.2em;
    margin-left: 0;
  }
}
.recruit_top-fv_title .text:nth-of-type(3) {
  margin-left: 1.4em;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv_title .text:nth-of-type(3) {
    margin-left: 0.3em;
  }
}
.recruit_top-fv_title .text_word {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .recruit_top-fv_title .text_word {
    display: block;
    line-height: 1;
  }
  .recruit_top-fv_title .text_word:nth-of-type(2) {
    position: relative;
    left: calc(50% - 1em);
  }
}

.recruit_top-bg_grad {
  background: linear-gradient(180deg, transparent 1%, rgba(5, 24, 38, 0.08) 2%, rgba(5, 24, 38, 0.8) 20%, rgb(5, 24, 38) 38%, rgb(5, 24, 38));
}

.recruit_top-message {
  color: #fff;
  padding-top: 50rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-message {
    padding-top: 37.5rem;
    padding-bottom: 10rem;
  }
}
.recruit_top-message .cont_wrap {
  width: 52%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .recruit_top-message .cont_wrap {
    min-width: 625px;
  }
}
@media screen and (max-width: 767px) {
  .recruit_top-message .cont_wrap {
    width: 100%;
  }
}
.recruit_top-message .ttl {
  font-family: "Chillax", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 1.875rem;
}

.recruit_top-about {
  background-color: #fff;
  border-radius: 3.75rem;
  margin-top: -3.75rem;
  padding: 10rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_top-about {
    border-radius: 1.875rem;
    margin-top: -1.875rem;
    padding: 5rem 0;
  }
}

.recruit_top-about_title {
  text-align: center;
  position: relative;
}
.recruit_top-about_title .main_text {
  font-family: "Chillax", sans-serif;
  font-size: clamp(3.25rem, 12.5vw, 9.375rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.recruit_top-about_title .catch_img {
  vertical-align: middle;
  width: 2em;
  position: relative;
  bottom: 0.1em;
}
.recruit_top-about_title .main_text_02 {
  font-size: clamp(0.625rem, 1.17vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  position: absolute;
  left: 2%;
  top: 2.5rem;
  writing-mode: vertical-rl;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_title .main_text_02 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: static;
    writing-mode: horizontal-tb;
    margin-top: 1.25rem;
  }
}
.recruit_top-about_title .main_text_02::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
  border-radius: 5em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_title .main_text_02::before {
    display: none;
  }
}
.recruit_top-about_title .sub_text {
  font-size: clamp(1.5rem, 2.67vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_title .sub_text {
    font-size: clamp(1.5rem, 6.67vw, 2.5rem);
  }
}
.recruit_top-about_title + .lead {
  margin-top: 3.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_title + .lead {
    margin-top: 1.875rem;
  }
}

.recruit_top-about_list {
  color: #fff;
  margin-top: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_list {
    margin-top: 5rem;
  }
}
.recruit_top-about_list .shape_img {
  position: absolute;
  right: -15%;
  top: -20%;
  max-width: 580px;
  width: 45vw;
  animation: shapeImgAnim 30s infinite linear;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_list .shape_img {
    top: -10%;
  }
}

.recruit_top-about_item {
  border-radius: 15px;
  color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 540px;
  max-height: 680px;
  height: 46vw;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_item {
    border-radius: 1.875rem;
    max-height: inherit;
    min-height: inherit;
    height: auto;
  }
}
.recruit_top-about_item.about_our_service {
  background-image: url(../img/recruit/our_service.jpg);
}
@media screen and (max-width: 767px) {
  .recruit_top-about_item.about_our_service {
    background-image: url(../img/recruit/our_service-sp.jpg);
  }
}
.recruit_top-about_item.about_in_number {
  background-image: url(../img/recruit/recruit_top_in_number_bg.jpg);
}
@media screen and (max-width: 767px) {
  .recruit_top-about_item.about_in_number {
    background-image: url(../img/recruit/recruit_top_in_number_bg-sp.jpg);
  }
}
.recruit_top-about_item.about_benefits {
  background-image: url(../img/recruit/recruit_top_in_benefits_bg.jpg);
}
@media screen and (max-width: 767px) {
  .recruit_top-about_item.about_benefits {
    background-image: url(../img/recruit/recruit_top_in_benefits_bg-sp.jpg);
  }
}
.recruit_top-about_item::before, .recruit_top-about_item::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.4s ease;
  z-index: 2;
}
.recruit_top-about_item::before {
  background-color: rgba(5, 24, 38, 0.6);
}
.recruit_top-about_item::after {
  background-image: linear-gradient(90deg, #00b0bc, #0c74c4);
  opacity: 0;
}
.recruit_top-about_item .num {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 5;
}

.recruit_top-about_item:hover {
  opacity: 1;
}
.recruit_top-about_item:hover::before {
  background-color: transparent;
}
.recruit_top-about_item:hover::after {
  opacity: 0.85;
  transition: 0.4s ease;
}
.recruit_top-about_item:hover .c_btn {
  background: transparent;
  border: 1px solid #fff;
}

.recruit_top-about_cont {
  width: 88%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .recruit_top-about_cont {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont {
    position: relative;
    padding: 3.125rem 10px;
  }
}
.recruit_top-about_cont .title_wrap.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont .title_wrap {
    text-align: center;
  }
}
.recruit_top-about_cont .title_wrap .main_text {
  font-family: "Chillax", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .recruit_top-about_cont .title_wrap .main_text {
    font-size: clamp(3.125rem, 6.67vw, 5rem);
  }
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont .title_wrap .main_text {
    font-size: clamp(2.75rem, 10.67vw, 5rem);
  }
}
.recruit_top-about_cont .title_wrap .main_text.lg {
  font-size: 7.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .recruit_top-about_cont .title_wrap .main_text.lg {
    font-size: clamp(3.75rem, 10vw, 7.5rem);
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont .title_wrap .main_text.lg {
    font-size: clamp(2.75rem, 10.67vw, 5rem);
  }
}
.recruit_top-about_cont .title_wrap .sub_text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont .title_wrap .sub_text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont .c_btn {
    margin-top: 2.5rem;
  }
}

.recruit_top-about_cont.service_cont {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont.service_cont {
    flex-direction: column;
  }
}
.recruit_top-about_cont.service_cont .detail {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont.service_cont .detail {
    margin-top: 1.875rem;
    text-align: center;
  }
}
.recruit_top-about_cont.service_cont .detail .c_btn {
  margin-left: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont.service_cont .detail .c_btn {
    margin: 1.875rem auto 0;
  }
}
.recruit_top-about_cont.service_cont .detail_text {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont.service_cont .detail_text {
    font-size: 0.9375rem;
  }
}

.recruit_top-abou_list-column {
  display: flex;
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-abou_list-column {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .recruit_top-abou_list-column .recruit_top-about_item {
    width: 50%;
  }
}

.recruit_top-about_cont.column_cont {
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 74%;
}
.recruit_top-about_cont.column_cont .detail_wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit_top-about_cont.column_cont .detail_wrap {
    display: none;
  }
}

.recruit_top-about-in_num {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-about-in_num {
    gap: 1.25rem;
  }
}
.recruit_top-about-in_num .list_ttl {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .recruit_top-about-in_num .list_ttl {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}
.recruit_top-about-in_num .innum {
  font-family: "DIN Alternate", "Poppins", sans-serif;
  font-size: 6.25rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .recruit_top-about-in_num .innum {
    font-size: clamp(3.75rem, 8.34vw, 6.25rem);
  }
}

.recruit_top-about-benefit {
  display: grid;
  grid-template-columns: 1fr 61px 1fr;
}
@media screen and (max-width: 767px) {
  .recruit_top-about-benefit {
    grid-template-columns: 1fr 41px 1fr;
  }
}
.recruit_top-about-benefit .separator {
  width: 1px;
  height: 100%;
  margin: 0 1.875rem;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 767px) {
  .recruit_top-about-benefit .separator {
    margin: 0 1.25rem;
  }
}
.recruit_top-about-benefit li {
  margin: 10px 0;
}

.recruit_top-interview {
  background-color: #f2f2f2;
  margin-top: -3.75rem;
  padding: 11.25rem 0 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview {
    padding: 7.5rem 0 6.25rem;
  }
}
.recruit_top-interview .shape_img {
  top: 0;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .shape_img {
    left: -14%;
  }
}
.recruit_top-interview .shape_img.shape01 {
  top: -100px;
  width: clamp(12.8125rem, 35vw, 420px);
  animation: shapeImgAnim 30s infinite 0.5s linear;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .shape_img.shape01 {
    top: -50px;
  }
}
.recruit_top-interview .shape_img.shape02 {
  top: 140px;
  width: clamp(10rem, 25vw, 300px);
  animation: shapeImgAnimReserve 30s infinite 0.5s linear;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .shape_img.shape02 {
    top: 80px;
    left: -20%;
  }
}
.recruit_top-interview .c_inner {
  position: relative;
}
.recruit_top-interview .slide_nav_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: -245px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .slide_nav_wrap {
    display: none;
  }
}
.recruit_top-interview .slide_nav_wrap .splide__arrows {
  display: flex;
}
.recruit_top-interview .slide_nav_wrap .splide__arrow {
  width: 70px;
  height: 70px;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 5em;
  position: relative;
  top: inherit;
  left: inherit;
  right: inherit;
  transform: none;
  margin-right: 10px;
}
.recruit_top-interview .slide_nav_wrap .splide__arrow .c_btn_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
}
.recruit_top-interview .slide_nav_wrap .splide__arrow--prev .c_btn_arrow {
  rotate: 180deg;
  transform: translate(7px, 4px);
}
.recruit_top-interview .slide_nav_wrap .splide__arrow--next .c_btn_arrow {
  transform: translate(-7px, -4px);
}
.recruit_top-interview .sp_btn_wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .sp_btn_wrap {
    display: block;
    width: fit-content;
    margin: 3.75rem auto 0;
  }
}

.recruit_top-interview .recruit_interview_list {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .recruit_interview_list .thumb_num {
    border-radius: 1.875rem;
  }
}
.recruit_top-interview .recruit_interview_list .num {
  font-family: "Chillax", sans-serif;
  font-size: 4.375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  bottom: -0.4em;
  z-index: 5;
}
.recruit_top-interview .recruit_interview_list .interview_ttl {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .recruit_top-interview .recruit_interview_list .interview_ttl {
    margin-top: 1.875rem;
  }
}

.p-recruit-form_wrap {
  margin: 0 auto;
  width: 92%;
  max-width: 1000px;
}

.p-contact_item {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .p-contact_item {
    flex-direction: column;
  }
}

.p-contact_title {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 400;
  cursor: auto;
}
@media screen and (min-width: 768px) {
  .p-contact_title {
    width: 25%;
    height: 70px;
  }
}
.p-contact_title .required, .p-contact_title .optional {
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0;
  margin-right: 1em;
  padding: 5px 6px 6px;
}
.p-contact_title .required {
  background: #f33047;
}
.p-contact_title .optional {
  background: #adadad;
}

.p-contact_input {
  background: #fff;
  border-radius: 15px;
  width: 100%;
  padding: 22px;
}
@media screen and (max-width: 767px) {
  .p-contact_input {
    border-radius: 8px;
    margin-top: 16px;
    padding: 12px;
  }
}
.p-contact_input input, .p-contact_input textarea {
  background: #fff;
  border-radius: 15px;
  width: 100%;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-contact_input input, .p-contact_input textarea {
    border-radius: 8px;
  }
}
.p-contact_input input {
  height: 100%;
}

.p-contact_input .wpcf7-not-valid-tip {
  position: absolute;
  bottom: calc(-22px - 2.2em);
}
@media screen and (max-width: 767px) {
  .p-contact_input .wpcf7-not-valid-tip {
    bottom: calc(-12px - 2.2em);
  }
}

.p-contact_select_column .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -2em;
}
@media screen and (max-width: 767px) {
  .p-contact_select_column .wpcf7-not-valid-tip {
    font-size: 10px;
    white-space: nowrap;
  }
}

.p-contact_check_item .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -3em;
}

.p-contact_radio_item,
.p-contact_check_item {
  padding: 20px 12px 20px 0;
}

.wpcf7-radio, .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.wpcf7-select {
  background: #fff;
  padding: 22px;
}
@media screen and (max-width: 767px) {
  .wpcf7-select {
    padding: 12px;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 3em;
  padding-top: 6px;
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.wpcf7-list-item-label::before {
  content: "";
  border-radius: 6px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 29px;
  height: 29px;
  border: 1px solid #fff;
}

input:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 29px;
  z-index: 2;
}

.p-contact_radio_item input,
.p-contact_check_item input {
  display: none;
}

.p-contact_radio_item .wpcf7-radio label {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.p-contact_radio_item .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
  background: #1c7fc7;
  border: 1px solid #1c7fc7;
  border-radius: 6px;
  border-radius: 50%;
  transform: scale(0.5);
}
.p-contact_radio_item .wpcf7-list-item-label::before {
  border: 1px solid #fff;
  border-radius: 6px;
  border-radius: 50%;
}

.p-contact_check_item input:checked + .wpcf7-list-item-label::before {
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
}
.p-contact_check_item input:checked + .wpcf7-list-item-label::after {
  left: 11px;
  top: 5px;
  width: 7px;
  height: 15px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.p-contact_check_item .wpcf7-list-item-label::before {
  background: #fff;
}

.p-contact_select_column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.p-contact_select_column .select_item {
  width: 32%;
}
.p-contact_select_column .wpcf7-form-control-wrap {
  display: inline-block;
  width: calc(100% - 3em);
  margin-right: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact_select_column .wpcf7-form-control-wrap {
    width: calc(100% - 2em);
    margin-right: 10px;
    margin-top: 16px;
  }
}
.p-contact_select_column .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background-color: #1c7fc7;
  clip-path: polygon(50% 6px, 0% 0%, 11.5px 0%);
  position: absolute;
  top: 46%;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact_select_column .wpcf7-form-control-wrap::after {
    right: 5px;
  }
}
.p-contact_select_column select {
  border: none;
  border-radius: 15px;
  width: 100%;
  appearance: none;
}

.p-contact_privacy_item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.875rem;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact_privacy_item {
    padding-top: 2.5rem;
  }
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  color: #dc3232;
}

.p-contact_submit_wrap {
  margin-top: 60px;
  text-align: center;
  position: relative;
}
.p-contact_submit_wrap .wpcf7-spinner {
  position: absolute;
  top: 0;
}

.wpcf7-submit {
  background: transparent;
  border: none;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.05em;
  width: auto;
  min-width: 300px;
  height: 90px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    min-width: 250px;
    width: 80%;
    height: 70px;
  }
}

.submit_btn_wrap {
  background: linear-gradient(90deg, #00b0bc, #0c74c4);
  border: 1px solid transparent;
  border-radius: 5em;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.submit_btn_wrap .hover_after {
  display: none;
}

.submit_btn_wrap.abled_wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  background: #fff;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.submit_btn_wrap.abled_wrap:hover .wpcf7-submit {
  color: var(--main_color);
}
.submit_btn_wrap.abled_wrap:hover .hover_before {
  display: none;
}
.submit_btn_wrap.abled_wrap:hover .hover_after {
  display: inline-block;
}
.submit_btn_wrap.abled_wrap:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.submit_btn_wrap.disabled_wrap {
  background: #dfdddd;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.submit_btn_wrap.disabled_wrap::before {
  content: none;
}

.privacy_popup_text {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
  letter-spacing: 0.05em;
}

#popup-wrapper {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 110;
}

#popup-inside {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #popup-inside {
    width: 96%;
  }
}

.privacy_inner {
  background: #fff;
  padding: 60px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy_inner {
    padding: 40px 30px;
  }
}

.privacy_title {
  line-height: 1.6;
}
.privacy_title .text_en, .privacy_title .text_ja {
  display: block;
}
.privacy_title .text_en {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .privacy_title .text_en {
    font-size: 1.875rem;
  }
}
.privacy_title .text_ja {
  font-weight: 600;
}

.privacy_contet {
  font-size: 0.875rem;
  margin-top: 3.75rem;
}
.privacy_contet .weight_md {
  font-weight: 500;
}
.privacy_contet .mt {
  margin-top: 30px;
}

#close_popup {
  position: absolute;
  top: 30px;
  right: 5px;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}

.close_cont {
  display: flex;
  align-items: center;
}
.close_cont .text_close {
  font-size: 0.6875rem;
}
.close_cont .header_buger {
  position: relative;
  width: 1.25rem;
  margin: 0;
}
.close_cont .header_buger_line {
  background: #fff;
  position: absolute;
  left: 0;
}
.close_cont .header_buger_line:first-of-type {
  top: 0;
  transform: rotate(45deg) translateY(0px) scale(1, 1.6);
  transition: transform 0.3s ease-out;
}
.close_cont .header_buger_line:last-of-type {
  top: 0;
  transform: rotate(-45deg) translateY(0px) scale(1, 1.6);
  transition: transform 0.3s ease-out;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: none;
  max-width: 800px;
  margin: 60px auto 0;
}

.recruit_service-page_lead {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_service-page_lead {
    padding-top: 5rem;
  }
}
.recruit_service-page_lead .lead_contwrap {
  display: flex;
  align-items: center;
  gap: 0 6%;
}
@media screen and (max-width: 767px) {
  .recruit_service-page_lead .lead_contwrap {
    flex-direction: column;
  }
}
.recruit_service-page_lead .lead_img {
  flex: 1 1 38%;
  border-radius: 15px;
  width: 38%;
}
@media screen and (max-width: 767px) {
  .recruit_service-page_lead .lead_img {
    order: 2;
    margin-top: 1.875rem;
    width: 100%;
  }
}
.recruit_service-page_lead .lead_text {
  flex: 1 1 56%;
}
.recruit_service-page_lead .lead_ttl {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_service-page_lead .lead_ttl {
    font-size: 1.375rem;
  }
}

.recruit_wrap-with_toc {
  padding: 9.375rem 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .recruit_wrap-with_toc {
    padding: 5rem 0 0;
  }
}
.recruit_wrap-with_toc .nav_wrap {
  position: sticky;
  top: 100px;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .recruit_wrap-with_toc .nav_wrap {
    display: none;
  }
}
.recruit_wrap-with_toc .nav-link {
  color: #c2c2c2;
  font-size: 0.8125rem;
}
.recruit_wrap-with_toc .nav-link .num {
  font-family: "Chillax", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.recruit_wrap-with_toc .nav-link.active {
  color: var(--r_main_color);
}
.recruit_wrap-with_toc .nav-link.active .num {
  color: #1c7fc7;
}
.recruit_wrap-with_toc .culumn_main {
  width: calc(100% - 15.625rem);
}
@media screen and (max-width: 767px) {
  .recruit_wrap-with_toc .culumn_main {
    width: 100%;
  }
}
.recruit_wrap-with_toc .main_cont {
  border-top: 1px solid color-mix(in srgb, #bbb 40%, transparent);
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .recruit_wrap-with_toc .main_cont {
    padding-top: 5rem;
  }
}
.recruit_wrap-with_toc .main_cont:not(:last-of-type) {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_wrap-with_toc .main_cont:not(:last-of-type) {
    padding-bottom: 6.25rem;
  }
}

.recruit_service-busines_list .list_item {
  display: flex;
  gap: 0 6%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .recruit_service-busines_list .list_item {
    flex-direction: column;
    gap: 1.875rem 0;
  }
}
.recruit_service-busines_list .text_cont {
  font-size: 0.875rem;
  line-height: 2.4;
  flex: 1 1 62%;
}
.recruit_service-busines_list .img_cont {
  flex: 1 1 32%;
}
@media screen and (max-width: 767px) {
  .recruit_service-busines_list .img_cont {
    flex: auto;
    height: 230px;
    overflow: hidden;
  }
}
.recruit_service-busines_list .img_cont img {
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .recruit_service-busines_list .img_cont img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
.recruit_service-busines_list .ttl {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .recruit_service-busines_list .ttl {
    font-size: 1.25rem;
  }
}
.recruit_service-busines_list .ttl_sub {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 1.625rem 0;
}

.recruit_service-lifeplan_cont {
  display: flex;
  gap: 0 10%;
}
@media screen and (max-width: 767px) {
  .recruit_service-lifeplan_cont {
    flex-direction: column;
    gap: 1.875rem 0;
  }
}
.recruit_service-lifeplan_cont .ttl {
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 3.75rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .recruit_service-lifeplan_cont .ttl {
    font-size: 1.375rem;
  }
}
.recruit_service-lifeplan_cont .text_cont {
  font-size: 0.875rem;
  line-height: 2.4;
  flex: 1 1 58%;
}
.recruit_service-lifeplan_cont .img_cont {
  flex: 1 1 32%;
}
@media screen and (max-width: 767px) {
  .recruit_service-lifeplan_cont .img_cont {
    flex: auto;
    height: 300px;
    overflow: hidden;
  }
}
.recruit_service-lifeplan_cont .img_cont img {
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .recruit_service-lifeplan_cont .img_cont img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.require_table {
  border-collapse: collapse;
  border-bottom: 1px solid rgba(210, 210, 210, 0.4);
}
.require_table th, .require_table td {
  border-top: 1px solid rgba(210, 210, 210, 0.4);
  font-size: 0.875rem;
  font-weight: 400;
  height: 5rem;
  padding: 0.625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .require_table th, .require_table td {
    padding: 16px;
  }
}
.require_table th {
  background-color: #e8e8e8;
  width: 31%;
  text-align: left;
}
.require_table td {
  width: 78%;
}

.p-info_flow_note {
  font-size: 0.75rem;
  text-align: right;
  margin-top: 2.5rem;
}

.recruit_faq details {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 1.25rem;
  line-height: 1.6;
}
.recruit_faq summary {
  background: transparent;
  cursor: pointer;
  list-style-type: none;
  padding: 1.875rem 2.5rem;
  transition: 0.6s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_faq summary {
    padding: 1.5rem 1.25rem;
  }
}
.recruit_faq summary .plus {
  display: inline-block;
  position: absolute;
  top: 2.1875rem;
  right: 2.5rem;
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .recruit_faq summary .plus {
    top: 1.75rem;
    right: 1.25rem;
  }
}
.recruit_faq summary .plus::before, .recruit_faq summary .plus::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #3b3b3b;
  position: absolute;
  transition: 0.3s;
}
.recruit_faq summary .plus::after {
  rotate: 90deg;
}
.recruit_faq summary::-webkit-details-marker {
  display: none;
}
.recruit_faq .recruit_faq_qtext {
  position: relative;
  padding-left: 2em;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_faq .recruit_faq_qtext {
    padding-right: 1.25rem;
  }
}
.recruit_faq .recruit_faq_qtext::before {
  content: "Q.";
  color: #1c7fc7;
  font-family: "Chillax", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 4px;
  transition: 0.3s;
}
.recruit_faq .faq_ans_inner {
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_faq .faq_ans_inner {
    padding: 1.5rem 1.25rem;
  }
}
.recruit_faq .faq_ans_text {
  position: relative;
  padding-left: 2em;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit_faq .faq_ans_text {
    padding-right: 1.25rem;
  }
}
.recruit_faq .faq_ans_text::before {
  content: "A.";
  color: #1c7fc7;
  font-family: "Chillax", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 4px;
  transition: 0.3s;
}
.recruit_faq details.is-opened summary {
  background: linear-gradient(-90deg, #0c74c4, #00b0bc);
  color: #fff;
  transition: 0.3s;
}
.recruit_faq details.is-opened summary .plus::before, .recruit_faq details.is-opened summary .plus::after {
  background: #fff;
}
.recruit_faq details.is-opened summary .plus::before {
  rotate: 90deg;
}
.recruit_faq details.is-opened .recruit_faq_qtext::before {
  color: #fff;
}

.p-recruit_post_ttl {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-recruit_post_ttl {
    font-size: 1.5rem;
  }
}

.p-recruit_interview .first_data {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.25rem;
}
.p-recruit_interview .interviewee_name {
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-recruit_interview .interviewee_name .name_ja {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit_interview .interviewee_name .name_ja {
    font-size: 1.125rem;
  }
}
.p-recruit_interview .interviewee_name .name_en {
  color: #bbbbbb;
  font-family: "Chillax", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4px;
  margin-left: 20px;
}

.interview_sec_wrap {
  padding-top: 8.125rem;
}
.interview_sec_wrap img {
  border-radius: 3.75rem;
}
@media screen and (max-width: 767px) {
  .interview_sec_wrap img {
    border-radius: 1.875rem;
  }
}

.interview_item_wrap {
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .interview_item_wrap {
    margin-bottom: 3.75rem;
  }
}
.interview_item_wrap .interview_q {
  color: #0092c1;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .interview_item_wrap .interview_q {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.interview_item_wrap .interview_q::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background-color: #3488ca;
  position: relative;
  top: 0.8em;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .interview_item_wrap .interview_q::before {
    width: 1.875rem;
    margin-right: 10px;
  }
}
.interview_item_wrap .interview_a {
  font-size: 0.875rem;
  line-height: 2.4;
}
.interview_item_wrap .img_wrap.full_img {
  margin: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .interview_item_wrap .img_wrap.full_img {
    margin: 5rem 0;
  }
}

.interview_column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .interview_column {
    flex-direction: column;
  }
  .interview_column .img_wrap {
    margin-top: 2.5rem;
  }
}
.interview_column.reverce {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .interview_column.reverce {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .interview_column .text_wrap {
    width: 55%;
  }
  .interview_column .img_wrap {
    width: 37%;
  }
}

.interview_other_list {
  border-top: 1px solid color-mix(in srgb, #bbb 40%, transparent);
  margin-top: 6.25rem;
  padding-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .interview_other_list {
    margin-top: 5rem;
    padding-top: 4.375rem;
  }
}

.innumber_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .innumber_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.innumber_box {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 6.67vw, 5rem) 10px;
}
.innumber_box .item_main {
  color: #1c7fc7;
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  font-weight: 600;
  height: 120px;
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: clamp(1.125rem, 2.5vw, 1.875rem) 0;
}
@media screen and (max-width: 767px) {
  .innumber_box .item_main {
    height: 80px;
  }
}
.innumber_box .empty {
  height: 1em;
}
.innumber_box .num {
  color: #1c7fc7;
  font-family: "Chillax", sans-serif;
  font-size: clamp(3.75rem, 7.5vw, 7.5rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0;
  position: relative;
  bottom: -2px;
}
.innumber_box .num.small {
  font-size: 3.75rem;
}
.innumber_box .note {
  color: #1c7fc7;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 100%;
}
.innumber_box .note.sm {
  font-size: 0.75rem;
  bottom: -1.5em;
}
@media screen and (max-width: 767px) {
  .innumber_box .note.sm {
    bottom: -1em;
  }
}
.innumber_box .note.md {
  font-size: 1.125rem;
  top: -1.5vw;
}
@media screen and (max-width: 767px) {
  .innumber_box .note.md {
    font-size: 0.875rem;
    top: -0.8em;
  }
}

.p-recruit_interview .c_page_fv-ttl_bread .c_heading {
  order: 1;
}

.rectuit_env_workstyle, .rectuit_env_benefit {
  display: grid;
}
.rectuit_env_workstyle .box, .rectuit_env_benefit .box {
  background-color: #fff;
  border-radius: 15px;
}
.rectuit_env_workstyle .icon, .rectuit_env_benefit .icon {
  filter: invert(53%) sepia(61%) saturate(498%) hue-rotate(148deg) brightness(97%) contrast(90%);
}
.rectuit_env_workstyle .ttl, .rectuit_env_benefit .ttl {
  color: #0092c1;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
  line-height: 1.8;
}
.rectuit_env_workstyle .desc, .rectuit_env_benefit .desc {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2;
}

.rectuit_env_workstyle {
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .rectuit_env_workstyle {
    grid-template-columns: 1fr;
  }
}
.rectuit_env_workstyle .box {
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .rectuit_env_workstyle .box {
    padding: 1.875rem 1.25rem;
  }
}
.rectuit_env_workstyle .box_inner {
  display: grid;
  grid-template-columns: 65px 1fr;
  column-gap: 6%;
  align-items: center;
  max-width: 490px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .rectuit_env_workstyle .box_inner {
    grid-template-columns: subgrid;
    grid-template-rows: 78px 1fr;
  }
  .rectuit_env_workstyle .box_inner .ttl {
    text-align: center;
  }
}
.rectuit_env_workstyle .box_inner figure {
  text-align: center;
}

.rectuit_env_benefit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.875rem;
}
.rectuit_env_benefit .box {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: 78px 1fr;
  text-align: center;
  padding: 3.125rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .rectuit_env_benefit .box {
    padding: 1.875rem 1.25rem;
  }
}
.rectuit_env_benefit .desc {
  text-align: left;
}/*# sourceMappingURL=recruit.css.map */