@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&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-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: clamp(17rem, calc(17rem + (21rem - 17rem) * ((100vw - 767px) / 363px)), 21rem);
  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: #000;
  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;
  font-family: "kokuryu", sans-serif;
  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: clamp(2rem, calc(2rem + (3.5rem - 2rem) * ((100vw - 767px) / 363px)), 3.5rem);
  padding-bottom: clamp(2rem, calc(2rem + (3.5rem - 2rem) * ((100vw - 767px) / 363px)), 3.5rem);
}

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 + (7.5rem - 5rem) * ((100vw - 767px) / 363px)), 7.5rem);
  margin-bottom: clamp(4rem, calc(4rem + (7rem - 4rem) * ((100vw - 767px) / 363px)), 7rem);
}

/* logo */
footer .logo {
  width: clamp(20rem, 20.4545454545vw, 22.5rem);
  width: clamp(9rem, calc(9rem + (13.2rem - 9rem) * ((100vw - 767px) / 363px)), 13.2rem);
}

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

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

footer nav ul a {
  font-weight: 700;
  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;
}

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

footer nav .iconBox .icon {
  display: block;
  width: clamp(2rem, 2.0833333333vw, 3rem);
  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;
  }
  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: 10rem;
  width: 100%;
}

header h1 {
  width: clamp(10rem, calc(10rem + (13.8rem - 10rem) * ((100vw - 767px) / 363px)), 13.8rem);
  line-height: 1;
  position: absolute;
  top: 1.1rem;
  left: clamp(2rem, 4.5138888889vw, 6.5rem);
}

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

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

@media screen and (max-width: 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: 9rem;
    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(2rem, 3.125vw, 4.5rem);
}

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

ul.gnav-menu > li > a {
  display: inline-block;
  position: relative;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: clamp(1.5rem, 1.25vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
}

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

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

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

/*======================================
　hamburger
======================================*/
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background-color: #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-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  line-height: 1.4;
}

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

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

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

.gnav-sp .iconBox {
  margin-top: 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 {
  height: clamp(3rem, calc(3rem + (4rem - 3rem) * ((100vw - 767px) / 363px)), 4rem);
  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/mv_photo01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pageMv_inner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.pageMv h1 {
  font-size: clamp(3rem, 3.6603221083vw, 5rem);
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

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

.top-kv-slider > * {
  height: 100vh;
}

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

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

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

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

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

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
@media screen and (max-width: 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: #000;
  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 .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: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.8181818182vw, 2rem);
  margin-bottom: clamp(5rem, 9.0909090909vw, 10rem);
}

.pageSub .menu_category li {
  width: calc((100% - clamp(1rem, 1.8181818182vw, 2rem)) / 2);
  list-style-type: none;
}

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

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

@media screen and (max-width: 767px) {
  .pageSub .menu_category a {
    display: block;
    width: 100%;
    padding: clamp(1.5rem, 2.7272727273vw, 3rem);
    font-size: clamp(1.5rem, 1.8181818182vw, 2rem);
    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);
  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: 2rem clamp(2rem, 6.0909090909vw, 6.7rem);
}

@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}
.pageSub .articleBox .CMS-NEWS-ITEM {
  width: calc((100% - clamp(2rem, 6.0909090909vw, 6.7rem) * 2) / 3);
  margin: 0;
}

@media screen and (max-width: 767px) {
  .pageSub .articleBox .CMS-NEWS-ITEM {
    width: 100%;
  }
}
.pageSub .articleBox .CMS-NEWS-ITEM a {
  padding: 0;
}

.pageSub .articleBox .CMS-NEWS-THUMBNAIL {
  height: 20rem;
  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-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: #1d1d1d;
}

/*======================================
お知らせ詳細
======================================*/
.pageSub .newsDetail_inner {
  padding: clamp(10rem, 10.980966325vw, 15rem) clamp(2rem, 2.9282576867vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}

.pageSub .newsDetail .CMS-NEWS-TITLE:after {
  border-bottom: solid 3px #962337;
}

/*======================================
TOPページ
======================================*/
.pageTop .topPolicy {
  background: url(../img/back-policy.jpg) no-repeat center top/cover;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .pageTop .topPolicy::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .pageTop .topPolicy::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.pageTop .topPolicy_inner {
  padding-top: clamp(12rem, calc(12rem + (15.5rem - 12rem) * ((100vw - 767px) / 363px)), 15.5rem);
  padding-bottom: clamp(14rem, calc(14rem + (20rem - 14rem) * ((100vw - 767px) / 363px)), 20rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: clamp(4rem, 10.9090909091vw, 12rem);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}
.pageTop .topPolicy_head {
  width: clamp(18rem, 25.4545454545vw, 28rem);
  margin-right: clamp(1rem, 3.6363636364vw, 4rem);
}

.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: clamp(2.8rem, calc(2.8rem + (3.2rem - 2.8rem) * ((100vw - 767px) / 363px)), 3.2rem);
  font-family: "kokuryu", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.5;
  margin-left: clamp(2rem, calc(2rem + (2.5rem - 2rem) * ((100vw - 767px) / 363px)), 2.5rem);
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy_head h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}
.pageTop .topPolicy_detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pageTop .topPolicy_detail .photoBox {
  margin-left: clamp(-8rem, -7.2727272727vw, -2rem);
  margin-bottom: clamp(2rem, 4vw, 4.4rem);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy_detail .photoBox {
    margin-left: 0;
  }
}
.pageTop .topPolicy .read {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: clamp(42rem, calc(42rem + (47rem - 42rem) * ((100vw - 767px) / 363px)), 47rem);
  margin-bottom: clamp(6rem, calc(6rem + (7rem - 6rem) * ((100vw - 767px) / 363px)), 7rem);
}

@media screen and (max-width: 767px) {
  .pageTop .topPolicy .read {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    height: inherit;
  }
}
.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 top/cover;
  position: relative;
  z-index: 1;
}

.pageTop .topMenu_inner {
  padding-top: clamp(10rem, calc(10rem + (15.5rem - 10rem) * ((100vw - 767px) / 363px)), 15.5rem);
  padding-bottom: clamp(11rem, calc(11rem + (17rem - 11rem) * ((100vw - 767px) / 363px)), 17rem);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu_inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.pageTop .topMenu_content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: clamp(2rem, calc(2rem + (6rem - 2rem) * ((100vw - 767px) / 363px)), 6rem);
  margin-bottom: clamp(5rem, calc(5rem + (10rem - 5rem) * ((100vw - 767px) / 363px)), 10rem);
}

.pageTop .topMenu_content:nth-of-type(1) {
  margin-top: clamp(8rem, calc(8rem + (12rem - 8rem) * ((100vw - 767px) / 363px)), 12rem);
}

.pageTop .topMenu_content:nth-of-type(2) {
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu_content {
    flex-direction: column;
  }
  .pageTop .topMenu_content:nth-of-type(1) {
    margin-top: 5rem;
  }
  .pageTop .topMenu_content:nth-of-type(2) {
    flex-direction: column;
  }
}
.pageTop .topMenu .photoBox {
  flex: 1;
}

.pageTop .topMenu .photoBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageTop .topMenu .detail {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  flex-basis: 35%;
  height: clamp(35rem, calc(35rem + (45rem - 35rem) * ((100vw - 767px) / 363px)), 45rem);
  padding: clamp(3rem, calc(3rem + (4rem - 3rem) * ((100vw - 767px) / 363px)), 4rem) clamp(2rem, calc(2rem + (3rem - 2rem) * ((100vw - 767px) / 363px)), 3rem);
  position: relative;
}

.pageTop .topMenu .detail::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #000;
  pointer-events: none;
}

.pageTop .topMenu .detail::after {
  content: "";
  position: absolute;
  inset: clamp(8px, calc(8px + (10px - 8px) * ((100vw - 767px) / 363px)), 10px);
  border: 1px solid #000;
  pointer-events: none;
}

.pageTop .topMenu_content h3 {
  font-size: clamp(2rem, calc(2rem + (2.4rem - 2rem) * ((100vw - 767px) / 363px)), 2.4rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.67;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin-left: clamp(1.5rem, calc(1.5rem + (2rem - 1.5rem) * ((100vw - 767px) / 363px)), 2rem);
}

.pageTop .topMenu_content .read {
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.9;
  font-size: clamp(1.6rem, calc(1.6rem + (1.8rem - 1.6rem) * ((100vw - 767px) / 363px)), 1.8rem);
}

@media screen and (max-width: 767px) {
  .pageTop .topMenu .detail {
    flex-direction: column;
    height: inherit;
  }
  .pageTop .topMenu_content h3 {
    letter-spacing: 0.3em;
    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;
  }
}
.pageTop .topMenu .c-btn {
  margin: 0 auto;
}

.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: clamp(9rem, calc(9rem + (13rem - 9rem) * ((100vw - 767px) / 363px)), 13rem);
  padding-bottom: clamp(9rem, calc(9rem + (13rem - 9rem) * ((100vw - 767px) / 363px)), 13rem);
}

.pageTop .topNews_content .detail {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.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-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #666;
}

.pageTop .topNews_content .CMS-NEWS-LINK {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #1d1d1d;
}

.pageTop .topNews_content .CMS-NEWS-MORE-READ {
  display: none;
}

.pageTop .topNews_content .c-btn {
  margin: 0 auto;
}

.pageTop .topGallery {
  background: url(../img/back-gallery.jpg) no-repeat center top/cover;
  position: relative;
  z-index: 1;
}

.pageTop .topGallery_inner {
  padding-top: clamp(8rem, calc(8rem + (13rem - 8rem) * ((100vw - 767px) / 363px)), 13rem);
  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: clamp(20rem, 15.6944444444vw, 22.6rem);
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-top: clamp(5rem, calc(5rem + (8.5rem - 5rem) * ((100vw - 767px) / 363px)), 8.5rem);
  margin-bottom: clamp(5rem, calc(5rem + (8.5rem - 5rem) * ((100vw - 767px) / 363px)), 8.5rem);
}

@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider {
    height: 18rem;
  }
}
.pageTop .topGallery #loopslider ul {
  float: left;
  display: inline;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

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

@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider ul li {
    width: 25.6rem;
  }
}
.pageTop .topGallery #loopslider ul li img {
  padding: 0 0.3rem;
}

.pageTop .topGallery #loopslider ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

.pageTop .topGallery #loopslider ul {
  display: inline-block;
  overflow: hidden;
}

.pageTop .topGallery .c-btn {
  margin: 0 auto;
}

.pageTop .topAccess {
  background: url(../img/back-access.jpg) no-repeat center top/cover;
}

.pageTop .topAccess_inner {
  padding-top: clamp(8rem, calc(8rem + (14.5rem - 8rem) * ((100vw - 767px) / 363px)), 14.5rem);
  padding-bottom: clamp(8rem, calc(8rem + (14.5rem - 8rem) * ((100vw - 767px) / 363px)), 14.5rem);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_inner {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}
.pageTop .topAccess_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(3rem, 6.3636363636vw, 7rem);
  margin-top: clamp(6rem, calc(6rem + (10.4rem - 6rem) * ((100vw - 767px) / 363px)), 10.4rem);
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content {
    flex-direction: column;
    margin-top: 4rem;
    gap: 4rem;
  }
}
.pageTop .topAccess_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: clamp(-2rem, calc(-2rem + (-4rem - -2rem) * ((100vw - 767px) / 363px)), -4rem);
}

@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.2rem, calc(1.2rem + (2rem - 1.2rem) * ((100vw - 767px) / 363px)), 2rem) 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;
  }
}
.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-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  line-height: 1.5555555556;
  color: #1d1d1d;
}

.pageTop .topAccess_content .detail dt {
  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 {
  width: clamp(30rem, 45.4545454545vw, 50rem);
  width: clamp(30rem, calc(30rem + (51.8rem - 30rem) * ((100vw - 767px) / 363px)), 51.8rem);
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .photoBox {
    width: 100%;
  }
}
.pageTop .topAccess_content .photoBox .c-btn {
  margin-top: 2.8rem;
}

@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .photoBox .c-btn {
    margin: 3rem auto 0;
  }
}
.pageTop .gmap iframe {
  width: 100%;
  height: clamp(25rem, 40.9090909091vw, 45rem);
}

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

fixed btn

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

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

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

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

@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%;
    margin-top: 0;
    margin-bottom: 0 !important;
  }
  .fixed-btn li:first-of-type {
    border-right: 1px solid #fff;
  }
  .fixed-btn a.sp {
    width: 100%;
    padding: 0;
    height: 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: 2rem;
    height: 2rem;
    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.2rem;
  }
  .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.5rem;
  }
  .fixed-btn .tel a {
    background: #000;
    color: #fff;
  }
  .fixed-btn .reserve a {
    background: #000;
    color: #fff;
  }
}
/*  ----------------------------------------------------------

sns

----------------------------------------------------------  */
.topInsta {
  background: url(../img/back-insta.jpg) no-repeat center bottom/cover;
  padding: clamp(8rem, calc(8rem + (15rem - 8rem) * ((100vw - 767px) / 363px)), 15rem) 0;
}

.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: clamp(6rem, calc(6rem + (10rem - 6rem) * ((100vw - 767px) / 363px)), 10rem) 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 6rem;
  }
  .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: #000;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  border: #fff solid 1px;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 5.5rem;
  }
  #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-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;
}

@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__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 #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;
}/*# sourceMappingURL=style.css.map */