@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background: url("../img/shared/body-bg.jpg") repeat center top;
   color: #353535;
   font-family: "Noto Serif JP", serif;
   font-weight: 200;
   font-style: normal;
   font-size: 14px;
   letter-spacing: 0.26em;
   line-height: 28px;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
}

@media only screen and (min-width: 768px) {
   body {
      font-size: 15px;
      line-height: 35px;
      min-width: 1000px;
   }
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
   font-family: "游明朝", YuMincho, 'Noto Serif JP', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
   font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
   font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.fnt-noto-sans {
   font-family: "Noto Sans JP", sans-serif;
}

.fnt-noto-serif {
   font-family: "Noto Serif JP", serif;
}

/*=============================================
   main
*=============================================*/
main {
   clear: both;
   width: 100%;
   position: relative;
   box-sizing: border-box;
   overflow: hidden;
}

/* -- -- */
@media only screen and (max-width: 767px) {
   .wrap {
      width: 100%;
      box-sizing: border-box;
      margin: 0 auto;
      padding: 0 6vw;
      position: relative;
   }

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

@media only screen and (min-width: 768px) {
   .wrap {
      width: 1000px;
      box-sizing: border-box;
      position: relative;
      margin: 0 auto;
      padding: 0;
   }

   img {
      width: auto;
      max-width: 100%;
      height: auto;
   }
}

@media only screen and (min-width: 1241px) {
   .wr_1100 {
      width: 1100px;
   }

   .wr_1200 {
      width: 1200px;
   }
}

.non-over a:hover {
   opacity: 1;
}

.non-over a:hover img {
   opacity: 1;
}

/* -- -- */
#socialbuttons {
   display: flex;
   justify-content: center;
   margin: 0;
}

.social-facebook {
   width: 95px;
   overflow: hidden;
   display: flex !important;
   justify-content: center;
}

/*=============================================
   header
*=============================================*/
header {
   box-sizing: border-box;
   position: relative;
}

@media only screen and (max-width: 767px) {
   header h1 {
      color: #fff;
      opacity: 0.54;
      font-size: 10px;
      line-height: 16px;
      position: absolute;
      top: 4vw;
      right: 8vw;
      left: 8vw;
      text-align: center;
   }

   header .logo {
      width: 18vw;
      position: absolute;
      top: 21vw;
      left: 50%;
      transform: translateX(-50%);
   }

   #menu-toggle {
      display: flex;
      flex-direction: column;
      gap: 16vw;
      background: url("../img/shared/menu-bg_sp.jpg") no-repeat center top/cover;
      color: #000;
      width: 100%;
      height: 100vh;
      overflow-y: auto;
      position: fixed;
      top: 0;
      left: 0;
      box-sizing: border-box;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s linear;
      padding: 15vw 0 28vw;
      z-index: 100;
   }

   #menu-toggle .logo {
      width: 16vw;
      margin: 0 auto;
      position: static;
      transform: translateX(0);
   }

   #menu-toggle .nav {
      display: flex;
      justify-content: center;
      gap: 8vw;
      padding-top: 12vw;
   }

   #menu-toggle .nav a {
      display: flex;
      align-items: center;
      width: 6vw;
      height: 68vw;
      color: #000;
      font-weight: 500;
      font-size: 4vw;
      letter-spacing: 0.12em;
      line-height: 1.5;
   }

   #menu-toggle .nav a:before {
      content: '';
      border-left: 1px solid rgba(0, 0, 0, 0.2);
      flex: 1 0 0;
      order: 2;
      margin-top: 2vw;
   }

   #menu-toggle .nav a span {
      font-weight: 200;
      font-size: 2.6vw;
      letter-spacing: 0.26em;
      color: #141414;
      opacity: 0.75;
      order: 3;
      position: relative;
      padding: 2vw 0;
   }

   #menu-toggle .nav a span:before {
      content: '';
      height: 100%;
      border-left: 1px solid #000;
      position: absolute;
      top: 0;
      left: calc(50% - 1px);
      transition: all 0.3s;
      opacity: 0;
   }

   #menu-toggle .nav a span:first-letter {
      font-weight: 700;
      font-size: 3.3vw;
   }

   #menu-toggle .nav a.current {
      opacity: 1;
   }

   #menu-toggle .nav a.current:before {
      border-color: #000;
   }

   #menu-toggle .nav a.current span:before {
      opacity: 1;
   }

   #menu-toggle .banner {
      width: 74.4vw;
      margin: 0 auto;
      padding-top: 8vw;
   }

   .navOpen #menu-toggle {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
   }

   .nav-fixed {
      display: none;
   }
}

@media only screen and (min-width: 768px) {
   header h1 {
      font-weight: 200;
      font-size: 12px;
      line-height: 50px;
      letter-spacing: 0.12em;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      text-align: center;
   }

   header .nav {
      color: #141414;
   }

   header .nav a {
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.12em;
      color: #000;
   }

   header .nav a span {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.26em;
      color: #141414;
      opacity: 0.75;
   }

   header .nav a span:first-letter {
      font-weight: 700;
      font-size: 14px;
   }

   header .box {
      text-align: center;
      position: absolute;
      top: 218px;
      right: 117px;
   }

   header .box .reserve {
      padding-top: 18px;
   }

   header .logo {
      width: 121px;
      margin: 0 auto;
      padding-bottom: 45px;
   }

   .header__nav {
      position: absolute;
      bottom: 0;
      left: 92px;
   }

   .header__nav .nav {
      padding-bottom: 33px;
   }

   .header__nav .nav li {
      padding-bottom: 14px;
   }

   .header__nav .nav li:last-child {
      padding-bottom: 0;
   }

   .header__nav .nav a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
   }

   .header__nav .nav a span {
      position: relative;
      padding: 0 20px;
      opacity: 0;
      transition: all 0.3s;
   }

   .header__nav .nav a span:before {
      content: '';
      width: 100%;
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      opacity: 0;
      transition: all 0.3s;
   }

   .header__nav .nav a:hover,
   .header__nav .nav a.current {
      opacity: 1;
   }

   .header__nav .nav a:hover span,
   .header__nav .nav a.current span {
      opacity: 0.75;
   }

   .header__nav .nav a:hover span:before,
   .header__nav .nav a.current span:before {
      opacity: 1;
   }

   #menu-toggle {
      display: grid;
      background: url("../img/shared/menu-bg.jpg") no-repeat center top/cover;
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s linear;
      padding: 100px 50px;
      overflow-y: auto;
   }

   #menu-toggle .wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 100px;
      margin: auto;
   }

   #menu-toggle .col {
      width: 280px;
      padding-bottom: 180px;
   }

   #menu-toggle .logo {
      padding-bottom: 0;
   }

   #menu-toggle .tel,
   #menu-toggle .reserve {
      padding-top: 20px;
   }

   #menu-toggle .banner {
      width: 280px;
      position: absolute;
      bottom: 0;
      left: calc(50% - 320px);
   }

   #menu-toggle .nav {
      display: flex;
      gap: 20px;
   }

   #menu-toggle .nav a {
      display: flex;
      align-items: center;
      width: 36px;
      height: 330px;
      cursor: pointer;
   }

   #menu-toggle .nav a:before {
      content: '';
      border-left: 1px solid rgba(0, 0, 0, 0.2);
      flex: 1 0 0;
      order: 2;
      margin-top: 15px;
   }

   #menu-toggle .nav a span {
      order: 3;
      position: relative;
      padding: 15px 0;
      cursor: pointer;
   }

   #menu-toggle .nav a span:before {
      content: '';
      height: 100%;
      border-left: 1px solid #000;
      position: absolute;
      top: 0;
      left: calc(50% - 1px);
      transition: all 0.3s;
      opacity: 0;
   }

   #menu-toggle .nav a:hover,
   #menu-toggle .nav a.current {
      opacity: 1;
   }

   #menu-toggle .nav a:hover:before,
   #menu-toggle .nav a.current:before {
      border-color: #000;
   }

   #menu-toggle .nav a:hover span:before,
   #menu-toggle .nav a.current span:before {
      opacity: 1;
   }

   .nav-fixed {
      display: flex;
      align-items: center;
      gap: 30px;
      background: url("../img/shared/nav-fixed-bg.png") repeat-x center top;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 101;
      box-sizing: border-box;
      padding: 25px 45px 71px;
   }

   .nav-fixed .reserve {
      flex: 1 0 0;
   }

   .nav-fixed .btn-map {
      width: 18px;
   }

   .hamburger {
      background: url("../img/shared/hamburger.png") no-repeat center top/cover;
      width: 78px;
      height: 29px;
      cursor: pointer;
      transition: all 0.3s;
   }

   .hamburger.is-active {
      background-image: url("../img/shared/hamburger_close.png");
   }

   .hamburger:hover {
      opacity: 0.7;
   }

   .nav-fixed.fixed {
      opacity: 1;
      visibility: visible;
   }

   .navOpen .nav-fixed {
      background: transparent;
   }

   .navOpen .nav-fixed>*:not(.hamburger) {
      opacity: 0;
      visibility: hidden;
   }

   .navOpen #menu-toggle {
      opacity: 1;
      visibility: visible;
   }
}

/*=============================================
   section
*=============================================*/
section {
   position: relative;
}

/* -- -- */
#key {
   box-sizing: border-box;
   position: relative;
}

#key .slick-slider,
#key .slick-list,
#key .slick-track,
#key .slick-slide {
   width: 100%;
   height: 100%;
}

@media only screen and (max-width: 767px) {
   #key {
      width: 92vw;
      height: 154.9vw;
      margin: 0 auto;
   }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
   #key {
      width: 500px;
   }
}

@media only screen and (min-width: 768px) {
   #key {
      /* width: calc(100% - 870px); */
      max-width: 631px;
      height: 867px;
      margin: 0 auto;
   }
}

/*=============================================
   footer
*=============================================*/
footer {
   box-sizing: border-box;
   position: relative;
}

@media only screen and (max-width: 767px) {
   footer {
      background: url("../img/shared/footer-bg_sp.jpg") no-repeat center top/cover;
      color: #fff;
      font-weight: 500;
      padding-bottom: 21.6vw;
   }

   footer .wrap {
      padding: 19vw 8vw 13.5vw;
      text-align: center;
   }

   footer .banner {
      width: 74.4vw;
      margin: 0 auto;
   }

   #socialbuttons {
      padding-top: 8vw;
   }

   footer .btn-copy {
      font-size: 13px;
      letter-spacing: 0.15em;
      padding-top: 5vw;
   }

   footer .btn-copy a {
      display: inline-block;
      background: url("../img/shared/icon-url.png") no-repeat center left/15px auto;
      padding-left: 20px;
   }

   footer .btn-copy a:hover {
      text-decoration: underline;
   }

   footer .btn-cookies {
      font-size: 10px;
   }

   footer .btn-cookies a {
      display: inline-block;
      background: url("../img/index/icon-blank.png") no-repeat center right/10px auto;
      padding-right: 12px;
      letter-spacing: 0.12em;
      line-height: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
   }

   footer address {
      font-size: 14px;
      line-height: 25px;
      letter-spacing: 0.12em;
      padding-top: 12vw;
   }

   .pagetop {
      width: 12vw;
      opacity: 1;
      visibility: visible;
      position: static;
      margin: 8vw auto 0;
   }
}

@media only screen and (min-width: 768px) {
   footer {
      background: url("../img/shared/footer-bg.jpg") no-repeat center top/cover;
      color: #fff;
      padding: 95px 0 87px;
   }

   footer .nav {
      display: flex;
      justify-content: center;
      gap: 37px;
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.12em;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding: 17px 0;
   }

   footer .nav a {
      display: inline-block;
      border-bottom: 1px solid transparent;
   }

   footer .nav a:hover,
   footer .nav a.current {
      border-bottom-color: #fff;
   }

   footer .box {
      display: flex;
      justify-content: space-between;
      padding-top: 50px;
      letter-spacing: 0.16em;
   }

   footer .box .col {
      text-align: right;
      padding-top: 16px;
   }

   footer .box ul {
      display: flex;
      align-items: center;
      gap: 20px;
      padding-top: 24px;
   }

   footer .btn-copy {
      font-size: 16px;
   }

   footer .btn-copy a {
      display: inline-block;
      background: url("../img/shared/icon-url.png") no-repeat center left/15px auto;
      padding-left: 24px;
      letter-spacing: 0.05em;
   }

   footer .btn-copy a:hover {
      text-decoration: underline;
   }

   footer .btn-cookies {
      font-size: 12px;
      letter-spacing: 0.14em;
      line-height: 20px;
      padding-top: 4px;
   }

   footer .btn-cookies a {
      display: inline-block;
      background: url("../img/index/icon-blank.png") no-repeat center right/11px auto;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      padding-right: 15px;
   }

   footer .btn-cookies a:hover {
      border-color: transparent;
   }

   .pagetop {
      width: 60px;
      opacity: 1;
      visibility: visible;
      position: static;
      margin: 50px auto 0;
   }
}

/*=============================================
   css for ie 11 
*=============================================*/
#fixed-sp {
   background: url("../img/shared/ft-fixed-bg_sp.png") no-repeat center top/cover;
   width: 100%;
   box-sizing: border-box;
   position: fixed;
   bottom: 0;
   left: 0;
   z-index: 100;
   opacity: 1;
   visibility: visible;
}

#fixed-sp.visible {
   opacity: 1;
   visibility: visible;
}

#fixed-sp ul {
   display: flex;
}

#fixed-sp .hamburger.is-active {
   background: url("../img/shared/ft-fixed_sp_04_close.png") no-repeat center/cover;
}

#fixed-sp .hamburger.is-active img {
   opacity: 0;
}

/* iPhone X */
@media only screen and (max-width: 767px) and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
   footer {
      padding-bottom: calc(env(safe-area-inset-bottom) + 21.6vw);
   }

   #fixed-sp {
      padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
   }
}

/* iPhone XR */
@media only screen and (max-width: 767px) and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
   footer {
      padding-bottom: calc(env(safe-area-inset-bottom) + 21.6vw);
   }

   #fixed-sp {
      padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
   }
}

/* iPhone 11 */
@media only screen and (max-width: 767px) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
   footer {
      padding-bottom: calc(env(safe-area-inset-bottom) + 21.6vw);
   }

   #fixed-sp {
      padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
   }
}

@media only screen and (max-width: 767px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
   footer {
      padding-bottom: calc(env(safe-area-inset-bottom) + 21.6vw);
   }

   #fixed-sp {
      padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
   }
}

@media only screen and (max-width: 767px) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
   footer {
      padding-bottom: calc(env(safe-area-inset-bottom) + 21.6vw);
   }

   #fixed-sp {
      padding-bottom: calc(env(safe-area-inset-bottom) - 0px);
   }
}

/* --- --- */
/*=============================================
   Custom
*=============================================*/
.pc {
   display: none;
}

.sp {
   display: block;
}

@media only screen and (min-width: 768px) {
   .pc {
      display: block;
   }

   .sp {
      display: none;
   }
}

/* -- -- */
.img-shadow {
   box-shadow: 0px 0px 22px 7.83px rgba(0, 0, 0, 0.18);
}

.text-shadow {
   text-shadow: 8px 11px 52px rgba(0, 0, 0, 0.3);
}

.cl-red {
   color: #cf2d2d;
}

.cl-brown {
   color: #34332d;
}

.cl-yellow {
   color: #b29257;
}

.cl-white {
   color: #f3ece9;
}

.cl-black {
   color: #000;
}

.cl-orange {
   color: #ca3921;
}

.txt-c {
   text-align: center;
}

.txt-r {
   text-align: right;
}

.uppercase {
   text-transform: uppercase;
}

a {
   transition: all 0.3s;
}

a img {
   transition: all 0.3s;
}

a:hover {
   text-decoration: none;
}

@media only screen and (min-width: 768px) {
   a:hover {
      opacity: 0.7;
   }
}

.img-cover {
   -o-object-fit: cover;
   object-fit: cover;
   width: 100%;
   height: 100%;
}

.ovh {
   overflow: hidden;
}

/* -- slick -- */
.slick-arrow {
   display: block;
   background: transparent;
   border: 0;
   font-size: 0;
   cursor: pointer;
   position: absolute;
   z-index: 1;
}

.slick-arrow:before {
   content: '';
   width: 0;
   height: 0;
   border-style: solid;
   border-color: transparent;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.slick-dots {
   display: flex;
}

.slick-dots li {
   display: block;
   font-size: 0;
   cursor: pointer;
   position: relative;
}

.slick-dots button {
   font-size: 0;
   background: transparent;
   display: block;
   width: 100%;
   height: 100%;
   border: 0;
   background-color: #000;
   -webkit-appearance: none;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
   cursor: pointer;
   border-radius: 0;
   transition: all 0.3s;
   opacity: 0.25;
}

.slick-dots .slick-active button {
   opacity: 1;
}

@media only screen and (max-width: 767px) {
   .slick-arrow {
      width: 6vw;
      height: 6vw;
   }

   .slick-prev {
      left: 0;
   }

   .slick-next {
      right: 0;
   }
}

@media only screen and (min-width: 768px) {
   .slick-arrow {
      width: 20px;
      height: 20px;
   }

   .slick-arrow:hover {
      opacity: 0.7;
   }

   .slick-dots li button:hover {
      opacity: 1;
   }
}

/* -- -- */
.button {
   position: relative;
}

.button a,
.button button {
   display: inline-flex;
   justify-content: center;
   align-items: center;
   border: 1px solid rgba(0, 0, 0, 0.35);
   font-weight: 500;
   letter-spacing: 0.12em;
   text-align: center;
   position: relative;
   z-index: 1;
   box-sizing: border-box;
}

.btn-reserve a:before {
   content: '';
   width: 17px;
   height: 12px;
   background: url("../img/shared/icon-calendar.png") no-repeat center/100% auto;
   position: absolute;
   top: 0;
   left: 0;
}

@media only screen and (max-width: 767px) {
   .button {
      text-align: center;
   }

   .button a,
   .button button {
      width: 100%;
      max-width: 72vw;
      height: 12vw;
      font-size: 3.5vw;
      line-height: 2;
   }

   .button button {
      background-color: transparent;
      color: #353535;
   }

   .button a:after,
   .button button:after {
      content: '';
      width: 6vw;
      height: 0;
      border-top: 1px solid #000;
      position: absolute;
      top: 50%;
      right: 0px;
      transition: all 0.3s;
   }

   .button.reserve a {
      gap: 2vw;
   }

   .button.reserve a:before {
      content: '';
      display: block;
      width: 5vw;
      height: 3.7vw;
      background: url("../img/shared/icon-calendar.png") no-repeat center/100% auto;
   }
}

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

   .button a,
   .button button {
      width: 222px;
      height: 34px;
      font-size: 14px;
      line-height: 20px;
      padding-right: 20px;
   }

   .button.popup_web_btn a {
      font-size: 12px;
   }

   .button button {
      background-color: transparent;
      color: #353535;
   }

   .button a:after,
   .button button:after {
      content: '';
      width: 20px;
      height: 0;
      border-top: 1px solid #000;
      position: absolute;
      top: 50%;
      right: 0px;
      transition: all 0.3s;
   }

   .button a:hover:after,
   .button button:hover:after {
      transform: translateX(10px);
   }

   .button.reserve a {
      gap: 10px;
   }

   .button.reserve a:before {
      content: '';
      display: block;
      width: 17px;
      height: 12px;
      background: url("../img/shared/icon-calendar.png") no-repeat center/100% auto;
   }
}

/* -- -- */
.d-flex {
   display: flex;
}

/* --- --- */
@-webkit-keyframes fadeUpBlur {
   0% {
      filter: blur(10px);
      opacity: 0;
      -webkit-transform: translate3d(0, 30px, 0);
      transform: translate3d(0, 30px, 0);
   }

   to {
      filter: blur(0);
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
   }
}

@keyframes fadeUpBlur {
   0% {
      filter: blur(10px);
      opacity: 0;
      -webkit-transform: translate3d(0, 30px, 0);
      transform: translate3d(0, 30px, 0);
   }

   to {
      filter: blur(0);
      opacity: 1;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
   }
}

.fadeUpBlur {
   -webkit-animation-name: fadeUpBlur;
   animation-name: fadeUpBlur;
   animation-duration: 1.5s;
   animation-delay: 0.3s;
}

/* --- --- */
@media only screen and (max-width: 767px) {
   .h-sub {
      display: inline-block;
      font-weight: 200;
      font-size: 3vw;
      letter-spacing: 0.26em;
      line-height: 1.5;
      opacity: 0.75;
      padding-bottom: 4vw;
   }

   .h-sub:first-letter {
      font-weight: 700;
      font-size: 4vw;
      text-transform: uppercase;
   }

   .price {
      font-weight: 200;
      font-size: 4vw;
      letter-spacing: 0.2em;
      line-height: 1.5;
   }

   .price span {
      font-size: 4.8vw;
   }

   .tel {
      font-weight: 500;
      letter-spacing: 0.12em;
      line-height: 1.5;
      text-align: center;
   }

   .tel .number {
      font-size: 6vw;
      letter-spacing: 0.12em;
   }

   .tel .number:before {
      content: "tel.";
      font-size: 4vw;
   }
}

@media only screen and (min-width: 768px) {
   .h-sub {
      display: inline-block;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.26em;
      opacity: 0.75;
   }

   .h-sub:first-letter {
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
   }

   .price {
      font-weight: 200;
      font-size: 18px;
      letter-spacing: 0.2em;
   }

   .price span {
      font-size: 22px;
   }

   .tel {
      font-weight: 200;
      letter-spacing: 0.12em;
      line-height: 25px;
      text-align: center;
   }

   .tel .number {
      font-size: 22px;
      letter-spacing: 0.12em;
   }

   .tel .number:before {
      content: "tel.";
      font-size: 13px;
   }
}

/* -- -- */
.txt {
   text-align: justify;
}

@media only screen and (max-width: 767px) {
   .txt br {
      display: none;
   }
}

@media only screen and (min-width: 768px) {
   .txt-c .txt {
      text-align: center;
   }
}

/* -- -- */
.list-menu {
   text-align: left;
}

.list-menu dl {
   display: flex;
   border-bottom: 1px solid rgba(0, 0, 0, 0.2);
   padding: 0 0 10px;
}

.list-menu dl+dl {
   padding-top: 10px;
}

.list-menu dl dt {
   flex: 1 0 0;
}

.list-menu dl dd {
   text-align: right;
   display: flex;
   align-items: end;
}

.list-menu .ttl {
   font-weight: 200;
   background-color: #080605;
   color: #fff;
   text-align: center;
}

@media only screen and (max-width: 767px) {
   .list-menu {
      display: flex;
      flex-direction: column;
      gap: 12vw;
   }

   .list-menu .item+.item {
      padding-top: 12vw;
   }

   .list-menu .ttl {
      margin-bottom: 15px;
      padding: 16px 10px;
   }
}

@media only screen and (min-width: 768px) {
   .list-menu {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
      gap: 35px 20px;
   }

   .list-menu .item+.item {
      padding-top: 35px;
   }

   .list-menu .ttl {
      margin-bottom: 15px;
      padding: 16px 10px;
   }
}

/* -- -- */
[data-remodal-target] {
   cursor: pointer;
}

.remodal-overlay {
   background-color: rgba(0, 0, 0, 0.72);
}

.popup-body {
   background: url("../img/shared/body-bg.jpg") repeat center top;
   font-size: 14px;
   line-height: 24px;
}

@media only screen and (max-width: 767px) {
   .remodal-wrapper {
      padding: 8vw 4vw;
   }

   .popup-body {
      padding: 12vw 0;
   }

   .popup-body h2 {
      max-width: 52vw;
      margin: 0 auto;
   }

   .popup-body .note,
   .popup-body .list-menu {
      padding-top: 8vw;
   }

   .popup-body .button {
      padding-top: 12vw;
   }

   .remodal-close-top {
      position: absolute;
      top: 2vw;
      right: 2vw;
      bottom: 2vw;
   }

   button.remodal-close.top {
      background: url("../img/index/popup-close.png") no-repeat center/100% auto;
      width: 6vw;
      height: 4.8vw;
   }

   button.remodal-close.top {
      position: sticky;
      top: 0;
      right: 0;
   }
}

@media only screen and (min-width: 768px) {
   .remodal-close-top {
      position: absolute;
      top: 35px;
      right: 25px;
      bottom: 35px;
   }

   button.remodal-close.top {
      background: url("../img/index/popup-close.png") no-repeat center/100% auto;
      width: 43px;
      height: 36px;
   }

   button.remodal-close.top {
      position: sticky;
      top: 0;
      right: 0;
   }

   .remodal-wrapper {
      padding: 100px 20px;
   }

   .remodal {
      max-width: 1100px;
   }

   .popup-body {
      padding: 120px 0;
   }

   .popup-body h2 span {
      padding-bottom: 15px;
   }

   .popup-body .note {
      padding-top: 60px;
   }

   .popup-body .list-menu {
      padding-top: 60px;
   }

   .popup-body .button {
      padding-top: 60px;
   }

   .popup-body .button button {
      width: 285px;
      height: 48px;
      padding-right: 0;
   }
}

.ja_not a {
   text-align: center;
   display: inline-block;
   line-height: 1.5em;
   height: 60px;
   padding-top: 10px;
   padding-left: 10px;
}

.ja_not a:before {
   position: absolute;
   content: '';
   display: block;
   width: 17px;
   height: 12px;
   left: 27px;
   top: 23px;
}

.ja_not a:first-child {
   line-height: 0.6em;
   padding-left: 11px;
   padding-top: 15px;
}

@media only screen and (max-width: 768px) {
   .popup_web .button {
      padding-top: 6vw;
   }
}

.tate {
   writing-mode: horizontal-tb !important;
   text-orientation: mixed !important;
   display: inline-block;
   transform: none !important;
   direction: ltr !important;
   margin: -15px -4px -10px 0px;
}

@media only screen and (max-width: 768px) {
   .tate {
      margin: -3vw -1vw -2vw 0;
   }
}