@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Noto+Serif+SC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
:root {
  --ff-sans: "Noto Sans SC", sans-serif;
  --ff-serif: "Noto Serif SC", serif;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

.cl-yellow {
  color: #ffde00;
}

.cl-green {
  color: #00a284;
}

.cl-red {
  color: #f7255b;
}

.cl-blue {
  color: #29adae;
}

.cl-gray {
  color: #666;
}

.fz-xl {
  font-size: 2.5em;
}

.fz-lg {
  font-size: 1.25em;
}

.fz-sm {
  font-size: 0.7em;
}

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media (max-width: 450px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
}

strong {
  font-weight: 700;
}

.contents {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 500px;
  position: relative;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  -webkit-box-shadow: 0 0 100px 40px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 100px 40px rgba(0, 0, 0, 0.75);
}
@media (max-width: 960px) {
  .contents {
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .contents {
    margin: 0;
    border-radius: 0;
  }
}
.contents::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 390/560;
  background: -webkit-gradient(linear, left top, left bottom, from(#896812), to(#e9ce88));
  background: linear-gradient(180deg, #896812 0%, #e9ce88 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.container {
  padding: 0 clamp(0px, 6vw, 30px);
}

.heading_1 {
  margin-bottom: clamp(0px, 4vw, 20px);
  font-weight: 700;
  color: #b00;
  border-bottom: 1px solid #b00;
}

.bg_gold {
  background-color: #ede1c5;
  background-image: url(../../images/bg_1@2x.png);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: contain;
}

@-webkit-keyframes grandbgAnime {
  0% {
    background-position: top 0 left 0;
  }
  100% {
    background-position: top 0 left -2000px;
  }
}

@keyframes grandbgAnime {
  0% {
    background-position: top 0 left 0;
  }
  100% {
    background-position: top 0 left -2000px;
  }
}
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  min-height: 100svh;
  background-color: #000;
  background-image: linear-gradient(359deg, rgb(63, 41, 0), rgb(10, 10, 10));
  position: relative;
}
@media (max-width: 960px) {
  .wrapper {
    padding: 40px 0;
    display: block;
  }
}
@media (max-width: 450px) {
  .wrapper {
    padding: 0;
  }
}
.wrapper::before {
  content: "";
  display: block;
  background-image: url(../../images/grandbg_slide@2x.webp);
  background-repeat: repeat-x;
  background-position: top 0 left 0;
  background-size: cover;
  position: fixed;
  inset: 0;
  -webkit-animation: grandbgAnime 100s linear infinite;
  animation: grandbgAnime 100s linear infinite;
  opacity: 0.5;
}
.wrapper__left {
  height: 100vh;
  height: 100svh;
  position: sticky;
  top: 0;
}
@media (max-width: 960px) {
  .wrapper__left {
    height: auto;
    position: static;
  }
}
.wrapper__right {
  width: calc(50% - 215px);
  right: 0;
  --align: left;
}
.wrapper__inner {
  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;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .wrapper__inner {
    padding: 20px;
    position: fixed;
    inset: 0;
    z-index: 8;
    background-color: #111;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .wrapper__inner.is-show {
    opacity: 1;
    pointer-events: all;
  }
}

.sideInner {
  width: 430px;
}

.sideTitle {
  margin-bottom: 40px;
  font-family: var(--ff-serif);
  color: #fff;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
@media (max-width: 450px) {
  .sideTitle {
    margin-bottom: 20px;
  }
}
.sideTitle__sub {
  margin-bottom: 5px;
  font-size: clamp(0px, 4.6vw, 23px);
  font-weight: 400;
}
.sideTitle__main {
  margin-bottom: 10px;
  font-size: clamp(0px, 8vw, 40px);
  font-weight: 900;
  line-height: 1;
}
.sideTitle__main span {
  font-size: 0.6em;
}
.sideTitle__text {
  font-size: clamp(0px, 3.2vw, 16px);
}

.sideCta {
  margin: 0 auto 40px;
}
@media (max-width: 450px) {
  .sideCta {
    margin-bottom: 20px;
  }
}

.sideSche {
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 450px) {
  .sideSche {
    margin-bottom: 20px;
  }
}
.sideSche__block {
  font-family: var(--ff-serif);
  line-height: 1.2;
  height: 120px;
}
@media (max-width: 450px) {
  .sideSche__block {
    height: 100px;
  }
}
.sideSche__block--matsuyama {
  background-color: #000;
  background-image: url(../../images/sidebtn_matsuyama@2x.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sideSche__block--senjuden {
  background-image: url(../../images/sidebtn_senjuden@2x.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sideSche__block--disable a {
  pointer-events: none;
}
.sideSche__block a {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  color: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.sideSche__block a:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.sideSche__date {
  font-size: 16px;
}
@media (max-width: 450px) {
  .sideSche__date {
    font-size: 14px;
  }
}
.sideSche__name {
  margin-bottom: 2px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 450px) {
  .sideSche__name {
    font-size: 20px;
  }
}
.sideSche__place {
  font-size: 12px;
}
@media (max-width: 450px) {
  .sideSche__place {
    font-size: 10px;
  }
}
.sideSche__arrow {
  position: absolute;
  right: 10px;
}
.sideSche__cs {
  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;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  border: 1px solid #ccc;
  position: absolute;
  right: 25px;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 450px) {
  .sideSche__cs {
    width: 60px;
    height: 60px;
    font-size: 12px;
    right: 15px;
  }
}

.navi {
  padding: 60px 0;
  max-width: 250px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.85);
  position: relative;
}
.navi::before {
  content: "";
  display: block;
  width: 120px;
  height: 80px;
  background-image: url(../../images/img_ogi.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: -20px;
  bottom: -10px;
  z-index: 1;
}
.navi::after {
  content: "";
  display: block;
  position: absolute;
  inset: 2px;
  border: 1px solid #b38742;
}
.navi__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.navi__menu li {
  text-align: center;
  line-height: 1.2;
}
.navi__menu li + li::before {
  margin-bottom: 15px;
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.navi__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .navi__menu li a:hover {
    color: #b38742;
  }
}

.mainTitle {
  padding: clamp(0px, 16vw, 80px) 0 clamp(0px, 8vw, 40px);
  font-family: var(--ff-serif);
  color: #fff;
  line-height: 1.6;
  position: relative;
}
.mainTitle__sub {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
}
.mainTitle__main {
  margin-bottom: 5px;
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}
.mainTitle__main span {
  font-size: 0.6em;
}
.mainTitle__text {
  font-size: 14px;
}
.mainTitle__kumo1 {
  width: clamp(0px, 72vw, 360px);
  position: absolute;
  top: clamp(0px, 3.2vw, 16px);
  left: clamp(0px, 32vw, 160px);
}
.mainTitle__kumo1 path {
  fill: #000;
  opacity: 0.1;
}
.mainTitle__kumo2 {
  width: clamp(0px, 26.6vw, 133px);
  position: absolute;
  top: clamp(0px, 43.4vw, 217px);
  left: clamp(0px, 62vw, 310px);
}
.mainTitle__kumo2 path {
  fill: #000;
  opacity: 0.1;
}
.mainTitle__kumo3 {
  width: clamp(0px, 26.6vw, 133px);
  position: absolute;
  top: clamp(0px, 110vw, 550px);
  left: -80px;
}
.mainTitle__kumo3 path {
  fill: #000;
}

.mv {
  margin-left: clamp(0px, 6vw, 30px);
  position: relative;
  z-index: 1;
}

.lead {
  padding: clamp(0px, 8vw, 40px) 0;
  background-color: #000;
  color: #fff;
  position: relative;
}
.lead__catch {
  margin-bottom: clamp(0px, 4vw, 20px);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
.lead__text {
  margin-bottom: 20px;
}
.lead p + p {
  margin-top: 1em;
}
.lead__kumo1 {
  width: clamp(0px, 72vw, 360px);
  position: absolute;
  bottom: clamp(0px, 18.6vw, 93px);
  left: clamp(0px, 21.4vw, 107px);
}
.lead__kumo1 path {
  fill: #fff;
  opacity: 0.15;
}
.lead__kumo2 {
  width: clamp(0px, 26.6vw, 133px);
  position: absolute;
  bottom: clamp(0px, 40.8vw, 204px);
  left: clamp(0px, 62vw, 310px);
}
.lead__kumo2 path {
  fill: #fff;
  opacity: 0.15;
}
.lead__movie {
  position: relative;
  z-index: 1;
}
.lead__movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.cta {
  padding: 20px;
  background-color: #bb0000;
}
.cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 60px;
  border-radius: 3px;
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  color: #896812;
  position: relative;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .cta__btn:hover {
    background-color: #b38742;
    color: #fff;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.35);
  }
  .cta__btn:hover::before {
    border: 2px solid #fff;
  }
}
.cta__btn--red {
  background-color: #e50012;
  color: #fff;
}
.cta__btn--red::before {
  border: 2px solid #fff;
}

.outline {
  padding: 60px 0;
  background-color: #fff;
}
.outline__row + .outline__row {
  margin-top: 40px;
}
.outline__sche {
  margin-bottom: 10px;
}
.outline__sche li + li {
  margin-top: 20px;
}
.outline__scheText {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 10px;
  font-size: 14px;
}
.outline__scheText ul li {
  margin-right: 7px;
  display: inline-block;
}

.outlineTitle {
  margin-bottom: clamp(0px, 8vw, 40px);
  font-family: var(--ff-serif);
  line-height: 1.4;
  text-align: center;
  position: relative;
}
.outlineTitle::after {
  margin: clamp(0px, 4vw, 20px) auto 0;
  content: "";
  display: block;
  width: clamp(0px, 12vw, 60px);
  aspect-ratio: 60/2;
  background-color: #000;
}
.outlineTitle__main {
  font-size: clamp(0px, 5.6vw, 28px);
  font-weight: 700;
}
.outlineTitle__sub {
  font-weight: 700;
}

.outlineTable {
  width: 100%;
}
.outlineTable th {
  width: clamp(0px, 22vw, 110px);
  text-align: left;
}
.outlineTable thead {
  font-size: 12px;
  border-bottom: 1px solid #eee;
}
.outlineTable thead th,
.outlineTable thead td {
  padding-bottom: 5px;
}
.outlineTable thead td {
  text-align: center;
}
.outlineTable tbody th,
.outlineTable tbody td {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.outlineTable tbody th span,
.outlineTable tbody td span {
  vertical-align: middle;
}
.outlineTable tbody th {
  font-weight: 700;
}
.outlineTable tbody td {
  text-align: center;
}

.outlineNote {
  padding: 15px;
  font-size: 14px;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.outlineNote p {
  line-height: 1.6;
}

.mapBtn {
  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;
  width: 100%;
  height: 30px;
  color: #1e7ed7;
  border: 1px solid #1e7ed7;
  border-radius: 5px;
  font-size: 12px;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .mapBtn:hover {
    background-color: #1e7ed7;
    color: #fff;
  }
}

.about {
  margin-top: 40px;
}
.about__photo {
  margin-bottom: 20px;
}
.about__heading {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.plans {
  padding: 60px 0;
  color: #fff;
}
.plans__title {
  margin-bottom: 40px;
  text-align: center;
}
.plans__heading {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  color: #e50012;
  line-height: 1.2;
}
.plans__heading::after {
  content: "";
  margin: 10px auto 0;
  display: block;
  width: 80px;
  height: 3px;
  background-color: #e50012;
}
.plans__price {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.basicPlan__row + .basicPlan__row {
  margin-top: 40px;
}
.basicPlan__photo {
  -webkit-mask-image: url(../../images/photo_mask.svg);
  mask-image: url(../../images/photo_mask.svg);
  margin-bottom: 20px;
}
.basicPlan__title {
  margin-bottom: 5px;
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 450px) {
  .basicPlan__title {
    font-size: 18px;
  }
}

.basicPlanStory {
  margin-top: 15px;
  padding: 0 15px 10px;
  border: 1px solid var(--color);
  border-radius: 10px;
  font-size: 14px;
  --color: #896812;
  --hedingColor: #896812;
  --headingBg: #000;
}
.basicPlanStory--ticket {
  --color: #ccc;
  --hedingColor: #333;
  --headingBg: #fff;
}
.basicPlanStory__heading {
  margin-top: -1em;
  color: var(--hedingColor);
  font-weight: normal;
  font-size: 14px;
}
@media (max-width: 450px) {
  .basicPlanStory__heading {
    font-size: 14px;
  }
}
.basicPlanStory__heading strong {
  padding: 0 5px;
  background-color: var(--headingBg);
}

.luxuryPlan {
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  position: relative;
}
.luxuryPlan::before {
  content: "";
  display: block;
  border: 1px solid #ede1c5;
  position: absolute;
  inset: 3px;
}
.luxuryPlan__basic {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #222;
  color: #fff;
  line-height: 1.4;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #000;
}
.luxuryPlan__basic__main {
  font-size: 20px;
  font-weight: bold;
}
.luxuryPlan__plus {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.luxuryPlan__row {
  padding: 12px 10px;
  border-radius: 5px;
  border: 1px solid #e0cfa6;
  background: #fff;
  line-height: 1.6;
}
.luxuryPlan__row + .luxuryPlan__row {
  margin-top: 10px;
}
.luxuryPlan__heading {
  text-align: center;
  font-weight: bold;
}
.luxuryPlan__text {
  font-size: 14px;
}
.luxuryPlan__photo {
  margin-bottom: 5px;
}

.location {
  padding-top: 30px;
  background-color: #a5cdd6;
  background-image: url(../../images/location_bg@2x.png);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: contain;
}
.location__title {
  text-align: center;
}
.location__heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.location__text {
  font-size: 14px;
}
.location__wide {
  margin-bottom: 30px;
}

.aroundArea__heading {
  padding: 7px 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #000;
  position: relative;
}
.aroundArea__heading::before {
  content: "";
  display: block;
  width: 12px;
  height: calc(tan(60deg) * 8px / 2);
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -6px;
  left: 50%;
  z-index: 1;
}
.aroundArea__map {
  position: relative;
}
.aroundArea__circle {
  list-style: none;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 3px dashed #000;
  position: absolute;
  top: 0;
  left: 0;
}
.aroundArea__circle--dogo {
  width: 15.8139534884%;
  top: 78.8%;
  left: 14.6511627907%;
  border-color: #b38742;
}
.aroundArea__circle--shimanami {
  width: 36.976744186%;
  top: 9%;
  left: 37.4418604651%;
}
.aroundArea__circle--yumeshima {
  width: 19.0697674419%;
  top: 3.4%;
  left: 75.3488372093%;
}
.aroundArea__circle--ishizuchi {
  width: 20.9302325581%;
  top: 63.2%;
  left: 68.3720930233%;
}
.aroundArea__name {
  padding: 5px 10px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1.1;
  background-color: #000;
  position: absolute;
}
.aroundArea__name--dogo {
  top: 80.4%;
  left: 26.0465116279%;
  background-color: #b38742;
}
.aroundArea__name--shimanami {
  top: 31.8%;
  left: 18.8372093023%;
}
.aroundArea__name--yumeshima {
  top: 2.6%;
  right: 14.1860465116%;
  text-align: right;
}
.aroundArea__name--ishizuchi {
  top: 67.4%;
  left: 52.3255813953%;
}
.aroundArea__desc {
  padding: 30px 0;
  background-color: #ede1c5;
}
.aroundArea__desc__text + .aroundArea__desc__text {
  margin-top: 20px;
}
.aroundArea__desc__text dt {
  font-weight: bold;
}
.aroundArea__desc__text dd {
  font-size: 14px;
}

.footer {
  padding: 10px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: #000;
}

.menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  z-index: 9;
  display: none;
  background-color: #000;
  color: #fff;
  border-radius: 0 0 0 10px;
}
@media (max-width: 960px) {
  .menuBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    --menu-display: inline;
    --close-display: none;
  }
  .menuBtn.is-show {
    background-color: #896812;
    --menu-display: none;
    --close-display: inline;
  }
}
@media (max-width: 450px) {
  .menuBtn {
    width: 50px;
    height: 50px;
  }
}
.menuBtn__menu {
  display: var(--menu-display);
}
.menuBtn__close {
  display: var(--close-display);
}

.overlayMenu {
  padding: 30px;
  position: fixed;
  inset: 0;
  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;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2;
  display: none;
}
.overlayMenu.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overlayMenu__inner {
  max-width: 500px;
  width: 100%;
}
.overlayMenu__navi {
  padding: 40px 0 10px;
  z-index: 2;
  position: relative;
}
.overlayMenu__links {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  line-height: 1.2;
}
.overlayMenu__links li a {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.overlayMenu__cta {
  margin-top: 20px;
}

.lang {
  padding-top: 20px;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}
@media (max-width: 450px) {
  .lang {
    padding-top: 10px;
  }
}
.lang--init {
  padding: 10px 0 20px;
  border-top: none;
}
.lang--pc {
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 20px;
}
.lang__heading {
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}
.lang__heading--init {
  margin-bottom: 15px;
  font-weight: bold;
}
.lang__heading--pc {
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}
.lang__heading--pc::after {
  margin: 0 10px;
  content: ":";
}
.lang__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}
.lang__btns li {
  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;
  width: 25%;
  height: 30px;
  font-size: 10px;
  color: #fff;
  line-height: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .lang__btns li:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
  }
}
.lang__btns--init {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.lang__btns--init li {
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.lang__btns--init li::before {
  content: "";
  display: block;
  position: absolute;
  inset: 2px;
  border: 1px solid #e0cfa6;
  border-radius: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .lang__btns--init li:hover {
    background-color: #b38742;
    color: #fff;
  }
}
.lang__btns--pc {
  gap: 10px;
}
.lang__btns--pc li {
  width: auto;
  height: auto;
  border: none;
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
}

.init {
  margin: 20px auto 0;
  padding: 30px;
  position: fixed;
  inset: 0;
  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;
  opacity: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
.init.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.init__inner {
  max-width: 550px;
  width: 100%;
}
.init__title {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 450px) {
  .init__title {
    margin-bottom: 20px;
  }
}
.init__title__en {
  margin-bottom: 10px;
  font-family: serif;
  font-weight: bold;
  color: #b38742;
  line-height: 1.2;
}
.init__title__en h2 {
  font-size: 30px;
}
@media (max-width: 450px) {
  .init__title__en h2 {
    font-size: 26px;
  }
}
.init__title__en p {
  font-size: 20px;
}
@media (max-width: 450px) {
  .init__title__en p {
    font-size: 16px;
  }
}
.init__title__ja {
  margin-bottom: 10px;
}
.init__title__text {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 450px) {
  .init__title__text {
    font-size: 12px;
  }
}

.loading {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background-color: black;
  z-index: 9;
  -webkit-transition: background-color 0.8s;
  transition: background-color 0.8s;
  display: none;
}
.loading.is-hidden {
  background-color: rgba(0, 0, 0, 0.5);
}
.loading__progress {
  margin: 0 auto;
  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;
  width: 80px;
  height: 80px;
  position: relative;
}
.loading__progress::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 242, 58)), color-stop(80%, rgb(16, 11, 1)));
  background-image: linear-gradient(90deg, rgb(255, 242, 58), rgb(16, 11, 1) 80%);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loadingCircle 4s linear infinite;
  animation: loadingCircle 4s linear infinite;
}
.loading__progress::after {
  content: "";
  border-radius: 100px;
  background: #000;
  position: absolute;
  inset: 1px;
}
.loading__progress p {
  color: #fff;
  font-size: 12px;
  position: relative;
  z-index: 2;
}
@-webkit-keyframes loadingCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loadingCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.ticket.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ticket__bg {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
.ticket__inner {
  margin: 20px;
  padding: 30px 40px;
  background-color: #e50012;
  border-radius: 10px;
  width: 500px;
  max-width: 100%;
  position: relative;
  text-align: center;
}
@media (max-width: 450px) {
  .ticket__inner {
    padding: 20px;
  }
}
.ticket__lead {
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.ticket__btns {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 450px) {
  .ticket__btns {
    margin: 20px 0;
  }
}
.ticket__btn {
  width: 100%;
}
.ticket__btn a {
  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;
  width: 100%;
  height: 60px;
  border-radius: 100px;
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  color: #b38742;
  position: relative;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.ticket__btn a::before {
  content: "";
  display: block;
  border: 2px solid #b38742;
  border-radius: 100px;
  position: absolute;
  inset: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .ticket__btn a:hover {
    background-color: #b38742;
    color: #fff;
    -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.35);
  }
  .ticket__btn a:hover::before {
    border: 2px solid #fff;
  }
}
.ticket__btn a--red {
  background-color: #e50012;
  color: #fff;
}
.ticket__btn a--red::before {
  border: 2px solid #fff;
}
.ticket__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ticket__close {
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}
.ticket__close:hover {
  text-decoration: underline;
}
.tw-mt-5{
  margin-top: 1.25rem;
}
.tw-mt-2{
  margin-top: 0.5rem;
}
.tw-mt-3{
  margin-top: 0.75rem;
}
.tw-mb-5{
  margin-bottom: 1.25rem;
}
.tw-ml-5{
  margin-left: 1.25rem;
}
.tw-list-disc{
  list-style-type: disc;
}
.tw-text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.tw-text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.tw-text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
/*# sourceMappingURL=zh-cn.css.map */