@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}
@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}
@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}
@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}
/* ---------------------------------------------------------
    Variable
--------------------------------------------------------- */
/*BK #2b66b4*/
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}
.oneTxt.is-ready {
  visibility: visible;
}
.oneTxt span {
  opacity: 0;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-weight: 400;
  overflow-x: hidden;
  font-family: "見出ゴMB31", "Yu Gothic", YuGothic, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/top/glass.png) no-repeat center/cover;
  position: absolute;
  z-index: -1;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 8%;
}

/* ---------------------------------------------------------
    Utility
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .u-hide-sp {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .u-hide-pc {
    display: none !important;
  }
}
/* ---------------------------------------------------------
    site_header
--------------------------------------------------------- */
.site_header {
  width: 100%;
  height: 110px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site_header.is_top_absolute.is_scrolled {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.site_header.is_scrolled {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.site_header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.site_header .header_brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #000;
}
.site_header .header_brand .header_logo_img {
  width: 300px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.site_header .header_toggle {
  display: none;
}
.site_header .header_nav .header_sp_brand {
  display: none;
}
.site_header .header_nav .header_nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site_header .header_nav .header_nav_list .header_nav_item .header_nav_link {
  display: inline-block;
  text-decoration: none;
}
.site_header .header_nav .header_nav_list .header_nav_item .header_nav_link:hover {
  opacity: 0.75;
}
.site_header .header_nav .header_nav_list .header_nav_item:first-child .header_nav_link {
  width: 64px;
}
.site_header .header_nav .header_nav_list .header_nav_item:nth-child(2) .header_nav_link {
  width: 75px;
}
.site_header .header_nav .header_nav_list .header_nav_item:nth-child(3) .header_nav_link {
  width: 70px;
}
.site_header .header_nav .header_nav_list .header_nav_item:nth-child(4) .header_nav_link {
  width: 64px;
}
.site_header .header_nav .header_nav_list .header_nav_item:nth-child(5) .header_nav_link {
  width: 75px;
}
.site_header .header_nav .header_nav_list .header_nav_item:nth-child(6) .header_nav_link {
  width: 123px;
}
.site_header .header_nav .header_nav_list .header_nav_item:nth-child(7) .header_nav_link {
  width: 88px;
}
.site_header .header_nav .header_sns {
  display: none;
}

@media (max-width: 1024px) {
  .site_header {
    height: 90px;
  }
  .site_header .inner {
    gap: 15px;
    padding: 0 8% !important;
  }
  .site_header .header_brand .header_logo_img {
    width: 240px;
  }
  .site_header .header_toggle {
    display: grid;
    width: 45px;
    height: 30px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 110;
  }
  .site_header .header_toggle .header_toggle_line {
    width: 45px;
    height: 2px;
    background: #000;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
    position: absolute;
  }
  .site_header .header_toggle .header_toggle_line:nth-child(1) {
    top: 0;
  }
  .site_header .header_toggle .header_toggle_line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
  }
  .site_header .header_toggle .header_toggle_line:nth-child(3) {
    bottom: 0;
  }
  .site_header .header_nav {
    position: fixed;
    inset: 0;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 70px 20px 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .site_header .header_nav .header_sp_brand {
    display: grid;
    place-items: center;
    margin: 0 0 34px;
  }
  .site_header .header_nav .header_sp_brand .header_sp_brand_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .site_header .header_nav .header_sp_brand .header_sp_brand_img {
    width: 320px;
    height: auto;
    display: block;
  }
  .site_header .header_nav .header_nav_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }
  .site_header .header_nav .header_nav_list .header_nav_item .header_nav_link {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:first-child .header_nav_link {
    width: 70px;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:nth-child(2) .header_nav_link {
    width: 82px;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:nth-child(3) .header_nav_link {
    width: 77px;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:nth-child(4) .header_nav_link {
    width: 70px;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:nth-child(5) .header_nav_link {
    width: 82px;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:nth-child(6) .header_nav_link {
    width: 135px;
  }
  .site_header .header_nav .header_nav_list .header_nav_item:nth-child(7) .header_nav_link {
    width: 97px;
  }
  .site_header .header_nav .header_sns {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
  }
  .site_header .header_nav .header_sns .header_sns_item {
    width: 35px;
  }
  .site_header .header_nav .header_sns .header_sns_item:last-child {
    width: 80px;
  }
  .site_header .header_nav .header_sns .header_sns_item .header_sns_link {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .site_header .header_nav .header_sns .header_sns_item .header_sns_icon {
    width: 100%;
    display: block;
  }
  body.is_header_open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
  }
  body.is_header_open .site_header .header_nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  body.is_header_open .site_header .header_toggle {
    position: fixed;
    top: 30px;
    right: 20px;
  }
  body.is_header_open .site_header .header_toggle .header_toggle_line:nth-child(1) {
    transform: translateY(14px) rotate(30deg);
  }
  body.is_header_open .site_header .header_toggle .header_toggle_line:nth-child(2) {
    opacity: 0;
  }
  body.is_header_open .site_header .header_toggle .header_toggle_line:nth-child(3) {
    transform: translateY(-14px) rotate(-30deg);
  }
  .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.site_footer {
  padding: 160px 0 80px;
  position: relative;
}
.site_footer .f_bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.site_footer .inner {
  position: relative;
}
.site_footer .inner .f_wrap {
  position: relative;
}
.site_footer .footer_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: start;
}
.site_footer .footer_left .footer_brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site_footer .footer_left .footer_brand .footer_logo {
  width: 430px;
  flex: 0 0 auto;
  position: relative;
}
.site_footer .footer_left .footer_brand .footer_logo .link {
  position: absolute;
  inset: 0;
}
.site_footer .footer_left .footer_brand .footer_logo .footer_logo_img {
  width: 100%;
  height: auto;
  display: block;
}
.site_footer .footer_left .footer_info {
  margin-top: 45px;
}
.site_footer .footer_left .footer_info .footer_info_line {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06rem;
}
.site_footer .footer_left .footer_share {
  margin-top: 110px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.site_footer .footer_left .footer_share .footer_share_label {
  margin: 0;
  width: 75px;
}
.site_footer .footer_left .footer_share .footer_share_rule {
  width: 0.7px;
  height: 35px;
  background: #000;
  display: inline-block;
  margin: 0 8px;
}
.site_footer .footer_left .footer_share .footer_share_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}
.site_footer .footer_left .footer_share .footer_share_list .footer_share_item {
  width: 27px;
}
.site_footer .footer_left .footer_share .footer_share_list .footer_share_item:last-child {
  width: 63px;
}
.site_footer .footer_left .footer_share .footer_share_list .footer_share_item .footer_share_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.site_footer .footer_left .footer_share .footer_share_list .footer_share_item .footer_share_ico {
  width: 100%;
}
.site_footer .footer_nav {
  justify-self: end;
  padding-top: 18px;
}
.site_footer .footer_nav .footer_nav_list {
  width: fit-content;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 90px;
  row-gap: 30px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item {
  width: fit-content;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link:hover {
  opacity: 0.75;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:first-child .footer_nav_link {
  width: 100px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(2) .footer_nav_link {
  width: 100px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(3) .footer_nav_link {
  width: 100px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(4) .footer_nav_link {
  width: 100px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(5) .footer_nav_link {
  width: 100px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(6) .footer_nav_link {
  width: 160px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(7) .footer_nav_link {
  width: 100px;
}
.site_footer .footer_nav .footer_nav_list .footer_nav_item:nth-child(8) .footer_nav_link {
  width: 140px;
}
.site_footer .footer_bottom {
  position: absolute;
  right: 0;
  bottom: 10px;
}
.site_footer .footer_bottom .footer_copy {
  margin: 0;
  width: 580px;
}

/* ---------------------------------------------------------
    SP
  --------------------------------------------------------- */
@media (max-width: 1024px) {
  .site_footer {
    padding: 90px 0 30px;
  }
  .site_footer .inner {
    position: static;
    text-align: center;
  }
  .site_footer .inner .f_wrap {
    display: contents;
  }
  .site_footer .footer_top {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 0;
    justify-items: center;
  }
  .site_footer .footer_left {
    width: 100%;
    display: grid;
    justify-items: center;
  }
  .site_footer .footer_left .footer_brand {
    justify-content: center;
  }
  .site_footer .footer_left .footer_brand .footer_logo {
    width: 270px;
  }
  .site_footer .footer_left .footer_info {
    margin-top: 22px;
  }
  .site_footer .footer_left .footer_info .footer_info_line {
    font-size: 14px;
    line-height: 1.9;
  }
  .site_footer .footer_left .footer_share {
    margin-top: 34px;
    justify-content: center;
    gap: 14px;
  }
  .site_footer .footer_left .footer_share .footer_share_label {
    width: 63px;
  }
  .site_footer .footer_left .footer_share .footer_share_rule {
    height: 24px;
  }
  .site_footer .footer_left .footer_share .footer_share_list {
    gap: 14px;
  }
  .site_footer .footer_left .footer_share .footer_share_list .footer_share_item {
    width: 22.5px;
  }
  .site_footer .footer_left .footer_share .footer_share_list .footer_share_item:last-child {
    width: 54px;
  }
  .site_footer .footer_nav {
    display: none;
  }
  .site_footer .footer_bottom {
    position: static;
    margin-top: 34px;
    margin: 34px auto 0;
  }
  .site_footer .footer_bottom .footer_copy {
    width: 100%;
  }
}
body {
  position: relative;
}
body::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/recruit/background.png) no-repeat center/cover;
}

.site_header {
  display: none;
  width: 100%;
  height: 90px;
  position: absolute;
  /* 初期状態 */
  left: 0;
  z-index: 99;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  top: 100vh !important;
  top: 100svh !important;
}
.site_header .inner {
  gap: 15px;
}
.site_header.is_scrolled {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.site_header.is_top_absolute {
  position: absolute;
  /* JavaScriptで計算された top が入る */
}
.site_header.is_fixed {
  position: fixed !important;
  top: 0 !important;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  /* 固定される瞬間のアニメーションが必要ならここに追加 */
}

@media (max-width: 1024px) {
  .site_header {
    display: block;
  }
}
.site_footer .f_bg {
  display: none;
}

.inner {
  padding: 0 8%;
}

/* ---------------------------------------------------------
  floating recruit button
--------------------------------------------------------- */
.fix_btn {
  width: 135px;
  position: fixed;
  right: 0;
  top: -1px;
  z-index: 10;
  transition: all 0.3s;
}
.fix_btn:hover {
  opacity: 0.7;
}
.fix_btn .link {
  position: absolute;
  inset: 0;
}
.fix_btn .image.sp {
  display: none;
}

@media (max-width: 1024px) {
  .fix_btn {
    width: 180px;
    top: auto;
    right: auto;
    bottom: 30px;
    left: 8%;
    display: none;
  }
  .fix_btn .image.pc {
    display: none;
  }
  .fix_btn .image.sp {
    display: block;
  }
}
/* ---------------------------------------------------------
    mainvisual
--------------------------------------------------------- */
.sect_mainVisual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.sect_mainVisual .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sect_mainVisual .logo {
  width: 420px;
  position: absolute;
  top: 50px;
  left: 40px;
}
.sect_mainVisual .logo .link {
  position: absolute;
  inset: 0;
}
.sect_mainVisual .scroll {
  display: none;
}
.sect_mainVisual .header_toggle.sp {
  display: none;
}

@media (max-width: 1024px) {
  .sect_mainVisual {
    height: 100svh;
  }
  .sect_mainVisual .image {
    object-position: 75% 50%;
  }
  .sect_mainVisual .logo {
    width: 250px;
    top: 30px;
    left: 8%;
  }
  .sect_mainVisual .scroll {
    display: block;
    position: absolute;
    z-index: 30;
    bottom: 30px;
    right: 8%;
  }
  .sect_mainVisual .scroll::before {
    content: "";
    width: 9.5px;
    height: 65px;
    background: url(../images/top/arrow.png) no-repeat center/cover;
    animation: scroll 1.8s infinite;
    position: absolute;
    left: 40%;
    top: -75px;
  }
  .sect_mainVisual .scroll span .image {
    width: 13.5px;
  }
  .sect_mainVisual .header_toggle {
    display: grid;
    width: 45px;
    height: 30px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 110;
  }
  .sect_mainVisual .header_toggle .header_toggle_line {
    width: 45px;
    height: 2px;
    background: #fff;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
    position: absolute;
  }
  .sect_mainVisual .header_toggle .header_toggle_line:nth-child(1) {
    top: 0;
  }
  .sect_mainVisual .header_toggle .header_toggle_line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
  }
  .sect_mainVisual .header_toggle .header_toggle_line:nth-child(3) {
    bottom: 0;
  }
  .sect_mainVisual .header_toggle.sp {
    display: block;
    position: absolute;
    top: 40px;
    right: 8%;
  }
  body.is_header_open .sect_mainVisual .header_toggle {
    top: 30px;
    right: 20px;
  }
  body.is_header_open .sect_mainVisual .header_toggle .header_toggle_line:nth-child(1) {
    transform: translateY(14px) rotate(30deg);
  }
  body.is_header_open .sect_mainVisual .header_toggle .header_toggle_line:nth-child(2) {
    opacity: 0;
  }
  body.is_header_open .sect_mainVisual .header_toggle .header_toggle_line:nth-child(3) {
    transform: translateY(-14px) rotate(-30deg);
  }
  body.is_header_open .sect_mainVisual .header_toggle.sp {
    opacity: 0 !important;
    pointer-events: none;
  }
}
@keyframes scroll {
  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%;
  }
}
/* ---------------------------------------------------------
  message
--------------------------------------------------------- */
.sect_message {
  padding: 140px 0 0;
}
.sect_message .message {
  margin: 0 auto;
  max-width: 920px;
}
.sect_message .message_block + .message_block {
  margin-top: 120px;
  /* 見出しブロック間 */
}
.sect_message .message_title {
  margin: 0 0 60px;
  width: 650px;
}
.sect_message .message_text {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.06em;
}
.sect_message .message_text .sp-only {
  display: none;
}

@media (max-width: 1024px) {
  .sect_message {
    padding: 130px 0 0;
  }
  .sect_message .message {
    max-width: 100%;
  }
  .sect_message .message_block + .message_block {
    margin-top: 80px;
  }
  .sect_message .message_title {
    margin-bottom: 24px;
    max-width: 340px;
    width: auto;
  }
  .sect_message .message_text {
    font-size: 16px;
    line-height: 2;
  }
  .sect_message .message_text .sp-only {
    display: block;
  }
  .sect_message .message_text .pc-only {
    display: none;
  }
}
/* ---------------------------------------------------------
  interview
--------------------------------------------------------- */
.sect_interview {
  padding: 200px 0 0;
}
.sect_interview .interview {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}
.sect_interview .interview_media {
  position: relative;
  border-radius: 0 90px 0 0;
  border: 8px solid #005BAC;
}
.sect_interview .interview_media .link {
  position: absolute;
  inset: 0;
}
.sect_interview .interview_media .interview_img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 786/506;
  object-fit: cover;
  border-radius: 0 80px 0 0;
}
.sect_interview .interview_media .interview_img.sp {
  display: none;
}
.sect_interview .interview_media .interview_btn {
  width: 400px;
  text-decoration: none;
  position: absolute;
  bottom: -29px;
  right: -8vw;
  z-index: 2;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background-color: #005BAC;
  padding: 14px 18px;
  color: #ffffff;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.sect_interview .interview_media .interview_btn .interview_btn_arrow {
  width: 16px;
  position: relative;
  flex: 0 0 auto;
}
.sect_interview .interview_media .interview_btn:hover {
  opacity: 0.7;
}
.sect_interview .interview_copy {
  position: relative;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  margin: -75px 0 0;
}
.sect_interview .interview_copy .image {
  width: 150px;
}
.sect_interview .interview_copy .image.sp {
  display: none;
}
.sect_interview .interview_title {
  display: none;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.35;
  color: #005BAC;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ---------------------------------------------------------
  SP
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .sect_interview {
    padding: 70px 0 0;
  }
  .sect_interview .interview {
    display: flex;
    flex-direction: column-reverse;
    gap: 35px;
  }
  .sect_interview .interview_media {
    border-radius: 0 39px 0 0;
    border: 5px solid #005BAC;
  }
  .sect_interview .interview_media .interview_img {
    border-radius: 0;
    aspect-ratio: auto;
    object-fit: auto;
    border-radius: 0 35px 0 0;
    box-sizing: border-box;
  }
  .sect_interview .interview_media .interview_btn {
    box-sizing: border-box;
    gap: 0;
    padding: 14px 15px 9px 15px;
    font-size: 3.5vw;
    width: 100%;
    height: auto;
    position: initial;
    top: inherit;
    right: inherit;
  }
  .sect_interview .interview_media .interview_btn .interview_btn_arrow {
    width: auto;
    height: clamp(14px, 1.3vw, 20px);
  }
  .sect_interview .interview_media .interview_btn .interview_btn_arrow img {
    height: 100%;
    width: auto;
  }
  .sect_interview .interview_copy {
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    padding: 0;
  }
  .sect_interview .interview_copy .image {
    width: 290px;
  }
  .sect_interview .interview_copy .image.pc {
    display: none;
  }
  .sect_interview .interview_copy .image.sp {
    display: block;
  }
  .sect_interview .interview_title {
    display: block;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 28px;
  }
}
/* ---------------------------------------------------------
  flow slider
--------------------------------------------------------- */
.sect_flow {
  padding: 140px 0 100px;
  overflow: hidden;
  /* 端がはみ出しても綺麗に */
}

.flow {
  width: 100%;
}

.flow_slider:not(.slick-initialized) {
  visibility: hidden;
  opacity: 0;
  height: 0;
  /* 高さを潰す */
  overflow: hidden;
}
.flow_slider {
  /* slick が横スクロールで動くので高さを安定させる */
}
.flow_slider .slick_list {
  overflow: hidden;
}
.flow_slider .slick_track {
  display: flex;
  align-items: center;
}
.flow_slider {
  /* 余白（gap相当） */
}
.flow_slider .flow_slide {
  margin: 0 28px;
}
.flow_slider .slick_list {
  margin: 0 -28px;
}

.flow_slide {
  width: 600px;
  /* ← 画像サイズ 500px */
  height: 400px;
  /* ← 画像サイズ 500px */
  overflow: hidden;
  border-radius: 70px;
}

.flow_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* SP */
@media (max-width: 1024px) {
  .sect_flow {
    padding: 80px 0 80px;
  }
  .flow_slide {
    width: 300px;
    height: 200px;
    border-radius: 30px;
  }
  .flow_slider .flow_slide {
    margin: 0 10px;
  }
  .flow_slider .slick_list {
    margin: 0 -18px;
  }
}
/* ---------------------------------------------------------
  staff interview
--------------------------------------------------------- */
.sect_staff_interview .staff_interview {
  max-width: 920px;
  margin: 0 auto;
}
.sect_staff_interview {
  /* ------------------------------
    head
  ------------------------------ */
}
.sect_staff_interview .staff_head {
  display: grid;
  gap: 15px;
  margin: 0 0 70px;
}
.sect_staff_interview .staff_head .staff_cap {
  margin: 0;
  width: 255px;
}
.sect_staff_interview .staff_head .staff_rule {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #005BAC;
}
.sect_staff_interview {
  /* ------------------------------
    cards
  ------------------------------ */
}
.sect_staff_interview .staff_cards {
  display: grid;
  gap: 65px;
}
.sect_staff_interview .staff_interview_card .staff_interview_link {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
}
.sect_staff_interview .staff_interview_card .staff_interview_link:hover {
  opacity: 0.9;
}
.sect_staff_interview .staff_interview_card .staff_interview_media {
  min-width: 0;
}
.sect_staff_interview .staff_interview_card .staff_interview_photo {
  overflow: hidden;
  border-radius: 0 90px 0 0;
  border: 8px solid #005BAC;
}
.sect_staff_interview .staff_interview_card .staff_interview_photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 500/320;
  object-fit: cover;
}
.sect_staff_interview .staff_interview_card .staff_interview_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #005BAC;
  color: #fff;
  padding: 14px 18px;
  margin-top: -8px;
  box-sizing: border-box;
  /* 枠との隙間を消す */
}
.sect_staff_interview .staff_interview_card .staff_interview_bar .staff_interview_name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.sect_staff_interview .staff_interview_card .staff_interview_bar .staff_interview_arrow {
  width: 16px;
  position: relative;
  flex: 0 0 auto;
}
.sect_staff_interview .staff_interview_card .staff_interview_bar .staff_interview_arrow img {
  width: auto;
  height: clamp(14px, 1.3vw, 20px);
}
.sect_staff_interview .staff_interview_card .staff_interview_copy {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}
.sect_staff_interview .staff_interview_card .staff_interview_copy .staff_interview_copy_text {
  margin: 0;
  color: #005BAC;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.sect_staff_interview .staff_interview_card .staff_interview_copy .staff_interview_copy_rule {
  width: 90px;
  height: 3px;
  background: #005BAC;
  opacity: 0.9;
}
.sect_staff_interview {
  /* ------------------------------
    keywords bubble
  ------------------------------ */
}
.sect_staff_interview .staff_keywords {
  margin-top: 90px;
}
.sect_staff_interview .staff_keywords .staff_keywords_title {
  margin: 0 0 15px 45px;
  width: 390px;
}
.sect_staff_interview .staff_bubble {
  position: relative;
  border: 5px solid #005BAC;
  border-radius: 18px;
  padding: 30px 40px;
}
.sect_staff_interview .staff_bubble .staff_bubble_tip {
  position: absolute;
  top: -50px;
  left: 80%;
  background: url(../images/recruit/arrow.png) no-repeat center/cover;
  width: 35px;
  height: 50px;
}
.sect_staff_interview .staff_bubble .staff_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 14px;
}
.sect_staff_interview .staff_bubble .staff_tag {
  display: inline-block;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #005BAC;
  text-decoration: none;
  padding: 2px 0;
  pointer-events: none;
}
.sect_staff_interview .staff_bubble_sp {
  display: none;
}
.sect_staff_interview {
  /* ------------------------------
    CTA
  ------------------------------ */
}
.sect_staff_interview .staff_cta {
  margin-top: 120px;
  display: flex;
  justify-content: center;
}
.sect_staff_interview .staff_cta .staff_cta_btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.sect_staff_interview .staff_cta .staff_cta_btn:hover {
  opacity: 0.85;
}
.sect_staff_interview .staff_cta .staff_cta_btn .image {
  width: 390px;
}
.sect_staff_interview {
  /* ---------------------------------------------------------
    SP
  --------------------------------------------------------- */
}
@media (max-width: 1024px) {
  .sect_staff_interview .staff_interview_card:last-child .staff_interview_link .staff_interview_copy .staff_interview_copy_rule {
    display: block;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_link {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_photo {
    border-radius: 0 35px 0 0;
    border: 5px solid #005BAC;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_bar {
    gap: 0;
    margin-top: -5px;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_bar .staff_interview_name {
    font-size: 3.5vw;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_bar .staff_interview_arrow {
    text-align: right;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_copy {
    min-height: auto;
    align-items: flex-start;
    padding-top: 0;
    gap: 60px;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_copy .staff_interview_copy_text {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_copy .staff_interview_copy_text .sp_only {
    display: none;
  }
  .sect_staff_interview .staff_interview_card .staff_interview_copy .staff_interview_copy_rule {
    height: 2px;
    display: none;
  }
  .sect_staff_interview .staff_keywords {
    margin-top: 70px;
  }
  .sect_staff_interview .staff_keywords .staff_keywords_title {
    width: 220px;
    margin: 0 0 15px 25px;
  }
  .sect_staff_interview .staff_bubble {
    padding: 25px 20px;
    display: none;
  }
  .sect_staff_interview .staff_bubble .staff_bubble_tip {
    left: 60%;
  }
  .sect_staff_interview .staff_bubble .staff_bubble_tip {
    position: absolute;
    top: -45px;
    left: 85%;
    width: 30px;
    height: 45px;
  }
  .sect_staff_interview .staff_bubble .staff_tags {
    gap: 8px 14px;
  }
  .sect_staff_interview .staff_bubble .staff_tag {
    font-size: 16px;
  }
  .sect_staff_interview .staff_bubble_sp {
    display: block;
    margin-top: -45px;
  }
  .sect_staff_interview .staff_cta {
    margin-top: 90px;
  }
  .sect_staff_interview .staff_cta .staff_cta_btn .image {
    width: 320px;
  }
}

@media (max-width: 391px) {
  .staff_interview_card .staff_interview_copy .staff_interview_copy_text {
    font-size: 18px !important;
  }
}
/* ---------------------------------------------------------
  requirements
--------------------------------------------------------- */
.sect_requirements {
  padding: 130px 0 0;
}
.sect_requirements .inner {
  max-width: 920px;
}
.sect_requirements .requirements .requirements_title {
  margin: 0 0 50px 20px;
  width: 125px;
}
.sect_requirements .requirements .requirements_rule {
  display: none;
}
.sect_requirements .requirements .requirements_table {
  margin: 0;
}
.sect_requirements .requirements .requirements_table .requirements_row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  column-gap: 50px;
  padding: 26px 0;
  border-top: 1px solid #005BAC;
}
.sect_requirements .requirements .requirements_table .requirements_row:last-child {
  border-bottom: 1px solid #005BAC;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dt {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #005BAC;
  letter-spacing: 0.04em;
  padding-left: 20px;
  box-sizing: border-box;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dd {
  margin: 0;
  color: #005BAC;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_text {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_note {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_group {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 24px;
  align-items: start;
  padding: 8px 0;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_group .requirements_label {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 8px;
}
.sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_group .requirements_value {
  min-width: 0;
}
.sect_requirements .requirements .requirements_cta {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}
.sect_requirements .requirements .requirements_cta .requirements_btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 305px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.sect_requirements .requirements .requirements_cta .requirements_btn:hover {
  opacity: 0.9;
}
@media (max-width: 1024px) {
  .sect_requirements {
    padding-top: 80px;
  }
  .sect_requirements .requirements .requirements_title {
    margin: 0 0 20px 0;
    width: 110px;
  }
  .sect_requirements .requirements .requirements_table .requirements_row {
    grid-template-columns: 1fr;
    row-gap: 12px;
    column-gap: 0;
    padding: 20px 0;
  }
  .sect_requirements .requirements .requirements_table .requirements_row .requirements_dt {
    padding-left: 0;
    font-size: 16px;
  }
  .sect_requirements .requirements .requirements_table .requirements_row .requirements_dd {
    font-size: 16px;
  }
  .sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_text {
    line-height: 1.75;
    padding: 0;
    font-size: 16px;
  }
  .sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_group {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .sect_requirements .requirements .requirements_table .requirements_row .requirements_dd .requirements_group .requirements_label {
    padding: 0;
    font-size: 16px;
  }
  .sect_requirements .requirements .requirements_cta {
    margin-top: 50px;
  }
  .sect_requirements .requirements .requirements_cta .requirements_btn {
    width: 250px;
  }
}/*# sourceMappingURL=recruit.css.map */