@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost&family=Noto+Sans+JP&family=Noto+Serif+JP:wght@200;400&display=swap");
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-repeat: no-repeat;
  background-origin: border-box;
}

html {
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #301e17;
  font-size: 1.6em;
  line-height: 1.88;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

a[href^="tel:"] {
  pointer-events: none;
}

.l-contents {
  overflow: hidden;
}
.l-contents__header {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.l-contents__body {
  background-color: #ffffff;
}

.l-footer {
  background-color: #f0efe3;
}
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  padding-top: clamp(40px, 8.3333333333vw, 100px);
  padding-bottom: clamp(40px, 8.3333333333vw, 100px);
  gap: 30px 0;
}
.l-footer__logo {
  margin-right: 96px;
}
.l-footer__logo img {
  width: 140px;
}
.l-footer-nav * {
  color: #301e17;
  list-style-type: none;
}
.l-footer-nav__items {
  display: flex;
  flex-wrap: wrap;
}
.l-footer-nav__item {
  width: 200px;
  padding-right: 18px;
  padding-left: 18px;
}
.l-footer-nav__item--2nd {
  margin-top: 10px;
}
.l-footer-nav__item--3rd {
  margin-left: 8px;
  line-height: 1.6;
}
.l-footer-nav__item--3rd a {
  font-size: 1.2rem;
}
.l-footer-nav__label-en {
  display: block;
  color: #889C3B;
  font-size: 1.1rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.15em;
}
.l-footer-nav__label-ja {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #889C3B;
  font-size: 1.6rem;
}
.l-footer__copyright {
  padding-bottom: 60px;
}
.l-footer__copyright p {
  font-size: 1.1rem;
  text-align: center;
}

.l-header {
  z-index: 10;
  position: absolute;
  top: 45px;
  width: 100%;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo img {
  width: 178px;
}
.l-header-nav__items {
  display: flex;
  margin-right: -20px;
  margin-left: -20px;
}
.l-header-nav__item {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  list-style-type: none;
}
.l-header-nav__item.is-current::after {
  display: block;
  position: absolute;
  left: calc(50% - 4px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  content: "";
}
.l-header-nav__item a {
  color: #ffffff;
  font-size: 1.6rem;
  text-decoration: none;
}
.l-header-contact__items {
  display: flex;
  align-items: center;
  margin-right: -5px;
  margin-left: -5px;
}
.l-header-contact__item {
  padding-right: 5px;
  padding-left: 5px;
  list-style-type: none;
}
.l-header-contact__item a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #ffffff;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.l-header-contact__item a::before {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.l-header-contact__item--tel {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}
.l-header-contact__item--tel a::before {
  background-image: url(../../assets/images/icon_tel.svg);
}
.l-header-contact__item--tel span {
  display: block;
  position: absolute;
  bottom: -18px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
}
.l-header-contact__item--mail a::before {
  background-image: url(../../assets/images/icon_mail.svg);
}

.l-sidebar {
  visibility: hidden;
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
}
.l-sidebar.is-scrolled {
  visibility: visible;
  opacity: 1;
}
.l-sidebar__trigger {
  z-index: 9999;
  position: absolute;
  top: 50px;
  right: 5vw;
}
.l-sidebar__nav {
  position: absolute;
  right: 5vw;
  bottom: 50px;
}
.l-sidebar__item {
  padding-top: 16px;
  padding-bottom: 16px;
  list-style-type: none;
}
.l-sidebar__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #889C3B;
}
.l-sidebar__item a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #889C3B;
}
.l-sidebar__item a i::after {
  display: block;
  width: 35px;
  height: 35px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.l-sidebar__item a p {
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.4rem;
}
.l-sidebar__item a p span {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}
.l-sidebar__item--tel a i::after {
  background-image: url(../../assets/images/icon_tel.svg);
}
.l-sidebar__item--mail a i::after {
  background-image: url(../../assets/images/icon_mail.svg);
}

.c-breadcrumbs * {
  color: #ffffff;
}
.c-breadcrumbs__items {
  display: flex;
  list-style-type: none;
}
.c-breadcrumbs__link {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
.c-breadcrumbs__link::after {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
  content: "・";
}
.c-breadcrumbs__current {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  color: #301e17;
  font-size: 1.2rem;
}
.c-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-left: 22px;
  border: 1px solid #301e17;
  border-radius: 50%;
}
.c-btn__icon::after {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../../assets/images/icon_arrow.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.c-container {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
.c-container--narrow {
  width: 60vw;
  max-width: 910px;
}
.c-container--full {
  max-width: 100%;
}

.c-drawer {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f0efe3;
  opacity: 0;
  transition: all 0.3s;
}
.c-drawer--active {
  visibility: visible;
  opacity: 1;
}
.c-drawer::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-image: url(../../assets/images/sidebar.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.c-drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding-right: 5vw;
  padding-left: 5vw;
}
.c-drawer__logo img {
  width: 140px;
}
.c-drawer__nav {
  padding-right: 50px;
  padding-left: 50px;
}
.c-drawer-nav * {
  color: #301e17;
  list-style-type: none;
}
.c-drawer-nav__item {
  width: 100%;
  margin-top: 40px;
}
.c-drawer-nav__item--2nd {
  margin-top: 10px;
}
.c-drawer-nav__item--3rd {
  margin-left: 8px;
  line-height: 1.6;
}
.c-drawer-nav__item--3rd a {
  font-size: 1.2rem;
}
.c-drawer-nav__label-en {
  display: block;
  color: #889C3B;
  font-size: 1.1rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.15em;
}
.c-drawer-nav__label-ja {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #889C3B;
  font-size: 1.6rem;
}
.c-drawer__contact {
  margin-top: 60px;
  padding-right: 50px;
  padding-left: 50px;
}
.c-drawer-contact__items {
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  list-style-type: none;
}
.c-drawer-contact__item {
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}
.c-drawer-contact__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 9999px;
  background-color: #889C3B;
  color: #ffffff;
  letter-spacing: 0.05;
}
.c-drawer-contact__item a::before {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.c-drawer-contact__item span {
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
}
.c-drawer-contact__item--tel a::before {
  background-image: url(../../assets/images/icon_tel.svg);
}
.c-drawer-contact__item--mail a::before {
  background-image: url(../../assets/images/icon_mail.svg);
}

.c-heading {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.c-heading--center {
  align-items: center;
}
.c-heading--right {
  align-items: flex-end;
}
.c-heading__label-en {
  font-weight: 400;
  font-size: clamp(3rem, 8.3333333333vw, 10rem);
  font-family: "Jost", sans-serif;
}
.c-heading__label-ja {
  margin-top: 20px;
  color: #889C3B;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.0833333333vw, 2.5rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.8em;
}

.c-info__items {
  list-style-type: none;
}
.c-info-item {
  display: flex;
}
.c-info-item__label {
  width: 20%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #889C3B;
}
.c-info-item__label p {
  color: #889C3B;
  font-size: 1.4rem;
  line-height: 2;
}
.c-info-item__label--40 {
  width: 40%;
}
.c-info-item__label--40 p {
  line-height: 1.7;
}
.c-info-item__value {
  width: 80%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.c-info-item__value--60 {
  width: 60%;
}
.c-info-item__value--60 p {
  line-height: 1.5;
}

.c-modal {
  display: none;
}
.c-modal__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-modal__title-ja {
  font-weight: 400;
  font-size: clamp(1.2rem, 1.3333333333vw, 1.6rem);
  font-family: "Noto Serif JP", serif;
}
.c-modal__title-en {
  font-weight: 400;
  font-size: clamp(2rem, 4.1666666667vw, 5rem);
  line-height: 1.4;
  font-family: "Jost", sans-serif;
}
.c-modal__cols {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.c-modal__col-left {
  width: 47%;
}
.c-modal__col-right {
  width: 53%;
}

.modaal-close {
  position: absolute;
  top: 40px !important;
  right: 40px !important;
  width: 90px !important;
  height: 90px !important;
  border: 1px solid #301e17 !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  cursor: pointer;
  opacity: 1;
}

.modaal-close:after,
.modaal-close:before {
  display: block;
  position: absolute;
  top: 24px !important;
  left: 42px !important;
  width: 1px !important;
  height: 40px !important;
  border-radius: 0 !important;
  background-color: #301e17;
  content: " ";
}

.c-news__item {
  display: flex;
  justify-content: flex-start;
  color: #301e17;
  text-decoration: none;
}
.c-news__date {
  display: block;
  width: 30%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #889C3B;
  line-height: 1.8;
}
.c-news__date p {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
.c-news__title {
  display: block;
  width: 70%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #cccccc;
}

.c-row {
  display: flex;
  position: relative;
  justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
}
.c-row__col {
  padding-right: 15px;
  padding-left: 15px;
}
.c-row__col--1-2 {
  width: 50%;
}
.c-row__col--1-3 {
  width: 33.3333%;
}
.c-row__col--2-3 {
  width: 66.6666%;
}

.c-section {
  padding-top: clamp(40px, 8.3333333333vw, 100px);
  padding-bottom: clamp(40px, 6.6666666667vw, 80px);
  overflow: hidden;
  background-color: #040000;
}

.c-slider__items {
  display: flex;
}
.c-slider__item {
  padding-right: 15px;
  padding-left: 15px;
}
.c-slider__item p {
  display: none;
  margin-top: 20px;
  font-size: 1.4rem;
}
.c-slider__next {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  align-items: center;
  height: 100%;
}
.c-slider .slick-arrow {
  display: flex;
  z-index: 1;
  position: absolute;
  top: 45%;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
}
.c-slider .slick-arrow::after {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../../assets/images/icon_arrow.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.c-slider .slick-arrow::before {
  display: none;
}
.c-slider .slick-arrow.slick-next {
  right: -45px;
}
.c-slider .slick-arrow.slick-prev {
  left: -45px;
}
.c-slider .slick-arrow.slick-prev::after {
  transform: scaleX(-1);
}

.c-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 1px solid #301e17;
  border-radius: 50%;
  cursor: pointer;
}
.c-trigger__inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 12px;
  transition: all 0.5s;
}
.c-trigger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #301e17;
  transition: all 0.5s;
}
.c-trigger__line:nth-of-type(1) {
  top: 0;
}
.c-trigger__line:nth-of-type(2) {
  bottom: 0;
}
.c-trigger--active .c-trigger__line:nth-of-type(1) {
  transform: translateY(6px) rotate(-330deg);
}
.c-trigger--active .c-trigger__line:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-6px) rotate(330deg);
}

.c-video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 100vh;
}
.c-video::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../../assets/images/video_bg.png);
  content: "";
}
.c-video__frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: #000000;
}
.c-video__frame.is-loaded iframe {
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
}
.c-video__scroll {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 150px;
}
.c-video__scroll::after {
  display: block;
  position: absolute;
  top: 20px;
  width: 1px;
  height: 100px;
  background-color: #ffffff;
  content: "";
  animation: pathmove 3s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    top: 20px;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    top: 150px;
    height: 0;
    opacity: 0;
  }
}
.c-video__btn {
  display: flex;
  z-index: 10;
  position: absolute;
  bottom: clamp(35px, 5.8333333333vw, 70px);
  justify-content: center;
  width: 100%;
}
.c-video__btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.c-video__btn a br {
  display: none;
}
.c-video__btn a::before {
  display: block;
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  background: url(../../assets/images/icon-play.svg) no-repeat;
  content: "";
}
.c-video iframe {
  visibility: hidden;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  opacity: 0;
  pointer-events: none;
}

.c-within-nav__items {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}
.c-within-nav__item {
  width: 25%;
  padding-top: 25px;
  padding-bottom: 25px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.c-within-nav__item:last-of-type {
  border: none;
}
.c-within-nav-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-within-nav-item__link::after {
  display: block;
  width: 32px;
  height: 32px;
  margin-top: 30px;
  transform: rotate(90deg);
  border: 1px solid #301e17;
  border-radius: 50%;
  background-image: url(../../assets/images/icon_arrow.gif);
  background-position: center center;
  background-size: 60%;
  background-repeat: no-repeat;
  content: "";
}
.c-within-nav-item__title-en {
  color: #889C3B;
  line-height: 1;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-within-nav-item__title-en span {
  display: block;
  letter-spacing: 0.3em;
}
.c-within-nav-item__title-ja {
  margin-top: 10px;
  color: #301e17;
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

.p-home-amenity::before {
  display: block;
  position: absolute;
  top: clamp(50px, 8.3333333333vw, 100px);
  bottom: clamp(50px, 8.3333333333vw, 100px);
  left: 0;
  width: 55%;
  background-image: url(../../assets/images/home-amenity.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-home-amenity__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: clamp(100px, 16.6666666667vw, 200px);
  padding-bottom: clamp(100px, 16.6666666667vw, 200px);
}
.p-home-amenity__body {
  width: 40rem;
  margin-top: clamp(40px, 6.6666666667vw, 80px);
}
.p-home-amenity__btn {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(20px, 3.3333333333vw, 40px);
}

.p-home-appearance::before {
  display: block;
  position: absolute;
  top: clamp(50px, 8.3333333333vw, 100px);
  right: 0;
  bottom: clamp(50px, 8.3333333333vw, 100px);
  width: 55%;
  background-image: url(../../assets/images/home-appearance.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-home-appearance__inner {
  padding-top: clamp(100px, 16.6666666667vw, 200px);
  padding-bottom: clamp(100px, 16.6666666667vw, 200px);
}
.p-home-appearance__body {
  width: 40rem;
  max-width: 100%;
  margin-top: clamp(40px, 6.6666666667vw, 80px);
}
.p-home-appearance__btn {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(20px, 3.3333333333vw, 40px);
}

.p-home-introspection {
  background-color: #f8f8f2;
}
.p-home-introspection__body {
  padding-top: clamp(40px, 6.6666666667vw, 80px);
}
.p-home-introspection__items {
  display: flex;
  margin-right: -40px;
  margin-left: -40px;
}
.p-home-introspection__item {
  width: 50%;
  padding-right: 40px;
  padding-left: 40px;
}
.p-home-introspection__item--2 {
  margin-top: 0px;  /*50->0 20230220　変更*/
}
.p-home-introspection__item a {
  color: #301e17;
  text-decoration: none;
}
.p-home-introspection__item-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 500px;
  background-image: url(../../assets/images/home-introspection_maisonette.webp);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-home-introspection__item-header p {
  width: 85%;
  padding: 40px;
  background-color: #f8f8f2;
}
.p-home-introspection__item--2 .p-home-introspection__item-header {
  background-image: url(../../assets/images/home-introspection_one.webp);
  background-position: center;
}
.p-home-introspection__item-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(20px, 3.3333333333vw, 40px);
  margin-bottom: 50px;  /* 追加　変更　20230220 */
}

.p-home-news {
  background-color: #f8f8f2;
}
.p-home-news__inner {
  display: flex;
}
.p-home-news__header {
  width: 30%;
}
.p-home-news__header .c-heading__label-en {
  color: #889C3B;
  font-size: clamp(3rem, 6.6666666667vw, 8rem);
}
.p-home-news__header .c-heading__label-ja {
  color: #889C3B;
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
}
.p-home-news__body {
  width: 70%;
}

.p-home-section {
  position: relative;
  padding-top: clamp(40px, 8.3333333333vw, 100px);
  padding-bottom: clamp(40px, 8.3333333333vw, 100px);
}

.p-home-video {
  position: relative;
}
.p-home-video__video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.p-home-video__lead {
  display: flex;
  z-index: 1;
  position: relative;
  top: 180px;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.p-home-video__lead p {
  color: #ffffff;
  font-size: clamp(1.4rem, 1.6666666667vw, 2rem);
  line-height: 2.5;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.p-page-about-section__header {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding-top: clamp(60px, 13.3333333333vw, 160px);
  padding-bottom: clamp(60px, 15.8333333333vw, 190px);
  background-image: url(../../assets/images/about/about_mv.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-page-about-section__header::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
}
.p-page-about-section__title {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100%;
  color: #ffffff;
  line-height: 1;
  font-family: "Jost", sans-serif;
}
.p-page-about-section__title-num {
  display: block;
  font-weight: bold;
  font-size: clamp(2rem, 3.75vw, 4.5rem);
  letter-spacing: 0.3em;
}
.p-page-about-section__title-en {
  display: block;
  font-weight: 400;
  font-size: clamp(4rem, 8.3333333333vw, 10rem);
}
.p-page-about-section__body {
  padding-top: clamp(40px, 6.6666666667vw, 80px);
}

.p-page-section {
  padding-top: clamp(50px, 8.3333333333vw, 100px);
  padding-bottom: clamp(50px, 8.3333333333vw, 100px);
}
.p-page-section--bg-gray {
  background-color: #f8f8f2;
}
.p-page-section__header {
  position: relative;
  padding-bottom: clamp(40px, 6.6666666667vw, 80px);
}
.p-page-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-page-section__title-en {
  display: block;
  font-weight: 400;
  font-size: clamp(2rem, 4.1666666667vw, 5rem);
  font-family: "Jost", sans-serif;
}
.p-page-section__title-ja {
  display: block;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.3333333333vw, 1.6rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.6em;
}
.p-page-section__contents-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(35px, 5.8333333333vw, 70px);
  padding-bottom: clamp(35px, 5.8333333333vw, 70px);
}
.p-page-section__contents-title h3 {
  font-weight: 400;
  font-size: clamp(2rem, 3.3333333333vw, 4rem);
  font-family: "Noto Serif JP", serif;
}
.p-page-section__slider {
  margin-top: 40px;
}
.p-page-section__cols {
  display: flex;
}
.p-page-section__col-left {
  display: flex;
  justify-content: center;
  width: 25%;
}
.p-page-section__col-left h3 {
  font-weight: 400;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}
.p-page-section__col-right {
  width: 75%;
}
.p-page-section__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(35px, 5.8333333333vw, 70px);
}
.p-page-section__embed {
  margin-top: clamp(35px, 5.8333333333vw, 70px);
}
.p-page-section__company p {
  line-height: 2.2;
}
.p-page-section__company-signature {
  margin-top: 40px;
  text-align: right;
}

.p-page-section2__header {
  position: relative;
  width: 100%;
  padding-top: clamp(60px, 13.3333333333vw, 160px);
  padding-bottom: clamp(60px, 15.8333333333vw, 190px);
  background-image: url(../../assets/images/about/about_appearance.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-page-section2__header::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.p-page-section2__header#introspection {
  background-image: url(../../assets/images/about/about_introspection.webp);
}
.p-page-section2__header#amenity {
  background-image: url(../../assets/images/about/about_amenity.webp);
}
.p-page-section2__header#surroundings {
  background-image: url(../../assets/images/about/about_surroundings.webp);
}
.p-page-section2__header#maisonette {
  background-image: url(../../assets/images/room/room_maisonette.webp);
}
.p-page-section2__header#one {
  background-image: url(../../assets/images/room/room_one.webp);
}
.p-page-section2__title {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100%;
  color: #ffffff;
  line-height: 1;
  font-family: "Jost", sans-serif;
}
.p-page-section2__title-num {
  display: block;
  font-weight: bold;
  font-size: clamp(2rem, 3.75vw, 4.5rem);
  letter-spacing: 0.3em;
}
.p-page-section2__title-en {
  display: block;
  font-weight: 400;
  font-size: clamp(4rem, 8.3333333333vw, 10rem);
  line-height: 1.15;
}
.p-page-section2__body {
  padding-top: clamp(40px, 6.6666666667vw, 80px);
}

.p-page__header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-page__video {
  position: absolute;
  width: 100%;
}
.p-page__title {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100vw;
  max-width: 1200px;
  color: #ffffff;
}
.p-page__title-ja {
  font-weight: 200;
  font-size: clamp(3rem, 6.25vw, 7.5rem);
  line-height: 1.45;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}
.p-page__title-en {
  font-weight: 400;
  font-size: clamp(1.3rem, 2.0833333333vw, 2.5rem);
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1em;
}
.p-page__breadcrumbs {
  z-index: 10;
  position: absolute;
  right: 5vw;
  bottom: 65px;
}
.p-page__nav {
  padding-top: clamp(50px, 8.3333333333vw, 100px);
}

.u-letter-spacing--0 {
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .l-body {
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .l-contents__header {
    aspect-ratio: 4/3;
  }
  .l-footer__inner {
    flex-direction: column;
  }
  .l-footer__logo img {
    width: 65px;
  }
  .l-footer-nav__items {
    width: 75%;
    margin: 0 auto;
    gap: 20px 0;
  }
  .l-footer-nav__item {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .l-footer-nav__label-en {
    font-size: 1rem;
  }
  .l-footer-nav__label-ja {
    font-size: 1.3rem;
  }
  .l-footer__copyright {
    padding-bottom: 40px;
  }
  .l-footer__copyright p {
    font-size: 1rem;
  }
  .l-header {
    top: 25px;
  }
  .l-header__logo {
    width: 65px;
  }
  .l-header-nav {
    display: none;
  }
  .l-header-contact {
    display: none;
  }
  .l-sidebar {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  .l-sidebar__trigger {
    top: 20px;
    right: 20px;
  }
  .l-sidebar__trigger .c-trigger {
    border-color: #ffffff;
    transition: all 0.3s;
  }
  .l-sidebar__trigger .c-trigger--active {
    border-color: #301e17;
  }
  .l-sidebar__trigger .c-trigger--active span {
    background-color: #301e17;
  }
  .l-sidebar.is-scrolled .l-sidebar__trigger .c-trigger {
    border-color: #301e17;
  }
  .l-sidebar__trigger .c-trigger__line {
    background-color: #ffffff;
  }
  .l-sidebar.is-scrolled .l-sidebar__trigger .c-trigger__line {
    background-color: #301e17;
  }
  .l-sidebar__nav {
    right: 20px;
    bottom: 20px;
  }
  .l-sidebar__item {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .l-sidebar__item a i {
    width: 60px;
    height: 60px;
  }
  .l-sidebar__item a i::after {
    width: 30px;
    height: 30px;
  }
  .l-sidebar__item a p {
    display: none;
  }
  .c-breadcrumbs__link {
    font-size: 1rem;
  }
  .c-breadcrumbs__current {
    font-size: 1rem;
  }
  .c-btn {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
  .c-btn__icon {
    width: 35px;
    height: 35px;
    margin-left: 6px;
  }
  .c-btn__icon::after {
    width: 18px;
    height: 18px;
  }
  .c-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .c-drawer::after {
    display: none;
  }
  .c-drawer__inner {
    justify-content: flex-start;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    overflow: scroll;
  }
  .c-drawer__logo img {
    width: 65px;
  }
  .c-drawer-nav__item {
    margin-top: 25px;
  }
  .c-drawer-nav__label-en {
    font-size: 1rem;
  }
  .c-drawer-nav__label-ja {
    font-size: 1.3rem;
  }
  .c-drawer__contact {
    margin-top: 40px;
  }
  .c-drawer-contact__items {
    flex-direction: column;
    gap: 20px 0;
  }
  .c-drawer-contact__item {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1;
  }
  .c-drawer-contact__item a::before {
    width: 15px;
    height: 15px;
    margin-right: 6px;
    background-position: center top 1px;
  }
  .c-drawer-contact__item span {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .c-heading--right {
    align-items: flex-start;
  }
  .c-heading__label-ja {
    margin-top: 10px;
  }
  .c-info-item__label {
    width: 25%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.3rem;
  }
  .c-info-item__label p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .c-info-item__label--40 {
    width: 45%;
    padding-right: 3px;
  }
  .c-info-item__label--40 p {
    line-height: 1.1;
  }
  .c-info-item__value {
    width: 75%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .c-info-item__value--60 {
    width: 55%;
  }
  .c-info-item__value--60 p {
    line-height: 1.1;
  }
  .c-modal__title {
    align-items: flex-start;
  }
  .c-modal__col-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .c-modal__col-right {
    width: 100%;
  }
  .modaal-close {
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
  }
  .modaal-close:after,
.modaal-close:before {
    top: 9px !important;
    left: 19px !important;
    height: 20px !important;
  }
  .c-news__date {
    width: 25%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .c-news__date p {
    font-size: 1.1rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .c-news__title {
    width: 75%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .c-slider__item {
    padding-right: 5px;
    padding-left: 5px;
  }
  .c-slider__item p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .c-slider .slick-arrow {
    top: 32%;
    width: 35px;
    height: 35px;
  }
  .c-slider .slick-arrow::after {
    width: 18px;
    height: 18px;
  }
  .c-slider .slick-arrow.slick-next {
    right: -13px;
  }
  .c-slider .slick-arrow.slick-prev {
    left: -13px;
  }
  .c-trigger {
    width: 40px;
    height: 40px;
  }
  .c-trigger__inner {
    width: 22px;
    height: 8px;
  }
  .c-trigger--active .c-trigger__line:nth-of-type(1) {
    transform: translateY(4px) rotate(-330deg);
  }
  .c-trigger--active .c-trigger__line:nth-of-type(2) {
    transform: translateY(-3.5px) rotate(330deg);
  }
  .c-video {
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .c-video__frame {
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .c-video__btn {
    bottom: 20px;
    left: 20px;
    justify-content: flex-start;
  }
  .c-video__btn a {
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
  }
  .c-video__btn a br {
    display: inline-block;
  }
  .c-video__btn a::before {
    width: 30px;
    height: 30px;
    margin-bottom: 3px;
  }
  .c-video iframe {
    position: relative;
    left: -20vw;
    width: 140vw;
  }
  .c-within-nav__item {
    padding-top: 0;
    padding-bottom: 0;
  }
  .c-within-nav__item--2 {
    width: 50%;
  }
  .c-within-nav-item__link::after {
    width: 22px;
    height: 22px;
    margin-top: 5px;
  }
  .c-within-nav-item__title-en {
    font-size: 1.1rem;
  }
  .c-within-nav-item__title-ja {
    margin-top: 0;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .p-home-amenity::before {
    top: 40px;
    width: 100%;
    height: 280px;
  }
  .p-home-amenity__inner {
    align-items: flex-start;
    padding-top: 310px;
    padding-bottom: 0;
  }
  .p-home-amenity__body {
    width: 100%;
    margin-top: 20px;
  }
  .p-home-amenity__btn {
    justify-content: center;
  }
  .p-home-appearance::before {
    top: 40px;
    width: 100%;
    height: 280px;
  }
  .p-home-appearance__inner {
    padding-top: 310px;
    padding-bottom: 0;
  }
  .p-home-appearance__body {
    width: auto;
    margin-top: 20px;
  }
  .p-home-appearance__btn {
    justify-content: center;
  }
  .p-home-introspection__items {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }
  .p-home-introspection__item {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
 /* .p-home-introspection__item--2 {
    margin-top: 40px;
  }*/
  .p-home-introspection__item-header {
    height: 280px;
  }
  .p-home-introspection__item-header p {
    width: 90%;
    padding: 18px 0 0 18px;
    background-position: center -90px;
  }
  .p-home-introspection__item-footer {
    justify-content: center;
  }
  .p-home-news__inner {
    flex-direction: column;
  }
  .p-home-news__body {
    width: 100%;
  }
  .p-home-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-home-video__lead {
    top: 60px;
  }
  .p-home-video__lead p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .p-page-section {
    padding-top: 40px;
  }
  .p-page-section__header--2 {
    padding-bottom: 20px;
  }
  .p-page-section__col-left {
    justify-content: flex-start;
    width: 15%;
  }
  .p-page-section__col-left h3 {
    font-size: 2rem;
  }
  .p-page-section__col-right {
    width: 85%;
  }
  .p-page-section__btns {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
    gap: 20px 0;
  }
  .p-page-section2__title-num {
    font-size: 1.6rem;
  }
  .p-page-section2__title-en {
    font-size: 3.1rem;
  }
  .p-page__title-ja {
    font-size: 2.8rem;
  }
  .p-page__breadcrumbs {
    bottom: 15px;
  }
  .p-page__nav {
    padding-top: 40px;
  }
  .u-letter-spacing--0 {
    letter-spacing: -0.1em;
  }
}

@media screen and (max-width: 991px) {
  .c-container--narrow {
    width: 100%;
  }
  .c-video__scroll {
    display: none;
  }
/*  .p-home-introspection__item--2 {
  margin-top: 50px;  50->0 20230220 変更*/
}
}