@charset "UTF-8";
/* =============================================
  font settings
============================================= */
@font-face {
  font-family: "ipsj";
  src: url("../../fonts/ipsj/IBMPlexSansJP-Light.ttf") format("ttf");
  font-weight: 300;
}
@font-face {
  font-family: "ipsj";
  src: url("../../fonts/ipsj/IBMPlexSansJP-Regular.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "ipsj";
  src: url("../../fonts/ipsj/IBMPlexSansJP-Medium.ttf") format("ttf");
  font-weight: 500;
}
@font-face {
  font-family: "ipsj";
  src: url("../../fonts/ipsj/IBMPlexSansJP-Bold.ttf") format("ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi/Satoshi-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  default settings
============================================= */
:root {
  --color-primary: #1959A8;
  --color-secondary: #815D32;
  --color-black: #2e2e2e;
  --font-en: "Satoshi", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "ipsj", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: var(--color-black);
}
body.is-active {
  overflow: hidden !important;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  color: var(--color-black);
}

ul, ol {
  list-style: none;
}

area {
  cursor: pointer;
}

.main {
  overflow: hidden;
}

.inner {
  max-width: calc(1000px + 8rem);
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 2rem;
  }
}
.inner--lg {
  max-width: calc(1200px + 8rem);
}

.pc {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: inline-block !important;
  }
}

.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity ease 0.6s, transform ease 0.6s;
}
.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0px);
}

.fadeSlide {
  transition: clip-path ease 1s;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.fadeSlide.is-active {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.js-split.is-active span {
  opacity: 1;
  transform: translateY(0);
}
.js-split span {
  --delay: 0.05s;
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
  transition: opacity ease 0.6s calc(var(--delay) * var(--index)), transform ease 0.6s calc(var(--delay) * var(--index));
}

.breadcrumb {
  margin: 0 auto;
  max-width: calc(1200px + 8rem);
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb--mt {
  margin-top: 2.5rem;
}
.breadcrumb--nospace {
  margin-top: 2.5rem;
  padding: 0;
}
.breadcrumb > span {
  display: flex;
  gap: 7rem;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb > span span {
  position: relative;
  font-size: 1.2rem;
}
.breadcrumb > span span::after {
  content: "";
  position: absolute;
  width: 5.2rem;
  height: 1px;
  background-color: #707070;
  top: calc(50% - 0.5px);
  right: -6.1rem;
}
.breadcrumb > span span:last-child::after {
  content: none;
}
.breadcrumb > span span a {
  transition: color ease 0.3s;
}
.breadcrumb > span span a:hover {
  color: var(--color-primary);
}

.categories {
  margin: 9rem auto 0;
  max-width: calc(1200px + 8rem);
  padding: 0 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .categories {
    padding: 0 2rem;
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  .categories li {
    width: calc((100% - 2rem) / 2);
  }
}
.categories li a {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: inline-block;
  min-width: 17rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  border-radius: 2.25rem;
  transition: background-color ease 0.3s, color ease 0.3s;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .categories li a {
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.2rem;
    width: 100%;
    padding: 0 1rem;
  }
}
.categories li a:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.categories li a.current {
  color: #fff;
  background-color: var(--color-primary);
}

.link {
  display: inline-block;
  position: relative;
  color: #fff;
}
.link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: top right;
  transition: transform ease 0.3s;
}
.link:hover::before {
  transform: scaleX(100%);
  transform-origin: top left;
}
.link--black {
  color: var(--color-black);
}
.link--black::before {
  background-color: var(--color-black);
}

.navigation {
  margin: 14rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .navigation {
    margin: 7rem auto 0;
  }
}
.navigation .nav-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.navigation .nav-links .page-numbers,
.navigation .nav-links .post-page-numbers {
  color: #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
  font-family: "Satoshi", sans-serif;
  transition: color ease 0.3s, border-bottom ease 0.3s;
}
.navigation .nav-links .page-numbers.current,
.navigation .nav-links .post-page-numbers.current {
  color: var(--color-black);
  border-bottom: none;
  pointer-events: none;
}
.navigation .nav-links .page-numbers.dots,
.navigation .nav-links .post-page-numbers.dots {
  pointer-events: none;
  border-bottom: none;
  vertical-align: middle;
}
.navigation .nav-links .page-numbers:hover,
.navigation .nav-links .post-page-numbers:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.navigation .nav-links .page-numbers.prev, .navigation .nav-links .page-numbers.next,
.navigation .nav-links .post-page-numbers.prev,
.navigation .nav-links .post-page-numbers.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 13rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border-radius: 1.75rem;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: 1.2rem;
  padding: 0 1.5rem;
  transition: color ease 0.3s, background-color ease 0.3s, border ease 0.3s;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.prev, .navigation .nav-links .page-numbers.next,
  .navigation .nav-links .post-page-numbers.prev,
  .navigation .nav-links .post-page-numbers.next {
    width: 3.5rem;
  }
}
.navigation .nav-links .page-numbers.prev::before, .navigation .nav-links .page-numbers.next::before,
.navigation .nav-links .post-page-numbers.prev::before,
.navigation .nav-links .post-page-numbers.next::before {
  content: "";
  width: 2rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background ease 0.3s;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.prev::before, .navigation .nav-links .page-numbers.next::before,
  .navigation .nav-links .post-page-numbers.prev::before,
  .navigation .nav-links .post-page-numbers.next::before {
    width: 1.4rem;
  }
}
.navigation .nav-links .page-numbers.prev:hover, .navigation .nav-links .page-numbers.next:hover,
.navigation .nav-links .post-page-numbers.prev:hover,
.navigation .nav-links .post-page-numbers.next:hover {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.prev span, .navigation .nav-links .page-numbers.next span,
  .navigation .nav-links .post-page-numbers.prev span,
  .navigation .nav-links .post-page-numbers.next span {
    display: none;
  }
}
.navigation .nav-links .page-numbers.prev,
.navigation .nav-links .post-page-numbers.prev {
  left: -18rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.prev,
  .navigation .nav-links .post-page-numbers.prev {
    left: -6rem;
  }
}
.navigation .nav-links .page-numbers.prev::before,
.navigation .nav-links .post-page-numbers.prev::before {
  left: 1.5rem;
  background: no-repeat url(../img/icon_prev.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.prev::before,
  .navigation .nav-links .post-page-numbers.prev::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.navigation .nav-links .page-numbers.prev:hover::before,
.navigation .nav-links .post-page-numbers.prev:hover::before {
  background: no-repeat url(../img/icon_prev_active.svg) center center/contain;
}
.navigation .nav-links .page-numbers.next,
.navigation .nav-links .post-page-numbers.next {
  right: -18rem;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.next,
  .navigation .nav-links .post-page-numbers.next {
    right: -6rem;
  }
}
.navigation .nav-links .page-numbers.next::before,
.navigation .nav-links .post-page-numbers.next::before {
  right: 1.5rem;
  background: no-repeat url(../img/icon_next.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links .page-numbers.next::before,
  .navigation .nav-links .post-page-numbers.next::before {
    right: 50%;
    transform: translate(50%, -50%);
  }
}
.navigation .nav-links .page-numbers.next:hover::before,
.navigation .nav-links .post-page-numbers.next:hover::before {
  background: no-repeat url(../img/icon_next_active.svg) center center/contain;
}

.error {
  color: #EB4848;
  display: block;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.eg-link {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .eg-link {
    margin-top: 4.5rem;
  }
}
.eg-link > p {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .eg-link > p {
    font-size: 1.8rem;
  }
}
.eg-link > a {
  margin-top: 2rem;
  display: inline-block;
}
.eg-link > a svg {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .eg-link > a svg {
    max-width: 279px;
    height: auto;
  }
}
.eg-link > a .exceed__text,
.eg-link > a .exceed__arrow,
.eg-link > a .exceed__bg {
  transition: fill ease 0.3s, stroke ease 0.3s;
}
.eg-link > a .exceed__text {
  fill: #33A34A;
}
.eg-link > a .exceed__arrow {
  stroke: #33A34A;
}
.eg-link > a .exceed__bg {
  fill: #fff;
}
.eg-link > a:hover .exceed__text {
  fill: #fff;
}
.eg-link > a:hover .exceed__arrow {
  stroke: #fff;
}
.eg-link > a:hover .exceed__bg {
  fill: #33A34A;
}

/* =============================================
  btn
============================================= */
.btn {
  position: relative;
  width: 300px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 28px;
  padding-left: 2.5rem;
  font-size: 1.4rem;
  transition: color ease 0.4s, background-color ease 0.4s, border ease 0.4s;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 210px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
    padding-left: 1.5rem;
  }
}
.btn .arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  overflow: hidden;
  width: 20px;
  height: 8.7px;
}
@media screen and (max-width: 768px) {
  .btn .arrow {
    right: 1.5rem;
  }
}
.btn .arrow::before, .btn .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.btn .arrow::before {
  background: no-repeat url(../img/btn_arrow_black.svg) center center/contain;
}
.btn .arrow::after {
  transform: translateX(-150%);
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
}
.btn:hover {
  background-color: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}
.btn:hover .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.btn:hover .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.btn--sm {
  width: 200px;
  height: 40px;
  line-height: 40px;
  padding-left: 2rem;
}
.btn--sm .arrow {
  right: 2rem;
}
.btn--center {
  text-align: center;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .btn--center {
    width: 24rem;
    height: 6rem;
    line-height: 6rem;
    border-radius: 3rem;
    font-size: 1.6rem;
  }
}
.btn--header {
  width: 17rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: 2rem;
  display: inline-block;
  text-align: center;
  transition: color ease 0.3s, background-color ease 0.3s, border ease 0.3s;
  font-size: 1.4rem;
}
.btn--header01 {
  color: #fff;
  border: 1px solid #fff;
}
.btn--header01:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--header02 {
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.btn--header02:hover {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
}
.btn--mv, .btn--skip {
  width: 13rem;
  height: 3.6rem;
  line-height: 3.4rem;
  border-radius: 1.8rem;
  display: inline-block;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  padding-left: 2rem;
  position: relative;
  transition: color ease 0.4s, background-color ease 0.4s, border ease 0.4s;
}
.btn--mv .arrow, .btn--skip .arrow {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  overflow: hidden;
  width: 20px;
  height: 8.7px;
}
.btn--mv .arrow::before, .btn--skip .arrow::before, .btn--mv .arrow::after, .btn--skip .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.btn--mv .arrow::before, .btn--skip .arrow::before {
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
}
.btn--mv .arrow::after, .btn--skip .arrow::after {
  transform: translateX(-150%);
  background: no-repeat url(../img/btn_arrow_blue.svg) center center/contain;
}
.btn--mv:hover, .btn--skip:hover {
  border: 1.5px solid #fff;
  background-color: #fff;
  color: var(--color-primary);
}
.btn--mv:hover .arrow::before, .btn--skip:hover .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.btn--mv:hover .arrow::after, .btn--skip:hover .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.btn--skip {
  width: 10.2rem;
  text-align: left;
  letter-spacing: 1px;
}
.btn--form {
  width: 45rem;
  height: 8rem;
  line-height: 8rem;
  border-radius: 4rem;
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  border: 1px solid #1F1F1F;
  transition: color ease 0.3s, border ease 0.3s, background-color ease 0.3s;
  color: #1F1F1F;
}
@media screen and (max-width: 768px) {
  .btn--form {
    width: 20rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 1.6rem;
  }
}
.btn--form:hover {
  color: #fff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--contact {
  width: 13rem;
  height: 5rem;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .btn--contact {
    width: 11rem;
    height: 4.5rem;
  }
}
.btn--contact .arrow {
  width: 39px;
  height: 17px;
  right: 50%;
  transform: translate(50%, -50%);
}
.btn--contact .arrow::before {
  background: no-repeat url(../img/btn_arrow_black_lg.svg) center center/contain;
}
.btn--contact .arrow::after {
  background: no-repeat url(../img/btn_arrow_white_lg.svg) center center/contain;
}

/* =============================================
  section
============================================= */
.section {
  padding: 15rem 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}
.section-header__label {
  font-size: 2rem;
  padding-left: 1.5rem;
  position: relative;
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section-header__label {
    font-size: 1.6rem;
  }
}
.section-header__label::before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 0;
  width: 9px;
  height: 24px;
  border-radius: 10px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .section-header__label::before {
    height: 21px;
    top: 1.5px;
  }
}
.section-header__label--borderless {
  padding-left: 0;
}
.section-header__label--borderless::before {
  content: none;
}
.section-header__title {
  position: relative;
  padding-bottom: 2.5rem;
  font-size: 8rem;
  font-weight: 400;
  margin-left: -0.5rem;
  text-transform: uppercase;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .section-header__title {
    font-size: 4.2rem;
    margin-top: 0.5rem;
    margin-left: -0.3rem;
  }
}
.section-header__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: var(--color-black);
}
.section-business {
  overflow: hidden;
  padding-bottom: 30rem;
}
@media screen and (max-width: 768px) {
  .section-business {
    padding: 5.5rem 0 8rem;
  }
}
.section-business__title {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .section-business__title {
    margin-bottom: 3.5rem;
  }
}
.section-case {
  background-color: #F2F2F2;
}
.section-case__btn {
  margin-top: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .section-case__btn {
    margin-top: 5rem;
  }
}
.section-cr {
  padding: 20rem 0;
}
@media screen and (max-width: 768px) {
  .section-cr {
    padding: 8rem 1rem;
  }
}
.section-message {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .section-message {
    margin-top: 6rem;
  }
}
.section-company {
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  .section-company {
    margin-top: 10rem;
  }
}
.section-company__btn {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .section-company__btn {
    margin-top: 3rem;
    text-align: center;
  }
}
.section-group {
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  .section-group {
    margin-top: 8.5rem;
  }
}
.section-history {
  padding: 20rem 0;
}
@media screen and (max-width: 768px) {
  .section-history {
    padding: 8.5rem 0 13rem;
  }
}
.section-archive {
  padding-bottom: 27rem;
}
@media screen and (max-width: 768px) {
  .section-archive {
    padding-bottom: 12rem;
  }
}
.section-construction {
  padding: 23rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .section-construction {
    padding: 16rem 0 8.5rem;
  }
}
.section-contact {
  border-top: 1px solid var(--color-black);
}
.section-contact__title {
  text-align: center;
  font-size: 11rem;
  font-weight: 400;
  margin: 0 auto;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .section-contact__title {
    font-size: 6rem;
  }
}
.section-contact__text {
  margin-top: 2.5rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .section-contact__text {
    margin-top: 2rem;
    margin-bottom: 4.5rem;
    font-size: 1.4rem;
  }
}
.section-contact__text span {
  color: #EB4848;
}
.section-contact02 {
  padding: 23rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .section-contact02 {
    padding: 16rem 0 8.5rem;
  }
}
.section-page {
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .section-page {
    padding: 6rem 0 10rem;
  }
}
@media screen and (max-width: 768px) {
  .section-page--system {
    padding: 6rem 0 0;
  }
}
.section-page__text {
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .section-page__text {
    font-size: 1.4rem;
  }
}
.section-page__list {
  border: 1px solid var(--color-black);
  padding: 3rem;
  margin-top: 3rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0 3rem;
}
@media screen and (max-width: 768px) {
  .section-page__list {
    margin-top: 2rem;
    grid-auto-flow: row;
    grid-template-rows: auto;
    gap: 0;
    padding: 2rem 1.5rem;
  }
}
.section-page__list li {
  position: relative;
  line-height: 2;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .section-page__list li {
    font-size: 1.4rem;
  }
}
.section-page__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.section-entry {
  padding: 9rem 0 22rem;
}
@media screen and (max-width: 768px) {
  .section-entry {
    padding: 6.5rem 0 8.5rem;
  }
}
.section-entry__text {
  margin: 10rem 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .section-entry__text {
    margin: 4rem 0 5rem;
    font-size: 1.4rem;
  }
}
.section-entry__text span {
  color: #EB4848;
}
.section-project {
  background-color: #F2F2F2;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .section-project {
    padding: 6rem 0;
  }
}
.section-privacy {
  padding: 23rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .section-privacy {
    padding: 16rem 0 8.5rem;
  }
}
.section-404 {
  padding: 23rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .section-404 {
    padding: 16rem 0 8.5rem;
  }
}
.section-job {
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .section-job {
    padding: 6rem 0 9rem;
  }
}
.section-benefit {
  background-color: #F2F2F2;
  padding: 12rem 0;
}
@media screen and (max-width: 768px) {
  .section-benefit {
    padding: 7rem 0;
  }
}
.section-require {
  padding: 15rem 0 19rem;
}
@media screen and (max-width: 768px) {
  .section-require {
    padding: 7rem 0 13rem;
  }
}
.section-single {
  padding-bottom: 19rem;
}
@media screen and (max-width: 768px) {
  .section-single {
    padding-bottom: 12rem;
  }
}

/* =============================================
  header
============================================= */
.header {
  position: relative;
  z-index: 3;
}
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: transform ease 0.3s;
}
.header--fixed.is-active {
  transform: translateY(0) !important;
}
.header--fixed#js-header-fixed {
  transform: translateY(-100%);
}
.header__inner {
  height: 10rem;
  padding: 0 8.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1350px) {
  .header__inner {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .header__inner {
    padding: 0 2rem;
  }
}
.header__logo {
  transition: opacity ease 0.3s;
  display: inline-block;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 1350px) {
  .header__right {
    gap: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .header__buttons {
    display: none;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
.header__nav > ul {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 1350px) {
  .header__nav > ul {
    gap: 3rem;
  }
}
.header__nav > ul li {
  position: relative;
}
.header__nav > ul li.menu {
  height: 10rem;
  line-height: 10rem;
  cursor: pointer;
  position: relative;
  margin-right: 1.5rem;
  font-size: 1.4rem;
  color: #fff;
}
.header__nav > ul li.menu::before, .header__nav > ul li.menu::after {
  content: "";
  width: 13px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
  right: -20px;
  transition: transform ease 0.3s;
}
.header__nav > ul li.menu::after {
  transform: rotate(90deg);
}
.header__nav > ul li.menu:hover::after {
  transform: rotate(0deg);
}
.header__nav > ul li.menu:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.header__nav > ul li.menu > a {
  color: #fff;
}
.header__nav > ul li.menu--black::before, .header__nav > ul li.menu--black::after {
  background-color: var(--color-black);
}
.header__nav > ul li.menu--black > a {
  color: var(--color-black);
}
.header__nav > ul li a {
  font-size: 1.4rem;
}
.header__nav > ul li .submenu {
  position: absolute;
  left: 0;
  top: 10rem;
  width: 210px;
  padding: 2.5rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 0.3s, visibility ease 0.3s;
}
.header__nav > ul li .submenu li {
  height: auto;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.header__nav > ul li .submenu li:last-child {
  margin-bottom: 0;
}
.header__nav > ul li .submenu li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 7px;
  width: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
.header__nav > ul li .submenu li a {
  color: var(--color-black);
  font-size: 1.4rem;
  transition: color ease 0.3s;
}
.header__nav > ul li .submenu li a:hover {
  color: var(--color-primary);
}

/* =============================================
  hamburger
============================================= */
.hamburger__button {
  display: block;
  position: relative;
  width: 5rem;
  height: 2.5rem;
}
.hamburger__button.is-active span {
  background-color: #fff;
}
.hamburger__button.is-active span:nth-child(1) {
  top: 50%;
  transform: rotate(25deg);
}
.hamburger__button.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger__button.is-active span:nth-child(3) {
  top: 50%;
  transform: rotate(-25deg);
}
.hamburger__button--primary span {
  background-color: var(--color-primary) !important;
}
.hamburger__button span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: background-color ease 0.3s, opacity ease 0.3s, transform ease 0.3s;
}
.hamburger__button span:nth-child(1) {
  top: 0;
}
.hamburger__button span:nth-child(2) {
  top: 50%;
}
.hamburger__button span:nth-child(3) {
  top: 100%;
}
.hamburger__menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-primary);
  z-index: 999;
  padding: 13rem 4rem;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  overflow-y: scroll;
  display: none;
}
@media screen and (max-width: 1000px) {
  .hamburger__menu {
    display: block;
  }
}
.hamburger__menu.is-active {
  opacity: 1;
  visibility: visible;
}
.hamburger__close {
  position: absolute;
  top: 3.7rem;
  right: 2rem;
}
.hamburger__navItem {
  margin-bottom: 3rem;
  color: #fff;
  font-size: 2rem;
}
.hamburger__navItem:last-child {
  margin-bottom: 0;
}
.hamburger__navSubmenu {
  margin-top: 1.5rem;
  padding-left: 2.5rem;
  display: none;
}
.hamburger__navSubmenu li {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1em;
}
.hamburger__navSubmenu li:last-child {
  margin-bottom: 0;
}
.hamburger__navSubmenu li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.hamburger__navSubmenu li a {
  color: #fff;
}
.hamburger__navLink {
  color: #fff;
}
.hamburger__navLabel {
  position: relative;
  display: inline-block;
}
.hamburger__navOpen {
  position: absolute;
  display: block;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: -3.5rem;
  transform: translateY(-50%);
}
.hamburger__navOpen::before, .hamburger__navOpen::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: transform ease 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hamburger__navOpen::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.hamburger__navOpen.is-active::after {
  transform: translate(-50%, -50%) rotate(0);
}
.hamburger__logo {
  position: absolute;
  top: 2.2rem;
  left: 2rem;
}
.hamburger__links {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}
.hamburger__links li a {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 0.5rem;
  transition: opacity ease 0.3s;
}
.hamburger__links li a:hover {
  opacity: 0.7;
}

/* =============================================
  main visual
============================================= */
.mv {
  margin-top: -10rem;
  position: relative;
}
.mv--page {
  position: relative;
  z-index: 0;
}
.mv--page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 108, 108, 0.25);
  z-index: 2;
}
.mv--page .mv__slider img {
  height: 680px;
}
@media screen and (max-width: 768px) {
  .mv--page .mv__slider img {
    height: 475px;
  }
}
.mv__slider {
  position: relative;
  overflow: hidden;
}
.mv__slider img {
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mv__slider img {
    aspect-ratio: 375/620;
    height: auto;
  }
}
.mv__slider.swiper-slide-active img, .mv__slider.swiper-slide-duplicate-active img, .mv__slider.swiper-slide-prev img {
  animation: scaleImage 8s linear normal both;
}
@keyframes scaleImage {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.mv__info {
  position: absolute;
  left: 8rem;
  bottom: 5rem;
  width: calc(100% - 35rem);
}
@media screen and (max-width: 1350px) {
  .mv__info {
    left: 4rem;
    width: calc(100% - 30rem);
  }
}
@media screen and (max-width: 768px) {
  .mv__info {
    left: 2rem;
    bottom: 3rem;
    width: calc(100% - 13rem);
  }
}
.mv__subtitle {
  color: #fff;
  font-size: 5.5rem;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .mv__subtitle {
    font-size: 3rem;
  }
}
.mv__title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-shadow: 2px 2px 1px #333;
  margin-top: 0.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 1.6rem;
  }
}
.mv__btn {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .mv__btn {
    margin-top: 1.5rem;
  }
}
.mv__arrow {
  position: absolute;
  right: 172px;
  bottom: 83px;
  width: 61px;
}
@media screen and (max-width: 768px) {
  .mv__arrow {
    right: 2rem;
    bottom: 3.5rem;
  }
}
.mv__prev {
  left: 0;
  transition: opacity ease 0.3s;
}
.mv__prev:hover {
  opacity: 0.7;
}
.mv__prev::after {
  content: "";
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
  width: 20px;
  height: 8.5px;
  transform: rotate(180deg);
}
.mv__next {
  right: 0;
  transition: opacity ease 0.3s;
}
.mv__next:hover {
  opacity: 0.7;
}
.mv__next::after {
  content: "";
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
  width: 20px;
  height: 8.5px;
}
.mv__paginate {
  top: auto;
  left: auto;
  right: 83px;
  bottom: 52px;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  font-size: 1.6rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .mv__paginate {
    right: 2rem;
    bottom: 6rem;
  }
}
.mv__paginate svg {
  position: absolute;
  top: -2px;
  left: -2px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 188.49 188.49;
  animation: loader 8.05s infinite;
  vertical-align: middle;
  transform: rotate(-90deg);
}
@keyframes loader {
  0% {
    stroke-dashoffset: 188.49;
    animation-timing-function: linear;
  }
  88% {
    stroke-dashoffset: 0;
    animation-timing-function: cubic-bezier(0.6, 0, 0, 0.9);
  }
  100% {
    stroke-dashoffset: -188.49;
    animation-timing-function: cubic-bezier(0, 0, 0, 0.9);
  }
}
.mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  transition: opacity ease 0.6s, visibility ease 0.6s;
}
@media screen and (max-width: 768px) {
  .mv__video {
    aspect-ratio: 375/620;
    height: auto;
  }
}
.mv__video.is-hide {
  opacity: 0;
  visibility: hidden;
}
.mv__skip {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .mv__skip {
    bottom: 3rem;
    right: 2rem;
  }
}
.mv__skip.is-hide {
  opacity: 0;
  visibility: hidden;
}
.mv__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 1.2rem;
  color: #fff;
  transition: opacity ease 0.3s;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .mv__scroll {
    display: none;
  }
}
.mv__scroll:hover {
  opacity: 0.7;
}
.mv__scroll::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: calc(50% - 1.5rem);
  width: 2.6rem;
  height: 4rem;
  border-radius: 2rem;
  border: 1px solid #fff;
}
.mv__scroll::after {
  content: "";
  position: absolute;
  top: -4rem;
  left: calc(50% - 2px);
  width: 2px;
  height: 0.7rem;
  border-radius: 1rem;
  background-color: #fff;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0.3;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
/* =============================================
  business
============================================= */
.business-info {
  margin-bottom: 20rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-info {
    margin-bottom: 6.5rem;
  }
}
.business-info:last-child {
  margin-bottom: 0;
}
.business-info__body {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .business-info__body {
    max-width: none;
  }
}
.business-info__title {
  font-size: 4.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .business-info__title {
    font-size: 2.8rem;
  }
}
.business-info__text {
  margin-top: 2.5rem;
  text-align: justify;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .business-info__text {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.business-info__text span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .business-info__text span {
    font-size: 1.8rem;
  }
}
.business-info__text a {
  color: var(--color-primary);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--color-primary);
  transition: opacity ease 0.3s;
}
.business-info__text a:hover {
  opacity: 0.7;
}
.business-info__case {
  border-top: 1px solid var(--color-primary);
  margin-top: 1rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .business-info__case {
    margin-top: 0.5rem;
    padding-top: 1rem;
  }
}
.business-info__case li {
  color: var(--color-primary);
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .business-info__case li {
    font-size: 1.4rem;
  }
}
.business-info__case li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
.business-info__list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .business-info__list {
    margin-top: 1.5rem;
  }
}
.business-info__list li {
  font-size: 1.4rem;
  line-height: 2;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .business-info__list li {
    font-size: 1.2rem;
  }
}
.business-info__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.business-info__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .business-info__btn {
    margin-top: 3rem;
  }
}
.business-info__image {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 580px;
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .business-info__image {
    left: 530px;
  }
}
@media screen and (max-width: 768px) {
  .business-info__image {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 4.5rem;
  }
}

/* =============================================
  case
============================================= */
.case {
  margin-top: 9rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .case {
    margin-top: 6.5rem;
  }
}
.case__list {
  max-width: calc(1200px + 8rem);
  padding: 0 4rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 90px 3px;
}
@media screen and (max-width: 768px) {
  .case__list {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding: 0 2rem;
  }
}
.case__body {
  padding: 2.5rem 2rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case__body {
    padding: 1.5rem 0 0;
  }
}
.case__pref {
  background-color: #7E7E7E;
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.2rem 1.5rem;
  max-width: calc(100% - 7.5rem);
}
.case__img {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .case__img {
    max-height: 280px;
  }
}
.case__img img {
  width: 100%;
  aspect-ratio: 398/450;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform ease 0.3s;
}
.case__link {
  display: block;
  position: relative;
}
.case__link:hover .case__arrow {
  background-color: var(--color-primary);
}
.case__link:hover .case__arrow .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.case__link:hover .case__arrow .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.case__link:hover .case__img img {
  transform: scale(1.1);
}
.case__title {
  font-size: 1.8rem;
  margin: 1rem 0;
  font-weight: 400;
}
.case__categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .case__categories {
    padding: 0;
  }
}
.case__categories a {
  display: inline-block;
  min-width: 11rem;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2rem;
  text-align: center;
  color: var(--color-primary);
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 1.5rem;
  font-size: 1.1rem;
  transition: background-color ease 0.3s, color ease 0.3s;
}
.case__categories a:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.case__arrow {
  position: absolute;
  top: 2.7rem;
  right: 2rem;
  display: inline-block;
  width: 6rem;
  height: 2.2rem;
  border-radius: 1.1rem;
  background-color: var(--color-black);
  transition: background-color ease 0.4s;
}
@media screen and (max-width: 768px) {
  .case__arrow {
    right: 0;
    top: 1.7rem;
  }
}
.case__arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 20px;
  height: 8.7px;
}
.case__arrow .arrow::before, .case__arrow .arrow::after {
  content: "";
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.case__arrow .arrow::after {
  transform: translateX(-150%);
}
.case__new {
  position: absolute;
  top: 0;
  left: 20px;
}

/* =============================================
  company & recruit
============================================= */
.cr-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .cr-box {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.cr-box__item {
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.cr-box__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.cr-box__item:hover .cr-box__image {
  transform: scale(1.1);
}
.cr-box__item:hover .cr-box__arrow {
  background-color: var(--color-primary);
}
.cr-box__item:hover .cr-box__arrow .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.cr-box__item:hover .cr-box__arrow .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.cr-box__title {
  position: absolute;
  left: 2.5rem;
  bottom: 1.5rem;
  font-size: 4.5rem;
  color: #fff;
  font-weight: 400;
  z-index: 3;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .cr-box__title {
    font-size: 3.2rem;
  }
}
.cr-box__arrow {
  position: absolute;
  right: 3.2rem;
  bottom: 2.5rem;
  display: inline-block;
  width: 6rem;
  height: 2.2rem;
  border-radius: 1.1rem;
  background-color: #fff;
  z-index: 2;
  transition: background-color ease 0.4s;
}
@media screen and (max-width: 768px) {
  .cr-box__arrow {
    width: 4rem;
  }
}
.cr-box__arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 20px;
  height: 8.7px;
}
@media screen and (max-width: 768px) {
  .cr-box__arrow .arrow {
    width: 1.3rem;
  }
}
.cr-box__arrow .arrow::before, .cr-box__arrow .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cr-box__arrow .arrow::before {
  background: no-repeat url(../img/btn_arrow_black.svg) center center/contain;
}
.cr-box__arrow .arrow::after {
  transform: translateX(-150%);
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
}
.cr-box__image {
  transition: transform ease 0.4s;
}

/* =============================================
  form
============================================= */
.form {
  max-width: 800px;
  margin: 0 auto;
}
.form--gray {
  max-width: none;
}
.form__list--gray {
  background-color: #F2F2F2;
  padding: 8.5rem 10rem;
}
@media screen and (max-width: 768px) {
  .form__list--gray {
    width: 100vw;
    margin-left: -2.5rem;
    padding: 5rem 2rem;
  }
}
.form__item {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .form__item {
    margin-bottom: 3rem;
  }
}
.form__item:last-child {
  margin-bottom: 0;
}
.form__item dt {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .form__item dt {
    font-size: 1.4rem;
  }
}
.form__item dt span {
  color: #EB4848;
  font-size: 1rem;
  vertical-align: super;
}
.form__item dd input[type=text],
.form__item dd input[type=email],
.form__item dd input[type=tel],
.form__item dd select,
.form__item dd textarea {
  width: 100%;
  height: 6rem;
  border: 1px solid #C7C7C7;
  border-radius: 5px;
  padding: 0 1.5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .form__item dd input[type=text],
  .form__item dd input[type=email],
  .form__item dd input[type=tel],
  .form__item dd select,
  .form__item dd textarea {
    font-size: 12px;
  }
}
.form__item dd input[type=text]::-moz-placeholder, .form__item dd input[type=email]::-moz-placeholder, .form__item dd input[type=tel]::-moz-placeholder, .form__item dd select::-moz-placeholder, .form__item dd textarea::-moz-placeholder {
  color: #D1D1D1;
}
.form__item dd input[type=text]::placeholder,
.form__item dd input[type=email]::placeholder,
.form__item dd input[type=tel]::placeholder,
.form__item dd select::placeholder,
.form__item dd textarea::placeholder {
  color: #D1D1D1;
}
.form__item dd input[type=text].is-borderless,
.form__item dd input[type=email].is-borderless,
.form__item dd input[type=tel].is-borderless,
.form__item dd select.is-borderless,
.form__item dd textarea.is-borderless {
  border: none;
}
.form__item dd input[name=postal] {
  max-width: 420px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .form__item dd input[name=postal] {
    max-width: none;
  }
}
.form__item dd textarea {
  resize: none;
  height: 21rem;
  padding: 1.5rem;
}
.form__item dd.select-wrap {
  position: relative;
}
.form__item dd.select-wrap::after {
  content: "";
  width: 2rem;
  height: 2rem;
  border-left: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form__item dd.select-wrap::after {
    width: 1.4rem;
    height: 1.4rem;
    right: 2rem;
    top: 2rem;
  }
}
.form__privacy {
  margin-top: 9rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__privacy {
    margin-top: 6rem;
  }
}
.form__privacy input {
  display: none;
}
.form__privacy a {
  border-bottom: 1px solid #656565;
  padding-bottom: 5px;
  transition: color ease 0.3s, border ease 0.3s;
}
.form__privacy a:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.form__privacy label {
  position: relative;
  padding-left: 3.5rem;
}
.form__privacy label::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 1px solid #656565;
  position: absolute;
  top: 0;
  left: 0;
}
.form__privacy label::after {
  content: "";
  width: 1.6rem;
  height: 0.6rem;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  position: absolute;
  top: 4px;
  left: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity ease 0.3s;
}
.form__privacy input:checked + label::after {
  opacity: 1;
}
.form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 8.5rem;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .form__btn {
    margin-top: 4.5rem;
    gap: 3rem;
  }
}

/* =============================================
  footer
============================================= */
.footer {
  background-color: var(--color-black);
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}
.footer__inner {
  padding: 0 8.5rem;
}
@media screen and (max-width: 1350px) {
  .footer__inner {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1000px) {
  .footer__inner {
    padding: 0 2rem;
  }
}
.footer__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__flex {
    flex-direction: column;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__logo p {
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__logo p {
    font-size: 1.8rem;
  }
}
.footer__text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
}
.footer__text:nth-of-type(1) {
  margin-top: 2rem;
}
.footer__text:nth-of-type(2) {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .footer__text:nth-of-type(2) {
    margin-top: 2rem;
  }
}
.footer__text:nth-of-type(3) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__text:nth-of-type(3) {
    margin-top: 2rem;
  }
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__list > li {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__list > li {
    margin-bottom: 2rem;
  }
}
.footer__list > li:last-child {
  margin-bottom: 0;
}
.footer__list > li a {
  color: #fff;
}
.footer__list > li ul {
  margin: 1rem 0 4rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__list > li ul {
    margin: 0.7rem 0 0;
  }
}
.footer__list > li ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__list > li ul li {
    margin-bottom: 0.9rem;
  }
}
.footer__list > li ul li:last-child {
  margin-bottom: 0;
}
.footer__list > li ul li::before {
  position: absolute;
  content: "・";
  color: #fff;
  top: 0.2rem;
  left: 0;
}
.footer__list > li ul li a {
  font-size: 1.2rem;
}
.footer__bottom {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 4.5rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.footer__links ul {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 768px) {
  .footer__links ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.footer__links ul li a {
  color: #fff;
  font-size: 1.2rem;
  transition: opacity ease 0.3s;
}
.footer__links ul li a:hover {
  opacity: 0.7;
}
.footer__links ul li a img {
  margin-left: 0.8rem;
  margin-top: -0.25rem;
  display: inline-block;
}
.footer__copy {
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 1rem;
    text-align: center;
  }
}

/* =============================================
  page
============================================= */
.page {
  margin-top: -10rem;
}
.page-mv {
  width: 100%;
  height: 68rem;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page-mv {
    height: 47.5rem;
    margin-bottom: 0;
  }
}
.page-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 108, 108, 0.25);
}
.page-mv--case {
  background-image: url(../img/case/mv.jpg);
}
@media screen and (max-width: 768px) {
  .page-mv--case {
    background-image: url(../img/case/mv-sp.jpg);
  }
}
.page-mv--job {
  background-image: url(../img/job/mv.jpg);
}
@media screen and (max-width: 768px) {
  .page-mv--job {
    background-image: url(../img/job/mv-sp.jpg);
  }
}
.page-mv--recruit {
  background-image: url(../img/recruit/mv.jpg?v=1.0.1);
}
@media screen and (max-width: 768px) {
  .page-mv--recruit {
    background-image: url(../img/recruit/mv-sp.jpg?v=1.0.1);
  }
}
.page-mv--company {
  background-image: url(../img/company/mv.jpg?v=1.0.0);
}
@media screen and (max-width: 768px) {
  .page-mv--company {
    background-image: url(../img/company/mv-sp.jpg?v=1.0.0);
  }
}
.page-mv--course {
  background-image: url(../img/course/mv.jpg);
}
@media screen and (max-width: 768px) {
  .page-mv--course {
    background-image: url(../img/course/mv-sp.jpg);
  }
}
.page-mv--dr {
  background-image: url(../img/dr/mv.jpg);
}
@media screen and (max-width: 768px) {
  .page-mv--dr {
    background-image: url(../img/dr/mv-sp.jpg);
  }
}
.page-mv--system {
  background-image: url(../img/system/mv.jpg?v=1);
}
@media screen and (max-width: 768px) {
  .page-mv--system {
    background-image: url(../img/system/mv-sp.jpg?v=1);
  }
}
.page-mv--facility {
  background-image: url(../img/facility/mv.jpg);
}
@media screen and (max-width: 768px) {
  .page-mv--facility {
    background-image: url(../img/facility/mv-sp.jpg);
  }
}
.page-mv--item {
  background-image: url(../img/item/mv.jpg);
}
@media screen and (max-width: 768px) {
  .page-mv--item {
    background-image: url(../img/item/mv-sp.jpg);
  }
}
.page-mv--plan {
  background-image: url(../img/plan/mv.jpg?v=1.0.0);
}
@media screen and (max-width: 768px) {
  .page-mv--plan {
    background-image: url(../img/plan/mv-sp.jpg?v=1.0.0);
  }
}
.page-mv__head {
  position: absolute;
  left: 8rem;
  bottom: 4rem;
  width: calc(100% - 16rem);
}
@media screen and (max-width: 1350px) {
  .page-mv__head {
    left: 4rem;
    width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 768px) {
  .page-mv__head {
    left: 2rem;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }
}
.page-mv__head--fixed {
  left: 8rem;
  bottom: 4rem;
  z-index: 3;
  padding-right: 25rem;
}
@media screen and (max-width: 768px) {
  .page-mv__head--fixed {
    left: 2rem;
    bottom: 2rem;
    padding-right: 10rem;
  }
}
.page-mv__title {
  color: #fff;
  font-size: 8rem;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .page-mv__title {
    font-size: 4.2rem;
  }
}
.page-mv__title--sm {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: -1rem;
}
@media screen and (max-width: 768px) {
  .page-mv__title--sm {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.page-mv__subtitle {
  color: #fff;
  margin-top: 1.5rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-mv__subtitle {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
}
.page-image {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .page-image {
    margin-top: 3rem;
  }
}
.page-contact {
  padding: 8rem 0 6rem;
  border-top: 1px solid var(--color-black);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-contact {
    padding: 3.5rem 0;
  }
}
.page-contact__content {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-contact__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}
.page-contact__text {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-contact__text {
    font-size: 1.4rem;
  }
}
.page-contact__title {
  font-size: 11rem;
  font-weight: 400;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .page-contact__title {
    font-size: 6rem;
  }
}
.page-list {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .page-list {
    margin-top: 3.5rem;
  }
}
.page-list div {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 5em 1fr;
  align-items: center;
  gap: 2.5rem;
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .page-list div {
    padding: 2.5rem 0;
    grid-template-columns: 10rem 1fr;
  }
}
.page-list div:last-child {
  border-bottom: none;
}
.page-list div dt, .page-list div dd {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-list div dt, .page-list div dd {
    font-size: 1.4rem;
  }
}
.page-list div dt.flex-img, .page-list div dd.flex-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .page-list div dt.flex-img img, .page-list div dd.flex-img img {
    width: 100%;
  }
}
.page-list div dt a, .page-list div dd a {
  color: var(--color-primary);
  transition: opacity ease 0.3s;
}
.page-list div dt a:hover, .page-list div dd a:hover {
  opacity: 0.7;
}
.page-list div dt {
  font-weight: 500;
}
.page-list--lg div {
  grid-template-columns: 30rem 1fr;
}
@media screen and (max-width: 768px) {
  .page-list--lg div {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.page-box {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .page-box {
    margin-top: 5rem;
  }
}
.page-box--nospace {
  margin-top: 0;
}
.page-box__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .page-box__list {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.page-box__list--sm {
  gap: 5rem 8rem;
}
@media screen and (max-width: 768px) {
  .page-box__list--sm {
    gap: 4rem;
  }
}
.page-box__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-box__title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .page-box__title {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
}
.page-box__title--sm {
  font-size: 1.2rem;
}
.page-box__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page-box__btn {
    margin-top: 1.5rem;
  }
}
.page-box__link {
  cursor: pointer;
}
.page-box__link:hover .page-box__arrow {
  background-color: var(--color-primary);
}
.page-box__link:hover .page-box__arrow .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.page-box__link:hover .page-box__arrow .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.page-box__link--normal {
  transition: opacity ease 0.3s;
}
.page-box__link--normal:hover {
  opacity: 0.7;
}
.page-box__arrow {
  margin-top: 1rem;
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 2.2rem;
  border-radius: 1.1rem;
  background-color: var(--color-black);
  transition: background-color ease 0.4s;
}
.page-box__arrow .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 20px;
  height: 8.7px;
}
.page-box__arrow .arrow::before, .page-box__arrow .arrow::after {
  content: "";
  background: no-repeat url(../img/btn_arrow_white.svg) center center/contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-box__arrow .arrow::after {
  transform: translateX(-150%);
}
.page-box__external {
  position: relative;
  display: inline-block;
  transition: opacity ease 0.3s;
}
.page-box__external:hover {
  opacity: 0.7;
}
.page-box__external::after {
  content: "";
  background: no-repeat url(../img/icon_external_bk.svg) center center/contain;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translateY(-50%);
}
.page-media {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .page-media {
    margin-top: 6rem;
  }
}
.page-media__item {
  margin-bottom: 8rem;
  display: grid;
  grid-template-columns: 51% 44%;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .page-media__item {
    margin-bottom: 7rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.page-media__item:last-child {
  margin-bottom: 0;
}
.page-media__title {
  font-size: 2.4rem;
  font-weight: 400;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .page-media__title {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.page-media__text {
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-media__text {
    font-size: 1.4rem;
  }
}
.page-media__notes {
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 1rem;
  text-align: justify;
  line-height: 2;
}
.page-entry {
  margin: 15rem auto 0;
  max-width: 820px;
  background-color: var(--color-primary);
  padding: 4.5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  display: block;
  transition: background-color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .page-entry {
    margin: 6rem auto 0;
    width: calc(100% - 50px);
    padding: 2.5rem 4rem;
  }
}
.page-entry:hover {
  background-color: var(--color-black);
}
.page-entry:hover button .arrow::before {
  animation: btnArrowBefore ease 0.4s forwards;
}
.page-entry:hover button .arrow::after {
  animation: btnArrowAfter ease 0.4s forwards;
}
.page-entry::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: no-repeat url(../img/logo_bg.svg) top right/cover;
  height: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-entry::after {
    background: no-repeat url(../img/logo_bg_sp.svg) top right/cover;
    height: 100%;
  }
}
.page-entry__title {
  color: #fff;
  font-size: 8rem;
  font-weight: 400;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .page-entry__title {
    font-size: 4.2rem;
    text-align: center;
  }
}
.page-entry__text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-entry__text {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
  }
}
.page-entry__btn {
  position: absolute;
  right: 4.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 1.5px solid #fff;
  border-radius: 2.5rem;
  width: 13rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-entry__btn {
    position: static;
    transform: translateY(0);
    width: 7.5rem;
    height: 3.5rem;
    margin: 2rem auto 0;
  }
}
.page-entry__btn .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 38px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .page-entry__btn .arrow {
    width: 28px;
  }
}
.page-entry__btn .arrow::before, .page-entry__btn .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-entry__btn .arrow::before {
  background: no-repeat url(../img/btn_arrow_white_lg.svg) center center/contain;
}
.page-entry__btn .arrow::after {
  transform: translateX(-150%);
  background: no-repeat url(../img/btn_arrow_white_lg.svg) center center/contain;
}
.page-message {
  margin-top: 10rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-message {
    margin-top: 4rem;
    font-size: 1.4rem;
  }
}
.page-btn {
  display: flex;
  justify-content: center;
  margin-top: 8.5rem;
}
@media screen and (max-width: 768px) {
  .page-btn {
    margin-top: 4.5rem;
  }
}

/* =============================================
  single
============================================= */
.single-mv {
  width: 100%;
  height: 68rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single-mv {
    height: 47.5rem;
    margin-bottom: 0;
  }
}
.single-mv__link {
  display: block;
  position: relative;
}
.single-mv__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 108, 108, 0.25);
}
.single-mv__head {
  position: absolute;
  left: 8rem;
  bottom: 4rem;
  width: calc(100% - 16rem);
}
@media screen and (max-width: 1350px) {
  .single-mv__head {
    left: 4rem;
    width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 768px) {
  .single-mv__head {
    left: 2rem;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }
}
.single-mv__title {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: -1rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .single-mv__title {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.single-mv__bg img {
  width: 100%;
  height: 68rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .single-mv__bg img {
    height: 47.5rem;
  }
}
.single-mv__subtitle {
  color: #fff;
  margin-top: 1.5rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .single-mv__subtitle {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
}
.single-body {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 10rem 0 13rem;
}
@media screen and (max-width: 768px) {
  .single-body {
    padding: 4.5rem 0 6rem;
  }
}
.single-body > * {
  max-width: calc(1000px + 8rem);
  padding: 0 4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .single-body > * {
    padding: 0 2rem;
  }
}
.single-body > .wp-block-lazyblock-full-image {
  max-width: none;
  padding: 0;
}
.single-body > p {
  line-height: 2;
  margin-bottom: 3rem;
}
.single-body > h2 {
  margin: 17rem auto 12rem;
  font-size: 8rem;
  font-family: var(--font-en);
  position: relative;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .single-body > h2 {
    font-size: 4.2rem;
    margin: 6.8rem auto;
    padding-bottom: 3rem;
  }
}
.single-body > h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: var(--color-black);
}
.single-body > h2:first-child {
  margin: 0 auto 12rem;
}
@media screen and (max-width: 768px) {
  .single-body > h2:first-child {
    margin: 0 auto 6.8rem;
  }
}
.single-body .img {
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  .single-body .img {
    margin-bottom: 5rem;
  }
}
.single-body .img figcaption {
  margin-top: 1rem;
  display: inline-block;
}
.single-body .img img {
  aspect-ratio: 1000/600;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single-body .img img {
    aspect-ratio: 335/201;
  }
}
.single-body .img01 img {
  aspect-ratio: 1366/650;
}
@media screen and (max-width: 768px) {
  .single-body .img01 img {
    aspect-ratio: 375/178;
  }
}
.single-body .img02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem 8rem;
}
@media screen and (max-width: 768px) {
  .single-body .img02 {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding: 0 2rem;
  }
}
.single-body .img02 img {
  aspect-ratio: 460/280;
}
@media screen and (max-width: 768px) {
  .single-body .img02 img {
    aspect-ratio: 280/170;
  }
}
.single-info {
  padding: 7rem 0 4.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .single-info {
    padding: 6.5rem 0rem;
  }
}
.single-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #F2F2F2;
  z-index: -1;
}
.single-info__title {
  font-size: 2.4rem;
  font-weight: 400;
}
.single-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .single-info__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.single-info__grid dl div {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-black);
  display: grid;
  grid-template-columns: 8.5rem 1fr;
}
@media screen and (max-width: 768px) {
  .single-info__grid dl div {
    padding: 2.5rem 0;
  }
}
.single-info__grid dl div:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .single-info__grid dl div:last-child {
    border-bottom: 1px solid var(--color-black);
  }
}
.single-info__grid dl div:first-child {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-black);
}
.single-info__grid dl div dt, .single-info__grid dl div dd {
  font-size: 1.4rem;
}
.single-btn {
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single-btn {
    padding-bottom: 70px;
  }
}
.single-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .single-nav {
    top: auto;
    bottom: 0;
    transform: none;
  }
}
.single-nav--prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .single-nav--prev {
    left: 35px;
  }
}
.single-nav--next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .single-nav--next {
    right: 35px;
  }
}
.single-nav a {
  transition: opacity ease 0.3s;
}
.single-nav a:hover {
  opacity: 0.7;
}
.single-nav a .icon {
  width: 20px;
  height: 8px;
  display: inline-block;
}
.single-nav a .icon--prev {
  background: no-repeat url(../img/icon_prev.svg) center center/contain;
  margin-right: 5px;
}
.single-nav a .icon--next {
  background: no-repeat url(../img/icon_next.svg) center center/contain;
  margin-left: 5px;
}

/* =============================================
  recruit
============================================= */
.recruit-job {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .recruit-job {
    margin-top: 8.5rem;
  }
}
.recruit-job__item {
  margin-bottom: 15rem;
  display: grid;
  grid-template-columns: 50% 40%;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .recruit-job__item {
    margin-bottom: 8.5rem;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.recruit-job__item:last-child {
  margin-bottom: 0;
}
.recruit-job__title {
  font-size: 4.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .recruit-job__title {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
.recruit-job__subtitle {
  font-family: "Satoshi", sans-serif;
  text-transform: uppercase;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .recruit-job__subtitle {
    font-size: 1.4rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.recruit-job__subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
}
.recruit-job__text {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .recruit-job__text {
    font-size: 1.4rem;
  }
}
.recruit-job__list {
  margin-top: 2rem;
}
.recruit-job__list li {
  font-size: 1.4rem;
  line-height: 2;
  list-style-type: disc;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .recruit-job__list li {
    font-size: 1.2rem;
  }
}
.recruit-job__list li.none {
  list-style: none;
  margin-left: 0;
}
.recruit-job__image {
  width: 100%;
}
.recruit-benefit {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .recruit-benefit {
    margin-top: 4.5rem;
  }
}
.recruit-benefit__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem 4rem;
}
@media screen and (max-width: 768px) {
  .recruit-benefit__list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.recruit-benefit__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruit-benefit__item {
    grid-template-columns: 8.5rem 1fr;
    gap: 1.5rem;
  }
}
.recruit-benefit__label {
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .recruit-benefit__label {
    font-size: 1.8rem;
  }
}
.recruit-benefit__text {
  line-height: 2;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .recruit-benefit__text {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}

/* =============================================
  privacy
============================================= */
.privacy-list {
  margin-top: 10rem;
  counter-reset: number;
  list-style-type: none;
}
@media screen and (max-width: 768px) {
  .privacy-list {
    margin-top: 4rem;
  }
}
.privacy-list__item {
  position: relative;
  padding-left: 3rem;
  line-height: 2;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .privacy-list__item {
    font-size: 1.4rem;
  }
}
.privacy-list__item:last-child {
  margin-bottom: 0;
}
.privacy-list__item::before {
  position: absolute;
  top: 6px;
  left: 0;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .privacy-list__item::before {
    top: 3px;
  }
}
.privacy-list__item.none::before {
  content: none;
}

/* =============================================
  construction history
============================================= */
.construction-table {
  margin-top: 10rem;
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  .construction-table {
    margin-top: 4rem;
  }
}
.construction-table table {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .construction-table table {
    min-width: 1000px;
  }
}
.construction-table table tr th {
  padding: 1rem 0;
  font-weight: 400;
  background-color: var(--color-primary);
  color: #fff;
  text-align: left;
}
.construction-table table tr th:first-child {
  padding-left: 15px;
}
.construction-table table tr td {
  text-align: left;
  padding: 2rem 0;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--color-black);
}
.construction-table table tr td:first-child {
  padding-left: 15px;
}

/* =============================================
  company
============================================= */
.company-message {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .company-message {
    margin-top: 4rem;
  }
}
.company-message__title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .company-message__title {
    font-size: 2rem;
  }
}
.company-message__text {
  margin-top: 3.5rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .company-message__text {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}
.company-map {
  margin-top: 14rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .company-map {
    margin-top: 8.5rem;
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.company-map__item {
  padding-bottom: 71%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company-map__item {
    padding-bottom: 0;
  }
}
.company-map__title {
  font-weight: 400;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company-map__title {
    font-size: 1.4rem;
  }
}
.company-map__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}
.company-map__address {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .company-map__address {
    font-size: 1.4rem;
  }
}
.company-map__iframe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 460/300;
}
@media screen and (max-width: 768px) {
  .company-map__iframe {
    position: static;
    margin-top: 2rem;
  }
}
.company-group {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .company-group {
    margin-top: 4rem;
  }
}
.company-group__item {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .company-group__item {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.company-group__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.company-group__title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .company-group__title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.company-group__list div {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 13rem 1fr;
}
@media screen and (max-width: 768px) {
  .company-group__list div {
    padding: 0.7rem 0;
    grid-template-columns: 11rem 1fr;
  }
}
.company-group__list div dt, .company-group__list div dd {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .company-group__list div dt, .company-group__list div dd {
    font-size: 1.4rem;
  }
}
.company-group__list div dt a, .company-group__list div dd a {
  color: var(--color-primary);
  transition: opacity ease 0.3s;
}
.company-group__list div dt a:hover, .company-group__list div dd a:hover {
  opacity: 0.7;
}
.company-group__list div dt {
  font-weight: 500;
}

/* =============================================
  plan
============================================= */
.plan-flow__title {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .plan-flow__title {
    text-align: center;
    font-size: 2rem;
  }
}
.plan-flow__figure {
  margin-top: 3.5rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .plan-flow__figure {
    max-width: 280px;
    margin: 3rem auto 0;
  }
}

/* =============================================
  system
============================================= */
.system-content {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .system-content {
    margin-top: 6rem;
  }
}
.system-content__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .system-content__title {
    font-size: 2rem;
  }
}
.system-content__text {
  margin-top: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .system-content__text {
    font-size: 1.4rem;
  }
}
.system-content__grid {
  display: grid;
}
.system-content__grid01 {
  margin-top: 5rem;
  grid-template-columns: 32% 61%;
  gap: 7%;
}
@media screen and (max-width: 768px) {
  .system-content__grid01 {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .system-content__grid01 img:first-child {
    width: 237px;
    justify-self: center;
  }
}
.system-content__grid02 {
  margin-top: 10rem;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .system-content__grid02 {
    margin-top: 3rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.system-content__grid02 figcaption {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 400;
}
.system-content__grid02 img {
  width: 100%;
}
.system-content__grid03 {
  margin-top: 6rem;
  grid-template-columns: 29% 1fr;
  gap: 10%;
  padding-left: 6rem;
}
@media screen and (max-width: 768px) {
  .system-content__grid03 {
    margin-top: 3rem;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .system-content__grid03 img {
    justify-self: center;
    max-width: 187px;
  }
}
.system-content__bg {
  margin-top: 5rem;
  background-color: #EEEEEF;
  padding: 6rem;
}
@media screen and (max-width: 768px) {
  .system-content__bg {
    padding: 6rem 2rem;
    width: 100vw;
    margin-left: -2rem;
  }
}
.system-content__bg h4 {
  position: relative;
  padding-left: 2rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
  font-weight: 500;
}
.system-content__bg h4:first-of-type {
  margin-top: 0;
}
.system-content__bg h4::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.system-pict__item {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 7.3rem 1fr;
  gap: 1.5rem;
  align-items: center;
}
.system-pict__item:last-child {
  margin-bottom: 0;
}
.system-pict__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .system-pict__title {
    font-size: 1.6rem;
  }
}
.system-pict__text {
  font-size: 1.4rem;
}

/* =============================================
  modal
============================================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 10000;
  text-align: center;
  transition: opacity ease 0.3s;
  padding: 8rem 0;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 4rem 0;
  }
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal__body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 8rem);
  max-width: 1000px;
  background-color: #fff;
  border-radius: 3rem;
  padding: 11rem 8rem;
}
@media screen and (max-width: 768px) {
  .modal__body {
    width: calc(100% - 4rem);
    border-radius: 2rem;
    padding: 6.5rem 2rem;
  }
}
.modal__close {
  position: absolute;
  display: inline-block;
  background-color: var(--color-primary);
  border-radius: 50%;
  top: -4rem;
  right: -4rem;
  width: 8rem;
  height: 8rem;
  transition: filter ease 0.3s;
}
@media screen and (max-width: 768px) {
  .modal__close {
    width: 4rem;
    height: 4rem;
    top: -2rem;
    right: -1rem;
  }
}
.modal__close:hover {
  filter: brightness(1.2);
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 35px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
}
@media screen and (max-width: 768px) {
  .modal__close::before, .modal__close::after {
    width: 16px;
  }
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__list {
  display: grid;
  margin-bottom: 4.5rem;
  gap: 4.5rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .modal__list {
    margin-bottom: 2.5rem;
    gap: 2.5rem;
  }
}
.modal__list:last-of-type {
  margin-bottom: 0;
}
.modal__list img {
  width: 100%;
}
.modal__list--2col {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .modal__list--2col {
    grid-template-columns: 1fr;
  }
}
.modal__list--2col73 {
  grid-template-columns: 65% 1fr;
}
@media screen and (max-width: 768px) {
  .modal__list--2col73 {
    grid-template-columns: 1fr;
  }
}
.modal__list--3col {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .modal__list--3col {
    grid-template-columns: 1fr 1fr;
  }
}
.modal__item {
  text-align: left;
}
.modal__label {
  font-size: 1.6rem;
  margin-top: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .modal__label {
    font-size: 1.4rem;
  }
}
.modal__text {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  line-height: 1.9;
}
.modal__button {
  margin: 9rem auto 0;
  width: 18rem;
  height: 4.5rem;
  line-height: 4.5rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 5px;
  font-weight: 500;
  transition: color ease 0.3s, background-color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .modal__button {
    margin: 6rem auto 0;
  }
}
.modal__button:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* =============================================
  contact
============================================= */
.contact-form {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .contact-form {
    margin-top: 4rem;
  }
}
.contact-form__text {
  margin-bottom: 10rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact-form__text {
    margin-bottom: 4rem;
    font-size: 1.4rem;
  }
}
.contact-form__text span {
  color: #EB4848;
}

/* =============================================
  animation
============================================= */
@keyframes btnArrowBefore {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes btnArrowAfter {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0%);
  }
}