@charset "utf-8";

/* index.html */
body {
  font-size: 16px;
  color: #333;
  text-align: center;
  letter-spacing: 2.5px;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

ul,
li {
  list-style: none;
}

.flex {
  display: flex;
}

/* header */
.header {
  width: 100%;
  height: 8vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header__title {
  width: 80px;
}


@media (min-width: 960px) {
  .header__title {
    width: 10%;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: ease .4s;
  background-color: #ffffff;
}


@media (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 70%;
  }
}


@media (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}


@media (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}

.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: 'Great Vibes', cursive;
  letter-spacing: 4px;
  margin-bottom: 48px;
  text-decoration: none;
}

.nav-items__item a:hover {
  color: #7b6238;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}

.app__icon {
  width: 50px;
  height: auto;
}


/* ハンバーガーメニュー */
.header__hamburger {
  width: 30px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media (min-width: 960px) {
  .hamburger {
    display: none;
  }
}


.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.title {
  width: 100vw;
  height: 40vw;
  margin-top: 6vw;
  background-image: url(../images/art1.jpg);
  background-position: center;
  justify-content: center;
  align-items: center;
  font-family: 'Great Vibes', cursive;
  font-size: 6vw;
  letter-spacing: 1vw;
  color: #fff;
}
@media (max-width: 430px) {
  .title {
    margin-top: 20vw;
  }
}


iframe {
  margin-top: 10vw;
  width: 60vw;
  height: 30vw;
}
@media (max-width: 768px) {
  iframe {
    width: 85vw;
  height: 50vw;
  }
}

.map_box {
  width: 60vw;
  margin: 10vw auto 0 auto;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .map_box {
    width: 70vw;
  }
}
@media (max-width: 430px) {
  .map_box {
    width: 80vw;
    flex-direction: column;
    align-items: center;
    gap: 10vw;
  }
}

.map_box img {
  width: 25vw;
  height: auto;
}
@media (max-width: 768px) {
  .map_box img {
    width: 30vw;
    
  }
}
@media (max-width: 430px) {
  .map_box img {
    width: 70vw;
    
  }
}


.access {
  margin-top: 10vw;
}

.access_text {
  margin-top: 8vw;
  font-family: 'Noto Serif JP', serif;
  line-height: 400%;
}

.access_title {
  font-family: 'Noto Serif JP', serif;
  text-decoration: none;
  font-size: 1.25vw;
  margin-top: 10vw;
}
@media (max-width: 768px) {
  .access_title {
    font-size: 14px;
  }
}


.reserve {
  width: 100vw;
  height: 15vw;
  margin: 10vw 0 5vw 0;
  background-image: url(../images/art1.jpg);
  background-position: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: 'Great Vibes', cursive;
  font-size: 5vw;
  letter-spacing: 1vw;
  color: #fff;
  filter: grayscale(100%);
}

.reserve:hover {
  filter: grayscale(0%);
}

.click {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5vw;
}


/* フッター */
footer {
  padding: 20px 0;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}
@media (max-width: 768px) {
  footer {
    font-size: 10px;
  }
}

footer p {
  letter-spacing: 2.5px;
  line-height: 200%;
}

.policy_link {
  color: #333;
  text-decoration: none;
  letter-spacing: 2.5px;
  line-height: 200%;
}