@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.font-garamond {
  font-family: "Cormorant Garamond", serif;
}

.font-newsreader {
  font-family: "Newsreader", serif;
}

.font-zenmincho {
  font-family: "Zen Old Mincho", serif;
}

html {
  font-size: 62.5%;
}

body {
  background: #d2d1b8;
  line-height: 1.6;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.03em;
  font-size: 14px;
  color: #1d1914;
  overflow-x: hidden;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
::-moz-selection {
  background: #333;
  color: #fff;
}
::selection {
  background: #333;
  color: #fff;
}

a {
  color: #000;
}

img {
  vertical-align: top;
}

ul, ol {
  list-style: none;
}

:root {
  --vw: 1vw; /* 初期値（JSで上書きされる） */
}

.mask-slide-target {
  clip-path: polygon(0 0%, 0% 0%, 0% 100%, 0% 100%);
  opacity: 1;
}

.fadeup-slide-target {
  opacity: 0;
  -webkit-transform: translateY(calc(0.03125 * var(--vw)));
          transform: translateY(calc(0.03125 * var(--vw)));
}
@media screen and (max-width: 767px) {
  .fadeup-slide-target {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.intro-anim {
  opacity: 0;
}
.intro-anim.blur-in {
  opacity: 1;
}
.intro-anim.blur-in .kv-box {
  -webkit-animation: anim-blur 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
          animation: anim-blur 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@-webkit-keyframes anim-blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(25px);
            filter: blur(25px);
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes anim-blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(25px);
            filter: blur(25px);
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.effect {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .effect.anim-up-delay {
    -webkit-animation: anim-up-delay 0.6s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
            animation: anim-up-delay 0.6s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
  }
}
@media screen and (max-width: 767px) {
  .effect.anim-up-delay {
    -webkit-animation: anim-up-delay-sp 0.6s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
            animation: anim-up-delay-sp 0.6s 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
  }
}
@-webkit-keyframes anim-up-delay {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-up-delay {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes anim-up-delay-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-up-delay-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .effect.anim-up {
    -webkit-animation: anim-up 0.6s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
            animation: anim-up 0.6s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
  }
}
@media screen and (max-width: 767px) {
  .effect.anim-up {
    -webkit-animation: anim-up-sp 0.6s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
            animation: anim-up-sp 0.6s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards 1;
  }
}
@-webkit-keyframes anim-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(calc(0.03125 * var(--vw)));
            transform: translateY(calc(0.03125 * var(--vw)));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(calc(0.03125 * var(--vw)));
            transform: translateY(calc(0.03125 * var(--vw)));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes anim-up-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes anim-up-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}
header .btn-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .btn-language li {
  position: relative;
  width: 60px;
  height: 60px;
  background: #000;
}
header .btn-language li.enabled {
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  header .btn-language li {
    -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  header .btn-language li:hover {
    background: #474742;
  }
  header .btn-language li:hover.en {
    background: #e0dfca;
  }
}
@media screen and (max-width: 768px) {
  header .btn-language li {
    width: calc(0.12 * var(--vw));
    height: calc(0.12 * var(--vw));
    min-width: 0;
  }
}
header .btn-language li.is-select a:after {
  opacity: 1;
}
header .btn-language li.en {
  background: #d3d0b5;
}
header .btn-language li.en a {
  color: #1d1914;
}
header .btn-language li.en a:after {
  background: #1d1914;
}
header .btn-language li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Newsreader", serif;
  color: #d3d0b5;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.14em;
  line-height: 62px;
}
@media screen and (max-width: 768px) {
  header .btn-language li a {
    font-size: calc(0.04 * var(--vw));
    line-height: calc(0.128 * var(--vw));
    letter-spacing: 0.1em;
  }
}
header .btn-language li a:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #d3d0b5;
  border-radius: 50%;
  bottom: 9px;
  left: calc(50% - 2px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  header .btn-language li a:after {
    width: calc(0.0093333333 * var(--vw));
    height: calc(0.0093333333 * var(--vw));
    bottom: calc(0.0186666667 * var(--vw));
  }
}

#wrap {
  position: relative;
  width: 100%;
}
#wrap main {
  position: relative;
  width: 100%;
  display: block;
  background: #d3d0b5;
}
#wrap main .sec-main {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 480px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main {
    height: calc(100dvh - 0.1333333333 * var(--vw));
  }
}
#wrap main .sec-main .kv-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #d3d0b5;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .kv-container {
    height: 100%;
  }
}
#wrap main .sec-main .kv-container .kv-left, #wrap main .sec-main .kv-container .kv-right {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
#wrap main .sec-main .kv-container .kv-left .kv-box, #wrap main .sec-main .kv-container .kv-right .kv-box {
  position: relative;
  width: 100%;
  height: 105%;
  background: url("../img/img_kv_pre.jpg") center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .kv-container .kv-left .kv-box, #wrap main .sec-main .kv-container .kv-right .kv-box {
    background: url("../img/img_kv_pre_sp.jpg") center center no-repeat;
    background-size: cover;
  }
}
#wrap main .sec-main .kv-container .kv-left.kv-right .kv-box, #wrap main .sec-main .kv-container .kv-right.kv-right .kv-box {
  background: url("../img/img_kv_prema.jpg") center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .kv-container .kv-left.kv-right .kv-box, #wrap main .sec-main .kv-container .kv-right.kv-right .kv-box {
    background: url("../img/img_kv_prema_sp.jpg") center center no-repeat;
    background-size: cover;
  }
}
#wrap main .sec-main .kv-container .kv-left .copy, #wrap main .sec-main .kv-container .kv-right .copy {
  position: absolute;
  top: 10.7%;
  left: 0;
  width: 100%;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .kv-container .kv-left .copy, #wrap main .sec-main .kv-container .kv-right .copy {
    top: 15%;
  }
}
#wrap main .sec-main .kv-container .kv-left .copy.prema img, #wrap main .sec-main .kv-container .kv-right .copy.prema img {
  max-width: 340px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .kv-container .kv-left .copy.prema img, #wrap main .sec-main .kv-container .kv-right .copy.prema img {
    width: calc(0.4266666667 * var(--vw));
    max-width: none;
  }
}
#wrap main .sec-main .kv-container .kv-left .copy img, #wrap main .sec-main .kv-container .kv-right .copy img {
  max-width: 300px;
  width: 70.5882352941%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .kv-container .kv-left .copy img, #wrap main .sec-main .kv-container .kv-right .copy img {
    width: calc(0.3813333333 * var(--vw));
    max-width: none;
  }
}
#wrap main .sec-main .center-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#wrap main .sec-main .center-container .copy-box {
  position: absolute;
  top: 38%;
  width: 100%;
}
#wrap main .sec-main .center-container .copy-box p {
  width: 100%;
  text-align: center;
}
#wrap main .sec-main .center-container .copy-box img {
  min-width: 20px;
  width: 1.6%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .center-container .copy-box img {
    width: 4.3%;
    min-width: 0;
  }
}
#wrap main .sec-main .center-container .name {
  position: absolute;
  left: 0;
  bottom: 2.6%;
  width: 100%;
  text-align: center;
}
#wrap main .sec-main .center-container .name .inner {
  position: relative;
  left: 0.6%;
  width: 100%;
}
#wrap main .sec-main .center-container .name .inner img {
  max-width: 354px;
  width: 80%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .center-container .name .inner img {
    width: calc(0.48 * var(--vw));
  }
}
#wrap main .sec-main .loading {
  position: absolute;
  top: 50%;
  left: calc(50% - 110px);
  width: 220px;
}
#wrap main .sec-main .loading img {
  opacity: 0;
}
#wrap main .sec-main .loading.active img {
  opacity: 1;
  -webkit-transition: all 0.2s 0.05s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.2s 0.05s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 768px) {
  #wrap main .sec-main .loading {
    top: 50%;
    left: calc(50% - 0.3733333333 * var(--vw) / 2);
    width: calc(0.3733333333 * var(--vw));
  }
}
#wrap main .sec-main .loading.fade-out {
  -webkit-transition: all 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
#wrap main .sec-main .loading .inner img {
  width: 100%;
  height: auto;
}
#wrap main .sec-tour {
  position: relative;
  background: #d3d0b5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100vh;
}
#wrap main .sec-tour a {
  color: #0079be;
}
#wrap main .sec-tour nav.fixed-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  overflow: hidden;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav {
    height: calc(0.1333333333 * var(--vw));
  }
}
#wrap main .sec-tour nav.fixed-nav ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
#wrap main .sec-tour nav.fixed-nav ul li {
  position: relative;
  width: 50%;
  height: 100%;
  text-align: center;
  background: #474642;
  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;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav ul li.attention .icon {
    -webkit-animation: icon-attention 1.8s ease-out 2;
            animation: icon-attention 1.8s ease-out 2;
  }
}
@media screen and (max-width: 767px) {
  #wrap main .sec-tour nav.fixed-nav ul li.attention .icon {
    -webkit-animation: icon-attention-sp 1.8s ease-out 2;
            animation: icon-attention-sp 1.8s ease-out 2;
  }
}
@-webkit-keyframes icon-attention {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  10% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  20% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  30% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}
@keyframes icon-attention {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  10% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  20% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  30% {
    -webkit-transform: translateY(8px) rotate(90deg);
            transform: translateY(8px) rotate(90deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}
@-webkit-keyframes icon-attention-sp {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  10% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg);
  }
  20% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  30% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}
@keyframes icon-attention-sp {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  10% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg);
  }
  20% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  30% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg);
  }
  40% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}
@media screen and (min-width: 769px) {
  #wrap main .sec-tour nav.fixed-nav ul li {
    -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #wrap main .sec-tour nav.fixed-nav ul li:hover {
    background: #5b5b55;
  }
  #wrap main .sec-tour nav.fixed-nav ul li:hover.pre {
    background: #b09270;
  }
  #wrap main .sec-tour nav.fixed-nav ul li:hover span.icon {
    -webkit-transform: rotate(90deg) translateX(10px);
            transform: rotate(90deg) translateX(10px);
  }
}
#wrap main .sec-tour nav.fixed-nav ul li.pre {
  background: #977756;
}
#wrap main .sec-tour nav.fixed-nav ul li span {
  position: relative;
  display: block;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav ul li span {
    padding: 0 !important;
  }
}
#wrap main .sec-tour nav.fixed-nav ul li span.title {
  width: 264px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav ul li span.title {
    width: calc(0.3893333333 * var(--vw));
    position: relative;
    left: calc(-0.0133333333 * var(--vw));
  }
}
#wrap main .sec-tour nav.fixed-nav ul li span.title.pre {
  width: 228px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav ul li span.title.pre {
    width: calc(0.3333333333 * var(--vw));
  }
}
#wrap main .sec-tour nav.fixed-nav ul li span.icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 12px;
  margin-left: 12px;
  -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav ul li span.icon {
    position: absolute;
    top: calc(0.0506666667 * var(--vw));
    right: calc(0.0293333333 * var(--vw));
    width: calc(0.0213333333 * var(--vw));
    margin-left: calc(0.0213333333 * var(--vw));
  }
}
#wrap main .sec-tour nav.fixed-nav ul li span img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour nav.fixed-nav ul li span img {
    display: block;
  }
}
#wrap main .sec-tour h2 {
  position: relative;
  margin-top: 104px;
  font-size: 30px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour h2 {
    margin-top: calc(0.144 * var(--vw));
    font-size: calc(0.0506666667 * var(--vw));
    border-radius: 0;
  }
}
#wrap main .sec-tour h2:before {
  position: absolute;
  content: "";
  bottom: -16px;
  left: calc(50% - 12px);
  width: 24px;
  height: 1px;
  background: #1d1914;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour h2:before {
    bottom: calc(-0.032 * var(--vw));
    width: calc(0.04 * var(--vw));
    left: calc(50% - 0.04 * var(--vw) / 2);
    border-radius: 0;
  }
}
#wrap main .sec-tour .tour-container {
  width: calc(100% - 40px);
  margin: 80px auto 0;
  max-width: 1200px;
  background: #474642;
  border-radius: 20px;
  padding: 68px 0 80px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container {
    width: 100%;
    margin: calc(0.1333333333 * var(--vw)) auto 0;
    border-radius: 0;
    max-width: none;
    padding: calc(0.1333333333 * var(--vw)) 0 calc(0.1333333333 * var(--vw));
    overflow-x: hidden;
  }
}
#wrap main .sec-tour .tour-container.pre {
  background: #977756;
}
#wrap main .sec-tour .tour-container.pre .info-table .side {
  background: #977756 !important;
}
#wrap main .sec-tour .tour-container.pre .ticket-table .side-title {
  background: #977756 !important;
}
#wrap main .sec-tour .tour-container .ttl-box h3 {
  width: 416px;
  margin: 0 auto;
}
#wrap main .sec-tour .tour-container .ttl-box h3.pre {
  width: 372px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container .ttl-box h3.pre {
    width: calc(0.7066666667 * var(--vw));
  }
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container .ttl-box h3 {
    width: calc(0.7733333333 * var(--vw));
  }
  #wrap main .sec-tour .tour-container .ttl-box h3 img {
    display: block;
  }
}
#wrap main .sec-tour .tour-container .ttl-box h3 img {
  width: 100%;
  height: auto;
}
#wrap main .sec-tour .tour-container .ttl-box .lead-box {
  margin: 44px 0 0;
  font-size: 16px;
  color: #d3d0b5;
  text-align: center;
  line-height: 1.88;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container .ttl-box .lead-box {
    margin: calc(0.0773333333 * var(--vw)) auto 0;
    font-size: calc(0.0346666667 * var(--vw));
    width: calc(0.7733333333 * var(--vw));
    text-align: left;
    line-height: 1.6;
  }
}
#wrap main .sec-tour .tour-container .ttl-box .lead-box span.note {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container .ttl-box .lead-box span.note {
    text-align: left;
    font-size: calc(0.0293333333 * var(--vw));
    margin-top: calc(0.0133333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box {
  width: 84%;
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box {
    width: calc(0.9333333333 * var(--vw));
    margin: calc(0.0853333333 * var(--vw)) auto 0;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li {
  position: relative;
  background: #d3d0b5;
}
#wrap main .sec-tour .tour-container ul.tour-box > li:nth-child(n+2) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li:nth-child(n+2) {
    margin-top: calc(0.0533333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon {
  pointer-events: none;
  background: #717065;
}
#wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon .ttl-tour {
  background: #717065;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon .ttl-tour {
    padding: calc(0.024 * var(--vw)) calc(0.0333333333 * var(--vw)) calc(0.0266666667 * var(--vw)) calc(0.0333333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon .ttl-tour .text-box h4 {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon .ttl-tour .text-box h4 span {
    border: none;
    line-height: 1.3;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon .ttl-tour .text-box:after {
  position: absolute;
  content: "Coming soon";
  top: 10px;
  right: 32px;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  color: #f6f5e9;
  font-style: italic;
  z-index: 9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li.comingsoon .ttl-tour .text-box:after {
    font-size: calc(0.0533333333 * var(--vw));
    top: calc(0.0213333333 * var(--vw));
    right: calc(0.032 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour {
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  background: #d3d0b5;
}
@media screen and (min-width: 769px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour {
    -webkit-transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour:hover {
    background: #e0deca;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour.is-open .right-box .btn span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour.is-open .right-box .btn span:nth-child(2) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour {
    height: auto;
    padding: calc(0.024 * var(--vw)) calc(0.0333333333 * var(--vw)) calc(0.0293333333 * var(--vw)) calc(0.0333333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 {
    display: block;
    width: calc(0.7066666667 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 .ttl {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 .ttl {
    width: 100%;
    border-bottom: 1px solid #1d1914;
    font-size: calc(0.064 * var(--vw));
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 span {
    display: block;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 span.jp {
  display: inline-block;
  font-size: 16px;
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 span.jp {
    font-size: calc(0.032 * var(--vw));
    margin: calc(0.0133333333 * var(--vw)) 0 0;
  }
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .text-box h4 span.date {
    font-size: calc(0.032 * var(--vw));
    margin: 0 0 0;
    line-height: 1.4;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box p.date {
  position: relative;
  top: -1px;
  font-size: 16px;
  margin-right: 24px;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box .btn {
  position: relative;
  width: 60px;
  height: 60px;
  background: #1d1914;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box .btn {
    width: calc(0.0933333333 * var(--vw));
    height: calc(0.0933333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box .btn span {
  display: block;
  position: absolute;
  top: 29px;
  left: 15px;
  width: 31px;
  height: 1px;
  background: #d3d0b5;
  -webkit-transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box .btn span {
    width: calc(0.0493333333 * var(--vw));
    top: calc(0.0466666667 * var(--vw));
    left: calc(0.0213333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .ttl-tour .right-box .btn span:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box {
  position: relative;
  display: none;
  padding-bottom: 1px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box {
    padding-bottom: calc(0.0586666667 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box.is-open {
  display: block;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .tickets {
  padding: 15px 0 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .tickets {
    padding: calc(0.0213333333 * var(--vw)) 0 calc(0.0586666667 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others {
  position: relative;
  width: 80%;
  height: 450px;
  overflow-y: scroll;
  margin: 40px auto 40px;
  border-radius: 10px;
  background: #f6f5e9;
  padding: 28px 40px 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others.stage {
  height: auto;
  overflow-y: auto;
  padding: 10px 40px 10px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others.stage {
    padding: calc(0.0133333333 * var(--vw)) calc(0.0133333333 * var(--vw)) calc(0.0133333333 * var(--vw));
    height: auto;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others.stage .image-stage {
  max-width: 550px;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others.stage .image-stage {
    width: 100%;
    max-width: none;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others.stage .image-stage img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others {
    margin: calc(0.0533333333 * var(--vw)) auto calc(0.0533333333 * var(--vw));
    width: calc(0.8733333333 * var(--vw));
    border-radius: calc(0.016 * var(--vw));
    padding: calc(0.0533333333 * var(--vw)) calc(0.0426666667 * var(--vw)) calc(0.0666666667 * var(--vw));
    height: calc(0.8266666667 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others::-webkit-scrollbar {
  width: 20px;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others::-webkit-scrollbar-thumb {
  background: #c7c5b5;
  border-radius: 999px;
  border: 7px solid #f6f5e9;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others h5 {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others h5 {
    font-size: calc(0.0373333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents {
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents {
    margin-top: calc(0.032 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li:nth-child(n+2) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li:nth-child(n+2) {
    margin-top: calc(0.0666666667 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li h6 {
  color: #9f8e5a;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li h6 {
    font-size: calc(0.0346666667 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul {
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul {
    margin-top: calc(0.02 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li {
  position: relative;
  font-size: 14px;
  padding-left: 14px;
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li.no-list {
  padding-left: 0px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li.no-list {
    padding-left: 0;
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li.no-list:before {
  display: none;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li {
    font-size: calc(0.032 * var(--vw));
    line-height: 1.45;
    padding-left: calc(0.0293333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li:nth-child(n+2) {
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li:nth-child(n+2) {
    margin-top: calc(0.0053333333 * var(--vw));
  }
}
#wrap main .sec-tour .tour-container ul.tour-box > li .acc-box .others ul.contents > li ul li:before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
#wrap main .sec-tour .faq-box {
  position: relative;
  margin: 100px auto 0;
  max-width: 1000px;
  width: calc(100% - 40px);
  border: 2px solid #1d1914;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box {
    margin: calc(0.1706666667 * var(--vw)) auto 0;
    border: 1px solid #1d1914;
  }
}
#wrap main .sec-tour .faq-box .ttl-box {
  width: 100%;
  background: #f6f5e9;
  text-align: center;
  padding: 24px 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  border-bottom: 2px solid #1d1914;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .ttl-box {
    padding: calc(0.0186666667 * var(--vw)) 0 calc(0.0186666667 * var(--vw));
    font-size: calc(0.0666666667 * var(--vw));
    border-bottom: 1px solid #1d1914;
  }
}
#wrap main .sec-tour .faq-box .faq-container {
  display: none;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 0 56px 64px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container {
    padding: 0 calc(0.0426666667 * var(--vw)) calc(0.0666666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article {
  position: relative;
}
#wrap main .sec-tour .faq-box .faq-container article:first-child {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article:first-child {
    padding-top: calc(0.0586666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article:nth-child(n+2) {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #d3d0b5;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article:nth-child(n+2) {
    margin-top: calc(0.0746666667 * var(--vw));
    padding-top: calc(0.0586666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article h4 {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article h4 {
    font-size: calc(0.0373333333 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article > p.note {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article > p.note {
    margin-top: calc(0.0266666667 * var(--vw));
    font-size: calc(0.0266666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box {
  margin-top: 28px;
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article ul.qa-box {
    font-size: calc(0.0346666667 * var(--vw));
    letter-spacing: 0em;
    margin-top: calc(0.048 * var(--vw));
    line-height: 1.5;
  }
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li:nth-child(n+2) {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article ul.qa-box li:nth-child(n+2) {
    margin-top: calc(0.0586666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li h6 {
  position: relative;
  color: #a27648;
  padding-left: 24px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article ul.qa-box li h6 {
    font-size: calc(0.0346666667 * var(--vw));
    padding-left: calc(0.0426666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li h6:before {
  position: absolute;
  content: "Q.";
  top: 0;
  left: 0;
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer {
  position: relative;
  margin-top: 3px;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer {
    margin-top: calc(0.0133333333 * var(--vw));
    padding-left: calc(0.0426666667 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer:before {
  position: absolute;
  content: "A.";
  top: 0;
  left: 0;
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer .p-box p small {
  display: inline-block;
  font-size: 0.85em;
  margin: 4px 0 6px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer .p-box p small {
    margin: calc(0.0133333333 * var(--vw)) 0 calc(0.0133333333 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer .p-box p:nth-child(n+2) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .faq-container article ul.qa-box li .answer .p-box p:nth-child(n+2) {
    margin-top: calc(0.032 * var(--vw));
  }
}
#wrap main .sec-tour .faq-box .btn-acc {
  position: relative;
  background: #1d1914;
  color: #f6f5e9;
  text-align: center;
  font-family: "Cormorant Garamond", "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  padding: 22px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .btn-acc {
    font-size: calc(0.0373333333 * var(--vw));
    padding: calc(0.0373333333 * var(--vw)) 0 calc(0.0346666667 * var(--vw));
  }
}
@media screen and (min-width: 769px) {
  #wrap main .sec-tour .faq-box .btn-acc {
    -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #wrap main .sec-tour .faq-box .btn-acc:hover {
    background: #474742;
  }
}
#wrap main .sec-tour .faq-box .btn-acc.open:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#wrap main .sec-tour .faq-box .btn-acc:after {
  position: absolute;
  content: "";
  top: calc(50% - 7px);
  right: 28px;
  background: url("../img/icon_accoudion.png") center center no-repeat;
  width: 20px;
  height: 14px;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .faq-box .btn-acc:after {
    width: calc(0.04 * var(--vw));
    height: calc(0.028 * var(--vw));
    top: calc(50% - 0.016 * var(--vw));
    right: calc(0.0373333333 * var(--vw));
  }
}
#wrap main .sec-tour .banner-box {
  position: relative;
  margin: 100px auto 0;
  max-width: 700px;
  width: calc(100% - 40px);
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .banner-box {
    margin: calc(0.1733333333 * var(--vw)) auto 0;
    padding-bottom: calc(0.1733333333 * var(--vw));
    overflow-x: hidden;
  }
}
#wrap main .sec-tour .banner-box a {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #wrap main .sec-tour .banner-box a {
    -webkit-transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #wrap main .sec-tour .banner-box a:hover {
    opacity: 0.65;
  }
}
@media screen and (max-width: 768px) {
  #wrap main .sec-tour .banner-box a {
    border-radius: calc(0.0133333333 * var(--vw));
  }
}
#wrap main .sec-tour .banner-box a img {
  width: 100%;
  height: auto;
}
#wrap main .sec-shoplist {
  width: 100%;
  background: #e0dbc7;
  padding: 80px 0 100px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist {
    padding: calc(0.1653333333 * var(--vw)) 0 calc(0.1733333333 * var(--vw));
    overflow-x: hidden;
  }
}
#wrap main .sec-shoplist h2 {
  position: relative;
  font-size: 30px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist h2 {
    font-size: calc(0.0506666667 * var(--vw));
    border-radius: 0;
  }
}
#wrap main .sec-shoplist h2:before {
  position: absolute;
  content: "";
  bottom: -16px;
  left: calc(50% - 12px);
  width: 24px;
  height: 1px;
  background: #1d1914;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist h2:before {
    bottom: calc(-0.032 * var(--vw));
    width: calc(0.04 * var(--vw));
    left: calc(50% - 0.04 * var(--vw) / 2);
    border-radius: 0;
  }
}
#wrap main .sec-shoplist .disc-box {
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box {
    margin: calc(0.0933333333 * var(--vw)) auto 0;
    display: block;
  }
}
#wrap main .sec-shoplist .disc-box .image {
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .image {
    width: calc(0.44 * var(--vw));
    margin: 0 auto;
    border-radius: calc(0.0133333333 * var(--vw));
  }
}
#wrap main .sec-shoplist .disc-box .image img {
  width: 100%;
  height: auto;
}
#wrap main .sec-shoplist .disc-box .text-box {
  position: relative;
  margin-left: 70px;
  padding-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box {
    margin: calc(0.0853333333 * var(--vw)) auto 0;
    padding: 0;
  }
}
#wrap main .sec-shoplist .disc-box .text-box h4 {
  width: 172px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box h4 {
    width: calc(0.32 * var(--vw));
    margin: 0 auto;
  }
}
#wrap main .sec-shoplist .disc-box .text-box h4 img {
  width: 100%;
  height: auto;
}
#wrap main .sec-shoplist .disc-box .text-box .btn-box {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-box {
    margin: calc(0.064 * var(--vw)) auto 0;
    gap: calc(0.04 * var(--vw));
  }
}
#wrap main .sec-shoplist .disc-box .text-box .btn-buy, #wrap main .sec-shoplist .disc-box .text-box .btn-stream {
  position: relative;
  width: 240px;
  height: 70px;
  background: #1d1914;
  color: #f6f5e9;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
}
#wrap main .sec-shoplist .disc-box .text-box .btn-buy.btn-stream, #wrap main .sec-shoplist .disc-box .text-box .btn-stream.btn-stream {
  width: 280px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy.btn-stream, #wrap main .sec-shoplist .disc-box .text-box .btn-stream.btn-stream {
    width: calc(0.8 * var(--vw));
  }
}
#wrap main .sec-shoplist .disc-box .text-box .btn-buy.btn-stream.en, #wrap main .sec-shoplist .disc-box .text-box .btn-stream.btn-stream.en {
  width: 240px;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy.btn-stream.en, #wrap main .sec-shoplist .disc-box .text-box .btn-stream.btn-stream.en {
    width: calc(0.8 * var(--vw));
  }
}
@media screen and (min-width: 769px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy, #wrap main .sec-shoplist .disc-box .text-box .btn-stream {
    -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy:hover, #wrap main .sec-shoplist .disc-box .text-box .btn-stream:hover {
    background: #474742;
  }
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy:hover:after, #wrap main .sec-shoplist .disc-box .text-box .btn-stream:hover:after {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy, #wrap main .sec-shoplist .disc-box .text-box .btn-stream {
    width: calc(0.8 * var(--vw));
    height: calc(0.16 * var(--vw));
    margin: 0 auto;
    display: block;
    font-size: calc(0.04 * var(--vw));
    border-radius: calc(0.0133333333 * var(--vw));
  }
}
#wrap main .sec-shoplist .disc-box .text-box .btn-buy a, #wrap main .sec-shoplist .disc-box .text-box .btn-stream a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  padding: 19px 10px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy a, #wrap main .sec-shoplist .disc-box .text-box .btn-stream a {
    padding: calc(0.0466666667 * var(--vw)) 0;
  }
}
#wrap main .sec-shoplist .disc-box .text-box .btn-buy:after, #wrap main .sec-shoplist .disc-box .text-box .btn-stream:after {
  position: absolute;
  content: "";
  top: calc(50% - 10px);
  right: 20px;
  background: url("../img/icon_arrow_btn.png") center center no-repeat;
  width: 13px;
  height: 19px;
  background-size: contain;
  -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 768px) {
  #wrap main .sec-shoplist .disc-box .text-box .btn-buy:after, #wrap main .sec-shoplist .disc-box .text-box .btn-stream:after {
    top: calc(50% - 0.0186666667 * var(--vw));
    right: calc(0.04 * var(--vw));
    width: calc(0.0266666667 * var(--vw));
    height: calc(0.0373333333 * var(--vw));
  }
}
#wrap footer {
  position: relative;
  width: 100%;
  background: #e7efef;
  padding: 64px 0 50px;
}
@media screen and (max-width: 768px) {
  #wrap footer {
    padding: calc(0.1333333333 * var(--vw)) 0 calc(0.0853333333 * var(--vw));
    overflow-x: hidden;
  }
}
#wrap footer ul.sns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#wrap footer ul.sns-box li {
  position: relative;
  width: 22px;
}
@media screen and (max-width: 768px) {
  #wrap footer ul.sns-box li {
    width: calc(0.0533333333 * var(--vw));
  }
}
#wrap footer ul.sns-box li:nth-child(n+2) {
  margin-left: 26px;
}
@media screen and (max-width: 768px) {
  #wrap footer ul.sns-box li:nth-child(n+2) {
    margin-left: calc(0.0533333333 * var(--vw));
  }
}
#wrap footer ul.sns-box li.yt {
  width: 26px;
}
@media screen and (max-width: 768px) {
  #wrap footer ul.sns-box li.yt {
    width: calc(0.064 * var(--vw));
  }
}
#wrap footer ul.sns-box li a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #wrap footer ul.sns-box li a {
    -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #wrap footer ul.sns-box li a:hover {
    opacity: 0.5;
  }
}
#wrap footer ul.sns-box li a img {
  width: 100%;
  height: auto;
}
#wrap footer .fk-footer {
  padding: max(64px, 4.4444444444vw) 20px max(32px, 2.2222222222vw);
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer {
    padding: 56px 16px 24px;
  }
}
#wrap footer .fk-footer__top {
  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: max(64px, 4.4444444444vw);
  margin-top: 64px;
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__top {
    margin-top: 32px;
  }
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__top {
    gap: 32px;
  }
}
#wrap footer .fk-footer__logo-hehn {
  width: max(70px, 4.8611111111vw);
  height: auto;
  mix-blend-mode: difference;
  will-change: transform;
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__logo-hehn {
    width: 59px;
  }
}
#wrap footer .fk-footer__logo-universal {
  width: max(108px, 7.5vw);
  height: auto;
  mix-blend-mode: difference;
  will-change: transform;
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__logo-universal {
    width: 84px;
  }
}
#wrap footer .fk-footer__middle {
  margin-top: 36px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(32px, 2.2222222222vw);
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__middle {
    gap: 8px 24px;
  }
}
#wrap footer .fk-footer__middle a {
  font-size: max(0.6875rem, 0.7638888889vw);
  letter-spacing: 0.03em;
  color: #636363;
  text-decoration: underline;
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__middle a {
    font-size: 1rem;
  }
}
#wrap footer .fk-footer__bottom {
  margin-top: 20px;
  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: max(32px, 2.2222222222vw);
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__bottom {
    display: block;
    text-align: center;
  }
}
#wrap footer .fk-footer__copyright {
  font-size: max(0.6875rem, 0.7638888889vw);
  letter-spacing: 0.03em;
  color: #636363;
  margin: 0;
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__copyright {
    font-size: 1rem;
  }
}
@media screen and (max-width: 799px) {
  #wrap footer .fk-footer__copyright {
    margin-top: 8px;
    line-height: 1.75;
  }
}
#wrap footer .fk-footer__copyright .--indention {
  display: inline-block;
}
@media screen and (min-width: 800px) {
  #wrap footer .fk-nav {
    display: block !important;
  }
}

table {
  width: calc(100% - 2px);
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  table {
    font-size: calc(0.016 * var(--vw));
    width: calc(0.8733333333 * var(--vw));
  }
}
table.outline th,
table.outline td {
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  table.outline th,
  table.outline td {
    padding: calc(0.0266666667 * var(--vw)) calc(0.0133333333 * var(--vw)) !important;
  }
}
@media screen and (max-width: 768px) {
  table.outline { /* 席種 */
    /* 金額 */
    /* 席種 */
  }
  table.outline th:nth-child(2) {
    width: 40%;
  }
  table.outline th:nth-child(3) {
    width: 40%;
  }
  table.outline th:nth-child(1) {
    width: 20% !important;
  }
}
table.expand th,
table.expand td {
  padding: 30px 20px !important;
}
@media screen and (max-width: 768px) {
  table.expand th,
  table.expand td {
    padding: calc(0.0426666667 * var(--vw)) calc(0.0133333333 * var(--vw)) !important;
  }
}
@media screen and (max-width: 768px) {
  table.expand th {
    padding: calc(0.0426666667 * var(--vw)) calc(0 * var(--vw)) !important;
  }
}
table th,
table td {
  font-size: 16px;
  border: 1px solid #dcd7c9;
  padding: 16px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table th,
  table td {
    padding: calc(0.0426666667 * var(--vw)) calc(0.0133333333 * var(--vw)) !important;
    font-size: calc(0.032 * var(--vw));
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  table th th,
  table td th {
    padding: calc(0.0426666667 * var(--vw)) calc(0 * var(--vw)) !important;
  }
}

.info-table {
  background: #f6f5e9;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .info-table {
    margin-bottom: calc(0.004 * var(--vw));
  }
}
.info-table .side {
  background: #474642;
  width: 200px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .info-table .side {
    font-size: calc(0.032 * var(--vw));
    width: calc(0.216 * var(--vw)) !important;
  }
}
.info-table .apply .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: 20px;
}
@media screen and (max-width: 768px) {
  .info-table .apply .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: calc(0.0373333333 * var(--vw));
  }
}
.info-table .apply .apply-text {
  line-height: 1.6;
}
.info-table .apply .apply-btn {
  position: relative;
  width: 320px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #23201d;
  color: #f6f5e9 !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px) {
  .info-table .apply .apply-btn {
    -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .info-table .apply .apply-btn:hover {
    background: #474742;
  }
  .info-table .apply .apply-btn:hover:after {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@media screen and (max-width: 768px) {
  .info-table .apply .apply-btn {
    width: calc(0.64 * var(--vw)) !important;
    border-radius: calc(0.0066666667 * var(--vw));
    padding: calc(0.0333333333 * var(--vw)) calc(0.032 * var(--vw)) calc(0.0373333333 * var(--vw));
    font-size: calc(0.032 * var(--vw));
  }
}
.info-table .apply .apply-btn::after {
  position: absolute;
  content: "";
  top: 15px;
  right: 18px;
  background: url("../img/icon_arrow_btn.png") center center no-repeat;
  width: 13px;
  height: 19px;
  background-size: contain;
  -webkit-transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 768px) {
  .info-table .apply .apply-btn::after {
    top: calc(50% - 0.0186666667 * var(--vw));
    right: calc(0.04 * var(--vw));
    width: calc(0.0266666667 * var(--vw));
    height: calc(0.0373333333 * var(--vw));
  }
}
@media (max-width: 768px) {
  .info-table .apply {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .info-table .apply .apply-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .info-table { /* 席種 */
    /* 金額 */
  }
  .info-table th:nth-child(1) {
    width: 20% !important;
  }
  .info-table th:nth-child(2) {
    width: 80% !important;
  }
}
.info-table tr, .info-table th, .info-table td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ticket-table {
  background: #f6f5e9;
}
.ticket-table th:not(.side-title) {
  background: #c0b183;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .ticket-table th:not(.side-title) {
    font-size: calc(0.032 * var(--vw));
    width: calc(0.176 * var(--vw));
    text-align: left;
  }
}
.ticket-table .side-title {
  background: #474642;
  color: #fff;
  width: 200px;
  text-align: center;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .ticket-table .side-title {
    font-size: calc(0.032 * var(--vw));
    width: calc(0.176 * var(--vw)) !important;
    padding: 0;
  }
}
.ticket-table small {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .ticket-table small {
    font-size: calc(0.0266666667 * var(--vw));
    display: block;
    line-height: 1.5 !important;
    margin-top: calc(0.0026666667 * var(--vw));
  }
}
@media (max-width: 768px) {
  .ticket-table th,
  .ticket-table td {
    padding: calc(0.032 * var(--vw));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: calc(0.032 * var(--vw));
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .ticket-table th {
    padding: calc(0.0213333333 * var(--vw)) calc(0.0133333333 * var(--vw)) !important;
  }
}
@media (max-width: 768px) {
  .ticket-table .side-title {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .ticket-table { /* 席種 */
    /* 金額 */
    /* エリア */
    /* 席種 */
  }
  .ticket-table th:nth-child(2) {
    width: 22%;
  }
  .ticket-table th:nth-child(3) {
    width: 29%;
  }
  .ticket-table th:nth-child(4) {
    width: 29%;
  }
  .ticket-table th:nth-child(1) {
    width: 20% !important;
  }
}
@media screen and (max-width: 768px) {
  .ticket-table.outline { /* 金額 */
    /* 席種 */
    /* 席種 */
  }
  .ticket-table.outline td:nth-child(1) {
    width: 25% !important;
  }
  .ticket-table.outline td:nth-child(2) {
    width: 48% !important;
  }
  .ticket-table.outline th:nth-child(1) {
    width: 18.5% !important;
  }
}/*# sourceMappingURL=style.css.map */