@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 200;
  color: #3F4D52;
}

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

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
  display: inline-block;
}

.section-title {
  font-family: "Marcellus", serif;
  font-size: 1.9rem;
  letter-spacing: 0.25em;
  color: rgba(141, 156, 184, 0);
  margin-bottom: 80px;
  transform: translateY(10px);
  transition: all 1s ease;
}
@media screen and (max-width: 1000px) {
  .section-title {
    margin-bottom: 50px;
    font-size: 1.8rem;
    letter-spacing: 0.22em;
  }
}

main {
  background-color: #F7F4EF;
}

.wrapper {
  max-width: 1200px;
  padding-inline: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    padding-inline: 40px;
  }
}

section {
  padding-block: 100px;
}
@media screen and (max-width: 1000px) {
  section {
    padding-block: 70px;
  }
}

.middle {
  font-size: 1.27rem;
  letter-spacing: 0.25em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .middle {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
}

.small {
  font-size: 0.987rem;
  letter-spacing: 0.27em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .small {
    font-size: 0.875rem;
    letter-spacing: 0.18em;
  }
}

.fadeIn,
.fadeIn-left .fadeIn-right {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  animation: fadeIn 1.5s ease-in-out 0s 1 forwards;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.fadeIn-left.is-show {
  animation: fadeIn-left 1.5s ease-out 0s 1 forwards;
}
@keyframes fadeIn-left {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.fadeIn-right.is-show {
  animation: fadeIn-right 1.8s ease-out 0s 1 forwards;
}
@keyframes fadeIn-right {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* ---loader---------------------------------------- */
.loader {
  font-family: "Marcellus", serif;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #DAD6D3;
  color: #fff;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---header---------------------------------------- */
header {
  height: 90px;
  display: flex;
  justify-content: right;
  align-items: center;
  padding-inline: 50px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  font-family: "Marcellus", serif;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1000px) {
  header {
    width: 100vw;
    height: 72px;
    padding: 0;
    z-index: 100;
  }
}
header nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  header nav {
    position: fixed;
    left: -300px;
    transition: all 0.5s;
  }
}
header nav ul {
  display: flex;
}
@media screen and (max-width: 1000px) {
  header nav ul {
    display: none;
  }
}
header nav ul li {
  margin-right: 30px;
  font-size: 0.875rem;
  position: relative;
  transition: 2s;
}
header nav ul li a {
  color: #fff;
  padding-bottom: 5px;
  /* 下線と文字の距離 */
}
header nav ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header nav ul li:hover::after {
  transform: scaleX(1);
}
header nav ul .icon {
  margin-right: 10px;
  width: 35px;
}
header .toggle-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  transition: all 0.5s;
  cursor: pointer;
  top: 22px;
  right: 18px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  header .toggle-btn {
    display: block;
  }
}
header .toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.5s;
}
header .toggle-btn span:nth-child(1) {
  top: 15%;
}
header .toggle-btn span:nth-child(2) {
  top: 50%;
}
header .toggle-btn span:nth-child(3) {
  top: 85%;
}
header .mask {
  display: none;
}

.open nav {
  display: block;
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #DAD6D3;
  padding: 100px 50px;
  z-index: 3;
}
.open nav ul {
  display: inline-block;
  transition: all 1s;
}
.open nav ul li {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .open nav .icons {
    display: flex;
  }
}
.open .toggle-btn {
  z-index: 3;
}
.open .toggle-btn span {
  background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 50%;
}
.open .toggle-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
.open .toggle-btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
}
.open .mask {
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0.8;
  cursor: pointer;
  z-index: 2;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
}

header.concept-color li a,
header.reason-color li a,
header.menu-color li a,
header.voice-color li a,
header.faq-color li a,
header.access-color li a,
header.reservation-color li a {
  color: #3F4D52;
}
header.concept-color li::after,
header.reason-color li::after,
header.menu-color li::after,
header.voice-color li::after,
header.faq-color li::after,
header.access-color li::after,
header.reservation-color li::after {
  background-color: #3F4D52;
}
header.concept-color .toggle-btn span,
header.reason-color .toggle-btn span,
header.menu-color .toggle-btn span,
header.voice-color .toggle-btn span,
header.faq-color .toggle-btn span,
header.access-color .toggle-btn span,
header.reservation-color .toggle-btn span {
  background-color: #3F4D52;
}
header.concept-color .icons img[alt=instagram],
header.reason-color .icons img[alt=instagram],
header.menu-color .icons img[alt=instagram],
header.voice-color .icons img[alt=instagram],
header.faq-color .icons img[alt=instagram],
header.access-color .icons img[alt=instagram],
header.reservation-color .icons img[alt=instagram] {
  content: url("../img/icon-instagram-black.png");
}
header.concept-color .icons img[alt=youtube],
header.reason-color .icons img[alt=youtube],
header.menu-color .icons img[alt=youtube],
header.voice-color .icons img[alt=youtube],
header.faq-color .icons img[alt=youtube],
header.access-color .icons img[alt=youtube],
header.reservation-color .icons img[alt=youtube] {
  content: url("../img/icon-youtube-black.png");
}

/* ---mv-------------------------------------------- */
.mv {
  height: 100vh;
  position: relative;
  top: -90px;
  z-index: 0;
  background-image: url(../img/mv-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .mv {
    height: 90vh;
    top: 0px;
  }
}
.mv h1 {
  position: absolute;
  left: 80px;
  bottom: 70px;
  z-index: 100;
  font-family: "Marcellus", serif;
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 0.625rem;
}
@media screen and (max-width: 1000px) {
  .mv h1 {
    left: 30px;
    bottom: 40px;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
  }
}

/* ---concept--------------------------------------- */
.concept {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .concept {
    display: block;
  }
}
.concept .concept-text {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .concept .concept-text {
    width: 100%;
  }
}
.concept .concept-text h3 {
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  line-height: 2;
  font-weight: 200;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .concept .concept-text h3 {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
}
.concept .concept-text .small {
  line-height: 2.5;
  letter-spacing: 0.35em;
  margin-bottom: 30px;
}
.concept .concept-text img {
  position: absolute;
  width: 600px;
  left: -90%;
  top: -20%;
}
@media screen and (max-width: 1000px) {
  .concept .concept-text img {
    width: 400px;
    top: 0%;
    left: -50%;
  }
}
.concept img {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .concept img {
    width: 100%;
  }
}

/* ---reason---------------------------------------- */
.reason {
  height: 1500px;
}
@media screen and (max-width: 1000px) {
  .reason {
    height: auto;
  }
}
.reason .items {
  position: relative;
  width: 100%;
}
.reason .items .item {
  position: absolute;
  width: 47%;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .reason .items .item {
    position: static;
    width: 100%;
    padding-bottom: 100px;
  }
}
.reason .items .item img {
  margin-bottom: 20px;
}
.reason .items .item p span {
  font-family: "Marcellus", serif;
  color: #8D9CB8;
  font-weight: 400;
}
.reason .items .item:nth-child(1) {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .reason .items .item:nth-child(1) {
    display: block;
  }
}
.reason .items .item:nth-child(1) img {
  width: 44%;
}
@media screen and (max-width: 1000px) {
  .reason .items .item:nth-child(1) img {
    width: 100%;
  }
}
.reason .items .item:nth-child(1) p {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .reason .items .item:nth-child(1) p {
    width: 100%;
  }
}
.reason .items .item:nth-child(2) {
  top: 280px;
  right: 0;
}
.reason .items .item:nth-child(2) p {
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .reason .items .item:nth-child(2) p {
    text-align: left;
  }
}
.reason .items .item:nth-child(3) {
  top: 650px;
}

/* ---menu------------------------------------------ */
.menu ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .menu ul li {
    display: block;
    margin-bottom: 180px;
  }
}
.menu ul li img {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .menu ul li img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.menu ul li .menu-text {
  width: 47%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .menu ul li .menu-text {
    width: 100%;
  }
}
.menu ul li .menu-text .menu-title {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  letter-spacing: 0.13em;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .menu ul li .menu-text .menu-title {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
}
.menu ul li .menu-text .menu-title .sub-title {
  font-family: "Noto Sans JP", "游ゴシック体", serif;
  font-size: 0.75rem;
}
@media screen and (max-width: 1000px) {
  .menu ul li .menu-text .menu-title .sub-title {
    font-size: 0.65rem;
  }
}
.menu ul li .menu-text .btn {
  position: absolute;
  font-family: "Marcellus", serif;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  bottom: 0;
  right: 0;
  padding: 20px 30px 20px 20px;
  text-decoration: none;
}
.menu ul li .menu-text .btn:hover {
  color: #DAD6D3;
}
.menu ul li .menu-text .btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #3F4D52;
  transition: background-color 0.2s;
}
.menu ul li .menu-text .btn:hover::before {
  background: linear-gradient(to right, #DAD6D3 50%, #3F4D52 50%);
  height: 1px;
  background-size: 200% 100%;
  background-position: right bottom;
  animation: underline-slide 0.2s forwards;
}
@keyframes underline-slide {
  from {
    background-position: right bottom;
  }
  to {
    background-position: left bottom;
  }
}
.menu ul li .menu-text .btn::after {
  position: absolute;
  bottom: 19px;
  content: "";
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  margin-left: 10px;
}
.menu ul li .menu-text .btn:hover::after {
  border-left: 5px solid #DAD6D3;
}
@media screen and (max-width: 1000px) {
  .menu ul li .menu-text .btn {
    bottom: -80px;
  }
}

/* ---voice----------------------------------------- */
.voice {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .voice {
    display: block;
  }
}
.voice .voice-left {
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .voice .voice-left {
    width: 100%;
  }
  .voice .voice-left .section-title {
    text-align: left;
  }
}
.voice .voice-left .voice-text {
  height: 350px;
  background-color: #DAD6D3;
  border-radius: 20px;
  padding: 60px 50px;
  margin-inline: 30px;
}
@media screen and (max-width: 1000px) {
  .voice .voice-left .voice-text {
    padding-inline: 20px;
    margin-inline: 8px;
    height: 300px;
  }
}
.voice .voice-left .voice-text .comment {
  border-bottom: solid 1px #fff;
  line-height: 2.2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.voice .slider-img {
  width: 50%;
}
.voice .slider-img img {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .voice .slider-img img {
    display: none;
  }
}

/* ---faq------------------------------------------- */
.faq {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .faq {
    display: block;
  }
}
.faq .section-title {
  width: 30%;
}
.faq .QA {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .faq .QA {
    width: 100%;
  }
}
.faq .QA .qa-6 {
  max-width: 100%;
  margin-bottom: 5px;
  border-bottom: 1px solid #858585;
}
.faq .QA .qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 4em 2em 6em;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .faq .QA .qa-6 summary {
    padding: 2em 2em 2em 4em;
  }
}
.faq .QA .qa-6 summary::before,
.faq .QA .qa-6 p::before {
  position: absolute;
  left: 1em;
  font-size: 1.3em;
}
.faq .QA .qa-6 summary::before {
  content: "Q";
}
.faq .QA .qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 15px;
  border-bottom: 1.5px solid #3F4D52;
  border-right: 1.5px solid #3F4D52;
  content: "";
  transition: transform 0.5s;
}
.faq .QA .qa-6[open] summary::after {
  transform: rotate(225deg);
}
.faq .QA .qa-6 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 6em 3em;
  transition: transform 0.5s, opacity 0.5s;
}
@media screen and (max-width: 1000px) {
  .faq .QA .qa-6 p {
    padding-inline: 4em 2em;
  }
}
.faq .QA .qa-6[open] p {
  transform: none;
  opacity: 1;
}
.faq .QA .qa-6 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}

/* ---access---------------------------------------- */
.access .content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .access .content {
    display: block;
  }
}
.access .content iframe {
  width: 50%;
  height: 350px;
}
@media screen and (max-width: 1000px) {
  .access .content iframe {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
  }
}
.access .content p {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .access .content p {
    width: 100%;
  }
}

/* ---reservation----------------------------------- */
.reservation {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .reservation {
    text-align: left;
  }
}
.reservation .section-title {
  margin-bottom: 50px;
}
.reservation .small {
  margin-bottom: 50px;
  line-height: 3;
}
@media screen and (max-width: 1000px) {
  .reservation .small {
    line-height: 2;
  }
}
.reservation ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .reservation ul {
    display: block;
  }
}
.reservation ul li {
  width: 300px;
  padding-block: 20px;
  margin-inline: 10px;
  border: solid 1px #3F4D52;
  text-align: center;
  transition: 0.5s;
}
@media screen and (max-width: 1000px) {
  .reservation ul li {
    margin-bottom: 10px;
    width: auto;
  }
}
.reservation ul li:hover {
  border: solid 1px #DAD6D3;
  background-color: #DAD6D3;
}
.reservation ul li:hover a {
  color: #fff;
}

/* ---footer----------------------------------- */
footer {
  background-color: #DAD6D3;
  padding: 70px;
  font-family: "Marcellus", serif;
  color: #3F4D52;
}
@media screen and (max-width: 1000px) {
  footer {
    padding: 70px 40px;
  }
}
footer .content {
  display: flex;
  justify-content: left;
  border-bottom: #3F4D52 0.8px solid;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  footer .content {
    display: block;
  }
}
footer .content h1 {
  font-size: 2.25rem;
  letter-spacing: 0.425rem;
  margin-right: 100px;
}
@media screen and (max-width: 1000px) {
  footer .content h1 {
    margin-bottom: 30px;
  }
}
footer .content ul {
  letter-spacing: 0.2rem;
  padding-top: 20px;
}
footer .content ul li {
  margin-bottom: 20px;
}
footer .content ul li a {
  color: #3F4D52;
  transition: transform 0.5s ease;
}
footer .content ul li a:hover {
  color: #fff;
}
footer .content ul .icon {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  footer .content ul .icon {
    justify-content: left;
  }
  footer .content ul .icon a {
    padding-right: 10px;
  }
}
footer p {
  font-size: 0.625rem;
  text-align: center;
}

.menu-header li a {
  color: #3F4D52;
}

.menu-page .section-title-menu {
  font-family: "Marcellus", serif;
  font-size: 1.9rem;
  letter-spacing: 0.25em;
  color: rgb(141, 156, 184);
  opacity: 0;
  margin-block: 50px 50px;
  animation: fadein forwards 1.5s ease;
}
@keyframes fadein {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 1000px) {
  .menu-page .section-title-menu {
    margin-bottom: 50px;
  }
}
.menu-page nav {
  display: flex;
}
.menu-page nav .menu-nav {
  display: inline-block;
  padding: 7px 10px;
  background-color: #fff;
  margin-right: 10px;
  font-size: 0.875rem;
}
@media screen and (max-width: 1000px) {
  .menu-page nav .menu-nav {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
.menu-page nav .menu-nav a {
  color: #8D9CB8;
  font-weight: 400;
  letter-spacing: 0.3em;
}
.menu-page .menu-items {
  padding-bottom: 150px;
}
.menu-page .menu-items .menu-item {
  margin-top: 150px;
}
.menu-page .menu-items .menu-item .menu-title {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  letter-spacing: 0.13em;
  line-height: 1;
  margin-bottom: 40px;
}
.menu-page .menu-items .menu-item .menu-title .sub-title {
  font-family: "Noto Sans JP", "游ゴシック体", serif;
  font-size: 0.75rem;
}
.menu-page .menu-items .menu-item .content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item .content {
    display: block;
    margin-bottom: 30px;
  }
}
.menu-page .menu-items .menu-item .content img {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item .content img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.menu-page .menu-items .menu-item .content p {
  width: 47%;
  line-height: 2.4em;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item .content p {
    width: 100%;
  }
}
.menu-page .menu-items .menu-item dl dt {
  padding-top: 40px;
  font-weight: 400;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item dl dt {
    margin-bottom: 15px;
  }
}
.menu-page .menu-items .menu-item dl dt .category {
  background-color: #fff;
  padding: 5px 10px;
  color: #8D9CB8;
  margin-right: 30px;
  font-weight: 400;
  width: 10%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item dl dt .category {
    width: 35px;
    display: inline;
    margin-right: 15px;
    font-size: 0.875rem;
    line-height: 3em;
  }
}
.menu-page .menu-items .menu-item dl dt .contents {
  display: flex;
  justify-content: space-between;
  width: 85%;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item dl dt .contents {
    display: block;
    font-size: 0.75rem;
    line-height: 1.7;
  }
}
.menu-page .menu-items .menu-item dl dt .contents .left {
  display: flex;
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item dl dt .contents .left {
    width: 100%;
    display: block;
  }
}
.menu-page .menu-items .menu-item dl dt .contents .left .time {
  color: #8D9CB8;
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item dl dt .contents .left .time {
    margin-left: 0px;
  }
}
.menu-page .menu-items .menu-item dl dt .contents .left .price {
  width: 25%;
}
.menu-page .menu-items .menu-item dl dd {
  padding: 0 0 40px 130px;
  border-bottom: 0.8px solid #8D9CB8;
}
@media screen and (max-width: 1000px) {
  .menu-page .menu-items .menu-item dl dd {
    display: block;
    padding-left: 0px;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
  }
}
.menu-page .menu-items .menu-item dl:first-of-type {
  border-top: 0.8px solid #8D9CB8;
}/*# sourceMappingURL=style.css.map */