@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=YuMincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quattrocento&display=swap');


/* 202501リニューアル */
.contents img {
  width: 100%;
}

/* Header Layout */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  height: 80px;
}

.header__logo {
  width: 142px;
}

.header__inner-left {
  display: flex;
  align-items: center;
  column-gap: 23px;
  height: inherit;
}

.header__inner-right {
  display: flex;
  align-items: center;
  column-gap: 42px;
  height: inherit;
}

.header__inner-left span {
  font-size: 11px;
}

.header__menu {
  position: relative;
  margin-right: 20px;
}

/* Menu Button */
.header__menu {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 10px;
  font-weight: bold;
  color: #333;
}

/* Drawer Menu */
.header__menu-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

/* p-sp-nav */
.p-sp-nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #d3a07e;
  background-color: #fff;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding-top: 96px;
  padding-top: 6rem;
  opacity: 0;
  visibility: hidden;
}

.p-sp-nav__items {
  width: 100%;
}

.p-sp-nav__item {
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: "Quattrocento", serif;
  list-style: none;
}

.p-sp-nav__item a {
  display: inline-block;
  white-space: nowrap;
  color: #d3a07e;
  padding: 14px 30px;
  text-transform: uppercase;
}

.p-sp-nav.active {
  top: 80px;
  opacity: 1;
  visibility: visible;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 10px;
}


.header__menu-bar:last-child {
  border-bottom: none;
}

.header__menu-button {
  display: grid;
  place-content: center;
  font-size: 12px;
}

.header__contact-button {
  display: flex;
  align-items: center;
  column-gap: 10px;
  background-color: #d3a07e;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  padding: 30px 20px;
  transition: background-color 0.3s ease;
}

.header__contact-button:hover {
  background-color: #b07a5d;
}

.header__contact-icon img {
  width: 22PX;
}

.p-header__hamburger {
  width: 28px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.p-header__hamburger span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: #2C2D2D;
  border-radius: 5px;
  transition: 0.3s ease;
}

.p-header__hamburger span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.p-header__hamburger span:nth-child(2) {
  position: absolute;
  top: 45%;
  left: 0;
}

.p-header__hamburger span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ハンバーガーメニューを押すと×になる動き*/
/*activeクラスを付ける*/
.p-header__hamburger.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
  transition: 0.3s;
  top: 5px;
}

.p-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
  transition: 0.3s;
}

.p-header__hamburger.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
  transition: 0.3s;
  top: 17px;
}

body.is-hidden {
  position: fixed;
  overflow: hidden;
}

/* スライダー */
/* ベーススタイル */
.slider {
  display: flex;
  /* max-width: 88.5%; */
  width: 100%;
  margin-left: auto;
  padding-bottom: 80px;
  position: relative;
  margin-right: calc(50% - 50vw);
}

.slider::before {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E6DED9;
  z-index: 1;
  bottom: 14px;
  left: 9%;
}

.slider__item {
  margin-right: clamp(0.625rem, -0.057rem + 3.41vw, 2.5rem);
}

.slider__image img {
  width: 100%;
  height: auto;
}

.slider__content {
  margin-top: 15px;
  position: relative;
  /* display: flex;
  column-gap: 18px; */
}

.slider__title {
  position: relative;
  /* font-size: 1.8rem; */
  color: #333;
  line-height: calc(31 / 18);
  letter-spacing: 0.12em;
  font-family: 'YuMincho', serif;
  /* padding-left: clamp(0.625rem, -0.057rem + 3.41vw, 2.5rem);  */
  padding-left: 40px;
}

.slider__title--01::before {
  content: "01";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: #C3967A;
  z-index: 1;
}

.slider__title--02::before {
  content: "02";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: #C3967A;
  z-index: 1;
}

.slider__title--03::before {
  content: "03";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: #C3967A;
  z-index: 1;
}

.slider__title--04::before {
  content: "04";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: #C3967A;
  z-index: 1;
}

.slider__title--05::before {
  content: "05";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  color: #C3967A;
  z-index: 1;
}

.slider__title--01::after,
.slider__title--02::after,
.slider__title--03::after,
.slider__title--04::after,
.slider__title--05::after {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  top: 23px;
  left: 0;
  background-color: #E6DED9;
  z-index: -1;
}

.slider__title__top,
.slider__title__bottom {
  position: relative;
  display: block;
  width: 100%;
  font-size: clamp(1.8rem, 1.391rem + 0.55vw, 1.8rem);
}

.slider__title__top::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 7px;
  background-color: #E6DED9;
  z-index: -1;
}

.slider__title__bottom {
  position: absolute;
  top: 35px;
}

.slider__title__bottom::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  right: 40px;
  bottom: 7px;
  background-color: #E6DED9;
  z-index: -1;
}

.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  width: 30px;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  left: 20%;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before {
  content: '←';
}

.slick-next:before {
  content: '→';
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  /*黒にする*/
  opacity: 1;
  /*デフォルトは.75が指定されている*/
}


/*  company スライダー */
.slider-company .slider__item {
  margin-right: 0;
}

.company {
  padding-bottom: 100px;
  position: relative;
}

.company__title {
  position: absolute;
  top: 0;
  left: 10%;
  width: 290px;
  z-index: 1;
}

.company__slider {
  background-color: #E6DED9;
  padding-top: 80px;
  padding-bottom: 70px;
  position: relative;
  z-index: 0;
}

.company__slider::before {
  position: absolute;
  display: block;
  content: "";
  width: 200px;
  height: 55px;
  background-image: url(../image/logo_white.svg);
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.company__inner {
  margin-top: 100px;
  padding-left: 30px;
  max-width: 83.5%;
  margin-left: auto;
}

.company .faq-title {
  color: #C3967A;
  font-size: 20px;
  font-family: 'YuMincho', serif;
  font-weight: 500;
  position: relative;
  z-index: 0;
}

.company .faq-title::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E6DED9;
  z-index: -1;
  bottom: 7px;
}

.company .faq-list {
  margin-top: 60px;
}

.company .faq-item span {
  color: #C3967A;
  font-family: "Quattrocento", serif;
  display: inline-block;
  font-size: 20px;
  width: 3%;
}

.company .faq-item dt,
.company .faq-item dd {
  display: flex;
  column-gap: 10px;
}

.company .faq-item dt {
  position: relative;
}

.company .faq-item dt::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E6DED9;
  z-index: -1;
  bottom: 16px;
}

.company .faq-item+.faq-item {
  margin-top: 43px;
}

.company .faq-item__question {
  font-size: 18px;
  font-family: 'YuMincho', serif;
  font-weight: 500;
  line-height: calc(28/16);
}

.company .faq-item__answer {
  font-size: 13px;
  font-family: "Noto Sans JP", serif;
  line-height: calc(24/13);
}


.company .company__btn {
  margin-top: 45px;
}

.btn-main {
  color: #fff;
  background-color: #C3967A;
  border: 1px solid #C3967A;
  padding: 16px 40px;
  transform: all .3s;
}

.btn-main:hover {
  color: #fff;
  opacity: .8;
}

.member {
  padding-bottom: 180px;
}

/* ベーススタイル */
.profile {
  position: relative;
  max-width: 1150px;
  margin-inline: auto;
  padding: 0 20px;
}

.profile::before {
  position: absolute;
  display: block;
  content: "";
  width: 130%;
  height: 1px;
  background-color: #E6DED9;
  z-index: 1;
  left: 20px;
}

.profile+.profile {
  margin-top: 56px;
}

.profile__inner {
  display: flex;
  align-items: flex-start;
  gap: 43px 80px;
}

.profile__inner.inner {
  padding-left: 0;
  padding-right: 0;
}

.profile__image {
  max-width: 40%;
}

.profile__image img {
  max-width: 100%;
  height: auto;
}

.profile__content {
  flex: 1;
  margin-top: 52px;
}

.profile__title {
  font-size: 2.5rem;
  font-family: 'YuMincho', serif;
  line-height: calc(52/25);
  letter-spacing: .1em;
  position: relative;
  display: inline-block;
}

.profile__title::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E6DED9;
  z-index: -1;
  left: 0;
  bottom: 12px;
}

.profile__role {
  font-family: 'YuMincho', serif;
  font-size: 1.3rem;
}

.profile__name {
  font-family: 'YuMincho', serif;
  font-size: 1.8rem;
  line-height: calc(31/18);
}

.profile__career {
  color: #C3967A;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
}

.profile__link {
  display: inline-flex;
  align-items: center;
  font-family: yu-gothic-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
  gap: 10px;
  padding: 0;
  font-size: 1.4rem;
  color: #C3967A;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.profile__link--movie {
  text-decoration: underline;
}

.profile__link-icon {
  width: 19px;
}

.profile__link--accordion {
  margin-top: 10px;
}

.profile__accordion-content {
  max-height: 0;
  /* 初期状態では非表示 */
  opacity: 0;
  /* 非表示時の透明度 */
  overflow: hidden;
  /* コンテンツがはみ出さないようにする */
  transition: max-height 0.3s ease, opacity 0.3s ease;
  /* トランジションを設定 */
}

.profile__accordion-content.is-visible {
  max-height: max-content;
  /* 十分大きな高さに設定（コンテンツの高さに合わせる） */
  opacity: 1;
  /* 表示時の透明度 */
}

.interview {
  display: flex;
  align-items: flex-start;
  gap: 40px 80px;
  margin-top: 50px;
}

.interview__image {
  max-width: 38%;
  width: 100%;
}

.interview__image img {
  width: 100%;
  height: auto;
  display: block;
}

.interview__content {
  max-width: 40%;
}

.interview__title {
  color: #C3967A;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Quattrocento", serif;
  font-weight: 400;
}

.interview__section+.interview__section {
  margin-top: 44px;
}

.interview__heading {
  font-size: 1.6rem;
  font-weight: medium;
  font-family: 'YuMincho', serif;
  color: #C3967A;
  margin-bottom: 10px;
  position: relative;
}

.interview__heading::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E6DED9;
  z-index: 1;
  left: 0;
  bottom: 4px;
}

.interview__text {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", serif;
  line-height: calc(24/13);
  letter-spacing: .01em;
  color: #333;
  margin-top: 20px;
}

/* ベース */
.footer {
  background-color: #c09476;
  padding: 64px 20px 27px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", serif;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__logo-image {
  max-width: 200px;
}

.footer__links {
  margin-bottom: 50px;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  margin: 0 5px;
}

.footer__separator {
  margin: 0 5px;
  color: #fff;
}

.footer__copyright {
  font-size: 14px;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }

  .header__logo {
    width: 125px;
  }

  .header__inner-left {
    display: grid;
  }

  .header__inner-left span {
    font-size: 10px;
  }

  .header__inner-right {
    column-gap: 6px;
  }

  .header__menu-wrap {
    display: grid;
    gap: 0;
  }

  .p-header__nav {
    display: block;
  }

  .p-sp-nav.active {
    /* -webkit-transform: translateX(20%);
    transform: translateX(20%); */
    top: 70px;
  }

  .header__menu-button {
    display: grid;
    place-content: center;
    font-size: 10px;
  }

  .header__contact-button {
    width: 70px;
    height: 70px;
    display: grid;
    place-content: center;
    gap: 0;
    padding: 14px 9px;
  }

  .header__contact-icon {
    text-align: center;
  }

  .p-header__nav.hidden {
    display: none;
  }

  .slider {
    max-width: 100%;
    margin-left: 0;
  }

  .slider::before {
    bottom: 11px;
    left: 10%;
  }

  .slider__title {
    font-weight: normal;
  }

  .slide-arrow {
    width: 22px;
  }

  .next-arrow {
    left: 25%;
  }


  .profile+.profile {
    margin-top: 50px;
  }

  .profile__inner {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .profile__image {
    max-width: 92%;
    margin-right: auto;
  }

  .profile__content {
    max-width: initial;
    width: 100%;
    padding: 0 30px;
    margin-top: 0;
  }

  .profile__title {
    font-size: 2rem;
    display: block;
  }

  .interview {
    flex-direction: column;
    margin: 20px 0;
  }

  .interview__image {
    max-width: 92%;
    margin-left: auto;
  }

  .interview__content {
    max-width: initial;
    padding: 0 0 30px 30px;
  }

  .interview__text {
    padding-right: 30px;
  }

  .company .faq-list {
    margin-top: 43px;
  }

  .company__title {
    width: 260px;
    left: 0;
  }

  .company__inner {
    margin-top: 70px;
  }

  .company__slider {
    background-color: #E6DED9;
    padding-top: 80px;
  }

  .company .faq-item__question {
    font-size: 16px;
  }

  .company .company__btn {
    margin-top: 30px;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  .slider__title--01::before,
  .slider__title--02::before,
  .slider__title--03::before,
  .slider__title--04::before,
  .slider__title--05::before {
    font-size: 1rem;
  }

  .slider__title--01::after,
  .slider__title--02::after,
  .slider__title--03::after,
  .slider__title--04::after,
  .slider__title--05::after {
    width: 3rem;
    top: 12px;
  }

  .slider__title__top,
  .slider__title__bottom {
    font-size: 1rem;
  }

  .slider__title__top::after {
    bottom: 4px;
  }

  .slider__title__bottom::after {
    bottom: 4px;
  }

  .slider__title__bottom {
    top: 20px;
  }

  .footer {
    padding: 50px 20px 40px;
  }

  .footer__logo {
    margin-bottom: 37px;
  }

  .footer__logo-image {
    max-width: 180px;
  }

  .footer__link,
  .footer__copyright {
    font-size: 12px;
  }
}