@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
 共通設定
===========================================*/
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

::-moz-selection {
  background: #bfbfbf;
  color: #fff;
}

::selection {
  background: #bfbfbf;
  color: #fff;
}

/* for Firefox */
::-moz-selection {
  background: #bfbfbf;
  color: #ffffff;
}

/*=== フォント ===*/
html {
  font-size: 62.5%;
}

body {
  color: #000;
  -webkit-text-size-adjust: 100%;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.6rem;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  position: relative;
  transition: 0.3s ease-in-out;
}

/*=== リンク ===*/
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
  }
}
/*=== 画像 ===*/
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*==========================================
 汎用css
===========================================*/
/*=== hover Action ===*/
/*memo 【_d】aタグに直*/
/*=== opacity ===*/
@media screen and (min-width: 768px) {
  .hover-oc_d:hover,
  .hover-oc a:hover {
    opacity: 0.7;
  }
}
/*=== under line ===*/
.hover-ul_d,
.hover-ul a,
.hover-ulL_d,
.hover-ulL a,
.hover-ulF_d,
.hover-ulF a {
  position: relative;
  display: inline-block;
}

/*=== under line【CENTER】 ===*/
.hover-ul_d::after,
.hover-ul a::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
  transform: translateX(-50%);
}

/*=== under line【LEFT】 ===*/
.hover-ulL_d::after,
.hover-ulL a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s;
}

/*=== under line【FADE】 ===*/
.hover-ulF_d::after,
.hover-ulF a::after {
  position: absolute;
  bottom: 0.3em;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .hover-ul_d:hover::after,
  .hover-ul a:hover::after,
  .hover-ulL_d:hover::after,
  .hover-ulL a:hover::after {
    width: 100%;
  }
  .hover-ulF_d:hover::after,
  .hover-ulF a:hover::after {
    bottom: 0;
    opacity: 1;
  }
}
/*=== PC none / SP none ===*/
@media screen and (min-width: 577px) {
  .pc-none_s {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .pc-none_lg {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .sp-none_lg {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .sp-none_s {
    display: none;
  }
}
@media (max-width: 480px) {
  .sp-none480 {
    display: none;
  }
}
@media (max-width: 400px) {
  .sp-none400 {
    display: none;
  }
}
/*=== アニメーション ===*/
.inview_fi {
  opacity: 0;
  transition: 1.5s;
}
.inview_fi.show {
  opacity: 1;
}

.inview_fiU {
  transform: translate(0, 20%);
  opacity: 0;
  transition: 1s;
}
.inview_fiU.show {
  transform: translate(0, 0);
  opacity: 1;
}

.inview_fade {
  animation-name: fade;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade {
  from {
    transform: translate(0, -10%);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.inview_fade-bk {
  animation-name: fade-bk;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-bk {
  from {
    transform: translate(0, -10%);
    opacity: 0;
  }
  30% {
    opacity: 0.1;
  }
  to {
    opacity: 0.5;
  }
}
/* ズーム */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.zoomUp {
  animation: zoomUp 10s linear 0s normal both;
}

/*=== パララックス ===*/
.parallax {
  min-height: 400px;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/*=== テキスト ===*/
.taC {
  text-align: center;
}

.fwB {
  font-weight: bold;
}

/*==========================================
 共通パーツ
===========================================*/
.main {
  padding-top: 120px;
}

.bg-gray {
  background: #ededed;
}

/*=== コンテンツ ===*/
.content_inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .content_inner {
    padding: 0 20px;
  }
}

.wrapW {
  width: 95vw;
  max-width: 1700px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .wrapW {
    width: 92vw;
  }
}

/* btn-detail */
.btn-detail {
  width: 200px;
  height: 46px;
  padding: 0 50px 0 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.btn-detail_arrow {
  width: 46px;
  height: 46px;
  background: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  right: -1px;
}
.btn-detail_arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border-top: 0.1em solid #fff;
  border-right: 0.1em solid #fff;
  transform: translateX(-25%) rotate(45deg);
}
.btn-detail:hover {
  color: #fff;
  background: #000;
}
.btn-detail:hover .btn-detail_arrow {
  background: #fff;
  border: 1px solid #000;
}
.btn-detail:hover .btn-detail_arrow::after {
  border-top: 0.1em solid #000;
  border-right: 0.1em solid #000;
}
.btn-detail.blue {
  color: #004a95;
}
.btn-detail.blue .btn-detail_arrow {
  background: linear-gradient(135deg, #4398bf, #003387);
  border: 1px solid #004a95;
}
.btn-detail.blue:hover {
  color: #fff;
  background: linear-gradient(-135deg, #4398bf, #003387);
}
.btn-detail.blue:hover .btn-detail_arrow {
  background: #fff;
  border: 1px solid #004a95;
}
.btn-detail.blue:hover .btn-detail_arrow::after {
  border-top: 0.1em solid #004a95;
  border-right: 0.1em solid #004a95;
}

/* btn-more */
.btn-more {
  width: 144px;
  height: 46px;
  padding: 0 30px 0 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 25;
}
.btn-more::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -12;
}
.btn-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50px;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
}
.btn-more_arrow {
  width: 14px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  right: 15px;
}
.btn-more_arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 14px;
  height: 14px;
  border-top: 0.15em solid #000;
  border-right: 0.15em solid #000;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease-in-out;
}

a.btn-more:hover {
  color: #004a95;
  border: 1px solid #004a95;
}
a.btn-more:hover::after {
  transform: translateX(0);
}
a.btn-more:hover .btn-more_arrow::after {
  border-top: 0.15em solid #004a95;
  border-right: 0.15em solid #004a95;
}

/* btn-lead */
.btn-lead {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.btn-lead::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -10;
}
.btn-lead_arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 14px;
  height: 14px;
  border-top: 0.15em solid #000;
  border-right: 0.15em solid #000;
  -o-border-image: linear-gradient(135deg, #7fffbf, #85c7ff);
     border-image: linear-gradient(135deg, #7fffbf, #85c7ff);
  border-image-slice: 1;
  transform: translateX(-25%) rotate(45deg);
}

a.btn-lead:hover {
  background: transparent;
}
a.btn-lead:hover .btn-lead_arrow::after {
  border-top: 0.15em solid #fff;
  border-right: 0.15em solid #fff;
  -o-border-image: linear-gradient(135deg, #fff, #fff);
     border-image: linear-gradient(135deg, #fff, #fff);
  border-image-slice: 1;
}

/* btn-entry */
.btn-entry {
  width: 100%;
  height: 100%;
  padding: 0 30px 0 10px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.btn-entry::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(135deg, #2dabf3, #002e79);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.btn-entry::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn-entry_ja {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 5px 0;
}
.btn-entry_en {
  font-family: "Bebas Neue", cursive;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
.btn-entry_arrow {
  width: 14px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  right: 23px;
}
.btn-entry_arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 14px;
  height: 14px;
  border-top: 0.15em solid #fff;
  border-right: 0.15em solid #fff;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease-in-out;
}
.btn-entry:hover {
  color: #004a95;
  border: 1px solid #004a95;
}
.btn-entry:hover::after {
  transform: translateX(0);
}
.btn-entry:hover .btn-entry_arrow::after {
  border-top: 0.15em solid #004a95;
  border-right: 0.15em solid #004a95;
}

/* btn-back */
.btn-back {
  width: -moz-fit-content;
  width: fit-content;
  margin: 120px auto;
}
.btn-back .btn-more {
  min-width: 263px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  border: 1px solid #000;
}
.btn-back .btn-more::before {
  background: #fff;
}
.btn-back .btn-more::after {
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
}
.btn-back .btn-more:hover {
  border: none;
}
.btn-back .btn-more:hover::after {
  transform: translateX(0);
}
.btn-back .btn-more:hover .btn-more_arrow::after {
  border-top: 0.15em solid #004a95;
  border-right: 0.15em solid #004a95;
}

/* NEW表示 */
.new-mark {
  width: 46px;
  height: 46px;
  font-family: "Bebas Neue", cursive;
  font-size: 1.7rem;
  line-height: 46px;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #4398bf, #003387);
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -23px;
  left: 0;
  z-index: 3;
}

/* head-move */
.head-move {
  font-size: clamp(4rem, 6.25vw, 12rem);
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.15em;
}

/* SVG */
.svgall {
  display: block;
  height: 100%;
}
.svgall .mask {
  height: 100%;
}

/* letter */
#move01 .st0 {
  fill: #ffffff;
}
#move01 .st1 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#move02 .st0 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#move03 .st0 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 27;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

#move04 .st0 {
  fill: #231815;
}
#move04 .st1 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 26;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

/* particles */
.particles {
  position: relative;
  width: 100%;
  height: 100%;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
}

/* 中ページ用 */
.particles-sub {
  width: 100%;
  max-width: 500px;
  height: 100vw;
  max-height: 500px;
  position: absolute;
  top: calc((100% - 500px) / 2);
  left: calc((100% - 500px) / 2);
  z-index: -95;
}
@media screen and (max-width: 576px) {
  .particles-sub {
    top: calc((100% - 100vw) / 2);
    left: 0;
  }
}
.particles-sub_bk {
  width: 150%;
  height: 135%;
  position: absolute;
  top: -10%;
  left: -25%;
  z-index: -100;
}
@media screen and (max-width: 768px) {
  .particles-sub_bk {
    width: 100vw;
    left: calc((100% - 100vw) / 2);
  }
}
.particles-sub_bk-center {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 20%;
  left: 10%;
  z-index: -99;
}

/* 募集要項 */
.recruit_bnr {
  width: 100%;
  padding: 35px 0;
  margin: 120px auto;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .recruit_bnr {
    padding: 35px 20px;
    flex-direction: column;
  }
}
.recruit_bnr::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -12;
}
.recruit_bnr::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(246, 255, 0, 0.8), rgba(255, 0, 161, 0.8));
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
}
.recruit_bnr_box {
  width: 50%;
  max-width: 575px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit_bnr_box {
    width: 100%;
  }
}
.recruit_bnr_box:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .recruit_bnr_box:first-child::after {
    display: none;
  }
}
.recruit_bnr_box-left {
  justify-content: center;
}
.recruit_bnr_box-right {
  flex-wrap: wrap;
  justify-content: space-around;
}
.recruit_bnr_box .btn-more {
  pointer-events: none;
}
.recruit_bnr_box .btn-more::before {
  background: #fff;
}
.recruit_bnr_box .btn-more::after {
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
}
@media screen and (max-width: 768px) {
  .recruit_bnr_box .btn-more {
    margin-top: clamp(20px, 5vw, 30px);
  }
}
.recruit_bnr_icon {
  width: clamp(25px, 5vw, 50px);
  margin-right: 30px;
}
.recruit_bnr_head {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.recruit_bnr_text {
  width: 50%;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .recruit_bnr_text {
    width: 300px;
    margin-top: clamp(20px, 5vw, 30px);
  }
}
.recruit_bnr:hover::after {
  transform: translateX(0);
}
.recruit_bnr:hover .recruit_bnr_box .btn-more::after {
  transform: translateX(0);
}

/* 募集要項カード */
.rec-card {
  width: 100%;
  letter-spacing: 0.2em;
  border: 2px solid #000;
  display: flex;
  flex-wrap: wrap;
}
.rec-card_item-01 {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 20px 10px;
  display: flex;
  align-items: center;
}
.rec-card_item-02 {
  box-sizing: border-box;
  padding: 0px 20px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.rec-card_item-02 .rec-card_middle {
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
}
.rec-card_item-03 {
  width: 100%;
  padding: 18px 20px 18px 0;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
}
.rec-card_item-04 {
  width: 50%;
  padding: 18px 20px 18px 0;
  border-top: 1px solid #000;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .rec-card_item-04 {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .rec-card_item-04 {
    width: 100%;
  }
}
.rec-card_item-04 + .rec-card_item-04 {
  border-left: 1px solid #000;
}
@media screen and (max-width: 576px) {
  .rec-card_item-04 + .rec-card_item-04 {
    border-left: none;
  }
}
.rec-card_item-05 {
  width: 50%;
  padding: 18px 20px 18px 0;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .rec-card_item-05 {
    width: 100%;
  }
}
.rec-card_item-05 + .rec-card_item-05 {
  border-left: 1px solid #000;
}
@media screen and (max-width: 576px) {
  .rec-card_item-05 + .rec-card_item-05 {
    border-left: none;
  }
}
.rec-card_item-06 {
  width: 100%;
  padding: 18px 20px 18px 0;
  border-top: 1px solid #000;
  display: flex;
}
@media screen and (max-width: 576px) {
  .rec-card_item-06 {
    flex-wrap: wrap;
  }
  .rec-card_item-06_inner {
    width: 100%;
    margin-top: 10px;
  }
  .rec-card_item-06_inner p {
    padding-left: 20px;
  }
}
.rec-card_item-06_inner p + p {
  margin-top: 10px;
}
.rec-card_item-07 {
  width: 33.3333333333%;
  padding: 18px 20px 18px 0;
  border-top: 1px solid #000;
  display: flex;
}
@media screen and (max-width: 768px) {
  .rec-card_item-07 {
    width: 100%;
  }
}
.rec-card_item-07 + .rec-card_item-07 {
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .rec-card_item-07 + .rec-card_item-07 {
    border-left: none;
  }
}
.rec-card_item-01:first-child, .rec-card_item-02:first-child, .rec-card_item-03:first-child, .rec-card_item-04:first-child, .rec-card_item-05:first-child, .rec-card_item-06:first-child, .rec-card_item-07:first-child {
  border-top: none;
}
.rec-card_tag {
  width: 100px;
  flex: 0 0 100px;
  height: 34px;
  margin-right: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rec-card_job {
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
}
.rec-card_middle {
  font-size: 1.5rem;
  font-weight: bold;
}
.rec-card_text {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1200px) {
  .rec-card_text {
    width: 100%;
    padding-left: 20px;
    margin-top: 10px;
  }
}
.rec-card .btn-more {
  width: 110px;
  height: 30px;
  font-size: 1.2rem;
}
.rec-card .btn-more_arrow::after {
  width: 8px;
  height: 8px;
  border-width: 2px;
}

.store_inner {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .store_inner {
    width: 100%;
    margin: 10px 0 0 20px;
  }
}

/* 募集要項カード */
.rec-slide {
  width: 100vw;
  padding: 80px 0 120px;
  margin-bottom: 120px;
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
}
.rec-slide_inner {
  width: 87.5%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .rec-slide_inner {
    width: 95%;
  }
}
@media screen and (max-width: 576px) {
  .rec-slide_inner {
    width: 92%;
  }
}
.rec-slide_head {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 6rem);
}
.rec-slide_head .fa-square-check {
  margin-right: 20px;
}
@media screen and (max-width: 576px) {
  .rec-slide_head .fa-square-check {
    margin-right: 10px;
  }
}
.rec-slide_list .slick-track {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1201px) {
  .rec-slide_list .slick-prev {
    left: -60px;
  }
  .rec-slide_list .slick-next {
    right: -60px;
  }
}
.rec-slide_item {
  width: 41.5625vw !important;
}
@media screen and (max-width: 1200px) {
  .rec-slide_item {
    width: 44.65vw !important;
  }
}
@media screen and (max-width: 768px) {
  .rec-slide_item {
    width: 95vw !important;
    margin: 0 2.5vw;
  }
}
@media screen and (max-width: 576px) {
  .rec-slide_item {
    width: 92vw !important;
    margin: 0 4vw;
  }
}

/*==========================================
 HEADER
===========================================*/
.header {
  width: 100vw;
  height: 120px;
  padding-left: 3.125vw;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: clamp(80px, 15vw, 120px);
  }
}
.header_logo {
  width: 25vw;
  max-width: 350px;
  padding-top: 20px;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    width: clamp(200px, 43.75vw, 350px);
  }
}
.header_inner {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.header_btn {
  width: 120px;
  height: 120px;
  color: #004a95;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2dabf3, #002e79);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .header_btn {
    width: clamp(100px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
  }
}
.header_btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(135deg, #2dabf3, #002e79);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.header_btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7fffbf, #85c7ff);
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header_btn_ja {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}
.header_btn_ja::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: calc((100% - 40px) / 2);
}
.header_btn_en {
  font-size: 1.4rem;
}
.header_btn:hover {
  color: #004a95;
  border: 1px solid #004a95;
}
.header_btn:hover::after {
  transform: translateX(0);
}
.header_btn:hover .header_btn_ja::after {
  background: #004a95;
}
.header.fixed {
  background: #fff;
  position: fixed;
}
@media screen and (max-width: 576px) {
  .header.fixed .header_btn {
    display: none;
  }
}

/*===== gnavheader ========*/
@media screen and (max-width: 1200px) {
  .header_gnav {
    display: none;
  }
}
.header_gnav_list {
  display: flex;
  justify-content: space-between;
}
.header_gnav_item {
  color: #004a95;
  display: flex;
}
.header_gnav_item::after {
  content: "／";
  display: block;
  padding: 0 1.3vw;
}
.header_gnav_item:last-child {
  margin-right: 2.6vw;
}
.header_gnav_item:last-child::after {
  display: none;
}
.header_gnav_item_text {
  color: #004a95;
  font-weight: bold;
  font-size: 1.4rem;
}

/*===== gnav ========*/
.gnav {
  display: none;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(135deg, #4398bf, #003387);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 110;
  transition: 0.3s ease-in-out;
  -ms-overflow-style: none;
  overflow-x: hidden;
}
.gnav_inner {
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav_list {
  display: block;
}
.gnav_item {
  color: #fff;
  display: flex;
  font-size: 3.8vw;
  margin-bottom: 10px;
  /*    &::after {
        content: "＞";
        display: block;
        padding: 0 3vw;
        font-weight: bold;
      }*/
}
.gnav_item_text {
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0 2em 0 0px;
}
.gnav_item.btn {
  margin-top: 40px;
}
.gnav_item .btn-entry {
  color: #fff;
  padding: 0.5em 0;
  border: 1px solid #fff;
}
.gnav_item .btn-entry:hover {
  color: #004a95;
  border: 1px solid #004a95;
}
.gnav_item .btn-entry:hover::after {
  transform: translateX(0);
}
.gnav_item .btn-entry:hover .btn-entry_arrow::after {
  border-top: 0.15em solid #004a95;
  border-right: 0.15em solid #004a95;
}

/*=== ハンバーガーメニュー ========================*/
.hamburger_trigger {
  position: relative;
  width: 30px;
  height: 26px;
  margin-right: clamp(10px, 5vw, 40px);
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width: 1201px) {
  .hamburger_trigger {
    display: none;
  }
}
.hamburger_trigger_item {
  width: 100%;
  height: 2px;
  display: inline-block;
  background: #004a95;
  transition: all 0.8s;
  position: absolute;
  left: 0;
}
.hamburger_trigger_item:nth-of-type(1) {
  top: 0;
}
.hamburger_trigger_item:nth-of-type(2) {
  top: 12px;
}
.hamburger_trigger_item:nth-of-type(3) {
  top: 24px;
}
.hamburger_trigger.active .hamburger_trigger_item:nth-of-type(1) {
  top: 12px;
  transform: rotate(225deg);
}
.hamburger_trigger.active .hamburger_trigger_item:nth-of-type(2) {
  width: 0;
  left: 50%;
}
.hamburger_trigger.active .hamburger_trigger_item:nth-of-type(3) {
  top: 12px;
  transform: rotate(-225deg);
}

/*==========================================
 パンくず
===========================================*/
.breadcrumb {
  padding: 1em 20px;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (min-width: 1201px) {
  .breadcrumb {
    padding: 1em 120px;
  }
}

/*==========================================
 FOOTER
===========================================*/
.footer {
  color: #fff;
  background: #404040;
  /* footer_nav */
  /* entrybtn */
  /* Copyright */
}
.footer a {
  color: #fff;
}
.footer_inner {
  padding: 50px clamp(20px, 3.5vw, 60px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer_inner {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.footer_headArea {
  width: 382px;
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer_headArea {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer_headArea {
    width: 100%;
    max-width: 420px;
    justify-content: space-around;
  }
}
.footer_head {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .footer_head {
    width: 100%;
    text-align: center;
  }
}
.footer_logo {
  width: 195px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    margin: 15px 5px 0;
  }
}
.footer_link {
  max-width: 132px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .footer_link {
    margin: 15px 5px 0;
  }
}
.footer_link_btn {
  padding: 10px 15px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.15em;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 25;
}
.footer_link_btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -11;
}
.footer_link_btn:hover {
  color: #404040;
}
.footer_link_btn:hover::after {
  transform: translateX(0);
}
.footer_nav {
  padding: 0 clamp(20px, 3.5vw, 60px);
}
@media screen and (max-width: 1200px) {
  .footer_nav {
    width: 100%;
    flex: 0 0 auto;
    order: 3;
  }
}
.footer_nav_list {
  display: flex;
  flex-wrap: wrap;
}
.footer_nav_item {
  padding: 0 clamp(15px, 5vw, 30px);
  margin-bottom: 20px;
  line-height: 1;
  border-left: 1px solid #fff;
}
.footer_nav_item_link {
  display: block;
  position: relative;
}
.footer_nav_item_link:hover {
  opacity: 0.7;
}
.footer_nav_item_link:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.footer_entry {
  width: 300px;
  flex: 0 0 auto;
  height: 85px;
}
@media screen and (max-width: 1200px) {
  .footer_entry {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer_entry {
    width: 100%;
    max-width: 300px;
  }
}
.footer_copy {
  padding: 5px 0;
  font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  text-align: center;
}

/*==========================================
 絞り込みタグ
===========================================*/
.tag-area {
  padding: 0 25px;
  margin-bottom: 90px;
}
@media screen and (max-width: 576px) {
  .tag-area {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}

.search-tag {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.search-tag:nth-child(n+2) {
  margin-top: 40px;
}
.search-tag_ttl {
  width: 170px;
  margin-left: 7px;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.search-tag_list {
  display: flex;
  flex-wrap: wrap;
}
.search-tag_item {
  width: 126px;
  height: 32px;
  margin: 0 7px 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-tag_item.current {
  color: #fff;
  background: #000;
}

/*==========================================
 pagenavi
===========================================*/
.wp-pagenavi {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.wp-pagenavi a,
.wp-pagenavi span {
  margin: 2px 0.5em !important;
  font-size: 1.6rem;
  border: none;
}
.wp-pagenavi .extend {
  letter-spacing: -0.5em;
  border: none;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .first,
.wp-pagenavi .last {
  width: 34px;
  height: 34px;
  padding: 0;
  line-height: 34px;
  font-weight: bold;
  border-radius: 50%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .page:hover,
  .wp-pagenavi .current:hover,
  .wp-pagenavi .first:hover,
  .wp-pagenavi .last:hover {
    background: #00294a;
    color: #fff;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .first,
.wp-pagenavi .last {
  color: #000;
  border: 1px solid #000;
}
.wp-pagenavi .current {
  color: #fff;
  background: linear-gradient(135deg, #4398bf, #003387);
  border: none;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border: none;
  width: 18px;
  height: 18px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
}
.wp-pagenavi .previouspostslink {
  transform: rotate(-135deg);
  left: 0;
}
.wp-pagenavi .nextpostslink {
  transform: rotate(45deg);
  right: 0;
}

/*==========================================
 先輩の声
===========================================*/
.interview {
  /* Head */
  /* List */
}
.interview_headWrap {
  padding: 0 clamp(20px, 6.667vw, 80px);
  margin-bottom: clamp(40px, 10vw, 80px);
}
.interview_headWrap_text {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: bold;
}
.interview_head {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.interview_head_en {
  width: calc(100% - clamp(2.4rem, 6.25vw, 12rem) * 5 * 1.15 - clamp(10px, 3vw, 40px));
  font-size: clamp(2rem, 5.8vw, 11rem);
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
.interview_head_en_rod {
  width: 0;
  position: relative;
}
.interview_head_en_rod::before {
  content: "";
  display: block;
  width: calc(100% - clamp(5px, 1.5vw, 20px));
  height: 2px;
  background: #000;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
}
.interview_head_en_rod::after {
  content: "";
  display: block;
  width: clamp(14px, 2.8vw, 28px);
  height: clamp(14px, 2.8vw, 28px);
  border: 2px solid #000;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - clamp(14px, 2.8vw, 28px) / 2);
  right: calc(clamp(-28px, -2.8vw, -14px) / 2);
}
.interview_head_en_rod.rod-anime {
  animation: rod-anime 1s ease-in-out forwards;
}
@keyframes rod-anime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.interview_head_ja {
  font-size: clamp(2.4rem, 6.25vw, 12rem);
  width: 5.75em;
}
.interview_list {
  display: flex;
  flex-wrap: wrap;
}
.interview_item {
  width: 33.3333333333%;
  margin-bottom: 240px;
}
@media screen and (max-width: 1200px) {
  .interview_item {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .interview_item {
    width: 100%;
  }
}
.interview_item_inner {
  display: block;
  position: relative;
}
.interview_item_img {
  width: 100%;
  height: 33.3333333333vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .interview_item_img {
    height: 50vw;
  }
}
@media screen and (max-width: 576px) {
  .interview_item_img {
    height: 100vw;
  }
}
.interview_item_textBox {
  width: 75%;
  max-width: 485px;
  min-height: 207px;
  padding: clamp(10px, 1.6vw, 30px);
  line-height: 1;
  background: #fff;
  position: absolute;
  top: calc(100% - 80px);
  left: 12.5%;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .interview_item_textBox {
    width: 90%;
    left: 5%;
  }
}
.interview_item_textBox_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.interview_item_date {
  color: #808080;
  margin-bottom: 15px;
}
.interview_item_role {
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.interview_item_nameBox {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
}
.interview_item_name {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.2em;
}
.interview_item_name-sub {
  color: #7af3b5;
  letter-spacing: 0.2em;
}
.interview_item_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
}
.interview_item_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}
.interview_item_overlay_text {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: bold;
  color: #fff;
}
.interview_item_inner:hover .interview_item_overlay {
  display: flex;
}
.interview_item_inner:hover .btn-more {
  color: #004a95;
  border: 1px solid #004a95;
}
.interview_item_inner:hover .btn-more::after {
  transform: translateX(0);
}
.interview_item_inner:hover .btn-more .btn-more_arrow::after {
  border-top: 0.15em solid #004a95;
  border-right: 0.15em solid #004a95;
}

/*==========================================
 採用担当ブログ
===========================================*/
.blog_head {
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 100px;
}
.blog_head-other {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 50px;
}
.blog_list {
  width: 100vw;
  margin-bottom: 120px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog_item {
  width: clamp(100px, 30vw, 510px);
  max-width: 510px;
  border-right: 1px solid #000;
}
.blog_item:first-child {
  border-left: 1px solid #000;
}
@media screen and (max-width: 576px) {
  .blog_item {
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
  }
  .blog_item:first-child {
    border-top: none;
  }
}
.blog_item_inner {
  display: block;
  padding: clamp(10px, 3vw, 50px) clamp(10px, 3vw, 60px);
  position: relative;
}
.blog_item_img {
  height: 23.9vw;
  margin-bottom: 30px;
}
@media (min-width: 1700px) {
  .blog_item_img {
    height: calc(508px - clamp(20px, 6vw, 120px));
  }
}
@media screen and (max-width: 576px) {
  .blog_item_img {
    height: calc(90vw - 2px - clamp(20px, 6vw, 120px));
  }
}
.blog_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_item_text {
  height: 3.3em;
  font-size: clamp(1.6rem, 2vw, 2rem);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  text-overflow: clip;
}
.blog_item_date {
  font-weight: bold;
  margin-top: 5px;
  word-break: break-all;
}
.blog_item_btnArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.blog_item_btnArea .btn-lead {
  margin-top: 5px;
  margin-left: auto;
}
.blog_item_inner:hover .btn-lead {
  background: transparent;
}
.blog_item_inner:hover .btn-lead .btn-lead_arrow::after {
  border-top: 0.15em solid #fff;
  border-right: 0.15em solid #fff;
  -o-border-image: linear-gradient(135deg, #fff, #fff);
     border-image: linear-gradient(135deg, #fff, #fff);
  border-image-slice: 1;
}

/*==========================================
 詳細記事
===========================================*/
.article {
  margin-bottom: 100px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.article_inner {
  width: 90vw;
  max-width: 1530px;
  margin: 0 auto;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (max-width: 576px) {
  .article_inner {
    width: 92vw;
  }
}
.article_ttlArea {
  padding: 80px 0 100px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .article_ttlArea {
    padding: 40px 0 50px;
  }
}
.article_date {
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.article_ttl {
  margin-bottom: 30px;
  font-size: clamp(2rem, 2.33vw, 2.8rem);
  letter-spacing: 0.1em;
}
.article_main-img {
  width: 100%;
  height: calc((90vw - 50px) / 1150 * 570);
  max-height: 570px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 576px) {
  .article_main-img {
    height: calc((92vw - 40px) / 1150 * 570);
  }
}
.article_textArea {
  padding: 100px 0 120px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 576px) {
  .article_textArea {
    padding: 50px 0 60px;
  }
}

/*==========================================
白抜きタイトル
===========================================*/
.page-ttlSN {
  text-align: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-ttlSN {
    margin-top: 80px;
  }
}
.page-ttlSN .ttl-en {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(4rem, 10vw, 17rem);
  line-height: 0.8;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-text-stroke: 1px #004a95;
  text-stroke: 1px #004a95;
  margin-bottom: 20px;
}
.page-ttlSN .ttl-ja {
  font-size: clamp(1.4rem, 2vw, 2.6rem);
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/*==========================================
 404 / THANKS
===========================================*//*# sourceMappingURL=common.css.map */