@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");

/*
  value_pc(min, max)

  使い方：
  - width: value_pc(18rem, 21.6rem);
  - font-size: value_pc(12px, 20px);

  説明：
  - 最小値(min)と最大値(max)を渡すと
  - SP幅(767px)〜PC幅(1130px)の間で自然に補間される clamp(...) を返す
*/
/*======================================
セッティング
======================================*/
.sp {
  display: none;
}

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

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

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

.tabOnly {
  display: none !important;
}

@media (min-width: 768px) 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: 768px) {
  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-size: clamp(1.2rem, calc(1.2rem + (1.6rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.6rem);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #27293e;
  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 {
  display: block;
  width: 13.75em;
  z-index: 1;
  margin: 0 auto;
}

.c-btn.left {
  margin-left: 0;
}

.c-btn.right {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .c-btn.left {
    margin: 0 auto;
  }

  .c-btn.right {
    margin: 0 auto;
  }
}

/*======================================
　アニメーション : 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-color: #512b00;
  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: 2.5em;
  padding-bottom: 2em;
}

footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: clamp(5rem, calc(5rem + (9rem - 5rem) * ((100vw - 767px) / 363px)), 9rem);
  margin-bottom: clamp(4rem, calc(4rem + (9rem - 4rem) * ((100vw - 767px) / 363px)), 9rem);
}

/* logo */
footer .logo {
  width: 10.7em;
}

/* 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: 2.5em;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em 2.5em;
  gap: clamp(3rem, calc(3rem + (5.5rem - 3rem) * ((100vw - 767px) / 363px)), 5.5rem);
}

footer nav ul a {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.6363636364vw, 1.8rem);
  font-size: clamp(1.4rem, calc(1.4rem + (1.6rem - 1.4rem) * ((100vw - 767px) / 363px)), 1.6rem);
  letter-spacing: 0.14em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

footer nav ul li:not(:last-of-type) a::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0px;
  right: calc(clamp(3rem, calc(3rem + (5.5rem - 3rem) * ((100vw - 767px) / 363px)), 5.5rem) / -2);
  width: 1px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  footer nav ul li:not(:last-of-type) a::after {
    content: none;
  }
}

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

footer nav .iconBox .icon {
  display: block;
  width: clamp(2rem, 2.0833333333vw, 3rem);
  width: clamp(1.6rem, calc(1.6rem + (2.2rem - 1.6rem) * ((100vw - 767px) / 363px)), 2.2rem);
}

footer small {
  display: block;
  text-align: center;
  font-size: clamp(1.3rem, 1.4545454545vw, 1.6rem);
  font-size: clamp(1.2rem, calc(1.2rem + (1.4rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  footer .wrap {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
  }

  .footer_inner {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }

  footer .btnPagetop {
    right: 1rem;
  }

  footer .logo {
    width: 12rem;
    padding-top: 0;
  }

  /* nav */
  footer nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }

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

  footer nav .iconBox .icon {
    width: 2rem;
  }
}










/*======================================
　ヘッダー
======================================*/
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: 9rem;
  width: 100%;
}

header h1 {
  width: clamp(11.5rem, calc(11.5rem + (20.6rem - 11.5rem) * ((100vw - 767px) / 363px)), 20.6rem);
  width: 5.32em;
  line-height: 1;
  position: absolute;
  top: clamp(2.8rem, calc(2.8rem + (3.5rem - 2.8rem) * ((100vw - 767px) / 363px)), 3.5rem);
  left: clamp(1rem, 4.5138888889vw, 3rem);
  left: 1.6em;
}

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(1.5rem, 1.7361111111vw, 2.2rem);
  margin-top: 0.2rem;
}

@media screen and (max-width: 767px) {
  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: 11rem;
    top: 1.5rem;
    left: 1.35rem;
  }
}

/*======================================
　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(2.2rem, calc(2.2rem + (6.5rem - 2.2rem) * ((100vw - 767px) / 363px)), 6.5rem);
}

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

ul.gnav-menu>li:not(:last-of-type) a::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0px;
  right: calc(clamp(2.2rem, calc(2.2rem + (6.5rem - 2.2rem) * ((100vw - 767px) / 363px)), 6.5rem) / -2);
  width: 1px;
  background: #fff;
}

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

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: #000;
}

.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-weight: 400;
  line-height: 1.4;
}

.gnav-sp-menu li span {
  display: block;
  font-weight: normal;
  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: 3rem;
  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: #000;
}

.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 {
  font-size: clamp(1.2rem, calc(1.2rem + (1.6rem - 1.2rem) * ((100vw - 767px) / 363px)), 1.6rem);
  height: clamp(6rem, calc(6rem + (7.7rem - 6rem) * ((100vw - 767px) / 363px)), 7.7rem);
  height: 2.5em;
  text-align: center;
}

.secHeading img {
  height: 100%;
  width: auto;
}

/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv_inner {
  width: 100%;
  height: clamp(25rem, 34.7222222222vw, 50rem);
  height: clamp(30rem, calc(30rem + (50rem - 30rem) * ((100vw - 767px) / 363px)), 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", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

/*============================
	hero
============================*/
.top-kv {
  position: relative;
}

.top-kv::after {
  content: "";
  width: 100%;
  height: 11rem;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
}

.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-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: 767px) {
  .top-kv-slider>* {
    height: 100vh;
  }
}

/*======================================
　こだわりページ
======================================*/
.pageSub .about_inner {
  padding: clamp(5rem, 8.3333333333vw, 12rem) 2rem 0;
  max-width: 102rem;
  margin: 0 auto;
}

.about:last-of-type .about_inner {
  padding-bottom: clamp(5rem, 8.3333333333vw, 12rem);
}

.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: #8c0032;
  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;
}

.pageSub .about_content .detail p {
  letter-spacing: 0.08em;
}

/*======================================
店舗情報
======================================*/
.pageSub .information_inner {
  padding: clamp(5rem, 10.4166666667vw, 15rem) clamp(2rem, 2.7777777778vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}

.pageSub .information_table {
  margin-bottom: 5rem;
}

.pageSub .information_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
}

@media screen and (max-width: 767px) {
  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
}

.pageSub .information_table dl:not(:last-child) {
  border-bottom: solid 1px rgba(29, 29, 29, 0.2);
}

.pageSub .information_table dt,
.pageSub .information_table dd,
.pageSub .information_table a {
  line-height: 1.5;
  color: #1d1d1d;
}

.pageSub .information_table dt {
  width: 30%;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .pageSub .information_table dt {
    width: 100%;
  }
}

.pageSub .information_table dd {
  width: 70%;
  font-weight: 400;
}

@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: 50rem;
}

@media screen and (max-width: 767px) {
  .pageSub .information_map {
    height: 25rem;
  }
}

.pageSub .information_map iframe {
  width: 100%;
  height: 100%;
}

/*======================================
ギャラリー
======================================*/
.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: grid;
  grid-template-columns: repeat(4, 1fr);
  /* flex-wrap: wrap; */
  -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)*3) / 4); */
  list-style-type: none;
}

.pageSub .menu_category a {
  display: block;
  width: 100%;
  padding: clamp(2rem, 2.7272727273vw, 3rem) 0;
  font-size: 1.3em;
  font-weight: bold;
  color: #1d1d1d;
  text-align: center;
  background-color: #fff;
}

.pageSub .menu_category a.active {
  background-color: #8c0032;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pageSub .menu_category {
    grid-template-columns: repeat(2, 1fr);
    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);
    width: 8em;
    flex: 1;
  } */
  .pageSub .menu_category a {
    display: block;
    width: 100%;
    padding: clamp(1.5rem, 2.7272727273vw, 3rem) 0.5em;
    font-size: 0.9em;
    letter-spacing: -0.1em;
    font-weight: bold;
    color: #1d1d1d;
    text-align: center;
    background-color: #fff;
  }
}

.pageSub .menu .rstdtl-menu-lst__heading {
  font-size: clamp(2.5rem, 2.7272727273vw, 3rem);
  font-size: 1.5em;
  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) clamp(20rem, 10.980966325vw, 25rem);
  max-width: 106rem;
  margin: 0 auto;
}

.pageSub .articleBox .CMS-NEWS-INDEX {
  max-width: 110rem;
  gap: 4rem 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;
  height: clamp(14rem, calc(14rem + (19rem - 14rem) * ((100vw - 767px) / 363px)), 19rem);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-THUMBNAIL {
    height: 30rem;
  }
}

@media screen and (max-width: 500px) {
  .pageSub .articleBox .CMS-NEWS-THUMBNAIL {
    height: 20rem;
  }
}

.pageSub .articleBox .CMS-NEWS-TIME {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #1d1d1d;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #666;
}

.pageSub .articleBox .CMS-NEWS-LINK {
  font-size: 1.6rem;
  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 {
  background: url(../img/back-policy.jpg) no-repeat center top/cover;
  color: #fff;
  position: relative;
}

.pageTop .topPolicy_inner {
  padding-top: clamp(12rem, calc(12rem + (15.5rem - 12rem) * ((100vw - 767px) / 363px)), 15.5rem);
  padding-top: 10.375em;
  padding-bottom: 7.2em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 1.5em;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1000px) {
  .pageTop .topPolicy_inner {
    gap: 3em;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy {
    background: url(../img/back-policy.jpg) no-repeat left top/cover;
  }

  .pageTop .topPolicy_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 6rem;
    padding-bottom: 8rem;
    padding-left: 2rem;
    gap: 5rem;
  }
}

.pageTop .topPolicy_head {
  flex-basis: 35%;
}

.pageTop .topPolicy_head>div {
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy_head>div {
    justify-content: flex-start;
    flex-direction: column;
  }

  .pageTop .topPolicy_head {
    width: 100%;
    max-width: 600px;
    margin-right: 0;
    margin: 0 auto;
  }
}

.pageTop .topPolicy_head h2 {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.09em;
  writing-mode: vertical-rl;
  margin-left: 1.5em;
  font-family: "kokuryu", sans-serif;
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy_head h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: 1.57em;
    line-height: 1.52;
  }
}

.pageTop .topPolicy_detail {
  flex: 1;
  margin-left: -11em;
}

.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 {
    margin-left: 0;
  }

  .pageTop .topPolicy_detail .photoBox {
    margin-left: 0;
  }
}

.pageTop .topPolicy .read {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 30em;
  margin-bottom: clamp(6rem, calc(6rem + (7rem - 6rem) * ((100vw - 767px) / 363px)), 7rem);
  font-size: 1em;
  font-weight: 400;
  line-height: 2.57;
  letter-spacing: 0.3em;
}
.pageTop .topPolicy .read span{
display: block;
margin: 3em 1em 0 0;
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy .read {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    height: inherit;
    margin-bottom: 3rem;
  }
  .pageTop .topPolicy .read span{

margin: 2em 0 0 0;
}
}

.pageTop .topPolicy .decoraBox {
  width: clamp(15rem, 83.8181818182vw, 92.2rem);
  position: absolute;
  right: -24rem;
  bottom: clamp(-16.8rem, -15.2727272727vw, -5.8rem);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy .decoraBox {
    right: -8rem;
    bottom: -10rem;
  }
}










.pageTop .topMenu {
  background: url(../img/back-menu.jpg) no-repeat center /cover;
  position: relative;
  z-index: 3;
  color: #fff;
}

@media screen and (min-width: 2000px) {
  .pageTop .topMenu {
    background-position: center calc(50% - 5em);
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu {
    background: url(../img/back-menu.jpg) no-repeat center /130em;
  }
}

.pageTop .topMenu::before {
  content: "";
  background: url(../img/deco-menu1.png) no-repeat left top / contain;
  width: 35em;
  height: 33em;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: -9.5em;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.pageTop .topMenu::after {
  content: "";
  background: url(../img/deco-menu2.png) no-repeat right top / contain;
  width: 40em;
  height: 27em;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: -8.8em;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

@media screen and (max-width: 1300px) {
  .pageTop .topMenu::before {
    width: 28em;
    height: 26em;
    top: -9.5em;
    left: 0;
  }

  .pageTop .topMenu::after {
    width: 35em;
    height: 20em;
    top: -6.5em;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu::before {
    content: none;
    width: 18rem;
    height: 18rem;
    top: -8rem;
  }

  .pageTop .topMenu::after {
    width: 20em;
    height: 9em;
    top: -3em;
  }
}

.pageTop .topMenu_inner {
  padding-top: 12.25em;
  padding-bottom: 4em;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu_inner {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.pageTop .topMenu_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(2rem, calc(2rem + (6rem - 2rem) * ((100vw - 767px) / 363px)), 6rem);
  gap: 4em;
  margin-bottom: 4em;
}

.pageTop .topMenu_content:nth-of-type(1) {
  margin-top: 5.2em;
  margin-bottom: 3.7em;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1200px) {
  .pageTop .topMenu_content {
    gap: 4em;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu_content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1em;
  }

  .pageTop .topMenu_content:nth-of-type(1) {
    flex-direction: column;
    margin-top: 3em;
    margin-bottom: 1em;
  }
}

.pageTop .topMenu_content:nth-of-type(1) .photoBox {
  flex: 1;
  margin-right: -11em;
}

.pageTop .topMenu_content:nth-of-type(2) .photoBox {
  flex: 1;
  margin-left: -11em;
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu_content:nth-of-type(1) .photoBox {
    margin-right: 0;
  }

  .pageTop .topMenu_content:nth-of-type(2) .photoBox {
    margin-left: 0;
  }
}

.pageTop .topMenu .photoBox img {
  width: 100%;
}

.pageTop .topMenu .detail {
  flex-basis: 46%;
  position: relative;
  padding-left: 3em;
  padding-top: 3em;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu .detail {
    padding-left: 0;
  }
}

.pageTop .topMenu .detail>div:nth-of-type(1) {
  width: 112%;
  text-align: center;
  margin-bottom: 2.5rem;
}

.pageTop .topMenu_content:nth-of-type(1) .detail::before {
  content: "";
  background: url(../img/deco-menu3.png) no-repeat center top / contain;
  width: 33em;
  height: 33em;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: 1em;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.pageTop .topMenu_content:nth-of-type(2) .detail::before {
  content: "";
  background: url(../img/deco-menu4.png) no-repeat center top / contain;
  width: 33em;
  height: 33em;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: 1em;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .pageTop .topMenu_content:nth-of-type(1) .detail::before {
    width: 33em;
    height: 33em;
    top: 4em;
    left: 0;
  }

  .pageTop .topMenu_content:nth-of-type(2) .detail::before {
    width: 33em;
    height: 33em;
    top: 3em;
    left: -3em;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu_content:nth-of-type(1) .detail::before {
    background: url(../img/deco-menu3_sp.png) no-repeat center bottom / contain;
    width: 100%;
    height: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
  }

  .pageTop .topMenu_content:nth-of-type(2) .detail::before {
    background: url(../img/deco-menu4_sp.png) no-repeat center bottom / contain;
    width: 100%;
    height: 100%;
    top: inherit;
    bottom: 0;
    left: 0;
  }
}

.pageTop .topMenu_content h3 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.11em;
  margin-bottom: clamp(1.5rem, calc(1.5rem + (2rem - 1.5rem) * ((100vw - 767px) / 363px)), 2rem);
}

.pageTop .topMenu_content .read {
  font-size: 1em;
  font-weight: 400;
  line-height: 2.07;
  letter-spacing: 0.03em;
  margin-bottom: 6em;
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu .detail {
    flex-direction: column;
    height: inherit;
    margin-bottom: 0em;
    padding-bottom: 3em;
  }

  .pageTop .topMenu_content h3 {
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-left: clamp(1.4rem, calc(1.4rem + (2rem - 1.4rem) * ((100vw - 767px) / 363px)), 2rem);
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-bottom: 2rem;
    margin-left: 0;
  }

  .pageTop .topMenu_content .read {
    line-height: 1.9;
    font-size: clamp(1.5rem, calc(1.5rem + (1.8rem - 1.5rem) * ((100vw - 767px) / 363px)), 1.8rem);
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-bottom: 3em;
  }
}

.topMenu_banner {
  display: flex;
  justify-content: space-between;
  background: url(../img/back-menu2.jpg) no-repeat center top/cover;
  width: clamp(50rem, calc(50rem + (72rem - 50rem) * ((100vw - 767px) / 363px)), 72rem);
  margin-left: auto;
  color: #fff;
  padding: clamp(1rem, calc(1rem + (2rem - 1rem) * ((100vw - 767px) / 363px)), 2rem) clamp(1rem, calc(1rem + (2rem - 1rem) * ((100vw - 767px) / 363px)), 2rem) clamp(1rem, calc(1rem + (2rem - 1rem) * ((100vw - 767px) / 363px)), 2rem) clamp(2rem, calc(2rem + (3rem - 2rem) * ((100vw - 767px) / 363px)), 3rem);
  border: clamp(0.5rem, calc(0.5rem + (1.1rem - 0.5rem) * ((100vw - 767px) / 363px)), 1.1rem) solid #000;
  position: relative;
  margin-bottom: clamp(5rem, calc(5rem + (10rem - 5rem) * ((100vw - 767px) / 363px)), 10rem);
}

.topMenu_banner::before {
  content: "";
  background: url(../img/deco-menu3.png) no-repeat center top/contain;
  width: clamp(20rem, calc(20rem + (32.6rem - 20rem) * ((100vw - 767px) / 363px)), 32.6rem);
  height: clamp(8rem, calc(8rem + (18rem - 8rem) * ((100vw - 767px) / 363px)), 18rem);
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: clamp(-1.5rem, calc(-1.5rem + (-2.2rem - -1.5rem) * ((100vw - 767px) / 363px)), -2.2rem);
  left: clamp(-29.5rem, calc(-29.5rem + (-59rem - -29.5rem) * ((100vw - 767px) / 363px)), -59rem);
}

.topMenu_banner>div:nth-of-type(1) {
  flex-basis: 47.5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topMenu_banner>div:nth-of-type(2) {
  flex-basis: 48%;
}

.topMenu_banner>div:nth-of-type(2) p {
  font-size: clamp(1.4rem, calc(1.4rem + (2.4rem - 1.4rem) * ((100vw - 767px) / 363px)), 2.4rem);
  line-height: 1.3;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}

.topMenu_banner>div:nth-of-type(2) p span {
  display: block;
  font-size: clamp(0.7rem, calc(0.7rem + (1.4rem - 0.7rem) * ((100vw - 767px) / 363px)), 1.4rem);
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}

@media screen and (max-width: 1175px) {
  .topMenu_banner::before {
    left: -25vw;
  }
}

@media screen and (max-width: 950px) {
  .topMenu_banner::before {
    left: -23vw;
  }
}

@media screen and (max-width: 880px) {
  .topMenu_banner::before {
    left: -21.5vw;
  }
}

.topMenu_deco {
  position: relative;
}

.topMenu_deco::before {
  content: "";
  background: url(../img/deco-menu4.png) no-repeat center top/contain;
  width: clamp(14rem, calc(14rem + (27rem - 14rem) * ((100vw - 767px) / 363px)), 27rem);
  height: clamp(17rem, calc(17rem + (33.6rem - 17rem) * ((100vw - 767px) / 363px)), 33.6rem);
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: clamp(12rem, calc(12rem + (15rem - 12rem) * ((100vw - 767px) / 363px)), 15rem);
  left: clamp(-2.5rem, calc(-2.5rem + (-5rem - -2.5rem) * ((100vw - 767px) / 363px)), -5rem);
}

@media screen and (max-width: 767px) {
  .topMenu_banner {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    padding: 2rem 1rem;
    border: 0.7rem solid #000;
    position: relative;
    margin-bottom: clamp(5rem, calc(5rem + (10rem - 5rem) * ((100vw - 767px) / 363px)), 10rem);
  }

  .topMenu_banner::before {
    content: "";
    background: url(../img/deco-menu3.png) no-repeat center top/contain;
    width: clamp(20rem, calc(20rem + (32.6rem - 20rem) * ((100vw - 767px) / 363px)), 32.6rem);
    height: clamp(8rem, calc(8rem + (18rem - 8rem) * ((100vw - 767px) / 363px)), 18rem);
    /* aspect-ratio: 293/95; */
    position: absolute;
    top: clamp(-1.5rem, calc(-1.5rem + (-2.2rem - -1.5rem) * ((100vw - 767px) / 363px)), -2.2rem);
    left: clamp(-29.5rem, calc(-29.5rem + (-59rem - -29.5rem) * ((100vw - 767px) / 363px)), -59rem);
  }

  .topMenu_banner>div:nth-of-type(1) {
    width: 22rem;
    margin: 0 auto 2rem;
  }

  .topMenu_banner>div:nth-of-type(2) p {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
  }

  .topMenu_banner>div:nth-of-type(2) p span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
  }

  .topMenu_deco::before {
    content: "";
    width: 10rem;
    height: 15rem;
    top: 6rem;
    left: -2rem;
  }
}










.pageTop .topNews {
  background-image: url(../img/back-news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.pageTop .topNews_inner {
  padding-top: 11.125em;
  padding-bottom: 9.3em;
}

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

.pageTop .topNews_content .detail {
  margin-top: 3.5em;
  margin-bottom: 4em;
}

@media screen and (max-width: 767px) {
  .pageTop .topNews_content .detail {
    margin-top: 3em;
    margin-bottom: 3em;
  }
}

.pageTop .topNews_content .CMS-NEWS-INDEX {
  max-width: 110rem;
  gap: clamp(1.8rem, calc(1.8rem + (2.6rem - 1.8rem) * ((100vw - 767px) / 363px)), 2.6rem);
  padding: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}

.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%;
    margin-bottom: 30px;
  }
}

.pageTop .topNews_content .CMS-NEWS-THUMBNAIL {
  height: 23rem;
  height: clamp(15rem, calc(15rem + (23rem - 15rem) * ((100vw - 767px) / 363px)), 23rem);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 1.8rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pageTop .topNews_content .CMS-NEWS-THUMBNAIL {
    height: 30rem;
  }
}

@media screen and (max-width: 500px) {
  .pageTop .topNews_content .CMS-NEWS-THUMBNAIL {
    height: 20rem;
  }
}

.pageTop .topNews_content .CMS-NEWS-ITEM a {
  padding: 0;
}

.pageTop .topNews_content .CMS-NEWS-TIME {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #666;
}

.pageTop .topNews_content .CMS-NEWS-LINK {
  font-size: 1.6rem;
  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: url(../img/back-gallery.jpg) no-repeat center top/cover;
  position: relative;
  z-index: 3;
}

.pageTop .topGallery_inner {
  padding-top: 8.5em;
  padding-bottom: clamp(8rem, calc(8rem + (11rem - 8rem) * ((100vw - 767px) / 363px)), 11rem);
}

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

.pageTop .topGallery #loopslider {
  width: 100%;
  height: 12em;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-top: clamp(5rem, calc(5rem + (7.5rem - 5rem) * ((100vw - 767px) / 363px)), 7.5rem);
  margin-bottom: 5.5em;
}

@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider {
    height: 18rem;
    margin-bottom: 2em;
  }
}

.pageTop .topGallery #loopslider ul {
  float: left;
  display: inline;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.pageTop .topGallery #loopslider ul li {
  width: 17.5em;
  float: left;
  display: inline;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider ul li {
    width: 22rem;
  }
}

.pageTop .topGallery #loopslider ul li img {
  padding: 0 0.5rem;
}

.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 {
  background: url(../img/back-access.jpg) no-repeat center top/cover;
}

.pageTop .topAccess_inner {
  padding-top: 9.5em;
  padding-bottom: 7.5em;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_inner {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.pageTop .topAccess_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5em;
  margin-top: 6.5em;
  margin-bottom: 3em;
}

@media screen and (max-width: 1100px) {
  .pageTop .topAccess_content {
    gap: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content {
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 4rem;
    gap: 2rem;
  }
}

.pageTop .topAccess_content .detail {
  margin-top: clamp(-2rem, calc(-2rem + (-4rem - -2rem) * ((100vw - 767px) / 363px)), -4rem);
  flex-basis: 46%;
}

@media screen and (max-width: 1100px) {
  .pageTop .topAccess_content .detail {
    flex-basis: 56%;
  }
}

@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;
  padding: clamp(1.7rem, calc(1.7rem + (2.5rem - 1.7rem) * ((100vw - 767px) / 363px)), 2.5rem) 0;
  border-bottom: solid 0.1rem #999999;
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dl {
    flex-direction: column;
    height: auto;
    gap: 0;
    padding: 1.2rem 0;
  }
}

.pageTop .topAccess_content .detail dl:last-of-type {
  border-bottom: none;
  margin-bottom: clamp(1.5rem, calc(1.5rem + (3rem - 1.5rem) * ((100vw - 767px) / 363px)), 3rem);
}

@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-size: clamp(1.4rem, calc(1.4rem + (1.6rem - 1.4rem) * ((100vw - 767px) / 363px)), 1.6rem);
  font-weight: 400;
  line-height: 1.5555555556;
  color: #1d1d1d;
}

.pageTop .topAccess_content .detail dt {
  width: clamp(10rem, 11.2727272727vw, 12.4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  padding-left: clamp(0.8rem, calc(0.8rem + (1.5rem - 0.8rem) * ((100vw - 767px) / 363px)), 1.5rem);
  /* align-items: center; */
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dt {
    width: 100%;
    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: 1rem 1rem;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail a {
    text-decoration: underline;
  }
}

.pageTop .topAccess_content .photoBox {
  flex: 1;
  margin-left: -0em;
}

@media screen and (max-width: 1400px) {
  .pageTop .topAccess_content .photoBox {
    margin-left: -3em;
  }
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .photoBox {
    width: 100%;
    margin-left: 0;
  }
}

.pageTop .gmap iframe {
  width: 100%;
  height: clamp(25rem, 40.9090909091vw, 45rem);
}








/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
  position: fixed;
  top: 45%;
  right: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  width: 5em;
  list-style: none;
  z-index: 999;
}

.fixed-btn li:nth-child(1) {
  margin-bottom: 2rem;
}

.fixed-btn img {
  width: 100%;
  height: auto;
}

.fixed-btn li::marker {
  content: none;
}

@media (min-aspect-ratio: 1440/720) {

  /* 横長 */
  .fixed-btn {
    width: 6rem;
  }

  .fixed-btn .reserve {
    margin-bottom: 1rem;
  }
}

@media (min-aspect-ratio: 1440/560) {

  /* さらに横長 */
  .fixed-btn {
    width: 4rem;
  }

  .fixed-btn .reserve {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    -webkit-transform: none;
    width: 100%;
    display: flex;
  }

  .fixed-btn li {
    /* width: 50%; */
    flex: 1;
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  .fixed-btn a.sp {
    width: 100%;
    padding: 0;
    height: 5.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    line-height: 1;
  }

  .fixed-btn a.pc {
    display: none;
  }

  /* icon */
  .fixed-btn li img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.8rem;
  }

  /* txt */
  .fixed-btn a>span {
    display: flex;
    flex-direction: column;
  }

  .fixed-btn a>span>span:nth-child(1) {
    margin-left: 0;
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
  }

  .fixed-btn a>span>span:nth-child(2) {
    /* font-weight: bold; */
    font-size: 1.25rem;
    text-decoration: underline;
  }

  .fixed-btn li.tel {
    margin-bottom: 0;
  }

  .fixed-btn .tel a>span>span:nth-child(2) {
    font-size: 1.8rem;
  }

  .fixed-btn .tel a {
    background: #8c0032;
    color: #fff;
  }

  .fixed-btn .reserve a {
    background: #000;
    color: #fff;
  }
}

/*  ----------------------------------------------------------

sns

----------------------------------------------------------  */
.topInsta {
  background: url(../img/back-insta.jpg) no-repeat center bottom/cover;
  padding: 10em 0 9em;
}

.top-sns {
  padding: 12rem 0 11.5rem;
  background: url(../img/top_red_bk_sp.jpg) no-repeat center top/cover;
}

.top_sns_share {
  text-align: center;
  display: block;
  width: 80%;
  max-width: 900px;
  margin: 0px auto;
  padding: 4.5em 0 0;
  margin-bottom: 0 !important;
}

/* .top_sns_share h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
} */
.sns_wrap {
  padding: 0px 0;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  /* -webkit-box-pack: center;
  -ms-flex-pack: center; */
  /* justify-content: center; */
  justify-content: flex-start;
}

.CMS-INSTAGRAM-LIST {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.CMS-INSTAGRAM-LIST a:nth-of-type(7),
.CMS-INSTAGRAM-LIST a:nth-of-type(8),
.CMS-INSTAGRAM-LIST a:last-of-type {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .CMS-INSTAGRAM-LIST::before {
    content: "";
    flex-basis: 31%;
    padding-bottom: 1.2%;
    order: 1;
  }

  .CMS-INSTAGRAM-LIST::after {
    content: "";
    flex-basis: 31%;
    padding-bottom: 1.2%;
  }

  .CMS-INSTAGRAM-LIST a {
    flex-basis: 31%;
    padding-bottom: 1.2%;
  }

  .top_sns_share img {
    /* width: auto !important; */
    width: 100% !important;
    height: auto;
    padding-bottom: 0.8%;
    padding: 1% 0.8%;
  }
}

@media screen and (max-width: 767px) {
  .topInsta {
    padding: 7rem 0 5rem;
  }

  .top-sns {
    padding: 10rem 0 5rem;
  }

  .top_sns_share {
    display: block;
    margin: 0rem auto 0px;
    padding-top: 3rem;
    width: 100%;
  }

  .sns_wrap {
    padding: 1rem 0;
  }

  .CMS-INSTAGRAM-LIST::before {
    content: "";
    flex-basis: 30%;
    padding-bottom: 4.2%;
    order: 1;
  }

  .CMS-INSTAGRAM-LIST::after {
    content: "";
    flex-basis: 30%;
    padding-bottom: 4.2%;
  }

  .CMS-INSTAGRAM-LIST a {
    flex-basis: 30%;
    padding-bottom: 4.2%;
  }

  .top_sns_share img {
    /* width: auto !important; */
    width: 100% !important;
    height: auto;
    padding-bottom: 0.8%;
    padding: 1% 0.8%;
  }

  img.instagram-post-image {
    width: 30%;
    padding-bottom: 1%;
  }
}

/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  padding-left: 0.1rem;
  border-radius: 50%;
  background: #8c0032;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  /* border: #fff solid 1px; */
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 6rem;
  }

  #page-top a {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/*  ----------------------------------------------------------

Retty

----------------------------------------------------------  */
.CMS-FORM-GROUP {
  margin-bottom: 2rem;
}

.CMS-FORM-INPUT-LABEL,
.CMS-FORM-EMAIL-LABEL,
.CMS-FORM-TEXTAREA-LABEL {
  display: block;
  font-weight: 600;
}

.CMS-FORM-INPUT,
.CMS-FORM-TEXTAREA,
.CMS-FORM-EMAIL {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: solid 1px #d4d4d4;
}

.CMS-FORM-RADIO-LABEL {
  font-weight: 600;
}

.content__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0 1rem;
  border-bottom: 2px solid #666;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
  position: relative;
  gap: inherit;
  height: inherit;
}

.restaurant-detail__menu:nth-child(n+2) {
  margin-top: 1.5rem;
}

.menu-price-list:last-of-type {
  border-bottom: 1px solid #666;
}

.menu-price-list__row {
  display: flex;
  border-top: 1px solid #666;
  font-size: 1.6rem;
  line-height: 2.2rem;
}

.menu-price-list__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 16px 24px;
  font-size: 1.2em;
  font-weight: 700;
}

.menu-price-list__name span {
  font-size: 0.8em;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.menu-price-list__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: flex-end;
  padding: 16px 0 16px 24px;
}

@media screen and (max-width: 767px) {
  .content__title {
    font-size: 1.45rem;
    letter-spacing: 0;
  }

  .content__title p {
    font-size: 1.4rem;
  }

  .menu-price-list__row {
    font-size: 1.5rem;
    display: block;
  }

  .menu-price-list__name {
    padding: 16px 24px 0;
  }

  .menu-price-list__name span {
    margin-top: 3rem;
  }

  .menu-price-list__price {
    padding: 0px 0 16px 24px;
  }
}

.course-list-heading {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
}

.course-list-heading__title {
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.course-list-heading__supplement {
  align-self: flex-end;
  margin-left: auto;
  padding-left: 10px;
  color: #6c6c75;
  font-size: 14px;
  font-weight: 400;
}

.course-list {
  margin-bottom: 3em;
}

.course-list__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #666;
}

.course-list__item:first-child {
  border-top: 1px solid #666;
}

.course-list-item {
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  padding: 16px 0;
}

.course-list-item__thumbnail {
  flex-shrink: 0;
}

.course-list-item__thumbnail img {
  font-family: "object-fit: cover;";
  object-fit: cover;
  width: 80px;
  height: 80px;
  background-color: #f4f4f5;
}

.course-list-item__detail {
  flex: 1 1 auto;
}

.course-list-item__detail:nth-child(n+2) {
  margin-left: 12px;
}

.course-list-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-list-item__title:nth-child(n+2) {
  margin-top: 6px;
}

.course-list-item__description {
  font-size: 13px;
  margin-bottom: 10px;
}

.course-list-item__footer {
  display: flex;
}

.course-list-item__price {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d70025;
  font-size: 20px;
  font-weight: 700;
}

.course-list-item__label {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid #ffa014;
  background-color: #fff;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  color: #ffa014;
  vertical-align: top;
  margin-right: 5px;
}

.course-list-item__label--discount {
  background: #d70025;
  border-color: #d70025;
  color: #fff;
}

.course-list-item__before-discount {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.course-list-item__discount-arrow {
  margin: 0 4px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.course-list-item__tax {
  display: inline;
  align-self: auto;
  color: #d70025;
  font-size: 20px;
}

.course-list-item__term {
  margin-left: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.course-list-item__actions-list {
  display: flex;
  flex: 0 0 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course-list-item__action {
  width: 9rem;
  display: flex;
  justify-content: center;
  /* display: none; */
  margin-top: -0.3rem;
}

.course-list-item__action a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.5rem;
  background: var(--blue);
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

.course-list-item__action:nth-child(n+2) {
  /* margin-top:12px */
}

.course-list-item__button {
  width: 96px;
  padding: 6px 0;
}

.course-summary {
  display: flex;
}

.course-summary:nth-child(n+2) {
  margin-top: 10px;
}

.course-summary__label {
  width: 100%;
  flex: 0 0 100%;
}

.course-summary__photo {
  font-family: "object-fit: cover;";
  object-fit: cover;
  width: 184px;
  height: 184px;
  flex: 0 0 184px;
  align-self: flex-start;
}

.course-summary__body:nth-child(n+2) {
  margin-left: 16px;
  font-size: 1.07692rem;
}

.course-summary-label {
  display: block;
}

.course-info-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eaeaeb;
  font-size: 1.07692rem;
}

.course-info-list__description,
.course-info-list__title {
  border-top: 1px solid #eaeaeb;
}

.course-info-list__title {
  box-sizing: border-box;
  padding: 16px 24px;
  max-width: 216px;
  flex: 0 0 216px;
  background-color: #fafbfc;
}

.course-info-list__description {
  box-sizing: border-box;
  padding: 16px 24px;
  max-width: calc(100% - 216px);
  flex-basis: calc(100% - 216px);
  flex-grow: 1;
  flex-shrink: 0;
}

.course-info-list__description--pre {
  white-space: pre-line;
  word-break: break-all;
}

.course-info-list__description--strong {
  font-weight: 700;
  color: #d70025;
  font-size: 1.23077rem;
}

.course-info-list__before-discount {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.07692rem;
  font-weight: 400;
  text-decoration: line-through;
}

.course-info-list__discount-arrow {
  margin: 0 4px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}

.course-info-list__tax {
  display: inline;
  align-self: auto;
  color: #d70025;
  font-size: 0.92308rem;
}

.restaurant-coupon-heading {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
  border-bottom: 1px solid #666;
}

.restaurant-coupon-heading__title {
  flex-shrink: 0;
  max-width: calc(100% - 300px);
  color: #fff;
  font-size: 1.38462rem;
  font-weight: 700;
}

.restaurant-coupon-heading__supplement {
  align-self: flex-end;
  margin-left: auto;
  padding-left: 10px;
  color: #6c6c75;
  font-size: 0.92308rem;
  font-weight: 400;
}

.restaurant-coupon-list {
  border: 1px solid #666;
}

.restaurant-coupon-list:nth-child(n+2) {
  margin-top: 20px;
}

.restaurant-coupon-list__item:nth-child(n+2) {
  border-top: 1px dashed #666;
}

.restaurant-coupon {
  display: flex;
}

.restaurant-coupon:before {
  display: block;
  min-height: 80px;
  flex: 0 0 48px;
  background: url("https://assets.retty.me/v-202103090658-master-5faacc28934ec9ceed6332f40621248775413203/images/pancake/ic_coupon.svg") #ffa014;
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
}

.restaurant-coupon--marked {
  position: relative;
}

.restaurant-coupon--marked:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-color: #ffc814 transparent transparent #ffc814;
  border-style: solid;
  border-width: 8px;
  content: "";
}

.restaurant-coupon__body {
  flex: 1 1 auto;
  padding: 18px 20px;
}

.restaurant-coupon__title {
  color: #fff;
  font-size: 1.23077rem;
  font-weight: 700;
}

.restaurant-coupon__description {
  color: #6c6c75;
  font-size: 0.84615rem;
}

.restaurant-coupon__description:nth-child(n+2) {
  margin-top: 4px;
}

.restaurant-coupon__supplement {
  display: flex;
  box-sizing: border-box;
  flex: 0 0 200px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.restaurant-coupon__supplement:nth-child(n+2) {
  border-left: 1px dashed #666;
}

.restaurant-coupon__expiration {
  color: #6c6c75;
  font-size: 0.92308rem;
}

.restaurant-coupon__link {
  cursor: pointer;
  color: #2d88d9;
  font-size: 0.92308rem;
}

.restaurant-coupon__link:hover {
  opacity: 0.8;
}

.restaurant-coupon__link--external {
  display: flex;
  align-items: center;
}

.restaurant-coupon__link--external:after {
  content: "\ea0c";
  font-size: 1.23077rem;
}

@keyframes show-sticky-actions {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.restaurant-sidebar {
  width: 300px;
  flex-direction: column;
}

.restaurant-sidebar__prepare-stuck {
  z-index: 90;
  display: none;
}

.restaurant-sidebar__prepare-stuck[data-stuck=true] {
  display: flex;
  animation: show-sticky-actions 0.1s ease-out;
}

.restaurant-sidebar__campaign-banner {
  z-index: 90;
  padding-top: 12px;
}

.menu-description__text {
  margin-bottom: 4rem;
}

.menu-price-list {
  font-size: 1.07692rem;
}

.menu-price-list:last-of-type {
  border-bottom: 1px solid #666;
}

.menu-price-list__row {
  display: flex;
  border-top: 1px solid #666;
}

.menu-price-list__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 16px 24px;
  font-weight: 700;
}

.menu-price-list__supplement {
  font-weight: 400;
}

.menu-price-list__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: flex-end;
  padding: 16px 0 16px 24px;
  font-weight: bold;
  font-size: 1.1em;
}

.photo-menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -36px;
  margin-bottom: 4rem;
}

.photo-menu__item {
  width: calc((100% - 108px) / 3);
  margin-left: 35px;
}

.photo-menu__item:nth-child(n+4) {
  margin-top: 36px;
}

.photo-menu__figure {
  width: 100%;
  height: auto;
}

.photo-menu__image {
  position: relative;
  height: auto;
}

.photo-menu__image:before {
  display: block;
  padding-top: 100%;
  content: "";
}

.photo-menu__image img {
  font-family: "object-fit: cover;";
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f5;
}

.photo-menu__caption {
  display: flex;
  flex-direction: column;
}

.photo-menu__caption:nth-child(n+2) {
  margin-top: 16px;
}

.photo-menu__reporter:nth-child(n+2) {
  margin-top: 8px;
}

.photo-menu__title {
  font-size: 1.6rem;
  font-weight: 700;
}

.photo-menu__price {
  align-self: flex-end;
  font-size: 1.2rem;
}

.photo-menu__price:nth-child(n+2) {
  margin-top: 8px;
}

.menu-price-list__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.menu-price-list__wrapper-in-wrapper {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .photo-menu {
    display: block;
    margin-left: 0;
  }

  .photo-menu__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .photo-menu__figure {
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .course-list-heading {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
  }

  .course-list-heading__title {
    flex-shrink: 0;
    max-width: 100%;
    font-size: 2.2rem;
    font-weight: 700;
  }

  .course-list-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: 14px;
    font-weight: 400;
  }

  .course-list__item {
    display: block;
    flex-direction: column;
    border-bottom: 1px solid #666;
  }

  .course-list__item:first-child {
    border-top: 1px solid #666;
  }

  .course-list-item {
    display: block;
    width: 100%;
    min-height: 80px;
    align-items: center;
    padding: 16px 0;
  }

  .course-list-item__thumbnail {
    flex-shrink: 0;
  }

  .course-list-item__thumbnail img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 60%;
    height: 60%;
    background-color: #f4f4f5;
    display: block;
    margin: 0 auto 20px auto;
  }

  .course-list-item__detail {
    flex: 1 1 auto;
  }

  .course-list-item__detail:nth-child(n+2) {
    margin-left: 12px;
  }

  .course-list-item__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .course-list-item__title:nth-child(n+2) {
    margin-top: 6px;
  }

  .course-list-item__description {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .course-list-item__footer {
    display: flex;
  }

  .course-list-item__price {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d70025;
    font-size: 20px;
    font-weight: 700;
  }

  .course-list-item__label {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid #ffa014;
    background-color: #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: #ffa014;
    vertical-align: top;
    margin-right: 5px;
  }

  .course-list-item__label--discount {
    background: #d70025;
    border-color: #d70025;
    color: #fff;
  }

  .course-list-item__before-discount {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
  }

  .course-list-item__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
  }

  .course-list-item__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size: 20px;
  }

  .course-list-item__term {
    margin-left: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .course-list-item__actions-list {
    display: flex;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .course-list-item__action {
    width: 96px;
    width: 12rem;
    display: flex;
    justify-content: center;
    /* display: none; */
  }

  .course-list-item__action a {
    height: 4.5rem;
    font-size: 1.6rem;
  }

  .course-list-item__action:nth-child(n+2) {
    margin-top: 12px;
  }

  .course-list-item__button {
    width: 96px;
    padding: 6px 0;
  }

  .course-summary {
    display: flex;
  }

  .course-summary:nth-child(n+2) {
    margin-top: 10px;
  }

  .course-summary__label {
    width: 100%;
    flex: 0 0 100%;
  }

  .course-summary__photo {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 184px;
    height: 184px;
    flex: 0 0 184px;
    align-self: flex-start;
  }

  .course-summary__body:nth-child(n+2) {
    margin-left: 16px;
    font-size: 1.07692rem;
  }

  .course-summary-label {
    display: block;
  }

  .course-info-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaeb;
    font-size: 1.07692rem;
  }

  .course-info-list__description,
  .course-info-list__title {
    border-top: 1px solid #eaeaeb;
  }

  .course-info-list__title {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: 216px;
    flex: 0 0 216px;
    background-color: #fafbfc;
  }

  .course-info-list__description {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: calc(100% - 216px);
    flex-basis: calc(100% - 216px);
    flex-grow: 1;
    flex-shrink: 0;
  }

  .course-info-list__description--pre {
    white-space: pre-line;
    word-break: break-all;
  }

  .course-info-list__description--strong {
    font-weight: 700;
    color: #d70025;
    font-size: 1.23077rem;
  }

  .course-info-list__before-discount {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.07692rem;
    font-weight: 400;
    text-decoration: line-through;
  }

  .course-info-list__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
  }

  .course-info-list__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size: 0.92308rem;
  }
}

.table_link {
  text-decoration: underline;
}

.menu__pasteimg {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

._reserve {
  font-size: clamp(1.8rem, calc(1.8rem + (2.5rem - 1.8rem) * ((100vw - 767px) / 363px)), 2.5rem);
  text-align: center;
  font-weight: bold;
}







/*  ----------------------------------------------------------

Google翻訳

----------------------------------------------------------  */
#google_translate {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
}

#google_translate img {
  height: auto;
  width: auto;
}

@media only screen and (max-width: 767px) {
  #google_translate {
    position: fixed;
    right: 6rem;
    /* ハンバーガーボタン分左へずらす */
  }
}








/*  ----------------------------------------------------------

reserve

----------------------------------------------------------  */
.top-reservation {
  padding: 6.1em 0 7.5em;
}


.top-reservation>p {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.9;
  font-weight: 500;
  margin: 2em auto 3.5em;
  width: 90%;
  letter-spacing: 0.1em;
  color: #000;
}

.top-reservation>p span {
  font-size: 0.88em;
  font-weight: 500;
  display: block;
  margin-top: 0.8rem;
}

.top-reserve a {
  display: inline-block;
  margin: 0.5rem 0 0;
  font-size: 1rem;
  /* border-bottom: 2px solid #9c8e79; */
  padding-bottom: 0.5rem;
}

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

/* ------------------------------
　calendar
------------------------------ */
.calendar-wrapper {
  position: relative;
  outline: 16px solid #ccc;
  /* max-width: 1000px; */
  width: 65%;
  margin: 50px auto 0 auto;
  display: flex;
  background-color: rgb(255, 255, 255);
}

@media screen and (max-width: 1000px) {
  .calendar-wrapper {
    width: 90%;
  }
}

#calendar {
  text-align: center;
  width: 100%;
}

table {
  /* outline: 16px solid #ccc; */
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}

.calendar-wrapper th {
  color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
  line-height: 1.5;
}

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

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

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

.reservation-date {
  text-decoration: underline;
}

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

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

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

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  /* margin-top: 10px;
  margin-left: 1rem; */
  padding: 20px;
  line-height: 1.8;
  border-left: 1.3rem solid #ccc;
}

.calendar-reservation form {
  padding-top: 0;
}

.calendar_title {
  color: #000;
  font-size: 1em;
}

.calendar_date {
  font-size: 1em;
  line-height: 2;
}

.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 1.2em;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 0.1rem solid #aaaaaa;
}

.calendar_person,
.calendar_time {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  padding-right: 30px;
}

.calendar_button {
  width: 100%;
  font-size: 1.1em;
  padding: 12px;
  border-radius: 6px;
  background-color: #000;
  color: #ffffff;
  border: 1px solid #aaaaaa;
}

.calendar_button:not([disabled]) {
  cursor: pointer;
}

.calendar_info {
  font-size: 0.8em;
  margin-top: 20px;
  line-height: 1.5;
}

.calendar_ok {
  color: #dd8866;
}

.reservation-message {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  text-align: center;
  color: #c00000;
}

@media screen and (max-width: 767px) {
  .calendar-wrapper {
    width: 80%;
    margin: 40px auto 60px auto;
    flex-direction: column;
  }

  .calendar-wrapper {
    font-size: 12px;
  }

  .calendar-reservation {
    padding: 0;
    margin-top: 20px;
    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_info {
    padding: 0 20px 20px 20px;
    font-size: 0.95em;
  }

  .calendar_date {
    font-size: 16px;
  }

  .calendar_button {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  .reservation-date {
    font-size: 2.8vw;
  }
}

/* ------------------------------
　reservation
------------------------------ */
.regform {
  /* max-width: 840px; */
  margin: auto;
}

.form-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.form-container input,
.form-container select {
  height: 2rem;
  font-size: 1.2rem;
}

.form-container textarea {
  width: 100%;
  height: 8rem;
}

.form-container .tel-form input,
.form-container .mail-form input {
  width: 100%;
  font-size: 1.2rem;
}

.form-container .pay-form select {
  width: 33%;
  font-size: 1.2rem;
}

.form-container dl {
  display: flex;
}

.form-container dt {
  display: flex;
  align-items: center;
  width: 300px;
  width: 30%;
  background-color: #eeebe4;
  font-weight: bold;
  padding: 5px 15px;
  border: 1px solid #cccccc;
}

.form-container dd {
  padding: 5px 15px;
  flex: 1;
  border: 1px solid #cccccc;
}

.form-container .text_field {
  width: 47.6%;
}

.form-container .text_field:first-child {
  margin-right: 3%;
}

.form-container .date-form,
.form-container .course-form,
.form-container .seat-form,
.form-container .cost-form {
  /* height: 36px; */
}

/* .form-container .date-form dd,
.form-container .course-form dd,
.form-container .seat-form dd,
.form-container .cost-form dd{
  padding: 12px 5px; 
} */
.form-container .blank-area {
  margin-right: 10px;
}

.hissu {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #c00;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #c00;
}

.nini {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #999;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
}

.btn-container {
  display: flex;
  justify-content: space-evenly;
  justify-content: center;
  margin-top: 2rem;
  gap: 4rem;
}

.btn-container .submit-btn input {
  font-weight: bold;
  background: #f95a6b;
  background: linear-gradient(to bottom, #ff9ba2 0%, #f95a6b 75%, #f85164 100%);
  border: 1px solid #da949b;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px #f9d8db, inset -1px -1px 3px #ffa6ae;
  color: #ffffff !important;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn-container .pre-btn input {
  background-color: #ffffff;
  border: solid #cccccc;
  border-radius: 4px;
  border-width: 1px 1px 3px;
  color: #666666 !important;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
}

.submit-message {
  margin-top: 4rem;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  animation: blink 6s ease-in-out infinite;
}

@keyframes blink {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

@media screen and (max-width: 767px) {
  .form-container dl {
    flex-direction: column;
  }

  .form-container dt {
    width: 100%;
  }

  .form-container .date-form,
  .form-container .course-form,
  .form-container .seat-form,
  .form-container .cost-form {
    height: auto;
  }

  .form-container .text_field {
    width: 47.6%;
  }

  .form-container .blank-area {
    margin-right: 8px;
  }
}

/* ローディング */
.loader_container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: var(--brown) var(--brown) var(--brown) transparent;
  border-radius: 50%;
  animation: spin-animation 1.2s linear infinite;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader_container.isLoad {
  animation: fade-out 0.5s;
  animation-fill-mode: both;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.reserve-txt {
  text-align: center;
  font-size: 2rem;
}

/* index.html reserve-txt編集 */
.reserve-txt span {
  font-size: 1.5rem;
}

/*# sourceMappingURL=style.css.map */










/*  ----------------------------------------------------------

ベタ打ち

----------------------------------------------------------  */

.ttl3 {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  font-size: 1.4em;
  line-height: 1.4;
  margin-bottom: 3rem;
  padding: 1rem 0 1.4rem 0;
  position: relative;
}

.ttl3:after {
  border-bottom: solid 5px #8c0032;
  bottom: -5px;
  content: " ";
  display: block;
  position: absolute;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .ttl3:after {
    width: 40%;
  }
}


.menu_betauchi:not(:last-of-type) {
  margin-bottom: 5rem;
}

.content__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0 1rem;
  border-bottom: 2px solid #d5d5d8;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.5rem;
}

.restaurant-detail__menu:nth-child(n+2) {
  margin-top: 1.5rem;
}

.menu-price-list:last-of-type {
  border-bottom: 1px solid #d5d5d8;
}

.menu-price-list__row {
  display: flex;
  border-top: 1px solid #d5d5d8;
  font-size: 1.4rem;
  line-height: 2.2rem;
}

.menu-price-list__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 16px 24px 16px 0;
  font-weight: 700;
}

.menu-price-list__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: flex-end;
  padding: 16px 0 16px 24px;
  text-align: right;
}

.menu-price-list__text {
  display: block;
  font-size: 0.9em;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
}

@media screen and (max-width: 767px) {
  .menu-price-list__row {
    display: block;
  }

  .menu-price-list__name {
    padding: 16px 24px 0;
  }

  .menu-price-list__price {
    padding: 0px 0 16px 24px;
  }
}


.course-list-heading {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
}

.course-list-heading__title {
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 700
}

.course-list-heading__supplement {
  align-self: flex-end;
  margin-left: auto;
  padding-left: 10px;
  color: #6c6c75;
  font-size: 14px;
  font-weight: 400
}

.course-list__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d5d5d8
}

.course-list__item:first-child {
  border-top: 1px solid #d5d5d8
}

.course-list-item {
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  padding: 16px 0
}

.course-list-item__thumbnail {
  flex-shrink: 0
}

.course-list-item__thumbnail img {
  font-family: "object-fit: cover;";
  object-fit: cover;
  width: 80px;
  height: 80px;
  background-color: #f4f4f5
}

.course-list-item__detail {
  flex: 1 1 auto;
  line-height: 1.9;
}

.course-list-item__detail:nth-child(n + 2) {
  margin-left: 12px
}

.course-list-item__title {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-list-item__title:nth-child(n + 2) {
  margin-top: 6px
}

.course-list-item__description {
  font-size: 12px;
  margin-bottom: 10px;
}

.course-list-item__footer {
  /* display:flex */
}

.course-list-item__price {
  display: flex;
  align-items: flex-start;
  /* justify-content: center; */
  color: #d70025;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.course-list-item__label {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid #ffa014;
  background-color: #fff;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  color: #ffa014;
  vertical-align: top;
  margin-right: 5px;
}

.course-list-item__label--discount {
  background: #d70025;
  border-color: #d70025;
  color: #fff
}

.course-list-item__before-discount {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through
}

.course-list-item__discount-arrow {
  margin: 0 4px;
  color: #fff;
  font-weight: 400;
  text-decoration: none
}

.course-list-item__tax {
  display: inline;
  align-self: auto;
  color: #d70025;
  font-size: 20px;
}

.course-list-item__term {
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.course-list-item__actions-list {
  display: flex;
  flex: 0 0 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.course-list-item__action {
  width: 9rem;
  display: flex;
  justify-content: center;
  /* display: none; */
  margin-top: -0.3rem;
}

.course-list-item__action button {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.5em;
  background: #8c0032;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  border: none;
}

.course-list-item__action:nth-child(n + 2) {
  /* margin-top:12px */
}

.course-list-item__button {
  width: 96px;
  padding: 6px 0
}

.course-summary {
  display: flex
}

.course-summary:nth-child(n + 2) {
  margin-top: 10px
}

.course-summary__label {
  width: 100%;
  flex: 0 0 100%
}

.course-summary__photo {
  font-family: "object-fit: cover;";
  object-fit: cover;
  width: 184px;
  height: 184px;
  flex: 0 0 184px;
  align-self: flex-start
}

.course-summary__body:nth-child(n + 2) {
  margin-left: 16px;
  font-size: 1.07692rem
}

.course-summary-label {
  display: block
}

.course-info-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eaeaeb;
  font-size: 1.07692rem
}

.course-info-list__description,
.course-info-list__title {
  border-top: 1px solid #eaeaeb
}

.course-info-list__title {
  box-sizing: border-box;
  padding: 16px 24px;
  max-width: 216px;
  flex: 0 0 216px;
  background-color: #fafbfc
}

.course-info-list__description {
  box-sizing: border-box;
  padding: 16px 24px;
  max-width: calc(100% - 216px);
  flex-basis: calc(100% - 216px);
  flex-grow: 1;
  flex-shrink: 0
}

.course-info-list__description--pre {
  white-space: pre-line;
  word-break: break-all
}

.course-info-list__description--strong {
  font-weight: 700;
  color: #d70025;
  font-size: 1.23077rem
}

.course-info-list__before-discount {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.07692rem;
  font-weight: 400;
  text-decoration: line-through
}

.course-info-list__discount-arrow {
  margin: 0 4px;
  color: #fff;
  font-weight: 400;
  text-decoration: none
}

.course-info-list__tax {
  display: inline;
  align-self: auto;
  color: #d70025;
  font-size: .92308rem
}

.restaurant-coupon-heading {
  display: flex;
  align-items: center;
  padding: 0 0 12px;
  border-bottom: 1px solid #d5d5d8
}

.restaurant-coupon-heading__title {
  flex-shrink: 0;
  max-width: calc(100% - 300px);
  color: #fff;
  font-size: 1.38462rem;
  font-weight: 700
}

.restaurant-coupon-heading__supplement {
  align-self: flex-end;
  margin-left: auto;
  padding-left: 10px;
  color: #6c6c75;
  font-size: .92308rem;
  font-weight: 400
}

.restaurant-coupon-list {
  border: 1px solid #d5d5d8
}

.restaurant-coupon-list:nth-child(n + 2) {
  margin-top: 20px
}

.restaurant-coupon-list__item:nth-child(n + 2) {
  border-top: 1px dashed #d5d5d8
}

.restaurant-coupon {
  display: flex
}

.restaurant-coupon:before {
  display: block;
  min-height: 80px;
  flex: 0 0 48px;
  background: url("https://assets.retty.me/v-202103090658-master-5faacc28934ec9ceed6332f40621248775413203/images/pancake/ic_coupon.svg") #ffa014;
  background-position: 50%;
  background-repeat: no-repeat;
  content: ""
}

.restaurant-coupon--marked {
  position: relative
}

.restaurant-coupon--marked:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-color: #ffc814 transparent transparent #ffc814;
  border-style: solid;
  border-width: 8px;
  content: ""
}

.restaurant-coupon__body {
  flex: 1 1 auto;
  padding: 18px 20px
}

.restaurant-coupon__title {
  color: #fff;
  font-size: 1.23077rem;
  font-weight: 700
}

.restaurant-coupon__description {
  color: #6c6c75;
  font-size: .84615rem
}

.restaurant-coupon__description:nth-child(n + 2) {
  margin-top: 4px
}

.restaurant-coupon__supplement {
  display: flex;
  box-sizing: border-box;
  flex: 0 0 200px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px
}

.restaurant-coupon__supplement:nth-child(n + 2) {
  border-left: 1px dashed #d5d5d8
}

.restaurant-coupon__expiration {
  color: #6c6c75;
  font-size: .92308rem
}

.restaurant-coupon__link {
  cursor: pointer;
  color: #2d88d9;
  font-size: .92308rem
}

.restaurant-coupon__link:hover {
  opacity: .8
}

.restaurant-coupon__link--external {
  display: flex;
  align-items: center
}

.restaurant-coupon__link--external:after {
  content: "\EA0C";
  font-size: 1.23077rem
}

@keyframes show-sticky-actions {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.restaurant-sidebar {
  width: 300px;
  flex-direction: column
}

.restaurant-sidebar__prepare-stuck {
  z-index: 90;
  display: none
}

.restaurant-sidebar__prepare-stuck[data-stuck=true] {
  display: flex;
  animation: show-sticky-actions .1s ease-out
}

.restaurant-sidebar__campaign-banner {
  z-index: 90;
  padding-top: 12px
}

.menu-description__text {
  margin-bottom: 4rem;
}

.menu-price-list {
  font-size: 1.07692rem
}

.menu-price-list:last-of-type {
  border-bottom: 1px solid #d5d5d8
}

.menu-price-list__row {
  display: flex;
  border-top: 1px solid #d5d5d8
}

.menu-price-list__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 16px 24px 16px 0;
  font-weight: 700
}

.menu-price-list__supplement {
  font-weight: 400
}

.menu-price-list__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: flex-end;
  padding: 16px 0 16px 24px
}

.photo-menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -36px;
  margin-bottom: 4rem;
}

.photo-menu__item {
  width: calc((100% - 108px) / 3);
  margin-left: 35px
}

.photo-menu__item:nth-child(n + 4) {
  margin-top: 36px
}

.photo-menu__figure {
  width: 100%;
  height: auto
}

.photo-menu__image {
  position: relative;
  height: auto
}

.photo-menu__image:before {
  display: block;
  padding-top: 100%;
  content: ""
}

.photo-menu__image img {
  font-family: "object-fit: cover;";
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f4f5
}

.photo-menu__caption {
  display: flex;
  flex-direction: column
}

.photo-menu__caption:nth-child(n + 2) {
  margin-top: 16px
}

.photo-menu__reporter:nth-child(n + 2) {
  margin-top: 8px
}

.photo-menu__title {
  font-size: 1.6rem;
  font-weight: 700
}

.photo-menu__price {
  align-self: flex-end;
  font-size: 1.2rem
}

.photo-menu__price:nth-child(n + 2) {
  margin-top: 8px
}

.menu-price-list__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.menu-price-list__wrapper-in-wrapper {
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 767px) {
  .photo-menu {
    display: block;
    margin-left: 0;
  }

  .photo-menu__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .photo-menu__figure {
    width: auto;
    height: auto
  }

}


@media screen and (max-width: 767px) {
  .course-list-heading {
    display: flex;
    align-items: center;
    padding: 0 0 12px;
  }

  .course-list-heading__title {
    flex-shrink: 0;
    max-width: 100%;
    font-size: 2.2rem;
    font-weight: 700
  }

  .course-list-heading__supplement {
    align-self: flex-end;
    margin-left: auto;
    padding-left: 10px;
    color: #6c6c75;
    font-size: 14px;
    font-weight: 400
  }

  .course-list__item {
    display: block;
    flex-direction: column;
    border-bottom: 1px solid #d5d5d8
  }

  .course-list__item:first-child {
    border-top: 1px solid #d5d5d8
  }

  .course-list-item {
    display: block;
    width: 100%;
    min-height: 80px;
    align-items: center;
    padding: 16px 0
  }

  .course-list-item__thumbnail {
    flex-shrink: 0
  }

  .course-list-item__thumbnail img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 60%;
    height: 60%;
    background-color: #f4f4f5;
    display: block;
    margin: 0 auto 20px auto;
  }

  .course-list-item__detail {
    flex: 1 1 auto
  }

  .course-list-item__detail:nth-child(n + 2) {
    margin-left: 12px
  }

  .course-list-item__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .course-list-item__title:nth-child(n + 2) {
    margin-top: 6px
  }

  .course-list-item__description {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .course-list-item__footer {
    margin-bottom: 3rem;
  }

  .course-list-item__price {
    display: flex;
    color: #d70025;
    font-size: 16px;
    font-weight: 700;
    min-width: 90px;
  }

  .course-list-item__label {
    display: inline-block;
    padding: 5px 11px;
    border: 1px solid #ffa014;
    background-color: #fff;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: #ffa014;
    vertical-align: top;
    margin-right: 5px;
  }

  .course-list-item__label--discount {
    background: #d70025;
    border-color: #d70025;
    color: #fff
  }

  .course-list-item__before-discount {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through
  }

  .course-list-item__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none
  }

  .course-list-item__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size: 20px;
  }

  .course-list-item__term {
    display: flex;
    align-items: center;
  }

  .course-list-item__actions-list {
    display: flex;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center
  }

  .course-list-item__action {
    width: 96px;
    width: 12rem;
    display: flex;
    justify-content: center;
    /* display: none; */
  }

  .course-list-item__action button {
    height: 4.5rem;
    font-size: 1.6rem;
  }

  .course-list-item__action:nth-child(n + 2) {
    margin-top: 12px
  }

  .course-list-item__button {
    width: 96px;
    padding: 6px 0
  }

  .course-summary {
    display: flex
  }

  .course-summary:nth-child(n + 2) {
    margin-top: 10px
  }

  .course-summary__label {
    width: 100%;
    flex: 0 0 100%
  }

  .course-summary__photo {
    font-family: "object-fit: cover;";
    object-fit: cover;
    width: 184px;
    height: 184px;
    flex: 0 0 184px;
    align-self: flex-start
  }

  .course-summary__body:nth-child(n + 2) {
    margin-left: 16px;
    font-size: 1.07692rem
  }

  .course-summary-label {
    display: block
  }

  .course-info-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaeb;
    font-size: 1.07692rem
  }

  .course-info-list__description,
  .course-info-list__title {
    border-top: 1px solid #eaeaeb
  }

  .course-info-list__title {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: 216px;
    flex: 0 0 216px;
    background-color: #fafbfc
  }

  .course-info-list__description {
    box-sizing: border-box;
    padding: 16px 24px;
    max-width: calc(100% - 216px);
    flex-basis: calc(100% - 216px);
    flex-grow: 1;
    flex-shrink: 0
  }

  .course-info-list__description--pre {
    white-space: pre-line;
    word-break: break-all
  }

  .course-info-list__description--strong {
    font-weight: 700;
    color: #d70025;
    font-size: 1.23077rem
  }

  .course-info-list__before-discount {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.07692rem;
    font-weight: 400;
    text-decoration: line-through
  }

  .course-info-list__discount-arrow {
    margin: 0 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none
  }

  .course-info-list__tax {
    display: inline;
    align-self: auto;
    color: #d70025;
    font-size: .92308rem
  }
}




/* ---- */

.course-dialog {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 1.6rem;
  height: 95vh;
  max-height: 95vh;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.course-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.course-dialog__inner {
  position: relative;
  height: 95vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 1.6rem;
  overscroll-behavior: contain;
  padding: 0 0 7rem;
}

.course-dialog__header {
  padding: 3.2rem 3.2rem 2.4rem;
  border-bottom: 1px solid #ececec;
  background: #fff;
}

.course-dialog__close {
  position: sticky;
  top: 0;
  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 4.2rem;
  height: 4.2rem;

  border: none;
  border-radius: 50%;
  background: #f3f3f3;

  font-size: 2rem;
  line-height: 1;
  cursor: pointer;

  z-index: 10;
}

/* ボタンだけだと左に寄るのでラッパー追加 */
.course-dialog__close-wrap {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 1.2rem 1.2rem 0;
  background: #fff;
  z-index: 10;
}

.course-dialog__title {
  padding-right: 5.2rem;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  color: #222;
}

.course-dialog__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.course-dialog__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #fff3f4;
  border: 1px solid #f4c8cf;
  color: #c84b5d;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.course-dialog__lead {
  font-size: 1em;
  line-height: 2;
  color: #444;
}

.course-dialog__summary {
  padding: 0 3.2rem;
  background: #fff;
}

.course-dialog__info {
  border-top: 1px solid #e7e7e7;
}

.course-dialog__infoRow {
  display: grid;
  grid-template-columns: 16rem 1fr;
  border-bottom: 1px solid #e7e7e7;
}

.course-dialog__infoTitle {
  padding: 1.4rem 1.6rem;
  background: #fafafa;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
}

.course-dialog__infoText {
  padding: 1.4rem 1.6rem;
  font-size: 1em;
  line-height: 1.8;
  color: #333;
}

.course-dialog__section {
  padding: 2.8rem 3.2rem 0;
}

.course-dialog__section+.course-dialog__section {
  padding-top: 3.2rem;
}

.course-dialog__sectionTitle {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #ccc;
  color: #222;
}

.course-dialog__raw {
  white-space: pre-line;
  font-size: 0.95em;
  line-height: 2;
  color: #333;
  word-break: break-word;
}

.course-dialog__foot {
  padding: 3.2rem;
}

html.is-dialog-open,
body.is-dialog-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .course-dialog {
    width: calc(100% - 1.6rem);
    height: 94vh;
    max-height: 94vh;
    border-radius: 1.2rem;
  }

  .course-dialog__inner {
    height: 94vh;
    border-radius: 1.2rem;
  }

  .course-dialog__header {
    padding: 2.2rem 1.6rem 1.8rem;
  }

  .course-dialog__close {
    top: 1rem;
    right: 1rem;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.8rem;
  }

  .course-dialog__title {
    padding-right: 4.4rem;
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .course-dialog__lead,
  .course-dialog__raw,
  .course-dialog__infoText {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .course-dialog__infoRow {
    grid-template-columns: 1fr;
  }

  .course-dialog__infoTitle {
    padding: 1rem 1.2rem 0.6rem;
    background: #fff;
    font-size: 1.2rem;
    color: #777;
  }

  .course-dialog__infoText {
    padding: 0 1.2rem 1rem;
  }

  .course-dialog__summary,
  .course-dialog__section,
  .course-dialog__foot {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .course-dialog__sectionTitle {
    font-size: 1.7rem;
  }
}

.course-dialog span.red {
  color: red;
  font-weight: 700;
}







.topTakeout {
  background: url(../img/back-takeout.jpg) no-repeat center / cover;
  padding: 2em 0;
}

.topTakeout a {
  display: block;
  width: 46.25em;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .topTakeout a {
    width: 100%;
  }
}





/* ------------------------------
pc-menu
------------------------------ */

@media screen and (min-width: 769px) {

  /* ------------------------------
rstdtl-menu-lst
------------------------------ */
  .pttl {
    padding: 60px;
    text-align: center;
  }

  .pttl img {
    height: 36px;
    width: auto;
  }

  .rstdtl-menu-lst {
    max-width: 980px;
    margin: 0 auto 100px auto;
  }

  .rstdtl-menu-lst:last-of-type {
    margin-bottom: 0;
  }


  /* ------------------------------
rstdtl-menu-lst
------------------------------ */
  .pttl {
    padding: 60px;
    text-align: center;
  }

  .pttl img {
    height: 36px;
    width: auto;
  }

  .rstdtl-menu-lst {
    margin: 60px auto 80px auto;
    max-width: 980px;
  }



  /* ------------------------------
menu new
------------------------------ */
  .rstdtl-menu-lst__heading {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .rstdtl-menu-lst__contents {
    display: table;
    padding: 0 10px;
    border-bottom: 1px dotted #d2d2d2;
    width: 100%;
    box-sizing: border-box
  }

  .rstdtl-menu-lst__contents:last-of-type {
    border-bottom: none
  }


  .rstdtl-menu-lst__info {
    display: table-cell;
    padding: 10px 0;
    vertical-align: top
  }

  .rstdtl-menu-lst__info-inner {
    display: table;
    width: 100%
  }

  .rstdtl-menu-lst__menu-title {
    display: table-cell;
    /* color: #111; */
    font-weight: bold;
    font-size: 1.5rem
  }

  .rstdtl-menu-lst__price {
    display: table-cell;
    font-weight: bold;
    text-align: right;
    width: 9rem;
    font-size: 1.8rem
  }


  .rstdtl-menu-lst__desc {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .rstdtl-menu-lst__desc p {
    font-size: 20px;
    padding: 12px 10px;
    line-height: 1.6;
    background: url('https://tblg.k-img.com/images/line/line_dot.gif?1547477344') repeat-x 0 100%
  }

  .rstdtl-menu-lst__img {
    display: table-cell;
    padding: 20px 15px 20px 0;
    width: 120px;
    text-align: center
  }


  /* ------------------------------
course menu pc
------------------------------ */

  .course-list {
    margin: 20px 0 30px
  }

  .course-list__heading {
    display: block;
    position: relative
  }

  .course-list__hotpepper-logo {
    display: block;
    position: absolute;
    top: 3.2rem;
    right: 0.5rem
  }

  .course-list__heading-tax {
    position: absolute;
    right: 0;
    color: #949499;
    top: 2.8rem;
    font-size: 1.1rem;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
  }

  .course-list__items {
    margin: auto;
    width: 95%;
  }

  .course-list__tax-notice {
    margin-top: 5px;
    color: #949499;
    font-size: 1rem
  }

  .course-seatonly {
    padding: 12px 15px;
    background-color: #faf8f5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
  }

  .course-seatonly__title {
    /* color: #13131e; */
    font-weight: bold;
    font-size: 1.4rem
  }

  .course-seatonly__btn {
    width: 10rem
  }



  .rstdtl-course-list {
    display: table;
    position: relative;
    z-index: 1;
    border-top: 1px solid #e0dccc;
    border-bottom: 1px solid #e0dccc;
    width: 100%
  }

  .rstdtl-course-list+.rstdtl-course-list {
    border-top: none
  }

  .rstdtl-course-list__target {
    color: inherit;
    z-index: 1
  }

  .rstdtl-course-list__target:hover {
    color: inherit;
    text-decoration: none
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper:hover {
    cursor: default
  }

  .rstdtl-course-list__data {
    display: table-cell;
    position: relative;
    padding: 20px 0;
    /* width: 100%; */
    word-break: break-all;
    vertical-align: top
  }

  .rstdtl-course-list__tieup-mc~.rstdtl-course-list__img {
    padding-top: 6.5rem
  }

  .rstdtl-course-list__tieup-mc~.rstdtl-course-list__data {
    padding-top: 6.5rem
  }

  .rstdtl-course-list__data-header {
    display: table;
    width: 100%
  }

  .rstdtl-course-list__img+.rstdtl-course-list__data .rstdtl-course-list__data-header {
    min-height: 72px
  }

  .rstdtl-course-list__course-title {
    display: table-cell;
    word-break: break-all
  }

  .rstdtl-course-list__course-title-text {
    margin-bottom: 0.2rem;
    /* color: #111; */
    font-weight: bold;
    line-height: 1.6;
    font-size: 1.5rem
  }

  .rstdtl-course-list__course-title-text .rstdtl-course-list__target:hover {
    color: #ff9600;
    text-decoration: underline
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__course-title-text {
    /* color: #13131e */
  }

  .rstdtl-course-list__dish-count.rstdtl-course-list__dish-count {
    border: 1px solid #e0dccc;
    box-sizing: border-box;
    /* color: #463f2d; */
    background-color: #fff;
    margin-left: 0.5rem;
    padding: 0.1rem 0.3rem;
    font-size: 0.9rem
  }

  .rstdtl-course-list__price-wrap {
    display: table-cell;
    white-space: nowrap;
    vertical-align: top;
    padding-right: 0.8rem;
    width: 100%;
    display: inline-block;
  }

  .rstdtl-course-list__price-discount {
    display: inline-block
  }

  .rstdtl-course-list__price-before {
    /* color: #13131e; */
    text-align: left;
    margin-right: 0.5rem;
    margin-bottom: -0.2rem;
    font-size: 1.1rem
  }

  .rstdtl-course-list__price-hotpepper-discount {
    display: inline-block;
    position: relative;
    margin-bottom: 7px;
    border: solid 1px #d2d2d2;
    border-radius: 2px;
    color: #949499;
    font-weight: bold;
    line-height: 1;
    background-color: #fff;
    padding: 0.4rem 0.5rem 0.3rem;
    font-size: 1rem
  }

  .rstdtl-course-list__price-hotpepper-discount::before,
  .rstdtl-course-list__price-hotpepper-discount::after {
    display: block;
    position: absolute;
    border: solid transparent;
    width: 0;
    height: 0;
    content: ''
  }

  .rstdtl-course-list__price-hotpepper-discount::before {
    bottom: -7px;
    border-width: 6px 6px 0;
    border-top-color: #d2d2d2;
    right: 3rem
  }

  .rstdtl-course-list__price-hotpepper-discount::after {
    bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #fff;
    right: 3.1rem
  }

  .rstdtl-course-list__price-num {
    /* color: #000; */
    font-weight: bold;
    font-size: 1rem
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__price-num {
    display: block
  }

  .rstdtl-course-list__price-num>em {
    margin-right: 2px;
    font-family: Arial, sans-serif;
    font-size: 1.8rem
  }

  .rstdtl-course-list__price-num-tax {
    font-weight: normal;
    font-size: 0.6rem;
  }

  .rstdtl-course-list__data-body {
    display: block;
    width: 100%;
    line-height: 1;
    padding-top: 0.5rem
  }

  .rstdtl-course-list__data-body:before,
  .rstdtl-course-list__data-body:after {
    display: block;
    overflow: hidden;
    content: ""
  }

  .rstdtl-course-list__data-body:after {
    clear: both
  }

  .rstdtl-course-list__inner {
    /* display: table;
      width: 100%; */
    /* justify-content: space-between; */
  }

  .rstdtl-course-list__img {
    display: table-cell;
    padding: 20px 15px 20px 0;
    width: 150px
  }

  .rstdtl-course-list__img .rstdtl-course-list__target:hover {
    opacity: 0.8
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__img:hover {
    opacity: 1
  }

  .rstdtl-course-list__subinfo {
    display: table;
    position: relative;
    float: left;
    padding-top: 0.5rem
  }


  .rstdtl-course-list__desc {
    color: #fff;
    line-height: 1.6;
    font-size: 1.2rem;
  }

  .rstdtl-course-list__data-footer {
    float: right
  }

  .rstdtl-course-list__label {
    margin-left: 5px
  }

  .rstdtl-course-list__label.rstdtl-course-list__label {
    background-color: #a40000;
    padding: 0.2rem 0.4rem;
    line-height: 1.1rem;
    font-size: 1.5rem;
    color: #fff;
  }

  .rstdtl-course-list__hotpepper-target::before {
    color: #999
  }

  .rstdtl-course-list__course-rule {
    display: table-cell;
    white-space: nowrap;
    vertical-align: bottom;
    padding: 0 0 0.3rem 1rem
  }

  .rstdtl-course-list__course-rule>dt,
  .rstdtl-course-list__course-rule>dd {
    display: inline-block
  }

  .rstdtl-course-list__course-rule>dd {
    margin-right: 0.5rem
  }

  .rstdtl-course-list__course-rule-title::before {
    display: inline-block;
    color: #bcb08a;
    vertical-align: -0.1rem
  }

  .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--member::before {
    /* font-family: "Tabelog Glyph"; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    speak: none;
    /* content: "\f663" */
    content: "※"
  }

  .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--time::before {
    /* font-family: "Tabelog Glyph"; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    speak: none;
    /* content: "\f677" */
    content: "※"
  }

  .rstdtl-course-list__course-rule-title>i {
    display: none
  }

  .rstdtl-course-list__action-btn {
    display: table-cell;
    width: 100px;
    text-align: right;

    padding-left: 1.5rem;
    color: #fff;
  }



  .rstdtl-course-list__action-btn-target {
    display: block;
    float: right;
    clear: right;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: middle;
    width: 10rem;
    /* color: #000; */
  }

  .rstdtl-course-list__action-btn-target+.rstdtl-course-list__action-btn-target {
    margin-top: 0.6rem
  }

  .rstdtl-course-list__reserve-notice+.rstdtl-course-list__action-btn-target {
    margin-top: 0.6rem
  }

  .rstdtl-course-list__coupon {
    display: inline-block;
    float: right;
    margin-top: 0.5rem
  }

  .rstdtl-course-list__coupon-btn {
    float: right
  }

  .rstdtl-course-list__coupon-contents {
    width: auto;
    text-align: left;
    padding-top: 0.7rem
  }

  .rstdtl-course-rdimg {
    position: absolute;
    bottom: 0;
    left: 0
  }

  .rstdtl-course-list__tieup-mc {
    display: table-row;
    position: absolute;
    left: 0;
    z-index: 5;
    border-radius: 6px;
    vertical-align: middle;
    /* background-color: #221815; */
    top: 1.5rem
  }

  .rstdtl-course-list__tieup-mc:hover {
    opacity: 0.8
  }

  .rstdtl-course-list__tieup-mc-target {
    display: block;
    box-sizing: border-box;
    padding: 0.6rem 1.2rem 0.6rem 1.5rem
  }

  .rstdtl-course-list__tieup-mc-target::after {
    color: #fff;
    vertical-align: middle
  }

  .rstdtl-course-list__tieup-mc-target:hover {
    text-decoration: none
  }

  .rstdtl-course-list__tieup-mc-logo {
    display: inline-block;
    width: 123px;
    height: 22px;
    background: url('https://tblg.k-img.com/images/shared/tieup/mastercard_pricelessjapan/tieup_logo_mastercard.png?1547477503') no-repeat 0 0;
    background-size: 123px 22px;
    vertical-align: bottom
  }

  .rstdtl-course-list__tieup-mc-logo>i {
    display: none
  }

  .rstdtl-course-list__tieup-mc-text {
    display: inline-block;
    color: #fff;
    margin-left: 1rem;
    padding-bottom: 0.2rem;
    font-size: 1.1rem
  }

  .rstdtl-course-list__tieup-mc-text>em {
    color: #ff9600;
    font-weight: bold;
    margin-right: 0.7rem;
    font-size: 1.3rem
  }


}

.course-dtl__course-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 1em;
}

.course-dtl__img {
  margin-bottom: 1em;
  max-width: 500px;
}

.course-dtl__contents table {
  width: 100%;
}

.course-dtl__contents th {
  width: 100%;
}

.c-table.c-table--form {
  border-collapse: separate;
  border-top: 1px solid #d6ceb4;
  color: #000;
}

.c-table tr {
  vertical-align: top;
}

.c-table tbody tr th {
  border-bottom: 1px solid #d6ceb4;
  color: #13131e;
  font-weight: bold;
  vertical-align: inherit;
  width: 5em;
  line-height: 1.5;
  padding: 1rem;
}

.c-table.c-table--form tbody tr th {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #d6ceb4;
  background-color: #faf8f5;
}

.c-table tbody tr td {
  border-bottom: 1px solid #d6ceb4;
  vertical-align: inherit;
  padding: .6rem;
}

.course-dtl__data-table tbody tr td {
  padding: 1.2rem 1.5rem;
}

.course-dtl__price-num {
  color: #e64c30;
  font-size: 1rem;
  font-weight: bold;
}

.course-dtl__price-num>em {
  margin-right: 2px;
  font-size: 1.8rem;
}

.rstdtl-course-list__img-target {
  pointer-events: none;
}

.course-dtl__info {
  padding-bottom: 3rem;
}

/* ------------------------------
sp-menu
------------------------------ */

@media screen and (max-width: 768px) {

  /* ------------------------------
rstdtl-menu-lst
------------------------------ */
  .pttl {
    padding: 33px 0 40px 0;
    text-align: center;
  }

  .pttl img {
    height: 32px;
    width: auto;
  }

  .rstdtl-menu-lst {
    margin: 0 20px 60px 20px;
  }

  /* ------------------------------
access
------------------------------ */
  dl.shop-info dt {
    clear: both;
    font-weight: bold;
    padding-top: 11px;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
  }

  dl.shop-info dd {
    font-size: 0.9em;
    line-height: 1.6;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
  }

  /* ------------------------------
rstdtl-menu-lst
------------------------------ */
  .pttl {
    padding: 33px 0 40px 0;
    text-align: center;
  }

  .pttl img {
    height: 32px;
    width: auto;
  }

  .rstdtl-menu-lst {
    margin: 40px 0px 0px 0px;
  }


  .rstdtl-menu-lst__heading {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
  }

  .rstdtl-menu-lst__contents {
    display: table;
    padding: 0 10px;
    border-bottom: 1px dotted #d2d2d2;
    width: 100%;
    box-sizing: border-box
  }

  .rstdtl-menu-lst__contents:last-of-type {
    border-bottom: none;
    padding-top: 10px;
  }


  .rstdtl-menu-lst__info {
    display: table-cell;
    padding: 6px 0;
    vertical-align: top
  }


  .rstdtl-menu-lst__info-inner {
    /*        display: table;*/
    width: 100%;
  }

  .rstdtl-menu-lst__menu-title {
    display: table-cell;
    width: 100%;
    /* color: #111; */
    font-weight: bold;
    font-size: 1.4rem
  }


  /*
    .rstdtl-menu-lst__price {
        display: table-cell;
        font-weight: bold;
        text-align: right;
        width: 7rem;
        font-size: 1.5rem
    }
*/


  .rstdtl-menu-lst__price {
    display: inline-block;
    width: 100% !important;
    font-weight: bold;
    text-align: right !important;
    font-size: 1.5rem
  }

  .rstdtl-menu-lst__desc {
    font-size: 12px;
    padding-bottom: 10px;
  }

  .rstdtl-menu-lst__desc p {
    font-size: 20px;
    padding: 12px 10px;
    line-height: 1.6;
    background: url('https://tblg.k-img.com/images/line/line_dot.gif?1547477344') repeat-x 0 100%
  }

  .rstdtl-menu-lst__img {
    display: table-cell;
    padding: 20px 15px 20px 0;
    width: 120px;
    text-align: center
  }


  /* ------------------------------
course menu sp
------------------------------ */


  .course-list__items {
    margin: auto;
    width: 100%;
  }

  .rstdtl-course-list {
    display: table;
    position: relative;
    z-index: 1;
    border-top: 1px solid #e0dccc;
    border-bottom: 1px solid #e0dccc;
    width: 100%
  }

  .rstdtl-course-list+.rstdtl-course-list {
    border-top: none
  }

  .rstdtl-course-list__target {
    color: inherit;
    z-index: 1
  }

  .rstdtl-course-list__target:hover {
    color: inherit;
    text-decoration: none
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper:hover {
    cursor: default
  }


  .rstdtl-course-list__data {
    display: table-cell;
    position: relative;
    padding: 20px 0 40px;
    width: 100%;
    word-break: break-all;
    vertical-align: top
  }



  .rstdtl-course-list__tieup-mc~.rstdtl-course-list__img {
    padding-top: 6.5rem
  }

  .rstdtl-course-list__tieup-mc~.rstdtl-course-list__data {
    padding-top: 6.5rem
  }

  .rstdtl-course-list__data-header {
    display: table;
    width: 100%
  }

  .rstdtl-course-list__img+.rstdtl-course-list__data .rstdtl-course-list__data-header {
    min-height: 72px
  }

  .rstdtl-course-list__course-title {
    display: table-cell;
    word-break: break-all;

  }

  .rstdtl-course-list__course-title-text {
    margin-bottom: 0.2rem;
    /* color: #111; */
    font-weight: bold;
    line-height: 1.6;
    font-size: 1.3rem;
  }

  .rstdtl-course-list__course-title-text .rstdtl-course-list__target:hover {
    color: #ff9600;
    text-decoration: underline
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__course-title-text {
    /* color: #13131e */
  }

  .rstdtl-course-list__dish-count.rstdtl-course-list__dish-count {
    border: 1px solid #e0dccc;
    box-sizing: border-box;
    /* color: #463f2d; */
    background-color: #fff;
    margin-left: 0.5rem;
    padding: 0.1rem 0.3rem
  }


  .rstdtl-course-list__price-wrap {
    display: table-cell;
    white-space: nowrap;
    vertical-align: top;
    padding-right: 0rem;
  }

  .rstdtl-course-list__price-wrap {
    display: block;
    width: 100%;
    white-space: nowrap;
    vertical-align: top;
    padding-right: 0rem;
    margin-bottom: 1rem;
  }

  .rstdtl-course-list__price-discount {
    display: inline-block
  }

  .rstdtl-course-list__price-before {
    /* color: #13131e; */
    text-align: left;
    margin-right: 0.5rem;
    margin-bottom: -0.2rem;
    font-size: .1rem
  }

  .rstdtl-course-list__price-hotpepper-discount {
    display: inline-block;
    position: relative;
    margin-bottom: 7px;
    border: solid 1px #d2d2d2;
    border-radius: 2px;
    color: #949499;
    font-weight: bold;
    line-height: 1;
    background-color: #fff;
    padding: 0.4rem 0.5rem 0.3rem;
    font-size: 1rem
  }

  .rstdtl-course-list__price-hotpepper-discount::before,
  .rstdtl-course-list__price-hotpepper-discount::after {
    display: block;
    position: absolute;
    border: solid transparent;
    width: 0;
    height: 0;
    content: ''
  }

  .rstdtl-course-list__price-hotpepper-discount::before {
    bottom: -7px;
    border-width: 6px 6px 0;
    border-top-color: #d2d2d2;
    right: 3rem
  }

  .rstdtl-course-list__price-hotpepper-discount::after {
    bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #fff;
    right: 3.1rem
  }

  .rstdtl-course-list__price-num {
    /* color: #000; */
    font-weight: bold;
    font-size: 1.4rem
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__price-num {
    display: block
  }

  .rstdtl-course-list__price-num>em {
    margin-right: 2px;
    font-family: Arial, sans-serif;
    font-size: 2.0rem
  }

  .rstdtl-course-list__price-num-tax {
    font-weight: normal;
    font-size: 0.6rem;
  }

  .rstdtl-course-list__data-body {
    display: block;
    width: 100%;
    line-height: 1;
    padding-top: 0.5rem
  }

  .rstdtl-course-list__data-body:before,
  .rstdtl-course-list__data-body:after {
    display: block;
    overflow: hidden;
    content: ""
  }

  .rstdtl-course-list__data-body:after {
    clear: both
  }

  .rstdtl-course-list__img {
    /*        display: table-cell;*/
    padding: 20px 15px 20px 0;
    width: 200px;
    width: 100%;
  }

  .rstdtl-course-list__img img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
  }


  .rstdtl-course-list__img .rstdtl-course-list__target:hover {
    opacity: 0.8
  }

  .rstdtl-course-list.rstdtl-course-list--hotpepper .rstdtl-course-list__img:hover {
    opacity: 1
  }


  .rstdtl-course-list__subinfo {
    /*        display: table;*/
    position: relative;
    /*        float: left;*/
    padding-top: 0.5rem
  }



  .rstdtl-course-list__desc {
    color: #fff;
    line-height: 1.6;
    font-size: 1.2rem;
  }

  .rstdtl-course-list__data-footer {
    float: right
  }

  .rstdtl-course-list__label {
    margin-left: 5px
  }

  .rstdtl-course-list__label.rstdtl-course-list__label {
    background-color: #ffd700;
    padding: 0.2rem 0.4rem;
    line-height: 1.1rem;
    font-size: 1.3rem;
    color: #fff;
  }

  .rstdtl-course-list__hotpepper-target::before {
    color: #999
  }


  .rstdtl-course-list__course-rule {
    display: table-cell;
    white-space: nowrap;
    vertical-align: bottom;
    padding: 0 0 0.3rem 1rem
  }




  .rstdtl-course-list__course-rule>dt,
  .rstdtl-course-list__course-rule>dd {
    display: inline-block
  }

  .rstdtl-course-list__course-rule>dd {
    margin-right: 0.5rem
  }

  .rstdtl-course-list__course-rule-title::before {
    display: inline-block;
    color: #bcb08a;
    vertical-align: -0.1rem
  }



  .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--member::before {
    /* font-family: "Tabelog Glyph"; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    speak: none;
    content: "※"
  }

  .rstdtl-course-list__course-rule-title.rstdtl-course-list__course-rule-title--time::before {
    /* font-family: "Tabelog Glyph"; */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
    speak: none;
    content: "※"
  }

  .rstdtl-course-list__course-rule-title>i {
    display: none
  }

  .rstdtl-course-list__action-btn {
    display: table-cell;
    width: 100px;
    text-align: right;
    vertical-align: top;
    padding-left: 1.2rem;
    color: #fff;
  }

  .rstdtl-course-list__reserve-notice {
    display: block;
    color: #b4b4b4;
    text-indent: -1em;
    padding-left: 1em;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1.2;
    font-size: 0.8rem
  }

  .rstdtl-course-list__action-btn-target {
    display: block;
    float: right;
    clear: right;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: middle;
    /*        width: 10rem;*/
    /* color: #111; */
  }

  .rstdtl-course-list__action-btn-target+.rstdtl-course-list__action-btn-target {
    margin-top: 0.6rem
  }

  .rstdtl-course-list__reserve-notice+.rstdtl-course-list__action-btn-target {
    margin-top: 0.6rem
  }

  .rstdtl-course-list__coupon {
    display: inline-block;
    float: right;
    margin-top: 0.5rem
  }

  .rstdtl-course-list__coupon-btn {
    float: right
  }

  .rstdtl-course-list__coupon-contents {
    width: auto;
    text-align: left;
    padding-top: 0.7rem
  }

  .rstdtl-course-rdimg {
    position: absolute;
    bottom: 0;
    left: 0
  }

  .rstdtl-course-list__tieup-mc {
    display: table-row;
    position: absolute;
    left: 0;
    z-index: 5;
    border-radius: 6px;
    vertical-align: middle;
    /* background-color: #221815; */
    top: 1.5rem
  }

  .rstdtl-course-list__tieup-mc:hover {
    opacity: 0.8
  }

  .rstdtl-course-list__tieup-mc-target {
    display: block;
    box-sizing: border-box;
    padding: 0.6rem 1.2rem 0.6rem 1.5rem
  }

  .rstdtl-course-list__tieup-mc-target::after {
    color: #fff;
    vertical-align: middle
  }

  .rstdtl-course-list__tieup-mc-target:hover {
    text-decoration: none
  }

  .rstdtl-course-list__tieup-mc-logo {
    display: inline-block;
    width: 123px;
    height: 22px;
    background: url('https://tblg.k-img.com/images/shared/tieup/mastercard_pricelessjapan/tieup_logo_mastercard.png?1547477503') no-repeat 0 0;
    background-size: 123px 22px;
    vertical-align: bottom
  }

  .rstdtl-course-list__tieup-mc-logo>i {
    display: none
  }

  .rstdtl-course-list__tieup-mc-text {
    display: inline-block;
    color: #fff;
    margin-left: 1rem;
    padding-bottom: 0.2rem;
    font-size: 1.1rem
  }

  .rstdtl-course-list__tieup-mc-text>em {
    color: #ff9600;
    font-weight: bold;
    margin-right: 0.7rem;
    font-size: 1.3rem
  }

  .cms_menu___modal--close {
    left: 10px;
  }


}

.tblg-coupon__main-title,
.tblg-coupon__main-contents,
.rstdtl-course-list__coupon,
.tblg-coupon-toggle-btn {
  visibility: hidden;
  display: none;
  width: 0;
  height: 0;
}

#cms_menu__modal {
  z-index: 99999999 !important;
}

.rstdtl-tax-alert {
  line-height: 1.6;
  padding: 2rem 0;
}

.mce-content-body .top-kv-slider div:nth-child(n+2) {
  display: none;
}

.mce-content-body .CMS-NOT-EDITABLE-AREA::after {
  z-index: 1001;
  content: "こちらのエリアの表示修正はプログラム改修となりますので、ソース編集が必要となります。\a 変更ご希望の際はサポートまでお問い合わせください。" !important;
  position: absolute !important;
  top: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  right: 0px !important;
  width: 100% !important;
  height: 3em !important;
  line-height: 1.5 !important;
  text-align: center !important;
  font-size: 12px !important;
  color: rgb(170, 170, 170) !important;
  white-space: pre !important;
  margin: auto !important;
  background: rgb(238, 238, 238) !important;
}

/*  ----------------------------------------------------------

menu

----------------------------------------------------------  */
.menu_mb {
  margin-bottom: 8rem;
}
.ttl{
  font-size: 2rem;
  margin:0 0 1rem ;
  padding-left: 1rem;
border-left: 5px solid #8c0032;
}
.ttl span{
  margin-left: 2rem;
  font-size: .8em;
}
.menu_catch {
  font-size: 2rem;
  text-align: center;
  margin-top: 5rem;
}
.course_catch{
  margin-bottom: 1rem;
  color: #8c0032;
}

dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var+dd {
  border-bottom: solid 1px rgba(0, 0, 0, 0.15);
  /* メニュー下線カラー */
}

dl.menu-list dt:first-child,
dl.menu-list dt:first-child+dd {
  border-top: solid 1px rgba(0, 0, 0, 0.15);
  /* メニュー上線カラー */
}

dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd)+dd {
  background: rgba(0, 0, 0, 0.025);
  /* メニュー背景色 */
}

dl.menu-list dt.var+dd dl dt:nth-of-type(odd) {
  background: none !important;
}

dl.menu-list dt.var+dd dl dt:nth-of-type(odd)+dd {
  background: none !important;
}

dl.menu-list {
  display: flex;
  flex-wrap: wrap;
}

dl.menu-list dt {
  padding: 1.5rem;
  width: 70%;

}

dl.menu-list dt span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: normal;
}

dl.menu-list dd {
  padding: 1.5rem;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}


@media screen and (max-width: 767px) {
  .menu_mb {
    margin-bottom: 4rem;
  }

  dl.menu-list {
    display: block;
  }

  dl.menu-list dt {
    width: 100%;
    border-bottom: none;
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  dl.menu-list dd {
    width: 100%;
    border-top: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  dl.menu-list dt:first-child+dd {
    border-top: none;
  }


}