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

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

*/
/*		独自追加
-----------------------------------------------------*/
body {
  overflow: unset;
}

main {
  font-family: var(--base-serif);
  font-weight: 400;
  font-style: normal;
  color: #262626;
}

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

main * {
  box-sizing: border-box;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.sorts-mill-goudy {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
}

.l-wrapper {
  overflow: unset;
}

.is-text-blue {
  color: var(--color-blue);
}

.c-section_head {
  position: sticky;
  top: 0;
  z-index: 1;
  max-width: 100%;
  max-height: 790px;
  padding-bottom: 100px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .c-section_head {
    max-height: 335px;
    padding-bottom: 20px;
  }
}
.c-section_head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: calc(100% - 100px);
  border-top-left-radius: 140px;
  background: #5bc7d4;
  background: linear-gradient(90deg, rgb(91, 199, 212) 0%, rgb(168, 221, 228) 100%);
}
@media screen and (max-width: 1023px) {
  .c-section_head::before {
    height: calc(100% - 20px);
  }
}
.c-section_head figure {
  max-width: 1260px;
  width: 82%;
  height: auto;
  /* overflow: hidden; */
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .c-section_head figure {
    width: calc(100vw - 4%);
    height: auto;
    margin-left: 4%;
  }
}
.c-section_head figure img {
  /* -o-object-fit: cover;
     object-fit: cover; */
  width: 100%;
  height: auto;
}
.c-section_head h2 {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .c-section_head h2 {
    position: absolute;
    left: 3%;
    bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .c-section_head h2 {
    position: relative;
    left: 3%;
    margin-top: 10px;
  }
}
.c-section_head h2 .c-section_head_jp {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .c-section_head h2 .c-section_head_jp {
    font-size: 18px;
    font-size: clamp(12px, 4.5vw, 18px);
    margin-bottom: 10px;
  }
}
.c-section_head h2 .c-section_head_en {
  display: block;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 150px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .c-section_head h2 .c-section_head_en {
    font-size: 76px;
    font-size: clamp(26px, 19vw, 76px);
  }
}

.c-title_m {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}
.c-title_m .c-title_en {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 36px;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .c-title_m .c-title_en {
    font-size: 32px;
    font-size: clamp(26px, 8vw, 32px);
  }
}
.c-title_m .c-title_jp {
  font-size: 16px;
  color: #A7A7A7;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .c-title_m .c-title_jp {
    font-size: 14px;
    font-size: clamp(12px, 3.5vw, 14px);
  }
}

.c-title_s {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W6", "HGS明朝E", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .c-title_s {
    font-size: 26px;
    font-size: clamp(14px, 6.5vw, 26px);
    margin-bottom: 30px;
  }
}

.c-section_content {
  max-width: 100%;
  padding-top: 90px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .c-section_content {
    margin-top: 200px;
  }
}
@media screen and (max-width: 599px) {
  .c-section_content {
    padding-top: 40px;
  }
}

.c-section_information {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--color-gold);
  box-sizing: border-box;
}

.c-btn_wrap {
  margin-top: 30px;
  gap: 20px 3%;
}

.c-btn01 {
  display: flex;
  align-items: center;
  gap: 25px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--color-gold);
  position: relative;
  margin-top: 30px;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .c-btn01 {
    font-size: 18px;
    gap: 20px;
  }
}
.c-btn01::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 29px;
  height: 6px;
  -webkit-mask-image: url("../img/page/top/viewmore_arrow.svg");
  mask-image: url("../img/page/top/viewmore_arrow.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: var(--color-gold);
  transform: translateY(-50%);
  transition: all 0.3s linear;
}
.c-btn01::after {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}
@media (hover: hover) {
  .c-btn01:hover {
    color: var(--color-gold);
    text-decoration: none;
  }
  .c-btn01:hover::before {
    right: 8px;
  }
}

/*c-btn01*/
.c-btn02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-height: 53px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W6", "HGS明朝E", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 15px 20px;
  background-color: var(--color-blue);
  border-radius: 3px;
  box-sizing: border-box;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-btn02:hover {
    text-decoration: none;
    color: #fff;
    background-color: var(--color-blue);
    opacity: 0.7;
  }
}
.c-btn02.is-orange {
  background-color: var(--color-orange);
}
@media (hover: hover) {
  .c-btn02.is-orange:hover {
    background-color: var(--color-orange);
    opacity: 0.7;
  }
}
.c-btn02.is-red {
  background-color: var(--color-red);
}
@media (hover: hover) {
  .c-btn02.is-red:hover {
    background-color: var(--color-red);
    opacity: 0.7;
  }
}
.c-btn02.is-tel {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  background-color: transparent;
}
.c-btn02 .icon_calendar {
  width: 20px;
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/common/icon_calendar.svg") no-repeat center center/contain;
}
.c-btn02 .icon_bed {
  width: 25px;
  width: 1.5em;
  aspect-ratio: 25/16;
  background: url("../img/common/icon_bed.svg") no-repeat center center/contain;
}
.c-btn02 .icon_arrow {
  width: 20px;
  width: 1.2em;
  aspect-ratio: 1;
  background: url("../img/common/icon_arrow_circle.svg") no-repeat center center/contain;
}
.c-btn02 .icon_tel {
  width: 12px;
  width: 0.8em;
  aspect-ratio: 12/20;
  background: url("../img/common/icon_tel.svg") no-repeat center center/contain;
}

/*c-btn02*/
.c-lead {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 2.2;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .c-lead {
    font-size: 14px;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.8;
  }
}

.slick-slider .dots-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .slick-slider .dots-wrap {
    gap: 6px;
  }
}
.slick-slider .dots-wrap li {
  width: 10px;
  height: 10px;
  background: #dcdcdc;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .slick-slider .dots-wrap li {
    width: 6px;
    height: 6px;
  }
}
@media (hover: hover) {
  .slick-slider .dots-wrap li:hover {
    background: var(--color-blue);
  }
}
.slick-slider .dots-wrap li.slick-active {
  background: var(--color-blue);
}
.slick-slider .dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/*		基本設定
-----------------------------------------------------*/
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: 599px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 600px) {
  .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: 600px) {
  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);
  transition: all 1s;
}

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

/* ポップアップ非表示 */
.top_lightbox.active {
    display: none;
}