@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1919px) {
  html {
    font-size: 0.5813953488vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address, a,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  word-break: break-word;
  color: #333;
  font-family: "Noto Serif JP", serif;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

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

*, *:after, *:before {
  box-sizing: border-box;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td, a, h1, h2, h3, h4, h5, h6,
input, button, textarea, select {
  font-size: 1.8rem;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td, a, h1, h2, h3, h4, h5, h6,
  input, button, textarea, select {
    font-size: 1.4rem;
  }
}

html.is-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 128rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
}
.l-wrap.-l {
  max-width: 168rem;
}
.l-wrap.-s {
  max-width: 108rem;
}
.l-wrap.-ss {
  max-width: 96rem;
}

.l-container {
  overflow: hidden;
}
.l-container.-auto {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .l-container.-auto {
    overflow: hidden;
  }
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn {
  width: 30rem;
  height: 7.5rem;
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 25rem;
    height: 6rem;
  }
}
.c-btn::after {
  background: #C99C52;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 1;
}
.c-btn:hover {
  opacity: 1;
  color: #ffffff;
}
.c-btn:hover::after {
  transform: scale(1, 1);
}
.c-btn:hover .c-btn__link {
  color: #ffffff;
}
.c-btn:hover .c-btn__link::before {
  background: url(../img/common/arrow_right_white.svg) no-repeat center center/contain;
}
.c-btn__link {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.3;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    font-size: 1.5rem;
  }
}
.c-btn__link::before {
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.8rem;
  width: 1.8rem;
  height: 1.8rem;
  z-index: 2;
  background: url(../img/common/arrow_right_gold.svg) no-repeat center center/contain;
}
.c-btn__link:active {
  transform: scale(0.95);
}
.c-btn.-gold {
  border: 1px solid #C99C52;
}
.c-btn.-center {
  margin-left: auto;
  margin-right: auto;
}

/* タイトル
--------------------------------*/
.c-secttl {
  font-size: 3.5rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-secttl {
    font-size: 2rem;
  }
}
.c-secttl--en {
  font-size: 22rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  opacity: 0.14;
  color: #CAAA7C;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .c-secttl--en {
    font-size: 9rem;
  }
}
.c-secttl--en.-white {
  color: #fff;
  opacity: 0.3;
}
.c-secttl--en.-gold {
  opacity: 0.3;
  color: #DBC59E;
}
.c-secttl.-white {
  color: #fff;
}
.c-secttl.-left {
  text-align: left;
}
.c-secttl-box {
  position: relative;
}

/* インタビューリスト
--------------------------------*/
.c-interview-list {
  max-width: 152rem;
  margin: 6rem auto 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-interview-list {
    display: block;
    gap: 3rem;
  }
}
.c-interview-list .list__item {
  background-color: #fff;
  position: relative;
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item {
    width: 100%;
  }
}
.c-interview-list .list__item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-interview-list .list__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-interview-list .list__item a:hover {
    opacity: 0.7;
  }
}
.c-interview-list .list__item__img-box {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__img-box {
    position: static;
  }
}
.c-interview-list .list__item__img-box::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #8F1D22;
  bottom: 0;
  right: 0;
}
.c-interview-list .list__item__img-box::after {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 2.2rem;
  background: url(../img/common/arrow_right_white.svg) no-repeat center center/contain;
  bottom: 1.1rem;
  right: 1.1rem;
}
.c-interview-list .list__item__img img {
  width: 100%;
  aspect-ratio: 48/29;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__img img {
    aspect-ratio: 335/230;
  }
}
.c-interview-list .list__item__body {
  padding: 2rem 1rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__body {
    padding: 2.5rem 1rem 5rem;
  }
}
.c-interview-list .list__item__flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.3rem;
}
@media screen and (max-width: 1919px) {
  .c-interview-list .list__item__flex {
    gap: 1rem;
  }
}
.c-interview-list .list__item__flex-box .list__item__name span {
  display: block;
  font-size: 1rem;
}
.c-interview-list .list__item__post {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #8F1D22;
  text-align: center;
  line-height: 1.3;
}
.c-interview-list .list__item__name {
  margin-top: 0.4rem;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
.c-interview-list .list__item__name span {
  font-size: 1.2rem;
  font-weight: 400;
}
.c-interview-list .list__item__text {
  margin-top: 2.1rem;
  font-weight: 500;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__text {
    font-size: 1.5rem;
  }
}
.c-interview-list .list__item__04 .list__item__name-box .list__item__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__04 .list__item__name-box .list__item__flex {
    gap: 0;
  }
}
.c-interview-list .list__item__04 .list__item__name-box .list__item__flex .list__item__name {
  white-space: nowrap;
}
.c-interview-list .list__item__04 .list__item__name-box .list__item__flex .list__item__name span {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__04 .list__item__name-box .list__item__flex .list__item__name span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-interview-list .list__item__04 .list__item__text {
    font-size: 1.3rem;
  }
}

/* 下層 heading
--------------------------------*/
.p-heading-01 {
  padding: 20rem 0 0;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-heading-01 {
    padding: 6.5rem 0 0;
  }
  .p-heading-01 .c-secttl {
    font-size: 2.4rem;
  }
}
.p-heading-01 .c-secttl--en {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18rem;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl--en {
    font-size: 8rem;
  }
}
.p-heading-01 .c-secttl {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl {
    font-size: 2.4rem;
  }
}
.p-heading-01 .img {
  margin-top: 16rem;
}
.p-heading-01 .img img {
  aspect-ratio: 192/43;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .img img {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-heading-01 .img {
    margin-top: 6rem;
  }
}
.p-heading-01 .text {
  background: url(../img/common/bg_mv_bottom.webp) no-repeat center center/cover;
  padding: 3.2rem 0;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 0.3rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-heading-01 .text {
    padding: 1.7rem 2.6rem;
    font-size: 1.6rem;
    background: url(../img/common/bg_mv_bottom_sp.webp) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .p-heading-01.-introduce {
    padding: 4.5rem 0 0;
  }
  .p-heading-01.-introduce .c-secttl {
    line-height: 1.8;
  }
  .p-heading-01.-introduce .img {
    margin-top: 3rem;
  }
}
.p-heading-01.-interview {
  padding: 18rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-heading-01.-interview {
    padding: 4.5rem 0 0;
  }
  .p-heading-01.-interview .c-secttl {
    line-height: 1.8;
  }
}
.p-heading-01.-interview .img {
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .p-heading-01.-interview .img {
    margin-top: 3rem;
  }
}

/* 下層 その他のコンテンツ
--------------------------------*/
.other-block {
  margin-top: 14.4rem;
}
@media screen and (max-width: 767px) {
  .other-block {
    margin-top: 8rem;
  }
}
.other-block .l-wrap {
  max-width: 137rem;
}
.other-block .title {
  font-size: 3.2rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other-block .title {
    font-size: 2rem;
  }
}
.other-block .slider {
  max-width: 143.4rem;
  margin: 2.5rem auto 0;
  display: block;
}
.other-block .slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.7rem;
  height: 5.7rem;
  left: -3rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .other-block .slider .slick-arrow {
    width: 4rem;
    height: 4rem;
    left: -1.5rem;
  }
}
.other-block .slider .slick-arrow.next-arrow {
  right: -3rem;
  left: auto;
}
@media screen and (max-width: 767px) {
  .other-block .slider .slick-arrow.next-arrow {
    right: -1.5rem;
  }
}
.other-block .slider .slick-slide {
  margin: 0 4.25rem;
  height: auto !important;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .other-block .slider .slick-slide {
    margin: 0 1rem;
  }
}
.other-block .slider .slick-track {
  display: flex;
}
.other-block .slider__item {
  background-color: #fff;
}
.other-block .slider__item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .other-block .slider__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .other-block .slider__item a:hover {
    opacity: 0.7;
  }
}
.other-block .slider__item__img {
  position: relative;
}
.other-block .slider__item__img::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #fff;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .other-block .slider__item__img::before {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.other-block .slider__item__img::after {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 2.2rem;
  background: url(../img/common/arrow_right_black_02.svg) no-repeat center center/contain;
  bottom: 1.1rem;
  right: 1.1rem;
}
@media screen and (max-width: 767px) {
  .other-block .slider__item__img::after {
    width: 1.8rem;
    height: 1.8rem;
    bottom: 0.9rem;
    right: 0.9rem;
  }
}
.other-block .slider__item__img img {
  width: 100%;
  aspect-ratio: 37/35;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .other-block .slider__item__img img {
    aspect-ratio: 335/230;
  }
}
.other-block .slider__item__title {
  background: url(../img/common/bg_other.webp) no-repeat center center/cover;
  height: 10.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .other-block .slider__item__title {
    font-size: 1.8rem;
    line-height: 1.5;
    height: 7.8rem;
  }
}
.other-block .btn {
  margin-top: 14.4rem;
}
@media screen and (max-width: 767px) {
  .other-block .btn {
    margin-top: 7rem;
  }
}
.other-block .btn a {
  margin: 0 auto;
  width: 96rem;
  height: 10rem;
  background: linear-gradient(-45deg, #8F1D22 0%, #D63A41 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2.5rem;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .other-block .btn a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .other-block .btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .other-block .btn a {
    padding-left: 0;
    width: 100%;
    height: 6rem;
    font-size: 1.4rem;
  }
}
.other-block .btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.6rem;
  width: 3.6rem;
  height: 3.5rem;
  background: url(../img/common/arrow_right_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .other-block .btn a::before {
    width: 2.8rem;
    height: 2.7rem;
  }
}

/* インタビューセクション
--------------------------------*/
.c-interview {
  margin-top: 14.4rem;
  padding: 7.2rem 0 10rem;
  background: url(../img/index/bg_interview.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .c-interview {
    margin-top: 7rem;
    padding: 1rem 0 7rem;
    background: url(../img/index/bg_interview_sp.webp) no-repeat center center/cover;
  }
  .c-interview .l-wrap {
    width: 100%;
  }
}
.c-interview .p-interview__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner {
    padding-top: 4.5rem;
  }
}
.c-interview .p-interview__inner .c-secttl {
  font-size: 4rem;
  line-height: 1.5;
  text-shadow: 1px 1px 0.2rem rgba(51, 51, 51, 0.2);
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .c-secttl {
    font-size: 2.4rem;
  }
}
.c-interview .p-interview__inner .c-secttl--en {
  top: 0;
  right: -6rem;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .c-secttl--en {
    left: 50%;
    top: -5rem;
    transform: translateX(-50%);
  }
}
.c-interview .p-interview__inner .slider-box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .slider-box .list {
    margin: 2.5rem auto 0;
    display: block;
    width: calc(100% - 3rem);
  }
  .c-interview .p-interview__inner .slider-box .list .slick-arrow {
    position: absolute;
    top: 18rem;
    width: 4rem;
    height: 4rem;
    left: -1rem;
    z-index: 2;
  }
  .c-interview .p-interview__inner .slider-box .list .slick-arrow.next-arrow {
    right: -1rem;
    left: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-interview .p-interview__inner .slider-box .list .slick-arrow {
    top: 19rem;
  }
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .slider-box .list .slick-slide {
    margin: 0 1rem;
    height: auto !important;
    background-color: #fff;
    position: relative;
  }
  .c-interview .p-interview__inner .slider-box .list .slick-slide > div {
    height: 100%;
  }
  .c-interview .p-interview__inner .slider-box .list .slick-slide > div .list__item {
    height: 100%;
  }
  .c-interview .p-interview__inner .slider-box .list .slick-track {
    display: flex;
  }
}
.c-interview .p-interview__inner .slider-box .list.js-slider-03 {
  display: block;
  width: calc(100% - 3rem);
}
.c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.7rem;
  height: 5.7rem;
  left: -7rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-arrow {
    width: 4rem;
    height: 4rem;
    left: -1rem;
  }
}
.c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-arrow.next-arrow {
  right: -7rem;
  left: auto;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-arrow.next-arrow {
    right: -1rem;
  }
}
.c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-slide {
  margin: 0 2rem;
  height: auto !important;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-slide {
    margin: 0 1rem;
  }
}
.c-interview .p-interview__inner .slider-box .list.js-slider-03 .slick-track {
  display: flex;
}
.c-interview .p-interview__inner .c-btn {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .c-interview .p-interview__inner .c-btn {
    margin-top: 2.5rem;
  }
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
.l-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0.8rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0;
    align-items: center;
    padding-left: 2rem;
  }
}
.l-header__left .logo {
  width: 34rem;
}
@media screen and (max-width: 767px) {
  .l-header__left .logo {
    width: 18rem;
  }
}
.l-header__left .logo a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__left .logo a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__left .logo a:hover {
    opacity: 0.7;
  }
}
.l-header__left .logo a img {
  width: 100%;
}
.l-header__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header__right .btn__link {
  width: 23rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(-45deg, #8F1D22 0%, #D63A41 100%);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-header__right .btn__link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__right .btn__link:hover {
    opacity: 0.7;
  }
}
.l-header__right .btn__link:active {
  transform: scale(0.95);
}
.l-header__right .menu {
  padding: 2rem 7.5rem 1.7rem 0;
}
.l-header__right .menu .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.3rem;
}
@media screen and (max-width: 1919px) {
  .l-header__right .menu .list {
    gap: 7rem;
  }
}
.l-header__right .menu .list__item {
  line-height: 1.2;
  text-align: center;
}
.l-header__right .menu .list__item a {
  line-height: 1.2;
  font-size: 1.5rem;
  text-align: center;
}
.l-header__right .menu .list__item a:hover {
  text-decoration: underline;
}
.l-header__right .menu-trigger {
  width: 6rem;
  height: 6rem;
  padding: 1.8rem 1.5rem 1.3rem;
  background-color: #333;
}
.l-header__right .menu-trigger .border {
  width: 100%;
  padding: 0 0.2rem;
  height: 1.4rem;
  position: relative;
}
.is-fixed .l-header__right .menu-trigger .border {
  height: 100%;
}
.l-header__right .menu-trigger .border span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.is-fixed .l-header__right .menu-trigger .border span {
  width: 2.5rem;
}
.is-fixed .l-header__right .menu-trigger .border span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(315deg);
}
.l-header__right .menu-trigger .border span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.is-fixed .l-header__right .menu-trigger .border span:nth-child(2) {
  opacity: 0;
}
.l-header__right .menu-trigger .border span:nth-child(3) {
  top: auto;
  bottom: 0;
}
.is-fixed .l-header__right .menu-trigger .border span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-315deg);
}
.l-header__right .menu-trigger .text {
  margin-top: 0.3rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  white-space: nowrap;
}
.is-fixed .l-header__right .menu-trigger .text {
  opacity: 0;
  visibility: hidden;
}

.gnavi {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-y: scroll;
  transition: 0.3s ease-out;
  transform: translateX(100%);
}
.is-fixed .gnavi {
  transform: translateX(0);
}
.gnavi__inner {
  padding: 11rem 2.2rem;
  background-color: #333;
}
.gnavi__inner .list__item {
  margin-top: 3rem;
  line-height: 1;
}
.gnavi__inner .list__item a {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: block;
  padding-left: 1.7rem;
  line-height: 1;
  position: relative;
}
.gnavi__inner .list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.7rem;
  height: 0.3rem;
  background-color: #8F1D22;
}
.gnavi__inner .list__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1rem;
  height: 1rem;
  background: url(../img/common/arrow_right_white_02.svg) no-repeat center center/contain;
}
.gnavi__inner .btn a {
  margin: 5rem auto 0;
  width: 23rem;
  height: 5rem;
  background: linear-gradient(-45deg, #8F1D22 0%, #D63A41 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: #fff;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 10rem;
  }
}
.l-footer .menu01 .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu01 .list {
    flex-wrap: wrap;
    gap: 0 1.5rem;
    padding: 0 1rem;
  }
}
.l-footer .menu01 .list__item a {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .l-footer .menu01 .list__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .menu01 .list__item a:hover {
    opacity: 0.7;
  }
}
.l-footer .menu01 .list__item a.-blank {
  padding-right: 1.9rem;
  position: relative;
}
.l-footer .menu01 .list__item a.-blank::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}
.l-footer .menu02 {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu02 {
    margin-top: 3rem;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .menu02__item {
    max-width: 100%;
  }
}
.l-footer .menu02__title {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.09em;
  padding-bottom: 1rem;
  border-bottom: 1px solid #8F1D22;
}
@media screen and (max-width: 767px) {
  .l-footer .menu02__title {
    padding: 2rem 0 1.3rem;
    height: auto;
    position: relative;
    letter-spacing: 0;
    font-size: 1.5rem;
  }
  .l-footer .menu02__title::before {
    content: "";
    position: absolute;
    top: 1.4em;
    transform: translate(0);
    right: 0;
    width: 1.2rem;
    height: 0.8rem;
    background: url(../img/common/arrow_bottom.svg) no-repeat center center/contain;
  }
  .l-footer .menu02__title.is-open::before {
    transform: rotate(-180deg);
  }
}
.l-footer .menu02 .list {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu02 .list {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: none;
  }
}
.l-footer .menu02 .list__item {
  margin-top: 1rem;
  line-height: 1.3;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer .menu02 .list__item {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
  .l-footer .menu02 .list__item:first-child {
    margin-top: 0;
  }
}
.l-footer .menu02 .list__item a {
  line-height: 1.3;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer .menu02 .list__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .menu02 .list__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .menu02 .list__item a {
    font-size: 1.4rem;
  }
}
.l-footer .menu03 {
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu03 {
    margin-top: 4rem;
  }
}
.l-footer .menu03__item:nth-child(n+2) {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu03__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .menu03__item {
    border-top: 1px solid #AAAAAA;
    padding-right: 0;
  }
  .l-footer .menu03__item:last-child {
    border-bottom: 1px solid #AAAAAA;
  }
}
.l-footer .menu03__title {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .l-footer .menu03__title {
    padding: 1.5rem 0;
    font-size: 1.5rem;
    height: auto;
    position: relative;
    letter-spacing: 0;
  }
  .l-footer .menu03__title::before {
    content: "";
    position: absolute;
    top: 1.4em;
    transform: translate(0);
    right: 0;
    width: 1.2rem;
    height: 0.8rem;
    background: url(../img/common/arrow_bottom.svg) no-repeat center center/contain;
  }
  .l-footer .menu03__title.is-open::before {
    transform: rotate(-180deg);
  }
}
.l-footer .menu03 .list {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu03 .list {
    margin-top: 0;
    margin-bottom: 2rem;
    display: none;
  }
}
.l-footer .menu03 .list__item {
  margin-top: 1rem;
  line-height: 1;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer .menu03 .list__item {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
  .l-footer .menu03 .list__item:first-child {
    margin-top: 0.5rem;
  }
}
.l-footer .menu03 .list__item a {
  line-height: 1;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-left: 1.7rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer .menu03 .list__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .menu03 .list__item a:hover {
    opacity: 0.7;
  }
}
.l-footer .menu03 .list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/common/arrow_right_black.svg) no-repeat center center/contain;
}
.l-footer .menu03 .list__item a.-blank {
  padding-right: 2rem;
}
.l-footer .menu03 .list__item a.-blank::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .l-footer .menu03 .list__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .menu03 .list__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .menu03 .list__item a {
    font-size: 1.4rem;
  }
}
.l-footer .logo {
  max-width: 70rem;
  margin: 8.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-footer .logo {
    max-width: 27.5rem;
    margin: 5rem auto 0;
  }
}
.l-footer .title {
  margin: 4rem auto 0;
  width: 71.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .title {
    width: 33.4rem;
    margin: 2.3rem auto 0;
  }
}
.l-footer .menu04 {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu04 {
    margin-top: 3.5rem;
  }
}
.l-footer .menu04 .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .menu04 .list {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}
.l-footer .menu04 .list__item {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-footer .menu04 .list__item {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.l-footer .menu04 .list__item a {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .l-footer .menu04 .list__item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .menu04 .list__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .menu04 .list__item a {
    font-size: 1.2rem;
    text-decoration: underline;
  }
}
.l-footer .copyright {
  margin-top: 8rem;
  background-color: #8F1D22;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer .copyright {
    margin-top: 6rem;
    height: 4.5rem;
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
/* スクロールトップ
---------------------------------------------------------------------------- */
.scroll-top {
  width: 5rem;
  height: 5rem;
  background-color: #333;
  position: fixed;
  bottom: 14rem;
  right: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  cursor: pointer;
  z-index: 98;
}
@media screen and (min-width: 768px) {
  .scroll-top {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .scroll-top:hover {
    opacity: 0.7;
  }
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:active {
  transform: scale(0.95);
}
.scroll-top img {
  width: 2.8rem;
  height: 2.8rem;
}
@media screen and (max-width: 767px) {
  .scroll-top {
    width: 4rem;
    height: 4rem;
    right: 1rem;
    bottom: 12.4rem;
  }
}

.SP_siteAttention {
  display: none;
}

.siteSticky {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.footer_floating {
  background: #eaeaea;
  border-top: 1px solid #999;
}

.PC_siteAddress .contact {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  align-items: center;
}

.PC_siteAddress {
  display: block;
  width: 128rem;
  margin: 0 auto;
}

.sateiBtnWrap {
  width: 30%;
}

.sateiBtnWrap .p01 {
  font-size: 1.6rem;
  line-height: 1.85em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
}

.addressWrap {
  width: 43%;
  text-align: left;
}

.addressWrap p {
  border-top: 0.3rem solid #cc0000;
  padding: 1.8rem 0;
  border-bottom: 0.3rem solid #cc0000;
  font-size: 1.7rem;
  color: #cc0000;
}

.corpTelWrap {
  width: 25rem;
}

.footer_floating .search-top-block .search-box .search-form {
  background-image: none;
  border: 0.3rem solid #cfcdce;
  border-right: none;
  width: 100%;
}

.footer_floating .search-top-block .search-box .search-btn {
  width: 6rem;
}

.sateiBtnWrap .p01 {
  display: block;
}

.sateiBtnWrap .p03 {
  display: none;
}

.search-top-block .search-box {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background-color: #ffffff;
}

.search-top-block .search-box .search-form {
  box-sizing: border-box;
  width: 85%;
  height: 6rem;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem 0 0 0.4rem;
  border: none;
  font-size: 1.5rem;
  line-height: 1em;
  background-image: url("../img/contact_search_bg01.png");
  background-repeat: repeat-x;
  background-position: left top;
  outline: none;
}

.search-top-block .search-box .search-btn {
  width: 11%;
  margin: 0;
  background-color: #c99c52;
  height: 6rem;
  border-radius: 4px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -2px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .search-top-block .search-box .search-btn {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .search-top-block .search-box .search-btn:hover {
    opacity: 0.7;
  }
}
.search-top-block .search-box .search-btn:active {
  transform: scale(0.95);
}

.search-top-block .search-box .search-btn svg {
  margin: 0;
  fill: #fff;
}

.search-top-block .search-box .search-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .PC_siteAddress {
    width: auto;
  }
  .corpTelWrap {
    display: none;
  }
  .PC_siteAddress .contact {
    display: block;
    padding: 1rem 4rem;
  }
  .addressWrap {
    width: 100%;
    display: none;
  }
  .sateiBtnWrap {
    width: 100%;
  }
  .sateiBtnWrap .p01 {
    display: none;
  }
  .sateiBtnWrap .p03 {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #cc0000;
    text-align: center;
  }
  .search-top-block .search-box {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background-color: #ffffff;
  }
  .search-top-block .search-box .search-form {
    box-sizing: border-box;
    width: 89%;
    height: 5rem;
    padding: 0.6rem 1rem;
    border-radius: 0.4rem 0 0 0.4rem;
    border: none;
    font-size: 1.5rem;
    line-height: 1em;
    background-image: url("../img/contact_search_bg01.png");
    background-repeat: repeat-x;
    background-position: left top;
    outline: none;
  }
  .search-top-block .search-box .search-btn {
    width: 11%;
    margin: 0;
    background-color: #c99c52;
    height: 5rem;
    border-radius: 4px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -0.9rem;
    cursor: pointer;
  }
  .search-top-block .search-box .search-btn img {
    width: 5rem;
    height: auto;
  }
  .search-top-block .search-box .search-btn svg {
    margin: 0;
    fill: #fff;
  }
}
/* ---------------------------------------------
  アニメーション
-----------------------------------------------*/
.fade-box, .fadeUp-box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}