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

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

*/
/*		独自追加
-----------------------------------------------------*/
:root {
  --w-solid-wide: 1240px;
}
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/ShipporiMincho-SemiBold.ttf") format("truetype");
  src: url("../fonts/ShipporiMincho-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

@font-face { 
  font-family:"Gilda Display"; 
  src: url('../fonts/GildaDisplay-Regular.ttf') format("truetype"); 
  src: url('../fonts/GildaDisplay-Regular.woff') format("woff"); 
  font-weight: 400;
  font-style: normal;
}

.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}
main {
  letter-spacing: 0.06;
}
main p {
  font-size: 16px;
}
.l-container {
  max-width: var(--w-solid-wide);
}
.c-title_l {
  margin-bottom: 50px;
}
.c-title_jp {
  font-size: 24px;
  letter-spacing: 0.06em;
  color: #b59a9a;
}
.c-title_en {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 92px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: var(--color-brown);
}
@media (max-width: 600px) {
  /*SP以下 表示*/
  .c-title_jp {
    font-size: 16px;
  }
  .c-title_en {
    font-size: 56px;
    font-size: clamp(36px, -10.667px + 16.667vw, 56px);
  }
} /*END SP以下 表示*/
.c-link_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  width: fit-content;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  padding: 15px 40px;
  background-color: var(--color-brown);
  border:1px solid transparent;
  border-radius: 100px;
}
.c-link_btn.is-border {
  color: var(--color-dark-brown);
  background-color: transparent;
  border-color: currentColor;
}
.c-link_btn.is-large {
  max-width: 520px;
  width: 100%;
  min-height: 80px;
}
.c-link_btn::before,
.c-link_btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform-origin: right center;
  transition: color 0.1s linear , right 0.2s ease-in-out;
}
.c-link_btn.is-border::before,
.c-link_btn.is-border::after {
  background-color: var(--color-dark-brown);
}

.c-link_btn::before {
  transform: rotate(45deg);
}
.c-link_btn::after {
  transform: rotate(-45deg);
}
@media (min-width: 601px) {
  /*PC以上 表示*/
  .c-link_btn:hover::before,
  .c-link_btn:hover::after {
    right: 15px;
    background-color: currentColor;
  }
} /*END PC以上 表示*/
.c-link_btn.is-blank {
  padding: 15px 50px;
}
.c-link_btn.is-blank::before {
  display: none;
}
.c-link_btn.is-blank::after {
  content: "";
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  -webkit-mask-image: url("../img/icon_blank.svg");
  mask-image: url("../img/icon_blank.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  background-color: #fff;
  transform: rotate(0);
}
@media (min-width: 601px) {
  /*PC以上 表示*/
  .c-link_btn:hover {
    color: var(--color-brown);
    border-color: currentColor;
  }
  .c-link_btn.is-blank:hover::after {
    right: 20px;
    background-color: currentColor;
  }
} /*END PC以上 表示*/
@media (max-width: 600px) {
  /*SP以下 表示*/
  .c-link_btn {
    min-width: unset;
    width: fit-content;
    max-width: 100%;
    width: 90%;
  }
} /*END SP以下 表示*/
/*		基本設定
-----------------------------------------------------*/
main {
  font-family: var(--shippori-font);
  font-weight: 600;
  color: var(--color-base);
  line-height: 1.75;
  margin: 0 auto;
  padding: 0;
}
main img,
main svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
main img {
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

main *,
main *::before,
main *::after {
  box-sizing: border-box;
}
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 (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}
@media (min-width: 601px) {
  .is-sp {
    display: none !important;
  }
}
input {
  font-size: 1.6rem;
  /*iOSズームアップ対策サイズ*/
}

textarea {
  font-size: 1.6rem;
  /*iOSズームアップ対策サイズ*/
  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 (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* 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;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.px-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

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

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-100 {
  padding-top: 100px;
  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;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mx-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mx-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.mx-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  transform: translateY(10px);
}
/* 
.js-scroll-up + .js-scroll-up {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}
.js-scroll-up + .js-scroll-up + .js-scroll-up {
  transition-delay: 2s;
  animation-delay: 2s;
}
.js-scroll-up + .js-scroll-up + .js-scroll-up + .js-scroll-up {
  transition-delay: 2.5s;
  animation-delay: 2.5s;
} */

.js-scroll-up.is-show {
  animation: animetion-scroll-up 1s forwards;
}
@keyframes animetion-scroll-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-text-anime {
  overflow: hidden;
}
.js-text-anime span {
  display: inline-block;
  opacity: 0;
  animation-fill-mode: forwards;
}
.js-text-anime.is-show span {
  animation: animetion-appeartext 1s forwards;
}
@keyframes animetion-appeartext {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
