@charset "utf-8";

/******
フォント

しっぽり明朝(Medium)
font-family: "Shippori Mincho", serif;
font-weight: 500;

Libre Caslon Display(Regular)
font-family: "Libre Caslon Display", serif;
font-weight: 400;

Noto Sans JP
font-family: "Noto Sans JP", sans-serif;

Garamond Premier Pro(Medium Caption)→footerに使用、フォントプラス
font-family: "GaramondPremrPro-MedCapt";

Orpheus Pro→交通アクセスページの01などの数字に使用
font-family: "orpheuspro", serif;
font-weight: 400;

Arial Regular→よくあるご質問ページの「Q・A」に使用
font-family: "arial", sans-serif;
font-weight: 400;

Brandon Grotesque Bold
font-family: "brandon-grotesque", sans-serif;
font-weight: 700;

Zen Kaku Gothic New
 font-family: "Zen Kaku Gothic New", sans-serif;

*******/

body {
  color: #c79f62;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.box {
  animation-fill-mode: forwards;
}

.img {
  width: 100%;
  height: auto;
  display: block;
}

.hover--opacity {
  transition: opacity 0.3s;
}
.hover--opacity:hover {
  opacity: 0.7;
}

.vertical {
  writing-mode: vertical-rl;
}

.inner-1230 {
  width: calc(100% - 40px);
  max-width: 1230px;
  margin: 0 auto;
}

.inner-1061 {
  width: calc(100% - 40px);
  max-width: 1061px;
  margin: 0 auto;
}

.inner--wide {
  width: calc(100% - 40px);
  max-width: 1236px;
  margin: 0 auto;
}
.inner--wide2 {
  max-width: 1168px;
}

.inner--narrow {
  max-width: 1138px;
}
.inner--narrow2 {
  max-width: 1055px;
}
.inner--narrow.right {
  margin: 0 0 0 98px;
}
.inner--narrow.left {
  margin: 0 auto 0 0;
}

a.sptel {
  cursor: default;
  pointer-events: none;
}

.ilblk {
  display: inline-block;
}

.bg--cream {
  background-color: #f2eee8;
}

.clr--wh {
  color: #fff;
}

/* マウスストーカー */
#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 10px;
  height: 10px;
  background: rgba(199, 159, 98, 0.5);
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
}

.reservation {
  width: 33px;
  position: fixed;
  top: 50%;
  right: 17px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.reservation__link {
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  padding: 28px 0;
  line-height: 1;
  letter-spacing: 0.063em;
  background-color: #526a7c;
}

.btn {
  color: #c79f62;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding-bottom: 20px;
  padding-left: 5px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  max-width: 235px;

  position: relative;

  /* ↓ここがポイント */
  background-image: linear-gradient(#c79f62, #c79f62);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% 1px;

  transition: background-size 0.4s ease, background-position 0.4s ease;
}
.btn:hover {
  background-size: 0% 1px;
  background-position: right bottom;
}
.btn--type02 {
  display: block;
  width: fit-content;
  padding-bottom: 12px;
  padding-right: 5px;
}
.btn--type03 {
  font-size: 11px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  display: block;
  width: fit-content;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
.btn.clr--wh {
  color: #fff;
}
.btn.wh {
  background-image: linear-gradient(#fff, #fff);
}
.btn--center {
  margin: 0 auto;
}
.btn__arrow {
  width: 7px;
  height: 7px;
  position: absolute;
  right: 0;
  transition: 0.3s;
}
/* .btn:hover .btn__arrow {
  transform: translateX(6px);
} */
.btn--en {
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
}
.btn--en .btn__arrow {
  margin-bottom: 0;
}
.btn.max--none {
  max-width: 100%;
}

.section__subTitle {
  font-size: 13px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.063em;
  position: absolute;
  top: 0;
  left: 53px;
  z-index: 1;
}

.bg-img {
  position: relative;
}
.bg-img::before,
.bg-img::after {
  content: "";
  display: block;
  width: 428px;
  height: 302px;
  position: absolute;
  z-index: 0;
}
.bg-img::before {
  background: url("../imgs/common/bg_img.png") center center / contain no-repeat;
  top: 21px;
  left: 13px;
}
.bg-img::after {
  background: url("../imgs/common/bg_img2.png") center center / contain no-repeat;
  bottom: 65px;
  right: 13px;
}
.contents {
  position: relative;
  z-index: 1;
}
.contents__wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
.contents__wrap.reverse {
  flex-direction: row-reverse;
}
.contents__wrap.center {
  align-items: center;
}
.contents__wrap.block {
  display: block;
}
.contents__lft.text {
  padding-top: 35px;
}
.contents__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.contents__flex.block {
  display: block;
}
.contents__title {
}
.contents__title--en {
  font-size: 18px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.063em;
}
.contents__title--ja {
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.063em;
}
.contents__textLrg {
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.05em;
}
.contents__textSml {
  font-size: 12px;
  margin-bottom: 65px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.back-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
}

.fv-cover {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
}

.scroll-hint-text {
  font-family: "Noto Sans JP", sans-serif;
}

.modal__txt1 {
  padding-top: 90px;
}
/* 404ページ↓ */
.not-found div {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 180px 0;
  min-height: 60vh;
}
.not-foun__en {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Figtree", sans-serif; /*それぞれのサイトの英数字のフォントに合わせる*/
}
.not-foun__ja {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 2.2;
}
.not-foun__ja strong {
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}
.not-found a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  display: inline;
}
/* 404ページ↑ */

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1350px) {
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 700px) {
  a.sptel {
    cursor: pointer;
    pointer-events: auto;
  }
}

@media screen and (max-width: 750px) {
  #mouse-stalker {
    display: none;
  }

  .inner--narrow.right {
    margin: 0;
  }

  .bg-img::before,
  .bg-img::after {
    width: 57.066vw;
    height: 40.266vw;
  }
  .bg-img::before {
    top: 2.8vw;
    left: 1.733vw;
  }
  .bg-img::after {
    bottom: 8.666vw;
    right: 1.733vw;
  }

  .contents__wrap {
    display: block;
  }
  .contents__flex {
    margin-bottom: 40px;
  }
  .contents__textSml {
    margin-bottom: 45px;
  }

  .section__subTitle {
    display: none;
  }

  .fv-cover {
    height: 100svh;
  }

  /* 404ページ↓ */
  .not-found div {
    padding: 120px 0 70px;
  }
  .not-foun__en {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .not-foun__ja {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .not-foun__ja strong {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .not-found a {
    font-size: 14px;
  }
  /* 404ページ↑ */
}

@media screen and (max-width: 480px) {
  .reservation {
    right: 0;
  }
}

@media screen and (max-width: 375px) {
  .contents__flex {
    display: block;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 375px) {
}
