@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  color: #16212b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

p {
  margin: 0;
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #d9d9d9;
}
@media (min-width: 1300px) {
  .header {
    height: 84px;
    background-color: #ebeeee;
  }
}
.header__inner {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1300px) {
  .header__inner {
    padding: 0 0 0 18px;
  }
}
.header__container {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1300px) {
  .header__container {
    justify-content: flex-start;
  }
}
.header__logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1300px) {
  .header__logo-area {
    position: relative;
    flex-direction: row;
    align-items: center;
  }
}
.header__logo {
  width: 120px;
  flex-shrink: 0;
}
@media (min-width: 1300px) {
  .header__logo {
    width: 202.11px;
  }
}
.header__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1300px) {
  .header__logo img {
    height: 100%;
  }
}
.header__logo-text {
  display: none;
}
@media (min-width: 1300px) {
  .header__logo-text {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2em;
    color: #16212b;
    margin-top: -8px;
  }
}
.header__text {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.448;
  color: #16212b;
}
@media (min-width: 1300px) {
  .header__text {
    font-size: 24px;
    margin-left: 15px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1300px) {
  .header__nav {
    display: block;
    margin-left: auto;
  }
}
.header__nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header__nav-item {
  list-style: none;
}
.header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2000000477em;
  color: #16212b;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .header__nav-link {
    transition: color 0.3s ease;
  }
  .header__nav-link:hover {
    color: #e0353e;
  }
}
.header__entry-btn {
  display: none;
}
@media (min-width: 1300px) {
  .header__entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 84px;
    background-color: #c1a262;
    text-decoration: none;
    margin-left: 69px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
  }
  .header__entry-btn:hover {
    background-color: #ebeeee;
    border: 1px solid #16212b;
    box-sizing: border-box;
  }
  .header__entry-btn:hover .header__entry-btn-text {
    color: #16212b;
  }
}
.header__entry-btn-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.218999958em;
  color: #ecf5ff;
  text-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease;
}
.header__menu-btn {
  height: 40px;
  width: 40px;
  position: relative;
  background: none;
  border: none;
  transform-origin: center;
  transition: 0.3s;
}
@media (min-width: 1300px) {
  .header__menu-btn {
    display: none;
  }
}
.header__menu-btn::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 3px;
  left: 19px;
  top: 11px;
}
.header__menu-btn::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #333;
  display: block;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-radius: 2px;
  box-shadow: 24px 0 0 #333, 0 24px 0 #333, 24px 24px 0 #333;
}
.header__menu-btn.js-open {
  background: #16212b;
  border-radius: 50%;
  transform: rotate(45deg);
}
.header__menu-btn.js-open::before {
  background: #fff;
}
.header__menu-btn.js-open::after {
  box-shadow: none;
  width: 20px;
  height: 3px;
  left: 11px;
  top: 19px;
  background: #fff;
  border-radius: 0;
}
.header__menu {
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(100%);
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: #e0353e;
  z-index: 999;
  overflow-y: auto;
  padding-top: 60px;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.header__menu.js-open {
  transform: translateX(-50%);
  visibility: visible;
  opacity: 1;
}
.header__menu-inner {
  position: relative;
  width: 100%;
  max-width: 660px;
  padding: 0 30px 105px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header__menu-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.header__menu-logo {
  width: 120px;
  height: 30px;
  flex-shrink: 0;
}
.header__menu-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu-text {
  position: absolute;
  left: 0;
  top: 30px;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.448;
  color: #16212b;
}
.header__menu-close {
  position: absolute;
  right: -20px;
  top: 17px;
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.header__menu-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu-nav {
  margin-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__menu-item {
  border-bottom: 1px solid #16212b;
  padding-bottom: 4px;
  min-height: 53px;
  display: flex;
  align-items: center;
}
.header__menu-item:nth-child(4) {
  min-height: 53px;
  padding-bottom: 6px;
}
.header__menu-item:nth-child(5), .header__menu-item:nth-child(6), .header__menu-item:nth-child(7), .header__menu-item:nth-child(8) {
  min-height: 55px;
}
.header__menu-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #16212b;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 53px;
}
.header__menu-link-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.header__menu-link-text {
  display: flex;
  flex-direction: column;
}
.header__menu-link-en {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #16212b;
  margin-bottom: -4px;
}
.header__menu-link-en--gold {
  color: #c1a262;
}
.header__menu-link-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12.36px;
  font-weight: 700;
  line-height: 1.2;
  color: #16212b;
  margin-top: 5px;
}
.header__menu-item:nth-child(1) .header__menu-link-ja, .header__menu-item:nth-child(2) .header__menu-link-ja, .header__menu-item:nth-child(3) .header__menu-link-ja, .header__menu-item:nth-child(5) .header__menu-link-ja, .header__menu-item:nth-child(6) .header__menu-link-ja, .header__menu-item:nth-child(7) .header__menu-link-ja, .header__menu-item:nth-child(8) .header__menu-link-ja {
  line-height: 1.5;
}
.header__menu-link-arrow {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu-link-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu-footer {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.header__menu-entry-text {
  display: flex;
  width: 202px;
  margin: 0 auto;
}
.header__menu-entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 310px;
  height: 90px;
  background-color: #16212b;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  margin-top: 5px;
  box-sizing: border-box;
}
.header__menu-entry-btn-text {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.448;
  color: #fff;
  text-align: center;
  width: 164px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 21px;
  margin-bottom: 21px;
}
.header__menu-entry-btn-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer {
  background-color: #16212b;
  padding: 48px 0 63px;
}
@media (min-width: 769px) {
  .footer {
    padding: 37px 0;
  }
}
.footer__inner {
  padding: 0 30px;
}
@media (min-width: 769px) {
  .footer__inner {
    max-width: 1130px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 769px) {
  .footer__top {
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer__logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer__logo {
  width: 100%;
  max-width: 144px;
}
@media (min-width: 769px) {
  .footer__logo {
    max-width: 202px;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__company-name {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  margin-top: 7px;
}
@media (min-width: 769px) {
  .footer__company-name {
    font-size: 20px;
    margin-top: -7px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 43px;
}
@media (min-width: 769px) {
  .footer__menu {
    margin-top: 0;
    align-items: end;
    gap: 28px;
  }
}
.footer__menu-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2em;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 769px) {
  .footer__menu-item {
    font-size: 16px;
  }
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 769px) {
  .footer__sns {
    margin-top: 25px;
    gap: 35px;
  }
}
.footer__sns-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .footer__sns-item {
    width: 54px;
    height: 54px;
  }
}
.footer__sns-icon {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 769px) {
  .footer__sns-icon img {
    height: 100%;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 769px) {
  .footer__bottom {
    margin: 21px auto 0;
    gap: 12px;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 120px;
  padding-left: 0;
}
@media (min-width: 769px) {
  .footer__links {
    flex-direction: row;
    gap: 32px;
    width: auto;
  }
}
.footer__link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.448em;
  color: #ebeeee;
  text-decoration: none;
}
@media (min-width: 769px) {
  .footer__link {
    font-size: 16px;
  }
}
.footer__line {
  width: 330px;
  height: 1px;
  background-color: #ebeeee;
}
@media (min-width: 769px) {
  .footer__line {
    width: 679px;
  }
}
.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.171875em;
  letter-spacing: 0.02em;
  color: #ebeeee;
  text-align: center;
}
@media (min-width: 769px) {
  .footer__copyright {
    margin-top: 42px;
  }
}
.footer__copyright-br--sp {
  display: block;
}
@media (min-width: 769px) {
  .footer__copyright-br--sp {
    display: none;
  }
}

.mv {
  padding-top: 29px;
  margin-top: 60px;
  background-color: #e0353e;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .mv {
    padding-top: 29px;
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}
@media (min-width: 1300px) {
  .mv {
    margin-top: 84px;
    padding-top: 75px;
    height: calc(100vh - 84px);
  }
}
@media (min-width: 769px) {
  .mv__inner {
    height: 100%;
  }
}
@media (min-width: 769px) {
  .mv__container {
    display: flex;
    align-items: end;
    height: 100%;
  }
}
.mv__slider {
  display: flex;
  width: 100%;
  max-width: 84.62%;
  margin-left: 0;
  aspect-ratio: 330/430;
  border-radius: 0 32px 32px 0;
}
@media (min-width: 769px) {
  .mv__slider {
    max-width: 91.67%;
    aspect-ratio: 1320/819;
  }
}
.mv__slider.swiper,
.mv__slider .swiper-wrapper,
.mv__slider .swiper-slide {
  height: 100%;
}
.mv__slider .swiper-wrapper {
  padding-right: 60px;
}
.mv__slider .swiper-slide {
  position: relative;
  pointer-events: none;
}
.mv__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mv__img img {
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 7s linear;
}
.mv__slider.swiper .swiper-slide-active .mv__img img {
  transform: translateX(2.5%);
}
.mv__scroll {
  display: none;
}
@media (min-width: 769px) {
  .mv__scroll {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 8.33%;
    margin-bottom: 9px;
  }
}
@media (min-width: 769px) {
  .mv__scroll img {
    max-width: 24px;
  }
}
.mv .scroll_down {
  position: relative;
  width: 100%;
  height: calc(100vh - 84px);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.mv .scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
}
.mv .scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 24px;
  color: #16212b;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  margin: auto;
}
.mv .scroll_down a:before,
.mv .scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 114%;
  left: 50%;
  width: 2px;
  height: 100px;
}
.mv .scroll_down a:before {
  background: #d9d9d9;
}
.mv .scroll_down a:after {
  background: #16212b;
}
.mv .scroll_down a:hover {
  opacity: 0.5;
}
.mv #type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.intro {
  padding-top: 19px;
  background-color: #e0353e;
}
@media (min-width: 1300px) {
  .intro {
    padding-top: 69px;
  }
}
.intro__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1300px) {
  .intro__inner {
    max-width: 1250px;
    padding: 0 25px;
  }
}
@media (min-width: 1300px) {
  .intro__container {
    display: flex;
    align-items: end;
  }
}
.intro__peace {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 1300px) {
  .intro__peace {
    font-size: 83px;
  }
}
.intro__years {
  color: #c1a262;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
@media (min-width: 1300px) {
  .intro__years {
    font-size: 88px;
  }
}
.intro__years-number {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.03em;
}
@media (min-width: 1300px) {
  .intro__years-number {
    font-size: 190px;
  }
}
.intro__service {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 10px;
}
@media (min-width: 1300px) {
  .intro__service {
    font-size: 46px;
  }
}
@media (min-width: 1300px) {
  .intro__service-logistics {
    font-size: 39px;
  }
}
@media (min-width: 1300px) {
  .intro__service-kanto {
    font-size: 46px;
  }
}
.intro__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}
@media (min-width: 1300px) {
  .intro__list {
    margin-top: 78px;
    gap: 20px;
  }
}
.intro__item {
  color: #e0353e;
  font-size: 13.7px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1300px) {
  .intro__item {
    font-size: 30.94px;
  }
}
.intro__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  z-index: -1;
}
.intro__item.js-slidein::before {
  animation: slideinBackground 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes slideinBackground {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.interview {
  padding-top: 48px;
  padding-bottom: 100px;
  background-color: #e0353e;
  scroll-margin-top: 50px;
}
.interview__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .interview__inner {
    max-width: none;
    padding: 0;
  }
}
.interview__swiper-wrapper {
  position: relative;
  margin-top: 22px;
}
@media (min-width: 769px) {
  .interview__swiper-wrapper {
    margin-top: 47px;
  }
}
@media (min-width: 769px) {
  .interview .swiper {
    height: 38.5113636364vw !important;
    padding-left: 8.5%;
  }
}
@media (min-width: 769px) {
  .interview .swiper-slide {
    margin-right: 15.2%;
    width: 33.1vw !important;
    height: 37.6136363636vw;
  }
}
.interview__button-wrapper {
  position: relative;
  width: 140px;
  height: 56px;
  margin: 18px auto 0;
}
@media (min-width: 769px) {
  .interview__button-wrapper {
    width: 228px;
    height: 102px;
    margin: 22px 0 0 11vw;
  }
}
.interview .swiper-button-next,
.interview .swiper-button-prev {
  position: absolute;
  top: 21px;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #c1a262;
}
@media (min-width: 769px) {
  .interview .swiper-button-next,
  .interview .swiper-button-prev {
    width: 100px;
    height: 100px;
  }
}
.interview .swiper-button-next::after,
.interview .swiper-button-prev::after {
  font-size: 20px;
  color: #c1a262;
}
@media (min-width: 769px) {
  .interview .swiper-button-next::after,
  .interview .swiper-button-prev::after {
    font-size: 26px;
  }
}
.interview .swiper-button-next {
  right: 0;
}
.interview .swiper-button-prev {
  left: 0;
}
.interview__link {
  display: block;
  position: relative;
  width: 330px;
  height: 375px;
  transition: opacity 0.3s ease;
}
@media (min-width: 769px) {
  .interview__link {
    width: 100%;
    height: 100%;
  }
  .interview__link:hover {
    opacity: 1;
  }
  .interview__link:hover .interview__link-img {
    scale: 1.1;
  }
  .interview__link img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
.interview__link-img {
  position: absolute;
  bottom: 52px;
  left: 30px;
  width: 100%;
  max-width: 219px;
  transition: scale 0.3s ease;
}
@media (min-width: 769px) {
  .interview__link-img {
    max-width: 75%;
  }
}
.interview__link-img--ys {
  left: 92px;
  max-width: 197px;
}
@media (min-width: 769px) {
  .interview__link-img--ys {
    max-width: 69%;
  }
}
.interview__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__link-icon {
  position: absolute;
  left: 51px;
  top: -18px;
  width: 100%;
  max-width: 236.62px;
  z-index: -1;
}
@media (min-width: 769px) {
  .interview__link-icon {
    max-width: 90%;
    top: -41px;
  }
}
.interview__link-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.interview__link-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.interview__link-wrapper {
  position: absolute;
  bottom: -3%;
  right: 0;
}
@media (min-width: 769px) {
  .interview__link-wrapper {
    right: 6%;
  }
}
.interview__link-bg {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  width: 255px;
  box-sizing: border-box;
}
.interview__link-bg--gold {
  background-color: #c1a262;
}
.interview__link-bg--black {
  padding: 9px 0 9px 10px;
  background-color: #16212b;
}
.interview__link-text {
  color: #fff;
  white-space: nowrap;
  line-height: 1.448;
  letter-spacing: 0.08em;
}
.interview__link-text--label {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 769px) {
  .interview__link-text--label {
    font-size: 16px;
  }
}
.interview__link-text--title {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .interview__link-text--title {
    font-size: 20px;
  }
}
.interview__link-text--role {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .interview__link-text--role {
    font-size: 18px;
  }
}
.interview__link-text--name {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 29.23px;
  font-weight: 400;
  margin: -3px 0 3px;
}
.interview__link-text--name-span {
  display: inline-block;
  font-size: 16px;
}

.work {
  padding-top: 50px;
  padding-bottom: 64px;
  background-color: #e0353e;
  scroll-margin-top: 50px;
}
.work__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .work__inner {
    max-width: 1250px;
    padding: 0 25px;
  }
}
.work__container {
  margin-top: 32px;
}
.work__item:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .work__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.work__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #c1a262;
  border-radius: 16px 16px 0 0;
  padding: 23px 17px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.work__group:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .work__group {
    padding: 31px 50px;
  }
}
.work__question {
  color: #16212b;
  font-size: 24px;
  font-weight: 700;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 769px) {
  .work__question {
    font-size: 32px;
  }
}
.work__icon {
  position: relative;
  width: 19px;
  height: 19px;
}
.work__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #16212b;
  flex: none;
  height: 3px;
  width: 19px;
  max-width: 100%;
}
.work__icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  background: #16212b;
  flex: none;
  height: 19px;
  width: 3px;
  max-width: 100%;
  transition: transform 0.2s ease;
}
.work__icon.js-open::after {
  transform: translateX(50%) rotate(-90deg);
}
.work__answer {
  display: none;
  margin-top: 8px;
  background-color: #fff;
  padding: 32px 12px;
  border-radius: 0 0 16px 16px;
}
@media (min-width: 769px) {
  .work__answer {
    padding: 50px;
    margin-top: 20px;
    border-radius: 0 0 20px 20px;
  }
}
.work__answer.js-open {
  display: block;
}
@media (min-width: 769px) {
  .work__answer-container {
    display: flex;
    margin-top: 23px;
  }
}
.work__answer-img {
  margin-top: 16px;
}
.work__answer-img img {
  aspect-ratio: 308/698;
  height: 100%;
}
@media (min-width: 769px) {
  .work__answer-img img {
    aspect-ratio: 1100/262;
  }
}
@media (min-width: 769px) {
  .work__answer-wrapper {
    max-width: 47.27%;
    width: 100%;
  }
}
.work__answer-title {
  color: #e0353e;
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .work__answer-title {
    font-size: 32px;
  }
}
.work__answer-text {
  color: #16212b;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
  margin-top: 20px;
}
@media (min-width: 769px) {
  .work__answer-text {
    font-size: 16px;
    line-height: 1.3;
  }
}
.work__answer-main-img {
  display: none;
}
@media (min-width: 769px) {
  .work__answer-main-img {
    display: block;
    margin-left: 4.27%;
  }
}
@media (min-width: 769px) {
  .work__area {
    display: flex;
    flex-direction: column-reverse;
  }
}
.work__btn--pc {
  display: none;
}
@media (min-width: 769px) {
  .work__btn--pc {
    display: block;
    margin-top: 58px;
  }
}
.work__btn--sp {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .work__btn--sp {
    display: none;
  }
}
.work__btn-link {
  position: relative;
  display: block;
  max-width: 100%;
  width: 310px;
  border-radius: 16px;
  background: #16212b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 36px 38px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.work__btn-link:hover {
  opacity: 1;
  background-color: #666666;
}
@media (min-width: 769px) {
  .work__btn-link {
    font-size: 20px;
    width: 345px;
    padding: 21px;
  }
}
.work__btn-link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url(../img/top/interview_arrow_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.experience {
  padding-top: 54px;
  padding-bottom: 50px;
}
@media (min-width: 1100px) {
  .experience {
    padding: 0 20px;
    background-color: #e0353e;
  }
}
@media (min-width: 1100px) {
  .experience__area {
    padding-top: 82px;
    padding-bottom: 24px;
    background-color: #fff;
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.experience__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .experience__inner {
    max-width: none;
    padding: 0 100px;
  }
}
.experience__img {
  position: relative;
  margin-top: 37px;
}
.experience__img img {
  height: 100%;
}
@media (min-width: 1100px) {
  .experience__img img {
    aspect-ratio: 1200/1297;
  }
}
.experience__text-img {
  display: none;
}
@media (min-width: 1100px) {
  .experience__text-img {
    position: absolute;
    display: block;
    width: 203px;
    height: 213px;
  }
}
.experience__text-img--s {
  top: -1%;
  right: 0;
}
.experience__text-img--sb {
  bottom: 10%;
  left: -9%;
}
.experience__text-img--k {
  bottom: 28%;
  right: -9%;
}
.experience__summary {
  color: #0a0a0a;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 25px 0;
}
@media (min-width: 1100px) {
  .experience__summary {
    font-size: 32px;
    margin-top: 65px;
    margin-bottom: 94px;
  }
}
.experience__summary-br--sp {
  display: block;
}
@media (min-width: 1100px) {
  .experience__summary-br--sp {
    display: none;
  }
}
.experience__career-title {
  color: #fff;
  font-size: 29.7px;
  font-weight: 900;
  background-color: #e0353e;
  line-height: 2;
  padding-bottom: 31vw;
  padding-left: 27px;
  border-radius: 20px 0 0 0;
}
@media (min-width: 1100px) {
  .experience__career-title {
    font-size: 31px;
    margin-left: 100px;
    padding-bottom: 0;
    padding-left: 22px;
  }
}
.experience__career-wrapper {
  position: relative;
  border-radius: 0 0 20px 0;
  background: #16212b;
}
@media (min-width: 1100px) {
  .experience__career-wrapper {
    margin-right: 100px;
  }
}
.experience__career-img {
  position: absolute;
  top: -30.7vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 52vw;
}
.experience__career-img img {
  height: 100%;
}
@media (min-width: 1100px) {
  .experience__career-img {
    max-width: 34%;
    top: auto;
    bottom: -1px;
    left: auto;
    right: 3%;
    transform: none;
    aspect-ratio: 430/256;
  }
}
.experience__career-detail {
  color: #fff;
  text-align: justify;
  font-size: 18.3px;
  font-weight: 700;
  line-height: 1.5;
  padding: 48px 30px;
}
@media (min-width: 1100px) {
  .experience__career-detail {
    font-size: 16px;
    width: 100%;
    max-width: 49.85%;
    padding: 25px 0 25px 122px;
  }
}
.experience__path {
  margin-top: 56px;
}
@media (min-width: 1100px) {
  .experience__path {
    margin-top: 30px;
  }
}
.experience__path-inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .experience__path-inner {
    max-width: 1260px;
  }
}
.experience__path-img {
  aspect-ratio: 330/419;
}
@media (min-width: 1100px) {
  .experience__path-img {
    aspect-ratio: 1200/764;
  }
}
.experience__path-img img {
  height: 100%;
}
.experience__slide-text {
  overflow-x: hidden;
}
.experience__text-wrapper {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: slide-infinite 40s linear infinite;
}
.experience__text {
  color: #d9d9d9;
  font-size: 64px;
  font-weight: 900;
  white-space: nowrap;
  padding-right: 100px;
}
@media (min-width: 1100px) {
  .experience__text {
    font-size: 102px;
    padding-right: 150px;
  }
}

@keyframes slide-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.company {
  padding: 64px 0;
  background-color: #c1a262;
}
@media (min-width: 769px) {
  .company {
    padding: 0 20px 120px;
    background-color: #e0353e;
  }
}
.company__inner {
  position: relative;
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .company__inner {
    max-width: 1400px;
    background-color: #c1a262;
    padding: 0 100px 120px;
  }
}
.company__track {
  position: absolute;
  top: -158px;
  right: 32px;
  width: 100%;
  max-width: 200px;
}
@media (min-width: 769px) {
  .company__track {
    max-width: 34.3%;
    right: -12px;
    top: -109px;
  }
}
.company__track img {
  height: 100%;
  aspect-ratio: 400/308;
}
@media (min-width: 769px) {
  .company__track img {
    aspect-ratio: 961/744;
  }
}
@media (min-width: 769px) {
  .company__container {
    padding-top: 110px;
  }
}
.company__numbers {
  margin-top: 36px;
  aspect-ratio: 330/3150;
}
@media (min-width: 769px) {
  .company__numbers {
    margin-top: 53px;
    aspect-ratio: 1201/2616;
  }
}
.company__numbers img {
  height: 100%;
}

.benefit {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #e0353e;
  scroll-margin-top: 50px;
}
@media (min-width: 1100px) {
  .benefit {
    padding-bottom: 121px;
  }
}
.benefit__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .benefit__inner {
    max-width: 960px;
  }
}
@media (min-width: 1100px) {
  .benefit__inner {
    max-width: 1150px;
    padding: 0 25px;
  }
}
.benefit__container {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
@media (min-width: 1100px) {
  .benefit__container {
    grid-template-columns: repeat(3, 31.8%);
    gap: 0;
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 24px;
    justify-content: center;
    margin-top: 47px;
  }
}
.benefit__item {
  display: flex;
  flex-direction: column;
}
.benefit__item--1 {
  order: 1;
}
.benefit__item--2 {
  order: 2;
}
.benefit__item--3 {
  order: 6;
}
.benefit__item--4 {
  order: 4;
}
.benefit__item--5 {
  order: 3;
}
.benefit__item--6 {
  order: 5;
}
.benefit__item--7 {
  order: 7;
}
.benefit__item--8 {
  order: 8;
}
.benefit__item--9 {
  order: 9;
  grid-column: 1/3;
}
.benefit__item--10 {
  order: 10;
}
.benefit__item--11 {
  order: 11;
}
.benefit__item--wide {
  grid-column: 1/3;
}
@media (min-width: 1100px) {
  .benefit__item--1, .benefit__item--2, .benefit__item--3, .benefit__item--4, .benefit__item--5, .benefit__item--6, .benefit__item--7, .benefit__item--8, .benefit__item--9, .benefit__item--10, .benefit__item--11 {
    order: 0;
  }
  .benefit__item--1 {
    grid-column: 1;
    grid-row: 1;
  }
  .benefit__item--2 {
    grid-column: 2;
    grid-row: 1;
  }
  .benefit__item--3 {
    grid-column: 3;
    grid-row: 1;
  }
  .benefit__item--4 {
    grid-column: 1;
    grid-row: 3;
  }
  .benefit__item--5 {
    grid-column: 1;
    grid-row: 2;
  }
  .benefit__item--6 {
    grid-column: 2;
    grid-row: 4;
  }
  .benefit__item--7 {
    grid-column: 2;
    grid-row: 3;
  }
  .benefit__item--8 {
    grid-column: 3;
    grid-row: 3;
  }
  .benefit__item--9 {
    grid-column: 2/4;
    grid-row: 2;
  }
  .benefit__item--10 {
    grid-column: 1;
    grid-row: 4;
  }
  .benefit__item--11 {
    grid-column: 3;
    grid-row: 4;
  }
  .benefit__item--logo {
    grid-column: 3;
    grid-row: 1;
  }
  .benefit__item--truck {
    grid-column: 2/4;
    grid-row: 2;
  }
  .benefit__item--image {
    grid-column: 2;
    grid-row: 4;
  }
}
.benefit__card {
  background-color: #ebeeee;
  border-radius: 0 24px 0 24px;
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .benefit__card {
    width: 100%;
    height: 384px;
    border-radius: 0 36px 0 36px;
  }
}
.benefit__card--img {
  padding: 0;
  width: 100%;
  background-color: transparent;
  height: 220px;
}
@media (min-width: 1100px) {
  .benefit__card--img {
    height: 384px;
  }
}
.benefit__card--img img {
  width: 100%;
  height: 100%;
  border-radius: 0 24px 0 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1100px) {
  .benefit__card--img img {
    border-radius: 0 24px 0 24px;
  }
}
.benefit__card--white {
  background-color: #fff;
  border-radius: 0 36px 0 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.benefit__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 8px;
}
@media (min-width: 1100px) {
  .benefit__content {
    padding: 64px 21px 49px;
  }
}
.benefit__content--qualification {
  padding: 13px 9px;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 1100px) {
  .benefit__content--qualification {
    padding: 42px 21px 86px;
  }
}
.benefit__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.448;
  color: #16212b;
  width: 100%;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1100px) {
  .benefit__title {
    font-size: 32px;
    line-height: 1.448;
    height: 46px;
    margin-bottom: 0;
  }
}
.benefit__img {
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 1100px) {
  .benefit__img {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.benefit__img img {
  width: 119px;
  height: 119px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1100px) {
  .benefit__img img {
    width: 150px;
    height: 150px;
  }
}
.benefit__text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.448;
  color: #16212b;
  margin-top: 0;
  width: 100%;
  height: 49px;
  display: flex;
  justify-content: center;
}
@media (min-width: 1100px) {
  .benefit__text {
    font-size: 22px;
    line-height: 1.448;
    height: 49px;
    margin-top: 0;
  }
}
.benefit__text--qualification {
  font-size: 12px;
  line-height: 1.3;
  height: 48px;
  margin-top: 0;
}
@media (min-width: 1100px) {
  .benefit__text--qualification {
    font-size: 22px;
    line-height: 1.448;
    height: auto;
    min-height: 49px;
  }
}
.benefit__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 82px 0;
}
@media (min-width: 1100px) {
  .benefit__logo {
    padding: 0;
  }
}
.benefit__logo img {
  width: 100%;
  max-width: 128px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1100px) {
  .benefit__logo img {
    max-width: 270.63px;
  }
}
.benefit__content--qualification .benefit__title {
  margin-top: 0;
  margin-bottom: 0;
  height: 26px;
}
@media (min-width: 1100px) {
  .benefit__content--qualification .benefit__title {
    height: 46px;
  }
}
.benefit__content--qualification .benefit__text {
  margin-top: 0;
  margin-bottom: 0;
}
.benefit__item--5 .benefit__text, .benefit__item--7 .benefit__text, .benefit__item--8 .benefit__text, .benefit__item--11 .benefit__text {
  font-size: 12px;
  line-height: 1.3;
  height: 41px;
}
@media (min-width: 1100px) {
  .benefit__item--5 .benefit__text, .benefit__item--7 .benefit__text, .benefit__item--8 .benefit__text, .benefit__item--11 .benefit__text {
    font-size: 20px;
    line-height: 1.448;
    height: 49px;
  }
}
.benefit__item--5 .benefit__content, .benefit__item--7 .benefit__content, .benefit__item--8 .benefit__content, .benefit__item--11 .benefit__content {
  padding: 18px 8px;
}
@media (min-width: 1100px) {
  .benefit__item--5 .benefit__content, .benefit__item--7 .benefit__content, .benefit__item--8 .benefit__content, .benefit__item--11 .benefit__content {
    padding: 64px 21px 49px;
  }
}
@media (min-width: 1100px) {
  .benefit__item--2 .benefit__text {
    font-size: 20px;
    line-height: 1.448;
  }
}
@media (min-width: 1100px) {
  .benefit__item--5 .benefit__text {
    font-size: 20px;
    line-height: 1.448;
  }
}
.benefit__item--10 .benefit__content--qualification {
  padding: 13px 9px;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 1100px) {
  .benefit__item--10 .benefit__content--qualification {
    padding: 42px 21px 86px;
    flex-direction: column;
    justify-content: center;
  }
}
.benefit__item--10 .benefit__content--qualification .benefit__title {
  margin-top: 0;
  margin-bottom: 0;
  height: 26px;
}
@media (min-width: 1100px) {
  .benefit__item--10 .benefit__content--qualification .benefit__title {
    height: 46px;
  }
}
.benefit__item--10 .benefit__content--qualification .benefit__img {
  margin-top: 0;
  margin-bottom: 0;
}
.benefit__item--10 .benefit__text--qualification {
  font-size: 12px;
  line-height: 1.3;
  height: 48px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 1100px) {
  .benefit__item--10 .benefit__text--qualification {
    font-size: 22px;
    line-height: 1.448;
    height: auto;
    min-height: 49px;
  }
}

.qa {
  padding: 0 30px 50px;
  background-color: #e0353e;
  scroll-margin-top: 50px;
}
@media (min-width: 769px) {
  .qa {
    padding: 0 20px;
  }
}
.qa__inner {
  width: 100%;
  max-width: 624px;
  padding: 0 12px;
  background-color: #c1a262;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .qa__inner {
    padding: 0 100px;
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.qa__section-title {
  padding-top: 43px;
}
@media (min-width: 769px) {
  .qa__section-title {
    padding-top: 92px;
  }
}
.qa__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 37px;
  padding-bottom: 64px;
}
@media (min-width: 769px) {
  .qa__container {
    gap: 24px;
    margin-top: 46px;
    padding-bottom: 120px;
  }
}
.qa__item {
  background-color: #ebeeee;
  border-radius: 0 24px 0 24px;
  padding: 37px 0 0;
  box-sizing: border-box;
  min-height: 100px;
}
@media (min-width: 769px) {
  .qa__item {
    max-width: 1200px;
    padding: 0;
  }
}
.qa__question-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 35px 37px 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.qa__question-wrapper:hover {
  opacity: 0.7;
}
@media (min-width: 769px) {
  .qa__question-wrapper {
    padding-top: 22px;
    padding-bottom: 15px;
    padding-left: 27px;
  }
}
.qa__icon {
  width: 26px;
  height: 26px;
  background-color: #c1a262;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .qa__icon {
    width: 69px;
    height: 69px;
  }
}
.qa__icon-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  color: #16212b;
}
@media (min-width: 769px) {
  .qa__icon-text {
    font-size: 40px;
  }
}
.qa__question-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.448;
  color: #16212b;
  flex: 1;
  width: 100%;
  max-width: 208px;
  margin-left: 20px;
}
@media (min-width: 769px) {
  .qa__question-text {
    max-width: none;
    margin-left: 58px;
    font-size: 24px;
  }
}
.qa__arrow {
  width: 20px;
  height: 11.16px;
  flex-shrink: 0;
  position: absolute;
  right: 15px;
  top: 10px;
  background-image: url(../img/top/qa_arrow_sp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 769px) {
  .qa__arrow {
    width: 40px;
    height: 27px;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    transform: rotate(0deg);
  }
}
.qa__item.js-open .qa__arrow {
  transform: rotate(-180deg);
}
@media (min-width: 769px) {
  .qa__item.js-open .qa__arrow {
    transform: rotate(-180deg);
  }
}
.qa__answer {
  display: none;
  padding: 30px 30px 30px 15px;
  border-top: 1px solid #757575;
}
@media (min-width: 769px) {
  .qa__answer {
    padding: 22px 30px;
  }
}
.qa__answer-container {
  display: flex;
}
@media (min-width: 769px) {
  .qa__answer-container {
    align-items: center;
  }
}
.qa__answer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 26px;
  height: 26px;
  background-color: #e0353e;
  border-radius: 50%;
}
@media (min-width: 769px) {
  .qa__answer-icon {
    max-width: 62px;
    height: 62px;
  }
}
.qa__answer-icon-text {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 3px;
}
@media (min-width: 769px) {
  .qa__answer-icon-text {
    font-size: 40px;
    margin-bottom: 8px;
  }
}
.qa__answer-text {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-left: 8px;
}
@media (min-width: 769px) {
  .qa__answer-text {
    font-size: 16px;
    margin-left: 58px;
  }
}

.recruit {
  padding-top: 62px;
  background-color: #e0353e;
}
@media (min-width: 1000px) {
  .recruit {
    padding-top: 98px;
  }
}
.recruit__sub-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 36px;
}
@media (min-width: 1000px) {
  .recruit__sub-title {
    font-size: 32px;
  }
}
.recruit__sub-title-br--sp {
  display: block;
}
@media (min-width: 1000px) {
  .recruit__sub-title-br--sp {
    display: none;
  }
}
.recruit__area {
  margin-top: 38px;
  overflow: hidden;
}
.recruit__area .swiper {
  overflow: visible;
}
.recruit__area .swiper-wrapper {
  padding-left: 30px;
}
@media (min-width: 1000px) {
  .recruit__area .swiper-wrapper {
    padding-left: 8.4%;
  }
}
.recruit__area .swiper-slide {
  width: 328px;
  height: 628px;
  flex-shrink: 0;
}
@media (min-width: 1000px) {
  .recruit__area .swiper-slide {
    width: 840px;
  }
}
@media (min-width: 1300px) {
  .recruit__area .swiper-slide {
    width: 1100px;
  }
}
.recruit__card {
  background-color: #fff;
  border-radius: 0 24px 0 24px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 26px 12px 29px;
}
@media (min-width: 1000px) {
  .recruit__card {
    padding: 52px 85px 40px;
  }
}
.recruit__header {
  position: relative;
}
@media (min-width: 1000px) {
  .recruit__header {
    width: 100%;
    height: 61px;
  }
}
.recruit__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #0a0a0a;
  margin: 0;
}
@media (min-width: 1000px) {
  .recruit__title {
    font-size: 24px;
    line-height: 1.448;
    text-align: left;
    color: #16212b;
    padding-top: 0;
    width: 291.1px;
    height: 48.02px;
  }
}
.recruit__lines {
  padding-bottom: 30px;
}
@media (min-width: 1000px) {
  .recruit__lines {
    padding-bottom: 0;
  }
}
.recruit__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
}
.recruit__line--red {
  background-color: #e0353e;
  bottom: 5px;
}
.recruit__line--black {
  background-color: #16212b;
  bottom: 0;
}
.recruit__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1000px) {
  .recruit__content {
    align-items: start;
    flex-direction: row;
  }
}
.recruit__img {
  margin-top: 20px;
  height: 273px;
}
@media (min-width: 1000px) {
  .recruit__img {
    width: 100%;
    max-width: 47%;
    margin-top: 0;
    height: auto;
  }
}
.recruit__img img {
  height: 100%;
}
.recruit__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 1000px) {
  .recruit__list {
    margin-top: 78px;
    gap: 32px;
  }
}
.recruit__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 31px;
}
@media (min-width: 1000px) {
  .recruit__item {
    gap: 24px;
  }
}
.recruit__label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0353e;
  border-radius: 0 8px 0 8px;
  padding: 2px 8px;
  width: 82px;
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.448;
  color: #fff;
}
@media (min-width: 1000px) {
  .recruit__label {
    width: 96px;
    padding: 4px 8px;
    border-radius: 0 16px 0 16px;
    font-size: 16px;
  }
}
.recruit__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.448;
  color: #16212b;
  flex: 1;
  width: 218px;
}
@media (min-width: 1000px) {
  .recruit__text {
    font-size: 16px;
    width: auto;
    flex: 1;
  }
}
.recruit__slide {
  width: 154px;
  height: 29px;
  margin-top: 10px;
  margin-left: 30px;
  aspect-ratio: 154/29;
}
@media (min-width: 1000px) {
  .recruit__slide {
    margin-left: 8.4%;
  }
}
.recruit__slide img {
  height: 100%;
}

.about {
  background-color: #e0353e;
  padding: 60px 0 0;
}
@media (min-width: 769px) {
  .about {
    padding: 119px 0 0;
  }
}
.about__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .about__inner {
    max-width: 1440px;
    padding: 0 20px;
  }
}
.about__container {
  background-color: #ebeeee;
  padding: 0 12px;
}
.about__section-title {
  padding-top: 42px;
}
@media (min-width: 769px) {
  .about__section-title {
    padding-top: 113px;
  }
}
.about__area {
  padding-top: 30px;
  padding-bottom: 78px;
}
@media (min-width: 769px) {
  .about__area {
    padding-top: 48px;
    padding-bottom: 120px;
  }
}
.about__table {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .about__table {
    gap: 0;
  }
}
.about__row {
  display: flex;
  width: 100%;
}
@media (min-width: 769px) {
  .about__row {
    max-width: 763px;
  }
}
.about__header {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 82px;
  flex-shrink: 0;
  padding-top: 2px;
  padding-bottom: 2px;
  border-bottom: 4px solid #c1a262;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.448;
  text-align: center;
  color: #16212b;
}
@media (min-width: 769px) {
  .about__header {
    width: 98px;
    font-size: 20px;
    padding-top: 16px;
    padding-bottom: 4px;
  }
}
.about__data {
  flex: 1;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
  padding-right: 16px;
  border-bottom: 1px solid #16212b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.448;
  color: #16212b;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 769px) {
  .about__data {
    font-size: 16px;
    padding-top: 16px;
    margin-left: 4px;
  }
}
.about__data--business {
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 769px) {
  .about__data--business {
    align-items: flex-start;
  }
}
.about__data--address {
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
}
.about__office {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
@media (min-width: 769px) {
  .about__office {
    gap: 1px;
  }
}
.about__office-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.448;
  color: #16212b;
}
@media (min-width: 769px) {
  .about__office-name {
    font-size: 16px;
  }
}
.about__office-detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.448;
  color: #16212b;
}
@media (min-width: 769px) {
  .about__office-detail {
    font-size: 16px;
  }
}
.about__office-detail a[href^="tel:"] {
  color: #16212b;
  text-decoration: none;
}
@media (min-width: 769px) {
  .about__wrapper {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
.about__access {
  margin-top: 44px;
}
@media (min-width: 769px) {
  .about__access {
    margin-top: 80px;
  }
}
.about__access-title {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 769px) {
  .about__access-title {
    gap: 29px;
  }
}
.about__access-icon {
  width: 48px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .about__access-icon {
    width: 100px;
    height: 100%;
  }
}
.about__access-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.about__access-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.448;
  color: #16212b;
}
@media (min-width: 769px) {
  .about__access-text {
    font-size: 32px;
  }
}
.about__transport {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .about__transport {
    margin-top: 32px;
    gap: 0;
  }
}
.about__transport-item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .about__transport-item {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding-left: 120px;
  }
}
.about__transport-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about__transport-icon {
  width: 24px;
  flex-shrink: 0;
}
.about__transport-icon img {
  width: 100%;
  display: block;
}
.about__transport-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.448;
  color: #16212b;
}
.about__transport-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.448;
  color: #16212b;
}
@media (min-width: 769px) {
  .about__transport-text {
    flex: 1;
  }
}
.about__images {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .about__images {
    margin-top: 48px;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 75px;
  }
}
.about__map {
  max-width: 100%;
}
@media (min-width: 769px) {
  .about__map {
    width: 100%;
    max-width: 61%;
  }
}
.about__map iframe {
  max-width: 100%;
  height: 259px;
}
@media (min-width: 769px) {
  .about__map iframe {
    aspect-ratio: 725/344;
    height: 100%;
  }
}
.about__image {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 769px) {
  .about__image {
    width: auto;
    flex-shrink: 0;
  }
}
@media (min-width: 769px) {
  .about__image:first-child {
    width: 725px;
  }
}
@media (min-width: 769px) {
  .about__image:last-child {
    width: 100%;
    max-width: 33.2%;
  }
}
.about__image img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 399/344;
}
@media (min-width: 769px) {
  .about__image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.entry {
  background-color: #e0353e;
}
.entry__inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .entry__inner {
    max-width: 1440px;
    padding: 0 20px;
  }
}
.entry__container {
  background-color: #c1a262;
}
.entry__section-title {
  padding-top: 57px;
}
@media (min-width: 769px) {
  .entry__section-title {
    padding-top: 93px;
  }
}
.entry__form {
  padding: 0 12px;
  margin-top: 30px;
  padding-bottom: 26px;
}
@media (min-width: 769px) {
  .entry__form {
    padding: 44px 100px 120px;
  }
}
.entry__form-container {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ebeeee;
  border-radius: 16px;
  padding: 30px 10px 60px;
}
@media (min-width: 769px) {
  .entry__form-container {
    border-radius: 24px;
    padding: 64px 125px;
  }
}
.entry__form-fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 769px) {
  .entry__form-fields {
    gap: 46px;
  }
}
.entry__form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .entry__form-row {
    gap: 12px;
  }
}
@media (min-width: 769px) {
  .entry__form-row--name {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .entry__form-row--gender, .entry__form-row--age {
    flex-direction: column;
  }
}
.entry__form-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.entry__form-label-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .entry__form-label-text {
    font-size: 24px;
  }
}
.entry__form-label-required {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 2px solid #e0353e;
  border-radius: 4px;
  color: #e0353e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .entry__form-label-required {
    font-size: 14px;
    padding: 6px;
  }
}
.entry__form-label-required--privacy::before {
  content: none;
}
.entry__form-name-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .entry__form-name-group {
    gap: 24px;
  }
}
.entry__form-input-group {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .entry__form-input-group {
    gap: 60px;
  }
}
.entry__form-input-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
  width: 100%;
  max-width: 60px;
}
@media (min-width: 769px) {
  .entry__form-input-label {
    font-size: 20px;
    max-width: 82px;
  }
}
.entry__form-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #16212b;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .entry__form-input {
    font-size: 16px;
    padding: 10px 12px;
    max-width: 545px;
  }
}
.entry__form-input::-moz-placeholder {
  color: #969696;
}
.entry__form-input::placeholder {
  color: #969696;
}
.entry__form-input--age {
  width: 100%;
  max-width: 158px;
}
.entry__form-input--zip {
  width: 100%;
  max-width: 132px;
}
.entry__form-post {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 769px) {
  .entry__form-post {
    font-size: 16px;
  }
}
.entry__form-address-group {
  display: flex;
  gap: 22px;
}
@media (min-width: 769px) {
  .entry__form-address-group {
    flex-direction: row;
  }
}
.entry__form-address-detail {
  margin-top: 8px;
}
@media (min-width: 769px) {
  .entry__form-address-detail {
    margin-top: 12px;
  }
}
.entry__form-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 142px;
}
@media (min-width: 769px) {
  .entry__form-select-wrapper {
    max-width: 170px;
  }
}
.entry__form-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 7px solid #16212b;
  pointer-events: none;
}
@media (min-width: 769px) {
  .entry__form-select-wrapper::after {
    right: 16px;
    border-left: 10.29px solid transparent;
    border-right: 10.29px solid transparent;
    border-top: 8px solid #16212b;
  }
}
.entry__form-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #16212b;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #16212b !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .entry__form-select {
    font-size: 16px;
    padding: 10px 12px;
  }
}
.entry__form-select option {
  color: #16212b !important;
}
.entry__form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
}
@media (min-width: 769px) {
  .entry__form-radio-group {
    justify-content: start;
    gap: 23px;
  }
}
.entry__form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .entry__form-radio {
    width: 100%;
    max-width: 219px;
  }
}
.entry__form-radio input[type=radio] {
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .entry__form-radio input[type=radio] {
    width: 43px;
    height: 43px;
  }
}
.entry__form-radio-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .entry__form-radio-text {
    font-size: 20px;
  }
}
.entry__form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 769px) {
  .entry__form-checkbox-group {
    gap: 23px;
  }
}
.entry__form-checkbox-group--location {
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 769px) {
  .entry__form-checkbox-group--location {
    flex-direction: row;
  }
}
.entry__form-file-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.entry__form-file-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.entry__form-file-label {
  display: inline-block;
  cursor: pointer;
}
.entry__form-file-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 139px;
  height: 35px;
  padding: 0 22px;
  background-color: #ebeeee;
  border: 0.5px solid #16212b;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .entry__form-file-text {
    font-size: 14px;
    padding: 0 18px;
  }
}
.entry__form-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  opacity: 0;
}
.entry__form-file-status {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #16212b;
}
@media (min-width: 769px) {
  .entry__form-file-status {
    font-size: 14px;
  }
}
.entry__form-file-note {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: #16212b;
}
@media (min-width: 769px) {
  .entry__form-file-note {
    font-size: 14px;
  }
}
.entry__form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .entry__form-checkbox {
    width: 100%;
    max-width: 219px;
  }
}
.entry__form-checkbox input[type=checkbox] {
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #16212b;
  background-color: #fff;
}
@media (min-width: 769px) {
  .entry__form-checkbox input[type=checkbox] {
    width: 43px;
    height: 43px;
  }
}
.entry__form-checkbox-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .entry__form-checkbox-text {
    font-size: 16px;
  }
}
.entry__form-textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #16212b;
  border-radius: 4px;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  resize: vertical;
  box-sizing: border-box;
  min-height: 163px;
}
@media (min-width: 769px) {
  .entry__form-textarea {
    font-size: 16px;
    max-width: 545px;
    padding: 10px 12px;
  }
}
.entry__form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .entry__form-footer {
    gap: 25px;
    margin-top: 46px;
    align-items: start;
  }
}
.entry__form-privacy-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .entry__form-privacy-text {
    font-size: 14px;
    width: 100%;
    max-width: 795px;
  }
}
.entry__form-privacy-check {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 11px;
}
@media (min-width: 769px) {
  .entry__form-privacy-check {
    margin: 25px auto 0;
    gap: 10px;
  }
}
.entry__form-privacy-label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .entry__form-privacy-label {
    gap: 12px;
  }
}
.entry__form-privacy-checkbox {
  width: 26px;
  height: 26px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 2px;
  border: 2px solid #333;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
}
@media (min-width: 769px) {
  .entry__form-privacy-checkbox {
    width: 32px;
    height: 32px;
  }
}
.entry__form-privacy-checkbox:checked {
  background-color: #333;
  border-color: #333;
}
.entry__form-privacy-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 769px) {
  .entry__form-privacy-checkbox:checked::after {
    font-size: 16px;
  }
}
.entry__form-privacy-link {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .entry__form-privacy-link {
    font-size: 24px;
  }
}
.entry__form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 14.61px 74px 14.61px;
  background-color: #16212b;
  border: none;
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 88px;
}
@media (min-width: 769px) {
  .entry__form-submit {
    max-width: 300px;
    padding: 19px 96px;
    font-size: 15px;
    margin: 0 auto;
  }
}
.entry__form-submit:hover {
  opacity: 0.8;
}
.entry__form-br--pc {
  display: none;
}
@media (min-width: 769px) {
  .entry__form-br--pc {
    display: block;
  }
}
.entry .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-left: 0;
}
@media (min-width: 769px) {
  .entry .wpcf7-list-item {
    margin-top: 10px;
  }
}
.entry .wpcf7-list-item-label {
  margin-left: 8px;
}
.entry .wpcf7-checkbox input[type=checkbox] {
  width: 32px;
  height: 32px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #16212b;
  background-color: #fff;
}
@media (min-width: 769px) {
  .entry .wpcf7-checkbox input[type=checkbox] {
    width: 43px;
    height: 43px;
  }
}
.entry .wpcf7-checkbox input[type=checkbox]:checked {
  background-color: #16212b;
  position: relative;
}
.entry .wpcf7-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}
@media (min-width: 769px) {
  .entry .wpcf7-checkbox input[type=checkbox]:checked::after {
    width: 12px;
    height: 12px;
  }
}

.letter {
  opacity: 0;
  display: inline-block;
}
.letter:empty {
  margin-left: 0.2em;
}

.detail-page {
  background-color: #f5f5f5;
}
.detail__mv {
  margin-top: 60px;
  padding-top: 30px;
}
.detail__mv-img {
  width: 100%;
  max-width: 92.31%;
}
.detail__mv-img img {
  height: 100%;
  aspect-ratio: 360/231;
  border-radius: 0 48px 0 0;
}
.detail__mv-container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.detail__mv-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px 8px 24px;
  background-color: #c1a262;
}
.detail__mv-info {
  font-size: 18px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 24px;
  margin-top: 12px;
  background-color: #c1a262;
}
@media (min-width: 769px) {
  .detail__mv {
    padding-top: 110px;
  }
  .detail__mv-inner {
    width: 100%;
    max-width: 1150px;
    padding: 0 25px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .detail__mv-img {
    position: relative;
    margin-left: auto;
    aspect-ratio: 899/430;
    max-width: 81.7%;
  }
  .detail__mv-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 10%;
    left: -22%;
  }
  .detail__mv-text {
    font-size: 32px;
  }
  .detail__mv-info {
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .detail__mv {
    margin-top: 60px;
  }
}
.detail__content {
  margin-top: 64px;
}
.detail__content-container:not(:first-child) {
  margin-top: 56px;
}
.detail__content-container:nth-child(even) .detail__content-img img {
  border-radius: 48px 0 0 0;
}
.detail__content-inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
.detail__content-qa {
  display: flex;
}
.detail__content-q {
  color: #e0353e;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.detail__content-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 16px;
}
.detail__content-text {
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
}
.detail__content-img {
  margin-top: 12px;
}
.detail__content-img img {
  border-radius: 0 48px 0 0;
  aspect-ratio: 330/320;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) {
  .detail__content {
    margin-top: 80px;
  }
  .detail__content-inner {
    max-width: 1150px;
    padding: 0 25px;
  }
  .detail__content-container {
    display: flex;
    justify-content: end;
  }
  .detail__content-container--reverse {
    justify-content: start;
    flex-direction: row-reverse;
  }
  .detail__content-wrapper {
    width: 100%;
    max-width: 47.63%;
    margin-top: 73px;
  }
  .detail__content-q {
    font-size: 32px;
    margin-top: 7px;
  }
  .detail__content-title {
    font-size: 32px;
  }
  .detail__content-text {
    margin-top: 32px;
  }
  .detail__content-img {
    margin-top: 0;
    margin-left: 3.82%;
    width: 100%;
    max-width: 43.63%;
  }
  .detail__content-img img {
    aspect-ratio: 480/320;
  }
  .detail__content-img--reverse {
    margin-left: 0;
    margin-right: 3.82%;
  }
}
.detail__schedule {
  margin-top: 160px;
  padding-bottom: 64px;
}
.detail__schedule-inner {
  width: 100%;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
.detail__schedule-name-wrapper {
  position: relative;
  width: 100%;
  max-width: 330px;
}
.detail__schedule-name {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px 10px;
  transform: rotate(-4.83deg);
}
.detail__schedule-name::before, .detail__schedule-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.detail__schedule-name::before {
  left: 0;
  background-image: url(../img/detail/icon_schedule_line_01.png);
}
.detail__schedule-name::after {
  right: 0;
  background-image: url(../img/detail/icon_schedule_line_02.png);
}
.detail__schedule-icon {
  position: absolute;
  top: 42%;
  right: 0;
  z-index: -1;
  width: 164px;
  height: 88px;
  background-image: url(../img/detail/icon_schedule_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.detail__schedule-img {
  position: absolute;
  bottom: -58%;
  right: 4%;
  z-index: 0;
  width: 114px;
  height: 190px;
}
.detail__schedule-img img {
  height: 100%;
}
.detail__schedule-day {
  position: relative;
  z-index: 2;
  color: #0a0a0a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 12px;
  margin-bottom: 36px;
  margin-left: 50px;
}
.detail__schedule-content:last-child .detail__schedule-group {
  padding-bottom: 0;
  border-left: none;
}
.detail__schedule-wrapper {
  display: flex;
  background-color: #e0353e;
  padding: 8px 32px;
  width: 100%;
  max-width: 62.8%;
}
.detail__schedule-time {
  color: #fff;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.detail__schedule-unit {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  margin-left: 32px;
}
.detail__schedule-item {
  font-size: 14px;
}
.detail__schedule-note {
  font-size: 12px;
}
.detail__schedule-group {
  padding-top: 5px;
  padding-bottom: 25px;
  margin-left: 20px;
  border-left: 2px solid #e0353e;
}
.detail__schedule-text {
  color: #0a0a0a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 20px;
}
@media (min-width: 769px) {
  .detail__schedule-inner {
    max-width: 1030px;
    padding: 0 25px;
  }
  .detail__schedule-inner .detail__schedule-content:last-child {
    margin-bottom: 0;
  }
  .detail__schedule-inner .detail__schedule-content:last-child::before {
    display: none;
  }
  .detail__schedule-name-wrapper {
    width: 100%;
    max-width: 520px;
  }
  .detail__schedule-name {
    font-size: 24px;
    transform: rotate(-2.832deg);
    padding: 0 60px 23px;
  }
  .detail__schedule-name::before, .detail__schedule-name::after {
    width: 57px;
    height: 64px;
  }
  .detail__schedule-icon {
    top: 70%;
    width: 221px;
    height: 102px;
    background-image: url(../img/detail/icon_schedule_01_pc.png);
  }
  .detail__schedule-img {
    bottom: -42%;
    right: 1%;
  }
  .detail__schedule-day {
    font-size: 32px;
    margin-left: 100px;
  }
  .detail__schedule-content {
    position: relative;
    display: flex;
    margin-bottom: 60px;
  }
  .detail__schedule-content:last-child .detail__schedule-wrapper::before {
    display: none;
  }
  .detail__schedule-content::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 95px;
    width: 2px;
    height: 65px;
    background-color: #e0353e;
  }
  .detail__schedule-wrapper {
    position: relative;
    align-items: center;
    max-width: 240px;
    padding: 8px 16px;
  }
  .detail__schedule-wrapper::before {
    display: none;
  }
  .detail__schedule-time {
    font-size: 24px;
  }
  .detail__schedule-unit {
    flex-direction: column;
    align-items: start;
    margin-left: 20px;
  }
  .detail__schedule-item {
    font-size: 24px;
  }
  .detail__schedule-note {
    font-size: 16px;
    margin-top: 5px;
  }
  .detail__schedule-group {
    padding: 0;
    border-left: none;
    margin-left: 17px;
  }
  .detail__schedule-text {
    font-size: 16px;
    font-weight: 700;
    padding-left: 0;
  }
}

.section-title {
  text-align: center;
}
.section-title__en {
  text-align: center;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 48px;
  font-weight: 400;
}
@media (min-width: 769px) {
  .section-title__en {
    font-size: 72px;
  }
}
.section-title__en-span {
  color: #c1a262;
}
.section-title__en-span--red {
  color: #e0353e;
}
.section-title__en-br--tab {
  display: block;
}
@media (min-width: 1100px) {
  .section-title__en-br--tab {
    display: none;
  }
}
.section-title__en-br--sp {
  display: block;
}
@media (min-width: 769px) {
  .section-title__en-br--sp {
    display: none;
  }
}
.section-title__ja {
  text-align: center;
  font-size: 18.3px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .section-title__ja {
    font-size: 27.5px;
  }
}
@media (min-width: 769px) {
  .section-title__ja--experience {
    margin-top: 10px;
  }
}
.section-title__ja--entry {
  margin-top: 10px;
}
.section-title__ja-br--sp {
  display: block;
}
@media (min-width: 769px) {
  .section-title__ja-br--sp {
    display: none;
  }
}