@charset "UTF-8";

/*============================
	header
============================*/
.underlayer .header__nav-list {
  flex-direction: row;
  column-gap: 5rem;
}

@media (max-width: 900px) {
  .underlayer .header__nav-list {
    column-gap: 3rem;
  }
}

@media (min-width: 768px) {
  .underlayer .header {
    background: transparent;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .underlayer .header .header__logo {
    padding: 2rem;
    margin: 0;
  }

  .underlayer .header__contents {
    width: auto;
    flex-direction: row;
    column-gap: 4rem;
    margin: 5rem 7rem 0 0;
    align-items: flex-start;
  }

  .underlayer .header__nav-item::before {
    background: url("../img/current_under.png") no-repeat center / contain;
    width: 1.2rem;
    height: 17rem;
    transform: translate(-50%, -100%);
    top: 0rem;
    left: 50%;
  }
}
.header__sns {
  display: flex;
  gap: 3rem;
  margin: 0;
}
.header .header__logo a {
    width: 28rem;
}

@media (max-width: 767px) {
  .underlayer .header__nav-list {
    flex-direction: column;
  }
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv_1.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  display: grid;
  place-content: center;
  padding-top: 4rem;
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--color-white);
  opacity: 0.6;
  position: absolute;
  inset: 0;
}
.hero h2 {
  font-size: max(30px, 5rem);
  letter-spacing: 0.1em;
  font-family: sickantsubaki, sans-serif;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}


/*-------------------------
  lower_sec
---------------------------*/
.lower_sec {
  background: var(--bg-1);
  padding: 12rem 0 15rem;
}

.lower_sec-inner {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lower_sec-inner {
    width: 90%;
  }
}

/*-------------------------
  policy
---------------------------*/
.policy__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.policy__ttl {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(14px, 2.2rem);
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.policy__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--color-brown);
  position: absolute;
  bottom: -3px;
}

.policy__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .policy__wrapper {
    flex-direction: column;
  }
}

.policy__img {
  width: 35%;
    height: 28rem;
}

.policy__txt {
  width: 60%;
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (max-width: 767px) {
  .policy__img,
  .policy__txt {
    width: 100%;
      height: 50rem;
  }
}

/*-------------------------
  menu
---------------------------*/
.menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
  padding-bottom: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 40rem;
  }
}

.CMS-NEWS-LINK {
  font-size: max(14px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin-bottom: 2rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.08em;
}

.CMS-NEWS-MORE-READ {
  background-color: var(--color-red);
  width: 38rem;
  height: 7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-white);
  display: grid;
  place-content: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}

/*-------------------------
  newsdetail
---------------------------*/
.CMS-NEWS-DETAIL {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.CMS-NEWS-TITLE {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  padding: 1rem 0 1.2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.CMS-NEWS-TITLE:after {
  content: "";
  display: block;
  width: 25%;
  border-bottom: solid 3px var(--color-brown);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  gallery
---------------------------*/
.gallery__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.gallery__list li {
  margin: 0 1rem 2rem;
}

.gallery__list a {
  display: block;
  width: 14vw;
  height: 14vw;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__list a {
    width: 19vw;
    height: 19vw;
  }
}

#swipebox-close {
  right: auto;
  left: 0;
}

@media (min-width: 800px) {
  #swipebox-close {
    right: auto;
    left: 10px;
  }
}

/*-------------------------
  shop
---------------------------*/
.map {
  margin: 0 auto 4rem;
}

.shop__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.shop__list dt,
.shop__list dd {
  border-bottom: solid 1px var(--text-color);
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 2rem;
}

.shop__list dt {
  width: 30%;
  font-weight: 700;
  white-space: nowrap;
}

.shop__list dd {
  width: 70%;
}

@media (max-width: 767px) {
  .shop__list dt,
  .shop__list dd {
    width: 100%;
  }

  .shop__list dt {
    border-bottom: none;
    padding: 2rem 2rem 0;
  }

  .shop__list dd {
    padding: 0 2rem 2rem;
  }
}

.shop__underline {
  text-decoration: underline;
}

/*-------------------------
  menu
---------------------------*/
.menu__btn-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  margin-bottom: 4rem;
}

.menu__btn {
  width: 100%;
  height: max(50px, 7rem);
  border: solid 1px #000;
  font-size: max(12px, 2rem);
  letter-spacing: 0.3em;
  display: grid;
  place-content: center;
}

@media (max-width: 767px) {
  .menu__btn {
    height: max(40px, 7rem);
  }
}

.current .menu__btn {
  background-color: var(--color-red);
  color: var(--color-white);
  border: none;
}


/*======================================
商品一覧
======================================*/
.pageSub .menu_inner {
  padding-top: clamp(8rem, 10.1694915254vw, 12rem);
  padding-bottom: clamp(8rem, 10.1694915254vw, 12rem);
}
.pageSub .menu_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.7543859649vw, 2rem);
  margin-bottom: clamp(5rem, 8.7719298246vw, 10rem);
}
.pageSub .menu_category li {
  width: calc((100% - clamp(1rem, 1.7543859649vw, 2rem) * 3) / 3);
  list-style-type: none;
}
.pageSub .menu_category a {
  display: block;
  width: 100%;
  padding: clamp(2rem, 2.6315789474vw, 3rem);
  font-size: clamp(1.6rem, 1.7543859649vw, 2rem);
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  color: #000;
  text-align: center;
  background-color: #fff;
}
.pageSub .menu_category a.active {
  background-color: #b40000;
  color: #fff;
}
.pageSub .menu .content__title {
  font-size: clamp(1.8rem, 2.0175438596vw, 2.3rem);
  margin-bottom: 3rem;
  color: #000;
}
.pageSub .menu .content__title--small {
  font-size: 0.8em;
}
.pageSub .menu .rstdtl-menu-lst__heading {
  font-size: clamp(2.5rem, 2.6315789474vw, 3rem);
  margin-top: 10rem;
  margin-bottom: 1rem;
  color: #b40000;
  border-left: solid 0.8rem #b40000;
  padding-left: 2rem;
  color: #000;
}
.pageSub .menu .rstdtl-menu-lst__heading .c-heading3 {
  margin-bottom: 2rem;
}
.pageSub .menu .rstdtl-menu-lst__title {
  color: #000;
}
.pageSub .menu .rstdtl-menu-lst__desc {
  font-size: 2rem;
  font-weight: bold;
}
.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;
}
.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 rgba(255, 255, 255, 0.5);
}
.pageSub .menu .rstdtl-menu-lst__option {
  display: inline-block;
  background-color: #000;
  font-weight: bold;
  padding: 0.6rem 1rem;
  color: #000;
  margin-bottom: 1rem;
}
.pageSub .menu .rstdtl-menu-lst__target {
  display: block;
  width: clamp(10rem, 17.5438596491vw, 20rem);
}
.pageSub .menu .rstdtl-menu-lst__menu-title {
  font-weight: bold;
}
.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-course-list {
  padding-bottom: 5rem;
  border-bottom: dotted 0.1rem #000;
}
.pageSub .menu .rstdtl-course-list:not(:last-child) {
  margin-bottom: 5rem;
}
.pageSub .menu .rstdtl-course-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.pageSub .menu .rstdtl-course-list__img {
  width: 30%;
}
.pageSub .menu .rstdtl-course-list__data {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageSub .menu .rstdtl-course-list__course-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.pageSub .menu .rstdtl-course-list__target {
  color: #000;
  text-decoration: underline;
  font-size: 2rem;
}
.pageSub .menu .rstdtl-course-list__course-title-text {
  display: block;
  line-height: 1.5;
}
.pageSub .menu .rstdtl-course-list__desc {
  margin-bottom: 4rem;
}
.pageSub .menu .rstdtl-course-list__subinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
}
.pageSub .menu .rstdtl-course-list__price-num em {
  font-size: 1.6em;
}
.pageSub .menu .rstdtl-course-list__feature-label--recommend {
  display: inline-block;
  background-color: #b40000;
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  font-weight: bold;
}
.pageSub .menu .rstdtl-course-list__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.pageSub .menu .rstdtl-course-list__option .c-label {
  display: inline-block;
  border: solid 1px #000;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.pageSub .menu .rstdtl-course-list__course-rule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.pageSub .menu .photo-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 10rem;
}
.pageSub .menu .photo-menu > li {
  width: calc((100% - 4rem) / 3);
  list-style-type: none;
}
.pageSub .menu .photo-menu__title {
  font-weight: bold;
  font-size: 1.8rem;
  color: #000;
  margin: 1rem 0;
}
.pageSub .menu .photo-menu__price {
  text-align: right;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 3rem;
  color: #000;
}
.pageSub .menu .photo-menu__description {
  line-height: 1.7;
  font-size: clamp(1.4rem, 1.3157894737vw, 1.5rem);
  text-align: justify;
  color: #000;
}
.pageSub .menu .menu-price-list__row {
  padding: 3rem 0;
  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 .menu-price-list__row:not(:last-child) {
  border-bottom: solid 0.1rem #000;
}
.pageSub .menu .menu-price-list__name, .pageSub .menu .menu-price-list__price {
  font-size: clamp(2rem, 1.5789473684vw, 2.2rem);
  color: #000;
  line-height: 1.5;
}
.pageSub .menu .menu-price-list__price {
  font-size: clamp(2rem, 1.5789473684vw, 2.2rem);
  color: #000;
  line-height: 1.5;
}
.pageSub .menu .menu-price-list__name {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 700;
}
.pageSub .menu .menu-price-list__name span {
  display: block;
  margin-top: 1rem;
  font-weight: 400;
}
.pageSub .menu .menu-price-list__name.title {
  font-size: clamp(2rem, 2.0789473684vw, 2.6rem);
}
.pageSub .menu .menu-price-list__name.subtitle {
  padding-left: 2rem;
  position: relative;
}
.pageSub .menu .menu-price-list__name.subtitle::before {
  content: "";
  width: 1rem;
  height: 100%;
  background-color: #b40000;
  position: absolute;
  top: 0;
  left: 0;
}
.pageSub .menu .menu-price-list__wrapper {
  width: 100%;
}
.pageSub .menu .menu-price-list__price {
  width: 100%;
  text-align: right;
  font-weight: 700;
}
.pageSub .menu .preparation {
  text-align: center;
  font-size: clamp(2.5rem, 5.2631578947vw, 6rem);
  font-weight: 900;
}
.pageSub .menu .CMS-COURSE-MENU .content:not(:last-child) {
  margin-bottom: 8rem;
}
.pageSub .menu .course-list-heading__title {
  font-size: clamp(2.5rem, 2.7272727273vw, 3rem);
  margin-bottom: 3rem;
  color: #000;
}
.pageSub .menu .course-list__item {
  list-style-type: none;
}
.pageSub .menu .course-list__item:not(:last-child) {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: solid 0.1rem rgba(0, 0, 0, 0.5);
}
.pageSub .menu .course-list-item {
  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: 2rem;
  color: #000;
}
.pageSub .menu .course-list-item__thumbnail {
  width: 20rem;
}
.pageSub .menu .course-list-item__detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageSub .menu .course-list-item__label-list {
  list-style-type: none;
}
.pageSub .menu .course-list-item__label {
  display: inline-block;
  list-style-type: none;
  font-size: 1.4rem;
  color: #000;
  background-color: #9e1c22;
  text-align: center;
  padding: 0.5rem 1rem;
}
.pageSub .menu .course-list-item__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
.pageSub .menu .course-list-item__actions-list {
  list-style-type: none;
}
.pageSub .menu .course-list-item__action a {
  width: 12rem;
  font-size: 1.6rem;
  color: #000;
  background-color: #fff;
  padding: 1rem;
}
.pageSub .menu .course-list-item__price {
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
}
.pageSub .menu .course-list-item__price small {
  font-size: 1.4rem;
  font-weight: 400;
}
.pageSub .menu .restaurant-coupon-heading {
  color: #000;
  margin-bottom: 3rem;
}
.pageSub .menu .restaurant-coupon-heading__title {
  font-size: clamp(2.5rem, 2.7272727273vw, 3rem);
  margin-bottom: 1rem;
}
.pageSub .menu .restaurant-coupon-list {
  color: #000;
  list-style-type: none;
}
.pageSub .tblg-coupon-btn-wrap {
  display: none;
}
.pageSub .tblg-coupon-wrap {
  display: none;
}
.pageSub .tblg-coupon {
  padding: 1rem;
  border: solid 1px #ddd;
  margin-top: 2rem;
}
.pageSub .course-dtl {
  max-width: 80rem;
  margin: 0 auto;
}
.pageSub .cms_menu___modal--close {
  right: initial !important;
  left: 10px;
  background-color: #b40000 !important;
  color: #000 !important;
}
.pageSub .cms_menu__modal--content {
  color: #000;
  height: 100vh;
}
.pageSub .course-dtl__course-title {
  font-size: 2.8rem;
  margin-bottom: 5rem;
}
.pageSub .course-dtl__img {
  width: 50% !important;
  margin: 0 auto 5rem;
}
.pageSub .course-dtl__desc {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.pageSub .course-dtl__data-table,
.pageSub .course-dtl__data-table tbody {
  width: 100%;
}
.pageSub .course-dtl__data-table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
}
.pageSub .course-dtl__data-table tr:not(:last-child) {
  border-bottom: solid 1px #ddd;
}
.pageSub .course-dtl__data-table tr th {
  width: 15rem;
}
.pageSub .course-dtl__data-table tr td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.75;
}
.pageSub .course-dtl__feature-label {
  display: inline-block;
  background-color: #FEFF03;
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  font-weight: bold;
}
.pageSub .course-dtl__coupon button {
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 1px #000 inset, 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1px #000 inset, 0 1px 0 rgba(0, 0, 0, 0.1);
  padding: 3px 10px;
  font-size: 1rem;
}
.pageSub .tblg-coupon__btn button {
  background-color: #fa0;
  border: 1px solid #f3980a;
  color: #000;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 1rem;
}