@charset "UTF-8";

/* 自家製フェード（修正） */
.fx[data-inview] {
  opacity: 0;
  /* transform: none;  ← 削除！ 初期変位は下の [data-inview] に任せる */
  will-change: transform, opacity;
  --fx-distance: 120px;
  --fx-duration: 800ms;
  --fx-ease: ease-out;
}

/* 初期の軽い持ち上げ＆トランジション */
[data-inview] {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

[data-inview].is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-inview] {
    transition: none;
  }
}

/* キーフレーム */
@keyframes slideInFromRight {
  from {
    transform: translateX(var(--fx-distance));
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(calc(-1 * var(--fx-distance)));
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(var(--fx-distance));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ここから “最後にまとめて” 置く */
.fx.is-inview.fx-slide-from-right {
  animation: slideInFromRight var(--fx-duration) var(--fx-ease) both;
}

.fx.is-inview.fx-slide-from-left {
  animation: slideInFromLeft var(--fx-duration) var(--fx-ease) both;
}

/* ▼ bottom は「移動だけ長め」に一本化（重複させない） */
@keyframes slideUpMoveOnly {
  from {
    transform: translateY(var(--fx-distance));
  }

  to {
    transform: translateY(0);
  }
}

.fx.is-inview.fx-slide-from-bottom {
  --fx-move-duration: 700ms;
  /* 動きだけ長く */
  animation:
    slideUpMoveOnly var(--fx-move-duration) var(--fx-ease) both,
    fadeInOnly var(--fx-duration) var(--fx-ease) both;
}

.fx.is-inview.fx-fade {
  animation: fadeInOnly var(--fx-duration) var(--fx-ease) both;
}

@media (prefers-reduced-motion: reduce) {

  .fx,
  .fx.is-inview {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  font-size: 100%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-style: normal;
  /* background: #fff; */
}

header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.head_inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  padding: 16px 24px;
  margin: 0 auto;
}

.head_inner h1 a {
  min-width: 213px;
  max-width: 213px;
  display: inline-block;
  position: relative;
}

.head_inner h1 a::after {
  content: "";
  display: block;
  width: 140px;
  height: 24px;
  background-image: url(../../img/logo_recruit.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: -79%;
  transform: translateY(-50%);
}

.head_sub li.occupation {
  margin-right: 20px;
}

.head_sub li.occupation .rec_btn {
  /* width: 220px; */
  width: 190px;
  margin-top: 0;
  position: relative;
}

.head_sub li.occupation .rec_btn::after {
      content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../common/img/linkout04.svg);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.hamburger {
  width: 54px;
  height: 54px;
  background: #060001;
  padding: 0;
  border: none;
  position: relative;
  z-index: 10000;
  cursor: pointer;
}

.hamburger .bar {
  width: 70%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  inset: 50% 0 auto 0;
  margin: 0 auto;
  position: absolute;
  top: 20px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger .bar::before {
  transform: translateY(-8px);
}

.hamburger .bar::after {
  transform: translateY(8px);
}

.hamburger[aria-expanded="true"] .bar {
  background: transparent;
}

.hamburger[aria-expanded="true"] .bar::before {
  transform: translateY(0) rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar::after {
  transform: translateY(0) rotate(-45deg);
}

.hamburger_txt {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

html.nav-locked,
body.nav-locked {
  overflow: hidden;
}

#global-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 91px;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global-nav::before {
  content: "";
  background-image: url(../../img/index/nav_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

#global-nav .nav_flex {
  max-width: 750px;
  width: 100%;
  position: relative;
  z-index: 1;
}


#global-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#global-nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav_flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.nav_flex li {
  width: 48%;
}

.nav_flex li.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav_flex li:nth-of-type(n+3) {
  margin-top: 40px;
}

.nav_flex li:last-of-type {
  margin-left: auto;
}

.nav_flex li .navttl {
  font-size: 26px;
  font-weight: 600;
}

.nav_flex li a {
  display: inline-block;
  font-size: 16px;
  position: relative;
  transition: all .5s;
}

.nav_flex li a.linkout::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../../../../common/img/linkout03.svg);
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
}

.nav_flex li a span.navbig {
  font-size: 26px;
  font-weight: 600;
}

.nav_flex li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}



footer {
  background-image: url(../../img/index/foot_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 190px 0 0 0;
  margin-top: -13vw;
  position: relative;
  z-index: 300;
}

footer.under_footer {
  margin-top: -23vw;
}

.f-nav-inner {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
}

.f-nav {
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #bababa;
  padding: 40px 0;
  margin-bottom: 20px;
}

.f-nav a {
  font-size: 12px;
  padding: 0 15px;
  transition: all 0.5s;
}

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

.mark-privacy {
  width: 50px;
}

#pagetop a {
  background: #060001;
}

#pagetop a span {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

/* kobetsu */
.pos_center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.1em;
  vertical-align: baseline;
}

h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}


.rec_btn {
  width: 360px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体",
    "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",
    "Meiryo", "verdana", sans-serif;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  color: #fff;
  background: #060001;
  padding: 15px 20px 15px 30px;
  margin-top: 40px;
  position: relative;
  transition: transform 0.3s ease;
}

.rec_btn.arrow::after {
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../../img/index/arrow.svg);
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.rec_btn.linkout::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../../../../common/img/linkout.svg);
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.rec_btn .mini {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  margin-left: 10px;
}

.rec_btn:hover {
  opacity: 0.7;
}

.rec_btn.arrow:hover::after {
  transform: translateY(-50%) scale(1.2);
}

.recuruit_content {
  margin-top: 92px;
}

.recuruit_content h3,
.recuruit_content p {
  letter-spacing: 1px;
}

.bread-list {
  max-width: 800px;
  padding: 30px 0 0 0;
  margin: 0 auto;
}

.bread-list li {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

.ttl-box {
  width: 90%;
  max-width: 800px;
  margin: 6vw auto;
}

.ttl-box .subttl {
  font-size: 22px;
}

.ttl-box .en img {
  width: auto;
  height: 26px;
}

.ttl-box .pagettl {
  font-size: 55px;
  margin-top: 20px;
}

.ttl-box .page_datail {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.8;
  margin-top: 20px;
}

.work_list {
  margin-top: 40px;
}

.work_list li {
  display: inline-block;
  margin-right: 5px;
}

.work_list li:nth-of-type(n+5) {
  margin-top: 10px;
}

.work_list a {
  border: 1px solid #231815;
  padding: 4px 30px;
}

.work_list a:hover {
    color: #fff;
  background: #231815;
}


.work_list a.is-active {
  color: #fff;
  background: #231815;
}

.work_panel {
  display: none;
  scroll-margin-top: 92px;
}

.work_panel.is-show {
  display: block;
}


.relate_flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.relate_flex li {
  width: 32%;
  padding: 30px 20px;
}

.relate_infottl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.more {
  display: block;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background: #000;
  padding: 10px 0;
  margin-top: 10px;
  position: relative;
}

.linkout_W {
  
}

.linkout_W::after {
  content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../common/img/linkout04.svg);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.more:hover {
  opacity: 0.7;
}

.arrow::after {
  content: "";
  display: block;
  width: 50px;
  height: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../../img/index/arrow.svg);
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.arrow:hover::after {
  transform: translateY(-50%) scale(1.2);
}

.recruit_relate {
  padding: 0 0;
  position: relative;
  z-index: 4;
  margin-top: -6vw;
}

.recruit_relate .inner_1000 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.relate_ttl {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.relate_flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.relate_flex li {
  width: 32%;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
}

.relate_infottl {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.relate_txt {
  font-size: 14px;
}

.btn_link.back_btn {
    color: #000;
    background: #fff;
    border: 1px solid #231815;
    margin-bottom: 100px;
}

.btn_link {
    display: block;
    width: 90%;
    max-width: 320px;
    font-size: 18px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-style: normal;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    background: #000;
    text-align: center;
    border-radius: 8px;
    padding: 10px 0;
    margin: 80px auto 0;
}

.btn_link:hover {
  opacity: 0.7;
}

.space {
  display: block;
  padding: 3px 0;
}


/* 募集職種一覧下層リンク非表示 */
/* header .nav_flex li.column.under_occupation a:not(:first-of-type) {
  display: none;
}

footer .nav_flex li.column.under_occupation a:not(:first-of-type) {
  display: none;
} */

@media (max-width: 1280px) {
  .relate_ttl {
    font-size: 32px;
  }
}

/* tab */
@media (max-width: 1180px) {}

/*---------------------------
sp
---------------------------*/
@media only screen and (max-width: 820px) {
  .head_inner {
    align-items: flex-start;
    padding: 10px 10px;
  }

  .head_inner h1 a {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .head_inner h1 a::after {
    width: 100px;
    height: 16px;
    top: initial;
    left: 50%;
    bottom: -24px;
    right: initial;
    transform: translateX(-50%);
  }

  .head_sub li.occupation .rec_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 57px;
    font-size: 14px;
    text-align: center;
    padding: 10px 20px 10px 0;
  }

  .head_sub li.occupation .rec_btn.arrow::after {
    content: none;
  }

  .head_sub li.occupation .rec_btn::after {
    right: 7px;
  }

  .head_sub li.occupation {
    margin-right: 10px;
  }

  .hamburger {
    height: 57px;
  }

  #global-nav {
    align-items: flex-start;
    margin-top: 74px;
  }

  #global-nav .nav_flex {
    max-width: 100%;
  }

  #global-nav .nav_flex li {
    width: 100%;
    border-right: none;
  }


  /* フッター */
  .nav_flex {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .nav_flex li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin: 0;
  }

  .nav_flex li.column {
    align-items: center;
  }

  .nav_flex li:nth-of-type(n+3) {
    margin: 0;
  }

  .nav_flex li:nth-of-type(odd) {
    border-right: 1px solid #ccc;
  }

  .nav_flex li:nth-of-type(even) {
    border-right: none;
  }

  .nav_flex li:last-of-type {
    width: 100%;
    border-right: none;
    border-bottom: none;
  }

  .nav_flex li a:nth-of-type(n+2) {
    margin-top: 2px;
  }


  .nav_flex li .navttl {
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 2px;
  }

  .nav_flex li a {
    font-size: 12px;
    text-align: center;
  }

  .nav_flex li a span.navbig {
    font-size: 14px;
  }

  footer {
    padding: 140px 0 0 0;
    margin-top: -40vw;
  }

  footer.under_footer {
    margin-top: -57vw;
  }

  .f-nav-inner {
    width: 100%;
    max-width: 100%;
  }

  .f-nav {
    flex-wrap: wrap;
    padding: 30px 0;
  }

  .f-nav .com-logo {
    width: 100%;
  }

  .f-logo {
    width: 60%;
    margin: 0 auto 20px;
  }

  .f-nav li:nth-of-type(2),
  .f-nav li:nth-of-type(3) {
    text-align: center;
    padding: 0 10px;
  }

  .f-nav li:nth-of-type(4) {
    width: 10%;
    max-width: 70px;
  }

  .f-nav li:nth-of-type(2) {
    border-right: 1px solid #bababa;
  }

  .f-nav li:nth-of-type(2) a .f-nav li:nth-of-type(3) a {
    padding: 10px 0;
  }


  /* kobetsu */
  .rec_btn {
    width: 90%;
    max-width: initial;
    font-size: 14px;
    padding: 10px 10px 10px 10px;
    margin: 20px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .rec_btn.arrow::after {
    width: 30px;
    height: 5px;
  }

  .rec_btn .mini {
    font-size: 12px;
  }

  .recuruit_content {
    margin-top: 83px;
  }

  .bread-list {
    padding: 10px 0 0;
  }
ƒ
   .ttl-box {
    margin: 30px auto 0;
  }

  .ttl-box .subttl {
    font-size: 16px;
  }

  .ttl-box .en img {
    width: auto;
    height: 16px;
  }

  .ttl-box .pagettl {
    font-size: 45px;
  }

  .ttl-box .page_datail {
    font-size: 18px;
  }

  .work_list {
    margin-top: 20px;
  }

  .work_list li {

    margin-right: 0;
  }

  .work_list li:nth-of-type(n+5) {
    margin-top: 5px;
  }

    .work_list li a {
   font-size: 14px;
    padding: 4px 10px;
    }

  .relate_ttl {
    font-size: 28px;
  }

  .relate_flex li {
    width: 100%;
    padding: 15px 20px;
  }

  .relate_flex li:nth-of-type(n+2) {
    margin-top: 20px;
  }

  .recruit_relate {
    background-image: url(../../img/relate_bg.png);
    background-size: cover;
    background-position: top -7vw center;
    background-repeat: no-repeat;
    padding: 100px 0 50vw 0;
    margin-top: 0;
  }

  .recruit_relate .inner_1000 {
    padding-top: 50px;
    position: static;
    transform: initial;
  }

  .more {
    width: 70%;
    font-size: 12px;
    margin: 10px auto 0;
  }

    .btn_link {
    margin-top: 30px;
  }

  .btn_link:hover {
    opacity: 1;
  }

  .btn_link.back_btn {
    margin: 40px auto 20px;
  }

  .space {
    display: none;
  }

}

@media only screen and (max-width: 499px) {
  .head_inner h1 a {
    min-width: 150px;
    max-width: 150px;
    position: relative;
  }



  .ttl-box {
    margin: 20px auto 0;
  }

  .ttl-box .en img {
    width: auto;
    height: 13px;
  }

  .ttl-box .pagettl {
    font-size: 25px;
    margin-top: 10px;
  }

  .ttl-box .page_datail {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-top: 10px;
  }

  .work_list li {
    font-size: 12px;
  }

  .recruit_relate {
    background-position: top -21vw center;
  }
}