@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;
    letter-spacing: 2px;
  }
}

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;
  }
}


.date {
  display: none;
}

#overlay1 {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
  width: 80%;
  height: 80%;
}

#bg_gray1 {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
}

#window1 {
  width: 70%;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
  z-index: 90;
}
@media (max-width: 430px) {
  #window1 {
    width: 90vw;
  }
}

#window1 img {
  width: 50%;
  height: auto;
}
@media (max-width: 430px) {
  #window1 img {
    width: 70vw;
  }
}

#btn_cloth1 {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5da5ce;
  border-radius: 5px;
  z-index: 100;
  cursor: pointer;
}
#btn_cloth1:hover {
  opacity: 0.7;
}
#btn_cloth1 span,
#btn_cloth1 span::before {
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
}
#btn_cloth1 span {
  transform: rotate(45deg);
}
#btn_cloth1 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-90deg);
}

/* クリックで表示 */
#popup1:checked ~ #overlay1 {
  visibility: visible;
}
@keyframes fadein {
  100% {
      opacity: 1;
  }
}
/* コンテンツ部分のスタイル */
.album_container {
  width: 70vw;
}
@media (max-width: 430px) {
  .album_container {
    width: 90vw;
  }
}
.album_box {
  width: 60vw;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 430px) {
  .album_box {
    width: 80vw;
  }
}
.album_box img {
  width: 15vw;
  height: auto;
}
@media (max-width: 430px) {
  .album_box img {
    width: 20vw;
  height: auto;
  }
}

.txt_label {
  text-decoration: underline;
  cursor: pointer;
}
.txt_label:hover {
  opacity: 0.7;
}

.discount {
  margin: 10vw auto 10vw auto;
  width: 70vw;
  font-family: 'Noto Serif JP', serif;
  line-height: 300%;
  font-size: 1.25vw;
}
@media (max-width: 768px) {
  .discount {
    width: 70vw;
    margin: 20vw auto 10vw auto;
  }
}
@media (max-width: 430px) {
  .discount {
    width: 90vw;
  }
}

.discount_title {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 5vw;
}
/* リザベーション */



.reserve {
  margin: 10vw 0 10vw 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 2vw;
  line-height: 200%;
}
@media (max-width: 430px) {
  .reserve__text {
    margin: 20vw 0;
  }
}

.reserve__text {
  font-size: 16px;
  line-height: 300%;
}
@media (max-width: 768px) {
  .reserve__text {
    font-size: 14px;
  }
}
@media (max-width: 430px) {
  .reserve__text {
    font-size: 12px;
  }
}

@media (min-width: 769px) {
  .break {
    display: none;
  }
}


/* フォーム */

.wrapper {
  width: 60vw;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  align-items: center;
}
@media (max-width: 768px) {
  .wrapper {
    width: 80vw;
  }
}

.form-title {
  text-align: center;
  font-size: 16px;
}

label {
  margin-bottom: 20px;
  letter-spacing: 2.5px;
  text-align: left;
}

input {
  background-color: #dedede;
  width: 100%;
  height: 2.5em;
  border-radius: 10px;
  padding: 1em;
  color: #333;

}

textarea {
  background-color: #dedede;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  padding: 1em;
}

.form-container__item {

  flex-direction: column;
  text-align: left;
  margin-top: 40px;
}

.radio-area {
  flex-direction: column;
}
@media (max-width: 768px) {
  .radio-area {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

.radio-item {
  width: auto;
  height: auto;
  margin: 20px 5px;
}

.button {
  text-align: center;
}

.form-button {
  background-color: #789be1;
  border-radius: 20px;
  width: 75%;
  height: 3em;
  padding: 0;
  color: #333;
  font-weight: bold;
}

.form-container__minibox {
  width: 60vw;
  margin: 5vw auto;
}
@media (max-width: 768px) {
  .form-container__minibox {
    width: 80vw;
  }
}

.privacy {
  width: 60vw;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .privacy {
    width: 80vw;
  }
}

.privacy__title {
  padding-bottom: 20px;
}

.privacy ol {
  font-size: 1vw;
  line-height: 200%;
}
@media (max-width: 768px) {
  .privacy ol {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
}


.privacy ol,
li {
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .privacy ol,
li {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
}



/* フッター */
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%;
}