@charset "UTF-8";
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --sree: "Sree Krushnadevaraya", serif;
  --zenantique: "Zen Antique", serif;
}

:root {
  --base-color: #5a4112;
  --main-color: #e34729;
  --bebas: "Bebas Neue", sans-serif;
  --lnter: "Inter", sans-serif;
  --toppan: "toppan-bunkyu-gothic-pr6n", serif;
  --headline: "headline-gothic-atf", sans-serif;
  --headline-round: "headline-gothic-atf-round", sans-serif;
  --headline-roughno1: "headline-gothic-atf-rough-n1", sans-serif;
  --headline-roughno2: "headline-gothic-atf-rough-n2", sans-serif;
}

html,
body {
  word-break: auto-phrase;
}

body {
  color: white;
  font-family: var(--sippori);
}

.main-color {
  color: #2e2e2e;
}

.ac-color {
  color: var(--main-color);
}

.bebas {
  font-family: var(--bebas);
}

.lnter {
  font-family: var(--lnter);
}

.toppan {
  font-family: var(--toppan);
}

.headline {
  font-family: var(--headline);
}

.entry-link-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../images/entry/entry-bg.jpg) center/cover no-repeat;
  padding: 125px 0;
}
@media (min-width: 768px) {
  .entry-link-area {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .entry-link-area {
    padding: 125px 0 250px;
  }
}
.entry-link-area__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.entry-link-area__title {
  font-size: 6.25rem;
}
@media (min-width: 576px) {
  .entry-link-area__title {
    font-size: 7.5rem;
  }
}
@media (min-width: 768px) {
  .entry-link-area__title {
    font-size: 9.375rem;
  }
}
@media (min-width: 992px) {
  .entry-link-area__title {
    font-size: 12.5rem;
  }
}
.entry-link-area__text {
  font-size: 1.5rem;
  letter-spacing: 0.38em;
  color: #e34729;
}
.entry-link-area .mark-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0.8;
}
.entry-link-area .mark-btn::before {
  content: "";
  display: block;
  background: url(../images/common/title-logo-red.png) center/contain no-repeat;
  width: 60px;
  height: 60px;
  transition: transform 0.8s ease;
}
@media (min-width: 576px) {
  .entry-link-area .mark-btn::before {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 768px) {
  .entry-link-area .mark-btn::before {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 992px) {
  .entry-link-area .mark-btn::before {
    width: 147px;
    height: 147px;
  }
}
.entry-link-area .mark-btn:hover::before {
  transform: rotate(360deg);
}

.bg-txt-img {
  position: absolute;
  top: 0;
  z-index: -1;
  max-width: 80px;
  left: 15px;
}
@media (min-width: 768px) {
  .bg-txt-img {
    max-width: 100px;
    left: 44px;
  }
}

.bgMv {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-top__wrap {
  padding: 80px 0;
  background-color: #1a1308;
}
@media (min-width: 768px) {
  .section-top__wrap {
    padding: 130px 0;
  }
}

.section-title {
  position: relative;
  z-index: 1;
  padding: 22px 0px;
}
@media (min-width: 576px) {
  .section-title {
    padding: 28px 0px;
  }
}
.section-title__en,
.section-title__ja {
  line-height: 1;
}
.section-title__en {
  font-size: 2.5rem;
}
@media (min-width: 576px) {
  .section-title__en {
    font-size: 5rem;
  }
}
@media (min-width: 768px) {
  .section-title__en {
    font-size: 7.5rem;
  }
}
.section-title__ja {
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .section-title__ja {
    font-size: 1.25rem;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url(./../images/common/title-logo.png) center/contain no-repeat;
  width: 100px;
  height: 100px;
}
@media (min-width: 576px) {
  .section-title::after {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 768px) {
  .section-title::after {
    width: 193px;
    height: 193px;
  }
}

.text-animate {
  display: inline-block;
  white-space: pre-wrap;
}

.text-animate span {
  opacity: 0;
  filter: blur(20px);
  display: inline-block;
  transition: opacity 0.3s ease;
}

.text-animate span.show {
  opacity: 1;
  filter: blur(0);
  transition: opacity 0.3s ease;
}

.sp-block {
  display: block;
}
@media (min-width: 576px) {
  .sp-block {
    display: none;
  }
}

.md-block {
  display: block;
}
@media (min-width: 768px) {
  .md-block {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 576px) {
  .sp-none {
    display: block;
  }
}

.md-none {
  display: none;
}
@media (min-width: 768px) {
  .md-none {
    display: block;
  }
}

.other-interview-select {
  padding-bottom: 130px;
}
.other-interview-select .interview-card {
  height: auto;
  box-sizing: border-box;
}
.other-interview-select .interview-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.other-interview-select .interview-card__img {
  position: relative;
  height: auto;
  box-sizing: border-box;
}
.other-interview-select .interview-card__img::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: #e65f4e;
  mix-blend-mode: lighten;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}
.other-interview-select .interview-card__img img {
  transition: all 0.3s ease;
  aspect-ratio: 257/342;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(100%) contrast(1) brightness(1);
  box-sizing: border-box;
}
.other-interview-select .interview-card__link:hover .interview-card__img img {
  transition: all 0.3s ease;
  filter: grayscale(0) contrast(1) brightness(1);
}
.other-interview-select
  .interview-card__link:hover
  .interview-card__img::before {
  opacity: 0;
  transition: all 0.3s ease;
}
.other-interview-select .interview-card__info,
.other-interview-select .interview-card__meta,
.other-interview-select .interview-card__number,
.other-interview-select .interview-card__name {
  line-height: 1.3;
  height: auto;
  box-sizing: border-box;
}
.other-interview-select .interview-card__meta {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  height: auto;
  box-sizing: border-box;
  flex-grow: 1;
}
.other-interview-select .interview-card__name {
  margin-top: auto;
}
.other-interview-select .interview-card__name .name-en {
  margin-left: 5px;
  letter-spacing: 1px;
}

.page-first-view {
  position: relative;
  z-index: 1;
  height: 100svh;
  background-size: cover;
  background-position: 65% 50%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .page-first-view {
    background-position: center;
  }
}
.page-first-view::before {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    rgba(255, 187, 61, 0.14);
  z-index: -1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s ease;
}
.page-first-view.in-view::before {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: all 0.5s ease;
}
.page-first-view__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.25rem;
  height: inherit;
  margin-bottom: 1rem;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .page-first-view__title {
    padding-bottom: 0;
    padding-left: 4.875rem;
  }
}
.page-first-view__title__main {
  font-size: 3.75rem;
  line-height: 1;
}
@media (min-width: 992px) {
  .page-first-view__title__main {
    font-size: 7.5rem !important;
  }
}
.page-first-view__title__sub {
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .page-first-view__title__sub {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) {
  .page-first-view__title__sub {
    font-size: 2rem;
  }
}
.page-first-view__name__ja {
  font-size: 1.875rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .page-first-view__name__ja {
    font-size: 5rem;
  }
}
.page-first-view__name__en {
  line-height: 1;
}

.single-interview .page-first-view__title {
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .single-interview .page-first-view__title {
    justify-content: center;
  }
}

.top-fv-area {
  position: relative;
  z-index: 1;
  height: 100svh;
  display: flex;
  overflow: hidden;
}
.top-fv-area__wrapper {
  margin-top: auto;
}
.top-fv-area::after {
  /* bg */
  content: "";
  position: absolute;
  width: 100%;
  height: 45vh;
  left: 0px;
  bottom: 0;
  display: block;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #1a1308 50%,
    #1a1308 100%
  );
  z-index: -1;
}

.fv-text__loop {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick {
  display: inline-flex;
}

.fv-text__loop__text {
  display: inline-block;
  padding-right: 4rem;
  color: var(--main-color);
  font-size: 7.5rem;
}
@media (min-width: 576px) {
  .fv-text__loop__text {
    font-size: 11.25rem;
  }
}
@media (min-width: 992px) {
  .fv-text__loop__text {
    font-size: 15.625rem;
  }
}
.fv-text__loop__text > span {
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--main-color);
}

@-webkit-keyframes loopText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes loopText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
.sec2 {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #1a1308 0,
    rgba(15, 10, 4, 0.8) 75%,
    rgba(15, 10, 4, 0.5) 90%,
    rgba(17, 11, 5, 0.1) 100%
  );
  padding: 220px 0;
}
.sec2__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec2__top__img {
  max-width: 80%;
}
@media (min-width: 576px) {
  .sec2__top__img {
    max-width: 55%;
  }
}
.sec2__top__img.img01 {
  margin-right: auto;
}
.sec2__top__img.img02 {
  margin-left: auto;
}
.sec2__top__text {
  text-align: center;
}
@media (min-width: 576px) {
  .sec2__top__text {
    text-align: left;
  }
}
.sec2__scroll__contents {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .sec2__scroll__contents {
    flex-direction: row;
  }
}
.sec2__scroll__contents .text-animate2 {
  flex: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  padding-top: 150px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.4;
  order: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .sec2__scroll__contents .text-animate2 {
    line-height: 1.8;
  }
}
@media (min-width: 1200px) {
  .sec2__scroll__contents .text-animate2 {
    flex: 1;
    order: 2;
    padding-top: 19vh;
    height: 100vh;
    width: 100%;
  }
}
.sec2__scroll__images {
  width: 100%;
  padding-top: 100px;
  order: 2;
  padding-bottom: 80vh;
}
@media (min-width: 1200px) {
  .sec2__scroll__images {
    order: 1;
    width: 475px;
    padding-top: 100vh;
    padding-bottom: 0;
  }
}
.sec2__scroll__images img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
}
@media (min-width: 1200px) {
  .sec2__scroll__images img {
    opacity: 1;
  }
}
.sec2__scroll__images .sec2__scroll__image {
  background-color: #3e331d;
}
.sec2__scroll__images .sec2__scroll__image:nth-child(1) {
  max-width: 195px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(1) {
    max-width: 265px;
  }
}
.sec2__scroll__images .sec2__scroll__image:nth-child(2) {
  max-width: 130px;
  margin-right: auto;
  transform: translateY(-40px);
}
@media (min-width: 768px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(2) {
    max-width: 188px;
  }
}
.sec2__scroll__images .sec2__scroll__image:nth-child(3) {
  max-width: 257px;
}
.sec2__scroll__images .sec2__scroll__image:nth-child(4) {
  max-width: 180px;
  margin: 40px 0 100px auto;
}
@media (min-width: 768px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(4) {
    max-width: 214px;
    margin: 40px auto 40px 60px;
  }
}
.sec2__scroll__images .sec2__scroll__image:nth-child(5) {
  max-width: 274px;
  margin: 0 auto 40px -40px;
}
@media (min-width: 768px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(5) {
    margin: 0 auto 40px -40px;
  }
}
.sec2__scroll__images .sec2__scroll__image:nth-child(6) {
  max-width: 202px;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(6) {
    margin-left: 0;
    margin-right: -110px;
  }
}
.sec2__scroll__images .sec2__scroll__image:nth-child(7) {
  max-width: 120px;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(7) {
    max-width: 186px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(7) {
    margin-left: -10px;
    transform: translateY(-20px);
  }
}
.sec2__scroll__images .sec2__scroll__image:nth-child(8) {
  max-width: 220px;
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 768px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(8) {
    max-width: 358px;
  }
}
@media (min-width: 1200px) {
  .sec2__scroll__images .sec2__scroll__image:nth-child(8) {
    margin-left: 20px;
    margin-right: auto;
  }
}

.sec3 {
  background-color: rgba(17, 11, 5, 0.1);
  padding-bottom: 200px;
}
@media (min-width: 576px) {
  .sec3 {
    padding-bottom: 250px;
  }
}
@media (min-width: 768px) {
  .sec3 {
    padding-bottom: 300px;
  }
}
@media (min-width: 992px) {
  .sec3 {
    padding-bottom: 450px;
  }
}
.sec3__title > h2 {
  margin-right: -22px;
  font-size: 1.875rem;
}
@media (min-width: 576px) {
  .sec3__title > h2 {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .sec3__title > h2 {
    font-size: 3rem;
  }
}
.sec3__title > p {
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .sec3__title > p {
    margin-bottom: 100px;
  }
}

.sec4 {
  padding-top: 44vw;
  background: linear-gradient(
    180deg,
    rgba(17, 11, 5, 0.1) 0%,
    rgba(18, 12, 5, 0.5) 30%,
    #120c05 100%
  );
}
.sec4 .bg-wrap {
  background-color: #e34729;
  padding: 40px 0 140px;
}
.sec4 .container {
  position: relative;
  z-index: 1;
}
.sec4 .container .top-deco {
  position: absolute;
  z-index: -1;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transform: translateY(-98%);
}
.sec4__mission__message__main {
  max-width: 346px;
  margin: 30px auto;
}
@media (min-width: 576px) {
  .sec4__mission__message__main {
    max-width: 906px;
  }
}
.sec4__mission__message__main p {
  text-shadow: 1px 3px 0 #2e2e2e;
  line-height: 1.2;
  font-size: 1.4375rem;
}
@media (min-width: 576px) {
  .sec4__mission__message__main p {
    font-size: 2.4375rem;
  }
}
@media (min-width: 768px) {
  .sec4__mission__message__main p {
    font-size: 3.4375rem;
  }
}
@media (min-width: 992px) {
  .sec4__mission__message__main p {
    font-size: 4rem;
  }
}
.sec4__mission__message__main p > span {
  font-size: 2.375rem;
}
@media (min-width: 576px) {
  .sec4__mission__message__main p > span {
    font-size: 3.375rem;
  }
}
@media (min-width: 768px) {
  .sec4__mission__message__main p > span {
    font-size: 4.375rem;
  }
}
@media (min-width: 992px) {
  .sec4__mission__message__main p > span {
    font-size: 6rem;
  }
}
.sec4__mission__message__main .textTop {
  margin-right: auto;
}
.sec4__mission__message__main .textBottom {
  margin-left: auto;
}
.sec4__mission__message__text {
  line-height: 2.2;
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .sec4__mission__message__text {
    line-height: 2.45;
  }
}

.sec5 {
  background: linear-gradient(
    180deg,
    #120c05 0,
    rgba(19, 13, 6, 0.85) 35%,
    rgba(20, 14, 6, 0.85) 75%,
    #161007 100%
  );
  overflow: hidden;
}
.sec5 .container {
  display: flex;
  gap: 10vw;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .sec5 .container {
    flex-direction: row;
  }
}
.sec5 .inner-section__contents {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .sec5 .inner-section__contents {
    padding: 50px 0 150px;
  }
}
.sec5 .inner-section__top {
  position: relative;
  z-index: 1;
  padding: 28vh 0;
  overflow: hidden;
}
.sec5 .inner-section__top::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s ease;
}
.sec5 .inner-section__top.in-view::before {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: all 0.5s ease;
}
.sec5 .inner-section__contents__img {
  width: 100%;
}
@media (min-width: 992px) {
  .sec5 .inner-section__contents__img {
    width: 33vw;
  }
}
.sec5 .inner-section__contents__img img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 70%;
}
@media (min-width: 768px) {
  .sec5 .inner-section__contents__img img {
    max-width: 59%;
  }
}
.sec5 .inner-section__contents__img > img:nth-of-type(1) {
  margin-right: auto;
}
.sec5 .inner-section__contents__img > img:nth-of-type(2) {
  margin-left: auto;
}
.sec5 .inner-section__contents__wrap {
  flex: 1;
}
.sec5 .inner-section__contents__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
  max-width: 70%;
}
@media (min-width: 768px) {
  .sec5 .inner-section__contents__title {
    align-items: flex-end;
    max-width: 100%;
  }
}
.sec5 .inner-section__contents__title > p {
  margin-bottom: 20px;
}
.sec5 .inner-section__contents__title img {
  -o-object-fit: cover;
  object-fit: cover;
}
.sec5 .inSec01 .inner-section__top {
  background: url(./../images/top/business-bg01.jpg) center/cover no-repeat;
}
.sec5 .inSec02 .inner-section__top {
  background: url(./../images/top/business-bg02.jpg) center/cover no-repeat;
}
.sec5 .inSec03 .inner-section__top {
  background: url(./../images/top/business-bg03.jpg) center/cover no-repeat;
}
.sec5 .inSec04 .inner-section__top {
  background: url(./../images/top/business-bg04.jpg) center top/cover no-repeat;
}
.sec5 .inSec05 .inner-section__top {
  background: url(./../images/top/business-bg05.jpg) center/cover no-repeat;
}

.sec06 {
  position: relative;
  z-index: 1;
}
.sec06 .section-top__wrap {
  background-color: #161007;
}
.sec06 .message-bg {
  position: -webkit-sticky;
  position: sticky;
  z-index: -1;
  top: 0;
  display: flex;
  height: 100svh;
  background: url(./../images/top/message-bg.jpg) center/cover no-repeat;
}
.sec06 .message-bg-text {
  margin-top: -20vw;
}
.sec06 .message-bg-text > img {
  display: block;
  margin-top: auto;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  padding: 0 10px;
}
@media (min-width: 576px) {
  .sec06 .message-bg-text > img {
    max-width: 85%;
    padding: 30px 50px 30px;
  }
}
@media (min-width: 992px) {
  .sec06 .message-bg-text > img {
    max-width: 65%;
  }
}
.sec06 .message-inner {
  margin-top: 100px;
  padding-top: 120px;
  padding-bottom: 150px;
  background: linear-gradient(
    180deg,
    rgba(26, 19, 8, 0) 0%,
    rgba(26, 19, 8, 0.1) 10%,
    rgba(26, 19, 8, 0.2) 20%,
    rgba(26, 19, 8, 0.3) 30%,
    rgba(26, 19, 8, 0.5) 40%,
    rgba(26, 19, 8, 0.6) 50%
  );
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
@media (min-width: 768px) {
  .sec06 .message-inner {
    margin-top: 150px;
    padding-top: 290px;
    padding-bottom: 200px;
  }
}
.sec06 .message-inner__wrap {
  width: 100%;
}
@media (min-width: 992px) {
  .sec06 .message-inner__wrap {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  .sec06 .message-inner__wrap {
    width: 56%;
  }
}
.sec06 .message-inner__title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .sec06 .message-inner__title {
    font-size: 1.625rem;
  }
}
.sec06 .message-inner__list {
  margin-bottom: 60px;
}
.sec06 .message-inner__question {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .sec06 .message-inner__question {
    align-items: center;
    margin-bottom: 10px;
  }
}
.sec06 .message-inner__question::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: white;
  margin-right: 5px;
  margin-top: 17px;
}
@media (min-width: 768px) {
  .sec06 .message-inner__question::before {
    width: 62px;
    margin-top: 0;
  }
}
.sec06 .message-inner__question > p {
  flex: 1;
  font-size: 1.125rem;
  min-height: 33px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .sec06 .message-inner__question > p {
    font-size: 1.5rem;
  }
}
.sec06 .message-inner__answer {
  font-family: var(--toppan);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .sec06 .message-inner__answer {
    font-size: 1rem;
  }
}
.sec06 .president-name {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .sec06 .president-name {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .sec06 .president-name {
    font-size: 1.5rem;
  }
}

.sec7 .section-top__wrap,
.interview-other .section-top__wrap,
.other-interview .section-top__wrap {
  background-color: #161007;
}
.sec7 .other-interview-select,
.interview-other .other-interview-select,
.other-interview .other-interview-select {
  background-color: #161007;
}

.history-area {
  background: linear-gradient(
    180deg,
    #1a1308 0,
    #0f0a04 8.17%,
    rgba(18, 12, 5, 0.7) 18.49%,
    rgba(18, 12, 5, 0.8) 32.9%,
    #130d06 50.48%,
    rgba(20, 14, 6, 0.8) 61.64%,
    #161007 100%
  );
  padding-bottom: 150px;
}
@media (min-width: 768px) {
  .history-area {
    padding-bottom: 190px;
  }
}
.history-area .section-top__wrap {
  background-color: transparent;
}
.history-area .his-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .history-area .his-container {
    max-width: 80vw;
  }
}
@media (min-width: 992px) {
  .history-area .his-container {
    max-width: 60vw;
  }
}
.history-area .his-item {
  position: relative;
  padding-left: 60px;
}
@media (min-width: 576px) {
  .history-area .his-item {
    padding-left: 70px;
  }
}
@media (min-width: 768px) {
  .history-area .his-item {
    padding-left: 120px;
  }
}
.history-area .his-year {
  position: absolute;
  top: 10px;
  left: 0;
  transform: translateY(-25%);
  width: 80px;
  font-family: var(--headline);
  color: var(--main-color);
  font-size: 2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .history-area .his-year {
    font-size: 3rem;
  }
}
.history-area .his-inner__wrap {
  display: flex;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .history-area .his-inner__wrap {
    padding-left: 35px;
  }
}
@media (min-width: 768px) {
  .history-area .his-inner__wrap {
    padding-left: 68px;
  }
}
.history-area .his-inner__wrap::before,
.history-area .his-inner__wrap::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #e5e1d8;
}
.history-area .his-inner__wrap::before {
  width: 15px;
  height: 15px;
  border-radius: 20px;
  top: 16px;
  transform: translateY(-50%);
  left: 0;
}
@media (min-width: 768px) {
  .history-area .his-inner__wrap::before {
    top: 20px;
  }
}
.history-area .his-inner__wrap::after {
  width: 1px;
  height: 100%;
  top: 15px;
  left: 7px;
}
.history-area .his-line {
  height: 100%;
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  box-sizing: border-box;
}
.history-area .his-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 46%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #e5e1d8;
}
.history-area .his-item-group {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}
.history-area .monthly-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .history-area .monthly-wrap {
    flex-direction: row;
  }
}
.history-area .monthly-wrap:last-child {
  margin-bottom: 0;
}
.history-area .his-month {
  width: 45px;
  padding-right: 0px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .history-area .his-month {
    padding-right: 40px;
  }
}
.history-area .his-month {
  color: #e5e1d8;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .history-area .his-month {
    font-size: 1.25rem;
  }
}
.history-area .his-cont {
  flex: 1;
}
.history-area .his-cont p {
  color: #e5e1d8;
  word-break: break-all;
  font-size: 0.875rem;
  padding-top: 2px;
}
@media (min-width: 576px) {
  .history-area .his-cont p {
    font-size: 1rem;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .history-area .his-cont p {
    font-size: 1.25rem;
  }
}

.overview-area {
  background-color: #161007;
  padding-bottom: 150px;
}
@media (min-width: 768px) {
  .overview-area {
    padding-bottom: 220px;
  }
}
.overview-area .section-top__wrap {
  background-color: transparent;
}
.overview-area .overview-list .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1200px) {
  .overview-area .overview-list .container {
    flex-direction: row;
    gap: 5vw;
  }
}
.overview-area .overview-list__left,
.overview-area .overview-list__right {
  width: 100%;
}
@media (min-width: 1200px) {
  .overview-area .overview-list__left,
  .overview-area .overview-list__right {
    width: calc(50% - 2.5vw);
  }
}
.overview-area .overview-list__inner {
  display: flex;
  flex-direction: column;
  padding: 13px 0;
  border-bottom: solid 1px #e5e1d8;
}
@media (min-width: 576px) {
  .overview-area .overview-list__inner {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .overview-area .overview-list__inner:last-child {
    border-bottom: none;
  }
}
.overview-area .overview-list__inner > dt {
  font-weight: bold;
  width: 100%;
  margin-bottom: 5px;
}
@media (min-width: 576px) {
  .overview-area .overview-list__inner > dt {
    font-weight: normal;
    width: 150px;
    margin-bottom: 0;
  }
}
.overview-area .overview-list__inner > dd {
  flex: 1;
  font-size: 0.75rem;
}
.overview-area .overview-list__inner > dt,
.overview-area .overview-list__inner > dd {
  color: #e5e1d8;
}
@media (min-width: 768px) {
  .overview-area .overview-list__inner > dt,
  .overview-area .overview-list__inner > dd {
    font-size: 0.9375rem;
  }
}

.single-interview {
  background: linear-gradient(
    180deg,
    rgba(4, 0, 0, 0) 0%,
    #1a1308 2.07%,
    #1a1308 85.02%,
    rgba(26, 19, 8, 0) 91.58%
  );
}
.single-interview img {
  -o-object-fit: cover;
  object-fit: cover;
}

.interview-contents {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}
@media (min-width: 992px) {
  .interview-contents {
    padding-top: 18.75rem;
    padding-bottom: 9.375rem;
  }
}
.interview-contents__wrap:last-child {
  margin-bottom: 0 !important;
}
.interview-contents__inner {
  display: flex;
  gap: 2.5rem;
}
.interview-contents__inner:not(:has(.staff-img)) .text-contents {
  flex: 0 0 100%;
  max-width: 100%;
}
.interview-contents .staff-img {
  flex: 0 0 100%;
  max-width: 75%;
  margin: 0 auto;
}
.interview-contents .text-contents {
  flex: 1 1 auto;
  max-width: 100%;
}

@media (min-width: 992px) {
  .interview01 .interview-contents__inner {
    flex-direction: row-reverse !important;
  }
}
@media (min-width: 992px) {
  .interview01 .staff-img {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (min-width: 992px) {
  .interview02 .staff-img {
    flex: 0 0 38%;
    max-width: 38%;
  }
}

@media (min-width: 992px) {
  .interview04 .staff-img {
    flex: 0 0 35%;
    max-width: 35%;
  }
}

.interview06 .interview-contents__inner {
  flex-direction: column-reverse !important;
}
.interview06 .staff-img {
  width: 100%;
  flex: none;
  max-width: 90%;
}
@media (min-width: 576px) {
  .interview06 .staff-img {
    max-width: 66%;
  }
}
@media (min-width: 992px) {
  .interview06 .staff-img {
    max-width: 66%;
  }
}
.interview06 .text-contents {
  flex: 0 0 100%;
  max-width: 100%;
}

.page-entry {
  overflow: hidden;
  background-color: var(--main-color);
}
.page-entry .section-top__wrap {
  background-color: transparent;
}
.page-entry .job-title {
  text-align: center;
}

.entry-panels {
  padding-bottom: 120px;
}
@media (min-width: 768px) {
  .entry-panels {
    padding-bottom: 170px;
  }
}

.job-contents {
  padding: 2.5rem 1.25rem;
  background-color: #e5e1d8;
  border-radius: 1.5625rem;
  color: #2e2e2e;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .job-contents {
    padding: 3.75rem 5rem;
  }
}
.job-contents:last-child {
  margin-bottom: 0;
}

.job-lists dl {
  padding: 0.9375rem 0;
  border-bottom: solid 1px #2e2e2e;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .job-lists dl {
    flex-direction: row;
  }
}
.job-lists dl:first-child {
  padding-top: 0;
}
.job-lists dl:last-child {
  border-bottom: none;
}
.job-lists dt,
.job-lists dd {
  font-size: 0.875rem;
}
.job-lists dt {
  width: 155px;
}
@media (min-width: 768px) {
  .job-lists dt {
    font-weight: normal;
  }
}
.job-lists dd {
  flex: 1;
  padding-top: 0.3125rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .job-lists dd {
    padding-top: 0;
    font-size: 1rem;
  }
}

.job-tab {
  display: flex;
  flex-wrap: wrap;
  max-width: 250px;
  margin: 0 auto 50px;
  gap: 13px;
}
@media (min-width: 576px) {
  .job-tab {
    max-width: 400px;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .job-tab {
    max-width: 480px;
  }
}
@media (min-width: 992px) {
  .job-tab {
    flex-direction: row;
  }
}
.job-tab > li {
  width: 100%;
}
@media (min-width: 576px) {
  .job-tab > li {
    width: calc(50% - 10px);
  }
}
.job-tab .js-tab {
  width: 100%;
  border-radius: 0.625rem;
  border: solid 0.0625rem var(--main-color);
  padding: 0.625rem;
  display: inline-block;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .job-tab .js-tab {
    padding: 1.0625rem 0.625rem;
  }
}
.job-tab .js-tab.is-active {
  background-color: var(--main-color);
  color: #e5e1d8;
}

.job-panel .job-img {
  max-width: 80%;
  margin: 0 auto 2.8125rem;
}
@media (min-width: 576px) {
  .job-panel .job-img {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .job-panel .job-img {
    max-width: 40%;
  }
}

.flow-area {
  background-color: #1a1308;
  padding-bottom: 120px;
}
@media (min-width: 768px) {
  .flow-area {
    padding-bottom: 170px;
  }
}
.flow-area .box {
  background-color: rgba(229, 225, 216, 0.1882352941);
  padding: 1.875rem 2.5rem;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media (min-width: 992px) {
  .flow-area .box {
    padding: 0.5625rem 3.75rem;
    max-width: 73%;
  }
}

.flow-steps__img {
  max-width: 8.125rem;
}
@media (min-width: 768px) {
  .flow-steps__img {
    max-width: 10.625rem;
  }
}
.flow-steps__img img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
}
.flow-steps__inner {
  flex: 1;
}

.entry-form {
  /* ▼矢印のカスタム */
}
.entry-form__list > label {
  min-width: 20rem;
}
.entry-form__list .field {
  flex: 1;
  display: flex;
  gap: 0.625rem;
}
.entry-form__list .control {
  flex: 1;
  width: 100%;
}
.entry-form__list .select {
  width: 100%;
}
.entry-form span {
  display: inline-grid;
  display: -ms-inline-grid;
  width: auto;
  height: 100%;
}
.entry-form label,
.entry-form input,
.entry-form select {
  padding: 0.75rem;
  font-family: var(--toppan);
  display: block;
  line-height: 1;
  color: #2e2e2e;
  font-weight: bold;
  max-width: 100%;
  height: inherit;
  height: 2.8rem;
  word-break: break-all;
}
@media (min-width: 768px) {
  .entry-form label,
  .entry-form input,
  .entry-form select {
    height: 3.5rem;
  }
}
.entry-form label {
  padding: 0.75rem 0 0;
  height: 2rem;
}
@media (min-width: 768px) {
  .entry-form label {
    padding: 0.75rem 0;
    height: 3.5rem;
  }
}
.entry-form input,
.entry-form select {
  background-color: #e5e1d8;
  width: inherit;
  border-radius: 0.625rem;
}
.entry-form .tag.is-primary {
  display: inline-block;
  font-family: var(--toppan);
  background-color: #2e2e2e;
  border-radius: 1.25rem;
  line-height: 1;
  padding: 0.4375rem 1.25rem;
  margin-left: 0.5625rem;
  color: #e5e1d8 !important;
  height: auto;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .entry-form .tag.is-primary {
    font-size: 0.875rem;
  }
}
.entry-form .wpcf7-not-valid-tip {
  color: #2e2e2e;
}
.entry-form .wpcf7 select {
  appearance: none; /* 標準の矢印を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}
.entry-form .wpcf7 select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='black' d='M5.516 7.548a.75.75 0 0 1 1.061 0L10 10.971l3.423-3.423a.75.75 0 1 1 1.06 1.06l-4 4a.75.75 0 0 1-1.06 0l-4-4a.75.75 0 0 1 0-1.06z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8em center; /* ← 矢印の位置を調整（ここを変える） */
  background-size: 1em;
}
.entry-form .check-list {
  padding: 0.75rem 0 0;
}
@media (min-width: 768px) {
  .entry-form .check-list {
    padding: 0.75rem 0;
  }
}
.entry-form .check-list .wpcf7-list-item > label,
.entry-form .check-list .wpcf7-list-item input {
  display: flex;
  align-items: center;
  height: auto;
}
.entry-form .check-list .checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) {
  .entry-form .check-list .checkbox {
    gap: 25px;
  }
}
.entry-form .check-list .checkbox span {
  margin: 0;
  height: auto;
  display: flex;
  align-items: center;
}
.entry-form .check-list label {
  padding: 0;
}
.entry-form .check-list label > input {
  margin-right: 5px;
}
.entry-form .check-list label,
.entry-form .check-list input {
  min-height: auto;
}
.entry-form .submit-btn {
  margin-top: 5.625rem;
}
.entry-form .submit-btn .control {
  text-align: center;
  position: relative;
}
.entry-form .submit-btn .control > .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.entry-form .submit-btn .control input {
  border-radius: 50px;
  border: solid 1px #e5e1d8;
  color: var(--main-color);
  font-family: var(--sippori);
  padding: 0.9375rem 2.5rem;
  margin: 0 auto;
  transition: all 0.3s ease;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .entry-form .submit-btn .control input {
    padding: 0.9375rem 4.75rem;
    font-size: 1.25rem;
  }
}
.entry-form .submit-btn .control input:hover {
  transition: all 0.3s ease;
  background-color: var(--main-color);
  color: #e5e1d8;
}
.entry-form input[type="text"],
.entry-form input[type="email"],
.entry-form input[type="tel"],
.entry-form textarea {
  font-size: 1rem;
}
.entry-form span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
}
.entry-form .wpcf7-form-control.wpcf7-date {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.error-page .link-btn {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.error-page .link-btn__inner {
  display: inline-block;
  border-radius: 50px;
  border: solid 1px var(--main-color);
  background-color: var(--main-color);
  color: #e5e1d8;
  font-family: var(--sippori);
  padding: 0.9375rem 2.5rem;
  margin: 0 auto;
  transition: all 0.3s ease;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .error-page .link-btn__inner {
    padding: 0.9375rem 4.75rem;
    font-size: 1.25rem;
  }
}
.error-page .link-btn__inner:hover {
  transition: all 0.3s ease;
  background-color: #e5e1d8;
  color: var(--main-color);
}
