@charset "UTF-8";
/*
====>> サイトの共通パーツに関するデフォルトスタイリング <<====

・このファイルはベースのスタイルに加え、サイト(案件)毎にスタイルを記述していく
・ヘッダー、ナビゲーション、フッター、パンくずなどの各ページに対して1つのパーツをスタイルするファイル

*/
/*		独自追加
-----------------------------------------------------*/
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.cormorant-infant {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.l-header_inner.is-flex {
  width: 92%;
  justify-content: space-between;
  margin: 0 auto;
}

.l-header_logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
}
.l-header_logo_text {
  color: #fff;
  text-align: center;
}
.l-header_logo_text_en {
  display: block;
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 0.4em;
  margin-bottom: 0.4em;
  border-bottom: 1px solid #fff;
}
.l-header_logo_text_jp {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.c-link_btn {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: center;
  letter-spacing: 0.12em;
  padding: 0.5em 2.5em;
  background: #AC9D7A;
  background-image: linear-gradient(0deg, #ac9d7a, #c9bea2 50%, #ac9d7a);
  border: 5px solid #93835C;
}
@media screen and (max-width: 767px) {
  .c-link_btn {
    min-height: 4.2rem;
    font-size: 1.2rem;
    padding: 0.7em 1em;
    border-width: 4px;
  }
}
.c-link_btn span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-link_btn span {
    display: inline-block;
    font-size: 0.8rem;
  }
}
@media (hover: hover) {
  .c-link_btn:hover {
    box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.16);
  }
}

.l-header .c-link_btn {
  max-width: 338px;
  width: 100%;
  font-size: 1.6rem;
  padding: 0.5em 2.5em;
}
.l-header .c-link_btn span {
  font-size: 1.2rem;
}

.c-section_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .c-section_head {
    margin-bottom: 5rem;
  }
}
.c-section_head_en {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15rem;
  font-size: clamp(9rem, 7.8125vw, 15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-section_head_en {
    font-size: 5rem;
  }
}
.c-section_head_en span {
  display: inline-block;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-size: 100% 100%;
}
.c-section_head_en::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(70deg, rgba(0, 0, 0, 0) 45%, #fff 50%, rgba(0, 0, 0, 0) 55%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.c-section_head_en::after {
  content: attr(data-text);
  position: absolute;
  top: calc(100% - 0.38em);
  left: 0;
  z-index: -1;
  width: 100%;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to top, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
          mask-image: linear-gradient(to top, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.c-section_head.is-show .c-section_head_en::before {
  animation: shine 3s ease forwards;
  animation-delay: 0.3s;
}
@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.c-section_head_jp {
  font-size: 4.8rem;
  font-size: clamp(3.2rem, 2.5vw, 4.8rem);
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-section_head_jp {
    font-size: 2.4rem;
  }
}

.c-title_l {
  margin-bottom: 7rem;
  margin-bottom: clamp(5.5rem, 3.6458333333vw, 7rem);
}
.c-title_l_en {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2.2rem;
  font-size: clamp(1.6rem, 1.1458333333vw, 2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-title_l_en {
    font-size: 1.2rem;
  }
}
.c-title_l_jp {
  font-size: 4.8rem;
  font-size: clamp(4rem, 2.5vw, 4.8rem);
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .c-title_l_jp {
    font-size: 2.4rem;
  }
}

.c-media {
  position: relative;
  gap: 4rem 6%;
}
@media screen and (max-width: 767px) {
  .c-media {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-media_text {
  flex: 1;
}
.c-media_title {
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 1.6666666667vw, 3.2rem);
  line-height: 2.2;
  margin-bottom: 8rem;
  margin-bottom: clamp(5.5rem, 4.1666666667vw, 8rem);
}
@media screen and (max-width: 767px) {
  .c-media_title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.c-media_image {
  flex: 2;
  max-width: 846px;
}
@media screen and (max-width: 1023px) {
  .c-media_image {
    flex: 1;
  }
}
.c-media_image figure {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.32);
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .c-media_image figure {
    padding: 5px;
  }
}
.c-media.is-reverse .c-media_image {
  margin-left: auto;
}
.c-media + .c-media {
  margin-top: 18rem;
}
@media screen and (max-width: 767px) {
  .c-media + .c-media {
    margin-top: 5rem;
  }
}

.js-parallax {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/*		基本設定
-----------------------------------------------------*/
*, *:before, *:after {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--base-serif);
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #fff;
  background-color: #252532;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-all;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

html[lang=en] body {
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s linear;
}
a[target=_blank].is-external::after {
  content: "";
  background: url("../img/common/icon_external.svg") no-repeat center center/contain;
  display: inline-block;
  height: 1.2rem;
  width: 1.2rem;
  vertical-align: middle;
  margin-left: 0.3em;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-tb {
    display: none !important;
  }
}
input {
  font-size: 1.6rem;
}

textarea {
  font-size: 1.6rem;
  resize: vertical;
}

/* フォーカスが当たった時の青枠を表示しない */
*:focus {
  outline: none;
}

::-moz-selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

::selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
figure {
  /*safariのoverflow不具合対策*/
  will-change: transform;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.pt-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.m-80 {
  margin: 80px;
}

.m-100 {
  margin: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  filter: blur(10px);
  transition: all 1s;
  transition-delay: 0.5s;
}

.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translateY(0px);
}

/*		ヘッダー
-----------------------------------------------------*/
#header {
  position: absolute;
  top: 0;
  z-index: 999;
  padding: 23px 0 15px;
  /* END &.l-header */
}
#header.l-header {
  width: var(--w-liquid);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
#header.l-header .l-container,
#header.l-header .l-container_wide {
  max-width: var(--w-solid-base);
  display: flex;
  align-items: center;
}
#header.l-header .l-header_logo {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: auto;
}
#header.l-header .l-header_logo a {
  display: flex;
  align-items: center;
}
#header.l-header .l-header_btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 3%;
}
#header.l-header .l-header_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #000;
  background-color: var(--color-base);
  padding: 8px 30px;
  border: 3px solid transparent;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (hover: hover) {
  #header.l-header .l-header_btn a:hover {
    color: #000;
    color: var(--color-base);
    background-color: #fff;
    border-color: currentColor;
  }
}

/* END #header */
@media screen and (max-width: 1023px) {
  #header.l-header {
    padding: 5px 0;
    display: flex;
    align-items: center;
    min-height: 60px;
    /* END #header */
  }
  #header.l-header .l-container,
  #header.l-header .l-container_wide {
    gap: 10px;
    padding: 0 70px 0 10px;
  }
  #header.l-header .l-header_logo {
    flex-shrink: 0;
  }
  #header.l-header .l-header_logo_img {
    max-width: 80px;
  }
  #header.l-header .l-header_logo_text_en {
    font-size: 0.8rem;
  }
  #header.l-header .l-header_logo_text_jp {
    font-size: 0.8rem;
  }
}
/*		フッター
-----------------------------------------------------*/
#footer {
  text-align: center;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 20px 0 60px;
  }
}
#footer .l-container {
  width: var(--w-liquid);
}
#footer .c-copyright {
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.11);
}
@media screen and (max-width: 767px) {
  #footer .c-copyright {
    padding: 20px 0;
  }
}
#footer .c-copyright .c-copyright__txt {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #fff;
}

/*  END #footer  */