:root {
  --font-en: "Noto Serif", serif;
  --font-jp: "Noto Serif JP", "serif";
  --font-en2: "Playwrite PE", serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* 共通 */
main {
  padding: 4px;
}

body {
  display: none;
  font-family: "Noto Serif", "Noto Serif JP", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.section-title {
  margin-bottom: 45px;
  text-align: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
}

.is-in-view {
  transform: translateY(0);
  transition: opacity 1s, transform 1s;
  opacity: 1;
}

.section-title-main {
  font-size: 1rem;
  font-weight: 300;
  display: block;
}

.section-title-sub {
  font-size: 0.7rem;
  font-weight: 300;
  display: block;
}

/* sp-header */

.sp-hum {
  width: 30px;
  height: 30px;
  position: fixed;
  z-index: 1001;
  top: 22px;
  right: 30px;
}

.sp {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
.sp-menu {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #eaeaea;
  z-index: 1000;
  top: 0;
  right: 0;
  transition: transform 1s;
}

.change-color {
  background-color: #999;
  transition: all 0.9s;
}

.sp-menu:nth-child(2) {
  top: 10px;
}

.sp-menu:nth-child(3) {
  top: 20px;
}

.sp-menu:nth-child(1).is-ck {
  transform: rotate(45deg);
  top: 10px;
  background-color: #999;
}

.sp-menu:nth-child(2).is-ck {
  display: none;
}
.sp-menu:nth-child(3).is-ck {
  transform: rotate(-45deg);
  top: 10px;
  background-color: #999;
}

.sp-header-list {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 14px;
  text-align: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: rgba(250, 250, 250, 0.94);
  padding-left: 0;
  transform: translateX(100%);
  transition: transform 1s;
}

.is-open {
  transform: translateX(0%);
}

.sp-header-item:nth-child(5) {
  padding-bottom: 14px;
}

.sp-header-link {
  font-size: 14px;
  color: black;
}
.nav-tel {
  display: block;
  padding: 10px;
  font-size: 14px;
  border: 1px solid black;
}

.nav-sns {
  margin-top: 24px;
}

.nav-sns span + span {
  padding-left: 15px;
}

/* fv */
.fv-box {
  width: 99%;
  margin: 0 auto;
  position: relative;
}

.fv-list {
  position: relative;
  z-index: -1;
}

.fv-item01 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/fv1.jpg) no-repeat center / cover;
  height: 86dvh;
}

.fv-item02 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/fv2.jpg) no-repeat center / cover;
  height: 86dvh;
}

.fv-item03 {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/fv3.jpg) no-repeat center / cover;
  height: 86dvh;
}

.fv-item::backdrop {
  opacity: 0.7;
}
.fv-item img {
  width: 100%;
  height: 88vh;
  object-fit: cover;
  opacity: 0.7;
}

.fv-lead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.fv-main {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 100;
  letter-spacing: 5px;
  color: #eaeaea;
  opacity: 0;
  visibility: hidden;
  transition: all 3s ease-out 1000ms;
}

@keyframes transition {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.is-load1 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.fv-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 100;
  color: #eaeaea;
  opacity: 0;
  visibility: hidden;
  transition: all 2.5s ease-out 900ms;
}

.is-load2 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .fv-item01 {
    height: 80vh;
    background-position: top 40% center;
  }
  .fv-item02 {
    height: 80vh;
  }
  .fv-item03 {
    height: 80vh;
    background-position: top 40% center;
  }

  .fv-main {
    font-size: 4rem;
  }

  /*=====min-width768px=====*/
}

/* concept  */

.concept-box {
  padding: 20px 0 0 25px;
  height: 120px;
}

.concept-lead {
  font-family: var(--font-jp);
  font-weight: 100;
  font-size: 0.8rem;
}

.concept-lead span {
  opacity: 0;
}
.concept-lead.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.appeartext {
  font-weight: 100;
  font-size: 0.8rem;
}

.concept-lead-sub {
  font-size: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: all 1s;
}

.is-concept {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .concept-box {
    height: 190px;
  }
  .concept-lead {
    font-size: 1rem;
    font-weight: 100;
  }

  .concept-lead-sub {
    font-size: 1rem;
    font-weight: 300;
  }

  .appeartext span {
    font-weight: 100;
    color: black;
  }

  /*=====min-width768px=====*/
}
/* slider */
.slider {
  margin-bottom: 80px;
}

.slide-item {
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .slider {
    width: 100%;
  }

  .slide-item {
    max-width: 900px;
    height: auto;
    object-fit: cover;
  }

  /*=====min-width768px=====*/
}

/* about */

.about {
  padding-top: 45px;
}

.section-lead {
  text-align: center;
  font-size: 0.7rem;
  line-height: 3.5;
  margin-bottom: 60px;
}

.more {
  text-align: right;
  padding-right: 15%;
  margin-bottom: 45px;
}
.about-more {
  font-size: 0.8rem;
  font-weight: 300;
  position: relative;
  padding-right: 10px;
}

.about-more:hover {
  opacity: 0.7;
  transition: all 300ms;
}

.about-more::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -10px;
  width: 6px;
  height: 11px;
  margin-top: -4px;
  background: url(../img/link-arrow.svg) no-repeat center / cover;
  background-size: 6px 11px;
}
.about-more:hover::after {
  transform: translateX(8px);
  transition: all 300ms;
}

@media screen and (min-width: 768px) {
  .section-lead {
    font-size: 0.9rem;
  }

  /*=====min-width768px=====*/
}
/* gallery */

.gallery-box {
  margin-bottom: 150px;
}

.gallery-list {
  height: auto;
  object-fit: contain;
}

@media screen and (min-width: 768px) {

  .gallery-list img {
    width: 100%;
  }
  /*=====min-width768px=====*/
}

/* plan */
.menu {
  position: relative;
  overflow: hidden;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-bottom: 45px;
}

.menu::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/plan-bg.jpg) no-repeat top center / cover;
  filter: blur(8px);
}

.menu-box {
  position: relative;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}

.menu-title {
  position: relative;
  text-align: center;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  padding-bottom: 24px;
}

.menu-list {
  padding: 30px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 45px;
}

.menu-list-ta {
  width: 100%;
  font-size: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.td-left {
  text-align: left;
  padding-left: 24px;
  padding-bottom: 24px;
}

.td-right {
  text-align: right;
  padding-left: 24px;
  padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .menu-box {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1280px;
  }

  .menu-list {
    flex-basis: 50%;
  }

  /*=====min-width768px=====*/
}

/* style */

.style {
  padding: 80px 8%;
  margin-bottom: 80px;
}

.style-box {
  position: relative;
}

.style-list {
  display: flex;
  flex-wrap: nowrap;
  background-color: black;
}

.style-item {
  width: 25%;
  height: auto;
  opacity: 0.6;
}

.style-img {
  width: 100%;
  height: auto;
}

.style-link-in {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.style-link-in img {
  width: 20px;
  color: aliceblue;
}

.style-link-in span {
  display: block;
  color: #eaeaea;
  font-size: 0.7rem;
  padding-top: 5px;
}

@media screen and (min-width: 768px) {
  .style-box {
    max-width: 1000px;
    margin: 0 auto;
  }

  .style-box:hover {
    opacity: 0.8;
  }
  .style-link-in img {
    width: 40px;
  }

  .style-link-in span {
    font-size: 1rem;
  }
  /*=====min-width768px=====*/
}

/* access */

.access {
  position: relative;
  margin-bottom: 124px;
  padding-top: 80px;
}

.access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 30%;
  z-index: -5;
  background-color: rgb(213, 219, 214, 0.2);
}

.access-text-box {
  padding-bottom: 45px;
  text-align: center;
}

.access-title {
  font-size: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  padding-bottom: 24px;
}

.access-sub {
  font-size: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  padding-bottom: 24px;
}

.access-sub2 {
  font-size: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  padding-bottom: 45px;
}

.access-map-link {
  display: block;
  color: white;
  font-size: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  background: rgba(213, 219, 214);
  width: 200px;
  padding: 5px;
  margin: 0 auto 32px auto;
}

.access-map-box {
  padding-left: 10%;
  margin-bottom: 45px;
}

@media screen and (min-width: 768px) {
  .access-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
  }

  .access-text-box {
    flex-basis: 50%;
  }

  .access-map-box {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding-left: 0;
  }

  /*=====min-width768px=====*/
}

/* reservation */

.reservation {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: black;
  z-index: 0;
}

.reservation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  background: url(../img/reservation.jpg) no-repeat center / cover;
  opacity: 0.4;
}

.reservation-title {
  text-align: center;
  margin-bottom: 45px;
}
.reservation-title-main {
  font-size: 1rem;
  font-weight: 300;
  color: white;
  display: block;
}

.reservation-title-sub {
  font-size: 0.7rem;
  font-weight: 300;
  color: white;
  display: block;
}

.reservation-tel {
  display: block;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid white;
}

.reservation-ttl {
  font-size: 0.7rem;
  font-weight: 300;
  color: white;
  display: block;
}

@media screen and (min-width: 768px) {
  .reservation-tel {
    max-width: 600px;
  }
  /*=====min-width768px=====*/
}

/* footer */

.footer {
  padding-top: 140px;
  padding-bottom: 40px;
  background-color: rgb(213, 219, 214, 0.1);
}

.footer-logo {
  text-align: center;
  padding-bottom: 24px;
  display: none;
}

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

.footer-nav-item {
  padding: 12px;
}

.footer-nav-link {
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.footer-copyright {
  text-align: center;
  font-weight: 100;
  font-size: 0.5rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  padding-top: 45px;
}

@media screen and (min-width: 768px) {
  .footer-logo {
    display: block;
    padding-bottom: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }

  .footer-logo span {
    display: block;
    font-size: 0.5rem;
  }
  .footer-box-pc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 59px;
    padding-bottom: 0;
  }
  .footer-nav-list {
    display: flex;
  }

  /*=====min-width768px=====*/
}

@media screen and (min-width: 877px) {
  .footer-logo span {
    display: block;
    font-size: 0.5rem;
  }
  /*=====min-width977px=====*/
}
