@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #d9d9d9;
  --color-red: #af0a0a;
  --font-jp: "IBM Plex Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-eng: "Inter Tight", "IBM Plex Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

html {
  font-size: min(0.6944444444vw, 10px);
}
@media screen and (max-width: 1000px) {
  html {
    font-size: min(1vw, 10px);
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: min(2.6666666667vw, 20px);
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

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

.l-wrapper {
  position: relative;
  padding: 1.2rem;
  font-family: var(--font-jp);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.9411764706;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .l-wrapper {
    padding: 0.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.l-wrapper::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../img/bg_camo_pc.jpg) no-repeat center center/cover;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 1.2rem 100%, 1.2rem 1.2rem, calc(100% - 1.2rem) 1.2rem, calc(100% - 1.2rem) calc(100% - 1.2rem), 1.2rem calc(100% - 1.2rem), 1.2rem 100%, 100% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 1.2rem 100%, 1.2rem 1.2rem, calc(100% - 1.2rem) 1.2rem, calc(100% - 1.2rem) calc(100% - 1.2rem), 1.2rem calc(100% - 1.2rem), 1.2rem 100%, 100% 100%, 100% 0%);
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .l-wrapper::after {
    background-image: url(../img/bg_camo_sp.jpg);
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 0.4rem 100%, 0.4rem 0.4rem, calc(100% - 0.4rem) 0.4rem, calc(100% - 0.4rem) calc(100% - 0.4rem), 0.4rem calc(100% - 0.4rem), 0.4rem 100%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 0% 100%, 0.4rem 100%, 0.4rem 0.4rem, calc(100% - 0.4rem) 0.4rem, calc(100% - 0.4rem) calc(100% - 0.4rem), 0.4rem calc(100% - 0.4rem), 0.4rem 100%, 100% 100%, 100% 0%);
  }
}

.l-outer {
  position: relative;
}
.l-outer::before {
  content: "";
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2.4rem);
  height: calc(100vh - 2.4rem);
}

.l-inner {
  position: relative;
  min-height: calc(100vh - 2.4rem);
}
@media screen and (max-width: 750px) {
  .l-inner {
    min-height: calc(100vh - 0.8rem);
  }
}

.l-header {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: calc(100% - 2.4rem);
  background: var(--color-black);
}
@media screen and (max-width: 750px) {
  .l-header {
    top: 0.4rem;
    width: calc(100% - 0.8rem);
  }
}
.l-header__inner {
  position: relative;
  width: 83.8%;
  margin: 0 auto;
  /* padding-top: 1.7rem;
  padding-bottom: 1.4rem; */
  padding-top: 3rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 750px) {
  .l-header__inner {
    width: 95%;
    padding-bottom: 1.9rem;
  }
}
.l-header__logo {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 4.7rem;
}
@media screen and (max-width: 750px) {
  .l-header__logo {
    left: 0.2rem;
  }
}
.l-header__logo-link {
  display: block;
  transition: transform 0.5s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-header__logo-link:hover {
    transform: scale(1.08);
  }
}
@media screen and (max-width: 750px) {
  .l-header__nav {
    margin-left: 2rem;
  }
  [data-slug=top] .l-header__nav {
    margin-left: 0;
  }
}
.l-header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header__nav-list-item {
  margin: 0 1.3rem;
}
@media screen and (max-width: 750px) {
  .l-header__nav-list-item {
    margin: 0 0.4rem;
  }
}
.l-header__nav-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .l-header__nav-link {
    font-size: 1.2rem;
  }
}
.l-header__nav-link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-header__nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.l-header__official {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l-header__official-label {
  margin-top: 0.1rem;
  margin-right: 1.3rem;
  color: var(--color-white);
  font-family: var(--font-eng);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.l-header__official-icon {
  width: 3.2rem;
}
.l-header__official-icon-link {
  display: block;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-header__official-icon-link:hover {
    transform: scale(1.1);
  }
}

.l-content {
  padding-bottom: 12rem;
}
@media screen and (max-width: 750px) {
  .l-content {
    padding-bottom: 4.9rem;
  }
}
[data-slug=news] .l-content {
  padding-bottom: 9rem;
}
@media screen and (max-width: 750px) {
  [data-slug=news] .l-content {
    padding-bottom: 8.6rem;
  }
}
[data-slug=recruit] .l-content {
  padding-bottom: 11.4rem;
}
@media screen and (max-width: 750px) {
  [data-slug=recruit] .l-content {
    padding-bottom: 10.5rem;
  }
}

.l-section {
  position: relative;
}
.l-section--news {
  margin-top: 1.6rem;
}
[data-slug=news] .l-section--news {
  margin-top: 0;
  padding-top: 10.8rem;
}
@media screen and (max-width: 750px) {
  [data-slug=news] .l-section--news {
    padding-top: 10.1rem;
  }
}
.l-section--overview {
  margin-top: 10rem;
}
@media screen and (max-width: 750px) {
  .l-section--overview {
    margin-top: 9.2rem;
  }
}
[data-slug=overview] .l-section--overview {
  margin-top: 0;
  padding-top: 10.8rem;
}
@media screen and (max-width: 750px) {
  [data-slug=overview] .l-section--overview {
    padding-top: 10.1rem;
  }
}
.l-section--recruit {
  margin-top: 9.9rem;
}
@media screen and (max-width: 750px) {
  .l-section--recruit {
    margin-top: 9.2rem;
  }
}
[data-slug=recruit] .l-section--recruit {
  margin-top: 0;
  padding-top: 10.8rem;
}
@media screen and (max-width: 750px) {
  [data-slug=recruit] .l-section--recruit {
    padding-top: 10.1rem;
  }
}
.l-section--contact {
  margin-top: 10rem;
}
@media screen and (max-width: 750px) {
  .l-section--contact {
    margin-top: 9.3rem;
  }
}
[data-slug=contact] .l-section--contact {
  margin-top: 0;
  padding-top: 10.8rem;
}
@media screen and (max-width: 750px) {
  [data-slug=contact] .l-section--contact {
    padding-top: 10.1rem;
  }
}
.l-section--facility {
  margin-top: 9.5rem;
}
@media screen and (max-width: 750px) {
  .l-section--facility {
    margin-top: 7.2rem;
  }
}
.l-section__inner {
  width: 93.5%;
  max-width: 89.5rem;
  margin: 0 auto;
}
.l-section--news .l-section__inner {
  width: 86.5%;
}
/* .l-section__head {
  transform: translateY(1.2rem);
  opacity: 0;
}
.page-top .l-section.is-active .l-section__head {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart), opacity 0.5s var(--ease-out-quart);
}
.on-load .l-section__head {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart), opacity 0.5s var(--ease-out-quart);
}
.on-load .page-top .l-section__head, .on-load .l-section--facility .l-section__head {
  transform: translateY(1.2rem);
  opacity: 0;
}
.l-section--facility.is-active .l-section__head {
  transform: translateY(0);
  opacity: 1;
} */
.l-section__title {
  text-align: center;
  font-family: var(--font-eng);
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .l-section__title {
    font-size: 2rem;
  }
}
/* .l-section__body {
  transform: translateY(1.2rem);
  opacity: 0;
}
.page-top .l-section.is-active .l-section__body {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.2s, opacity 0.5s var(--ease-out-quart) 0.2s;
}
.on-load .l-section__body {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s var(--ease-out-quart) 0.2s, opacity 0.5s var(--ease-out-quart) 0.2s;
}
.on-load .page-top .l-section__body, .on-load .l-section--facility .l-section__body {
  transform: translateY(1.2rem);
  opacity: 0;
}
.l-section--facility.is-active .l-section__body {
  transform: translateY(0);
  opacity: 1;
} */

.l-footer {
  display: block;
  position: relative;
  padding: 4rem 0 4.1rem;
  color: var(--color-white);
  background: var(--color-black);
}
@media screen and (max-width: 750px) {
  .l-footer {
    padding: 5.2rem 0 5.5rem;
  }
}
.l-footer__container {
  width: 90%;
  max-width: 90.5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .l-footer__container {
    padding-left: 15rem;
  }
}
.l-footer__brand {
  display: block;
  position: relative;
}
@media screen and (min-width: 751px) {
  .l-footer__brand {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .l-footer__brand {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    position: relative;
    margin: 0 auto;
  }
}
.l-footer__brand-link {
  width: 11rem;
  margin-left: 1rem;
  display: block;
  position: relative;
  box-sizing: content-box;
  transition: transform 0.5s var(--ease-out-quart);
}
@media (hover: hover) {
  .l-footer__brand-link:hover {
    transform: scale(1.08);
  }
}
.l-footer__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .l-footer__nav {
    margin: 3rem auto 0;
  }
}
.l-footer__copy {
  display: block;
  position: relative;
  margin-top: 3.6rem;
  font-family: var(--font-eng);
  font-size: 1.2rem;
  letter-spacing: 0.01rem;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .l-footer__copy {
    margin-top: 3.2rem;
    font-size: 1.2rem;
    text-align: center;
  }
}

.l-footer_nav {
  display: block;
  position: relative;
}
.l-footer_nav__list {
  display: block;
  position: relative;
}
@media screen and (min-width: 751px) {
  .l-footer_nav__list {
    display: flex;
    justify-content: flex-start;
    gap: 0.6rem;
  }
}
.l-footer_nav__list-item {
  display: block;
  position: relative;
}
@media screen and (max-width: 750px) {
  .l-footer_nav__list-item + .l-footer_nav__list-item {
    margin-top: 0.3rem;
  }
}
.l-footer_nav__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: -0.05rem;
  color: var(--color-white);
  padding: 1rem 2rem;
}
@media screen and (max-width: 750px) {
  .l-footer_nav__link {
    margin: 0 auto;
    padding: 0.5rem 1.2rem;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) {
    .l-footer_nav__link {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .l-footer_nav__link:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) {
    .l-footer_nav__link:hover {
      text-decoration: underline;
    }
  }
}
.l-footer_nav__link::before {
  content: none;
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  background: url("../img/icon_link_blank.svg") no-repeat center/contain;
}
@media screen and (max-width: 750px) {
  .l-footer_nav__link::before {
    width: 1rem;
    height: 1rem;
  }
}
.l-footer_nav__link[target=_blank]::before {
  content: "";
}

.c-btn__link {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 5.6rem;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 50rem;
  transition: background-color 0.6s var(--ease-out-quart), transform 0.6s var(--ease-out-quart);
}
@media screen and (max-width: 750px) {
  .c-btn__link {
    height: 4.4rem;
  }
}
.--size-large .c-btn__link {
  height: 8rem;
}
@media screen and (max-width: 750px) {
  .--size-large .c-btn__link {
    height: 4.4rem;
  }
}
@media (hover: hover) {
  .c-btn__link:hover {
    background: var(--color-white);
    transform: scale(1.05);
  }
}
.c-btn__link input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.c-btn__text {
  display: block;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: var(--color-white);
  font-size: 1.6rem;
  transition: color 0.6s var(--ease-out-quart);
}
@media screen and (max-width: 750px) {
  .c-btn__text {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .c-btn__link:hover .c-btn__text {
    color: var(--color-black);
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: content-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 6rem;
}
@media screen and (max-width: 750px) {
  .c-pagination {
    padding: 0 5.2rem;
  }
}
.c-pagination__arrow {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  width: 2.9rem;
  transition: transform 0.6s var(--ease-out-quart);
}
@media (hover: hover) {
  .c-pagination__arrow:hover {
    transform: translateY(-50%) scale(1.1);
  }
}
.c-pagination__arrow.--prev {
  left: 0;
}
.c-pagination__arrow.--next {
  right: 0;
}
.c-pagination__arrow.--next img {
  transform: scaleX(-1);
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagination__list-item {
  margin: 0 1.84rem;
}
@media screen and (max-width: 750px) {
  .c-pagination__list-item {
    margin: 0 1.3rem;
  }
}
.c-pagination__link {
  display: block;
  position: relative;
  padding-bottom: 1.3rem;
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-eng);
  font-size: 1.7rem;
  line-height: 1;
}
.current .c-pagination__link {
  pointer-events: none;
}
.c-pagination__link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: right center;
  width: 2.4rem;
  height: 0.3rem;
  background: var(--color-black);
  transition: transform 0.6s var(--ease-out-quart);
}
.current .c-pagination__link::before {
  transform: translateX(-50%) scaleX(1);
}
@media (hover: hover) {
  .c-pagination__link:hover::before {
    transform: translateX(-50%) scaleX(1);
    transform-origin: left center;
  }
}