@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
    /* font-family: var(--font-en); */
    font-family: "Shippori Mincho", serif;
    font-size: max(18px, 3.3rem);
    font-weight: 700;
    color: #562b08;
    letter-spacing: 0.05em;
    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(40px, 7.0rem);
    height: max(20.4px, 3.9rem);
}

.common__ttl span {
    font-size: max(13px, 1.9rem);
    font-weight: 400;
    font-family: "Lora", serif;
}

.common__btn {
    width: max(250px, 20.1rem);
    /* height: max(40px, 5.1rem); */
    margin: 0 auto;
}

/* .common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .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);
}

@media (min-width: 768px) {
    .header.top {
        width: 38rem;
        padding-top: 12.5rem;
    }

    .header.top .header__logo {
        margin: 0 auto 15.5rem;
        position: static;
    }

    .header.top .header__contents {
        flex-direction: column;
        position: static;
        row-gap: 6.5rem;
        padding-left: 4rem;
    }

    .header.top .header__nav-list {
        flex-direction: column;
        row-gap: 3.5rem;
    }
}

@media (max-width: 767px) {
    .header.top {
        height: auto;
    }

    .header.top::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 55px;
        background: rgba(255, 255, 255, 0.7);
    }

    .header.top::after {
        content: "";
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        height: 20px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .header.top .header__logo {
        filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 1));
    }
}

/*============================
	hero
============================*/
.hero {
    background: var(--bg-1);
    width: 100%;
    height: max(70rem, 70vh);
    position: relative;
}

@media (max-width: 767px) {
    .hero {
        height: max(200px, 30rem);
        padding: 0;
        margin-top: 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 {
    display: flex;
    column-gap: 15px;
    transform: translateY(100%);
    justify-content: center;
    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: transparent;
    border: #b80206 1px solid;
    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;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: black;
}

.hero .swiper-pagination-bullet-active {
    background-color: #b80206;
}

/*============================
	news
============================*/
.news {
    background: url(../img/bg-news.jpg) repeat top center / 100% auto;
    padding: 12.5rem 0 13.5rem;
    position: relative;
}

.news::before,
.news::after {
    content: "";
    width: 28.2rem;
    height: 28.2rem;
    mix-blend-mode: multiply;
    position: absolute;
    pointer-events: none;
}

.news::before {
    background: url("../img/news_deco-1.png") no-repeat right top / contain;
    top: 0rem;
    right: 0rem;
    width: 42rem;
    height: 42rem;
}

.news::after {
    background: url("../img/news_deco-2.png") no-repeat left bottom / contain;
    bottom: 0rem;
    left: 0rem;
    width: 43rem;
    height: 43rem;
}

@media (max-width: 767px) {

    .news::before,
    .news::after {
        width: 31rem;
        height: 31rem;
    }

    /* .news::before {
    top: 3rem;
    left: 2rem;
  }

  .news::after {
    bottom: 5rem;
  } */
}

.CMS-NEWS-INDEX {
    width: 101.2rem;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 2.6rem;
    margin: 3rem auto 8rem;
    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(--black);
    padding-top: 1rem;
    margin-top: 1rem;
}

.CMS-NEWS-MORE-READ {
    display: none;
}

/*============================
	concept
============================*/
.concept {
    background: url("../img/concept_bg.jpg") no-repeat center / cover;
    padding: 11rem 0 11rem;
    position: relative;
    z-index: 2;
}

.concept__wrap {
    width: 76.4%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5rem 4rem 6rem;
}

.concept h2 {
    width: 10.9rem;
    margin: 0 auto;
}

/* .concept::before,
.concept::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 26rem;
  height: 19.2rem;
  position: absolute;
  pointer-events: none;
}

.concept::before {
  left: 11.4rem;
  bottom: 14.3rem;
}

.concept::after {
  transform: scale(-1, 1);
  top: 13.5rem;
  right: 13rem;
} */

/* @media (max-width: 767px) {
  .concept::before,
  .concept::after {
    width: 21rem;
    height: 15.5rem;
  }

  .concept::before {
    left: 2rem;
    bottom: 5rem;
  }

  .concept::after {
    top: 5rem;
    right: 3rem;
  }
} */

/* .concept .common__ttl::before {
  margin-bottom: 2rem;
} */

.concept p {
    width: 67rem;
    letter-spacing: 0.05em;
    line-height: 2.1;
    text-align: center;
    margin: 3rem auto 5.5rem;
}

@media (max-width: 767px) {
    .concept {
        padding: 7rem 0;
    }

    .concept__wrap {
        width: 90%;
    }

    .concept h2 {
        width: 14.9rem;
        margin: 0 auto;
    }

    .concept p {
        width: 100%;
    }
}

/*============================
	menu
============================*/
.menu {
    background: var(--bg-1);
    padding: 12rem 0 15rem;
    position: relative;
    z-index: 1;
}

.menu::before {
    content: "";
    background: url("../img/menu_deco1.png") no-repeat left top / contain;
    width: 58rem;
    height: 57.8rem;
    position: absolute;
    pointer-events: none;
    z-index: -1;
    top: -0.5rem;
    left: 0;
}

.menu::after {
    content: "";
    background: url("../img/menu_deco2.png") no-repeat right bottom / contain;
    width: 61rem;
    height: 58.8rem;
    position: absolute;
    pointer-events: none;
    z-index: -1;
    bottom: -0rem;
    right: 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: 10.5rem auto 12rem;
}

@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(odd) {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {

    .menu__list-item,
    .menu__list-item:nth-of-type(odd) {
        flex-direction: column-reverse;
    }
}

.menu__txt-wrapper {
    width: 100%;
}

@media (min-width: 768px) {
    .menu__txt-wrapper {
        height: max(390px, 39rem);
        writing-mode: vertical-rl;
    }
}

.menu__txt-wrapper h3 {
    /* background: url("../img/menu_ttl-bg.png") no-repeat center / contain; */
    width: 6.55rem;
    /* height: 24.3rem; */
    /* font-size: max(18px, 3.6rem);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem; */
    margin-left: 4rem;
}

.menu__txt-wrapper h3 img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .menu__txt-wrapper h3 {
        /* background: url("../img/menu_ttl-bg-sp.png") no-repeat center / contain; */
        width: max(150px, 27.3rem);
        height: max(36.3px, 6.8rem);
        margin: 0 0 4rem;
    }
}

.menu__txt-wrapper h3 span {
    display: block;
    font-size: max(10px, 1.4rem);
}

.menu__txt-wrapper h4 {
    border-left: solid 1px var(--black);
    font-size: max(16px, 2.4rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    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.05em;
    line-height: 2.2;
}

@media (min-width: 768px) {

    .menu__txt-wrapper h4,
    .menu__txt-wrapper p {
        text-orientation: upright;
    }

    .menu__txt-wrapper p {
        letter-spacing: 0.055em;
    }
}

.menu__img {
    width: 60rem;
    height: 100%;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .menu__img {
        width: 100%;
    }
}

/*============================
	gallery
============================*/
.gallery {
    background: url("../img/gallery_bg.jpg") no-repeat center / cover;
    padding: 10rem 0 12.5rem;
}

.gallery__slider {
    margin: 6rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
    transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
    width: 29rem;
    margin: 0 0.7rem;
}

@media (max-width: 767px) {
    .gallery__slider .swiper-slide {
        width: 32rem;
    }
}

/*============================
	access
============================*/
.access {
    background: url(../img/back-access.jpg) no-repeat center top / cover;
    padding: 9.5rem 0 16rem;
    position: relative;
}

.access::before {
    content: "";
    background: url("../img/access_deco-2.png") no-repeat right top / contain;
    top: 0rem;
    right: 0rem;
    width: 56rem;
    height: 56rem;
    position: absolute;
}

.access::after {
    content: "";
    background: url("../img/access_deco-1.png") no-repeat left bottom / contain;
    bottom: 0rem;
    left: 0rem;
    width: 56rem;
    height: 56rem;
    position: absolute;
}

@media (max-width: 767px) {
    .access::before {
        width: 40rem;
        height: 23.4rem;
    }

    .access::after {
        width: 40rem;
        height: 17.6rem;
    }
}

.access__contents {
    width: 110rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem 7rem;
    margin: 5.5rem 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%;
        margin-bottom: 1rem;
    }

    .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);
}

/*============================
	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;
    }
}

/*=============== top-yoyaku ===========*/

.top-yoyaku {
    background: url(../img/bg-news.jpg) repeat top center / 100% auto;
  padding: 12rem 0 20.3rem;
}

.top-yoyaku .top-heading::before {
  filter: invert(1);
}

.top-yoyaku__heading {
  margin: 0 auto;
  width: 14rem;
}


.calendar-wrapper {
  border: 16px solid #ccc;
  width: 100%;
  max-width: 900px;
  margin: 4rem auto 0 auto;
  display: flex;
  background: #fff;
}

.calendar-wrapper a {
  color: #000;
    font-size: 80%;
}

.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;font-size: 90%;
}

td:last-child .reservation-date,
td:last-child .reservation-date a {
  color: #ff8888;
    font-size: 90%;
}

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;
}

.calendar_button {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}

.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 0;
  }
  .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: 768px) {
  .yoyaku {
      padding: 10rem 20rem;
  }
}
@media screen and (min-width: 1500px) {
.calendar-wrapper a {
  color: #000;
    font-size: 13px;
}

td:nth-child(6) .reservation-date,
td:nth-child(6) .reservation-date a {
  color: #8888ff;font-size: 13px;
}

td:last-child .reservation-date,
td:last-child .reservation-date a {
  color: #ff8888;
    font-size: 13px;
}}
