@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(20px, 3rem);
  font-weight: 500;
  color: #170f36;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(30px, 3.6rem);
  height: max(21px, 2.7rem);
}
.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}
.common__ttl span {
  font-size: max(12px, 1.6rem);
}

.common__btn {
  width: 21.8rem;
  height: 4.8rem;
  margin: 0 auto;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / cover;
}

.common__btn--bl a {
  background: url("../img/btn_bg-bl.png") no-repeat center / cover;
  border: solid 1px #ddb56b;
  color: var(--black);
}

/*============================
	header
============================*/
.header.top {
  height: max(90rem, 100vh);
}
.header__sns li { 
  margin-left: -1rem;
}

@media (min-width: 768px) {
  .header.top {
    width: 38rem;
    padding-top: 8.5rem;
  }

  .header.top .header__logo {
    margin: 0 auto 12rem;
    position: static;
    width: 100%;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
    row-gap: 6.5rem;
    padding-left: 6rem;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    row-gap: 3.5rem;
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }
  .header__sns li {
    margin-left: 0;
  }
}

/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  width: 100%;
  height: max(90rem, 100vh);
  padding-left: 38rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 15px;
  transform: translateY(100%);
  left: 38rem !important;
  bottom: -2.8rem !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    transform: translateX(-50%);
    left: 50% !important;
    bottom: 3rem !important;
  }
}

.hero .swiper-pagination-bullet {
  background-color: initial !important;
  width: max(8px, 1rem) !important;
  height: max(8px, 1rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
  border: solid 1px #170f36;
}

.hero .swiper-pagination-bullet-active {
  background-color: #170f36 !important;
}

/*============================
	news
============================*/
.news {
  background: url("../img/bg-news.jpg") no-repeat top center / cover;
  padding: 11.8rem 0 13.6rem;
  position: relative;
  color: #FFF;
}

@media (max-width: 767px) {
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.5rem auto 8.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 2.7rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 18.5rem 0 17.7rem;
  position: relative;
}
.concept h2 {
  font-size: max(20px, 3.2rem);
}
.concept h2::before {
  display: none;
} 

.concept::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 63rem;
  height: 47rem;
  position: absolute;
  pointer-events: none;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
}

.concept .common__ttl::before {
  margin-bottom: 2rem;
}

.concept p {
  width: 60rem;
  letter-spacing: 0.05em;
  line-height: 2.15625;
  text-align: center;
  margin: 5rem auto 8rem;
}
@media (max-width: 767px) {
  .concept p {
    width: 50rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 14.6rem 0 18.1rem;
  position: relative;
  z-index: 1;
}
.menu h2 {
  color: #170f36;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 62.5rem;
  height: 35.6rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  top: 0;
  left: 0;
}

.menu::after {
  transform: scale(-1, -1);
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 32rem;
    height: 32.7rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  margin: 12.6rem auto 14.4rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 9rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 7rem;
}

.menu__list-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(420px, 42rem);
    writing-mode: vertical-rl;
  }
}

.menu__txt-wrapper h3 {
  background: url("../img/menu_ttl-bg.png") no-repeat center / contain;
  width: 6.3rem;
  height: 25.5rem;
  font-size: max(18px, 2.8rem);
  line-height: 1;
  letter-spacing: 0.18em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    background: url("../img/menu_ttl-bg-sp.png") no-repeat center / contain;
    width: max(160px, 24.3rem);
    height: max(36.3px, 6.8rem);
    margin: 0 0 2.5rem;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  letter-spacing: 0.18em;
  font-size: max(10px, 1.36rem);
}

.menu__txt-wrapper h4 {
  border-left: solid 1px var(--black);
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  padding-left: 2rem;
  margin-left: 2.5rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h4 {
    border-left: none;
    border-bottom: solid 1px var(--black);
    padding: 0 0 2rem;
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.08em;
  line-height: 2.15625;
}

@media (min-width: 768px) {
  .menu__txt-wrapper h4,
  .menu__txt-wrapper p {
    text-orientation: upright;
  }

  .menu__txt-wrapper p {
    letter-spacing: 0;
  }
}

.menu__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/bg-news.jpg") repeat center / 100% auto;
  padding: 12.2rem 0 14.2rem;
}

.gallery__slider {
  margin: 8.3rem 0 10rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 29rem;
  height: 22.6rem;
  margin: 0 0.7rem;
}
.gallery__slider .swiper-slide img {
  object-fit: cover;
}

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 32rem;
  }
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 11.7rem 0 16.2rem;
  position: relative;
}

@media (max-width: 767px) {
  
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7rem;
  margin: 10.6rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  background: var(--bg-1);
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat top center / cover;
  padding: 12.7rem 0 16.8rem;
  position: relative;
}

.insta__contents {
  width: 82rem;
  margin: 6.4rem auto 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 40rem;
  position: relative;
}

.parallax::before {
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}

.parallax::before {
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  height: 100vh;
  position: fixed;
  top: 0;
}

.btn_link{
  background: var(--bg-1);
  padding: 9.5rem 0 13.5rem;
  position: relative;
}

.btn_list{
  display: flex;
  justify-content: center;
}

.btn_list li{
  padding: 0 3rem;
}

@media screen and (max-width: 767px){
  .btn_list{
    display: block;
  }
  .btn_list li{
    padding: 2rem 0;
  }
  .parallax::before {
    background: url("../img/parallax_bg-sp.jpg") no-repeat center / cover;
  }
}

/*=============== top-yoyaku ===========*/

.top-yoyaku {
  background: var(--bg-1);
  padding: 11.7rem 3rem 13.1rem;
}
.top-yoyaku .txt-1 {
  margin: 4rem auto 1.7rem;
  text-align: center;
  font-size: max(16px, 1.8rem);
  letter-spacing: 0.09em;
  line-height: 1.75;
}
.top-yoyaku .txt-2 {
  margin: 0 auto;
  text-align: center;
  font-size: max(14px, 1.6rem);
  letter-spacing: 0.05em;
}
.calendar-wrapper {
  border: 16px solid #ccc;
  width: 100%;
  max-width: 900px;
  margin: 5.6rem auto 0 auto;
  display: flex;
  background: #fff;
}

.calendar-wrapper a {
  color: #000;
}

.reservation .calendar-wrapper {
  position: relative;
  outline: 1.3rem solid #ccc;
  max-width: 720px;
  width: 90vw;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: row;
}

#calendar {
  text-align: center;
  width: 100%;
}

.reservation #calendar {
  text-align: center;
  width: 100%;
  line-height: 1.5;
}

table {
  /* outline: 16px solid #ccc; */
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.reservation table {
  outline: 16px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}

th {
  color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
}

td:nth-child(6) .reservation-date,
td:nth-child(6) .reservation-date a {
  color: #8888ff;
}

td:last-child .reservation-date,
td:last-child .reservation-date a {
  color: #ff8888;
}

td.disabled {
  background-color: #eeeeee;
  color: #aaaaaa;
}

/* .reservation-date {
text-decoration: underline;
} */

.reservation-seat {
  font-size: 14px;
}

.reservation-seat.able a {
  color: #dd8866;
}

.reservation-seat-disabled a {
  color: #aaaaaa;
}

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  padding: 20px;
  line-height: 1.8;
  border-left: 1.3rem solid #ccc;
}

.calendar-reservation form {
  padding-top: 0;
  text-align: left;
}

.calendar_date {
  font-size: 18px;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 18px;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  -webkit-appearance: auto;
  appearance: auto;
  border: 1px solid #000;
  border-radius: 3px;
}

.calendar_button {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  border: 1px solid #aaaaaa;
  cursor: pointer;
  text-align: center;
}

.calendar_button:hover {
  opacity: 0.8;
}

.calendar_info {
  font-size: 12px;
  margin: 20px;
  color: #000;
  text-align: left;
}

.calendar_ok {
  color: #dd8866;
}

@media screen and (max-width: 767px) {
  .top-yoyaku {
    padding: 10rem 3rem;
  }
  .reserve {
      margin-top: 5rem;
  }

  .reservation .reserve {
      margin-top: 0;
  }

  .calendar-wrapper {
      width: 100%;
      margin: 5rem auto;
      flex-direction: column;
  }

  .calendar-wrapper {
      font-size: 12px;
  }

  .calendar-reservation {
      padding: 0;
      margin-left: 0;
      border-left: 0;
      border-top: 1.3rem solid #ccc;
  }

  .calendar-reservation form {
      padding: 20px;
  }

  .calendar-reservation form div {
      margin-bottom: 20px;
  }
}

@media screen and (max-width: 450px) {
  .reservation-date {
      font-size: 2.8vw;
  }
}


.reserve-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999999;
  transform: translateY(-50%);
}

.reserve-btn a {
  display: inline-block;
  padding: 3rem 2rem;
  color: #fff;
  font-size: 16px;
  background-color: #000;
  writing-mode: vertical-lr;
}

@media screen and (max-width: 767px) {
  .reserve-btn {
      right: auto;
      top: initial;
      bottom: 0;
      width: 100%;
      transform: translateY(0);
  }

  .reserve-btn a {
      writing-mode: initial;
      width: 100%;
      padding: 2rem 0;
      text-align: center;
  }

  .reservation {
      padding-left: 3.5rem;
  }

  .reservation .s-reservation {
      padding: 3rem 3.5rem 3rem 0;
  }

  .reservation .calendar-wrapper {
      flex-direction: column;
      outline: 4px solid #ccc;
  }
}

.s-reservation {
  padding: 12rem 0;
}

.s-reservation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
  justify-content: center;
}

.s-reservation__ttl {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  margin-right: 1rem;
  position: relative;
}

.s-reservation__ttl__logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: 24.4rem;
  max-width: 80%;
}

.s-reservation__ttl__txt {
  font-size: 60px;
  font-size: 6rem;
  font-size: 428.57143%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  font-weight: 400;
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.s-reservation__content {
  width: 113rem;
  max-width: 75%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  padding: 7.5rem 5.61797753% 14rem;
}

.s-reservation__content__list {
  width: 73rem;
  max-width: 100%;
}

.s-reservation__content__item {
  line-height: 1.85714286;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
}

.calendar_title,
.calendar_date {
  color: #000;
  font-size: 16px;
}

.takeout_top_ad {
  display: flex;
}

.takeout_img {
  width: 52%;
  margin-right: 3%;
}

.takeout_ad {
  width: 45%;
}

.takeout_top_ad img {
  display: block;
  width: 100%;
  height: auto;
}

.takeout_top_ad dl.detail dt {
  padding: 0.5rem;
}

.takeout_top_ad dl.detail dd {
  padding: 0.5rem;
}

@media screen and (min-width: 767px) {
  .yoyaku {
      padding: 10rem 20rem;
  }
}