@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/*======================================
セッティング
======================================*/
.sp {
  display: none;
}

.tabOnly {
  display: none !important;
}

.pcNone {
  display: block !important;
}
@-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: clamp(1.4rem, 1.4035087719vw, 1.6rem);
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  color: #37231d;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-image: url(../img/main_bg.jpg);
  background-repeat: repeat;
  background-size: 100%;
}

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.25;
  letter-spacing: 0.1em;
}

.preparation {
  text-align: center;
  font-size: clamp(2.5rem, 5.2631578947vw, 6rem);
  font-weight: 900;
}

.l-inner {
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.pageSub .l-main {
  border-bottom: solid 0.2rem #dccbbd;
}

.l-wrapper {
  overflow: hidden;
}

/*======================================
　共通ボタン
======================================*/
.c-btn {
  width: clamp(30rem, 25.6944444444vw, 37rem);
}
.c-btn a {
  display: block;
}

/*======================================
　アニメーション : 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;
}

/*======================================
　追従ボタン
======================================*/
.floatingBtn_pc {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: clamp(6rem, 5.5555555556vw, 8rem);
  z-index: 10;
}
.floatingBtn_pc a {
  display: block;
}
.floatingBtn_pc a:not(:last-child) {
  margin-bottom: 1.5rem;
}
.floatingBtn_sp {
  display: none;
}
.floatingBtn_sp a {
  width: 50%;
  text-align: center;
}
.floatingBtn_sp a img {
  max-width: 17.5rem;
}
.floatingBtn_sp a:nth-child(1) {
  background-color: #f3be00;
}
.floatingBtn_sp a:nth-child(2) {
  background-color: #3d1c04;
}

/*======================================
フッター
======================================*/
footer {
  background-image: url(../img/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

footer .scrollTop {
  width: clamp(7rem, 6.4705882353vw, 11rem);
  position: absolute;
  top: -5.5rem;
  right: clamp(2rem, 5.5882352941vw, 9.5rem);
}

footer .l-inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

footer .wrap {
  margin-bottom: 5rem;
}

/* logo */
footer .logo {
  width: 5rem;
  margin: 0 auto 3rem;
}

/* nav */
footer nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer nav ul li:not(:last-child) {
  border-right: solid 0.1rem #37231d;
  padding-right: 2rem;
  margin-right: 2rem;
}

footer nav ul a {
  font-size: clamp(1.4rem, 0.9411764706vw, 1.6rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #37231d;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

footer nav .icon {
  width: clamp(2.5rem, 2.0588235294vw, 3.5rem);
}

footer .contactBox {
  display: grid;
  grid-template-columns: auto clamp(18rem, 14.1176470588vw, 24rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}
footer .contactBox p {
  font-size: clamp(1.4rem, 0.9411764706vw, 1.6rem);
}

footer small {
  display: block;
  text-align: center;
  font-size: clamp(1.4rem, 0.9411764706vw, 1.6rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #37231d;
}
/*======================================
　ヘッダー（TOP用）
======================================*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: clamp(2rem, 3.6458333333vw, 7rem);
  height: 100vh;
  background-image: url(../img/main_bg02@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: clamp(2rem, 4.6875vw, 9rem);
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 10;
}
.header::before {
  content: "";
  background-image: url(../img/header_bg_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(20rem, 23.1770833333vw, 44.5rem);
  height: auto;
  aspect-ratio: 445/670;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.header h1 {
  width: clamp(5rem, 4.1666666667vw, 8rem);
}

.header h1 a {
  display: block;
  line-height: 1;
}

/*======================================
　nav（TOP用）
======================================*/
.header .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-block: auto;
  height: 100%;
  max-height: 50rem;
}
.header ul.gnav-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: clamp(2rem, 2.6041666667vw, 5rem);
}
.header ul.gnav-menu > li {
  white-space: nowrap;
  position: relative;
}
.header ul.gnav-menu > li.current::after {
  content: "";
  background-image: url(../img/nav_current@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(1.5rem, 1.3020833333vw, 2.5rem);
  height: clamp(1.5rem, 1.3020833333vw, 2.5rem);
  position: absolute;
  top: 50%;
  right: clamp(-5rem, -2.6041666667vw, -2.5rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.header ul.gnav-menu > li > a {
  display: block;
  position: relative;
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #37231d;
}
.header ul.gnav-menu > li.current a {
  color: #a02328;
}
.header ul.gnav-menu > li > a:hover {
  opacity: 1;
}
.header .gnav .iconBox {
  width: 3.5rem;
}
.header .pageSub .gnav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/*======================================
　ヘッダー（下層用）
======================================*/
.pageHeader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  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;
  padding-left: clamp(2rem, 2.0833333333vw, 4rem);
  padding-right: clamp(2rem, 2.0833333333vw, 4rem);
  height: 10rem;
  width: 100%;
}
.pageHeader ul.gnav-menu > li {
  position: relative;
  z-index: 1;
}
.pageHeader ul.gnav-menu > li.current::after {
  content: "";
  background-image: url(../img/nav_current@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.pageHeader h1 {
  width: 5rem;
  margin-top: 10rem;
}

.pageHeader .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, 2.34375vw, 4.5rem);
}

.pageHeader .gnav .iconBox {
  width: 2.5rem;
}

/*======================================
　nav（下層用）
======================================*/
.pageHeader 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, 2.0833333333vw, 4rem);
}
.pageHeader ul.gnav-menu > li {
  white-space: nowrap;
  text-align: center;
}
.pageHeader ul.gnav-menu > li > a {
  display: block;
  position: relative;
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.33em;
  text-align: center;
  color: #fff;
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial;
}
.pageHeader ul.gnav-menu > li > a span {
  display: block;
  text-align: center;
}
.pageHeader ul.gnav-menu > li > a .en {
  font-size: 1rem;
  margin-top: 1rem;
}

/*======================================
　hamburger
======================================*/
#navArea .logo {
  width: 5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

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

.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 {
  margin-bottom: 5rem;
}

.gnav-sp-menu li {
  font-size: 1.6rem;
  text-align: center;
}

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

.gnav-sp-menu li a span {
  display: block;
}

.gnav-sp-menu li a span.ja {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.gnav-sp-menu li a span.en {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
}

.gnav-sp .iconBox {
  width: 3.2rem;
  margin: 0 auto;
}

/* 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: #a02328;
}

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

/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv_inner {
  width: 100%;
  height: clamp(30rem, 31.25vw, 45rem);
  background-image: url(../img/page_mv@2x.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: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

.parallax {
  height: clamp(25rem, 27.7777777778vw, 40rem);
  overflow: hidden;
}
.parallax::before {
  content: "";
  background-image: url(../img/parallax_photo@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}

/*============================
	kv
============================*/
.top-kv-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  z-index: 2;
}

.top-kv-wrapper .header {
  width: clamp(27rem, 24.4791666667vw, 47rem);
}

.top-kv {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#main {
  position: relative;
  width: 100%;
  height: 100%;
}
/*======================================
　こだわりページ
======================================*/
.pageSub .about_inner {
  max-width: 114rem;
  padding-top: clamp(8rem, 10.1694915254vw, 12rem);
  padding-bottom: clamp(8rem, 10.1694915254vw, 12rem);
}
.pageSub .about_item:not(:last-child) {
  margin-bottom: 10rem;
}
.pageSub .about h2 {
  font-size: clamp(2.5rem, 2.6315789474vw, 3rem);
  font-weight: 900;
  color: #000;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 4.3859649123vw, 5rem);
  position: relative;
  line-height: 1.3;
}
.pageSub .about h2::before {
  content: "";
  width: clamp(10rem, 26.3157894737vw, 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, 4.3859649123vw, 5rem);
}
.pageSub .about_content .photo {
  width: clamp(30rem, 35.0877192982vw, 40rem);
}
.pageSub .about_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageSub .about_content .read {
  color: #000;
  line-height: 2;
}
.pageSub .about_content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 0;
}
.pageSub .about_content dl:not(:last-child) {
  border-bottom: dashed 0.1rem rgba(0, 0, 0, 0.5);
}
.pageSub .about_content dl:first-child {
  padding-top: 0;
}
.pageSub .about_content dt, .pageSub .about_content dd, .pageSub .about_content a {
  font-size: clamp(1.4rem, 1.4035087719vw, 1.6rem);
  font-family: "Zen Old Mincho", serif;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.pageSub .about_content dt {
  width: 10rem;
  font-weight: 500;
}
.pageSub .about_content dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
}
.pageSub .about_content dd small {
  font-size: 1.4rem;
}

/*======================================
店舗情報
======================================*/
.pageSub .information_inner {
  max-width: 114rem;
  padding-top: clamp(5rem, 10.1694915254vw, 12rem);
  padding-bottom: clamp(5rem, 10.1694915254vw, 12rem);
}
.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;
}
.pageSub .information_table dl:not(:last-child) {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.pageSub .information_table dt, .pageSub .information_table dd, .pageSub .information_table a {
  line-height: 1.5;
  color: #000;
}
.pageSub .information_table dt {
  width: 30%;
  font-weight: bold;
}
.pageSub .information_table dd {
  width: 70%;
  font-weight: 400;
}
.pageSub .information_map {
  height: 50rem;
}
.pageSub .information_map iframe {
  width: 100%;
  height: 100%;
}

/*======================================
　こだわりページ
======================================*/
.pageSub .company_inner {
  max-width: 114rem;
  padding-top: clamp(8rem, 10.1694915254vw, 12rem);
  padding-bottom: clamp(8rem, 10.1694915254vw, 12rem);
}
.pageSub .company_item:not(:last-child) {
  margin-bottom: 10rem;
}
.pageSub .company h2 {
  font-size: clamp(2.5rem, 2.6315789474vw, 3rem);
  font-weight: 900;
  color: #000;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 4.3859649123vw, 5rem);
  position: relative;
  line-height: 1.3;
}
.pageSub .company h2::before {
  content: "";
  width: clamp(10rem, 26.3157894737vw, 30rem);
  height: 0.3rem;
  background-color: #000;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  z-index: 2;
}
.pageSub .company h2::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.pageSub .company_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 4.3859649123vw, 5rem);
}
.pageSub .company_content .photo {
  width: clamp(30rem, 35.0877192982vw, 40rem);
}
.pageSub .company_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageSub .company_content .read {
  color: #000;
  line-height: 2;
}
.pageSub .company_content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 0;
}
.pageSub .company_content dl:not(:last-child) {
  border-bottom: dashed 0.1rem rgba(0, 0, 0, 0.5);
}
.pageSub .company_content dl:first-child {
  padding-top: 0;
}
.pageSub .company_content dt, .pageSub .company_content dd, .pageSub .company_content a {
  font-size: clamp(1.4rem, 1.4035087719vw, 1.6rem);
  font-family: "Zen Old Mincho", serif;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.pageSub .company_content dt {
  width: 10rem;
  font-weight: 500;
}
.pageSub .company_content dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
}
.pageSub .company_content dd small {
  font-size: 1.4rem;
}

/*======================================
ギャラリー
======================================*/
.pageSub .galleryBox_inner {
  max-width: 114rem;
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.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;
}

/*======================================
商品一覧
======================================*/
.pageSub .menu_inner {
  max-width: 114rem;
  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: "Zen Old Mincho", serif;
  font-weight: bold;
  color: #37231d;
  text-align: center;
  background-color: #fff;
}
.pageSub .menu_category a.active {
  background-color: #dccbbd;
  color: #fff;
}
.pageSub .menu .content__title {
  font-size: clamp(2.5rem, 2.6315789474vw, 3rem);
  margin-bottom: 3rem;
  color: #000;
}
.pageSub .menu_attention {
  margin-top: clamp(5rem, 8.7719298246vw, 10rem);
  font-weight: bold;
}
.pageSub .menu .rstdtl-menu-lst__heading {
  font-size: clamp(2.5rem, 2.6315789474vw, 3rem);
  margin-top: 10rem;
  margin-bottom: 1rem;
  color: #a02328;
  border-left: solid 0.8rem #a02328;
  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;
  border-bottom: dotted 0.1rem rgba(0, 0, 0, 0.5);
}
.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__option {
  display: inline-block;
  background-color: #a02328;
  font-weight: bold;
  padding: 0.6rem 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.pageSub .menu .rstdtl-menu-lst__target {
  display: block;
  width: clamp(10rem, 17.5438596491vw, 20rem);
}
.pageSub .menu .rstdtl-menu-lst__menu-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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: #a02328;
  color: #37231d;
  font-size: 1.4rem;
  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: dotted 0.1rem #000;
}
.pageSub .menu .menu-price-list__name, .pageSub .menu .menu-price-list__price {
  font-size: clamp(1.6rem, 1.5789473684vw, 1.8rem);
  color: #000;
  line-height: 1.5;
}
.pageSub .menu .menu-price-list__name {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 600;
}
.pageSub .menu .menu-price-list__price {
  width: auto;
}
.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(255, 255, 255, 0.2);
}
.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: #fff;
  background-color: #9e1c22;
  text-align: center;
  padding: 0.5rem 1rem;
}
.pageSub .menu .course-list-item__title {
  font-size: 1.8rem;
}
.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: #fff;
  background-color: #000;
  padding: 1rem;
}
.pageSub .menu .course-list-item__price {
  font-size: 2.5rem;
  font-weight: bold;
}
.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: #a02328 !important;
  color: #fff !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: #a02328;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding: 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;
}

/*======================================
TOPページ
======================================*/
.pageTop .topPolicy {
  background-color: rgba(220, 203, 189, 0.5);
  position: relative;
  z-index: 1;
  margin-top: clamp(7rem, 9.7222222222vw, 14rem);
}
.pageTop .topPolicy_inner {
  padding-top: clamp(8rem, 9.7222222222vw, 14rem);
  padding-bottom: clamp(8rem, 9.7222222222vw, 14rem);
}
.pageTop .topPolicy_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(2rem, 6.9444444444vw, 10rem);
}
.pageTop .topPolicy_content .detailBox {
  width: auto;
}
.pageTop .topPolicy_content .heading2 {
  font-size: clamp(2rem, 2.6388888889vw, 3.8rem);
  font-weight: 500;
  line-height: 1.8947368421;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
.pageTop .topPolicy_content .heading2 strong {
  font-size: clamp(2.5rem, 3.4722222222vw, 5rem);
  color: #a02328;
  font-weight: 500;
  line-height: 1;
}
.pageTop .topPolicy_content .read {
  height: 30rem;
  font-size: clamp(1.2rem, 1.1111111111vw, 1.6rem);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 3;
  margin-left: auto;
  margin-bottom: 6.5rem;
}
.pageTop .topPolicy_content .c-btn {
  margin-left: auto;
}
.pageTop .topPolicy_content .photoBox {
  width: clamp(30rem, 49.3055555556vw, 71rem);
}
.pageTop .topMenu {
  position: relative;
  z-index: 1;
}
.pageTop .topMenu::before, .pageTop .topMenu::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.pageTop .topMenu::before {
  background-image: url(../img/menu_bg_decora01@2x.png);
  width: clamp(20rem, 28.8235294118vw, 49rem);
  height: auto;
  aspect-ratio: 490/780;
  top: clamp(1rem, 5.2941176471vw, 9rem);
  right: 0;
}
.pageTop .topMenu::after {
  background-image: url(../img/menu_bg_decora02@2x.png);
  width: clamp(20rem, 30.2941176471vw, 51.5rem);
  height: auto;
  aspect-ratio: 515/820;
  bottom: 2rem;
  left: 0;
}
.pageTop .topMenu_inner {
  max-width: 170rem;
  padding-top: clamp(8rem, 10.5882352941vw, 18rem);
  padding-bottom: clamp(8rem, 8.2352941176vw, 14rem);
  padding-right: clamp(0rem, 8.8235294118vw, 15rem);
  margin: 0 auto;
}
.pageTop .topMenu_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(2rem, 4.4117647059vw, 7.5rem);
}
.pageTop .topMenu .photoBox {
  width: clamp(25rem, 37.6470588235vw, 64rem);
  position: relative;
  z-index: 2;
}
.pageTop .topMenu .photoBox .photo01 {
  margin-bottom: clamp(4rem, 8.2352941176vw, 14rem);
}
.pageTop .topMenu .photoBox .photo02 {
  width: clamp(20rem, 26.4705882353vw, 45rem);
  margin-left: clamp(2rem, 7.0588235294vw, 12rem);
}
.pageTop .topMenu .headingBox {
  position: relative;
  z-index: 1;
  margin-top: clamp(3.5rem, 5.2083333333vw, 7.5rem);
}
.pageTop .topMenu .headingBox::after {
  content: "";
  background-image: url(../img/menu_heading_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(25rem, 26.4705882353vw, 45rem);
  height: auto;
  aspect-ratio: 450/1120;
  position: absolute;
  top: clamp(-12.5rem, -7.3529411765vw, -5rem);
  left: clamp(-4.5rem, -2.6470588235vw, -2rem);
  z-index: -1;
}
.pageTop .topMenu .headingBox .heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.5rem, 2.0588235294vw, 3.5rem);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: clamp(2rem, 3.3529411765vw, 5.7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.pageTop .topMenu .headingBox .heading2 strong {
  font-size: clamp(2.5rem, 4.2352941176vw, 7.2rem);
  font-weight: 500;
  color: #a02328;
  line-height: 1;
}
.pageTop .topMenu .headingBox .heading2 span {
  display: block;
}
.pageTop .topMenu .headingBox .heading2 span:nth-child(2) {
  margin-top: clamp(4rem, 9.4117647059vw, 16rem);
}
.pageTop .topMenu .detailBox {
  width: clamp(25rem, 34.1176470588vw, 58rem);
  padding-top: clamp(10rem, 21.875vw, 31.5rem);
  position: relative;
  z-index: 2;
}
.pageTop .topMenu .detailBox .photo01 {
  margin-left: clamp(2rem, 7.0588235294vw, 12rem);
  margin-bottom: clamp(5rem, 7.0588235294vw, 12rem);
}
.pageTop .topMenu .detailBox .read {
  margin-right: clamp(1rem, 3.5294117647vw, 6rem);
  margin-bottom: clamp(3rem, 3.5294117647vw, 6rem);
}
.pageTop .topGallery {
  background-color: rgba(220, 203, 189, 0.5);
  position: relative;
  z-index: 2;
  height: 100%;
}
.pageTop .topGallery::before {
  content: "";
  background-image: url(../img/gallery_bg_decora@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(20rem, 35.4166666667vw, 51rem);
  height: auto;
  aspect-ratio: 510/820;
  position: absolute;
  top: clamp(-9rem, -6.25vw, -2rem);
  right: 0;
  z-index: -1;
}
.pageTop .topGallery_inner {
  padding-top: clamp(8rem, 9.7222222222vw, 14rem);
  padding-bottom: clamp(8rem, 9.7222222222vw, 14rem);
}
.pageTop .topGallery .heading2 {
  width: clamp(18rem, 16.6666666667vw, 24rem);
  margin: 0 auto clamp(5rem, 4.1666666667vw, 6rem);
}
.pageTop .topGallery .gallery-slider {
  margin-bottom: clamp(5rem, 5.2083333333vw, 7.5rem);
}
.pageTop .topGallery .slick-list {
  height: auto;
}
.pageTop .topGallery .slick-track {
  white-space: nowrap;
  height: auto;
}
.pageTop .topGallery .box-img {
  margin: 0;
}
.pageTop .topGallery .c-btn {
  margin: 0 auto;
}
.pageTop .topAccess {
  position: relative;
  z-index: 2;
}
.pageTop .topAccess::before, .pageTop .topAccess::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.pageTop .topAccess::before {
  background-image: url(../img/access_bg_decora01@2x.png);
  width: clamp(20rem, 30.5555555556vw, 44rem);
  height: auto;
  aspect-ratio: 440/740;
  top: -3rem;
  left: 2rem;
}
.pageTop .topAccess::after {
  background-image: url(../img/access_bg_decora02@2x.png);
  width: clamp(20rem, 38.1944444444vw, 55rem);
  height: auto;
  aspect-ratio: 550/400;
  bottom: 5rem;
  right: 0;
}
.pageTop .topAccess_inner {
  padding-top: clamp(8rem, 9.7222222222vw, 14rem);
  padding-bottom: clamp(8rem, 9.7222222222vw, 14rem);
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 131rem;
  margin: 0 auto;
}
.pageTop .topAccess .heading2 {
  width: clamp(13rem, 13.1944444444vw, 19rem);
  margin: 0 auto clamp(5rem, 4.1666666667vw, 6rem);
}
.pageTop .topAccess_map {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: clamp(5rem, 6.9444444444vw, 10rem);
}
.pageTop .topAccess_map iframe {
  width: 100%;
  height: clamp(25rem, 31.25vw, 45rem);
}
.pageTop .topAccess_content {
  margin-bottom: 5rem;
}
.pageTop .topAccess_content .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(2rem, 3.8194444444vw, 5.5rem);
  margin-bottom: 6rem;
}
.pageTop .topAccess_content .photo {
  width: clamp(30rem, 43.75vw, 63rem);
}
.pageTop .topAccess_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 1;
}
.pageTop .topAccess_content .detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 0.1rem #37231d;
}
.pageTop .topAccess_content .detail dl:first-child {
  border-top: solid 0.1rem #37231d;
}
.pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd, .pageTop .topAccess_content .detail a {
  font-size: clamp(1.4rem, 1.1111111111vw, 1.6rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #37231d;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.pageTop .topAccess_content .detail dt {
  width: 11rem;
  padding: 2.5rem 0;
  text-align: center;
  background-color: #e4dad0;
}
.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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.5rem 0 2.5rem 3rem;
}
.pageTop .topAccess_btnBox .c-btn {
  margin: 0 auto;
}
.pageTop .topAccess_btnBox .c-btn:not(:last-child) {
  margin-bottom: 2rem;
}
.pageTop .snsInsta {
  background-color: rgba(220, 203, 189, 0.5);
  position: relative;
  z-index: 1;
}
.pageTop .snsInsta::before, .pageTop .snsInsta::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
.pageTop .snsInsta::before {
  background-image: url(../img/insta_bg_decora01@2x.png);
  width: clamp(16rem, 18.0555555556vw, 26rem);
  height: auto;
  aspect-ratio: 260/210;
  top: clamp(20rem, 10.4166666667vw, 15rem);
  right: 1rem;
}
.pageTop .snsInsta::after {
  background-image: url(../img/insta_bg_decora02@2x.png);
  width: clamp(20rem, 24.3055555556vw, 35rem);
  height: auto;
  aspect-ratio: 350/370;
  bottom: clamp(2rem, 9.7222222222vw, 14rem);
  left: 2rem;
}
.pageTop .snsInsta_inner {
  padding-top: clamp(8rem, 9.7222222222vw, 14rem);
  padding-bottom: clamp(8rem, 9.7222222222vw, 14rem);
}
.pageTop .snsInsta .CMS-INSTAGRAM-LIST {
  max-width: 87rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.7777777778vw, 4rem);
}
.pageTop .snsInsta .CMS-INSTAGRAM-LIST > a {
  display: block;
  width: calc((100% - clamp(1rem, 2.7777777778vw, 4rem) * 2) / 3);
}
.pageTop .snsInsta .CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}
@media screen and (min-width: 415px){
  .sp414 {
    display: none;
  }
}
@media (min-width: 767px){
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px){
  .pcNone {
    display: none !important;
  }
}
@media (min-width: 821px) and (max-width: 1023px){
  .tabOnly {
    display: block !important;
  }
}
@media screen and (max-width: 1024px){
  .header .pageSub .gnav .iconBox {
    display: none;
  }
  .header .pageSub ul.gnav-menu {
    width: auto;
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}
@media screen and (max-width: 820px){
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .top-kv-wrapper .header {
    width: 100%;
  }
}
@media (max-width: 767px){
  .pageTop .topAccess_content .detail dd {
    padding: 2.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px){
  .spNone {
    display: none !important;
  }
  body {
    font-size: 15px;
  }
  .floatingBtn_pc {
    display: none;
  }
  .floatingBtn_sp {
    width: 100%;
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
  }
  footer .scrollTop {
    top: -3.5rem;
  }
  footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  footer .logo {
    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;
    gap: 3rem;
  }
  footer nav ul li {
    text-align: center;
  }
  footer nav ul li:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
  footer nav .icon {
    width: 2.5rem;
  }
  footer .contactBox {
    grid-template-columns: auto;
  }
  footer .contactBox p {
    text-align: center;
  }
  footer .contactBox a {
    width: 20rem;
  }
  .pageHeader {
    height: 6rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 8rem;
  }
  .top-kv-wrapper {
    padding-top: 0;
    height: 50vh;
  }
  .pageSub .about_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageSub .about_content .photo {
    width: 100%;
  }
  .pageSub .about_content dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .pageSub .about_content dt {
    width: 100%;
  }
  .pageSub .about_content a {
    text-decoration: underline;
  }
  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .pageSub .information_table dt {
    width: 100%;
  }
  .pageSub .information_table dd {
    width: 100%;
  }
  .pageSub .information_table a {
    text-decoration: underline;
  }
  .pageSub .information_map {
    height: 25rem;
  }
  .pageSub .company_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageSub .company_content .photo {
    width: 100%;
  }
  .pageSub .company_content dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .pageSub .company_content dt {
    width: 100%;
  }
  .pageSub .company_content a {
    text-decoration: underline;
  }
  .pageSub .galleryBox_item img {
    width: clamp(10rem, 19.556714472vw, 15rem);
    height: clamp(10rem, 19.556714472vw, 15rem);
  }
  .pageSub .menu_category {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pageSub .menu_category li {
    width: calc((100% - clamp(1rem, 1.7543859649vw, 2rem) * 2) / 2);
  }
  .pageSub .menu_category a {
    padding: 1.5rem 1rem;
  }
  .pageSub .menu .rstdtl-menu-lst__heading .c-heading3 {
    margin-bottom: 1rem;
  }
  .pageSub .menu .rstdtl-menu-lst__title {
    font-size: 2.2rem;
  }
  .pageSub .menu .rstdtl-menu-lst__desc {
    font-size: 1.6rem;
  }
  .pageSub .menu .rstdtl-menu-lst__contents:has(img) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
  .pageSub .menu .rstdtl-menu-lst__target {
    width: 100%;
  }
  .pageSub .menu .rstdtl-menu-lst__menu-title {
    line-height: 1.5;
  }
  .pageSub .menu .rstdtl-course-list__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageSub .menu .rstdtl-course-list__img {
    width: 100%;
  }
  .pageSub .menu .rstdtl-course-list__target {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .pageSub .menu .photo-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageSub .menu .photo-menu > li {
    width: 100%;
  }
  .pageSub .menu .photo-menu__figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
  .pageSub .menu .photo-menu__image {
    width: 10rem;
  }
  .pageSub .menu .photo-menu__caption {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .pageSub .menu .course-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .pageSub .menu .course-list-item__thumbnail {
    width: 100%;
  }
  .pageSub .course-dtl__course-title {
    font-size: 2rem;
  }
  .pageSub .course-dtl__data-table tr th {
    width: 12rem;
    text-align: left;
  }
  .pageTop .topPolicy_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
  .pageTop .topPolicy_content .read {
    height: auto;
    font-size: 1.5rem;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    line-height: 2;
    margin-bottom: 4rem;
  }
  .pageTop .topPolicy_content .c-btn {
    margin: 0 auto;
  }
  .pageTop .topPolicy_content .photoBox {
    width: 100%;
  }
  .pageTop .topMenu_inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .pageTop .topMenu_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
  .pageTop .topMenu .photoBox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  .pageTop .topMenu .photoBox .photo01 {
    width: 50%;
    margin-bottom: 0;
  }
  .pageTop .topMenu .photoBox .photo02 {
    width: 50%;
    margin-left: 0;
  }
  .pageTop .topMenu .headingBox {
    margin: 0 auto;
  }
  .pageTop .topMenu .headingBox::after {
    width: 10rem;
  }
  .pageTop .topMenu .headingBox .heading2 {
    display: block;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  .pageTop .topMenu .headingBox .heading2 span:nth-child(2) {
    margin-top: 1rem;
  }
  .pageTop .topMenu .detailBox {
    width: 100%;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }
  .pageTop .topMenu .detailBox .photo01 {
    margin-left: 0;
    margin-bottom: 2rem;
  }
  .pageTop .topMenu .detailBox .read {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .pageTop .topMenu .detailBox .c-btn {
    margin: 0 auto;
  }
  .pageTop .topAccess_content .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topAccess_content .photo {
    width: 100%;
  }
  .pageTop .topAccess_content .detail {
    width: 100%;
  }
  .pageTop .topAccess_content .detail dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd, .pageTop .topAccess_content .detail a {
    line-height: 1.7;
  }
  .pageTop .topAccess_content .detail dt {
    width: 100%;
    padding: 1.5rem;
  }
  .pageTop .topAccess_content .detail a {
    text-decoration: underline;
  }
}