@charset "utf-8";
/* ============================
common
===============================*/
:root {
  --primary-white: #FCFAF7;
  --primary-whiteLow: #F1F1F1;
  --primary-black: #1C1C1C;
  --primary-green: #2E4A3F;
  --primary-gray: #7F7F7F;
  --primary-yellow: #C2A14D;
  --contentPadding-pc: 9.7%;
  --contentPadding-sp: 4.2%; 
}

html {
  font-size: 62.5%;
}

body {
  font-family: kinuta-maruminold-stdn, serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-black, #1C1C1C);
  background-color: var(--primary-white, #FCFAF7);
}

body.is-modal-open {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

.font--en {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 400;
}

.reservationBtn,
.nav__reservationBtn {
  display: inline-block;
  padding: 10px 16px;
  align-items: center;
  white-space: nowrap;
  border-radius: 5px;
  color: var(--primary-whiteLow, #F1F1F1);
  background-color: var(--primary-green, #2E4A3F);
  transition: 0.5s;
}

.reservationBtn:hover,
.nav__reservationBtn:hover {
  opacity: 0.8;
}

.btn--green {
  background-color: var(--primary-green, #2E4A3F);
}

.btn--yellow {
  background-color: var(--primary-yellow, #C2A14D);
}

.googleMap {
  font-size: 1.4rem;
  margin-top: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

.siteLink__icon {
  width: 10px;
  aspect-ratio: 1/1;
}

.br--pc {
  display: none;
}

/* common pc */
@media screen and (min-width: 1025px) {
  .reservationBtn {
    padding: 15px 24px;
  }

  .br--pc {
    display: block;
  }
}/* pc 769px */

/* ============================
header
===============================*/
.header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__inner {
  width: 100%;
  padding: 8px var(--contentPadding-sp);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ヘッダー　ロゴ */
.logo {
  width: 23.3%;
  max-width: 80px;
  aspect-ratio: 1;
  display: block;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 0.5s
}

.logo.logo--white::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/logo-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0;
  transition: 0.5s;
}

.logo.logo--green::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/logo-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0;
  transition: 0.5s;
}

.visually--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ヘッダー　ナビゲーションリスト */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.switch__english {
  display: none;
}

.navBtn {
  width: 40px;
  height: 20px;
  display: block;
}

.nav__list {
  display: none;
}

.nav__list:nth-child(5) {
  display: block;
}

.nav__list.nav--black {
  color: var(--primary-black, #1C1C1C);
  transition: 0.5s;
}

.nav__list.nav--white {
  color: var(--primary-whiteLow, #F1F1F1);
  transition: 0.5s;
}

.nav__item:hover {
  opacity: 0.8;
}

/* ヘッダー　ハンバーガーボタン */
.headerBtn {
  width: 40px;
  height: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}

.headerBtn span {
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0;
}

.headerBtn span:nth-last-of-type(1) {
  top: 0;
}

.headerBtn span:nth-last-of-type(2) {
  top: 10px;
}

.headerBtn span:nth-last-of-type(3) {
  bottom: 0;
}

.headerBtn.btn--black span {
  background-color: var(--primary-black, #1C1C1C);
  transition: 0.5s;
}

.headerBtn.btn--white span {
  background-color: var(--primary-white, #FCFAF7);
  transition: 0.5s;
}

/* header header--white pc */
@media screen and (min-width: 1025px) {
  .header__inner {
    padding: 40px 2.22% 0;
  }

  .logo {
    width: 8.71%;
    max-width: 120px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}/* pc 769px */

/* ============================
modalNav
===============================*/
/* モーダルナブ：ハンバーガーメニューの展開画面 */
.modalNav {
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow-y: scroll;
  inset: 0;
  z-index: 300;
  color: var(--primary-whiteLow, #F1F1F1);
  background-color: var(--primary-green, #2E4A3F);
  transform: translateX(100%);
  transition: 0.8s;
}

.modalNav.active {
  transform: translateX(0);
}

.modalNav__img {
  display: none;
}

.modalNav__top {
  margin: 8px var(--contentPadding-sp);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modalLogo {
  width: 21%;
  min-width: 80px;
  aspect-ratio: 1;
  display: block;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.modalLogo.logo--white::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/logo-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0;
}

.modalNav__top-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.switch__english:hover {
  opacity: 0.8;
}

.modalNav__menu {
  margin: 56px 12.8% 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.modalNav__mainMenu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modalNav__mainMenu-item {
  display: block;
}

.modalNav__mainMenu-item:hover {
  opacity: 0.8;
}

.mainMenuLink-name {
  font-size: 2.0rem;
  vertical-align: middle;
}

.mainMenuLink-subName {
  margin-left: 16px;
  font-size: 1.4rem;
  vertical-align: middle;
}

.modalNav__subMenu {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.modalNav__subMenu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "Noto Serif JP", serif;
}

.modalNav__subMenu-item:hover {
  opacity: 0.8;
}

.modalNav__sns {
  display: flex;
  gap: 44px;
}

.modalNav__sns:hover {
  opacity: 0.8;
}

.snsLink {
  width: 24px;
  aspect-ratio: 1;
}

.modalNav__footer {
  margin: 48px 12.8% 72px;
}

.tellNum {
  font-size: 2.4rem;
}

.modalNav__footer-adress {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.googleMap:hover {
  opacity: 0.8;
}

/* modalNav pc*/
@media screen and (min-width: 1025px) {
  .modalNav {
    display: flex;
    overflow: hidden;
  }

  .modalNav__img {
    width: 50%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 99999;
  }

  .modalNav__img::after {
    content: "";
    width: 37.5%;
    aspect-ratio: 1;
    background-image: url(../images/logo-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .modalNavImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modalNav--right {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    height: auto;
  }

  .modalNav__top {
    margin: 63px 9.7% 23px 0;
  }

  .modalNav__top .modalLogo {
    display: none;
  }

  .modalNav__top-list {
    gap: 50px;
  }

  .modalNav__top-item:nth-child(2) {
    display: inline-block;
  }

  .modalNav__menu {
    margin: 56px 15.1% 0 12.7%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13.8%;
  }

  .mainMenuLink-name {
    font-size: 2.4rem;
  }

  .mainMenuLink-subName {
    font-size: 1.6rem;
  }

  .modalNav__subMenu {
    margin-top: 56px;
    gap: 60px;
  }

  .modalNav__subMenu-list {
    gap: 30px;
  }

  .modalNav__footer {
    margin: 56px 12.5% 72px;
  }
}/* pc 769px */

/* ============================
footer
===============================*/
.footer {
  padding: 0 var(--contentPadding-sp);
  color: var(--primary-whiteLow, #F1F1F1);
  background-color: var(--primary-green, #2E4A3F);
}

.footer--left {
  padding: 48px 2.33% 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__logo {
  width: 45.8%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.footer__adress--left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__tell {
  font-size: 2.4rem;
}

.footer--right {
  padding: 56px 4.66%;
}

.footer__nav-menu-lsit--right {
  font-size: 2.0rem;
  display: flex;
  gap: 16px 4.57%;
  flex-wrap: wrap;
}

.footer__nav-menu-item--right:hover {
  opacity: 0.8;
}

.footer__reservationBtn {
  margin-top: 48px;
  padding: 15px 30px;
  border: 1px solid var(--primary-whiteLow, #F1F1F1);
  display: block;
  transition: 0.5s;
}

.footer__reservationBtn:hover {
  color: var(--primary-green, #2E4A3F);
  background-color: var(--primary-whiteLow, #F1F1F1);
}

.footer__sns--right {
  margin-top: 48px;
}

.footer__sns-list--right {
  display: flex;
  gap: 4.57%;
}

.footer__sns-item--right:hover {
  opacity: 0.8;
}

.footer__menu--bottom {
  margin-top: 48px;
}

.footer__menu-list--bottom {
  font-family: "Noto Serif JP";
  display: flex;
  gap: 16px 4.57%;
  flex-wrap: wrap;
}

.footer__menu-item--bottom:hover {
  opacity: 0.8;
}

.copy {
  font-family: "Noto Serif JP", serif;
  font-size: 1.0rem;
  padding: 25px 0;
  text-align: center;
  display: block;
}

/* footer pc*/
@media screen and (min-width: 1025px) {
  .footer {
    padding: 0;
    margin: 0;
  }

  .footer__wrap {
    display: flex;
  }

  .footer--left {
    width: 38.5%;
    min-width: 549px;
    padding: 56px 6.95%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer__logo {
    width: 49.7%;
    aspect-ratio: 1/1;
    align-self: center;
    margin: 0;
  }

  .footer__adress--left {
    font-size: 2.0rem;
  }

  .footer__tell {
    font-size: 3.6rem;
  }

  .footer--right {
    width: 61.5%;
    padding: 84px var(--contentPadding-pc) 62px 4.87%;
  }

  .footer__nav-menu-lsit--right {
    gap: 7%;
  }

  .footer__reservationBtn {
    margin-top: 56px;
  }

  .footer__sns--right {
    margin-top: 56px;
  }

  .footer__menu--bottom {
    margin-top: 56px;
  }

  .footer__menu-list--bottom {
    gap: 11.59%;
  }

  .copy {
    font-size: 1.2rem;
    padding: 25px 0 30px;
  }
}/* pc 1025px */

/* ============================
ctaBtn / topBtn
===============================*/
/* ご予約ボタン */
.ctaBtn {
  display: none;
}

/* トップページボタン */
.top__btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: fixed;
  bottom: 5%;
  right: 0;
  z-index: 100;
}

.topBtn__bar {
  width: 1px;
  height: 20px;
  background-color: var(--primary-black, #1C1C1C);
  transition: height 0.3s ease, transform 0.3s ease;
}

.topBtn__bar.topBtn--white {
  background-color: var(--primary-whiteLow, #F1F1F1);
}

.topBtn__text {
  font-size: 1.0rem;
  display: block;
  writing-mode: vertical-rl;
  color: var(--primary-black);
}

.topBtn__text.topBtn--white {
  color: var(--primary-whiteLow, #F1F1F1); 
}

.top__btn:hover .topBtn__bar {
  height: 40px;
}

/* ctaBtn/topBtn pc */
@media screen and (min-width: 1025px) {
  .ctaBtn {
    width: 8.35vw;
    max-width: 120px;
    aspect-ratio: 1;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 50%;
    color: var(--primary-whiteLow, #F1F1F1);
    background-color: var(--primary-yellow, #C2A14D);
    display: block;
    position: fixed;
    bottom: 24%;
    right: 1.1%;
    z-index: 100;
  }

  .ctaBtn:hover {
    opacity: 0.5;
  }

  .top__btn {
    right: 4.4%;
  }

  .topBtn__bar {
    height: 40px;
  }

  .top__btn:hover .topBtn__bar {
    height: 60px;
  }

  .topBtn__text {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1281px) {
  .ctaBtn {
    font-size: 2.0rem;
  }
}
/* ここから、index.html以外（concept/room/food/experience.html)の共通css */

/* ============================
heroView
===============================*/
.heroView {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  overflow: hidden;
}

.heroView__img {
  width: 100%;
  height: 100%;
}

.heroViewImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(85%);
  z-index: 1;
}

.heroView__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-whiteLow, #F1F1F1);
}

.pageTitle {
  font-size: 5.6rem;
  font-weight: 500;
}

.pageSubTitle {
  text-align: center;
  font-size: 2.4rem;
}

/* hero vieww pc */
@media screen and (min-width: 1025px) {
  .heroView {
    display: flex;
    flex-direction: row-reverse;
  }

  .heroView__img {
    width: 57.6%;
    max-width: 830px;
  }

  .heroView__title {
    width: 32.6%;
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-50% 0%);
  }
  
  .pageTitle {
    font-size: 5.6rem;
    font-weight: 500;
    color: var(--primary-green, #2E4A3F);
  }
  
  .pageSubTitle {
    text-align: left;
    font-size: 2.4rem;
    color: var(--primary-gray, #7F7F7F);
  }
}/* pc 1025px */

/* ============================
main & section 調整
===============================*/
.main {
  margin-top: 0;
}

/* =======================================
concept/room/food/experience section
==========================================*/
.section {
  margin: 150px var(--contentPadding-sp);
}

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

.sectionTitle--secondary {
  font-size: 2.4rem;
  margin: 0 auto;
}

.sectionSubTitle--secondary {
  color: var(--primary-gray, #7F7F7F);
}

.emphasis {
  font-size: 2.0rem;
}

.font--red {
  color: var(--primary-red, #A63B2E);
}

/* page: concept/room/food/experience common pc */
@media screen and (min-width: 1025px) {
  .section {
    margin: 250px 0 0;
  }

  .sectionTitle--secondary {
    font-size: 3.2rem;
  }

  .sectionSubTitle--secondary {
    font-size: 2.0rem;
  }

  .emphasis {
    font-size: 3.2rem;
  }
}/* pc 769px */

/* ============================
intro
===============================*/
.section__intro {
  margin:  150px var(--contentPadding-sp) 0;
}

.section__intro-wrap {
  margin-top: 56px;
  padding: 0 2.33%;
  align-self: stretch;
}

.section__intro-catch {
  font-size: 2.0rem;
  color: var(--primary-green, #2E4A3F);
}

.section__intro-text {
  line-height: 2;
}

/* intro pc */
@media screen and (min-width: 1025px) {
  .section__intro {
    margin: 250px auto 0;
    width: 41.7%;
  }

  .section__intro-wrap {
    padding: 0;
  }
}/* pc 769px */