<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.headerMenu {
  position: absolute;
  left: 0;
  top: 0;
  padding: 2vw 0 4vw 0;
  width: 100%;
  z-index: 99;
}

.slideimg {
  position: absolute;
  inset: 0; /*親要素内にフルサイズで配置*/
  opacity: 0;
  background-size: cover; /* 画像をスライド全体にカバー */
  animation: slideAnime 15s infinite; /* 15秒で1サイクル */
}
@keyframes slideAnime {
  0%,
  30%,
  100% {
    opacity: 0;
  } /* スライドの非表示タイミング */
  10%,
  20% {
    opacity: 1;
  } /* スライドの表示タイミング */
}

.slideimg:nth-of-type(1) {
  background-image: url(../images/top/slider1.webp);
  animation-delay: 0s;
  background-position: 100%;
}
.slideimg:nth-of-type(2) {
  background-image: url(../images/top/slider2.webp);
  animation-delay: 3s;
  background-position: 10%;
}
.slideimg:nth-of-type(3) {
  background-image: url(../images/top/slider1.webp);
  animation-delay: 6s;
  background-position: 0%;
}
.slideimg:nth-of-type(4) {
  background-image: url(../images/top/slider2.webp);
  animation-delay: 9s;
  background-position: 60%;
}
.slideimg:nth-of-type(5) {
  background-image: url(../images/top/slider1.webp);
  animation-delay: 12s;
  background-position: 90%;
}

body.plan {
  position: relative;
  background: url(../images/plan/kvPLan.webp);
  width: 100%;
  padding-top: calc(893 / 1920 * 100%);
  /*calc(画像の高さ / 画像の幅 * widthの値)*/
  background-size: contain;
  background-repeat: no-repeat;
}
body.equipment {
  position: relative;
  background: url(../images/equipment/kvEq.webp);
  width: 100%;
  padding-top: calc(893 / 1920 * 100%);
  /*calc(画像の高さ / 画像の幅 * widthの値)*/
  background-size: contain;
  background-repeat: no-repeat;
}

body.location {
  position: relative;
  background: url(../images/location/kvLo.webp);
  width: 100%;
  padding-top: calc(893 / 1920 * 100%);
  /*calc(画像の高さ / 画像の幅 * widthの値)*/
  background-size: contain;
  background-repeat: no-repeat;
}

.headerMenu .nav-link span:nth-child(1) {
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  margin-bottom: 0.5rem;
  letter-spacing: 0.35rem;
  font-weight: 400;
  display: block;
  font-size: 1.05rem;
}
.headerMenu .nav-link span:nth-child(2) {
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  letter-spacing: 0;
  font-weight: 300;
  display: block;
  font-size: 0.9rem;
}
.offcanvas-title a {
  font-size: 1.063rem;
  color: #000;
  letter-spacing: 0.2rem;
  font-family: "trajan-pro-3", serif;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-top: 0.75rem;
}
.nav-item {
  white-space: nowrap;
  margin-left: 2.5rem;
}

body.topPage .navbar-brand,
body.plan .navbar-brand {
  background: url(../images/common/logo/SVG/site-logoWhite.svg);
  width: 30vw;
  height: 0;
  padding-top: calc(221 / 460 * 100%);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  aspect-ratio: 16 / 9;
  margin: 20px;
}
body.equipment .navbar-brand,
body.location .navbar-brand {
  background: url(../images/common/logo/SVG/site-logo.svg);
  width: 30vw;
  height: 0;
  padding-top: calc(221 / 460 * 100%);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  aspect-ratio: 16 / 9;
  margin: 20px;
}
.navbar-brand2 {
  font-size: clamp(1.1rem, calc(-0.14444444444444438rem + 2.5925925925925926vw), 1.6rem);
  letter-spacing: 0.5rem;
  font-family: "trajan-pro-3", serif;
}

.offcanvas-header {
  justify-content: end;
}
.navbar-brand:focus,
.navbar-brand:hover {
  opacity: 0.8;
}

.nav-item a {
  transition: 0.5s all;
}

.nav span:nth-child(1) {
  display: block;
  text-align: center;
  font-family: "adobe-garamond-pro", serif;
  font-style: normal;
}
.nav span:nth-child(2) {
  display: block;
  text-align: center;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-style: normal;
  font-size: 90%;
}

.navbar-toggler {
  border: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  padding: 0.1rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
  transform: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.comingSoon {
  position: relative;
  pointer-events: none;
}

.comingSoon a::before {
  content: "coming soom";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70% !important;
  color: #fff;
  background: #384e65;
  display: block;
  z-index: 1;
  text-align: center;
  padding: 3px 0 4px;
  font-size: 0.7rem;
  opacity: 0.9;
}

/*----------------------------------------------------
FOOTER
----------------------------------------------------*/
footer {
  font-family: "kozuka-gothic-pro", "小塚ゴシック pro", sans-serif;
}
.footer {
  color: #fff;
  background: #534741;
}
.text-entry {
  color: #f15a24;
}
.footerTel {
  color: #ff0000;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
  /*font-size: 3rem;
  letter-spacing: 0.1rem;*/
}

.footerLink .arrow {
  position: relative;
}
.footerLink .arrow::before {
  content: "";
  font-weight: 900;
  color: #fff;
  margin-right: 1.5rem;
  text-align: center;
  display: inline-block;
  background: url("../images/common/footerArrow.webp");
  height: 18px;
  width: 19px;
  background-repeat: no-repeat;
  background-size: contain;
}
.footerLink .col:nth-of-type(1),
.footerLink .col:nth-of-type(2) {
  border-right: 1px solid #fff;
}

.footerLink a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /*flex-direction: column;*/
}
.footerLink a div:nth-of-type(1) {
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  letter-spacing: 0.4rem;
  margin-bottom: 0.2rem;
}
.footerLink a div:nth-of-type(2) {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.entryBox {
  margin: 8vw auto;
}
.entryBtn {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  background: #f15a24;
  width: 100%;
  max-width: 290px;
  padding: 1rem;
  margin: 1rem auto 1rem auto;
  color: #fff;
}
.entryBtn:hover {
  background: #f15a24;
}
.entryBtn2 {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.25rem;
  text-decoration: none;
  text-align: center;
  justify-content: start;
  color: #fff;
}
.entryBtn2::before {
  display: inline-block;
  content: "●";
  font-size: 0.6rem;
  margin-right: 1.5rem;
}

.detailLink {
  text-decoration: none;
  color: #534741;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
  font-family: "shippori-mincho", sans-serif;
  font-family: "kozuka-gothic-pro", "小塚ゴシック pro", sans-serif;
  font-weight: 500;
}
.detailLink::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}
.detailBtn {
  border-radius: 0;
  border: 1px solid #000;
  background: #fff;
  font-size: 1rem;
  font-family: "kozuka-gothic-pro", "小塚ゴシック pro", sans-serif;
  padding: 1rem 3rem;
  letter-spacing: 0.1rem;
}
.shopinfo {
  margin: auto;
  text-align: center;
}
/*----------------------------------------------------
FOOTERここまで
----------------------------------------------------*/
/*----------------------------------------------------
ページトップ
----------------------------------------------------*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0%;
  bottom: 11%;
  /*background: #3f98ef;*/
  background: #3f98ef;
  opacity: 0.6;
  border-radius: 50%;
}

#page_top:hover {
  background: #2965a0;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*----------------------------------------------------
ページトップここまで
----------------------------------------------------*/

/*----------------------------------------------------
サイドメニュー
----------------------------------------------------*/
.sideMenu {
  width: 60px;
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 10;
}

.sideMenu li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*font-family: "kozuka-gothic-pro", "小塚ゴシック pro", sans-serif;*/
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: 0.5s;
  padding: 0.75rem 0 1rem 0;
}
.sideMenu li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sideMenu li:nth-child(1) {
  border: 3px solid #534741;
}
.sideMenu li span {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.sideMenu li:nth-child(1) span {
  padding-top: 7px;
  margin-top: 7px;
  border-top: 1px solid #534741;
}

.sideMenu li:nth-child(2) span {
  padding-top: 7px;
  margin-top: 7px;
  border-top: 1px solid #fff;
}

.sideMenu li:nth-child(1) {
  color: #534741;
  background: #fff;
}

.sideMenu li:nth-child(2) {
  background: #534741;
  color: #fff;
}
.sideMenu li:hover {
  filter: brightness(1.25);
}

.request li:hover {
  opacity: 1;
  /*filter: brightness(80%);*/
  background: #682150;
  cursor: pointer;
}
.request {
  margin: auto;
}
.request li {
  color: #fff;
  /*background: #ce9596;*/
  background: #534741;
  padding: 0.75rem;
  text-align: center;
  margin-bottom: 0.75rem;
  display: block;
  margin: 1.25rem 0.5rem 0 0.5rem;
  width: 48%;
}

body.topPage .navbar-toggler-icon,
body.plan .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/*----------------------------------------------------
サイドボタンここまで
----------------------------------------------------*/

@media screen and (min-width: 768px) {
  .slider-container {
    position: relative;
    padding-top: calc(893 / 1920 * 100%);
    overflow: hidden;
  }
  .slideimg:before {
    position: absolute;
    display: block;
    content: "";
    background: url(../images/top/topIcon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    height: 13vw;
    width: 46vw;
    right: 8vw;
    top: 64%;
  }
	.slideimg:after {
        position: absolute;
        display: block;
        content: "";
        background: url(https://www.jyu-g.co.jp/special/nightTour/images/nighttourIcon.webp);
        background-size: contain;
        background-repeat: no-repeat;
        height: 13vw;
        width: 96vw;
        right: 0;
        bottom: 4vw;
  }
}

@media screen and (min-width: 991px) {
  .offcanvas-body {
    margin-left: auto;
  }
  .topPage .headerMenu .nav-link,
  .plan .headerMenu .nav-link {
    position: relative;
    color: #fff;
  }
}
@media screen and (max-width: 991px) {
  .nav-item {
    width: 92%;
    margin: 0 auto 1.25rem auto;
    padding-top: 0;
  }
  .offcanvas-body {
    padding-top: 0;
    width: 95%;
    margin: auto;
  }
  .headerMenu .nav-link span:nth-child(1) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  body.topPage .navbar-brand {
    background: url(../images/common/logo/SVG/site-logoWhite.svg);
    width: 80vw;
    height: 0;
    padding-top: calc(221 / 460 * 100%);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    aspect-ratio: 16 / 9;
    margin: 20px;
  }

  body.plan .navbar-brand,
  body.equipment .navbar-brand,
  body.location .navbar-brand {
    display: none;
  }
  .slider-container {
    position: relative;
    padding-top: calc(1200 / 876 * 100%);
    overflow: hidden;
  }

  .slideimg:before {
    position: absolute;
    display: block;
    content: "";
    background: url(../images/top/topIcon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 24vw;
    width: 85vw;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    top: 77%;
  }
	
	.slideimg:after {
        position: absolute;
        display: block;
        content: "";
        background: url(https://www.jyu-g.co.jp/special/nightTour/images/nighttourIcon.webp);
        background-size: contain;
        background-repeat: no-repeat;
        height: 20vw;
        width: 38vw;
        right: 0;
        top: 60%;
  }
	
  .headerMenu {
    padding: 4vw 0 6vw 0;
  }
  .footerLink a div:nth-of-type(1) {
    font-size: 1rem;
  }
  .footerLink .arrow::before {
    content: "";
    font-weight: 900;
    color: #fff;
    margin-right: 1rem;
    text-align: center;
    display: inline-block;
    background: url("../images/common/footerArrow.webp");
    height: 10px;
    width: 10px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .headerMenu .nav-item a {
    border-left: 0;
  }
  .footerLink a {
    justify-content: start;
  }
  .footerLink a div:nth-of-type(1) {
    letter-spacing: 0.1rem;
  }

  .offcanvas-title a {
    margin-left: 0.5rem;
  }
  .headerMenu .nav-item a {
    font-size: 0.9rem;
  }

  .footerLink .col:nth-of-type(3) {
    border-right: 0;
  }
  .footerLink .col:nth-of-type(1) {
    border-left: 0;
  }

  .offcanvas,
  .offcanvas.offcanvas-end.show {
    width: 80% !important;
  }
  /*calc(画像の高さ / 画像の幅 * widthの値)*/
  /* body.topPage {
    position: relative;
    background: url(../images/top/kvTopSP.webp);
    width: 100%;
    padding-top: calc(1200 / 876 * 100%);
    
    background-size: contain;
    background-repeat: no-repeat;
  }*/
  body.plan {
    position: relative;
    background: url(../images/plan/kvPLanSP.webp);
    width: 100%;
    padding-top: calc(856 / 876 * 100%);
    /*calc(画像の高さ / 画像の幅 * widthの値)*/
    background-size: contain;
    background-repeat: no-repeat;
  }
  body.equipment {
    position: relative;
    background: url(../images/equipment/kvEqSP.webp);
    width: 100%;
    padding-top: calc(856 / 876 * 100%);
    /*calc(画像の高さ / 画像の幅 * widthの値)*/
    background-size: contain;
    background-repeat: no-repeat;
  }

  body.location {
    position: relative;
    background: url(../images/location/kvLoSP.webp);
    width: 100%;
    padding-top: calc(856 / 876 * 100%);
    /*calc(画像の高さ / 画像の幅 * widthの値)*/
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 630px) {
  .offcanvas-body {
    width: 100%;
  }
  .nav-item a {
    border-left: 0;
  }
  .nav-item:nth-last-child(1) a {
    border-right: 0;
  }

  .headerMenu .nav-link span:nth-child(1) {
    font-size: 1rem;
  }

  .headerMenu .nav-link span:nth-child(2) {
    font-size: 0.85rem;
  }
}
</pre></body></html>