@charset "UTF-8";

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cbb492;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1.5s ease, visibility 1.5s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-screen__logo {
  width: 200px;
  height: auto;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* 共通 */
/* セクション見出し */
.section__heading {
  color: #374052;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

/* 共通の下線 */
.section__line {
  display: block;
  width: 22px;
  height: 3px; /* 線の太さ */
  background-color: #697f87;
  margin: 0 auto 45px; /* 中央寄せ＋下余白 */
}

/* 改行設定 */

.sp-br {
  display: none;
}
.pc-br {
  display: inline;
}
.sp-block {
  display: inline;
}

/* View More */
.button {
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border: 1px solid #697f87;
  border-radius: 999px;
  color: #374052;
  text-decoration: none;
  font-size: 16px;
  background-color: #f4f5f7;
  transition: all 0.3s ease;
}

.button__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #697f87;
  background-image: url("../images/arrow＿white.svg");
  background-size: 10px 8px;
  background-position: calc(50% + 1px) center;
  background-repeat: no-repeat;
  color: #f4f5f7;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.menu__button {
  width: 35%;
  justify-content: center;
  align-self: flex-end;
}

/* ホバーアニメーション */
.button:hover {
  background-color: #697f87;
  border-color: #f4f5f7;
  color: #f4f5f7;
}

.button:hover .button__icon {
  background-color: #f4f5f7;
  background-image: url("../images/arrow＿Blue.svg");
  color: #697f87;
}

body {
  background-color: #d8d3c9;
  margin: 0;
  font-family: "EB Garamond", "Kozuka Mincho Pr6N", serif;
  color: #374052;
  letter-spacing: 0.04em;
  padding-top: 110px;
}

/* ページ内リンクのスクロール調整 */
section[id],
div[id] {
  scroll-margin-top: 110px;
}

/* header */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 150px;
  height: 110px;
  background-color: #f4f5f7;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #374052;
  margin-left: auto;
}

.header__logo {
  margin: 0;
}

.header__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.header__reserve {
  text-decoration: none;
  color: #374052;
  font-size: 24px;
  font-weight: bold;
}

/* hamburger menu */
.hamburger {
  position: relative;
  width: 35px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #374052;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
  width: 25px;
  left: auto;
  right: 0;
}

/* active状態 */
.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 10px;
  width: 35px;
  transform: rotate(-45deg);
}

/* drawer menu */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(203, 180, 146, 0.95);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer__wrap {
  line-height: 1.5;
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 250px 150px 0px;
  height: 100%;
  box-sizing: border-box;
}

.drawer__left {
  color: #f4f5f7;
  font-size: 18px;
  line-height: 1.8;
}

.drawer__address,
.drawer__tel,
.drawer__hours {
  margin: 0 0 20px 0;
}

.drawer__tel a {
  color: #f4f5f7;
  text-decoration: none;
}

.drawer__links {
  display: flex;
  gap: 20px;
}

.drawer__instagram {
  display: inline-block;
  margin: auto 0;
}

.drawer__instagram img {
  width: 30px;
  height: 30px;
  display: block;
}

.drawer__reserve {
  display: inline-block;
  padding: 0px 20px;
  border: 1px solid #f4f5f7;
  color: #f4f5f7;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.drawer__reserve:hover {
  background-color: #f4f5f7;
  color: #cbb492;
}

.drawer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.drawer__navi__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.drawer__navi-small + .drawer__navi-small {
  margin-top: 10px;
}

.drawer__navi {
  color: #f4f5f7;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.drawer__navi:hover {
  opacity: 0.7;
}

.drawer__navi-small {
  color: #f4f5f7;
  text-decoration: none;
  font-size: 22px;
  font-weight: normal;
  transition: opacity 0.3s ease;
  text-indent: 1em;
}

.drawer__navi-small:hover {
  opacity: 0.7;
}

/* mv */
.mv {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 120px;
  padding-bottom: 6vw;
}

.mv__img {
  aspect-ratio: 1040 / 520;
  width: 79.03vw;
  margin-left: auto;
}

.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 80px 85px 80px 150px;
  letter-spacing: 0.05em;
}

.mv__title {
  color: #374052;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  text-align: end;
}

/* about */
.about {
  text-align: center;
}

.about__heading {
  color: #374052;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}

/* 横線 */
.about__line {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #697f87;
  margin: 12px auto 0;
}

.about__text {
  font-size: 18px;
  line-height: 30px;
}

.about__text__block {
  line-height: 2;
  margin: 0;
}

.about__text__block + .about__text__block {
  margin-top: 1em;
}

/* menu */
.menu {
  margin: 120px auto;
  max-width: 1138px;
}

.menu__title + .menu__text {
  margin-top: -1em;
}

.menu__list {
  display: flex;
  gap: 47px;
  margin: 70px auto 0px;
  padding-bottom: 120px;
  justify-content: center;
}

.menu__item {
  display: flex;
}

.menu__inner {
  max-width: 345px;

  display: flex;
  flex-flow: column;
}

.menu__img {
  width: 100%;
  /* aspect-ratio: 345 / 245; */
  object-fit: cover;
  display: block;
}

.menu__note {
  font-weight: normal;
}

.menu__wrap {
  display: flex;
  flex-flow: column;
}

/* Gallery */
.gallery {
  text-align: center;
  margin: 270px 0;
  position: relative;
  background-color: #cbb492;
}

/* 上の曲線 */
.gallery__bg-top {
  position: absolute;
  width: 100%;
  height: 120px;
  overflow: hidden;
  top: -120px;
}

.gallery__bg-top::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500vw;
  height: 400vw;
  border-radius: 50%;
  background-color: #cbb492;
}

/* ギャラリーコンテンツ */
.gallery__content {
  background-color: #cbb492;
  padding: 0 0 20px 0;
  text-align: center;
}

.heading__gallery {
  color: #f4f5f7;
  padding-top: 0;
  margin-top: 0;
}

.gallery__bg {
  padding: 50px auto 90px;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #cbb492;
}

/* 下の曲線 */
.gallery__bg-bottom {
  position: absolute;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.gallery__bg-bottom::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500vw;
  height: 400vw;
  border-radius: 50%;
  background-color: #cbb492;
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 55.56vw;
  margin: 110px auto 220px;
}

.gallery__list picture:nth-of-type(even) {
  transform: translateY(50%);
}

.gallery__img {
  width: 27.78vw;
  aspect-ratio: 400 / 248;
  object-fit: cover;
  display: block;
}

/* access */
.access {
  margin: 0 auto 120px;
  max-width: 985px;
}

.access__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.access__wrap {
  display: flex;
  flex-flow: column;
  max-width: 1100px;
}

.access__row {
  display: flex;
  align-items: baseline;
}

.assets__subtitle {
  font-weight: bold;
  min-width: 80px;
  flex-shrink: 0;
  margin-right: 15px;
}

.access__row + .access__row {
  margin-top: 10px;
}

.access__list {
  margin: 0 0 0 50px;
}

.access__text__top {
  padding: 0px 5px;
}

.access__text {
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  border-bottom: solid 1px #697f87;
}

.under {
  display: inline-block;
  padding: 0px 5px 10px 5px;
}

.access__photo {
  width: 22.92vw;
}

.access__photo img {
  max-width: 330px;
  object-fit: cover;
  display: block;
}

.access__map {
  width: 100%;
  margin: 0 auto;
  margin-top: 55px;
  max-width: 985px;
}

.map {
  width: 100%;
  height: 420px;
}

/* footer */
.footer {
  background-color: #697f87;
  padding: 0px 150px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #f4f5f7;
}

.footer__logo {
  display: block;
  align-items: center;
  max-width: 190px;
  margin: 75px auto 30px;
  padding-right: 20px;
}

.footer__inner {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
}

.instagram_rogo {
  width: 35px;
  height: 35px;
  display: block;
  align-items: center;
}

.footer__reserve {
  text-decoration: none;
  font-size: 20px;
  font-weight: normal;
  color: #f4f5f7;
}

.reserve__border {
  padding: 5px 15px;
  border: solid 1px #f4f5f7;
}

.reserve__border p {
  margin: 0;
}

.footer__navi {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  gap: 60px;
  color: #f4f5f7;
  margin-bottom: 50px;
}

.footer__navi a {
  text-decoration: none;
  color: #f4f5f7;
}

.menu_navi {
  gap: 60px;
}

.menu__navi-small {
  font-size: 16px;
  font-weight: normal;
  margin-top: 2px;
}

.menu__navi-center {
  display: flex;
  gap: 12px;
}

.copyright {
  margin-bottom: 45px;
}

/* sp ここから */
@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .section__heading {
    font-size: 18px;
    margin-bottom: 5px;
  }

  /* 共通の下線 */
  .section__line {
    width: 20px;
    margin: 0 auto 25px; /* 中央寄せ＋下余白 */
  }

  /* View More */
  .button {
    gap: 10px;
    padding: 10px 24px;
    font-size: 12px;
  }

  .menu__button {
    width: 40%;
    justify-content: center;
    align-self: flex-end;
  }

  /* 改行設定 */
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }

  /* Loading Screen */
  .loading-screen__logo {
    width: 180px;
  }

  /* header */
  .header {
    height: 70px;
    max-width: 100%;
    padding: 20px 38px;
    justify-content: space-between;
  }

  .header__logo img {
    height: 25px;
    width: auto;
  }

  .header__reserve {
    font-size: 12px;
  }

  .hamburger {
    width: 30px;
    height: 25px;
  }

  .hamburger span {
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #374052;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(2) {
    top: 8px;
  }

  .hamburger span:nth-child(3) {
    top: 16px;
    width: 20px;
  }

  .hamburger.is-active span:nth-child(1) {
    top: 8px;
  }

  .hamburger.is-active span:nth-child(2) {
    top: 8px;
  }

  .hamburger.is-active span:nth-child(3) {
    top: 8px;
    width: 30px;
  }

  /* drawer menu */
  .drawer__navi {
    font-size: 18px;
  }

  .drawer__navi-small {
    font-size: 16px;
  }

  .drawer__navi-small + .drawer__navi-small {
    margin-top: 0px;
  }

  .drawer__wrap {
    display: none;
  }

  .drawer__content {
    padding: 70px 20px;
    justify-content: center;
    align-items: center;
    flex-flow: column-reverse;
  }

  .drawer__left {
    padding-top: 30px;
    border-top: 2px solid #f4f5f7;
    width: 70%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .drawer__right {
    padding-bottom: 30px;
    gap: 20px;
  }

  .drawer__reserve {
    font-size: 16px;
  }

  /* mv */
  .mv__img {
    aspect-ratio: 300 / 400;
    width: 76.34vw;
    margin-left: auto;
    margin-right: 0;
  }

  .mv__title {
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
  }

  .mv__copy {
    padding: 30px 53px 30px 35px;
    letter-spacing: 0.05em;
    bottom: -15px;
  }

  /* about */
  .about {
    padding: 0 37px;
  }

  .about__text {
    font-size: 14px;
  }

  .about__text__block-sp + .about__text__block-sp {
    margin-top: 15px;
  }

  .about__text__block {
    margin-bottom: 30px;
    line-height: 1.8;
  }

  .about__text__block-sp {
    margin: 15px 0;
    line-height: 1.8;
  }

  /* menu */
  .menu {
    margin: 80px auto;
    padding: 0 37px;
  }

  .menu__title + .menu__text {
    margin-top: -1em;
  }

  .menu__list {
    flex-flow: column;
    gap: 40px;
    margin: 40px auto 0px;
    padding-bottom: 80px;
    align-items: center;
  }

  .menu__inner {
    max-width: 345px;
    display: flex;
    flex-flow: column;
  }

  .menu__title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .menu__note {
    font-weight: normal;
    font-size: 14px;
  }

  .menu__text {
    font-size: 14px;
  }

  /* Gallery */
  .gallery {
    margin: 37px 0;
  }

  .gallery__content {
    background-color: #cbb492;
    padding: 0 0 20px 0;
    text-align: center;
  }

  /* 上の曲線 */
  .gallery__bg-top {
    height: 60px;
    top: -60px;
  }

  /* 下の曲線 */
  .gallery__bg-bottom {
    height: 60px;
  }

  .gallery__list {
    gap: 20px;
    max-width: 100%;
    margin: 50px 37px 110px 37px;
  }

  .gallery__list picture {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形 */
    display: block;
    overflow: hidden;
  }

  .gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* はみ出た分をトリミング */
    display: block;
  }

  /* access */
  .access {
    margin: 0 auto 80px;
    max-width: calc(100% - 60px);
  }

  .access__heading {
    margin-top: 150px;
  }

  .access__info {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .access__wrap {
    display: flex;
    flex-flow: column;
  }

  .access__row {
    display: flex;
    align-items: baseline;
  }

  .assets__subtitle {
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .access__row + .access__row {
    margin-top: 10px;
  }

  .access__list {
    margin: 20px auto 0px;
    width: 100%;
  }

  .access__text__top {
    padding: 0px 5px;
  }

  .access__text {
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    flex-grow: 1;
    border-bottom: solid 1px #697f87;
  }

  .under {
    display: inline-block;
    padding: 0px 5px 10px 5px;
  }

  .access__photo {
    width: 100%;
    margin-top: 30px;
  }

  .access__photo img {
    max-width: 100%;
    object-fit: cover;
    display: block;
  }

  .access__map {
    width: 100%;
    margin: 0 auto;
    height: 200px;
  }

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

  /* footer */
  .footer {
    padding: 40px 30px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer__content {
    display: flex;
    gap: 50px;
  }

  .menu__navi-small {
    text-indent: 1em;
  }

  .footer__logo {
    width: 95px;
    margin: 0 auto 20px 0;
  }

  .footer__inner {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }

  .instagram_rogo {
    max-width: 25px;
  }

  .footer__reserve {
    text-decoration: none;
    font-size: 20px;
    font-weight: normal;
    color: #f4f5f7;
  }

  .reserve__border {
    padding: 0px 10px;
    border: solid 1px #f4f5f7;
  }

  .reserve__border p {
    margin: 0;
  }

  .footer__navi {
    flex-flow: column;
    font-size: 18px;
    gap: 20px;
    margin-bottom: 50px;
  }

  .footer__navi a {
    text-decoration: none;
    color: #f4f5f7;
  }

  .menu__wrap {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
  }

  .access__map {
    margin: 0 auto;
    margin-top: 70px;
  }

  .copyright {
    margin-bottom: 0px;
  }

  .sp-only {
    display: initial;
  }

  .pc-only {
    display: none;
  }
}
