@charset "UTF-8";
/* アニメーション中に文字が要素からはみ出さないようにする */
.slide-in {
  display: inline-block;
  width: 0; /* 幅0%から始める */
  white-space: nowrap; /* テキストが折り返されないようにする */
  overflow: hidden; /* 幅が狭い間はテキストが見えないようにする */
  opacity: 0; /* 初期状態で透明 */
  animation: expandWidth 0.8s ease forwards; /* 4秒で幅を広げるアニメーション */
}
.slide-in.delay1 {
  animation-delay: 0.3s;
}
.slide-in.delay2 {
  animation-delay: 0.6s;
}
.slide-in.delay3-5 {
  animation-delay: 0.9s;
}

/* @keyframes を使って幅と透明度を変化させる */
@keyframes expandWidth {
  0% {
    width: 0; /* 最初は幅が0 */
    opacity: 0; /* 最初は透明 */
  }
  50% {
    width: 5%;
    opacity: 0;
  }
  100% {
    width: 100%; /* 最終的に幅が100% */
    opacity: 1; /* 表示されたまま */
  }
}
body {
  letter-spacing: 0.1em;
  background: var(--color-white);
}
body h1, body h2 {
  font-family: var(--regular-family);
}

body {
  overflow-x: hidden;
}

@media (width < 375px) {
  .sp-none {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (width < 375px) {
  .sp-show {
    display: block;
  }
}

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

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

@media (width < 1026px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media (width < 1026px) {
  .lg-show {
    display: block;
  }
}

.uppercase {
  text-transform: uppercase;
}

.nowrap {
  white-space: nowrap;
}

.child-top {
  position: relative;
}
@media (width < 768px) {
  .child-top__img {
    aspect-ratio: 750/400;
  }
}
.child-top__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1600/400;
}
@media (width < 768px) {
  .child-top__img img {
    aspect-ratio: 750/400;
  }
}
.child-top__txt {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.child-top .slide-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.child-top__text-main {
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
@media (width < 768px) {
  .child-top__text-main {
    font-size: clamp(1.75rem, 0.262rem + 7.44vw, 3.75rem);
    line-height: 1.8333333333;
  }
}
.child-top::after {
  position: absolute;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 192px;
  letter-spacing: 0.07em;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (width < 768px) {
  .child-top::after {
    font-size: 100px;
  }
}

.sub-menu {
  width: 100%;
  margin-top: 50px;
}
@media (width < 768px) {
  .sub-menu {
    margin-top: 7.8vw;
  }
}
@media (width < 768px) {
  .sub-menu .lower-inner {
    width: 100%;
  }
}
.sub-menu .sub-menu__items {
  display: flex;
  justify-content: space-between;
}
@media (width < 768px) {
  .sub-menu .sub-menu__items {
    width: 100%;
  }
}
.sub-menu .sub-menu__item {
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding-block: 3px;
  border-right: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item {
    padding-block: 0;
    height: 3.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sub-menu .sub-menu__item:first-child {
  border-left: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:first-child {
    border-left: none;
  }
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:last-child {
    border-right: none;
  }
}
.sub-menu .sub-menu__item:hover {
  opacity: 0.7;
}
.sub-menu .sub-menu__link {
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
}
@media (width < 768px) {
  .sub-menu .sub-menu__link {
    font-size: 2.6666666667vw;
  }
}

.link-tab__button {
  position: fixed;
  z-index: 9000;
  right: 0px;
  top: 226px;
  width: 54px;
  height: 160px;
  cursor: pointer;
  background-color: var(--color-black);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (width < 768px) {
  .link-tab__button {
    display: none;
  }
}
.link-tab__button::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 18px;
  left: 50%;
  translate: -50% 0;
  top: 20px;
  background: url(/recruit/career/cmn/img/search.webp) center center/contain no-repeat;
}
.link-tab__button a {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  writing-mode: vertical-rl;
  width: 100%;
  height: 100%;
}
.link-tab__button p {
  position: absolute;
  top: 68px;
  left: 50%;
  translate: -50% 0;
}

.lower-inner {
  padding-inline: 10px;
  width: calc(70% + 20px);
  max-width: 100%;
  margin-inline: auto;
}
@media (width < 768px) {
  .lower-inner {
    width: 86.6666vw;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.lower-title {
  font-size: 32px;
  line-height: 2.2853571429;
  position: relative;
  letter-spacing: 0.07em;
  padding-left: 44px;
}
@media (width < 768px) {
  .lower-title {
    font-size: 6.4vw;
    padding-left: 1em;
    line-height: 1.3;
  }
}
.lower-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-black);
  width: 6px;
  height: 40px;
}
@media (width < 768px) {
  .lower-title::before {
    width: 3px;
    height: 8vw;
  }
}

/* セクションタイトル */
.section-title__container {
  position: relative;
  padding-bottom: 20px;
  font-family: var(--regular-family);
}
@media (width < 768px) {
  .section-title__container {
    padding-bottom: 30px;
  }
}
.section-title__container::after {
  position: absolute;
  content: "";
  left: 50%;
  translate: -50% 0;
  bottom: 0px;
  width: 72px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-black);
}
@media (width < 768px) {
  .section-title__container::after {
    bottom: 14px;
    width: 55px;
  }
}
.section-title__container .section-title__main {
  font-size: 40px;
  text-align: center;
}
@media (width < 768px) {
  .section-title__container .section-title__main {
    font-size: 32px;
  }
}
.section-title__container .section-title__sub {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  font-family: var(--regular-family);
}
@media (width < 768px) {
  .section-title__container .section-title__sub {
    margin-top: 10px;
    font-size: 12px;
  }
}

/* リード文 */
.section-lead {
  text-align: center;
  margin-top: 32px;
  line-height: 1.7;
}
@media (width < 768px) {
  .section-lead {
    text-align: left;
    margin-top: 4px;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}

/*ボタン*/
.btn-area {
  margin-inline: auto;
  display: flex;
  gap: 38px;
  justify-content: center;
}
@media (width < 768px) {
  .btn-area {
    flex-direction: column;
    width: 100%;
    margin: 35px auto 0;
    gap: 8.5333vw;
  }
}
.btn-area .btn {
  margin-inline: auto;
  max-width: 420px;
  width: 50vw;
}
@media (width < 768px) {
  .btn-area .btn {
    width: 85%;
  }
}
@media (width < 768px) {
  .btn-area .btn a {
    height: 70px;
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .btn-area .btn__arrow {
    right: 5vw;
  }
}

.lower-main {
  margin-top: 104px;
}
@media (width < 1026px) {
  .lower-main {
    margin-top: 0;
  }
}

.header__logo-txt {
  color: var(--color-black);
}
.header__item {
  color: var(--color-black);
}
.header__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.header__item.current::after {
  transform: scale(1);
}
.header__item:hover::after {
  transform: scale(1);
}

/*各セクション共通*/
.staff-interview .staff {
  position: relative;
  width: 70%;
  height: 41.25vw;
  aspect-ratio: 600/720;
  margin-inline: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (width < 768px) {
  .staff-interview .staff {
    width: 86.6666666667%;
    height: 106.6666666667vw;
    aspect-ratio: 650/800;
  }
}
.staff-interview .staff1 {
  background-image: url(../img/staff1.webp);
  color: var(--color-white);
}
@media (width < 768px) {
  .staff-interview .staff1 {
    background-image: url(../img/staff1-sp.webp);
  }
}
@media (width < 768px) {
  .staff-interview .staff1 {
    color: var(--color-black);
  }
}
.staff-interview .staff2 {
  background-image: url(../img/staff2.webp);
  color: var(--color-white);
}
@media (width < 768px) {
  .staff-interview .staff2 {
    background-image: url(../img/staff2-sp.webp);
  }
}
.staff-interview .staff3 {
  background-image: url(../img/staff3.webp);
  color: var(--color-white);
}
@media (width < 768px) {
  .staff-interview .staff3 {
    background-image: url(../img/staff3-sp.webp);
  }
}
@media (width < 768px) {
  .staff-interview .staff3 {
    color: var(--color-black);
  }
}
.staff-interview .staff4 {
  background-image: url(../img/staff4.webp);
}
@media (width < 768px) {
  .staff-interview .staff4 {
    background-image: url(../img/staff4-sp.webp);
  }
}
.staff-interview .staff5 {
  background-image: url(../img/staff5.webp);
  color: var(--color-white);
}
@media (width < 768px) {
  .staff-interview .staff5 {
    background-image: url(../img/staff5-sp.webp);
    color: var(--color-black);
  }
}
.staff-interview .staff6 {
  background-image: url(../img/staff6.webp);
  color: var(--color-white);
}
@media (width < 768px) {
  .staff-interview .staff6 {
    background-image: url(../img/staff6-sp.webp);
  }
}
.staff-interview .staff__link {
  display: block;
  width: 100%;
  height: 100%;
}
.staff-interview .staff__link:hover {
  opacity: 1;
}
.staff-interview .staff__link:hover .staff__texts-bg {
  opacity: 1;
  filter: contrast(0.6);
}
.staff-interview .staff__title {
  position: absolute;
  transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
  line-height: 1.59;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.5vw;
}
@media (width < 768px) {
  .staff-interview .staff__title {
    top: 34%;
    font-size: 6vw;
    line-height: 1.6;
    letter-spacing: 0.28em;
  }
}
.staff-interview .staff__title .staff__title__inner {
  position: relative;
}
.staff-interview .staff__title .staff__title__inner h2 {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.5vw;
}
.staff-interview .staff__title .staff__title__inner h2 .close{
  position: relative;
}
.staff-interview .staff__title .staff__title__inner h2 .close:before{
  position: absolute;
  content: "”";
  bottom: -.8em;
  right: -.8em;
}
@media (width < 768px) {
  .staff-interview .staff__title .staff__title__inner h2 {
    font-size: 6vw;
    line-height: 1.6;
    letter-spacing: 0.28em;
  }
}
.staff-interview .staff__title .staff__title__inner::before {
  position: absolute;
  content: "“";
  left: -30px;
  top: -20px;
}
@media (width < 768px) {
  .staff-interview .staff__title .staff__title__inner::before {
    left: -24px;
    top: -5px;
    font-size: 7.4666666667vw;
  }
}
/*.staff-interview .staff__title .staff__title__inner::after {
  position: absolute;
  content: "”";
  right: -18px;
  bottom: -25px;
}
@media (width < 768px) {
  .staff-interview .staff__title .staff__title__inner::after {
    right: -22px;
    bottom: -20px;
    font-size: 7.4666666667vw;
  }
}
.staff-interview .staff1 .staff__title__inner::after,
.staff-interview .staff4 .staff__title__inner::after {
  right: 5px;
}*/
.staff-interview .staff__title.staff__title-right {
  top: 45%;
}
@media (width < 768px) {
  .staff-interview .staff__title.staff__title-right {
    top: 22.5%;
    right: -12.5%;
  }
}
.staff-interview .staff__title.staff__title-left {
  top: 41%;
  right: 40.8%;
}
@media (width < 768px) {
  .staff-interview .staff__title.staff__title-left {
    top: 22.5%;
    right: -12.5%;
  }
}
.staff-interview .staff1 .staff__title {
  right: -9.2%;
}
@media (width < 768px) {
  .staff-interview .staff1 .staff__title {
    right: -36.5%;
  }
}
.staff-interview .staff3 .staff__title {
  right: -11.4%;
}
@media (width < 768px) {
  .staff-interview .staff3 .staff__title {
    right: -22.5%;
  }
}
@media (width < 768px) {
  .staff-interview .staff4 .staff__title {
    top: 22.5%;
    right: -22.5%;
  }
}
.staff-interview .staff5 .staff__title {
  right: -18%;
}
@media (width < 768px) {
  .staff-interview .staff5 .staff__title {
    right: -47.5%;
  }
}
.staff-interview .staff6 .staff__title {
  right: 26%;
}
@media (width < 768px) {
  .staff-interview .staff6 .staff__title {
    right: -47.5%;
  }
}
.staff-interview .staff__texts {
  padding-left: 42px;
  position: absolute;
  color: var(--color-white);
  background-color: var(--color-black);
  width: 58.0357142857%;
  height: 6.25vw;
  bottom: -3.125vw;
}
@media (width < 768px) {
  .staff-interview .staff__texts {
    padding-left: 7.4666666667%;
    width: 96.9230769231%;
    height: 24vw;
    bottom: -12vw;
  }
}
.staff-interview .staff__texts-right {
  right: 0;
}
.staff-interview .staff__texts-left {
  left: 0;
}
@media (width < 768px) {
  .staff-interview .staff__texts-left {
    left: initial;
    right: 0;
  }
}
.staff-interview .staff__texts-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-black);
  z-index: 0;
}
.staff-interview .staff__texts-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4vw;
  width: 100%;
  height: 100%;
}
@media (width < 768px) {
  .staff-interview .staff__texts-content {
    gap: 1vw;
  }
}
.staff-interview .staff__occupation {
  font-size: 1vw;
}
@media (width < 768px) {
  .staff-interview .staff__occupation {
    font-size: 4.2666666667vw;
  }
}
.staff-interview .staff__text {
  display: flex;
  align-items: end;
  letter-spacing: 0.12em;
}
.staff-interview .staff__name {
  font-size: 1.25vw;
}
@media (width < 768px) {
  .staff-interview .staff__name {
    font-size: 4.2666666667vw;
  }
}
.staff-interview .staff__change {
  font-size: 0.875vw;
  margin-left: 3.5%;
}
@media (width < 768px) {
  .staff-interview .staff__change {
    font-size: 3.2vw;
    margin-left: 6%;
  }
}
@media (width < 768px) {
  .staff-interview .btn__arrow {
    right: 2.9vw;
  }
}
.staff-interview .staff a:hover .btn__arrow span::before {
  left: 34px;
}
.staff-interview .staff a:hover .btn__arrow span::after {
  left: 0;
}

/*各セクション共通*/
@media (width < 768px) {
  .staff-interview .child-top__text-main {
    font-size: clamp(0.02rem, 0.262rem + 5vw, 3.75rem);
  }
}
.staff-interview .lower-main {
  padding-bottom: 160px;
}
@media (width < 768px) {
  .staff-interview .lower-main {
    padding-bottom: 60px;
  }
}
.staff-interview .staff {
  margin-top: 128px;
}
@media (width < 768px) {
  .staff-interview .staff {
    margin-top: 22.4vw;
  }
}
.staff-interview .staff.staff1 {
  margin-top: 70px;
}
@media (width < 768px) {
  .staff-interview .staff.staff1 {
    margin-top: 10.6666666667vw;
  }
}
.staff-interview .btn-area {
  margin-top: 150px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width < 768px) {
  .staff-interview .btn-area {
    margin-top: 33.3333333333vw;
    width: 100%;
  }
}
@media (width < 768px) {
  .staff-interview .btn-area.md-none {
    display: none;
  }
}
@media (width < 768px) {
  .staff-interview .btn-area .btn {
    max-width: initial;
  }
}
@media (width < 768px) {
  .staff-interview .btn-area .btn a {
    height: 21.8666vw;
  }
}
@media (width < 768px) {
  .staff-interview .btn-area .btn__arrow {
    right: 5vw;
  }
}

/*staff-detailページ*/
.staff-detail .sub-menu {
  margin-top: 64px;
}
@media (width < 768px) {
  .staff-detail .sub-menu {
    margin-top: 40px;
  }
  .staff-detail .sub-menu .sub-menu__item {
    line-height: 1.7;
    height: 100%;
  }
}
.staff-detail .interview {
  margin-top: 132px;
}
@media (width < 768px) {
  .staff-detail .interview {
    margin-top: 78px;
  }
}
.staff-detail .interview .lower-main {
  padding-bottom: 100px;
}
@media (width < 768px) {
  .staff-detail .interview .lower-main {
    padding-bottom: 91px;
  }
}
.staff-detail .interview .btn-area {
  margin-top: 94px;
}
@media (width < 768px) {
  .staff-detail .interview .btn-area {
    margin-top: 78px;
  }
}

.staff-interview-top::after {
  content: "INTERVIEW";
  font-size: 12vw;
}
@media (width < 768px) {
  .staff-interview-top::after {
    font-size: 13.3333333333vw;
    top: 48%;
  }
}

.staff-detail .staff {
  position: relative;
  width: 100%;
  height: 50vw;
  aspect-ratio: 1600/800;
  overflow-x: hidden;
  margin-top: 0;
}
@media (width < 1026px) {
  .staff-detail .staff {
    overflow: initial;
    margin-top: 0 !important;
    width: 100%;
    height: 106.6666666667vw;
    aspect-ratio: 1500/1600;
    margin-bottom: 70%;
  }
}
@media (width < 768px) {
  .staff-detail .staff {
    margin-bottom: 78.1333333333%;
  }
}
.staff-detail .staff1 {
  background-image: url(/recruit/career/staff-interview/service-engineer_k/img/staff_k_mv.webp);
}
@media (width < 1026px) {
  .staff-detail .staff1 {
    background-image: url(/recruit/career/staff-interview/service-engineer_k/img/staff_k_mv-sp.webp);
  }
}
.staff-detail .staff2 {
  background-image: url(/recruit/career/staff-interview/sales_y/img/sales_y_mv.webp);
}
@media (width < 1026px) {
  .staff-detail .staff2 {
    background-image: url(/recruit/career/staff-interview/sales_y/img/sales_y_mv-sp.webp);
  }
}
.staff-detail .staff3 {
  background-image: url(/recruit/career/staff-interview/service-engineer_o/img/staff_o_mv.webp);
}
@media (width < 1026px) {
  .staff-detail .staff3 {
    background-image: url(/recruit/career/staff-interview/service-engineer_o/img/staff_o_mv-sp.webp);
  }
}
.staff-detail .staff4 {
  background-image: url(/recruit/career/staff-interview/service-engineer_y/img/staff_y_mv.webp);
}
@media (width < 1026px) {
  .staff-detail .staff4 {
    background-image: url(/recruit/career/staff-interview/service-engineer_y/img/staff_y_mv-sp.webp);
  }
}
.staff-detail .staff5 {
  background-image: url(/recruit/career/staff-interview/product-management_y/img/staff_y_mv.webp);
}
@media (width < 1026px) {
  .staff-detail .staff5 {
    background-image: url(/recruit/career/staff-interview/product-management_y/img/staff_y_mv.webp);
    background-position: right 20% center;
  }
}
.staff-detail .staff6 {
  background-image: url(/recruit/career/staff-interview/product_t/img/staff_t_mv.webp);
}
@media (width < 1026px) {
  .staff-detail .staff6 {
    background-image: url(/recruit/career/staff-interview/product_t/img/staff_t_mv.webp);
    background-position: right 20% center;
  }
}
.staff-detail .staff__text_container {
  position: absolute;
  top: 47.5%;
  right: -32%;
  translate: -50% -50%;
  color: var(--color-white);
  width: 50% !important;
}
@media (width < 1026px) {
  .staff-detail .staff__text_container {
    padding-inline: 11.3333333333vw;
    color: var(--color-black);
    transform: none;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    translate: none;
    bottom: -55vw;
    z-index: 10;
    width: 100% !important;
  }
}
@media (width < 768px) {
  .staff-detail .staff__text_container {
    bottom: -66.6666666667vw;
  }
}
.staff-detail .staff2 .staff__text_container {
  left: 32.7%;
}
.staff-detail .staff4 .staff__text_container {
  left: 32.7%;
  color: var(--color-black);
}
.staff-detail .staff5 .staff__text_container {
  right: auto;
  left: 32.7%;
}
.staff-detail .staff6 .staff__text_container {
  right: auto;
  left: 32.7%;
}
.staff-detail .staff__title {
  position: initial;
  transform: initial;
  margin-block: 10px;
  margin-inline: 2.8125vw;
}
@media (width < 1026px) {
  .staff-detail .staff__title {
    margin: 10px 0px;
  }
}
.staff-detail.staff-interview .staff__title__inner {
  margin-left: -0.5vw;
}
@media (width < 1026px) {
  .staff-detail.staff-interview .staff__title__inner {
    margin-left: 0;
  }
}
.staff-detail.staff-interview .staff__title__inner h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(31.5px, 2.625vw, 42px);
  line-height: 1.9;
  letter-spacing: 0.01em;
}
@media (width < 1026px) {
  .staff-detail.staff-interview .staff__title__inner h2 {
    font-size: min(6.5vw, 56px);
    letter-spacing: 0.02em;
  }
}
.staff-detail.staff-interview .staff__title__inner::before, .staff-detail.staff-interview .staff__title__inner::after {
  display: none;
}
.staff-detail .title__before {
  position: absolute;
  content: "";
  left: -2.375vw;
  top: -1vw;
  font-size: 2.875vw;
}
@media (width < 1026px) {
  .staff-detail .title__before {
    font-size: 32px;
    top: -4px;
    left: -20px;
  }
}
.staff-detail .title__after {
  position: relative;
  content: "";
  right: 0em;
  bottom: -2.5vw;
  font-size: 2.875vw;
}
@media (width < 1026px) {
  .staff-detail .title__after {
    font-size: 32px;
    right: 0;
    bottom: -20px;
  }
}
.staff-detail .staff__texts-content {
  margin-inline: 2.3125vw;
}
@media (width < 1026px) {
  .staff-detail .staff__texts-content {
    margin-inline: 0;
  }
}
.staff-detail .staff__texts-content .staff__occupation {
  margin-top: 2.375vw;
  font-size: clamp(12px, 1vw, 16px);
  letter-spacing: 0.25em;
}
@media (width < 1026px) {
  .staff-detail .staff__texts-content .staff__occupation {
    margin-top: 10px;
    letter-spacing: -0.05em;
    font-size: min(4.266vw, 28px);
  }
}
.staff-detail .staff__texts-content .staff__text {
  margin-top: 0.625vw;
  letter-spacing: 0.18em;
}
@media (width < 1026px) {
  .staff-detail .staff__texts-content .staff__text {
    margin-top: 4px;
  }
}
.staff-detail .staff__texts-content .staff__name {
  font-size: clamp(18px, 1.5vw, 24px);
}
@media (width < 1026px) {
  .staff-detail .staff__texts-content .staff__name {
    font-size: min(5.5vw, 40px);
  }
}
.staff-detail .staff__texts-content .staff__change {
  margin-left: 1.8%;
  font-size: clamp(10.5px, 0.875vw, 14px);
}
@media (width < 1026px) {
  .staff-detail .staff__texts-content .staff__change {
    margin-left: 5.8%;
    letter-spacing: 0.13em;
    padding-bottom: 4px;
    font-size: min(3.2vw, 24px);
  }
}
.staff-detail .char {
  opacity: 0;
  display: inline-block;
  animation: slideIn 0.5s forwards;
}
@media (width < 1026px) {
  .staff-detail .char {
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.staff-detail .char-00 {
  animation-delay: 0.5s;
}
.staff-detail .char-1 {
  animation-delay: 0.6s;
}
.staff-detail .char-2 {
  animation-delay: 0.7s;
}
.staff-detail .char-3 {
  animation-delay: 0.8s;
}
.staff-detail .char-4 {
  animation-delay: 0.9s;
}
.staff-detail .char-5 {
  animation-delay: 1s;
}
.staff-detail .char-6 {
  animation-delay: 1.1s;
}
.staff-detail .char-7 {
  animation-delay: 1.2s;
}
.staff-detail .char-8 {
  animation-delay: 1.3s;
}
.staff-detail .char-9 {
  animation-delay: 1.4s;
}
.staff-detail .char-10 {
  animation-delay: 1.5s;
}
.staff-detail .char-11 {
  animation-delay: 1.6s;
}
.staff-detail .char-12 {
  animation-delay: 1.7s;
}
.staff-detail .char-13 {
  animation-delay: 1.8s;
}
.staff-detail .char-14 {
  animation-delay: 1.9s;
}
.staff-detail .char-15 {
  animation-delay: 2s;
}
.staff-detail .char-16 {
  animation-delay: 2.1s;
}
.staff-detail .char-17 {
  animation-delay: 2.2s;
}
.staff-detail .char-18 {
  animation-delay: 2.3s;
}
.staff-detail .char-19 {
  animation-delay: 2.4s;
}
.staff-detail .char-20 {
  animation-delay: 2.5s;
}
.staff-detail .char-21 {
  animation-delay: 2.6s;
}
.staff-detail .char-22 {
  animation-delay: 2.7s;
}
.staff-detail .char-23 {
  animation-delay: 2.8s;
}
.staff-detail .char-24 {
  animation-delay: 2.9s;
}
.staff-detail .char-25 {
  animation-delay: 3.0s;
}
.staff-detail .char-26 {
  animation-delay: 3.1s;
}
.staff-detail .char-27 {
  animation-delay: 3.2s;
}
.staff-detail .char-28 {
  animation-delay: 3.3s;
}
.staff-detail .char-29 {
  animation-delay: 3.4s;
}
.staff-detail .char-30 {
  animation-delay: 3.5s;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.staff-detail .sub-menu .sub-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 5px;
}

.interview__top {
  position: relative;
}
@media (width < 1026px) {
  .interview__top {
    background-color: var(--color-platinumgray);
    padding-bottom: 32px;
  }
}
@media (width < 1026px) {
  .interview__top .lower-inner {
    width: 86.6666vw;
    margin-inline: auto;
    padding-inline: 0;
  }
}
.interview__top .interview__top-title {
  display: block;
  position: absolute;
  z-index: 3;
  top: -140px;
  left: 50%;
  translate: -50% 0;
  padding-top: 50px;
  width: 85vw;
  background-color: var(--color-white);
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.06em;
}
@media (width < 1026px) {
  .interview__top .interview__top-title {
    position: relative;
    translate: none;
    top: auto;
    left: auto;
    background-color: initial;
    font-size: 4.8vw;
    padding-top: 38px;
  }
}
.interview__top .staff__before-after {
  margin-top: 90px;
  display: flex;
}
@media (width < 768px) {
  .interview__top .staff__before-after {
    flex-direction: column;
    margin-top: 28px;
  }
}
.interview__top .slide__text--before, .interview__top .slide__text--after {
  width: 560px;
  height: 80px;
}
@media (width < 768px) {
  .interview__top .slide__text--before, .interview__top .slide__text--after {
    width: 225px;
  }
}
.interview__top .slide__text--before {
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: center;
  width: 50%;
}
@media (width < 768px) {
  .interview__top .slide__text--before {
    height: 21.3333333333vw;
    width: 100%;
    font-size: 16px;
  }
}
.interview__top .slide__text--before::before {
  position: absolute;
  content: "BEFORE";
  writing-mode: vertical;
  left: 4px;
  top: 50%;
  translate: 0 -50%;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: -0.02em;
}
.interview__top .slide__text--before::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  translate: 0 -50%;
  right: -8px;
  width: 8px;
  height: 10px;
  background-color: var(--color-black);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
}
@media (width < 768px) {
  .interview__top .slide__text--before::after {
    left: 50%;
    translate: -50% 0;
    bottom: -2.9333333333vw;
    top: auto;
    width: 4vw;
    height: 3.3333333333vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.interview__top .slide__text--after {
  background-color: var(--color-platinumgray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-align: center;
  width: 50%;
}
@media (width < 1026px) {
  .interview__top .slide__text--after {
    background-color: var(--color-white);
  }
}
@media (width < 768px) {
  .interview__top .slide__text--after {
    height: 21.3333333333vw;
    width: 100%;
    font-size: 16px;
  }
}
.interview__top .slide__text--after::after {
  position: absolute;
  content: "AFTER";
  writing-mode: vertical;
  right: 4px;
  top: 50%;
  translate: 0 -50%;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: -0.02em;
}
.interview__top .section-lead {
  text-align: left;
  margin-top: 34px;
  line-height: 1.9;
}
@media (width < 768px) {
  .interview__top .section-lead {
    margin-top: 30px;
    line-height: 2;
  }
}

.interview__detail {
  margin-top: 132px;
}
@media (width < 768px) {
  .interview__detail {
    margin-top: 72px;
  }
}
.interview__detail.interview__01 {
  margin-top: 110px;
}
@media (width < 768px) {
  .interview__detail.interview__01 {
    margin-top: 72px;
  }
}
.interview__detail .interview__title {
  display: flex;
}
@media (width < 1026px) {
  .interview__detail .interview__title {
    flex-direction: column;
  }
}
.interview__detail .interview__title__left {
  border-left: 5px solid var(--color-black);
  border-right: 3px solid var(--color-platinumgray);
  padding-left: 3.5714285714%;
  padding-right: 0.8928571429%;
  width: 18%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (width < 1026px) {
  .interview__detail .interview__title__left {
    flex-direction: row;
    width: 100%;
    justify-content: start;
    border-inline: none;
    padding-left: 0;
    gap: 16px;
    align-items: end;
  }
}
.interview__detail .interview__title__left h3 {
  font-size: max(0.875vw, 14px);
  font-family: var(--regular-family);
}
@media (width < 1026px) {
  .interview__detail .interview__title__left h3 {
    font-size: clamp(14px, 3.2vw, 28px);
    display: flex;
    margin-top: 3px;
    letter-spacing: 0.01em;
  }
}
.interview__detail.interview__01 .interview__title__left img {
  width: 2.375vw;
  height: 1.875vw;
}
@media (width < 1026px) {
  .interview__detail.interview__01 .interview__title__left img {
    width: 5.0666666667vw;
    height: 4vw;
    max-width: 38px;
    max-height: 30px;
  }
}
.interview__detail.interview__02 .interview__title__left img, .interview__detail.interview__03 .interview__title__left img {
  width: 2.90625vw;
  height: 1.875vw;
}
@media (width < 1026px) {
  .interview__detail.interview__02 .interview__title__left img, .interview__detail.interview__03 .interview__title__left img {
    width: 6.2vw;
    height: 4vw;
    max-width: 46.5px;
    max-height: 30px;
  }
}
.interview__detail.interview__04 .interview__title__left img {
  width: 2.9375vw;
  height: 1.875vw;
}
@media (width < 1026px) {
  .interview__detail.interview__04 .interview__title__left img {
    width: 6.2666666667vw;
    height: 4vw;
    max-width: 47px;
    max-height: 30px;
  }
}
.interview__detail .interview__title__right {
  padding-left: 5.3571428571%;
  font-size: 2vw;
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin-top: -5px;
}
@media (width < 1026px) {
  .interview__detail .interview__title__right {
    margin-top: 20px;
    border-left: 5px solid var(--color-black);
    font-size: clamp(12px, 5.9vw, 32px);
    line-height: 1.6;
  }
}
.interview__detail .interview__img {
  margin-top: 58px;
}
.interview__detail .interview__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 2240/1240;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width < 768px) {
  .interview__detail .interview__img {
    margin-top: 32px;
  }
}
.interview__detail .interview__img2 {
  display: flex;
  gap: 10px;
  justify-content: space-around;
}
@media (width < 768px) {
  .interview__detail .interview__img2 {
    flex-direction: column;
  }
}
.interview__detail .interview__img2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1112/800;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__detail .interview__img2 .interview__img2-1,
.interview__detail .interview__img2 .interview__img2-2 {
  position: relative;
}
.interview__detail .interview__img2 .interview__img2-1::before,
.interview__detail .interview__img2 .interview__img2-2::after {
  position: relative;
}
.interview__detail .interview__img2 .interview__img2-1::before,
.interview__detail .interview__img2 .interview__img2-2::after {
  position: absolute;
  width: 2.5vw;
  height: 3.75vw;
  top: 0;
  writing-mode: vertical-rl;
  font-size: 1vw;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 768px) {
  .interview__detail .interview__img2 .interview__img2-1::before,
  .interview__detail .interview__img2 .interview__img2-2::after {
    width: 5.3333333333vw;
    height: 8vw;
    font-size: 2.1333333333vw;
  }
}
.interview__detail .interview__img2 .interview__img2-1::before {
  content: "ON";
  color: var(--color-white);
  left: 0;
  background-color: var(--color-black);
}
.interview__detail .interview__img2 .interview__img2-2::after {
  content: "OFF";
  right: 0;
  background-color: var(--color-platinumgray);
}
.interview__detail .interview__content {
  margin-top: 42px;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (width < 768px) {
  .interview__detail .interview__content {
    margin-top: 30px;
  }
}
.interview__detail .interview__content p:not(:first-child) {
  margin-top: 32px;
}

.career-path {
  margin-top: 132px;
  /* カスタムスクロールバー */
}
@media (width < 768px) {
  .career-path {
    margin-top: 72px;
  }
}
.career-path h3 {
  border-left: 5px solid var(--color-black);
  font-family: var(--regular-family);
  padding-left: 4.0178571429%;
  font-size: 32px;
}
@media (width < 768px) {
  .career-path h3 {
    font-size: 6.4vw;
    padding-left: 6%;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
}
.career-path .career-history {
  position: relative;
  margin-top: 54px;
  margin-inline: calc(15vw - 10px);
  padding-inline: 10px;
  width: calc(70vw + 20px);
  overflow-x: auto; /* ← 横スクロール追加 */
  overflow-y: hidden; /* ← 縦スクロール無効 */
  padding-bottom: 20px; /* カスタムスクロールバーの表示スペース */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.career-path .career-history::-webkit-scrollbar {
  display: none;
}
@media (width < 768px) {
  .career-path .career-history {
    margin-top: 40px;
    padding-bottom: 15px;
    padding-left: 0;
    margin-left: 6.6667vw;
    width: 93.3333vw;
  }
}
.career-path .cards {
  display: flex;
  gap: 50px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 25px;
}
@media (width < 768px) {
  .career-path .cards {
    gap: 34px;
    margin-right: 6.6667vw;
    padding-right: 0;
  }
}
.career-path .card {
  position: relative;
  width: 300px;
}
.career-path .card:not(:last-child):after {
  position: absolute;
  z-index: 1;
  top: 50%;
  translate: 0 -50%;
  right: -27px;
  width: 12px;
  height: 20px;
  background-color: var(--color-black);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
}
.career-path .card__year {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black);
  height: 64px;
  color: var(--color-white);
  border-radius: 12px 12px 0 0;
}
@media (width < 768px) {
  .career-path .card__year {
    border-radius: 8px 8px 0 0;
  }
}
.career-path .card__career {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-platinumgray);
  height: 74px;
  text-align: center;
}
.career-path .card__text {
  height: 222px;
  padding: 22px 35px;
  border-radius: 0 0 12px 12px;
  border: 2px solid var(--color-platinumgray);
  line-height: 2;
}
@media (width < 768px) {
  .career-path .card__text {
    border-radius: 0 0 8px 8px;
  }
}
.career-path .custom-scrollbar {
  display: none;
  position: absolute;
  bottom: 0;
  left: 10px;
  height: 4px;
  width: 100%;
  overflow: hidden;
  z-index: 10;
  margin-right: calc(15vw - 10px);
}
@media (width < 1415px) {
  .career-path .custom-scrollbar {
    display: block;
  }
}
@media (width < 768px) {
  .career-path .custom-scrollbar {
    left: 0;
    margin-right: 0;
  }
}
.career-path .custom-scrollbar .thumb {
  position: absolute;
  width: 100px;
  height: 100%;
  cursor: grab;
  background-color: var(--color-black);
}
@media (width < 768px) {
  .career-path .custom-scrollbar .thumb {
    width: 19vw;
  }
}
.career-path .btn-area {
  margin-top: 54px;
}
@media (width < 768px) {
  .career-path .btn-area {
    margin-top: 78px;
  }
}