@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/*=============================================
:root
=============================================*/
:root {
  --bg-color: #2f2f2f;
  --primary-color: #bfa45c;
  --sub-color: #b73e45;
  --mq-sm: 450px;

  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);

}

/*=============================================
common
=============================================*/

body {
  /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; */
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  color: #fff;
  /* letter-spacing: 0.1em; */
  line-height: 1.6;
}

.en {
  font-family: "Josefin Sans", sans-serif;
}

.num {
  font-family: "Outfit", sans-serif;
}

a {
  color: #000;
}

a:hover {
  text-decoration: none;
}

.content {
  padding: 20px;
  margin: auto;
}

.has-max-width {
  max-width: 1000px;
  margin: auto;
}

.sub-color {
  color: var(--sub-color);
}

.notice {
  font-size: 12px;
}

.btn-block {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.wrapper {
  position: relative;
  background-color: #fff;
  color: #000;
  margin-top: 160px;
}

.animate__animated {
  opacity: 0;
}

.komejirushi {
  text-indent: -1em;
  padding-left: 1em;
}

.komejirushi li {
  margin-bottom: .5em;
}

@media screen and (min-width:480px) {
  .content {
    padding: 40px;
  }
  .br-sp{
    display: none;
  }
    
}



/*=============================================
parts
=============================================*/
/*
title
---------------------------------*/
.title {
  color: var(--primary-color);
  display: grid;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}

.title .en {
  font-size: clamp(2.5rem, 2.0455rem + 2.2727vw, 3.75rem);
  line-height: 1;
}

.title .ja {
  font-size: clamp(0.875rem, 0.8295rem + 0.2273vw, 1rem);
}



/*
btn
---------------------------------*/
.btn {
  text-align: center;
}

.btn>a,
.btn>span {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.5s 0s ease;
}

.btn>a:hover,
.btn>span:hover {
  background-color: #000;
}


/*
modal
---------------------------------*/
.has-modal:hover {
  cursor: pointer;
}

.modal-open {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  font-weight: bold;
  color: #fff;
  background: #000;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  /* padding: 40px 20px; */
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal-content {
  text-align: left;
  background: var(--bg-color);
}

.modal-title {
  font-weight: bold;
  font-size: clamp(1.125rem, 1.0795rem + 0.2273vw, 1.25rem);
}

.modal-content img {
  display: block;
}

.modal-content p {
  padding: 20px;
}

/* .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
  display: none;
} */

.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}

.swiper-button-next,.swiper-button-prev{
  color: #fff;
  font-size: 2em;
}

.swiper-slide{
  position: relative;
}

.swiper-slide .floor-label{
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.swiper-slide .floor-label span{
  background:rgba(0,0,0,0.7);
  padding: 5px 10px;
  color: #fff;
  font-size: 0.9em;
}

/*=============================================
loading
=============================================*/

.loading {
  background-color: var(--bg-color);
  position: fixed;
  width: 100%;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  z-index: 999;
  left: 0;
  top: 0;
}

.loading>div {
  max-width: 60vw;
  margin: auto;
}

.pulse-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  margin-top: 20px;
}

.pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
}

.blur_animation {
  animation: blur .5s both ease-in;
}

@keyframes blur {
  0% {
    filter: blur(0px);
  }

  100% {
    filter: blur(20px);
  }
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}

/*=============================================
header
=============================================*/
header {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 15px;
  width: 100%;
}

.header {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.header img {
  display: block;
  margin: auto;
}

.header__logo {
  text-align: center;
}


.header__menu {
  margin: auto;
  font-size: clamp(0.875rem, 0.8295rem + 0.2273vw, 1rem);
}

.header__menu {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  letter-spacing: 0;
}

.header__menu:hover {
  cursor: pointer;
}

.header__menu-dot {
  display: grid;
  gap: 2px;
}

.header__menu-dot span {
  border-radius: 50%;
  background-color: #fff;
  width: 6px;
  height: 6px;
}


@media screen and (min-width:480px) {
  .header__logo-JRA img {
    width: 80px;
  }
}

/*=============================================
menu
=============================================*/
.menu {
  background-color: var(--bg-color);
  color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 99;
  padding: 30px;
  max-width: 500px;
  transition: all 0.5s 0s ease;
}

.menu.open {
  right: 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

.menu span {
  display: block;
}

.menu ul {
  font-size: clamp(1.5rem, 1.3636rem + 0.6818vw, 1.875rem);
  display: grid;
  gap: 0.5em;
  margin-top: 10vh;
}

.menu ul li a{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.menu .en {
  line-height: 1.2;
}

.menu .ja {
  font-size: clamp(1.125rem, 1.0795rem + 0.2273vw, 1.25rem);
}

.menu ul i{
  font-size: 0.7em;
  display: block;
  color: var(--primary-color);
}

.menu__close{
  font-size: 2em;
}

/*=============================================
footer
=============================================*/
footer {
  background-color: var(--bg-color);
  position: relative;
  padding: 40px;
  padding-bottom: 70px;
  text-align: center;
}

footer a {
  color: #fff;
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__logo-JRA {
  width: 80px;
  margin: auto;
}

.footer__note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.8em;
  margin: 10px 0;
}

.footer__note a {
  text-decoration: none;
}

.footer__caption {
  font-size: 0.7em;
  line-height: 1.4;
}

@media screen and (min-width:480px) {
  footer{
    padding-bottom: 40px;
  }
  .footer__note {
    flex-wrap: nowrap;
    gap: 20px;
    font-size: 0.6em;
  }
}

/*=============================================
navi
=============================================*/
.navi ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 100px);
  justify-content: center;
}


/*=============================================
scrolldown
=============================================*/
.scrolldown {
  position: absolute;
  margin-top: 80px;
  left: 50%;
  z-index: 1;
  height: 50px;
}

.scrolldown span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }

  100% {
    bottom: -5px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #000;
}



/*=============================================
introduction
=============================================*/
.introduction {
  display: grid;
}

.introduction__message {
  text-align: center;
  padding: 20px;
  margin: auto;
  max-width: 450px;
  display: flex;
  align-items: center;
}

.introduction__video {
  padding: 5%;
}

.introduction__iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.introduction__video iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 960px) {
  .introduction {
    grid-template-columns: 60% auto;
    gap: 20px;
  }

  .introduction__message {
    order: 2;
    height: auto;
  }

  .introduction__video {
    order: 1;
    padding-right: 0;
  }
}

/*=============================================
guide
=============================================*/
.guide {
  max-width: 1000px;
  margin: auto;
}

.guide__flow {
  display: grid;
  font-size: clamp(0.8125rem, 0.7898rem + 0.1136vw, 0.875rem);
  letter-spacing: 0;
  text-align: center;
}

.guide__flow div {
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.guide__flow li:after {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/triangle.svg") no-repeat center right;
  background-size: contain;
  margin: auto;
  margin-top: 20px;
}

.guide__flow li:last-child:after {
  display: none;
}


.guide__note {
  font-size: .7em;
  text-align: center;
  margin-top: 30px;
}

.guide_list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.guide_list h3 {
  font-size: clamp(1.125rem, 1.0795rem + 0.2273vw, 1.25rem);
  text-align: center;
  border-bottom: solid 1px #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}

.guide_list li {
  font-size: .8em;
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}


@media only screen and (min-width: 480px) {
  .guide__flow {
    /* grid-template-columns: repeat(3, 1fr); */
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }

  .guide__flow li{
    width: 30%;
  }

  .guide__flow div {
    grid-template-columns: auto 1fr;
    aspect-ratio: 25 / 20;
    align-items: start;
  }

  .guide__flow li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-template-rows: auto auto;
  }

  .guide__flow div {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .guide__flow div img{
    display: block;
  }

  .guide__flow p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    text-align: left;
  }

  .guide__flow li:after {
    transform: rotate(-90deg);
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin: auto;
  }

  .guide__flow li:last-child:after {
    display: block;
    opacity: 0;
  }

  .guide__note{
    text-align: left;
  }



}

/*=============================================
event
=============================================*/
.event {
  max-width: 580px;
  margin: auto;
  box-sizing: border-box;
}

.event a {
  text-decoration: none;
}

.event__schedule {
  margin-bottom: 40px;
}

.event__schedule-title{
  background-color: #000;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.3em;
  padding: 5px 10px;
  margin-bottom: 20px;
  text-align: center;
}

.event__schedule-coming{
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4em;
  color: var(--primary-color);
}

.event__schedule dl {
  display: grid;
  border-bottom: dashed 1px var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.event__schedule dt {
  color: var(--primary-color);
}

.event__item {
  margin-bottom: 40px;
}

.event__item a {
  color: var(--sub-color);
  text-decoration: underline;
}

.event__item img {
  margin-bottom: 30px;
}

.event__title {
  border-left: solid 8px var(--primary-color);
  border-bottom: solid 1px var(--primary-color);
  padding-left: 10px;
  font-size: clamp(1.125rem, 1.0795rem + 0.2273vw, 1.25rem);
  font-weight: bold;
  margin-bottom: .8em;
}

.event__text {
  margin-bottom: 20px;
}

.event__note{
  font-size: .8em;
}

.torikeshi{
  text-decoration: line-through;
}

.akaji{
  color: var(--sub-color);
  font-weight: bold;
}

.--big{
  font-size: 1.2em;
}

.event__close{
  position: relative;
}

.event__close-cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.event__close-text{
  background:rgba(255,255,255,0.8);
  color: #f12617;
  text-align: center;
  padding: 20px;
  border: solid 2px #f12617;
  width: 100%;
}

@media only screen and (min-width: 480px) {
  .event__schedule dl {
    grid-template-columns: 6em 1fr;
    gap: 20px;
  }
}

/*=============================================
floor
=============================================*/
.floor {
  background-color: #000;
  color: #fff;
  padding-top: 20px;
  font-size: clamp(0.875rem, 0.8295rem + 0.2273vw, 1rem);
}

.floor__map {
  margin-bottom: 30px;
}

.floor__text {
  padding-left: 1em;
  text-indent: -1em;
  display: grid;
  justify-content: center;
}

.floor__text li {
  margin-bottom: 5px;
}

.floor__camera{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

area:hover {
  cursor: pointer;
}

/*=============================================
faq
=============================================*/
.faq {
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
}

.faq span {
  display: block;
}

.faq__line {
  display: grid;
  grid-template-columns: auto auto 1fr;
}

.faq__line-A {
  padding: 0 2em 0 1em;
}

.faq dl {
  border-bottom: dotted 1px var(--primary-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.faq dt {
  font-weight: bold;
}

.faq dt:hover {
  cursor: pointer;
}

.faq dd {
  display: none;
  margin-top: 10px;
}

.faq dd p:not(:last-child) {
  margin-bottom: 1em;
}


.faq__icon {
  color: var(--primary-color);
  margin-right: 5px;
  width: 1.5em;
  display: block;
  text-align: center;
  margin-top: .2em;
}

.faq__arrow {
  color: var(--primary-color);
  margin-left: auto;
  display: block;
  margin-top: .4em;
  transition: all 0.5s;
  height: 1em;
}

.open .faq__arrow {
  transform: rotate(180deg);
  transform-origin: center;
}

/*=============================================
access
=============================================*/
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
  margin-bottom: 30px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  -webkit-filter: grayscale(50%);
  -moz-filter: grayscale(50%);
  -o-filter: grayscale(50%);
  -ms-filter: grayscale(50%);
  filter: grayscale(50%);

}

/*=============================================
contact
=============================================*/
.contact {
  text-align: center;
  padding-bottom: 60px;
}


/*=============================================
PAGETOP
=============================================*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
  background-color: var(--primary-color);
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  width: 50px;
  height: 50px;
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

#page-top a{
  counter-reset: #fff;
  text-decoration: none;
}

#page-top i{
  display: block;
}

#page-top span{
  display: block;
  font-size: .5em;
  line-height: 1.2;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*=============================================
sp-size
=============================================*/

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}