@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  background-image: url("../image/bg.png");
  background-color: rgba(247, 247, 247, 0.8);
  color: #231815;
}

.body_fixed {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1.5s;
}

.js-fade-up.active {
  opacity: 1;
  transform: translateY(0px);
}

.header {
  height: 100vh;
}
.header .mv {
  position: relative;
  width: 90%;
  height: calc(var(--vh, 1vh) * 100);
}
@media (max-width: 820px) {
  .header .mv {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header .mv {
    width: 100%;
  }
  .header .mv::before {
    content: "";
    display: inline;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.header .mv .logo {
  width: 100%;
  max-width: 280px;
  position: absolute;
  top: 5%;
  left: 3%;
  z-index: 1;
}
@media (max-width: 480px) {
  .header .mv .logo {
    transform: translate(-50%, -50%);
    left: 47%;
    top: 50%;
    opacity: 0;
    animation: fadeUpAnimation forwards 0.8s ease-in-out;
  }
  @keyframes fadeUpAnimation {
    0% {
      opacity: 0;
      top: 47%;
    }
    100% {
      opacity: 1;
      top: 45%;
    }
  }
}
.header .mv .contact {
  position: absolute;
  bottom: 3%;
  right: 5%;
  color: #ffffff;
  border-left: solid 1px #ffffff;
  padding-left: 20px;
  z-index: 1;
}
@media (max-width: 480px) {
  .header .mv .contact {
    transform: translate(-50%, -50%);
    left: 50%;
    right: unset;
    top: 65%;
    bottom: unset;
    width: 100%;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
}
.header .mv .contact .contact_lead {
  font-size: 1.6rem;
}
.header .mv .contact .contact_tel {
  font-family: "futura-pt", sans-serif;
}
.header .mv .contact .contact_tel .label {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.14rem;
  margin-right: 1rem;
}
.header .mv .contact .contact_tel .number {
  font-size: 3rem;
  letter-spacing: 0.1rem;
}
.header .mv .mv_image {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: mvAnimation forwards 1.2s ease-out;
}
@keyframes mvAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header .mv .mv_image img {
  height: 100%;
  object-fit: cover;
}
.header .mv .scroll_line {
  position: absolute;
  left: 50%;
  bottom: 10%;
  height: 100px;
  z-index: 2;
}
@media (min-width: 821px) {
  .header .mv .scroll_line {
    display: none;
  }
}
.header .mv .scroll_line span {
  font-family: "futura-pt", sans-serif;
  position: absolute;
  left: -20px;
  bottom: -5px;
  color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.header .mv .scroll_line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 50px;
  background: #eee;
  animation: lineMove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes lineMove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.header .nav {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 100;
}
.header .nav .drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 70px;
  padding: 0 5%;
}
.header .nav .nav_background {
  background-color: unset;
}
@media (max-width: 820px) {
  .header .nav .nav_background {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.header .nav .reservation {
  border: solid 1px #ffffff;
  background: #ffffff;
  padding: 5px 20px;
  border-radius: 30px;
  margin-right: 50px;
}
@media (min-width: 821px) {
  .header .nav .reservation {
    display: none;
  }
}
.header .nav .reservation a {
  color: #231815;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}
@media (max-width: 480px) {
  .header .nav .reservation a {
    align-items: center;
  }
}
.header .nav .reservation .icon_reservation {
  width: 12px;
  margin-right: 10px;
}
.header .nav .toggle_menu {
  display: block;
  position: fixed;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 3;
  right: 15px;
}
@media (min-width: 821px) {
  .header .nav .toggle_menu {
    display: none;
  }
}
.header .nav .toggle_menu span {
  display: block;
  position: absolute;
  width: 40px;
  border-bottom: solid 2px #ffffff;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.header .nav .toggle_menu span:nth-child(1) {
  top: 5px;
}
.header .nav .toggle_menu span:nth-child(2) {
  top: 18px;
}
.header .nav .toggle_menu span:nth-child(3) {
  top: 32px;
}
.header .nav .overlay {
  background-color: #ffffff;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 1;
}
.header .nav .overlay.visible {
  visibility: visible;
  opacity: 0.4;
}
.header .nav .toggle_menu.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 2px #231815;
}
.header .nav .toggle_menu.active span:nth-child(2),
.header .nav .toggle_menu.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 2px #231815;
}
.header .nav .menu {
  text-align: center;
  background-color: #ffffff;
  transition: 0.5s ease;
  -webkit-transform: translateX(150%);
  transform: translateX(150%);
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  padding: 50% 35px;
  z-index: 2;
}
@media (min-width: 821px) {
  .header .nav .menu {
    width: 10%;
    transform: translateX(0);
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: unset;
  }
}
@media (max-width: 820px) {
  .header .nav .menu {
    width: 15%;
  }
}
@media (max-width: 480px) {
  .header .nav .menu {
    width: 60%;
  }
}
.header .nav .menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header .nav .menu ul a {
  display: block;
  color: #231815;
  font-size: 1.8rem;
  letter-spacing: 0.12rem;
  text-decoration: none;
  padding: 2rem 0;
  transition: 0.2s;
}
.header .nav .menu ul a:hover {
  opacity: 0.6;
}
@media (min-width: 821px) {
  .header .nav .menu ul a {
    writing-mode: vertical-rl;
  }
}
.header .nav .menu_reservation .icon_reservation {
  width: 15px;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .header .nav .menu_reservation .icon_reservation {
    margin-bottom: 0;
    margin-right: 5px;
    width: 10px;
  }
}
.header .nav .menu_reservation a {
  border: solid 1px #231815;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #231815;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 5%;
  width: 70px;
  height: 70px;
  margin-top: 3rem;
}
@media (max-width: 480px) {
  .header .nav .menu_reservation a {
    width: 100%;
    height: auto;
    flex-direction: row;
  }
}
.header .nav .menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.header .nav .menu a:nth-of-type(3) {
  border-bottom: none;
}
.header .nav .menu_label {
  display: none;
}
@media (min-width: 821px) {
  .header .nav .menu_label {
    display: block;
    font-family: "futura-pt", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.15rem;
    transform: rotate(90deg);
    position: relative;
    margin-bottom: 130px;
  }
  .header .nav .menu_label::after {
    content: "";
    display: block;
    width: 1px;
    height: 70px;
    background: #231815;
    transform: rotate(90deg);
    position: absolute;
    top: -100%;
    right: -50px;
  }
}

.main .common_lead {
  font-size: 3.6rem;
  font-weight: 300;
  writing-mode: vertical-rl;
  letter-spacing: 1rem;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 480px) {
  .main .common_lead {
    font-size: 2.6rem;
  }
}
.main .common_lead::before {
  content: "";
  display: inline-block;
  background-color: #E3DDBC;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
  top: 0;
  top: -15px;
  right: -15px;
}
@media (max-width: 480px) {
  .main .common_lead::before {
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
  }
}
.main .common_text {
  font-size: 1.6rem;
  max-width: 590px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 3rem;
}
@media (max-width: 480px) {
  .main .common_text {
    text-align: left;
  }
}
.main .common_text .memo {
  font-size: 1.4rem;
  display: block;
}
.main .about {
  width: 100%;
  padding: 10%;
}
@media (max-width: 480px) {
  .main .about {
    padding: 8rem 10%;
  }
}
.main .about .about_images {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  z-index: -1;
}
@media (max-width: 480px) {
  .main .about .about_images {
    position: relative;
    width: 100%;
    height: 230px;
  }
}
.main .about .about_images .about_image_file {
  width: calc(50% - 5px);
}
@media (max-width: 480px) {
  .main .about .about_images .about_image_file {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 10s infinite;
  }
}
@media (max-width: 480px) {
  .main .about .about_images .about_image_file:nth-of-type(1) {
    animation: change-img-anim-first 10s infinite;
    animation-delay: 0s;
  }
}
@media (max-width: 480px) {
  .main .about .about_images .about_image_file:nth-of-type(2) {
    animation-delay: 5s;
  }
}
@keyframes change-img-anim-first {
  0% {
    opacity: １;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main .line_up {
  padding: 0 0 8rem;
}
.main .line_up .line_up_course {
  margin-bottom: 10rem;
}
.main .line_up .line_up_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.main .line_up .line_up_title .label_en {
  font-family: "futura-pt", sans-serif;
  color: #C3B04D;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.main .line_up .line_up_title .label_en::after {
  content: "";
  display: block;
  height: 1px;
  width: 20px;
  background-color: #231815;
  margin: 8px auto;
}
.main .line_up .line_up_title .label_ja {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
}
.main .line_up .line_up_lead {
  position: relative;
  margin-bottom: 40px;
}
.main .line_up .line_up_lead::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #C3B04D;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: rotate(45deg);
}
.main .line_up .line_up_text {
  line-height: 3rem;
}
@media (max-width: 480px) {
  .main .line_up .line_up_text {
    padding: 0 10%;
  }
}
.main .line_up .line_up_pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 50px;
}
.main .line_up .line_up_pdf .line_up_pdf_label {
  background: #283A5C;
  color: #ffffff;
  font-family: "futura-pt", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1px 10px;
  border-radius: 4px;
  letter-spacing: 0.15rem;
  margin-right: 10px;
}
.main .line_up .line_up_pdf .line_up_pdf_text {
  font-size: 1.6rem;
}
.main .line_up .line_up_pdf .line_up_pdf_text a {
  color: #283A5C;
  text-decoration: none;
  position: relative;
}
.main .line_up .line_up_pdf .line_up_pdf_text a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #283A5C;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.main .line_up .line_up_course_list {
  background: url(../image/bg_course.jpg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 10%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 820px) {
  .main .line_up .line_up_course_list {
    padding: 6rem 5%;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_list {
    flex-direction: column;
    padding: 6rem 5%;
  }
}
.main .line_up .line_up_course_list .line_up_course_item {
  position: relative;
  background: #ffffff;
  border-radius: 3rem;
  width: calc(50% - 20px);
  padding: 6rem 5rem;
  max-width: 580px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 820px) {
  .main .line_up .line_up_course_list .line_up_course_item {
    width: 100%;
    margin: 15px 0;
  }
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_list .line_up_course_item {
    width: 100%;
    padding: 5rem 3rem;
    margin: 10px 0;
  }
}
.main .line_up .line_up_course_list .line_up_course_name {
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_list .line_up_course_name {
    font-size: 1.8rem;
  }
}
.main .line_up .line_up_course_list .line_up_course_no1 {
  display: block;
  background: #C3B04D;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 600;
  width: fit-content;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.main .line_up .line_up_course_list .line_up_course_price {
  font-family: "futura-pt", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_list .line_up_course_price {
    font-size: 2rem;
  }
}
.main .line_up .line_up_course_list .line_up_course_price span {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.4rem;
  margin-left: 5px;
}
.main .line_up .line_up_course_list .line_up_course_menu {
  border-top: solid 1px #C3B04D;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0 0;
  margin-top: 20px;
}
.main .line_up .line_up_course_list .line_up_course_menu li {
  font-size: 1.4rem;
  margin: 5px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1rem;
}
.main .line_up .line_up_course_list .line_up_course_menu li::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: #231815;
  transform: rotate(35deg);
  margin-left: 8px;
}
.main .line_up .line_up_course_list .line_up_course_menu li:last-of-type::after {
  display: none;
}
.main .line_up .line_up_course_other {
  background-color: #231815;
  color: #ffffff;
  padding: 5rem;
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_other {
    padding: 3rem 4rem;
  }
}
.main .line_up .line_up_course_other .line_up_course_other_wrapper > p {
  text-align: center;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.main .line_up .line_up_course_other .line_up_course_other_wrapper > p br {
  display: none;
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_other .line_up_course_other_wrapper > p br {
    display: block;
  }
}
.main .line_up .line_up_course_other .line_up_course_other_list {
  width: fit-content;
  margin: 0 auto;
  font-size: 1.4rem;
}
.main .line_up .line_up_course_other .line_up_course_other_list_item {
  font-size: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0.5rem 0;
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_other .line_up_course_other_list_item {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
}
.main .line_up .line_up_course_other .line_up_course_other_list_item::before {
  display: block;
  content: "";
  background: #C3B04D;
  width: 10px;
  height: 10px;
  border-radius: 3rem;
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_other .line_up_course_other_list_item::before {
    top: 20%;
    width: 8px;
    height: 8px;
  }
}
.main .line_up .line_up_course_other .line_up_course_other_list_item .line_up_course_name {
  margin-right: 3rem;
  letter-spacing: 0.12rem;
  line-height: 2.3rem;
}
@media (max-width: 480px) {
  .main .line_up .line_up_course_other .line_up_course_other_list_item .line_up_course_name {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
.main .line_up .line_up_course_other .line_up_course_other_list_item .line_up_course_price {
  font-family: "futura-pt", sans-serif;
}
.main .line_up .line_up_course_other .line_up_course_other_list_item .line_up_course_price span {
  font-size: 1.4rem;
  margin-left: 0.5rem;
}
.main .line_up .line_up_slide_container {
  width: 100%;
  margin: 50px auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: -1;
  position: relative;
}
.main .line_up .line_up_slide_wrapper {
  min-width: 2400px;
  display: flex;
  animation: slide-flow 80s infinite linear 1s both;
}
@media (max-width: 480px) {
  .main .line_up .line_up_slide_wrapper {
    min-width: 1400px;
  }
}
.main .line_up .slide {
  width: 460px;
  object-fit: cover;
  margin: 0 10px;
}
@media (max-width: 480px) {
  .main .line_up .slide {
    width: 260px;
  }
}
@keyframes slide-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.main .store_info {
  background: #231815;
  padding: 8rem 10% 4rem;
}
.main .store_info .logo {
  width: 260px;
  margin: 0 auto 4rem;
}
@media (max-width: 480px) {
  .main .store_info .logo {
    width: 200px;
  }
}
.main .store_info .contact {
  width: fit-content;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}
.main .store_info .contact .contact_lead {
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .main .store_info .contact .contact_lead {
    font-size: 1.6rem;
  }
}
.main .store_info .contact .contact_tel {
  font-family: "futura-pt", sans-serif;
}
.main .store_info .contact .contact_tel .label {
  font-size: 2.4rem;
  margin-right: 10px;
  letter-spacing: 0.2rem;
}
@media (max-width: 480px) {
  .main .store_info .contact .contact_tel .label {
    font-size: 2rem;
  }
}
.main .store_info .contact .contact_tel .number {
  font-size: 4rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 480px) {
  .main .store_info .contact .contact_tel .number {
    font-size: 3.5rem;
  }
}
.main .store_info .contact .contact_text {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 480px) {
  .main .store_info .contact .contact_text {
    font-size: 1.4rem;
  }
}
.main .store_info .image_smoking {
  width: 100%;
  max-width: 420px;
  margin: 5rem auto;
}
.main .store_info .map {
  width: 100%;
  height: 360px;
}
.main .store_info .store_info_list {
  margin: 5rem auto;
  width: 100%;
  max-width: 670px;
}
.main .store_info .store_info_list .store_info_item {
  border-bottom: solid 1px #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 480px) {
  .main .store_info .store_info_list .store_info_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main .store_info .store_info_list .store_info_item_label {
  font-size: 1.4rem;
  width: 85px;
  margin-right: 120px;
}
@media (max-width: 480px) {
  .main .store_info .store_info_list .store_info_item_label {
    margin-bottom: 10px;
  }
}
.main .store_info .store_info_list .store_info_item_content {
  font-size: 1.6rem;
}

.footer {
  background: #231815;
  padding: 20px 10%;
}
.footer .copyright {
  color: #ffffff;
  letter-spacing: 0.1rem;
}