@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  color: #231815;
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.24em;
  line-height: 2;
  overflow-x: clip;
  position: relative;
}
@media (max-width: 767px) {
  body {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
}

ul,
ol {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a[href^="tel:"] {
  cursor: default;
  opacity: 1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

p {
  text-wrap: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.4s;
}
@media (max-width: 767px) {
  .header {
    padding: 8px 14px;
  }
}
.header--default .logo__img {
  filter: none;
}
.header--default .nav__link {
  color: #000;
}
.header--default .hamburger__line,
.header--default .hamburger::before,
.header--default .hamburger::after {
  background: #000;
}
.header--white .logo__img {
  filter: brightness(0) invert(1);
}
.header--white .nav__link {
  color: #fff;
}
.header--white .hamburger__line,
.header--white .hamburger::before,
.header--white .hamburger::after {
  background: #fff;
}
.header--white-nav .logo__img {
  filter: none;
}
.header--white-nav .nav__link {
  color: #fff;
}
.header--white-nav .hamburger__line,
.header--white-nav .hamburger::before,
.header--white-nav .hamburger::after {
  background: #fff;
}
.header--white-l-gray-nav .logo__img {
  filter: brightness(0) invert(1);
}
.header--white-l-gray-nav .nav__link {
  color: #a8a8a8;
}
.header--white-l-gray-nav .hamburger__line,
.header--white-l-gray-nav .hamburger::before,
.header--white-l-gray-nav .hamburger::after {
  background: #a8a8a8;
}
.header--l-gray-nav .logo__img {
  filter: none;
}
.header--l-gray-nav .nav__link {
  color: #a8a8a8;
}
.header--l-gray-nav .hamburger__line,
.header--l-gray-nav .hamburger::before,
.header--l-gray-nav .hamburger::after {
  background: #a8a8a8;
}
.header--d-gray-nav .logo__img {
  filter: none;
}
.header--d-gray-nav .nav__link {
  color: #747474;
}
.header--d-gray-nav .hamburger__line,
.header--d-gray-nav .hamburger::before,
.header--d-gray-nav .hamburger::after {
  background: #747474;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 4em;
}
.header .logo__img {
  width: 80px;
  transition: filter 0.4s;
}
@media (max-width: 1024px) {
  .header .logo {
    gap: 2em;
  }
}
.header .nav__list {
  display: flex;
  align-items: center;
  gap: 2em;
}
.header .nav__link {
  font-size: 1rem;
  letter-spacing: 0;
  transition: color 0.4s, opacity 0.4s;
}
@media (max-width: 1024px) {
  .header .nav__list {
    gap: 1.2em;
  }
}
@media (max-width: 767px) {
  .header .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #0e2f60;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header .nav.is-open {
    display: flex;
  }
  .header .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
    width: 80%;
  }
  .header .nav__link {
    font-size: clamp(30px, 10vw, 46px);
    font-weight: 400;
    line-height: 1.4;
    color: #fff !important;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 201;
    position: relative;
  }
  .hamburger::before, .hamburger::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .hamburger::before {
    top: 14px;
    left: 4px;
  }
  .hamburger::after {
    bottom: 14px;
    left: 12px;
  }
  .hamburger__line {
    border-radius: 2px;
    display: block;
    position: absolute;
    width: 14px;
    height: 2px;
    transform: rotate(-30deg);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .hamburger.is-open .hamburger__line {
    opacity: 0;
  }
  .hamburger.is-open::before {
    transform: translateY(3px) rotate(45deg);
    background: #fff !important;
    left: 9px;
  }
  .hamburger.is-open::after {
    transform: translateY(-3px) rotate(-45deg);
    background: #fff !important;
    left: 9px;
  }
}

.footer {
  background: #fff;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 40px;
  }
}
.footer__top {
  border-bottom: 1px solid #646464;
  display: flex;
  justify-content: space-between;
  padding-bottom: 3.4em;
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    padding-bottom: 2.6em;
    max-width: 300px;
    margin: 0 auto;
  }
}
.footer__left {
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}
.footer__logo {
  display: block;
  width: clamp(280px, 26vw, 380px);
}
.footer__logo img {
  display: block;
}
.footer__logo span {
  color: #0e2f60;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.6em 0 0 1.4em;
}
@media (max-width: 767px) {
  .footer__logo {
    position: relative;
    left: -0.4em;
    margin: 0 auto;
  }
  .footer__logo span {
    text-align: center;
    padding: 0.2em 0 0;
  }
}
.footer__contact {
  display: block;
  background: #0e2f60;
  border: 1px solid #0e2f60;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(12px, 1vw, 12px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.6em 2.8em 1.6em 4.8em;
  margin: 0;
  width: 100%;
  max-width: 280px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .footer__contact {
    position: relative;
    margin: 2em auto 2.4em;
  }
}
.footer__contact::before {
  content: "";
  background: url(../images/common/icon-mail.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2.4em;
  width: 14px;
  height: 14px;
}
.footer__contact .arrow {
  position: absolute;
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
  width: 34px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
}
.footer__contact .arrow::before, .footer__contact .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.footer__contact .arrow::before {
  transform: rotate(45deg);
}
.footer__contact .arrow::after {
  transform: rotate(-45deg);
}
.footer__contact:hover {
  background: #fff;
  border-color: #000;
  color: #000;
}
.footer__contact:hover::before {
  filter: invert(1);
}
.footer__contact:hover .arrow {
  background-color: #000;
}
.footer__contact:hover .arrow::before, .footer__contact:hover .arrow::after {
  background-color: #000;
}
.footer__right {
  width: 32.5%;
}
@media (max-width: 767px) {
  .footer__right {
    width: 100%;
  }
}
.footer__nav {
  padding: 0 3em;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .footer__nav {
    padding: 0;
  }
}
.footer__nav .nav__link {
  color: #646464;
  display: block;
  font-size: clamp(42px, 4.2vw, 52px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.16;
  position: relative;
}
.footer__nav .nav__link .icon {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 50%;
  left: -0.8em;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background-color: #646464;
}
.footer__nav .nav__link .icon::before, .footer__nav .nav__link .icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #646464;
  transform-origin: calc(100% - 0.5px) 50%;
}
.footer__nav .nav__link .icon::before {
  transform: rotate(45deg);
}
.footer__nav .nav__link .icon::after {
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .footer__nav .nav__link .icon {
    display: none;
  }
}
.footer__nav .nav__link:hover {
  opacity: 1;
}
.footer__nav .nav__link:hover .icon {
  visibility: visible;
  opacity: 1;
}
.footer__bottom {
  color: #646464;
  padding-top: 2.6em;
}
@media (max-width: 767px) {
  .footer__bottom {
    max-width: 300px;
    margin: 0 auto;
  }
}
.footer__info {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .footer__info {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .footer__info {
    line-height: 1.5;
  }
  .footer__info .text:first-of-type {
    margin-bottom: 1em;
  }
  .footer__info .tel-02 {
    display: inline-block !important;
    width: 2.76em;
  }
}
.footer__last {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
  margin-top: 1.2em;
}
@media (max-width: 1024px) {
  .footer__last {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4em;
    margin-top: 2em;
  }
}
.footer__policy {
  order: 2;
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
  gap: 2em;
}
@media (max-width: 1024px) {
  .footer__policy {
    order: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 0 0.6em;
  }
}
.footer__policy a {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  position: relative;
}
.footer__policy a::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent currentColor;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  margin-right: 0.6em;
}
.footer__copy {
  order: 1;
  font-size: 1rem;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .footer__copy {
    order: 3;
    margin: 0 auto;
  }
}

.u-sp,
.u-tb {
  display: none !important;
}

@media (max-width: 1024px) {
  .u-pc {
    display: none !important;
  }
  .u-tb {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .u-pc-tb {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
}
.u-pd-l {
  padding: 160px 0;
}

.u-pdt-l {
  padding-top: 160px;
}

.u-pdb-l {
  padding-bottom: 160px;
}

.u-pd-m {
  padding: 120px 0;
}

.u-pdt-m {
  padding-top: 120px;
}

.u-pdb-m {
  padding-bottom: 120px;
}

.u-pd-s {
  padding: 80px 0;
}

.u-pdt-s {
  padding-top: 80px;
}

.u-pdb-s {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .u-pd-l {
    padding: 80px 0;
  }
  .u-pdt-l {
    padding-top: 80px;
  }
  .u-pdb-l {
    padding-bottom: 80px;
  }
  .u-pd-m {
    padding: 80px 0;
  }
  .u-pdt-m {
    padding-top: 80px;
  }
  .u-pdb-m {
    padding-bottom: 80px;
  }
  .u-pd-s {
    padding: 40px 0;
  }
  .u-pdt-s {
    padding-top: 40px;
  }
  .u-pdb-s {
    padding-bottom: 40px;
  }
}
section {
  position: relative;
}

.inner {
  max-width: 1130px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.inner--l {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .inner.sp-inner-s {
    padding: 0;
    width: 82%;
  }
}

.section-ttl {
  color: #0e2f60;
  font-size: clamp(30px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.6em;
}
.section-ttl.text-wh {
  color: #fff;
}
.section-ttl .text-sub {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .section-ttl {
    letter-spacing: 0.1em;
    text-align: center;
  }
  .section-ttl .text-sub {
    font-size: 1rem;
    margin-bottom: 0.2em;
  }
}
.section-ttl--en {
  color: #0e2f60;
  font-size: clamp(28px, 2.6vw, 32px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media (max-width: 767px) {
  .section-ttl--en {
    font-size: 4.6rem;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 1em;
  }
}
.section-ttl--en-s {
  color: #0e2f60;
  font-size: clamp(30px, 2.2vw, 30px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media (max-width: 767px) {
  .section-ttl--en-s {
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0.8em;
  }
}
.section-ttl--big {
  color: #fff;
  font-size: clamp(44px, 6.8vw, 100px);
  line-height: 1.25;
  margin-bottom: 0.8em;
  text-align: center;
}
.section-ttl--big span {
  display: block;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0;
}
.section-ttl--big strong {
  display: block;
  font-weight: 500;
}
@media (max-width: 767px) {
  .section-ttl--big {
    margin-bottom: 0.8em;
  }
  .section-ttl--big span {
    font-size: 23.5%;
    margin-bottom: 0.2em;
  }
}

.section-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.34em;
  margin-bottom: 3.4em;
  text-align: center;
}
@media (max-width: 767px) {
  .section-lead {
    margin-bottom: 3em;
  }
}

.text-lead {
  letter-spacing: 0.24em;
  margin-bottom: 3em;
}
@media (max-width: 767px) {
  .text-lead {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
  }
}

.font-en {
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.list--disc {
  list-style-type: none;
  text-align: left;
}
.list--disc li {
  padding-left: 1.4em;
  position: relative;
}
.list--disc li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  background: #fff;
  border-radius: 100px;
  width: 0.9em;
  height: 0.9em;
}
.list--disc.disc-blue li::before {
  background: #0e2f60;
}

.btn--s {
  display: block;
  background: #0e2f60;
  border-radius: 100px;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: left;
  position: relative;
  padding: 0.2em 1.4em;
  width: 100%;
  max-width: 130px;
}
@media (max-width: 767px) {
  .btn--s {
    max-width: 110px;
  }
}
.btn--s .arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.btn--s .arrow::before, .btn--s .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn--s .arrow::before {
  transform: rotate(45deg);
}
.btn--s .arrow::after {
  transform: rotate(-45deg);
}

.btn--m {
  display: block;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(12px, 1vw, 12px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.14em;
  text-align: left;
  position: relative;
  padding: 1.6em 2.8em;
  margin: 0 auto;
  width: 100%;
  max-width: 240px;
}
@media (max-width: 767px) {
  .btn--m {
    padding: 1.4em 2.6em;
  }
}
.btn--m .arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.btn--m .arrow::before, .btn--m .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn--m .arrow::before {
  transform: rotate(45deg);
}
.btn--m .arrow::after {
  transform: rotate(-45deg);
}
.btn--m:hover {
  opacity: 1;
  background: #fff;
  color: #231815;
}
.btn--m:hover .arrow {
  background-color: #231815;
}
.btn--m:hover .arrow::before, .btn--m:hover .arrow::after {
  background-color: #231815;
}
.btn--m.btn--black {
  background: #fff;
  border-color: #231815;
  color: #231815;
}
.btn--m.btn--black .arrow {
  background-color: #231815;
}
.btn--m.btn--black .arrow::before, .btn--m.btn--black .arrow::after {
  background-color: #231815;
}
.btn--m.btn--black:hover {
  opacity: 1;
  background: #0e2f60;
  border-color: #0e2f60;
  color: #fff;
}
.btn--m.btn--black:hover .arrow {
  background-color: #fff;
}
.btn--m.btn--black:hover .arrow::before, .btn--m.btn--black:hover .arrow::after {
  background-color: #fff;
}
.btn--m.btn--blue {
  border-color: #0e2f60;
  color: #0e2f60;
}
.btn--m.btn--blue .arrow {
  background-color: #0e2f60;
}
.btn--m.btn--blue .arrow::before, .btn--m.btn--blue .arrow::after {
  background-color: #0e2f60;
}
.btn--m.btn--blue:hover {
  opacity: 1;
  background: #0e2f60;
  border-color: #0e2f60;
  color: #fff;
}
.btn--m.btn--blue:hover .arrow {
  background-color: #fff;
}
.btn--m.btn--blue:hover .arrow::before, .btn--m.btn--blue:hover .arrow::after {
  background-color: #fff;
}

.mv {
  position: relative;
  height: 200vh;
}
.mv__bg {
  position: fixed;
  inset: 0;
}
.mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.62);
  pointer-events: none;
  z-index: 1;
}
.mv__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv__sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.mv__sticky.is-unfixed {
  position: absolute;
  bottom: 0;
  top: auto;
}
.mv__ttl {
  color: #fff;
  font-size: clamp(16px, 2.8vw, 38px);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-align: center;
}
.mv__ttl .text {
  display: block;
}
.mv__ttl strong {
  display: block;
  font-size: 536%;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mv__ttl span.font-en {
  display: block;
  font-size: 60%;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .mv__ttl {
    margin-top: -13vh;
  }
  .mv__ttl .text {
    display: inline-block;
    text-orientation: upright;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
    width: 2em;
  }
  .mv__ttl span.font-en {
    font-size: 80%;
  }
}
.mv__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mv__stage--logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 2s ease;
}
.mv__stage--logo.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.mv__stage--catch {
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
}
.mv__stage--catch.is-visible {
  opacity: 1;
}
.mv__logo-mark {
  width: clamp(100px, 14vw, 160px);
}
.mv__catch-logo {
  display: block;
  margin: 2.8em auto 0;
  width: clamp(140px, 12vw, 156px);
}
@media (max-width: 767px) {
  .mv__catch-logo {
    margin-top: 1.8em;
  }
}
.mv__catch-item {
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
}
@media (max-width: 1024px) {
  .mv__catch-item {
    gap: 2em;
    justify-content: center;
    width: 94vw;
  }
}
.mv__catch-copy {
  font-size: clamp(16px, 2.2vw, 18px);
  letter-spacing: 0.38em;
  line-height: 3.2;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}
.mv__catch-copy span,
.mv__catch-copy strong {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
}
.mv__catch-copy.text-l strong {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: inherit;
  line-height: 2.4;
}
@media (max-width: 1024px) {
  .mv__catch-copy {
    width: 16em;
    height: 100%;
  }
  .mv__catch-copy.text-l {
    width: 8em;
  }
}
@media (max-width: 767px) {
  .mv__catch-copy {
    line-height: 2.4;
    width: 12.6em;
  }
  .mv__catch-copy.text-l {
    width: 5.4em;
  }
  .mv__catch-copy.text-l strong {
    line-height: 2.2;
  }
}

.news {
  background: #e6e6e6;
}
@media (max-width: 767px) {
  .news .section-ttl--en {
    margin-bottom: 0.6em;
  }
}
.news__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news__body {
    flex-direction: column-reverse;
  }
}
.news__img-area {
  position: relative;
  max-height: 460px;
  width: 44%;
}
@media (max-width: 1024px) {
  .news__img-area {
    margin: 0 auto 2.6em;
    width: 90%;
  }
}
.news__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.news__btn.btn--s {
  background: #e6e6e6;
  border: 1px solid #000;
  color: #000;
  margin-top: 6em;
  max-width: 270px;
}
.news__btn.btn--s .arrow {
  background-color: #000;
}
.news__btn.btn--s .arrow::before, .news__btn.btn--s .arrow::after {
  background-color: #000;
}
.news__btn.btn--s:hover {
  opacity: 1;
  background: #0e2f60;
  border-color: #0e2f60;
  color: #fff;
}
.news__btn.btn--s:hover .arrow {
  background-color: #fff;
}
.news__btn.btn--s:hover .arrow::before, .news__btn.btn--s:hover .arrow::after {
  background-color: #fff;
}
@media (max-width: 1024px) {
  .news__btn.btn--s {
    margin-top: 2em;
  }
}
@media (max-width: 767px) {
  .news__btn.btn--s {
    padding: 1em 4em 1em 2em;
    margin: 3em auto 1em;
  }
  .news__btn.btn--s .arrow {
    right: 20px;
  }
}

.news-list {
  width: 56%;
}
@media (max-width: 1024px) {
  .news-list {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .news-list {
    width: 100%;
  }
  .news-list li {
    margin-bottom: 0.4em;
  }
}
.news-list__link {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  cursor: pointer;
  padding-right: clamp(110px, 5.2vw, 140px);
  padding-left: 3em;
}
@media (max-width: 1024px) {
  .news-list__link {
    padding: 0 4em 0 2em;
  }
}
@media (max-width: 767px) {
  .news-list__link {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    margin: 0 auto;
    width: 90%;
  }
}
.news-list__info {
  border-bottom: 1px solid #231815;
  display: flex;
  align-items: flex-start;
  gap: 6%;
  padding: 3.2rem 0;
  width: clamp(520px, 38vw, 546px);
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .news-list__info {
    border-bottom: 0;
    flex-direction: column;
    gap: 0.2em;
    padding: 2em 1.8em 2.4em;
    width: 100%;
  }
}
.news-list li:last-of-type .news-list__info {
  border-bottom: 0;
}
.news-list__date {
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.08em;
  width: 20%;
}
@media (max-width: 767px) {
  .news-list__date {
    width: 100%;
  }
}
.news-list__text {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  width: 74%;
}
@media (max-width: 767px) {
  .news-list__text {
    width: 100%;
  }
}
.news-list__more {
  display: none;
  margin-top: 2em;
}
@media (max-width: 767px) {
  .news-list__more {
    display: block;
  }
}
.news-list__link:hover, .news-list__link.is-active {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
}
.news-list__link:hover .news-list__info, .news-list__link.is-active .news-list__info {
  border-bottom: 0;
  flex-direction: column;
  gap: 0.2em;
}
.news-list__link:hover .news-list__more, .news-list__link.is-active .news-list__more {
  display: block;
}

.about {
  background: url(../images/top/top-about-bg.webp) no-repeat center/cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about {
    background: url(../images/top/top-about-bg-s.webp) no-repeat center/cover;
  }
}
.about__ttl {
  text-align: center;
  margin-bottom: 2em;
}
.about__ttl > strong {
  display: inline-block;
  color: #fff;
  font-size: clamp(50px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .about__ttl {
    margin-bottom: 1.6em;
  }
  .about__ttl > strong {
    line-height: 1.2;
  }
}
.about__lead {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .about__lead {
    margin-bottom: 3.4em;
  }
}

.about-slider {
  padding: 0;
  margin-bottom: 4em;
}
@media (max-width: 767px) {
  .about-slider {
    margin-bottom: 0;
  }
}
.about-slider__item {
  padding: 0 3em;
}
.about-slider__row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 2em;
  position: relative;
  right: -5%;
}
@media (max-width: 1024px) {
  .about-slider__row {
    flex-direction: column;
    align-items: center;
    gap: 1.4em;
    position: static;
  }
}
.about-slider__ttl {
  color: #fff;
  text-align: left;
}
.about-slider__ttl span {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .about-slider__ttl {
    text-align: center;
  }
  .about-slider__ttl span {
    line-height: 1.8;
    writing-mode: horizontal-tb;
  }
}
.about-slider__ttl-sp {
  color: #0e2f60;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.24em;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .about-slider__ttl-sp {
    font-size: 1.8rem;
  }
}
.about-slider__box a {
  background: #fff;
  padding: 0 2.6em;
  display: block;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .about-slider__box a {
    padding: 0;
  }
}
.about-slider__contents {
  padding: 0 0 3.4em;
}
@media (max-width: 1024px) {
  .about-slider__contents {
    padding: 2.6em 2.6em 3.4em;
  }
}
@media (max-width: 767px) {
  .about-slider__contents {
    padding: 2.4em 2.6em;
    min-height: 37em;
  }
}
.about-slider__name {
  color: #0e2f60;
  font-size: clamp(34px, 3.4vw, 40px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0.8em 0 0.6em;
  text-align: center;
}
.about-slider__text {
  color: #231815;
  font-size: clamp(14px, 1.2vw, 14px);
  letter-spacing: 0.2em;
  padding-bottom: 1.6em;
  min-height: 10em;
}
.about-slider__img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 18px;
  border-radius: 2px;
}
.about-slider__img {
  overflow: hidden;
}
.about-slider__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-slider .about-slider__item a:hover {
  opacity: 1;
}
.about-slider .about-slider__item a:hover img {
  transform: scale(1.08);
}
.about-slider .btn--s {
  margin: 0 auto;
}

.about .slick-prev,
.about .slick-next {
  width: 50px;
  height: 50px;
  background-color: #0e2f60;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .about .slick-prev,
  .about .slick-next {
    margin-top: 14%;
  }
}
.about .slick-prev::before,
.about .slick-next::before {
  display: none;
}
.about .slick-prev .arrow,
.about .slick-next .arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
}
.about .slick-prev .arrow::before, .about .slick-prev .arrow::after,
.about .slick-next .arrow::before,
.about .slick-next .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 12px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.about .slick-prev .arrow::before,
.about .slick-next .arrow::before {
  transform: rotate(45deg);
}
.about .slick-prev .arrow::after,
.about .slick-next .arrow::after {
  transform: rotate(-45deg);
}
.about .slick-prev {
  left: 50px;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .about .slick-prev {
    left: 10px;
  }
}
.about .slick-next {
  right: 50px;
}
@media (max-width: 767px) {
  .about .slick-next {
    right: 10px;
  }
}

.message {
  background: #000;
  position: relative;
  height: 860px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .message {
    height: 800px;
  }
}
@media (max-width: 767px) {
  .message {
    height: auto;
    overflow: auto;
  }
}
.message__box {
  position: absolute;
  top: 18rem;
  right: 14rem;
}
.message__box-col {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.8em;
}
@media (max-width: 1024px) {
  .message__box {
    right: 2.4rem;
  }
  .message__box-col {
    gap: 1em;
  }
}
@media (max-width: 767px) {
  .message__box {
    background: #231815;
    position: static;
    padding: 3.4em 2.8em 2.6em;
  }
  .message__box-col {
    display: block;
  }
}
.message__box .btn--m {
  margin: 4em 0 0 auto;
}
@media (max-width: 767px) {
  .message__box .btn--m {
    margin: 4.2em auto 3em;
  }
}
.message__text {
  color: #fff;
  height: 90%;
}
.message__text span {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-size: clamp(14px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 2.6;
}
@media (max-width: 767px) {
  .message__text {
    height: auto;
  }
  .message__text span {
    font-size: 1.4rem;
    line-height: 2.2;
    writing-mode: horizontal-tb;
  }
}
.message__ttl {
  color: #fff;
}
.message__ttl span {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-size: clamp(28px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.28em;
}
.message__head {
  color: #fff;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  width: 92%;
}
.message__head .text-en {
  font-size: clamp(28px, 2.6vw, 32px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  position: absolute;
  top: 18rem;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .message__head {
    margin-top: 8em;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
  }
  .message__head .text-en {
    font-size: 4.6rem;
    position: static;
  }
  .message__head .text-lead {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    line-height: 1.6;
    margin-top: 0.4em;
  }
}
.message__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .message__bg-wrap {
    position: relative;
    height: 640px;
  }
}
.message__bg {
  position: absolute;
  inset: 0;
  background: url("../images/top/top-message-bg.webp") no-repeat center top/cover;
}
@media (max-width: 767px) {
  .message__bg {
    background: url("../images/top/top-message-bg-s.webp") no-repeat center top/cover;
  }
}

.recruit {
  background: #fff;
}
.recruit__img-wrap {
  position: relative;
}
@media (max-width: 767px) {
  .recruit__img-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}
.recruit__img {
  width: 100%;
}
.recruit__lead {
  position: absolute;
  top: 12rem;
  right: 14rem;
}
@media (max-width: 1024px) {
  .recruit__lead {
    top: 9vw;
    right: 9vw;
  }
}
.recruit__lead span {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.34em;
  color: #fff;
}
@media (max-width: 767px) {
  .recruit__lead {
    position: static;
    padding: 2.6em 1.6em 1.4em;
  }
  .recruit__lead span {
    color: #231815;
    letter-spacing: 0.28em;
    line-height: 1.6;
    writing-mode: horizontal-tb;
  }
}
.recruit__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3em;
  margin-top: 3.6em;
}
@media (max-width: 767px) {
  .recruit__row {
    flex-direction: column;
    gap: 0;
    padding: 0 1.8em;
    margin-top: 0;
  }
}
.recruit__row .btn--m {
  margin: 0;
}
@media (max-width: 767px) {
  .recruit__row .btn--m {
    margin: 4em auto 0;
  }
}
.recruit__text {
  font-size: clamp(14px, 1.2vw, 14px);
}

.company {
  background: #e6e6e6;
  padding: 140px 0 160px;
}
@media (max-width: 767px) {
  .company {
    padding: 0;
  }
  .company .inner {
    padding: 0;
  }
}
.company__box {
  display: flex;
  justify-content: space-between;
  margin-right: calc(50% - 50vw);
  max-height: 1130px;
}
@media (max-width: 767px) {
  .company__box {
    flex-direction: column;
    margin-right: 0;
    max-height: none;
  }
}
.company__item {
  background: #0e2f60;
  padding: 12rem;
  width: 65%;
}
@media (max-width: 1024px) {
  .company__item {
    padding: 8rem 6rem;
  }
}
@media (max-width: 767px) {
  .company__item {
    padding: 4em 3em;
    width: 100%;
  }
}
.company__ttl {
  border-bottom: 1px solid #949495;
  color: #fff;
  font-size: clamp(46px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: 0;
  padding-bottom: 0.6em;
}
@media (max-width: 767px) {
  .company__ttl {
    padding-bottom: 0.8em;
    text-align: center;
  }
}
.company__ttl .text-01 {
  color: #949495;
}
.company__ttl .text-03 {
  color: #949495;
  font-size: 34%;
  margin-top: 0.6em;
  padding-left: 0.2em;
}
.company__ttl strong,
.company__ttl span {
  display: block;
  font-weight: inherit;
  line-height: 0.94;
}
@media (max-width: 767px) {
  .company__ttl strong,
  .company__ttl span {
    line-height: 1;
  }
}
.company__lead {
  color: #fff;
  line-height: 2.2;
  padding-top: 3.6em;
}
@media (max-width: 767px) {
  .company__lead {
    font-size: 1.4rem;
    line-height: 2;
    padding-top: 2.4em;
  }
}
.company__img {
  aspect-ratio: 895/2274;
  overflow: hidden;
  width: 35%;
}
.company__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .company__img {
    aspect-ratio: auto;
    width: 100%;
  }
}
.company__menu {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 5em;
}
@media (max-width: 767px) {
  .company__menu {
    margin-top: 3em;
  }
}
.company__btn {
  background: #000;
  border-radius: 100px;
  color: #fff;
  display: block;
  padding: 0.8em 2.4em;
  position: relative;
}
.company__btn .text-more {
  color: #000;
  display: none;
  font-size: clamp(10px, 0.8vw, 12px);
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6.8em;
  font-size: 0.75em;
}
@media (max-width: 767px) {
  .company__btn .text-more {
    right: 5.6em;
  }
}
.company__btn .icon {
  position: absolute;
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
}
.company__btn .icon::before, .company__btn .icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.company__btn .icon::before {
  transform: rotate(45deg);
}
.company__btn .icon::after {
  transform: rotate(-45deg);
}
.company__btn:hover, .company__btn:active {
  background: #fff;
  color: #0e2f60;
  opacity: 1;
}
.company__btn:hover .text-more, .company__btn:active .text-more {
  display: block;
}
.company__btn:hover .icon, .company__btn:active .icon {
  background-color: #000;
}
.company__btn:hover .icon::before, .company__btn:hover .icon::after, .company__btn:active .icon::before, .company__btn:active .icon::after {
  background-color: #000;
}

.fv {
  position: relative;
  height: 200vh;
}
.fv__bg {
  position: fixed;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.fv__sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.fv__sticky.is-unfixed {
  position: absolute;
  bottom: 0;
  top: auto;
}
.fv__ttl {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
}
.fv__ttl .text {
  display: block;
}
.fv__ttl strong {
  display: block;
  font-size: 530%;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .fv__ttl strong.text-s-sp {
    font-size: 420%;
    line-height: 1.1;
  }
}
.fv__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fv__stage--logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 2s ease;
}
.fv__stage--logo.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.fv__stage--catch {
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
}
.fv__stage--catch.is-visible {
  opacity: 1;
}
.fv__catch-item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 3em;
}
@media (max-width: 767px) {
  .fv__catch-item {
    gap: 1.6em;
    justify-content: center;
    width: 94vw;
  }
}
.fv__catch-copy {
  color: #fff;
  text-align: left;
  white-space: nowrap;
}
.fv__catch-copy span,
.fv__catch-copy strong {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
}
.fv__catch-copy span {
  font-size: clamp(13px, 2vw, 18px);
  letter-spacing: 0.3em;
  line-height: 3.6;
}
.fv__catch-copy strong {
  font-size: clamp(16px, 2.6vw, 28px);
  font-weight: inherit;
  letter-spacing: 0.3em;
  line-height: 2.6;
}
.fv__catch-copy .dash {
  background: #fff;
  display: inline-block;
  margin: 0.2em 0;
  width: 0.01em;
  height: 1.4em;
}
@media (max-width: 1024px) {
  .fv__catch-copy span {
    line-height: 3;
  }
  .fv__catch-copy strong {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .fv__catch-copy span {
    line-height: 2.6;
  }
  .fv__catch-copy strong {
    line-height: 2.2;
  }
}
.fv__btn {
  background: #0e2f60;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 0.4em 2em;
  position: absolute;
  pointer-events: auto;
  right: 0;
  bottom: 6em;
  min-height: 68px;
  width: 210px;
  z-index: 1;
}
@media (max-width: 767px) {
  .fv__btn {
    bottom: 1em;
    min-height: 60px;
    width: 194px;
  }
}
.fv__btn .arrow {
  position: absolute;
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
}
.fv__btn .arrow::before, .fv__btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.fv__btn .arrow::before {
  transform: rotate(45deg);
}
.fv__btn .arrow::after {
  transform: rotate(-45deg);
}
.fv__btn:hover {
  filter: brightness(1.2);
  opacity: 1;
}

.sub-about .fv__bg {
  background-image: url(../images/about/about-mv-bg.webp);
}
@media (max-width: 767px) {
  .sub-about .fv__bg {
    background-image: url(../images/about/about-mv-bg-s.webp);
  }
}
@media (max-width: 767px) {
  .sub-about .fv__catch-copy {
    width: 17em;
  }
}
.sub-about .philosophy {
  background: #fff;
  display: flex;
  min-height: 740px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub-about .philosophy {
    flex-direction: column;
    padding: 4em 0;
  }
  .sub-about .philosophy .section-ttl--en-s {
    order: 1;
  }
}
.sub-about .philosophy__item {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4em 4.6em 4em 6em;
  margin: 0 0 0 auto;
  max-width: 800px;
  width: 58%;
}
@media (max-width: 1024px) {
  .sub-about .philosophy__item {
    padding: 4em 5.4em;
  }
}
@media (max-width: 767px) {
  .sub-about .philosophy__item {
    display: contents;
  }
}
.sub-about .philosophy__text p {
  line-height: 2.2;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .sub-about .philosophy__text {
    order: 3;
    margin: 0 auto;
    width: 78%;
  }
  .sub-about .philosophy__text p {
    line-height: 2;
  }
}
.sub-about .philosophy__img {
  background: url(../images/about/about-philosophy.webp) no-repeat center/cover;
  position: relative;
  width: 42%;
}
@media (max-width: 767px) {
  .sub-about .philosophy__img {
    order: 2;
    margin: 0 auto 2.4em;
    width: 78%;
    height: 400px;
  }
}
.sub-about .philosophy__lead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.sub-about .philosophy__lead span {
  color: #fff;
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-size: clamp(22px, 2.2vw, 28px);
  font-feature-settings: "pkna";
  letter-spacing: 0.34em;
}
@media (max-width: 767px) {
  .sub-about .philosophy__lead {
    width: 2em;
  }
  .sub-about .philosophy__lead span {
    font-size: 1.5rem;
  }
}
.sub-about .principles {
  background: url(../images/about/about-principles-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-about .principles {
    background: url(../images/about/about-principles-bg-s.webp) no-repeat center/cover;
  }
}
.sub-about .principles .section-lead {
  color: #fff;
}
.sub-about .principles__list {
  display: flex;
  flex-direction: column;
  gap: 5em;
  margin: 0 auto;
  max-width: 960px;
  width: 94%;
}
@media (max-width: 767px) {
  .sub-about .principles__list {
    gap: 3em;
    width: 78%;
  }
}
.sub-about .principles__list li {
  background: #fff;
  display: flex;
  gap: 6%;
  position: relative;
  padding: 0 3.4em 3.6em;
}
@media (max-width: 767px) {
  .sub-about .principles__list li {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.sub-about .principles__img {
  max-width: 395px;
  width: 46%;
}
@media (max-width: 767px) {
  .sub-about .principles__img {
    max-width: none;
    width: 100%;
  }
}
.sub-about .principles__item {
  letter-spacing: 0.34em;
  padding-top: 3em;
  width: 58%;
}
@media (max-width: 767px) {
  .sub-about .principles__item {
    letter-spacing: 0.2em;
    padding: 2.4em 2em;
    width: 100%;
  }
}
.sub-about .principles__copy {
  position: absolute;
  top: 1.4em;
  right: 0.6em;
  height: 100%;
}
.sub-about .principles__copy span {
  color: #0e2f60;
  display: inline-block;
  font-size: clamp(12px, 1vw, 12px);
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  white-space: pre;
}
@media (max-width: 767px) {
  .sub-about .principles__copy {
    line-height: 1.2;
    position: static;
  }
  .sub-about .principles__copy span {
    writing-mode: horizontal-tb;
  }
}
.sub-about .principles__ttl {
  font-size: 1.6rem;
  margin-bottom: 0.8em;
}
.sub-about .greeting {
  background: #e6e6e6;
}
.sub-about .greeting__box {
  background: #0e2f60;
  padding: 8em 4em 10em;
}
.sub-about .greeting__box .box-inner {
  margin: 0 auto;
  max-width: 730px;
}
@media (max-width: 767px) {
  .sub-about .greeting__box {
    padding: 4em 2.6em 5em;
  }
}
.sub-about .greeting__ttl {
  color: #fff;
  font-size: clamp(46px, 9vw, 114px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0.6em;
  text-align: center;
}
.sub-about .greeting__item {
  color: #fff;
  position: relative;
}
.sub-about .greeting__item p {
  letter-spacing: 0.34em;
  line-height: 2.3;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .sub-about .greeting__item p {
    letter-spacing: 0.2em;
    line-height: 2;
  }
}
.sub-about .greeting__item-ttl {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: 0.34em;
  margin-bottom: 1.4em;
}
.sub-about .greeting__item-name {
  font-weight: 500;
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2em;
  margin-top: 3em;
}
.sub-about .greeting__item-name img {
  display: block;
  width: 230px;
}
@media (max-width: 767px) {
  .sub-about .greeting__item-name {
    gap: 1.4em;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
  .sub-about .greeting__item-name img {
    width: 150px;
  }
}
.sub-about .company-prof {
  background: #fff;
}
.sub-about .company-prof__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8%;
}
@media (max-width: 1024px) {
  .sub-about .company-prof__flex {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .sub-about .company-prof__flex .section-ttl--en-s {
    order: 1;
  }
}
.sub-about .company-prof__map {
  position: sticky;
  top: 80px;
  width: 52vw;
  margin-left: calc(50% - 50vw);
}
.sub-about .company-prof__map iframe {
  width: 100%;
  height: 500px;
}
@media (max-width: 1024px) {
  .sub-about .company-prof__map {
    position: static;
    margin: 0 auto 3.4em;
    width: 100%;
  }
  .sub-about .company-prof__map iframe {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .sub-about .company-prof__map {
    position: static;
    order: 2;
    margin-bottom: 2em;
  }
}
@media (max-width: 767px) {
  .sub-about .company-prof__item {
    display: contents;
  }
}
@media (max-width: 767px) {
  .sub-about .company-prof__tbl {
    display: block;
    order: 3;
    width: 88%;
  }
}
.sub-about .company-prof__tbl th,
.sub-about .company-prof__tbl td {
  padding: 0 0 1.4em;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .sub-about .company-prof__tbl th,
  .sub-about .company-prof__tbl td {
    display: block;
    line-height: 1.8;
    padding: 0;
  }
}
.sub-about .company-prof__tbl th {
  width: 22%;
}
@media (max-width: 767px) {
  .sub-about .company-prof__tbl th {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sub-about .company-prof__tbl td {
    padding-bottom: 1.6em;
  }
}
.sub-about .company-prof__tbl td p {
  margin-bottom: 1.4em;
}
.sub-about .company-prof__tbl td p:last-of-type {
  margin-bottom: 0;
}
.sub-about .history {
  background: url(../images/about/about-history-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-about .history {
    background: url(../images/about/about-history-bg-s.webp) no-repeat center/cover;
  }
}
.sub-about .history .section-lead {
  color: #fff;
}
.sub-about .history__block {
  padding-top: 2em;
  max-width: 660px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sub-about .history__block {
    padding: 1em 0 0 1em;
  }
}
.sub-about .history__item {
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 767px) {
  .sub-about .history__item {
    flex-direction: row-reverse;
  }
}
.sub-about .history__item.show {
  opacity: 1;
  transform: translateY(0);
}
.sub-about .history__item.line-top-active .history__line-top {
  background: #fff;
}
.sub-about .history__item.active .history__dot {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 0 6px 8px rgba(255, 255, 255, 0.5), 0 0 20px 8px rgba(255, 255, 255, 0.4), 0 0 50px 16px rgba(255, 255, 255, 0.1);
}
.sub-about .history__item.done .history__dot {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.sub-about .history__item.line-bottom-active .history__line-bottom {
  background: #fff;
}
.sub-about .history__item:last-child .history__line-bottom {
  background: transparent !important;
}
.sub-about .history__left {
  width: 110px;
  flex-shrink: 0;
  padding-top: 0.4em;
  padding-right: 3em;
  text-align: right;
}
@media (max-width: 767px) {
  .sub-about .history__left {
    width: auto;
    flex: 1;
    padding-right: 0;
    text-align: left;
  }
}
.sub-about .history__left-inner {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .sub-about .history__left-inner {
    padding: 0 0 2.4em 1.6em;
  }
}
.sub-about .history__year {
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  .sub-about .history__year {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
}
.sub-about .history__axis {
  flex-shrink: 0;
  width: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-about .history__line-top {
  width: 1px;
  height: 8px;
  flex-shrink: 0;
  background: transparent;
  transition: background 0.3s ease;
}
.sub-about .history__dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
.sub-about .history__line-bottom {
  width: 1px;
  flex: 1;
  background: transparent;
  transition: background 0.3s ease;
}
.sub-about .history__content {
  flex: 1;
  padding: 0 0 3em 3.4em;
}
@media (max-width: 767px) {
  .sub-about .history__content {
    display: none;
  }
}
.sub-about .history__text {
  color: #fff;
  line-height: 1.8;
  padding-top: 1px;
}
.sub-about .history__text-sp {
  display: none;
}
@media (max-width: 767px) {
  .sub-about .history__text-sp {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    line-height: 1.6;
    margin-top: 2px;
  }
}
.sub-about .location {
  background: #fff;
}
.sub-about .location__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sub-about .location__img-col {
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  overflow: hidden;
  align-self: flex-start;
  max-width: 546px;
  width: 52%;
}
@media (max-width: 1024px) {
  .sub-about .location__img-col {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .sub-about .location__img-col {
    display: none;
  }
}
.sub-about .location__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 480/390;
}
.sub-about .location__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.sub-about .location__img.active {
  opacity: 1;
}
.sub-about .location__text-col {
  padding-bottom: 4em;
  width: 44%;
}
@media (max-width: 1024px) {
  .sub-about .location__text-col {
    width: 52%;
  }
}
@media (max-width: 767px) {
  .sub-about .location__text-col {
    padding-bottom: 0;
    width: 100%;
  }
  .sub-about .location__text-col .location__img-sp {
    margin-bottom: 1.6em;
  }
}
.sub-about .location__item {
  padding: 0.8em 0 3em;
}
@media (max-width: 767px) {
  .sub-about .location__item {
    padding: 1em 0 4em;
  }
  .sub-about .location__item:last-of-type {
    padding-bottom: 0;
  }
}
.sub-about .location__item p {
  margin-bottom: 1.8em;
}
.sub-about .location__item .note {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  text-indent: -1.2em;
  padding-left: 1.2em;
  margin-top: 0.2em;
}
.sub-about .location__item .btn--m {
  font-size: 1.1rem;
  font-family: inherit;
  margin: 3em 2em 3em auto;
  max-width: 280px;
}
@media (max-width: 767px) {
  .sub-about .location__item .btn--m {
    margin: 3em auto 0;
  }
}
.sub-about .location__ttl {
  color: #0e2f60;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  text-wrap: auto;
  margin-bottom: 0.4em;
}
.sub-about .location__ttl span {
  font-size: 85%;
}
@media (max-width: 767px) {
  .sub-about .location__ttl span {
    font-size: 80%;
  }
}
.sub-about .location__ttl-s {
  font-weight: 500;
}
.sub-about .location__modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sub-about .location__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.sub-about .location__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.sub-about .location__modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0e2f60;
  color: #fff;
  width: 90%;
  max-width: 1200px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 6em 6.4em;
}
@media (max-width: 1024px) {
  .sub-about .location__modal-inner {
    padding: 7em 5em;
  }
}
@media (max-width: 767px) {
  .sub-about .location__modal-inner {
    padding: 5.4em 2em;
  }
}
.sub-about .location__modal-close {
  position: absolute;
  top: 1.4em;
  right: 1.4em;
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sub-about .location__modal-close::before, .sub-about .location__modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #fff;
}
.sub-about .location__modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sub-about .location__modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .sub-about .location__modal-close {
    width: 40px;
    height: 40px;
  }
}
.sub-about .location .office {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .sub-about .location .office {
    flex-direction: column;
    gap: 3.4em;
  }
}
@media (max-width: 767px) {
  .sub-about .location .office {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
  }
}
.sub-about .location .office__wrap {
  width: 100%;
}
.sub-about .location .office__left {
  width: 38%;
}
@media (max-width: 1024px) {
  .sub-about .location .office__left {
    width: 100%;
  }
}
.sub-about .location .office__right {
  width: 57.6%;
}
@media (max-width: 1024px) {
  .sub-about .location .office__right {
    width: 100%;
  }
}
.sub-about .location .office__ttl {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  margin-bottom: 0.6em;
}
.sub-about .location .office__ttl span {
  font-size: 85%;
}
.sub-about .location .office__ttl-s {
  font-weight: 500;
  margin-top: 3em;
}
.sub-about .location .office__detail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
  border-top: 1px solid #fff;
  padding-top: 3em;
}
.sub-about .location .office__detail dt {
  padding: 0.3em 1em 0.3em 0;
  width: 24%;
}
.sub-about .location .office__detail dd {
  padding: 0.3em 0;
  width: 76%;
}
.sub-about .location .office__text {
  margin-top: 2.2em;
}
.sub-about .location .office__text strong {
  font-size: 110%;
  font-weight: 500;
}
.sub-about .location .office__tbl {
  text-align: center;
  table-layout: fixed;
  margin-bottom: 1.4em;
}
.sub-about .location .office__tbl:last-of-type {
  margin-bottom: 0;
}
.sub-about .location .office__tbl th,
.sub-about .location .office__tbl td {
  border: 1px solid #0e2f60;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.8em 0.4em;
}
.sub-about .location .office__tbl thead th {
  background: #e6e6e6;
  color: #0e2f60;
}
.sub-about .location .office__tbl tbody th {
  background: #c5c8cd;
  color: #0e2f60;
}
.sub-about .location .office__tbl tbody td {
  background: #375178;
  color: #fff;
  font-size: 90%;
  letter-spacing: 0.08em;
  padding: 1em 0.4em;
}
.sub-about .location .office .note {
  font-size: 1rem;
  text-align: right;
  margin: 0.2em 0 1em;
}
.sub-about .fleet {
  background: #0e2f60;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .sub-about .fleet .section-ttl {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 1.6em;
  }
}
.sub-about .fleet__block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub-about .fleet__block {
    flex-direction: column;
  }
}
.sub-about .fleet__box {
  padding: 10em 0;
  width: 68%;
}
.sub-about .fleet__box .text {
  font-size: 1.4rem;
  letter-spacing: 0.24em;
  line-height: 2;
  margin-bottom: 2em;
}
@media (max-width: 1024px) {
  .sub-about .fleet__box {
    padding: 8em 3em;
  }
}
@media (max-width: 767px) {
  .sub-about .fleet__box {
    padding: 6em 0;
    width: 100%;
  }
  .sub-about .fleet__box .fleet__img-s {
    display: block;
    margin-bottom: 3em;
    width: 100%;
  }
}
.sub-about .fleet__img {
  overflow: hidden;
  flex-shrink: 0;
  width: 32vw;
  position: absolute;
  right: calc(50vw - 50%);
  top: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .sub-about .fleet__img {
    display: none;
  }
}
.sub-about .fleet__img-track {
  display: flex;
  flex-direction: column;
  animation: fleetScrollDown 55s linear infinite;
}
.sub-about .fleet__img-track img {
  width: 100%;
  display: block;
}
.sub-about .fleet__tbl {
  text-align: left;
}
.sub-about .fleet__tbl th,
.sub-about .fleet__tbl td {
  font-weight: 400;
  padding: 0.3em 0.3em 0.3em 0;
  vertical-align: top;
}
.sub-about .fleet__tbl td:first-of-type {
  width: 12%;
}
@media (max-width: 1024px) {
  .sub-about .fleet__tbl tr {
    display: grid;
    grid-template-columns: 60% 40%;
  }
  .sub-about .fleet__tbl td:first-of-type {
    width: auto;
  }
  .sub-about .fleet__tbl td:last-child {
    grid-column: 1/-1;
    padding-bottom: 1.4em;
  }
}
@media (max-width: 767px) {
  .sub-about .fleet__tbl th,
  .sub-about .fleet__tbl td {
    padding: 0 1em 0 0;
  }
}
.sub-about .fleet__btn {
  display: flex;
  justify-content: center;
  gap: 4.5%;
  margin-top: 6em;
}
@media (max-width: 767px) {
  .sub-about .fleet__btn {
    align-items: center;
    flex-direction: column;
    gap: 1.6em;
    margin-top: 4em;
  }
}
.sub-about .fleet__btn .btn--m {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}
.sub-about .fleet__btn .btn--m:hover {
  color: #0e2f60;
}
.sub-about .fleet__btn .btn--m:hover .arrow {
  background-color: #0e2f60;
}
.sub-about .fleet__btn .btn--m:hover .arrow::before, .sub-about .fleet__btn .btn--m:hover .arrow::after {
  background-color: #0e2f60;
}
.sub-about .fleet__modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sub-about .fleet__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.sub-about .fleet__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.sub-about .fleet__modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e6e6e6;
  width: 90%;
  max-width: 1280px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 6em 8em;
}
@media (max-width: 1024px) {
  .sub-about .fleet__modal-inner {
    padding: 7em 4em;
  }
}
@media (max-width: 767px) {
  .sub-about .fleet__modal-inner {
    padding: 5.4em 1.2em;
  }
}
.sub-about .fleet__modal-close {
  position: absolute;
  top: 1.4em;
  right: 1.4em;
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sub-about .fleet__modal-close::before, .sub-about .fleet__modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #0e2f60;
}
.sub-about .fleet__modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sub-about .fleet__modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .sub-about .fleet__modal-close {
    width: 40px;
    height: 40px;
  }
}
.sub-about .fleet__list {
  margin: 0 auto;
  max-width: 840px;
}
.sub-about .fleet__list table {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.sub-about .fleet__list th,
.sub-about .fleet__list td {
  border: 1px solid #e6e6e6;
  font-weight: 500;
  padding: 0.4em;
}
.sub-about .fleet__list thead th {
  background: #0e2f60;
  color: #fff;
}
@media (max-width: 767px) {
  .sub-about .fleet__list thead th {
    font-size: 1.2rem;
  }
}
.sub-about .fleet__list tbody th {
  background: #bfc5ce;
  color: #0e2f60;
}
.sub-about .fleet__list tbody td {
  background: #dadada;
  color: #231815;
  font-size: 90%;
  letter-spacing: 0.1em;
  padding: 0.6em 1.2em;
}
@media (max-width: 767px) {
  .sub-about .fleet__list tbody th,
  .sub-about .fleet__list tbody td {
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 1em 0.8em;
  }
}
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(1),
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(2),
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(3) {
  text-align: left;
}
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(1) {
  width: 26%;
}
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(2) {
  width: 22%;
}
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(3) {
  width: 32%;
}
.sub-about .fleet__list.heavy-machinery tbody td:nth-child(4) {
  width: 20%;
}
.sub-about .fleet__list.heavy-machinery tbody .count {
  display: inline-block;
}
@media (max-width: 767px) {
  .sub-about .fleet__list.heavy-machinery tbody .count {
    display: block;
  }
}
.sub-about .fleet__list.vehicle {
  max-width: 700px;
}
.sub-about .fleet__list.vehicle tbody td:first-child {
  padding-left: 3em;
  text-align: left;
  width: 74%;
}
@media (max-width: 767px) {
  .sub-about .fleet__list.vehicle tbody td:first-child {
    padding-left: 2em;
  }
}
.sub-about .fleet__list .note {
  color: #231815;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-align: right;
  margin: 0.2em 0;
}
.sub-about .group {
  background: #e6e6e6;
}
@media (max-width: 767px) {
  .sub-about .group {
    padding-bottom: 0;
  }
}
.sub-about .group__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub-about .group__flex {
    flex-direction: column;
  }
}
.sub-about .group__item {
  width: 100%;
}
@media (max-width: 767px) {
  .sub-about .group__item {
    padding-bottom: 4em;
    width: 100%;
  }
}
.sub-about .group__item .company-name {
  color: #0e2f60;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  margin-bottom: 1.2em;
}
@media (max-width: 767px) {
  .sub-about .group__item .company-name {
    text-align: center;
  }
}
.sub-about .group__item .company-logo {
  display: block;
  margin-bottom: 2.4em;
  max-width: 144px;
  width: 100%;
}
@media (max-width: 767px) {
  .sub-about .group__item .company-logo {
    max-width: 120px;
    margin: 0 auto 1.8em;
  }
}
.sub-about .group__item .text {
  color: #0e2f60;
}
.sub-about .group__img {
  max-width: 545px;
  width: 50%;
}
@media (max-width: 1024px) {
  .sub-about .group__img {
    width: 42%;
  }
}
@media (max-width: 767px) {
  .sub-about .group__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

@keyframes fleetScrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.sub-people .fv__bg {
  background-image: url(../images/people/people-mv-bg.webp);
}
@media (max-width: 767px) {
  .sub-people .fv__bg {
    background-image: url(../images/people/people-mv-bg-s.webp);
  }
}
@media (max-width: 767px) {
  .sub-people .fv__catch-copy {
    width: 11.4em;
  }
  .sub-people .fv__catch-copy.text-l {
    width: 2.8em;
  }
}
.sub-people .schedule {
  background: #0e2f60;
  color: #fff;
  position: relative;
}
.sub-people .schedule__block {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .sub-people .schedule__block {
    flex-direction: column;
  }
}
.sub-people .schedule__box {
  padding: 10em 0;
  width: 64%;
}
@media (max-width: 1024px) {
  .sub-people .schedule__box {
    padding: 6em 2em;
  }
}
@media (max-width: 767px) {
  .sub-people .schedule__box {
    padding: 4em 0 6em;
    width: 100%;
  }
  .sub-people .schedule__box .schedule__img-s {
    display: block;
    margin-bottom: 3em;
    width: 100%;
  }
}
.sub-people .schedule__contents {
  display: none;
}
.sub-people .schedule__contents.is-active {
  display: block;
}
.sub-people .schedule__ttl {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2.4em;
}
.sub-people .schedule__ttl span {
  display: block;
  font-size: 60%;
}
@media (max-width: 767px) {
  .sub-people .schedule__ttl {
    text-align: center;
  }
}
.sub-people .schedule__copy {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .sub-people .schedule__copy {
    letter-spacing: 0.1em;
    text-wrap: auto;
    text-align: center;
  }
}
.sub-people .schedule__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub-people .schedule__list {
    flex-direction: column;
    font-size: 1.2rem;
  }
}
.sub-people .schedule__list dt {
  width: 12%;
}
@media (max-width: 767px) {
  .sub-people .schedule__list dt {
    width: 100%;
  }
}
.sub-people .schedule__list dd {
  margin-bottom: 2.4em;
  width: 84%;
}
.sub-people .schedule__list dd strong {
  font-weight: 500;
}
@media (max-width: 767px) {
  .sub-people .schedule__list dd {
    width: 100%;
  }
}
.sub-people .schedule__img {
  overflow: hidden;
  flex-shrink: 0;
  width: 32vw;
  position: absolute;
  left: calc(50vw - 50%);
  top: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .sub-people .schedule__img {
    display: none;
  }
}
.sub-people .schedule__img-track {
  display: flex;
  flex-direction: column;
  animation: ScheduleScrollDown 55s linear infinite;
}
.sub-people .schedule__img-track img {
  width: 100%;
  display: block;
}
.sub-people .schedule__btn {
  display: flex;
  margin-top: 4em;
  max-width: 660px;
}
@media (max-width: 767px) {
  .sub-people .schedule__btn {
    max-width: 280px;
    margin: 2em auto 0;
    flex-direction: column;
  }
}
.sub-people .schedule__btn img {
  max-width: 260px;
  width: 40%;
}
@media (max-width: 767px) {
  .sub-people .schedule__btn img {
    max-width: none;
    width: 100%;
  }
}
.sub-people .schedule__btn-item {
  background: #fff;
  position: relative;
  width: 60%;
}
@media (max-width: 767px) {
  .sub-people .schedule__btn-item {
    width: 100%;
    padding: 1.6em;
  }
}
.sub-people .schedule__btn-ttl {
  color: #0e2f60;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.6;
  width: 80%;
}
@media (max-width: 767px) {
  .sub-people .schedule__btn-ttl {
    position: static;
    transform: none;
    width: 100%;
  }
}
.sub-people .schedule__btn .text-arrow {
  color: #727272;
  display: block;
  font-size: clamp(12px, 1vw, 12px);
  letter-spacing: 0.04em;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .sub-people .schedule__btn .text-arrow {
    margin-bottom: 0.4em;
  }
}
.sub-people .schedule__btn .text-arrow .icon {
  display: flex;
}
.sub-people .schedule__btn .text-arrow .icon::before, .sub-people .schedule__btn .text-arrow .icon::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.sub-people .schedule__btn .text-arrow .icon::before {
  position: relative;
  right: -2px;
}
.sub-people .schedule__btn .text-main {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
}
.sub-people .schedule__btn .text-sub {
  display: block;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
}
.sub-people .interview {
  background: #fff;
}
.sub-people .interview__contents {
  display: none;
}
.sub-people .interview__contents.is-active {
  display: block;
}
@media (max-width: 767px) {
  .sub-people .interview .main-ttl-sp {
    color: #0e2f60;
    margin: 2em 0;
  }
  .sub-people .interview .main-ttl-sp span {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6;
  }
}
.sub-people .interview__mv {
  color: #fff;
  position: relative;
  margin-bottom: 4em;
  width: 100%;
  aspect-ratio: 1090/590;
}
@media (max-width: 767px) {
  .sub-people .interview__mv {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    aspect-ratio: 375/300;
  }
}
.sub-people .interview__mv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .sub-people .interview__mv img {
    position: static;
  }
}
.sub-people .interview__mv .main-ttl {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.24em;
  line-height: 2.2;
  position: absolute;
  right: 2.8em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.sub-people .interview__mv .main-ttl.ttl-02 {
  right: auto;
  left: 3em;
}
.sub-people .interview__mv .main-ttl.ttl-03 {
  right: 5em;
}
.sub-people .interview__mv .main-ttl span {
  display: inline-block;
  text-orientation: upright;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  font-weight: 400;
}
.sub-people .interview__mv .main-item {
  position: absolute;
  left: 6em;
  bottom: 4em;
  z-index: 1;
}
.sub-people .interview__mv .main-item.item-02 {
  left: auto;
  right: 6em;
}
@media (max-width: 767px) {
  .sub-people .interview__mv .main-item {
    left: 2.4em;
    bottom: 2.2em;
    width: 84%;
  }
  .sub-people .interview__mv .main-item.item-02 {
    right: auto;
    left: 2.4em;
    bottom: 2.2em;
  }
}
.sub-people .interview__mv .main-item .name {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
.sub-people .interview__mv .main-item .name span {
  display: inline-block;
  font-size: 75%;
}
.sub-people .interview__mv .main-item .note {
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sub-people .interview__detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .sub-people .interview__detail {
    flex-direction: column-reverse;
  }
  .sub-people .interview__detail .sub-img-sp {
    margin: 2.8em 0;
  }
}
.sub-people .interview__left {
  position: sticky;
  top: 80px;
  max-width: 546px;
  width: 51%;
}
@media (max-width: 1024px) {
  .sub-people .interview__left {
    width: 38%;
  }
}
@media (max-width: 767px) {
  .sub-people .interview__left {
    width: 100%;
  }
}
.sub-people .interview__left .sub-img {
  display: block;
  margin-bottom: 3em;
}
.sub-people .interview__right {
  width: 43.5%;
}
@media (max-width: 1024px) {
  .sub-people .interview__right {
    width: 56%;
  }
}
@media (max-width: 767px) {
  .sub-people .interview__right {
    margin-bottom: 2.6em;
    width: 100%;
  }
}
.sub-people .interview__right .text {
  font-weight: 500;
}
.sub-people .interview__right .ttl {
  color: #0e2f60;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  margin: 2.6em 0 0.6em;
}
@media (max-width: 767px) {
  .sub-people .interview__right .ttl {
    line-height: 1.8;
    margin: 2.8em 0 1em;
    text-wrap: auto;
  }
}
.sub-people .interview__btn {
  display: flex;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .sub-people .interview__btn {
    flex-direction: column;
    margin: 2em auto;
    max-width: 260px;
  }
}
.sub-people .interview__btn img {
  max-width: 260px;
  width: 48%;
}
@media (max-width: 767px) {
  .sub-people .interview__btn img {
    width: 100%;
  }
}
.sub-people .interview__btn-item {
  background: #0e2f60;
  color: #fff;
  position: relative;
  width: 52%;
}
@media (max-width: 767px) {
  .sub-people .interview__btn-item {
    padding: 1.6em;
    width: 100%;
  }
}
.sub-people .interview__btn-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.6;
  width: 72%;
}
@media (max-width: 1024px) {
  .sub-people .interview__btn-ttl {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .sub-people .interview__btn-ttl {
    position: static;
    transform: none;
  }
}
.sub-people .interview__btn .text-arrow {
  display: block;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0;
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .sub-people .interview__btn .text-arrow {
    font-size: 1.1rem;
  }
}
.sub-people .interview__btn .text-arrow .icon {
  display: flex;
}
.sub-people .interview__btn .text-arrow .icon::before, .sub-people .interview__btn .text-arrow .icon::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.sub-people .interview__btn .text-arrow .icon::before {
  position: relative;
  right: -2px;
}
.sub-people .interview__btn .text-main {
  display: block;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .sub-people .interview__btn .text-main {
    font-size: 1.8rem;
  }
}
.sub-people .interview__btn .text-sub {
  display: block;
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .sub-people .interview__btn .text-sub {
    font-size: 1.2rem;
  }
}
.sub-people .discussion {
  color: #fff;
}
.sub-people .discussion__head {
  background: url(../images/people/people-discussion-head.webp) no-repeat center/cover;
  padding-top: 62.5%;
  width: 100%;
  height: 0;
  position: relative;
}
@media (max-width: 767px) {
  .sub-people .discussion__head {
    background: url(../images/people/people-discussion-head-s.webp) no-repeat center/cover;
    padding-top: 106.6666666667%;
  }
}
.sub-people .discussion__head .head-ttl {
  line-height: 1.45;
  text-align: center;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
}
.sub-people .discussion__head .head-ttl span {
  display: block;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  margin-bottom: 0.6em;
}
@media (max-width: 767px) {
  .sub-people .discussion__head .head-ttl span {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
}
.sub-people .discussion__head .head-ttl strong {
  display: block;
  font-size: clamp(30px, 6.2vw, 96px);
  font-weight: 500;
}
.sub-people .discussion__body {
  background: #0e2f60;
  padding: 4em 0 8em;
}
@media (max-width: 767px) {
  .sub-people .discussion__body {
    padding: 1.4em 0 2em;
  }
  .sub-people .discussion__body .inner.sp-inner-s {
    width: 90%;
  }
}
.sub-people .discussion__lead {
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.34em;
  line-height: 2.4;
  text-align: center;
  margin: 3em 0;
}
@media (max-width: 767px) {
  .sub-people .discussion__lead {
    letter-spacing: 0.2em;
    line-height: 2;
    margin: 2.6em 0;
  }
}
.sub-people .discussion__member {
  display: flex;
  justify-content: center;
  gap: 1%;
  margin-top: 7em;
}
@media (max-width: 767px) {
  .sub-people .discussion__member {
    flex-direction: column;
    gap: 2em;
    max-width: 260px;
    margin: 4em auto 0;
  }
}
.sub-people .discussion__member li {
  background: #fff;
  color: #231815;
  padding: 0 1.6em 2em;
}
.sub-people .discussion__member .name {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.4em;
}
.sub-people .discussion__member .name span {
  display: inline-block;
  font-size: 75%;
}
.sub-people .discussion__member .part {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.2em;
}
.sub-people .discussion__member .text {
  font-size: clamp(11px, 0.8vw, 11px);
  letter-spacing: 0.14em;
}
.sub-people .discussion__member-note {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-align: right;
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .sub-people .discussion__member-note {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.2em;
  }
}
.sub-people .discussion__item {
  margin: 6em 0;
}
@media (max-width: 767px) {
  .sub-people .discussion__item {
    margin: 3em 0;
  }
}
.sub-people .discussion__item .ttl {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.8em;
  margin-bottom: 2.2em;
}
@media (max-width: 767px) {
  .sub-people .discussion__item .ttl {
    line-height: 1.6;
    margin-bottom: 1.6em;
  }
}
.sub-people .discussion__item p {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  padding-bottom: 1.8em;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sub-people .discussion__item p {
    letter-spacing: 0.16em;
    width: 88%;
  }
}
.sub-people .discussion__speaker {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 900px;
  margin: 0.8em auto;
}
.sub-people .discussion__speaker dt {
  font-weight: 500;
  width: 12%;
}
.sub-people .discussion__speaker dd {
  margin-bottom: 2em;
  width: 86%;
}
@media (max-width: 767px) {
  .sub-people .discussion__speaker {
    font-size: 1.2rem;
    flex-direction: column;
    width: 88%;
  }
  .sub-people .discussion__speaker dt,
  .sub-people .discussion__speaker dd {
    width: 100%;
  }
  .sub-people .discussion__speaker dt {
    margin-bottom: 0.6em;
  }
}
.sub-people .discussion__img {
  margin-bottom: 8em;
}
@media (max-width: 767px) {
  .sub-people .discussion__img {
    margin-bottom: 4.4em;
  }
}
.sub-people .event {
  background: #e6e6e6;
}
@media (max-width: 767px) {
  .sub-people .event {
    padding: 60px 0 0;
  }
}
.sub-people .event__block {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
.sub-people .event__block .text {
  font-size: clamp(14px, 1.4vw, 16px);
}
@media (max-width: 767px) {
  .sub-people .event__block {
    flex-direction: column;
  }
}
.sub-people .event__left {
  width: 46%;
}
@media (max-width: 767px) {
  .sub-people .event__left {
    width: 100%;
  }
}
.sub-people .event__lead {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2em;
}
@media (max-width: 1024px) {
  .sub-people .event__lead {
    margin-bottom: 1.4em;
  }
}
@media (max-width: 767px) {
  .sub-people .event__lead {
    text-align: center;
  }
}
.sub-people .event__list {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  margin: 2.4em 0;
}
@media (max-width: 1024px) {
  .sub-people .event__list {
    margin: 1.8em 0;
  }
}
.sub-people .event__list li {
  background: #fff;
  border-radius: 16px;
  color: #0e2f60;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 500;
  text-align: center;
  padding: 0.8em;
  min-height: 5.2em;
}
.sub-people .event__list li span {
  display: block;
  color: #646464;
  font-size: 70%;
}
@media (max-width: 1024px) {
  .sub-people .event__list li {
    min-height: 4.6em;
  }
}
@media (max-width: 767px) {
  .sub-people .event__list li {
    border-radius: 10px;
    min-height: 4.2em;
  }
  .sub-people .event__list li span {
    font-size: 60%;
    line-height: 1.2;
  }
}
.sub-people .event__right {
  width: 46vw;
  margin-right: calc(50% - 50vw);
  max-height: 600px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sub-people .event__right {
    width: 100vw;
    margin: 3em calc(50% - 50vw) 0;
  }
}

@keyframes ScheduleScrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.sub-works .fv__bg {
  background-image: url(../images/works/works-mv-bg.webp);
}
@media (max-width: 767px) {
  .sub-works .fv__bg {
    background-image: url(../images/works/works-mv-bg-s.webp);
  }
}
@media (max-width: 767px) {
  .sub-works .fv__catch-copy {
    width: 15em;
  }
  .sub-works .fv__catch-copy.text-l {
    width: 2.8em;
  }
}
.sub-works .business {
  background: #0e2f60;
  color: #fff;
}
@media (max-width: 767px) {
  .sub-works .business__block {
    margin-top: 3em;
  }
}
.sub-works .business__content {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-height: 350px;
  margin-bottom: 6em;
}
.sub-works .business__content.last {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .sub-works .business__content {
    min-height: 210px;
  }
}
@media (max-width: 767px) {
  .sub-works .business__content {
    margin-bottom: 4.6em;
    min-height: auto;
    width: 84%;
  }
}
.sub-works .business__ttl {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1.2em;
}
@media (max-width: 767px) {
  .sub-works .business__ttl {
    line-height: 1.6;
    margin-bottom: 0.8em;
  }
}
.sub-works .business__img {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 390px;
  height: 340px;
}
@media (max-width: 1024px) {
  .sub-works .business__img {
    width: 220px;
    height: 192px;
  }
}
@media (max-width: 767px) {
  .sub-works .business__img {
    position: static;
    width: 80%;
    height: auto;
  }
  .sub-works .business__img-sp {
    margin-top: 2em;
  }
}
.sub-works .business__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-works .business__item {
  display: flex;
  align-items: stretch;
  padding-left: 468px;
  position: relative;
  gap: 5.6em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (max-width: 1024px) {
  .sub-works .business__item {
    gap: 3em;
    padding-left: 260px;
  }
}
@media (max-width: 767px) {
  .sub-works .business__item {
    gap: 2em;
    padding-left: 0.2em;
  }
}
.sub-works .business__item.show {
  opacity: 1;
  transform: translateY(0);
}
.sub-works .business__item.show .business__content {
  opacity: 1;
  transform: translateY(0);
}
.sub-works .business__item.line-top-active .business__line-top {
  background: #fff;
}
.sub-works .business__item.active .business__dot {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 0 6px 8px rgba(255, 255, 255, 0.5), 0 0 20px 8px rgba(255, 255, 255, 0.4), 0 0 50px 16px rgba(255, 255, 255, 0.1);
}
.sub-works .business__item.done .business__dot {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.sub-works .business__item.line-bottom-active .business__line-bottom {
  background: #fff;
}
.sub-works .business__axis {
  flex-shrink: 0;
  width: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-works .business__line-top {
  width: 1px;
  height: 8px;
  flex-shrink: 0;
  background: transparent;
  transition: background 0.5s ease;
}
.sub-works .business__dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}
.sub-works .business__line-bottom {
  width: 1px;
  flex: 1;
  background: transparent;
  transition: background 0.5s ease;
}
.sub-works .safety {
  background: #fff;
}
.sub-works .safety__slider {
  margin-right: calc(50% - 50vw);
  margin-top: 4.8em;
}
.sub-works .safety__box {
  display: flex !important;
  align-items: stretch;
  min-height: 640px;
}
@media (max-width: 767px) {
  .sub-works .safety__box {
    flex-direction: column;
    min-height: auto;
  }
}
.sub-works .safety__item {
  background: #0e2f60;
  color: #fff;
  padding: 8rem 9.4rem;
  width: 70%;
}
@media (max-width: 1024px) {
  .sub-works .safety__item {
    padding: 6rem 6rem 7rem;
  }
}
@media (max-width: 767px) {
  .sub-works .safety__item {
    padding: 5rem 3.4rem;
    min-height: 550px;
    width: 100%;
  }
}
.sub-works .safety__ttl {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1.6em;
}
.sub-works .safety__check {
  margin-bottom: 3.4em;
}
.sub-works .safety__check:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .sub-works .safety__check {
    margin-bottom: 2em;
  }
}
@media (max-width: 767px) {
  .sub-works .safety__check p {
    font-size: 1.2rem;
  }
}
.sub-works .safety__check .ttl {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
  padding-left: 1.8em;
  position: relative;
}
.sub-works .safety__check .ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0.2em;
  width: 12px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .sub-works .safety__check .ttl {
    padding-left: 1.6em;
    text-wrap: auto;
  }
  .sub-works .safety__check .ttl::before {
    width: 12px;
    height: 6px;
  }
}
.sub-works .safety__check .list {
  margin-bottom: 2em;
}
.sub-works .safety__check .list li {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-bottom: 0.4em;
  padding-left: 1.8em;
  position: relative;
}
.sub-works .safety__check .list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.65em;
  left: 0.2em;
  width: 14px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.sub-works .safety__img {
  aspect-ratio: 399/620;
  overflow: hidden;
  width: 30%;
}
.sub-works .safety__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .sub-works .safety__img {
    aspect-ratio: 375/210;
    width: 100%;
  }
}
.sub-works .safety__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 2.6em;
}
@media (max-width: 767px) {
  .sub-works .safety__arrows {
    margin-top: 1.6em;
  }
}
.sub-works .safety__arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #0e2f60;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .sub-works .safety__arrow {
    width: 50px;
    height: 50px;
  }
}
.sub-works .safety__arrow .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 1px;
  background-color: #0e2f60;
}
.sub-works .safety__arrow .icon::before, .sub-works .safety__arrow .icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 11px;
  height: 1px;
  border-radius: 9999px;
  background-color: #0e2f60;
  transform-origin: calc(100% - 0.5px) 50%;
}
.sub-works .safety__arrow .icon::before {
  transform: rotate(45deg);
}
.sub-works .safety__arrow .icon::after {
  transform: rotate(-45deg);
}
.sub-works .safety__arrow--prev .icon {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.sub-works .case__head {
  background: url("../images/works/works-case-mv.webp") center/cover no-repeat;
  position: relative;
  height: 500px;
}
.sub-works .case__head .section-ttl--big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
@media (max-width: 1024px) {
  .sub-works .case__head {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .sub-works .case__head {
    height: 220px;
  }
}
.sub-works .case__main {
  background: #0e2f60;
  color: #fff;
}
.sub-works .case__tab-labels {
  display: flex;
  justify-content: space-between;
}
.sub-works .case__tab-labels label {
  border: 1px solid #fff;
  cursor: pointer;
  font-size: clamp(14px, 1.4vw, 18px);
  padding: 0.3em 1em;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.2s;
  width: 49.5%;
}
.sub-works .case__tab-labels label:hover {
  opacity: 0.6;
}
.sub-works .case__tab-labels label.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .sub-works .case__tab-labels label {
    width: 48.6%;
  }
}
.sub-works .case__tab-panels {
  position: relative;
  margin-top: 4em;
}
@media (max-width: 767px) {
  .sub-works .case__tab-panels {
    margin-top: 3em;
  }
}
.sub-works .case__tab-panels .panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sub-works .case__tab-panels .panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.sub-works .case__ttl {
  border-bottom: 1px solid #fff;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-bottom: 0.4em;
  margin-bottom: 1.8em;
}
@media (max-width: 767px) {
  .sub-works .case__ttl {
    line-height: 1.6;
    padding-bottom: 0.8em;
  }
}
.sub-works .case__lead {
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.24em;
  margin-bottom: 2.6em;
}
.sub-works .case__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub-works .case__flex {
    flex-direction: column;
  }
}
.sub-works .case__item.before {
  position: relative;
  width: 41.2%;
}
@media (max-width: 767px) {
  .sub-works .case__item.before {
    margin-bottom: 2.4em;
    width: 100%;
  }
}
.sub-works .case__item.after {
  position: relative;
  width: 54.2%;
}
.sub-works .case__item.after .pic {
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .sub-works .case__item.after {
    width: 100%;
  }
}
.sub-works .case__item .pic {
  position: relative;
  height: 286px;
}
@media (max-width: 1024px) {
  .sub-works .case__item .pic {
    height: 240px;
  }
}
.sub-works .case__item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-works .case__item .arrow {
  position: absolute;
  top: 50%;
  right: -3.6em;
  transform: translateY(-50%);
  width: 62px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  z-index: 1;
}
.sub-works .case__item .arrow::before, .sub-works .case__item .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 32px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.sub-works .case__item .arrow::before {
  transform: rotate(45deg);
}
.sub-works .case__item .arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  .sub-works .case__item .arrow {
    right: -2.8em;
  }
}
@media (max-width: 767px) {
  .sub-works .case__item .arrow {
    display: none;
  }
}
.sub-works .case__caption {
  font-size: clamp(16px, 1.5vw, 18px);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
.sub-works .case__contents {
  letter-spacing: 0.2em;
  margin-top: 1.4em;
}
.sub-works .case__contents dt {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.4em;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .sub-works .case__contents {
    margin-top: 1em;
  }
  .sub-works .case__contents dt {
    margin-bottom: 0.8em;
  }
}
.sub-works .case__list li {
  line-height: 1.6;
  padding-left: 1.4em;
  position: relative;
}
.sub-works .case__list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.38em;
  left: 0;
  background: #fff;
  border-radius: 100px;
  width: 0.9em;
  height: 0.9em;
}
@media (max-width: 767px) {
  .sub-works .case__list li {
    font-size: 1.2rem;
    margin-bottom: 0.2em;
  }
}
.sub-works .case__result {
  border: 1px solid #fff;
  padding: 0.8em 1.2em;
  margin: 3.4em 0 1em;
}
@media (max-width: 767px) {
  .sub-works .case__result {
    padding: 0 1em;
    margin: 3em 0 0;
  }
}
.sub-works .case__result dl {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .sub-works .case__result dl {
    flex-direction: column;
  }
}
.sub-works .case__result dl dt {
  border-right: 1px solid #fff;
  text-align: center;
  padding: 2em 1em;
  width: 22%;
}
@media (max-width: 767px) {
  .sub-works .case__result dl dt {
    border-right: 0;
    border-bottom: 1px solid #fff;
    padding: 1em;
    width: 100%;
  }
}
.sub-works .case__result dl dd {
  padding: 1em 1em 1em 3.6em;
  width: 78%;
}
@media (max-width: 767px) {
  .sub-works .case__result dl dd {
    font-size: 1.2rem;
    padding: 1.8em 0.8em;
    width: 100%;
  }
}
.sub-works .case__result dl .check-text {
  line-height: 1.6;
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 0.2em;
}
.sub-works .case__result dl .check-text::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 15px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-right: 6px;
}
@media (max-width: 767px) {
  .sub-works .case__result dl .check-text {
    padding-left: 1.6em;
  }
  .sub-works .case__result dl .check-text::before {
    top: 0.52em;
    width: 12px;
    height: 6px;
  }
}

.sub-benefits .fv__bg {
  background-image: url(../images/benefits/benefits-mv-bg.webp);
}
@media (max-width: 767px) {
  .sub-benefits .fv__bg {
    background-image: url(../images/benefits/benefits-mv-bg-s.webp);
  }
}
.sub-benefits .fv__catch-item {
  gap: 4em;
}
@media (max-width: 767px) {
  .sub-benefits .fv__ttl strong {
    font-size: 420%;
  }
  .sub-benefits .fv__catch-item {
    gap: 1.6em;
  }
  .sub-benefits .fv__catch-copy {
    width: 8.4em;
  }
}
.sub-benefits .system {
  background: #fff;
}
.sub-benefits .system.bg-gray {
  background: #e6e6e6;
}
.sub-benefits .system__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2em;
}
@media (max-width: 767px) {
  .sub-benefits .system__flex {
    flex-direction: column-reverse;
    gap: 2.6em;
    padding-top: 0;
  }
}
.sub-benefits .system__box {
  margin-top: -0.8em;
  width: 49.5%;
}
@media (max-width: 767px) {
  .sub-benefits .system__box {
    margin-top: 0;
    width: 100%;
  }
}
.sub-benefits .system__img {
  position: sticky;
  top: 80px;
  width: 43.2vw;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .sub-benefits .system__img {
    position: static;
    margin: 0;
    width: 100%;
  }
}
.sub-benefits .system__item {
  margin-bottom: 3em;
}
@media (max-width: 767px) {
  .sub-benefits .system__item:last-of-type {
    margin-bottom: 0;
  }
}
.sub-benefits .system__ttl {
  color: #0e2f60;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.24em;
  font-weight: 500;
  margin-bottom: 0.2em;
  text-wrap: auto;
}
@media (max-width: 767px) {
  .sub-benefits .system__ttl {
    line-height: 1.8;
    margin-bottom: 0.6em;
  }
}
.sub-benefits .comments {
  background: #0e2f60;
  color: #fff;
}
.sub-benefits .comments-slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;
}
.sub-benefits .comments-slider__item {
  padding: 0 1.8em;
}
@media (max-width: 767px) {
  .sub-benefits .comments-slider__item {
    padding: 0 0.8em;
  }
}
.sub-benefits .comments-slider__box {
  border: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6em 3.8em 2.6em 0;
  min-height: 310px;
}
@media (max-width: 1024px) {
  .sub-benefits .comments-slider__box {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.6em;
    padding: 0 2em 2em;
    min-height: 380px;
  }
}
@media (max-width: 767px) {
  .sub-benefits .comments-slider__box {
    padding: 0 1.8em 2em;
    min-height: 400px;
  }
}
.sub-benefits .comments-slider__contents {
  width: 60%;
}
.sub-benefits .comments-slider__contents .name {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.4em;
}
@media (max-width: 1024px) {
  .sub-benefits .comments-slider__contents {
    width: 100%;
  }
  .sub-benefits .comments-slider__contents .name {
    text-align: center;
  }
  .sub-benefits .comments-slider__contents p {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
  }
}
.sub-benefits .comments-slider__img {
  width: 32%;
}
@media (max-width: 1024px) {
  .sub-benefits .comments-slider__img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .sub-benefits .comments-slider__img {
    width: 150px;
  }
}
.sub-benefits .comments-slider__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 2.4em;
}
@media (max-width: 767px) {
  .sub-benefits .comments-slider__arrows {
    margin-top: 1.6em;
  }
}
.sub-benefits .comments-slider__arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .sub-benefits .comments-slider__arrow {
    width: 50px;
    height: 50px;
  }
}
.sub-benefits .comments-slider__arrow .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 1px;
  background-color: #fff;
}
.sub-benefits .comments-slider__arrow .icon::before, .sub-benefits .comments-slider__arrow .icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 11px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.sub-benefits .comments-slider__arrow .icon::before {
  transform: rotate(45deg);
}
.sub-benefits .comments-slider__arrow .icon::after {
  transform: rotate(-45deg);
}
.sub-benefits .comments-slider__arrow--prev .icon {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.sub-benefits .develop {
  background: #e6e6e6;
}
@media (max-width: 767px) {
  .sub-benefits .develop {
    padding-bottom: 0;
  }
}
.sub-benefits .develop .section-ttl {
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: 0.24em;
  margin-bottom: 1em;
  text-align: center;
}
.sub-benefits .develop .text-lead {
  text-align: center;
  margin-bottom: 4.2em;
}
.sub-benefits .develop__box {
  display: flex;
  align-items: stretch;
  margin-right: calc(50% - 50vw);
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .sub-benefits .develop__box {
    flex-direction: column;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.sub-benefits .develop__item {
  background: #0e2f60;
  color: #fff;
  padding: 11rem 10rem;
  width: 68%;
}
@media (max-width: 1024px) {
  .sub-benefits .develop__item {
    padding: 7rem;
  }
}
@media (max-width: 767px) {
  .sub-benefits .develop__item {
    padding: 4em 3em 3em;
    width: 100%;
  }
}
.sub-benefits .develop__img {
  aspect-ratio: 399/620;
  overflow: hidden;
  width: 32%;
}
.sub-benefits .develop__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .sub-benefits .develop__img {
    aspect-ratio: auto;
    width: 100%;
  }
}
.sub-benefits .develop__ttl {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin-bottom: 2.2em;
}
@media (max-width: 767px) {
  .sub-benefits .develop__ttl {
    margin-bottom: 1.4em;
  }
}
.sub-benefits .develop__text {
  margin-bottom: 2.2em;
}
@media (max-width: 767px) {
  .sub-benefits .develop__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.8em;
  }
}

.sub-recruit .fv__bg {
  background-image: url(../images/recruit/recruit-mv-bg.webp);
}
@media (max-width: 767px) {
  .sub-recruit .fv__bg {
    background-image: url(../images/recruit/recruit-mv-bg-s.webp);
  }
}
.sub-recruit .fv__catch-item {
  gap: 2.4em;
}
.sub-recruit .fv__catch-copy span {
  line-height: 3.4;
}
.sub-recruit .fv__catch-copy strong {
  line-height: 2.4;
}
@media (max-width: 767px) {
  .sub-recruit .fv__ttl strong {
    font-size: 420%;
  }
  .sub-recruit .fv__catch-item {
    gap: 1.6em;
  }
  .sub-recruit .fv__catch-copy {
    width: 22.2em;
  }
  .sub-recruit .fv__catch-copy.text-l {
    width: 2.8em;
  }
  .sub-recruit .fv__catch-copy span {
    line-height: 2.6;
  }
  .sub-recruit .fv__catch-copy strong {
    line-height: 2.2;
  }
}
.sub-recruit .details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2%;
  position: relative;
}
@media (max-width: 767px) {
  .sub-recruit .details {
    flex-direction: column;
  }
}
.sub-recruit .details__tab {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  max-width: 310px;
  width: 28.5%;
}
.sub-recruit .details__tab label {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: clamp(14px, 1.2vw, 14px);
  font-weight: 500;
  line-height: 1.8;
  padding: 0.8em 1em;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.2s;
  min-height: 75px;
}
.sub-recruit .details__tab label:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .sub-recruit .details__tab {
    position: relative;
    top: 0;
    border: 1px solid currentColor;
    margin-bottom: 3em;
    max-width: none;
    width: 100%;
  }
  .sub-recruit .details__tab label {
    display: none;
    border: none;
    border-top: 1px solid rgba(128, 128, 128, 0.3);
    min-height: 5.2em;
    opacity: 0.4;
  }
  .sub-recruit .details__tab label.is-active {
    display: flex;
    border-top: none;
    opacity: 1;
  }
  .sub-recruit .details__tab label.is-active::after {
    content: "";
    position: absolute;
    top: 2.2em;
    right: 1.6em;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .sub-recruit .details__tab.is-open label {
    display: flex;
  }
  .sub-recruit .details__tab.is-open label.is-active::after {
    transform: rotate(-135deg);
  }
}
.sub-recruit .details__contents {
  position: relative;
  max-width: 710px;
  width: 65.2%;
}
@media (max-width: 767px) {
  .sub-recruit .details__contents {
    max-width: none;
    width: 100%;
  }
}
.sub-recruit .details__box {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sub-recruit .details__box.is-active {
  display: block;
}
.sub-recruit .details__box .mb-1 {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .sub-recruit .details__box .text,
  .sub-recruit .details__box .list--disc {
    font-size: 1.3rem;
  }
}
.sub-recruit .details__ttl {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.3em;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.4em;
  margin-bottom: 2.2em;
}
@media (max-width: 767px) {
  .sub-recruit .details__ttl {
    letter-spacing: 0.24em;
    line-height: 1.8;
    padding-bottom: 0.6em;
    margin-bottom: 1.8em;
  }
}
.sub-recruit .details__img {
  display: block;
  max-width: 710px;
  width: 100%;
}
.sub-recruit .details__item {
  margin: 2.8em 0;
}
.sub-recruit .details__item .ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 0.6em;
}
@media (max-width: 767px) {
  .sub-recruit .details__item {
    margin: 2.4em 0;
  }
}
.sub-recruit .details .btn--m {
  font-family: inherit;
  letter-spacing: 0.2em;
  margin: 4em 0 0 auto;
}
@media (max-width: 767px) {
  .sub-recruit .details .btn--m {
    margin: 3.4em auto 0;
  }
}
.sub-recruit .jobs {
  background: #0e2f60;
  color: #fff;
}
.sub-recruit .jobs__tbl th,
.sub-recruit .jobs__tbl td {
  border: 1px solid #fff;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  padding: 1em 1.4em;
}
@media (max-width: 767px) {
  .sub-recruit .jobs__tbl th,
  .sub-recruit .jobs__tbl td {
    letter-spacing: 0.1em;
    line-height: 1.8;
    padding: 1.2em 0.6em 1.2em 1em;
  }
}
.sub-recruit .jobs__tbl th {
  width: 22%;
}
@media (max-width: 767px) {
  .sub-recruit .jobs__tbl th {
    width: 32%;
  }
}
.sub-recruit .jobs__tbl td {
  width: 78%;
}
@media (max-width: 767px) {
  .sub-recruit .jobs__tbl td {
    width: 68%;
  }
}
.sub-recruit .jobs__tbl .note {
  font-size: 1.2rem;
  margin-top: 0.4em;
}
.sub-recruit .jobs__tbl .salary {
  display: flex;
  flex-wrap: wrap;
  max-width: 280px;
}
.sub-recruit .jobs__tbl .salary dt {
  width: 8rem;
}
.sub-recruit .jobs__tbl .salary dd {
  width: 18rem;
}
@media (max-width: 1024px) {
  .sub-recruit .jobs__tbl .salary {
    gap: 2%;
    max-width: none;
  }
  .sub-recruit .jobs__tbl .salary dt {
    width: 32%;
  }
  .sub-recruit .jobs__tbl .salary dd {
    width: 66%;
  }
}
.sub-recruit .conditions {
  background: #e6e6e6;
  color: #0e2f60;
}
.sub-recruit .conditions .details__tab label {
  border-color: #0e2f60;
  color: #0e2f60;
}
.sub-recruit .conditions .details__ttl {
  border-color: #0e2f60;
  color: #0e2f60;
}
.sub-recruit .conditions__tbl {
  margin-bottom: 1.6em;
}
.sub-recruit .conditions__tbl th,
.sub-recruit .conditions__tbl td {
  font-weight: 400;
  text-align: left;
  padding: 0 0.2em 0.8em 0;
  vertical-align: top;
}
@media (max-width: 767px) {
  .sub-recruit .conditions__tbl th,
  .sub-recruit .conditions__tbl td {
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
}
.sub-recruit .conditions__tbl th {
  width: 20%;
}
@media (max-width: 767px) {
  .sub-recruit .conditions__tbl th {
    width: 26%;
  }
}
.sub-recruit .conditions__tbl td {
  width: 80%;
}
@media (max-width: 767px) {
  .sub-recruit .conditions__tbl td {
    width: 74%;
  }
}
.sub-recruit .conditions__lead {
  font-size: 1.4rem;
}
.sub-recruit .conditions__ttl {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1.8em 0 0.4em;
}
.sub-recruit .conditions__text {
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .sub-recruit .conditions__text {
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    line-height: 1.6;
  }
}
.sub-recruit .step {
  background: url(../images/recruit/recruit-step-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-recruit .step {
    background: url(../images/recruit/recruit-step-bg-s.webp) no-repeat center left/cover;
  }
}
.sub-recruit .step__list {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 5em;
}
@media (max-width: 767px) {
  .sub-recruit .step__list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.6em;
  }
}
.sub-recruit .step__list li {
  max-width: 194px;
  width: 20%;
}
@media (max-width: 767px) {
  .sub-recruit .step__list li {
    max-width: 320px;
    width: 100%;
  }
}
.sub-recruit .step__num {
  color: #fff;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .sub-recruit .step__num {
    text-align: left;
  }
}
.sub-recruit .step__box {
  border: 1px solid #fff;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  padding: 2em 0.2em;
  position: relative;
  min-height: 200px;
}
.sub-recruit .step__box::before {
  content: "";
  background: #fff;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
}
@media (max-width: 767px) {
  .sub-recruit .step__box {
    display: flex;
    align-items: center;
    gap: 1.6em;
    padding: 1em 1.8em;
    min-height: 104px;
  }
  .sub-recruit .step__box::before {
    content: "";
    background: #fff;
    position: absolute;
    right: auto;
    top: auto;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 14px;
  }
}
.sub-recruit .step li:last-of-type .step__box::before {
  content: none;
}
.sub-recruit .step__icon {
  display: block;
  margin: 0.8em auto 1.6em;
  width: 38px;
}
@media (max-width: 767px) {
  .sub-recruit .step__icon {
    width: 28px;
    margin: 0;
  }
}
.sub-recruit .step .text-box {
  display: contents;
}
@media (max-width: 767px) {
  .sub-recruit .step .text-box {
    display: block;
    text-align: left;
  }
}
.sub-recruit .step .text {
  font-size: clamp(14px, 1.2vw, 14px);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .sub-recruit .step .text {
    letter-spacing: 0.2em;
  }
}
@media (max-width: 767px) {
  .sub-recruit .step .text {
    line-height: 1.6;
    margin-top: 0.2em;
  }
  .sub-recruit .step .text br.u-tb {
    display: none !important;
  }
}
.sub-recruit .step .note {
  font-size: clamp(10px, 1.2vw, 12px);
}
@media (max-width: 1024px) {
  .sub-recruit .step .note {
    letter-spacing: 0.2em;
  }
}
@media (max-width: 767px) {
  .sub-recruit .step .note br.u-tb {
    display: none !important;
  }
}
.sub-recruit .step .btn--m {
  font-family: inherit;
  letter-spacing: 0.2em;
  margin: 3em 0 0 auto;
}
@media (max-width: 767px) {
  .sub-recruit .step .btn--m {
    margin: 2.4em auto 0;
  }
}
.sub-recruit .faq {
  background: #e6e6e6;
}
.sub-recruit .faq__box {
  background: #0e2f60;
  color: #fff;
  padding: 6em;
  margin-bottom: 3em;
}
@media (max-width: 767px) {
  .sub-recruit .faq__box {
    padding: 2.6em 2.2em;
    margin-bottom: 0;
  }
}
.sub-recruit .faq__accordion {
  max-width: 920px;
  margin: 0 auto 1.6em;
}
@media (max-width: 767px) {
  .sub-recruit .faq__accordion {
    margin-bottom: 1em;
  }
}
.sub-recruit .faq__accordion summary {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  padding: 0.6em 1.8em 0.6em 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .sub-recruit .faq__accordion summary {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sub-recruit .faq__accordion summary::-webkit-details-marker {
  display: none;
}
.sub-recruit .faq__accordion summary::after {
  content: "";
  position: absolute;
  top: 1.8em;
  right: 1em;
  transform: translateY(-25%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .sub-recruit .faq__accordion summary::after {
    top: 5em;
    right: 0.8em;
  }
}
.sub-recruit .faq__accordion[open] summary::after {
  transform: rotate(225deg);
}
.sub-recruit .faq__accordion .answer {
  display: flex;
  gap: 0.4em;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1.4em 1em 1.2em;
  transition: transform 0.5s, opacity 0.5s;
}
@media (max-width: 767px) {
  .sub-recruit .faq__accordion .answer {
    flex-direction: column;
    gap: 0;
    padding: 1em 0.2em;
  }
}
.sub-recruit .faq__accordion .answer .icon_a {
  font-size: 132%;
  line-height: 1.6;
  min-width: 1.8em;
  width: 3.6%;
}
.sub-recruit .faq__accordion .answer .text {
  line-height: 1.8;
  width: 96%;
}
@media (max-width: 767px) {
  .sub-recruit .faq__accordion .answer .text {
    font-size: 1.4rem;
    width: 100%;
  }
}
.sub-recruit .faq__accordion[open] .answer {
  transform: none;
  opacity: 1;
}
.sub-recruit .faq__accordion .num {
  display: inline-block;
  font-size: 112%;
  width: 2.6em;
}

.sub-page {
  background: #e6e6e6;
}
.sub-page .pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin-top: 6em;
}
@media (max-width: 767px) {
  .sub-page .pager {
    gap: 1.6em;
    margin-top: 4em;
  }
}
.sub-page .pager .arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #0e2f60;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
}
.sub-page .pager .arrow--prev {
  margin: 0 auto 0 0;
}
.sub-page .pager .arrow--next {
  margin: 0 0 0 auto;
}
.sub-page .pager .arrow.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
.sub-page .pager .arrow .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 1px;
  background-color: #0e2f60;
}
.sub-page .pager .arrow .icon::before, .sub-page .pager .arrow .icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #0e2f60;
  transform-origin: calc(100% - 0.5px) 50%;
}
.sub-page .pager .arrow .icon::before {
  transform: rotate(45deg);
}
.sub-page .pager .arrow .icon::after {
  transform: rotate(-45deg);
}
.sub-page .pager .arrow--prev .icon {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.sub-page .pager .arrow:hover {
  opacity: 0.6;
}
.sub-page .pager__num {
  color: #7188ab;
}
.sub-page .pager__num.is-current {
  color: #0e2f60;
}

.static-page {
  min-height: 800px;
}
@media (max-width: 767px) {
  .static-page {
    min-height: 600px;
  }
}
.static-page__ttl {
  color: #0e2f60;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
.static-page__ttl-m {
  color: #0e2f60;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 3em 0 1.2em;
}
.static-page p {
  margin-bottom: 2.2em;
}
@media (max-width: 767px) {
  .static-page p {
    letter-spacing: 0.16em;
    margin-bottom: 2em;
  }
}
.static-page strong {
  font-weight: 500;
}

.archive__list li {
  border-bottom: 1px solid #646464;
}
.archive__list li:first-of-type {
  border-top: 1px solid #646464;
}
.archive__list li a {
  display: flex;
  gap: 6%;
  padding: 1.8em 1.4em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .archive__list li a {
    flex-direction: column;
    padding: 1.2em 0.4em;
  }
}
.archive__list li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 40%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.archive__list li a .icon {
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background-color: #646464;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.archive__list li a .icon::before, .archive__list li a .icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #646464;
  transform-origin: calc(100% - 0.5px) 50%;
}
.archive__list li a .icon::before {
  transform: rotate(45deg);
}
.archive__list li a .icon::after {
  transform: rotate(-45deg);
}
.archive__list li a:hover {
  opacity: 1;
}
.archive__list li a:hover::before {
  opacity: 1;
}
.archive__list li a:hover .icon {
  opacity: 1;
}
.archive__list li .date {
  color: #0e2f60;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  width: 10%;
}
@media (max-width: 767px) {
  .archive__list li .date {
    font-size: 1.2rem;
    width: 100%;
  }
}
.archive__list li .ttl {
  font-weight: 500;
  position: relative;
  z-index: 1;
  width: 84%;
}
@media (max-width: 767px) {
  .archive__list li .ttl {
    line-height: 1.6;
    width: 100%;
  }
}

.single__head {
  margin-bottom: 4em;
}
@media (max-width: 767px) {
  .single__head {
    margin-bottom: 3em;
  }
}
.single__date {
  color: #0e2f60;
  letter-spacing: 0.08em;
  margin-bottom: 0.4em;
}
@media (max-width: 767px) {
  .single__date {
    font-size: 1.2rem;
  }
}
.single__ttl {
  border-bottom: 1px solid #231815;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.6;
  padding-bottom: 0.8em;
}
@media (max-width: 767px) {
  .single__ttl {
    letter-spacing: 0.2em;
  }
}
.single__contents {
  letter-spacing: 0.3em;
  margin-bottom: 6.8em;
}
@media (max-width: 767px) {
  .single__contents {
    letter-spacing: 0.2em;
    margin-bottom: 6em;
  }
}
.single__contents h2 {
  color: #0e2f60;
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  margin: 3.8em 0 1em;
  text-wrap: auto;
}
.single__contents h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  margin: 3.8em 0 1em;
  text-wrap: auto;
}
.single__contents h4 {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  margin: 2em 0 0.8em;
  text-wrap: auto;
}
.single__contents p {
  line-height: 2.2;
  margin-bottom: 2.4em;
}
@media (max-width: 767px) {
  .single__contents p {
    line-height: 1.8;
  }
}
.single__contents a {
  color: #0e2f60;
  text-decoration: underline;
  word-break: break-all;
}
.single__contents table {
  margin: 1em 0 2em;
}
.single__contents table thead {
  border-bottom: none;
}
.single__contents table th,
.single__contents table td {
  border: 1px solid #0e2f60;
  letter-spacing: 0.2em;
  padding: 0.8em 1.4em;
}
@media (max-width: 767px) {
  .single__contents table th,
  .single__contents table td {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    padding: 1em 0.6em;
  }
}
.single__contents table th {
  background: #c5c8cd;
  color: #0e2f60;
  font-weight: 500;
}
.single__contents table th strong {
  font-weight: 700;
}
.single__contents table td {
  background: rgba(255, 255, 255, 0.6);
}
.single__contents .wp-block-image {
  margin-top: 3em;
  margin-bottom: 3em;
}
.single__contents iframe {
  max-width: 600px;
  width: 100%;
}
.single .btn--m {
  font-family: inherit;
  letter-spacing: 0.2em;
  margin: 0 auto 2em;
}
@media (max-width: 767px) {
  .single .btn--m {
    margin: 0 auto 1em;
  }
}

.simple-mv {
  background: #646464;
  height: 400px;
}
@media (max-width: 1024px) {
  .simple-mv {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .simple-mv {
    height: 240px;
  }
}
.simple-mv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 96%;
}
.simple-mv__ttl span {
  display: block;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1.2;
}
.simple-mv__ttl strong {
  display: block;
  font-size: clamp(38px, 6.2vw, 70px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

.sub-news .simple-mv {
  background: url(../images/news/news-mv-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-news .simple-mv {
    background: url(../images/news/news-mv-bg-s.webp) no-repeat center/cover;
  }
}

.sub-privacy .simple-mv {
  background: url(../images/policy/privacy-policy-mv-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-privacy .simple-mv {
    background: url(../images/policy/privacy-policy-mv-bg-s.webp) no-repeat center/cover;
  }
}

.sub-security .simple-mv {
  background: url(../images/policy/security-policy-mv-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-security .simple-mv {
    background: url(../images/policy/security-policy-mv-bg-s.webp) no-repeat center/cover;
  }
}

.sub-contact .simple-mv {
  background: url(../images/contact/contact-mv-bg.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .sub-contact .simple-mv {
    background: url(../images/contact/contact-mv-bg-s.webp) no-repeat center/cover;
  }
}
.sub-contact .inquiry {
  background: #fff;
}
.sub-contact .inquiry__lead {
  margin-bottom: 4em;
}
@media (max-width: 767px) {
  .sub-contact .inquiry__lead {
    font-size: 1.4rem;
    margin-bottom: 3em;
  }
}
.sub-contact .inquiry__box {
  background: #0e2f60;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
  padding: 4em;
  margin-bottom: 2.8em;
}
@media (max-width: 767px) {
  .sub-contact .inquiry__box {
    flex-direction: column;
    gap: 2em;
    padding: 3em 1.2em;
    margin-bottom: 1.6em;
  }
}
.sub-contact .inquiry__text {
  width: 66%;
}
@media (max-width: 1024px) {
  .sub-contact .inquiry__text {
    width: 52%;
  }
}
@media (max-width: 767px) {
  .sub-contact .inquiry__text {
    text-align: center;
    width: 100%;
  }
}
.sub-contact .inquiry__box.col-01 {
  display: block;
}
.sub-contact .inquiry__box.col-01 .inquiry__text {
  width: 100%;
}
.sub-contact .inquiry__box.col-01 .tel {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  margin-top: 0.6em;
}
.sub-contact .inquiry__btn {
  width: 30%;
}
.sub-contact .inquiry__btn .btn--m {
  font-family: inherit;
  letter-spacing: 0.2em;
  margin: 0 0 0 auto;
}
@media (max-width: 1024px) {
  .sub-contact .inquiry__btn {
    width: 42%;
  }
}
@media (max-width: 767px) {
  .sub-contact .inquiry__btn {
    width: 100%;
  }
  .sub-contact .inquiry__btn .btn--m {
    margin: 0 auto;
  }
}
.sub-contact .inquiry__ttl {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  margin-bottom: 1.2em;
}
.sub-contact .office {
  background: #e6e6e6;
}
.sub-contact .office__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sub-contact .office__text-col {
  width: 44%;
}
@media (max-width: 1024px) {
  .sub-contact .office__text-col {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .sub-contact .office__text-col {
    width: 100%;
  }
}
.sub-contact .office__item {
  padding: 0 0 6em;
}
@media (max-width: 767px) {
  .sub-contact .office__item {
    padding: 0 0 3em;
  }
}
.sub-contact .office__ttl {
  color: #0e2f60;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .sub-contact .office__tbl {
    display: block;
    margin: 0 auto;
    width: 88%;
  }
}
.sub-contact .office__tbl th,
.sub-contact .office__tbl td {
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-align: left;
  padding: 0 0.4em 1.2em 0;
  vertical-align: top;
}
@media (max-width: 767px) {
  .sub-contact .office__tbl th,
  .sub-contact .office__tbl td {
    display: block;
  }
}
.sub-contact .office__tbl th {
  font-weight: 500;
  width: 22%;
}
@media (max-width: 767px) {
  .sub-contact .office__tbl th {
    padding: 0;
    width: 100%;
  }
}
.sub-contact .office__tbl td {
  width: 78%;
}
@media (max-width: 767px) {
  .sub-contact .office__tbl td {
    padding: 0 0 1.6em;
    width: 100%;
  }
}
.sub-contact .office__map-col {
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  height: 450px;
  max-width: 540px;
  width: 50%;
}
@media (max-width: 1024px) {
  .sub-contact .office__map-col {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .sub-contact .office__map-col {
    display: none;
  }
}
.sub-contact .office__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 600/450;
}
.sub-contact .office__map {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.sub-contact .office__map.active {
  opacity: 1;
  pointer-events: auto;
}
.sub-contact .office__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.sub-contact .office__map-sp {
  display: none;
}
@media (max-width: 767px) {
  .sub-contact .office__map-sp {
    display: block;
    width: 100%;
    height: 400px;
    margin-bottom: 1.8em;
  }
  .sub-contact .office__map-sp iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
}

.form-main {
  background: #e6e6e6;
  min-height: 800px;
}
@media (max-width: 767px) {
  .form-main {
    min-height: 600px;
  }
}
.form-main__ttl {
  color: #0e2f60;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
  text-wrap: wrap;
}
.form-main__text {
  margin-bottom: 4.6em;
}
@media (max-width: 767px) {
  .form-main__text {
    margin-bottom: 3em;
  }
}
.form-main .btn--m {
  font-family: inherit;
  letter-spacing: 0.2em;
  margin: 0 auto 0 0;
}

.form-box {
  background: #fff;
  letter-spacing: 0.2em;
  padding: 6em 5.4em 7em;
}
@media (max-width: 767px) {
  .form-box {
    letter-spacing: 0.14em;
    padding: 3.4em 1.4em;
  }
}
.form-box__inner {
  margin: 0 auto;
  max-width: 920px;
}
.form-box__item {
  margin-bottom: 3em;
}
@media (max-width: 767px) {
  .form-box__item {
    margin-bottom: 3.4em;
  }
  .form-box__item:last-of-type {
    margin-bottom: 1em;
  }
}
.form-box .ttl {
  font-weight: 500;
}
.form-box .required {
  color: #dd5959;
  font-size: 120%;
}
.form-box input,
.form-box textarea,
.form-box select {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #231815;
  border-radius: 0;
  font-family: inherit;
  font-size: 100%;
  font-weight: normal;
  padding: 0.6em;
  width: 100%;
}
.form-box input#zip {
  display: block;
  max-width: 200px;
  border-bottom: 0;
}
.form-box select {
  display: block;
  max-width: 280px;
}
.form-box textarea {
  height: 10em;
}
.form-box__check {
  margin: 2em 0;
}
@media (max-width: 767px) {
  .form-box__check {
    margin: 0 0 3em;
  }
}
.form-box__check a {
  color: #0e2f60;
  text-decoration: underline;
}
.form-box__check .wpcf7-list-item {
  margin-left: 0;
}
.form-box__check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #e6e6e6;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin-right: 0.5em;
  transition: background 0.2s ease;
}
.form-box__check input[type=checkbox]:checked {
  background: #e6e6e6;
}
.form-box__check input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #0e2f60;
  border-bottom: 2px solid #0e2f60;
  transform: translate(-50%, -65%) rotate(-45deg);
}
.form-box__check label {
  display: inline-flex;
  align-items: center;
}
.form-box__submit {
  display: block;
  background: #0e2f60;
  border-radius: 100px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-align: left;
  position: relative;
  padding: 1.2em 2.8em;
  margin: 2.4em auto 0;
  width: 100%;
  max-width: 210px;
  transition: opacity 0.4s;
  cursor: pointer;
}
.form-box__submit:has(input[type=submit]:disabled) {
  background: #7e98bf;
  pointer-events: none;
}
.form-box__submit input[type=submit] {
  all: unset;
  cursor: pointer;
}
.form-box__submit .arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 26px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.form-box__submit .arrow::before, .form-box__submit .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 11px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.form-box__submit .arrow::before {
  transform: rotate(45deg);
}
.form-box__submit .arrow::after {
  transform: rotate(-45deg);
}
.form-box__submit:hover {
  opacity: 0.7;
}
.form-box__prev {
  display: block;
  border: 1px solid #0e2f60;
  background: #fff;
  border-radius: 100px;
  color: #0e2f60;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-align: left;
  position: relative;
  padding: 0.8em 2.8em;
  margin: 0;
  width: 100%;
  max-width: 180px;
  transition: opacity 0.4s;
  cursor: pointer;
}
.form-box__prev input[type=button] {
  all: unset;
  cursor: pointer;
}
.form-box__prev .arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 26px;
  height: 1px;
  border-radius: 9999px;
  background-color: #0e2f60;
}
.form-box__prev .arrow::before, .form-box__prev .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 11px;
  height: 1px;
  border-radius: 9999px;
  background-color: #0e2f60;
  transform-origin: calc(100% - 0.5px) 50%;
}
.form-box__prev .arrow::before {
  transform: rotate(45deg);
}
.form-box__prev .arrow::after {
  transform: rotate(-45deg);
}
.form-box__prev:hover {
  opacity: 0.7;
}
.form-box.form-confirm .form-box__item {
  display: flex;
  gap: 2%;
}
@media (max-width: 767px) {
  .form-box.form-confirm .form-box__item {
    flex-direction: column;
    gap: 0.6em;
  }
}
.form-box.form-confirm .ttl {
  width: 20%;
}
@media (max-width: 767px) {
  .form-box.form-confirm .ttl {
    width: 100%;
  }
}
.form-box.form-confirm .input-wrap {
  width: 78%;
}
@media (max-width: 767px) {
  .form-box.form-confirm .input-wrap {
    width: 100%;
  }
}
.form-box.form-confirm .btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  margin-top: 4em;
  margin-left: 7em;
}
@media (max-width: 767px) {
  .form-box.form-confirm .btn-wrap {
    flex-direction: column-reverse;
    gap: 1.4em;
    margin: 0 auto 2em;
  }
}
.form-box.form-confirm .form-box__submit {
  margin: 0;
}

/* 送信ボタン下 送信完了時 */
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  color: #231815;
  font-weight: 500;
  font-size: 110%;
  margin-top: 1em;
}

/* 送信ボタン下 未入力エラー文章 */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: none;
  color: #dd5959;
  font-weight: 500;
  margin-top: 1em;
}

/* 必須未入力項目下 エラー文章 */
.wpcf7-not-valid-tip {
  color: #dd5959;
  font-size: 85%;
  font-weight: normal;
  display: block;
  margin-top: 0.4em;
}

.sub-404 .simple-mv {
  background: #0e2f60;
}
.sub-404 .text {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 4em;
}

.grecaptcha-badge {
  z-index: 10;
}/*# sourceMappingURL=style.css.map */