@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.2rem);
  font-weight: 700;
  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(25px, 3.2rem);
  height: max(23px, 3.0rem);
}


.common__ttl span {
  font-size: max(12px, 1.6rem);
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 18rem);
  height: max(40px, 4.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.common__btn a img {
  object-fit: contain;
  height: 100%;
}

.common__btn--wt a {
  background-color: transparent;
}


/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 76%);
  width: 100%;
  height: 20rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.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;
}

/*============================
	news
============================*/
.news {
  padding: 10.2rem 0 11.7rem;
  position: relative;
}
.news::before {
    content: "";
    background: url("../img/menu_deco-1.png") no-repeat center / contain;
    width: 27.1rem;
    height: 7.8rem;
    position: absolute;
    top: 6.3rem;
    left: 9.8rem;
    pointer-events: none;
}
.news::after {
    content: "";
    background: url("../img/menu_deco-1.png") no-repeat center / contain;
    width: 27.1rem;
    height: 7.52rem;
    position: absolute;
    bottom: 8.1rem;
    right: 10.2rem;
    pointer-events: none;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 3.5rem auto 6.2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
  .news::before {
    width: 26rem;
    height: 7.4rem;
    left: 1rem;
    top: 4rem;
  }
  .news::after {
    width: 26rem;
    height: 7.4rem;
    right: 1rem;
    bottom: 4rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@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-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 16rem 0 13.3rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 16rem 0 24rem;
  }
}

.policy::before {
  content: "";
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 56.8rem;
  height: 46.9rem;
  right: 0;
}

@media (max-width: 767px) {
  .policy::before {
    width: 37rem;
    height: 30.9rem;
  }

}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 4rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 6rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(540px, 54rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-right: 1rem;
    margin-bottom: 4.5rem;
  }
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_txt-deco.png") no-repeat center / contain;
  width: 51rem;
  height: 46.7rem;
  position: absolute;
  top: -16rem;
  right: -17rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    width: 32rem;
    height: 29.6rem;
    top: -10rem;
    right: -5rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2.4;
}

@media (min-width: 768px) {
  /*.policy__txt-wrapper p {
    padding-bottom: 5rem;
  }*/

  .policy .common__btn {
    margin: 0 0 0 4rem;
  }
}

.policy__img-list {
  width: 69.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .policy__img-list {
    width: 90%;
    margin: 0;
  }
}

.policy__img-list li:nth-of-type(2) {
  width: 43.1rem;
  margin: -8.2rem -9.8rem 0 auto;
}

@media (max-width: 767px) {
  .policy__img-list li:nth-of-type(2) {
    width: 50%;
    margin: -5rem -7rem 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 11.8rem 0 10.9rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 10rem 0 15rem;
  }
}

.menu::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 27.1rem;
  height: 7.52rem;
  position: absolute;
  top: 14.9rem;
  right: 9.8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 26rem;
    height: 7.4rem;
    right: 1rem;
    top: 4rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 14rem;
  margin: 11rem auto 12.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}


@media (max-width: 767px) {
}

.menu__ttl-wrapper {
  display: flex;
  justify-content: space-between;
}

.menu__list li:nth-of-type(odd) .menu__ttl-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper,
  .menu__list li:nth-of-type(odd) .menu__ttl-wrapper {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}

.menu__ttl-wrapper h3 {
  display: block;
  width: max(70px, 11.2rem);
  margin: 3.5rem auto 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.21em;
  line-height: calc(49 / 24);
}

@media (max-width: 767px) {
  .menu__ttl-wrapper h3 {
    margin: 0 auto 4rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 3rem 11rem;
  margin-top: -7rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    flex-direction: column-reverse;
    margin: 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: calc(39/16);
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin-top: 13rem;
  }
}

.menu__img-1 {
  width: 82.3rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__img-2 {
  width: 44rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img-1,
  .menu__img-2 {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 9.3rem 0 11rem;
  background: url("../img/bg-gallery.jpg") no-repeat top center / cover;
}

.gallery__slider {
  height: 22.6rem;
  margin: 7.1rem 0 7.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 11.5rem 0 13rem;
  position: relative;
}

@media (max-width: 767px) {
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6.5rem;
  margin: 9.5rem auto 6rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.7rem 0 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 0.5px #000;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 0.5px #000;
  }
}

@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;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat top center / cover;
  padding: 8rem 0 18.5rem;
  position: relative;
  overflow: hidden;
}
.insta::before {
    content: "";
    background: url("../img/insta-deco-1.png") no-repeat center / contain;
    width: 158.4rem;
    height: 56.2rem;
    position: absolute;
    top: -2.4rem;
    left: -110rem;
    pointer-events: none;
}
.insta::after {
    content: "";
    background: url("../img/insta-deco-2.png") no-repeat center / contain;
    width: 158.4rem;
    height: 56.2rem;
    position: absolute;
    bottom: -2.4rem;
    right: -110rem;
    pointer-events: none;
}

.insta__contents {
  width: 87rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}


/*=============== top-yoyaku ===========*/

.top-yoyaku {
  background: var(--bg-1);
  padding: 10.7rem 3rem 14rem;
  position: relative;
}
.top-yoyaku::before {
    content: "";
    background: url("../img/menu_deco-1.png") no-repeat center / contain;
    width: 27.1rem;
    height: 7.52rem;
    position: absolute;
    top: 17.8rem;
    right: 9.8rem;
    pointer-events: none;
}
.top-yoyaku::after {
    content: "";
    background: url("../img/menu_deco-1.png") no-repeat center / contain;
    width: 27.1rem;
    height: 7.52rem;
    position: absolute;
    bottom: 10.8rem;
    left: 5.6rem;
    pointer-events: none;
}
.top-yoyaku .txt-1 {
  margin: 4rem auto 1rem;
  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;
  position: relative;
  z-index: 1;
}

.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;
  }
  .top-yoyaku::before {
    width: 26rem;
    height: 7.4rem;
    right: 1rem;
    top: 4rem;
  }
  .top-yoyaku::after {
    width: 26rem;
    height: 7.4rem;
    left: 1rem;
    bottom: 4rem;
  }
  .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;
  }
}