@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho&display=swap');
/*======================================
セッティング
======================================*/
.sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 820px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
}

.tabOnly {
  display: none !important;
}
@media (min-width: 821px) and (max-width: 1023px) {
  .tabOnly {
    display: block !important;
  }
}

.pcNone {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@-webkit-keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  font-size: 62.5%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

body {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #000;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-image: url(../img/main_bg.jpg);
  background-repeat: repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

body.fixed {
  position: fixed;
}

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

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

p {
  line-height: 2.2;
  letter-spacing: 0.2em;
}

.l-inner {
  max-width: 122rem;
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(2rem, 4.39238653vw, 6rem);
  padding-right: clamp(2rem, 4.39238653vw, 6rem);
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.l-wrapper {
  overflow: hidden;
}

/*======================================
　共通ボタン
======================================*/
.c-btn {
  max-width: clamp(30rem, 32.7272727273vw, 36rem);
  height: clamp(6rem, 6.3636363636vw, 7rem);
  position: relative;
  z-index: 1;
}
.c-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #838383;
  -webkit-box-shadow: 0 0 1.3rem 0.4rem rgba(0, 0, 0, 0.44);
  box-shadow: 0 0 1.3rem 0.4rem rgba(0, 0, 0, 0.44);
  position: absolute;
  right: clamp(-0.8rem, -0.7272727273vw, -0.4rem);
  bottom: clamp(-0.8rem, -0.7272727273vw, -0.4rem);
  z-index: -1;
}
.c-btn a {
  background-image: url(../img/btn_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: clamp(1.6rem, 1.8181818182vw, 2rem);
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
}
.c-btn--bk a::after {
  content: "";
  background-image: url(../img/btn_arrow_bk.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(2.2rem, 2.3636363636vw, 2.6rem);
  height: clamp(2.2rem, 2.3636363636vw, 2.6rem);
  position: absolute;
  top: 50%;
  right: clamp(2rem, 2.7272727273vw, 3rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.c-btn--wh a::after {
  content: "";
  background-image: url(../img/btn_arrow_wh.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.1rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: clamp(2.6rem, 3.2727272727vw, 3.6rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

/*======================================
　アニメーション : fade
======================================*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
  animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}

/*======================================
フッター
======================================*/
footer {
  background: #353535;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer_pagetop {
  position: absolute;
  top: 15.6rem;
  right: clamp(2rem, 6.5972222222vw, 9.5rem);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
@media screen and (max-width: 1366px) {
  .footer_pagetop {
    right: 2rem;
  }
}
.footer_pagetop a {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
.footer_pagetop a span {
  display: block;
  padding-left: 11.4rem;
  position: relative;
  z-index: 1;
}
.footer_pagetop a span::before {
  content: "";
  width: 10rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer_inner {
  padding-top: 4.6rem;
  padding-bottom: 2rem;
}

footer .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 3rem;
  margin-bottom: 3.3rem;
}

/* logo */
footer .logo {
  width: clamp(20rem, 20.4545454545vw, 25.3rem);
}

/* nav */
footer nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: clamp(2rem, 4.0909090909vw, 4.5rem);
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 4.0909090909vw, 4.5rem);
}

footer nav ul a {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.6363636364vw, 1.8rem);
  letter-spacing: 0.14em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

footer nav .iconBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 2.0833333333vw, 3rem);
}

footer nav .iconBox .icon {
  display: block;
  width: clamp(2rem, 2.0833333333vw, 3rem);
}

footer small {
  display: block;
  text-align: center;
  font-size: clamp(1.2rem, 1.4545454545vw, 1.4rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 820px) {
  footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  footer .btnPagetop {
    right: 1rem;
  }
  footer .logo {
    width: 20rem;
    padding-top: 0;
  }
  /* nav */
  footer nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer nav ul li {
    text-align: center;
  }
  footer nav ul li:not(:last-child) {
    margin-right: 0;
  }
}
/*======================================
　ヘッダー
======================================*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 2.7272727273vw, 3rem);
  padding-left: clamp(2rem, 4.5138888889vw, 6.5rem);
  padding-right: clamp(2rem, 6.3888888889vw, 9.2rem);
  position: absolute;
  z-index: 10;
  height: 10rem;
  width: 100%;
}

header h1 {
  width: clamp(20rem, 17.630556vw, 25.3rem);
  line-height: 1;
  position: absolute;
  top: 1.4rem;
  left: clamp(2rem, 6.513889vw, 9.3rem);
}

header .gnav {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 3.125vw, 4.5rem);
}

header .gnav .icon {
  display: block;
  width: clamp(2rem, 1.7361111111vw, 2.5rem);
}

@media screen and (max-width: 820px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 6rem;
    padding: 0;
  }
  header h1 {
    width: 15rem;
  }
}
/*======================================
　nav
======================================*/
ul.gnav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 3.125vw, 4.5rem);
}

ul.gnav-menu > li {
  white-space: nowrap;
  text-align: center;
}

ul.gnav-menu > li > a {
  display: inline-block;
  position: relative;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: clamp(1.5rem, 1.25vw, 1.8rem);
  font-weight: 200;
  line-height: 1;
}

ul.gnav-menu > li.current a {
  color: #cbbea5;
}

ul.gnav-menu > li.current a::before {
  content: "";
  background: url(../img/nav_current.png) no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: 0.9rem;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

ul.gnav-menu .fa-brands {
  font-size: clamp(2.5rem, 2.4305555556vw, 3.5rem);
  color: #962337;
}

/*======================================
　hamburger
======================================*/
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background-color: #962337;
}

.gnav-sp .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  line-height: 1.4;
}

.gnav-sp-menu li span {
  display: block;
  font-weight: normal;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
  color: #fff;
}

.gnav-sp-menu li .fa-brands {
  font-size: 3.5rem;
}

.gnav-sp .iconBox {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.gnav-sp .iconBox .icon {
  display: block;
  width: 3rem;
}

/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
  background-color: #962337;
}

.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span {
  background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}

.secHeading {
  width: 23.6rem;
}

/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv_inner {
  width: 100%;
  height: clamp(25rem, 34.7222222222vw, 50rem);
  background-image: url(../img/page_mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pageMv_inner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.pageMv h1 {
  font-size: clamp(3rem, 3.6603221083vw, 5rem);
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

/*============================
	hero
============================*/
.top-kv {
  position: relative;
  z-index: 3;
}
.top-kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg-mv.png) no-repeat top center /cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.top-kv-slider > * {
  height: 100vh;
}

.top-kv-slider > *:nth-of-type(1) {
  background: url(../img/mv_photo01.jpg) no-repeat center/cover;
}

.top-kv-slider > *:nth-of-type(2) {
  background: url(../img/mv_photo02.jpg) no-repeat center/cover;
}

.top-kv-slider > *:nth-of-type(3) {
  background: url(../img/mv_photo03.jpg) no-repeat center/cover;
}

.scroll {
  font-family: "kokuryu", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  letter-spacing: 0.2em;
}

.scroll span {
  width: 0.2rem;
  height: 7rem;
  background: #fff;
  margin-top: 1rem;
  -webkit-animation: scroll infinite 1s;
  animation: scroll infinite 1s;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@media screen and (max-width: 768px) {
  .top-kv-slider > * {
    height: 100vh;
  }
}
/*======================================
　こだわりページ
======================================*/
.pageSub .about_inner {
  padding: 5rem 2rem 5rem;
  max-width: 102rem;
  margin: 0 auto;
}
.pageSub .about h2 {
  font-size: clamp(2rem, 2.0833333333vw, 3rem);
  font-weight: 900;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 3.4722222222vw, 5rem);
  position: relative;
  line-height: 1.5;
}
.pageSub .about h2::before {
  content: "";
  width: clamp(10rem, 20.8333333333vw, 30rem);
  height: 0.3rem;
  background-color: #962337;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  z-index: 2;
}
.pageSub .about h2::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.pageSub .about_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 3.4722222222vw, 5rem);
}
@media screen and (max-width: 767px) {
  .pageSub .about_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pageSub .about_content .photo {
  width: clamp(30rem, 27.7777777778vw, 40rem);
}
@media screen and (max-width: 767px) {
  .pageSub .about_content .photo {
    width: 100%;
  }
}
.pageSub .about_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*======================================
店舗情報
======================================*/
.information {
  position: relative;
}
.pageSub .information_inner {
  padding: clamp(5rem, 10.4166666667vw, 15rem) clamp(2rem, 2.7777777778vw, 4rem);
  max-width: 115.7rem;
  margin: 0 auto;
}
.information h2 {
    width: 22.6rem;
    /* margin: 0 auto 5rem; */
}
.pageSub .information_table {
  margin-bottom: 5rem;
}
.pageSub .information_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
  font-size: clamp(1.2rem, 1.15vw, 1.6rem);
  font-weight: 500;

}
.information .c-btn {
  margin: 7rem auto 0;
}
@media screen and (max-width: 767px) {
  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .information h2 {
    width: 15rem;
  }
  .pageSub .information_table {
    margin-bottom: 1rem;
  }
}
.pageSub .information_table dl {
  border-bottom: solid 1px rgba(0, 0, 0, 1);
}
.pageSub .information_table dt, .pageSub .information_table dd, .pageSub .information_table a {
  line-height: 1.5;
  color: #1d1d1d;
}
.pageSub .information_table dt {
  width: 20%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pageSub .information_table dt {
    width: 100%;
  }
}
.pageSub .information_table dd {
  width: 80%;
  line-height: calc(36/16);
}
@media screen and (max-width: 767px) {
  .pageSub .information_table dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pageSub .information_table a {
    text-decoration: underline;
  }
}
.pageSub .information_map {
  height: 29rem;
}
@media screen and (max-width: 767px) {
  .pageSub .information_map {
    height: 25rem;
  }
}
.pageSub .information_map iframe {
  width: 100%;
  height: 29rem;
}

.access-wrap-1 {
  position: relative;
}
.ttl-access {
  position: absolute;
  top: 0;
  left: 0.9rem;
  width: clamp(4rem,6.2vw,8.9rem);
}
.access-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.3rem;
  margin-top: 0.3rem;
}
.access-wrap-3 {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 65.3% 1fr;
  gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .access-wrap-3 {
    grid-template-columns: 1fr;
  }
}

/*======================================
ギャラリー
======================================*/
.pageSub .galleryBox_inner {
  max-width: 100rem;
  padding: clamp(5rem, 10.4166666667vw, 15rem) 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pageSub .galleryBox_inner {
    width: 100%;
  }
}
.pageSub .galleryBox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.3888888889vw, 2rem);
}
.pageSub .galleryBox_item {
  list-style-type: none;
}
.pageSub .galleryBox_item img {
  width: clamp(8rem, 12.1527777778vw, 17.5rem);
  height: clamp(8rem, 12.1527777778vw, 17.5rem);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .pageSub .galleryBox_item img {
    width: clamp(10rem, 19.556714472vw, 15rem);
    height: clamp(10rem, 19.556714472vw, 15rem);
  }
}

/*======================================
商品一覧
======================================*/
.pageSub .menu_inner {
  padding: clamp(5rem, 10.9090909091vw, 12rem) clamp(2rem, 5.4545454545vw, 6rem);
  max-width: 122rem;
  margin: 0 auto;
}
.pageSub .menu_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.8181818182vw, 2rem);
  margin-bottom: clamp(5rem, 9.0909090909vw, 10rem);
}
.pageSub .menu_category li {
  width: calc((100% - clamp(1rem, 1.8181818182vw, 2rem)) / 2);
  list-style-type: none;
}
.pageSub .menu_category a {
  display: block;
  width: 100%;
  padding: clamp(2rem, 2.7272727273vw, 3rem);
  font-size: clamp(1.8rem, 1.8181818182vw, 2rem);
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  color: #1d1d1d;
  text-align: center;
  background-color: #fff;
}
.pageSub .menu_category a.active {
  background-color: #9f917c;
  color: #fff;
}
.pageSub .menu .rstdtl-menu-lst__heading {
  font-size: clamp(2.5rem, 2.7272727273vw, 3rem);
  margin-top: 10rem;
  margin-bottom: 1rem;
  color: #962337;
  border-left: solid 0.8rem #962337;
  padding-left: 2rem;
}
.pageSub .menu .rstdtl-menu-lst__contents {
  padding: 2rem 0;
}
.pageSub .menu .rstdtl-menu-lst__contents:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .pageSub .menu .rstdtl-menu-lst__contents:has(img) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
.pageSub .menu .rstdtl-menu-lst__contents:has(img) .rstdtl-menu-lst__info-inner {
  padding: 0;
  margin-bottom: 1rem;
}
.pageSub .menu .rstdtl-menu-lst__contents:has(.rstdtl-menu-lst__option) .rstdtl-menu-lst__info-inner {
  padding: 0;
  margin-bottom: 1rem;
}
.pageSub .menu .rstdtl-menu-lst__contents:not(:last-child) {
  border-bottom: dotted 0.1rem #1d1d1d;
}
.pageSub .menu .rstdtl-menu-lst__option {
  display: inline-block;
  background-color: #962337;
  font-weight: bold;
  padding: 0.6rem 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.pageSub .menu .rstdtl-menu-lst__target {
  display: block;
  width: clamp(10rem, 18.1818181818vw, 20rem);
}
@media screen and (max-width: 767px) {
  .pageSub .menu .rstdtl-menu-lst__target {
    width: 100%;
  }
}
.pageSub .menu .rstdtl-menu-lst__ex {
  line-height: 1.5;
}
.pageSub .menu .rstdtl-menu-lst__info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}
.pageSub .menu .rstdtl-menu-lst a {
  pointer-events: none;
}
.pageSub .menu .preparation {
  text-align: center;
  font-size: clamp(2.5rem, 5.4545454545vw, 6rem);
  font-weight: 900;
}

/*======================================
お知らせ
======================================*/
.pageSub .articleBox_inner {
  padding: clamp(10rem, 10.980966325vw, 15rem) clamp(2rem, 2.9282576867vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}
.pageSub .articleBox .CMS-NEWS-INDEX {
  max-width: 110rem;
  gap: 2rem clamp(2rem, 6.0909090909vw, 6.7rem);
}
@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}
.pageSub .articleBox .CMS-NEWS-ITEM {
  width: calc((100% - clamp(2rem, 6.0909090909vw, 6.7rem) * 2) / 3);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-ITEM {
    width: 100%;
  }
}
.pageSub .articleBox .CMS-NEWS-ITEM a {
  padding: 0;
}
.pageSub .articleBox .CMS-NEWS-THUMBNAIL {
  height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 1rem;
}
.pageSub .articleBox .CMS-NEWS-TIME {
  font-weight: 400;
  letter-spacing: 0;
  color: #1d1d1d;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.pageSub .articleBox .CMS-NEWS-LINK {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: #1d1d1d;
}

/*======================================
お知らせ詳細
======================================*/
.pageSub .newsDetail_inner {
  padding: clamp(10rem, 10.980966325vw, 15rem) clamp(2rem, 2.9282576867vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}
.pageSub .newsDetail .CMS-NEWS-TITLE:after {
  border-bottom: solid 3px #962337;
}

/*======================================
TOPページ
======================================*/
.pageTop .topPolicy {
  position: relative;
}
.policy-deco {
  position: absolute;
  width: 100%;
  position: absolute;
  top: clamp(-19rem, -13vw, -4rem);
  left: 0;
  pointer-events: none;
}
.pageTop .topPolicy_inner {
  padding-top: clamp(5rem, 11.3636363636vw, 12.5rem);
  padding-bottom: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: clamp(4rem, 3.109091vw, 4.4rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .pageTop .topPolicy_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pageTop .topPolicy_head {
  width: clamp(18rem, 24.354545vw, 35rem);;
  margin-right: clamp(1rem, 5.236364vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topPolicy_head {
    width: 100%;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.pageTop .topPolicy_head h2 {
  font-size: clamp(2.8rem, 4.3636363636vw, 4.8rem);
  font-family: ta-fuga-fude, sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: calc(70/48);
  white-space: nowrap;
}
.pageTop .topPolicy_head h2 span {
  color: #962337;
  display: inline-block;
}
.pageTop .topPolicy_head h2 span.first {
  margin-left: 2rem;
}
.pageTop .topPolicy_head h2 span.last {
  color: #353535;
}
.pageTop .topPolicy_detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageTop .topPolicy_detail .photoBox {
  margin-left: clamp(-8rem, -7.2727272727vw, -2rem);
  margin-bottom: clamp(2rem, 4vw, 4.4rem);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .pageTop .topPolicy_detail .photoBox {
    margin-left: 0;
  }
}
.pageTop .topPolicy_detail .read {
  margin-bottom: 3.5rem;
  font-family: "Shippori Mincho", serif;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .pageTop .topPolicy_detail .c-btn {
    margin: 0 auto;
    z-index: 5;
  }
}
.pageTop .topPolicy .decoraBox {
  width: clamp(15rem, 49.818182vw, 71.6rem);
  position: absolute;
  right: -8rem;
  bottom: clamp(-3.8rem, -15.2727272727vw, -5.8rem);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pageTop .topPolicy .decoraBox {
    right: -1rem;
    bottom: -3rem;
    width: clamp(15rem, 35.818182vw, 71.6rem);
  }
}
.pageTop .topMenu {
  background-image: url(../img/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}
.pageTop .topMenu::before {
  content: "";
  background-image: url(../img/menu_bg_decora.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(30rem, 78.6805555556vw, 113.3rem);
  height: clamp(15rem, 51.4545454545vw, 56.6rem);
  position: absolute;
  top: -2rem;
  right: 0;
  z-index: -1;
}
.pageTop .topMenu_inner {
  padding-top: clamp(8rem, 14.5454545455vw, 16rem);
  padding-bottom: clamp(5rem, 11.8181818182vw, 13rem);
  position: relative;
  z-index: 1;
}
.pageTop .topMenu .secHeading {
  width: clamp(3rem, 4.5454545455vw, 5rem);
  position: absolute;
  top: clamp(5rem, 9.0909090909vw, 10rem);
  right: clamp(2rem, 10vw, 11rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu .secHeading {
    position: initial;
    margin: 0 auto 5rem;
  }
}
.pageTop .topMenu_content h3 {
  font-size: clamp(3rem, 4.3636363636vw, 4.8rem);
  font-family: "kokuryu", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.pageTop .topMenu_content h3 span {
  display: block;
}
.pageTop .topMenu_content h3 strong {
  font-size: clamp(4rem, 5.4545454545vw, 6rem);
  color: #9f917c;
}
.pageTop .topMenu_content .read {
  line-height: 2;
  color: #fff;
}
.pageTop .topMenu_content.food {
  padding-right: clamp(10rem, 27.2727272727vw, 30rem);
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.food {
    padding-right: 0;
  }
}
.pageTop .topMenu_content.food .photoBox {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}
.pageTop .topMenu_content.food .photoBox .photo01 {
  display: block;
  margin-left: clamp(-17rem, -15.4545454545vw, -2rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.food .photoBox .photo01 {
    margin-left: 0;
  }
}
.pageTop .topMenu_content.food .photoBox .photo01::before {
  content: "";
  background-image: url(../img/menu_heading_food.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(10rem, 13.1818181818vw, 14.5rem);
  height: clamp(25rem, 26.8181818182vw, 29.5rem);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.pageTop .topMenu_content.food .photoBox .photo02 {
  display: block;
  width: clamp(25rem, 39.3636363636vw, 43.3rem);
  position: absolute;
  bottom: clamp(-22rem, -20vw, -12rem);
  right: clamp(-32.3rem, -29.3636363636vw, -22.3rem);
  z-index: 2;
}
.pageTop .topMenu_content.food .detail {
  padding-right: clamp(10rem, 16.1818181818vw, 17.8rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.food .detail {
    padding-right: 0;
  }
}
.pageTop .topMenu_content.food .detail h3 {
  margin-bottom: 2rem;
}
.pageTop .topMenu_content.food .detail h3 span:last-child {
  text-align: right;
}
.pageTop .topMenu_content.drink {
  width: 100%;
  height: 62.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(5rem, 6.5454545455vw, 7.2rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.drink {
    height: auto;
    padding-top: 12rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.pageTop .topMenu_content.drink::before {
  content: "";
  background-image: url(../img/menu_heading_drink.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(15rem, 26.7272727273vw, 29.4rem);
  height: clamp(8rem, 13.1818181818vw, 14.5rem);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.pageTop .topMenu_content.drink::after {
  content: "";
  width: calc(100% + clamp(4rem, 30.9090909091vw, 34rem));
  height: 100%;
  background-image: url(../img/menu_photo03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  margin-left: clamp(-17rem, -15.4545454545vw, -2rem);
  margin-right: clamp(-17rem, -15.4545454545vw, -2rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.drink::after {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    background-position: center;
  }
}
.pageTop .topMenu_content.drink .detail {
  max-width: 56rem;
  margin-bottom: clamp(7rem, 12.7272727273vw, 14rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.drink .detail {
    margin-bottom: 5rem;
  }
}
.pageTop .topMenu_content.drink .detail h3 {
  text-align: right;
  margin-bottom: 3rem;
}
.pageTop .topMenu_content.drink .detail .read {
  width: clamp(30rem, 45.4545454545vw, 50rem);
  margin-left: auto;
}
.pageTop .topMenu .c-btn {
  margin: 0 auto;
}
.pageTop .topNews {
  background-image: url(../img/news_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.pageTop .topNews_inner {
  padding-top: clamp(5rem, 10.9090909091vw, 12rem);
  padding-bottom: clamp(5rem, 10.9090909091vw, 12rem);
}
.pageTop .topNews .secHeading {
  width: 20rem;
  margin: 0 auto 3.3rem;
}
.pageTop .topNews_content .detail {
  margin-bottom: 5.4rem;
}
.pageTop .topNews_content .CMS-NEWS-INDEX {
  max-width: 110rem;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.pageTop .topNews_content .CMS-NEWS-ITEM {
  width: calc((100% - clamp(2rem, 5vw, 5.5rem) * 2) / 3);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .pageTop .topNews_content .CMS-NEWS-ITEM {
    width: 100%;
  }
}
.pageTop .topNews_content .CMS-NEWS-THUMBNAIL {
  height: 23rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 1.8rem;
  overflow: hidden;
}
.pageTop .topNews_content .CMS-NEWS-ITEM a {
  padding: 0;
}
.pageTop .topNews_content .CMS-NEWS-TIME {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 0.5rem;
}
.pageTop .topNews_content .CMS-NEWS-LINK {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #1d1d1d;
}
.pageTop .topNews_content .CMS-NEWS-MORE-READ {
  display: none;
}
.pageTop .topNews_content .c-btn {
  margin: 0 auto;
}
.pageTop .topGallery {
  background-image: url(../img/gallery_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.pageTop .topGallery_inner {
  padding-top: clamp(5rem, 10.1694915254vw, 12rem);
  padding-bottom: clamp(5rem, 10.1694915254vw, 12rem);
}
.pageTop .topGallery .secHeading {
  width: 21.7rem;
  margin: 0 auto 4.4rem;
}
.pageTop .topGallery #loopslider {
  width: 100%;
  height: clamp(20rem, 15.6944444444vw, 22.6rem);
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(3rem, 5.5084745763vw, 6.5rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider {
    height: 18rem;
  }
}
.pageTop .topGallery #loopslider ul {
  float: left;
  display: inline;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.pageTop .topGallery #loopslider ul li {
  width: 31.8rem;
  float: left;
  display: inline;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider ul li {
    width: 25.6rem;
  }
}
.pageTop .topGallery #loopslider ul li img {
  padding: 0 0.3rem;
}
.pageTop .topGallery #loopslider ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.pageTop .topGallery #loopslider ul {
  display: inline-block;
  overflow: hidden;
}
.pageTop .topGallery .c-btn {
  margin: 0 auto;
}
.pageTop .topAccess {
  position: relative;
}
.access-deco-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}
.access-deco-2 {
  position: absolute;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.pageTop .topAccess_inner {
  padding-top: clamp(5rem, 10vw, 11rem);
  padding-bottom: clamp(5rem, 11.8181818182vw, 11rem);
  position: relative;
  z-index: 1;
  max-width: 119.7rem;
}
.pageTop .topAccess .secHeading {
  width: 22.6rem;
  margin: 0 auto 5rem;
}
.pageTop .topAccess_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.4rem 3.3rem ;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pageTop .topAccess .secHeading {
    width: 15rem;
  }
}
.pageTop .topAccess_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail {
    width: 100%;
  }
}
.pageTop .topAccess_content .detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  height: 9rem;
  border-bottom: solid 0.1rem #999999;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    gap: 0;
    border-bottom: none;
  }
}
.pageTop .topAccess_content .detail dl:first-child {
  border-top: solid 0.1rem #999999;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dl:first-child {
    border-top: none;
  }
}
.pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd, .pageTop .topAccess_content .detail a {
  font-size: clamp(1.5rem, 1.6363636364vw, 1.8rem);
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  line-height: 1.5555555556;
  color: #1d1d1d;
}
.pageTop .topAccess_content .detail dt.en, .pageTop .topAccess_content .detail dd.en, .pageTop .topAccess_content .detail a.en {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
}
.pageTop .topAccess_content .detail dt {
  width: clamp(10rem, 11.2727272727vw, 12.4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(159, 145, 124, 0.3);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dt {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1rem;
  }
}
.pageTop .topAccess_content .detail dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dd {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail a {
    text-decoration: underline;
  }
}
.pageTop .topAccess_content .photoBox {
  width: clamp(30rem, 45.4545454545vw, 50rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .photoBox {
    width: 100%;
  }
}
.pageTop .topAccess_content .photoBox .c-btn {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .photoBox .c-btn {
    margin: 3rem auto 0;
  }
}
.pageTop .gmap iframe {
  width: 100%;
  height: clamp(25rem, 40.9090909091vw, 45rem);
}





/*  */
.top-yoyaku {
	padding: 12rem 10rem;
}

.top-yoyaku h2 {
	text-align: center;
}

.information .top-yoyaku h2.heading-1 {
	width: auto;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.information .top-yoyaku {
	padding: 6rem clamp(2rem, 8vw, 10rem);
}

.information .top-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.information .top-container h2.heading-1 {
	margin-bottom: 0;
}

.information .top-container .reserve__txt {
	margin-top: 0;
}

.information .top-container .calendar-wrapper {
	margin-top: 0;
}

.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;
}

.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,
#calendar_section {
	text-align: center;
	width: 100%;
}

.reservation #calendar {
	text-align: center;
	width: 100%;
	line-height: 1.5;
}

.calendar-navigation {
	display: flex; 
	justify-content: center; 
	align-items: center;
	padding: 16px; 
}

.calendar-navigation .nav-button {
	background-color: #212121;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;	 
}

.calendar-navigation .nav-button:hover {
	opacity: 0.8; 
}

.calendar-navigation .nav-button.disabled {
	background-color: #aaa;
	opacity: 0.5;
	cursor: initial;	 
}

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;
	text-align: center;
	color: #111111;
}

.table-data {
	position: relative;
	height: 112px;
}

.dayOfWeek th:nth-child(6),
td:nth-child(6) .reservation-date,
td:nth-child(6) .reservation-date a {
	color: #8888ff;
}

.dayOfWeek th:last-child,
td:last-child .reservation-date,
td:last-child .reservation-date a {
	color: #ff8888;
}

td.disabled {
	background-color: #eeeeee;
	color: #aaaaaa;
}

.reservation-date {
  position: absolute;
  top: 4px;
  left: 4px;
}

.reservation-seat {
	font-size: 14px;
}

.reservation-seat.able a {
	color: #dd8866;
}

.reservation-seat-disabled a {
	color: #aaaaaa;
}

.table-data.clickable {
	padding: 0; 
}

.table-data.disabled > div {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center; 
}
  
.table-cell-link {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 8px; 
	align-items: center;
	justify-content: center; 
	text-decoration: none;
	color: inherit;
}
  
.table-cell-link:hover {
	background-color: rgba(0, 0, 0, 0.05);  
}

.table-cell-link .reservation-date,
.table-cell-link .reservation-seat {
	pointer-events: none;  
}

.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 (min-width: 768px) {
	.information .calendar-wrapper {
		align-items: stretch;
	}

	.information .calendar-wrapper #calendar_section {
		display: flex;
		flex-direction: column;
		flex: 1 1 50%;
		min-width: 0;
		min-height: 0;
		align-self: stretch;
	}

	.information .calendar-wrapper #calendar {
		flex: 1 1 auto;
		min-height: 0;
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}

	/* テーブル行の%高さはブラウザで効かないことが多いため、Grid で行を均等割り */
	.information .calendar-wrapper #calendar > table {
		flex: 1 1 auto;
		min-height: 0;
		width: 100%;
		height: 100%;
		display: grid;
		grid-auto-flow: row;
		grid-template-columns: repeat(7, minmax(0, 1fr));
		grid-template-rows: repeat(var(--cal-grid-rows, 7), minmax(0, 1fr));
		border-collapse: separate;
		border-spacing: 0;
	}

	.information .calendar-wrapper #calendar table thead,
	.information .calendar-wrapper #calendar table tbody,
	.information .calendar-wrapper #calendar table thead tr,
	.information .calendar-wrapper #calendar table tbody tr {
		display: contents;
	}

	.information .calendar-wrapper #calendar table th,
	.information .calendar-wrapper #calendar table td {
		outline: none;
		border: 1px solid #ddd;
		box-sizing: border-box;
		min-width: 0;
		min-height: 0;
	}

	.information .calendar-wrapper #calendar table th {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0;
		font-weight: inherit;
	}

	.information .calendar-wrapper .table-data {
		height: auto;
		min-height: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	.information .calendar-wrapper #calendar table .table-data.disabled {
		padding: 0;
	}

	.information .calendar-wrapper #calendar table .table-data.disabled > div:first-child {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 0;
	}

	.information .calendar-wrapper #calendar table .table-data.clickable {
		padding: 0;
	}

	.information .calendar-wrapper #calendar table .table-cell-link {
		position: absolute;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 4px;
	}

	.information .calendar-wrapper .calendar-navigation {
		flex-shrink: 0;
		padding: 0.5rem 1rem;
	}

	.information .calendar-wrapper .calendar-navigation h2 {
		margin: 0;
		font-size: clamp(1.4rem, 1.2vw, 1.6rem);
		line-height: 1.25;
	}

	.information .calendar-wrapper .dayOfWeek th {
		padding: 0.4rem 0.2rem;
		font-size: 1.2rem;
		line-height: 1.2;
	}

	.information .calendar-wrapper .reservation-date {
		top: 2px;
		left: 3px;
		font-size: 1.2rem;
	}

	.information .calendar-wrapper .reservation-seat {
		font-size: 1.2rem;
	}

	.information .calendar-wrapper .calendar-reservation {
		flex: 1 1 50%;
		min-width: 0;
		padding: 1.4rem 1.6rem;
	}

	.information .calendar-wrapper .calendar_person,
	.information .calendar-wrapper .calendar_time {
		padding: 6px;
		margin-bottom: 6px;
	}

	.information .calendar-wrapper .calendar_button {
		padding: 10px;
		font-size: 1.6rem;
	}

	.information .calendar-wrapper .calendar_info {
		margin: 1rem 0 0;
		line-height: 1.65;
	}
}

@media screen and (max-width: 767px) {
	.top-yoyaku {
		padding: 6rem 0;
	}

	.information .top-yoyaku {
		padding: 4rem 0;
	}

	.information .top-container {
		gap: 1.6rem;
	}

	.information .top-container .calendar-wrapper {
		margin: 0 auto;
	}

	.reserve {
		/* margin-top: 5rem; */
		width: 90%;
		margin: 0 auto;
	}

	.reservation .reserve {
		margin-top: 0;
	}

	.calendar-wrapper {
		width: 100%;
		font-size: 12px;
		margin: 5rem auto;
		flex-direction: column;
	}

	.table-data {
		height: 60px;
	}

	.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;
	}

	.calendar-navigation h2 {
		font-size: 18px;
	}
	
	.reservation-date {
		font-size: 16px;
	}

	.reservation-seat {
		font-size: 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;
	}

	.dayOfWeek th {
		font-size: 14px;
		padding: 4px;
	}

	.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;
}

.reserve__txt {
	width: 90%;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: center;
    margin: 4rem auto 0;
}

.cancel_policy {
	color: #dd8866;
}