@charset "UTF-8";
/* -----------------------
  WebFonts
----------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');


/* -----------------------
  Common
----------------------- */
/* mixin */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");

.box {
  border: solid 1px #333;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  color: #3d404c;
  font-size: 1.6rem;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/mainV.png) center no-repeat;
  background-size: cover;
}

a {
  color: #3d404c;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: #548e82;
}

p {
  line-height: 1.5em;
}

li {
  list-style-type: none;
}

h2 {
  text-align: center;
  font-size: 5.5rem;
  letter-spacing: 0px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0vw auto 2vw;
  font-family: "Orbitron", serif;
}

h4 {
  position: relative;
  padding: 0.8rem 0;
  border-bottom: 5px solid;
  color: #3d404c;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 5px;
  text-align: center;
  margin: 3vw 0 2.5vw;
}

h4:before,
h4:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}

h4:before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: #3d404c;
  margin-left: -16px;
}

h4:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: #dbd2b8;
  margin-left: -10px;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.red {
  color: #c42b48;
}

.green {
  color: #548e82;
}

.yellow {
  color: #ffe323;
}

/* -----------------------
  inner
----------------------- */
.main-content {
  position: relative;
  z-index: 2;
  /* background: rgba(248, 235, 186, .85);*/
  background-image: linear-gradient(to right, rgba(222, 214, 179, 0.9) 0%, rgb(226, 217, 184) 50%, rgba(218, 209, 170, 0.8) 100%);
  filter: sepia(5%);
  margin: 2vw 3vw;
  padding: 0 20px;
  opacity: 0;
}

/*
.main-content-wrapper {
  position: relative;
  margin: 0 3vw;
}


.main-content-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(234, 226, 197, .7);
  z-index: 1;
  mix-blend-mode: difference;
}

.main-content {
  position: relative;
  z-index: 2;
  opacity: 0;
}
*/
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* -----------------------
  MENU
----------------------- */
.menu-button {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 20px;
  z-index: 1000;
  mix-blend-mode: difference;
}

.menu-button span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.menu-button :nth-child(1) {
  top: 0;
}

.menu-button :nth-child(2) {
  top: 50%;
}

.menu-button :nth-child(3) {
  bottom: 0;
}

.menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  padding: 100px 40px;
  transition: 0.5s;
}

.menu-links {
  list-style: none;
}

.menu-links li {
  margin: 20px 0;
  transform: translateX(50px);
  opacity: 0;
  transition: 0.3s;
  font-family: "Bebas Neue", sans-serif;
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 4rem;
  letter-spacing: 0.1em;
  position: relative;
}

.menu-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.menu-links a:hover::after {
  width: 100%;
}

.menu-panel.active {
  right: 0;
}

.menu-panel.active .menu-links li {
  transform: translateX(0);
  opacity: 1;
}

/* -----------------------
  firstview
----------------------- */
.FirstView {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  /*background-image:
    radial-gradient(circle at center,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.15) 20%,
      rgba(255, 255, 255, 0.05) 40%,
      transparent 60%),
    linear-gradient(335deg, #191D32 23px, transparent 23px),
    linear-gradient(155deg, #191D32 23px, transparent 23px),
    linear-gradient(335deg, #191D32 23px, transparent 23px),
    linear-gradient(155deg, #191D32 23px, transparent 23px);
  background-size: 100% 100%, 58px 58px, 58px 58px, 58px 58px, 58px 58px;
  background-position: center center, 0px 2px, 4px 35px, 29px 31px, 34px 6px;
  background-color: #101326;*/
}

.FirstView .fc-button {
  position: absolute;
  top: 23px;
  right: 80px;
  color: white;
  z-index: 9999;
}

.FirstView .fc-button p {
  text-align: center;
  font-size: 1rem;
  animation: blink 3s ease-in-out infinite;
}

.FirstView .fc-button a {
  /* text-decoration: underline;
  color: #548e82;*/
  color: #fff;
  line-height: 2px;
  font-size: 1.3rem;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.FirstView .fc-button ul {
  display: flex;
}

.FirstView .fc-button ul li {
  background-color: black;
  margin: 0 0.2vw;
  padding: 0.1vw 0.5vw 0.3vw;
  width: 100px;
  text-align: center;
}

.FirstView .fc-button ul li.post {
  padding: .1vw 0 0;
  background-color: #dd031a;
}

.FirstView .fc-button ul li img {
  margin: .5vw 0 0;
}

.FirstView .fc-button ul li img.snowslogo {
  width: 100%;
}

.FirstView .fc-button ul li img.rainslogo {
  width: 90%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.content-wrapper {
  position: relative;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
}

.content-wrapper .text-wrapper {
  overflow: hidden;
  margin: 10px 0;
  mix-blend-mode: difference;
}

.content-wrapper .text-wrapper img.logo {
  width: 100%;
  margin: 0 0;
}

.content-wrapper .text-line {
  transform: translateY(100%);
}

.tour-title {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4px;
}

.tour-title.tour {
  font-size: 28px;
  letter-spacing: 10px;
}

.tour-title.instantradio {
  font-size: 65px;
  letter-spacing: 5px;
}

/* scroll */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 2;
  /*mix-blend-mode: difference;*/
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
}

/* -----------------------
NEWS
----------------------- */
.banner img {
  display: block;
  width: 50%;
  margin: 1vw auto -1vw;
  padding: 4vw 0 0;
}


.News {
  border-top: 0.8px dotted rgba(61, 64, 76, 0.8);
  padding: 1vw 0 0;
}

.News li {
  position: relative;
  width: 100%;
  margin: 0 auto 1vw;
  outline: 0;
  cursor: pointer;
  border-bottom: 0.8px dotted rgba(61, 64, 76, 0.8);
  padding: 0 0 1.3vw;
}

.News li .title {
  display: block;
  position: relative;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  transition: 0.5s;
  font-size: 1.8rem;
}

.News li .title:hover {
  color: #548e82;
}

.News li .title--update,
.News li .title--heading {
  display: inline-block;
  vertical-align: top;
  line-height: 1.3em;
}

.News li .title--update {
  width: 12%;
  margin-top: 3px;
  font-weight: 200;
}

.News li .title--heading {
  width: 80%;
}

.News li .title--heading .new {
  background: #548e82;
  color: rgba(255, 255, 255, 0.8);
  font-weight: normal;
  padding: 1px 5px 3px;
  margin-left: 5px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 600;
}

.News li .title--heading time {
  display: inline;
  vertical-align: middle;
}

.News li .title .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  height: 16px;
  transform: translateY(-45%);
  margin: 0 auto;
}

.News li .title .arrow::before,
.News li .title .arrow::after {
  content: "";
  display: block;
  background: #3d404c;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.News li .title .arrow::before {
  width: 1px;
  height: 18px;
  background-color: #3d404c;
}

.News li .title .arrow::after {
  width: 18px;
  height: 1px;
  background-color: #3d404c;
}

.News li .title.open .arrow {
  transform: translateY(-45%) rotate(45deg);
}

.News li .title.open .arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.News li .title.open .arrow::after {
  opacity: 0;
}

.News li .News__detail {
  display: none;
  width: 100%;
  font-weight: normal;
  line-height: 1.8;
  padding: 1vw 0 0;
}

.News li .News__detail .font_s {
  font-size: 1.4rem;
}


.News li .News__detail .news250228 img {
  display: block;
  width: 40%;
  margin: 2vw auto 1vw;
}

.News li .News__detail img.news_goodslist {
  width: 60%;
  display: inline;
}

.News li .News__detail p {
  margin: 10px 0;
  font-size: 1.6rem;
}

.News li .News__detail .tour_title {
  font-size: 2rem;
  margin: 0 0 -1vw;
  line-height: 1.4;
}

.News li .News__detail a {
  text-decoration: underline;
}

.News li .News__detail--link {
  border-bottom: 0.5px solid #3d404c;
  padding-bottom: 2px;
  position: relative;
}

.News li .News__detail--link:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #3d404c;
  border-right: solid 1px #3d404c;
  position: absolute;
  top: 30%;
  right: -15px;
  margin-top: -2px;
  transform: rotate(135deg);
}

.News li .News__detail--link:hover {
  border-bottom: 0.5px solid #548e82;
}

.News__more--btn {
  text-align: right;
  margin: 2vw 1vw 0 0;
}

.News__more--btn button {
  color: #3d404c;
}

.News__more--btn:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #3d404c;
  border-right: solid 1px #3d404c;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  transform: rotate(45deg);
}

.News__more--btn.is-btn-hidden {
  display: none;
}

.News__more--btn button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  background: none;
}

/* -----------------------
  TICKET
----------------------- */
#Ticket a {
  text-decoration: underline;
}

#Ticket ul.list {
  list-style-type: none;
}

#Ticket ul.list li {
  position: relative;
  line-height: 1.6;
  margin-left: 2vw;
  margin-bottom: 1vw;
}

#Ticket ul.list .emphasisWrap {
  font-size: 1.4rem;
  margin: 0.8vw 0;
  padding: 0.5vw 1vw;
  background: rgba(249, 245, 231, 0.5);
}

#Ticket ul.list .checkmark {
  position: absolute;
  left: -2.5em;
  top: 0.9em;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

#Ticket ul.list .checkmark path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #548e82;
  stroke-width: 4;
  fill: none;
}

#Ticket .Ticket__lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

#Ticket .Ticket__price {
  margin-bottom: 0.5vw;
  font-size: 3rem;
  letter-spacing: 0.2px;
  text-align: center;
  /*border: double 4px;*/
  background: rgba(249, 245, 231, 0.5);
  padding: 1vw 0;
  line-height: 1.3;
}

#Ticket .Ticket__price div {
  font-size: 1.4rem;
  font-weight: 500;
}

#Ticket .Ticket__price .tax {
  font-size: 1.8rem;
}

#Ticket .Ticket__price .drink {
  display: block;
  margin: 0.3vw 0 0;
  font-size: 1.2rem;
}

#Ticket .Ticket__caution {
  font-size: 1.5rem;
  margin: 1.5vw 2vw;
  line-height: 1.8em;
}

#Ticket .Ticket__caution h5 {
  font-weight: bold;
  margin: 3vw 0 1vw;
  font-size: 1.7rem;
  border-left: 4px solid #3d404c;
  padding: 0 0 0 1vw;
}

#Ticket .Ticket__indicate {
  display: flex;
  margin: 2vw 0 0 0.5vw;
}

#Ticket .Ticket__indicate li {
  /*border: 1px solid $main-color;*/
  background: rgba(249, 245, 231, 0.5);
  width: 35%;
  margin: 0.5vw 2vw 0.5vw 0;
  position: relative;
  padding: 0.7vw 1vw 1vw;
}

#Ticket .Ticket__indicate li .tl {
  text-align: center;
  font-weight: bold;
}

#Ticket .Ticket__indicate li p {
  text-align: left;
  font-size: 1.3rem;
  margin: 0;
}

#Ticket .Ticket__indicate li .cautionWrap {
  border: 1px solid #548e82;
  color: #548e82;
  font-size: 1.1rem;
  margin: 0.8vw 0 0;
  padding: 0.5vw 1vw;
  background-color: rgba(84, 142, 130, 0.05);
}

#Ticket .Ticket__indicate li img {
  display: block;
  width: 45%;
  margin: 1vw auto;
}

#Ticket .Ticket__indicate li span {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #548e82;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #f9f5e7;
  text-align: center;
  font-size: 1.3rem;
  vertical-align: middle;
  padding-top: 5px;
}

#Ticket .Ticket__documents {
  margin: 0 0 0 0.5vw;
}

#Ticket .Ticket__documents h5 {
  font-weight: bold;
  margin: 3vw 0 1vw;
  font-size: 1.6rem;
  border-left: 4px solid #3d404c;
  padding: 0 0 0 1vw;
}

#Ticket .Ticket__documents p {
  margin: 1vw 0vw;
}

#Ticket .Ticket__documents ol {
  list-style: none;
  counter-reset: count;
  padding: 0;
  margin: 0;
  display: flex;
}

#Ticket .Ticket__documents ol li {
  background: rgba(249, 245, 231, 0.5);
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 0 0.8vw;
  width: 15%;
  margin: 0 0.5vw 0 0;
}

#Ticket .Ticket__documents ol li div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  height: 3vw;
}

#Ticket .Ticket__documents ol li span {
  display: block;
  width: 100%;
  font-size: 1rem;
}

#Ticket .Ticket__documents ol li img {
  display: block;
  width: 60%;
  margin: 0 auto;
}

#Ticket .Ticket__documents ol li::before {
  content: counter(count);
  counter-increment: count;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #f9f5e7;
  padding: 0.2vw;
  background-color: #3d404c;
}

#Ticket .Ticket__preschooler {
  display: flex;
}

#Ticket .Ticket__preschooler li {
  margin-right: 1.5vw;
}

#Ticket .Ticket__notenter {
  margin: 2vw 0;
}

#Ticket .Ticket__notenter .tl {
  font-weight: bold;
  margin: 3vw 0 0;
  font-size: 1.3rem;
  position: relative;
  /*&::before {
    content: "×";
    position: absolute;
    left: 0;
    font-weight: bold;
  }*/
}

#Ticket .Ticket__notenter p {
  margin: 1vw 0vw;
  font-size: 1.3rem;
}

#Ticket .Ticket__notenter ul {
  list-style: none;
  counter-reset: count;
  padding: 0;
  margin: 0.3vw 0 0 0;
  display: flex;
  flex-wrap: wrap;
}

#Ticket .Ticket__notenter ul li {
  margin: 1vw 1vw 0 0;
  background-color: rgba(61, 64, 76, 0.1);
  width: 14%;
  text-align: center;
  font-size: 1.1rem;
  padding: 0 0 0.5vw;
  vertical-align: bottom;
  position: relative;
  font-weight: bold;
}

#Ticket .Ticket__notenter ul li::before {
  content: "×";
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8vw;
  color: #c42b48;
  z-index: 1;
  opacity: 0.4;
}

#Ticket .Ticket__notenter ul div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  height: 2vw;
  font-weight: normal;
}

#Ticket .Ticket__notenter ul img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

#Ticket .Ticket__wrap {
  margin: 0 0 2vw;
}

#Ticket .Ticket__wrap ul.TicketDate {
  margin: 0 0 0;
}

#Ticket .Ticket__wrap ul.TicketDate li {
  padding: 1vw 0.5vw;
  border-bottom: 1px solid #3d404c;
}

#Ticket .Ticket__wrap ul.TicketDate div {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  width: 18%;
  text-align: center;
}

#Ticket .Ticket__wrap .Ticket__entry {
  border-left: 5px solid #3d404c;
  background: rgba(249, 245, 231, 0.5);
  font-size: 1.8rem;
  padding: 1vw 1.5vw 1.2vw;
  font-weight: 600;
  margin: 4vw 0 0;
}

#Ticket .Ticket__wrap .Ticket__entry--fc {
  margin: 0.8vw 0 0.5vw;
  position: relative;
  width: 100%;
  outline: 0;
  cursor: pointer;
}

#Ticket .Ticket__wrap .Ticket__entry--fc .title {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 1vw 1.5vw 1.2vw;
  margin: 1vw auto 0;
  text-align: center;
  font-size: 1.5rem;
  background: #548e82;
  color: #f9f5e7;
  border-radius: 30px;
  font-weight: 600;
}

#Ticket .Ticket__wrap .Ticket__entry--fc .title.open span {
  transform: translateY(-45%) rotate(45deg);
}

#Ticket .Ticket__wrap .Ticket__entry--fc .title.open span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#Ticket .Ticket__wrap .Ticket__entry--fc .title.open span::after {
  opacity: 0;
}

#Ticket .Ticket__wrap .Ticket__entry--fc .arrow {
  position: absolute;
  right: 2.3vw;
  top: 50%;
  height: 16px;
  transform: translateY(-45%);
  margin: 0 auto;
}

#Ticket .Ticket__wrap .Ticket__entry--fc .arrow::before,
#Ticket .Ticket__wrap .Ticket__entry--fc .arrow::after {
  content: "";
  display: block;
  background: #f9f5e7;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

#Ticket .Ticket__wrap .Ticket__entry--fc .arrow::before {
  width: 1.5px;
  height: 12px;
  background-color: #f9f5e7;
}

#Ticket .Ticket__wrap .Ticket__entry--fc .arrow::after {
  width: 12px;
  height: 1px;
  background-color: #f9f5e7;
}

#Ticket .Ticket__wrap .Ticket__entry--item {
  font-weight: 600;
  margin: 2vw 0 0.5vw;
  font-size: 1.6rem;
  border-left: 3px solid #548e82;
  color: #548e82;
  padding: 0 0 0 0.8vw;
  margin: 2vw 0 1vw 0;
}

#Ticket .Ticket__wrap .Ticket__entry--txt {
  display: none;
  padding: 1vw 2vw;
  font-weight: normal;
  font-size: 1.5rem;
  background: rgba(249, 245, 231, 0.5);
  margin: -1.5vw auto 0;
}

#Ticket .Ticket__wrap .Ticket__entry--txt .type {
  font-weight: 600;
  font-size: 1.5rem;
}

#Ticket .Ticket__wrap .Ticket__entry--txt .font_s {
  font-size: 1.3rem;
  margin: 0.2vw 0 0;
  display: inline-block;
  line-height: 1.5;
}

#Ticket .Ticket__wrap .Ticket__entry--txt .note--wrap {
  font-size: 1.3rem;
  margin: 0 0 1.5vw 0;
  padding: 0.9vw 1.2vw 0.3vw;
  background-color: rgba(61, 64, 76, 0.05);
}

#Ticket .Ticket__wrap .Ticket__entry--txt .note--wrap p {
  line-height: 1.4;
}

#Ticket .Ticket__wrap .Ticket__entry--txt li {
  margin: 0.5vw 0 2vw;
}

#Ticket .Ticket__wrap .Ticket__entry--txt li div {
  border-bottom: 1px solid #3d404c;
  padding-bottom: 0.5vw;
  margin: 0 0 0.5vw;
}

#Ticket .Ticket__wrap .Ticket__entry--txt li img {
  width: 15%;
  margin: 0 1vw 0 0;
}

#Ticket .Ticket__wrap .Ticket__entry--txt li .conditions {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5vw;
}

#Ticket .Ticket__wrap .Ticket__entry--caution {
  border: 1px solid #548e82;
  color: #548e82;
  font-size: 1.2rem;
  margin: 2vw 0;
  padding: 1vw 1.2vw;
  background-color: rgba(84, 142, 130, 0.05);
}

#Ticket .Ticket__wrap--fc {
  display: flex;
  width: 100%;
  display: flex;
}

/* -----------------------
  SCHEDULE
----------------------- */
#Schedule .schedule {
  display: flex;
  flex-wrap: wrap;
}

#Schedule .schedule .area {
  width: 32%;
  background: rgba(249, 245, 231, 0.5);
  padding: 2vw 2vw 1vw;
  margin: 0 0.8vw 0.8vw 0;
  border-radius: 10px;
}

#Schedule .schedule .area h3 {
  font-weight: bold;
  font-size: 3rem;
  margin: 0 0 2vw;
  display: flex;
  align-items: center;
  gap: 15px;
}

#Schedule .schedule .area h3 span {
  display: inline-block;
  margin: -10vw 0 0 1vw;
  font-size: 1.4rem;
  background-color: #aca795;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  padding: 0vw 0.8vw 0.1vw;
}

#Schedule .schedule .area h3::before {
  content: "";
  width: 30px;
  height: 1px;
  background: white;
}

#Schedule .schedule .area .date {
  font-size: 2.6rem;
  font-weight: 500;
  margin: 0.5vw 0;
}

#Schedule .schedule .area .date span {
  font-size: 1.4rem;
  margin: 0 0.4vw 0 0.3vw;
}

#Schedule .schedule .area .place {
  font-size: 3rem;
  font-weight: 500;
}

#Schedule .schedule .area .time {
  margin: 1vw 0 0;
}

#Schedule .schedule .info {
  margin: 2vw 0;
  font-size: 1.4rem;
}

#Schedule .schedule .info::before {
  content: "i";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #548e82;
  color: #f9f5e7;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-style: italic;
  font-family: serif;
  font-weight: bold;
  font-size: 12px;
  margin-right: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#Schedule .schedule .info a {
  color: #3d404c;
  text-decoration: underline;
}

/* -----------------------
  GOODS
----------------------- */

#Goods .font_s {
  font-size: 1.4rem;
  color: rgba(61, 64, 76, 0.8);
}

.GoodsList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto 2vw;
}

.GoodsList::before {
  order: 1;
}

.GoodsList::before,
.GoodsList::after {
  display: block;
  content: "";
  width: 280px;
}

.GoodsList li {
  margin: 2vw 0;
}

.GoodsList p {
  margin: 0;
}

.GoodsList__item {
  width: 300px;
  margin: 15px 6px 0;
  text-align: center;
}

.GoodsList__item--banner {
  margin: 3vw auto 2vw;
  font-size: 1.3rem;
  width: 80%;
}

.GoodsList__item--banner img {
  width: 100%;
}

.GoodsList__item img {
  width: 100%;
}

.GoodsList__item--name {
  font-size: 1.6rem;
  margin: 0 0 5px;
  font-weight: bold;
}

.GoodsList__item--price {
  font-size: 1.5rem;
  margin-top: 0.5vw;
}

.GoodsList__item--other {
  text-align: left;
  margin: 5vw 0 0;
  width: 350px;
}

.GoodsList__item--other p {
  margin: 1vw 0;
}

.GoodsList__item--thumb {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0.5vw auto 2vw;
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(249, 245, 231, 0.5);
}

.GoodsList__item--thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease-in-out;
  display: block;
}

.GoodsList__item--thumb img:hover {
  transform: translate(-50%, -50%) scale(1.3);
}

.GoodsList__item--thumb:hover img:nth-of-type(2) {
  opacity: 0;
}

.GoodsList__item .online_only {
  display: inline-block;
  background-color: #E0AC0D;
  color: #fff;
  transform: scale(0.7);
  padding: 2px 5px 3px;
  line-height: 1.3;
  margin-left: -10px;
}

.GoodsList__item .order_only {
  display: inline-block;
  background-color: #d80000;
  color: #fff;
  transform: scale(0.7);
  padding: 2px 5px 3px;
  line-height: 1.3;
  margin-left: -10px;
}

.GoodsList__item .pre_sale,
.GoodsList__item .new {
  display: inline-block;
  border: 0.5px solid #d7021e;
  color: #d7021e;
  transform: scale(0.7);
  padding: 2px 4px 1px;
  line-height: 1.3;
}


#GoodsDetail {
  overflow: hidden;
  position: relative;
  padding: 1vh 0vw;
  background-image: linear-gradient(to right, rgba(222, 214, 179, 0.9) 0%, rgb(226, 217, 184) 50%, rgba(218, 209, 170, 0.8) 100%);
}

.GoodsList__remodal {
  display: flex;
  padding: 8vh 8vw 0;
  width: 90%;
  margin: auto;
}

.GoodsList__remodal div {
  width: 48%;
}

.GoodsList__remodal--detail {
  margin: 0 0 0 0vw;
}

.GoodsList__remodal--name {
  margin: 0 0 0;
  font-size: 2.2rem;
  font-weight: 600;
}

.GoodsList__remodal--price {
  margin: 0.5vw 0 0;
  font-size: 1.6rem;
  font-weight: 400;
}

.GoodsList__remodal--title {
  font-weight: 600;
  margin: 1.5vw 0 0;
  color: #548e82;
  font-size: 1.5rem;
}

.GoodsList__remodal--txt {
  margin: 0 0 0;
  font-size: 1.4rem;
}

.GoodsList__remodal--txt .size {
  display: inline-block;
  width: 15px;
  text-align: center;
}

.GoodsList__remodal--txt .size2 {
  display: inline-block;
  width: 58px;
  text-align: center;
}

.GoodsList__remodal--notices {
  margin: 1vw 0 0;
  font-size: 1.4rem;
}

.GoodsList__remodal--wrap {
  margin: .5vw 0 0;
  font-size: 1.2rem;
  border: 1px solid #3d404c;
  display: inline-block;
  padding: .1vw .5vw;
}

.GoodsList__remodal--list {
  border: 1px solid #3d404c;
  margin: 2vw auto 3vw;
  padding: 12px 10px;
  text-align: center;
  width: 15%;
}

.GoodsList__remodal--list a {
  text-decoration: none !important;
  display: block;
  color: #3d404c;
}

.GoodsList__remodal--pic ul {
  display: flex;
  /*justify-content: center;
  align-items: center;
  justify-content: space-between;*/
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.GoodsList__remodal--pic ul::before {
  order: 1;
}

.GoodsList__remodal--pic ul::before,
.GoodsList__remodal--pic ul::after {
  display: block;
  content: "";
}

.GoodsList__remodal--pic ul li {
  margin: 0 .5vw .5vw 0;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(249, 245, 231, 0.5);
}

.GoodsList__remodal--pic ul img {
  width: 78px;
  height: 78px;
}

.GoodsList__remodal--pic img.mainimg {
  width: 90%;
  display: block;
  margin-bottom: 1vw;
  background: rgba(249, 245, 231, 0.5);
}

.swiper-wrapper {
  display: flex !important;
}

.swiper-slide {
  width: 100% !important;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 80px !important;
  top: 35% !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 80px !important;
  top: 35% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #3d404c;
  font-size: 30px !important;
}


/* Presale */
.GoodsPre {
  margin-top: 3vw;
}

.GoodsPre h5 {
  font-weight: bold;
  margin: 3vw 0 1vw;
  font-size: 1.7rem;
  border-left: 4px solid #3d404c;
  padding: 0 0 0 1vw;
}


.GoodsPre p {
  font-size: 1.5rem;
}

.GoodsPre a {
  text-decoration: underline;
}

.GoodsPre .wrap {
  background: rgba(249, 245, 231, 0.5);
  padding: 1.2vw 0 0.2vw;
  margin: 1vw 0;
}

.GoodsPre .wrap ul {
  padding: 0 2.6vw 1vw;
  margin: 0;
}

.GoodsPre .wrap li {
  margin: .5vw 0;
}

.GoodsPre .wrap .salesplace {
  display: inline-block;
  width: 26vw;
}

.GoodsPre .wrap .salestime {
  display: inline-block;
  border: 1px solid #3d404c;
  font-size: 1.1rem;
  text-align: center;
  padding: 0vw .3vw .15vw;
  margin: 0 .7vw 0 0;
}

.GoodsPre .wrap p {
  padding: 0 1.5vw;
  margin: 0 0 1vw;
}

.GoodsPre .contact {
  border: 3px double #3d404c;
  padding: 1.2vw 1.5vw 0.1vw;
  margin: 5vw 2vw 0;
  font-size: 1.3rem;
}

/* -----------------------
  FANCLUB
----------------------- */


#Fanclub .Fanclub--info {
  margin: 0 auto 3vw;
  /*background-color: rgba(0, 0, 0, .05);*/
}

#Fanclub .Fanclub--info .Fanclub--join {
  width: 100%;
  margin: auto;
  padding: 0vw 0;
  text-align: center;
}

#Fanclub .Fanclub--info .Fanclub--join .tl {
  font-size: 2rem;
}

#Fanclub .Fanclub--info .Fanclub--join ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 2vw 0 1vw;
  color: #f9f5e7;
}

#Fanclub .Fanclub--info .Fanclub--join ul li {
  background-color: #3d404c;
  width: 46%;
  margin: 0 1vw;
  padding: 1vw 0 0.8vw;
  line-height: 1.2em;
}

#Fanclub .Fanclub--info .Fanclub--join ul li img {
  transition: transform 0.6s ease;
}

#Fanclub .Fanclub--info .Fanclub--join ul li img.snowslogo {
  width: 45%;
}

#Fanclub .Fanclub--info .Fanclub--join ul li img.rainslogo {
  width: 40%;
}

#Fanclub .Fanclub--info .Fanclub--join ul li :hover img {
  transform: scale(1.2);
}

#Fanclub .Fanclub--info .Fanclub--join ul li span {
  display: block;
  font-size: 1.3rem;
}

#Fanclub .Fanclub--info .Fanclub--join ul li a {
  color: white;
  display: block;
}



#Fanclub .Fanclubwrap--campaign {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 10px;
  font-weight: 600;
  margin: 0 auto 1vw;
  position: relative;
  padding: 1rem 3rem 1rem 4.3rem;
  background: conic-gradient(transparent 0deg 210deg, #3d404c 210deg 220deg, transparent 230deg 310deg, #3d404c 320deg 330deg, transparent 330deg), conic-gradient(transparent 0deg 30deg, #3d404c 30deg 40deg, transparent 50deg 130deg, #3d404c 140deg 150deg, transparent 150deg);
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 20px, 20px;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#Fanclub .Fanclubwrap--heading {
  font-weight: 600;
  text-align: center;
  padding: 1vw;
  position: relative;
  background: #548e82;
  color: rgb(249, 245, 231);
  margin: 1.5vw 0 1.5vw;
  font-size: 1.6rem;
  border-radius: 5px;
}

#Fanclub .Fanclubwrap--heading:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 30px;
  border: 12px solid transparent;
  border-top: 12px solid #548e82;
  width: 0;
  height: 0;
}

#Fanclub .Fanclubwrap .addition {
  font-size: 1.4rem;
}

#Fanclub .Fanclubwrap .addition .tl {
  border-bottom: 1px dotted #3d404c;
  font-weight: 600;
  margin: 0.5vw 0;
  padding-bottom: 0.2vw;
}

#Fanclub .Fanclubwrap--number {
  font-weight: bold;
  font-size: 1.6rem;
}

#Fanclub .Fanclubwrap {
  padding: 2vw 3vw;
  background: rgba(249, 245, 231, 0.5);
}


#Fanclub .Fanclubwrap h3 {
  font-weight: bold;
  margin: 3vw 0 1vw;
  font-size: 2rem;
  border-left: 4px solid #3d404c;
  padding: 0 0 0 1vw;
  color: #3d404c;
}

#Fanclub .Fanclubwrap .headline {
  font-weight: 500;
  text-align: center;
  font-size: 2.2rem;
  margin: .5vw 0 1.8vw;
  color: #548e82;
}

#Fanclub .Fanclubwrap li {
  background: rgba(249, 245, 231, 0.5);
  margin: 2vw auto;
  padding: 1vw 3vw 1.8vw;
  font-size: 1.5rem;
  line-height: 1.4em;
}

#Fanclub .Fanclubwrap li a {
  text-decoration: underline;
}

#Fanclub .Fanclubwrap li img {
  display: block;
  width: 20%;
  margin: 1vw auto 1vw;
}

#Fanclub .Fanclubwrap .font_s {
  font-size: 1.3rem;
}

#Fanclub .Fanclubwrap .rains_caution {
  font-size: 1.2rem;
}

#Fanclub .Fanclubwrap .fc-goods {
  margin: 2vw auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

#Fanclub .Fanclubwrap .fc-goods .price {
  font-size: 1.3rem;
}

#Fanclub .Fanclubwrap .fc-goods div {
  margin: 0 3vw;
}

#Fanclub .Fanclubwrap .fc-goods img {
  display: block;
  width: 200px;
}


/* -----------------------
  SPECIAL
----------------------- */


#Special {
  margin: 0 auto 3vw;
}

#Special a {
  text-decoration: underline;
}

#Special .Specialwrap {
  padding: 2vw 3vw;
  background: rgba(249, 245, 231, 0.5);
  margin: 2vw auto;
}

#Special .Specialwrap h3 {
  font-weight: bold;
  margin: 1.2vw 0 2vw;
  font-size: 2.2rem;
  text-align: center;
}

#Special .Specialwrap h5 {
  font-weight: bold;
  margin: 3vw 0 1vw;
  border-left: 4px solid #3d404c;
  padding: 0 0 0 1vw;
  font-size: 1.7rem;
}

#Special .Specialwrap .theme {
  font-weight: bold;
  margin: 3vw 0 1vw;
  color: #548e82;
  font-size: 1.8rem;
}

#Special .Specialwrap .schedule {
  margin: 1.5vw auto 2vw;
  font-size: 1.5rem;
}

#Special .Specialwrap .schedule .tl {
  border-bottom: 1.5px solid #3d404c;
  padding-bottom: .3vw;
}

#Special .Specialwrap .schedule .tl div {
  font-weight: normal;
}

#Special .Specialwrap .schedule li {
  margin: .5vw 0;
  border-bottom: 1px dotted #ccc;
  padding-bottom: .5vw;
}

#Special .Specialwrap .schedule div {
  display: inline-block;
  width: 30%;
  font-weight: 600;
}


#Special .Specialwrap .font_s {
  font-size: 1.4rem;
}

#Special .Specialwrap .exWrap {
  background: rgba(249, 245, 231, 0.5);
  margin: 1.5vw 0 1vw;
  padding: 1vw 1.5vw .3vw;
  font-size: 1.5rem;
}

#Special .Specialwrap .person {
  margin: 2vw 0 1vw;
}


#Special .Specialwrap .arrow {
  display: flex;
  align-items: center;
  margin: 1vw 0 1vw 1vw;
}

#Special .Specialwrap .arrow-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#Special .Specialwrap .arrow-up,
#Special .Specialwrap .arrow-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

#Special .Specialwrap .arrow-up {
  border-bottom: 10px solid #548e82;
}

#Special .Specialwrap .arrow-down {
  border-top: 10px solid #548e82;
}

#Special .Specialwrap .arrow-line {
  width: 1px;
  height: 70px;
  background-color: #548e82;
}

#Special .Specialwrap .arrow-text {
  margin-left: 10px;
  font-size: 1.2rem;
  color: #548e82;
  letter-spacing: 1px;
}


#Special .Specialwrap .post_text {
  text-align: center;
  margin: 4vw auto 2vw;
}

#Special .Specialwrap .post_button {
  background-color: #3d404c;
  width: 50%;
  text-align: center;
  margin: 0 auto 2vw;
  padding: 1.5vw;
  border-radius: 5px;
}

#Special .Specialwrap .post_button a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  display: block;
  letter-spacing: 1px;
}

#Special .Specialwrap .close {
  background-color: rgba(61, 64, 71, .12);
  color: rgba(255, 255, 255, 0.7);
  width: 50%;
  font-weight: 600;
  text-align: center;
  margin: 4vw auto 2vw;
  padding: 1.5vw;
  border-radius: 5px;
}


/* -----------------------
  FAQ
----------------------- */
#LiveManner .manner {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 4vw 0 1vw;
}

#LiveManner .manner:first-child {
  margin-top: 0;
}

#LiveManner .caution {
  margin: 2vw auto;
}

#LiveManner .caution li {
  margin: 1vw 0;
}

#LiveManner .caution .drink {
  font-size: 1.5rem;
  border: 1px solid #666;
  padding: 0.5vw 1vw;
  width: 70%;
  margin-top: 1vw;
}

#LiveManner .chapter {
  display: flex;
  align-items: center;
  margin: 1.5vw 0 0.5vw;
  font-size: 1.8rem;
  font-weight: bold;
}

#LiveManner .chapter div {
  width: 40px;
  height: 1px;
  margin-right: 1vw;
  background-color: #222;
}

.FaqList {
  margin: 3vw auto;
}

.FaqList .category {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 3vw 0 1vw;
}

.FaqList .category:first-child {
  margin-top: 0;
}

.FaqList .livehouse {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 3vw 0 1.5vw;
  color: #548e82;
}

.FaqList .chapter {
  display: flex;
  align-items: center;
  margin: 1.5vw 0 1vw;
  font-size: 1.8rem;
  font-weight: bold;
}

.FaqList .chapter div {
  width: 40px;
  height: 1px;
  margin-right: 1vw;
  background-color: #fff;
}

.FaqList .qa {
  margin-bottom: 1vw;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  background: rgba(249, 245, 231, 0.5);
  text-align: left;
}

.FaqList .qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #3d404c;
  font-weight: 600;
  cursor: pointer;
}

.FaqList .qa summary::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
  color: #3d404c;
  content: "Q";
}

.FaqList .qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #3d404c;
  border-right: 3px solid #3d404c;
  content: "";
  transition: transform 0.5s;
}

.FaqList .qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #3d404c;
  transition: transform 0.5s, opacity 0.8s;
}

.FaqList .qa p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
  color: #548e82;
  line-height: 1.2;
  content: "A";
}

.FaqList .qa[open] summary::after {
  transform: rotate(225deg);
}

.FaqList .qa[open] p {
  transform: none;
  opacity: 1;
}

/* -----------------------
  大阪振替公演
----------------------- */

#Osaka h2 {
  font-size: 2.8rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

#Osaka h3 {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin: 4vw 0 2vw;
}

/*#Osaka h5 {
font-size: 1.4rem;
font-weight: 600;
border-left: 3px solid #3d404c;
padding-left: .5vw;
padding-bottom: .1vw;
margin: 2vw 0 .5vw;
text-align: left;
}*/



#Osaka h5 {
  display: flex;
  align-items: center;
  margin: 1.5vw 0 1vw;
  font-size: 1.6rem;
  font-weight: 600;
}

#Osaka h5 div {
  width: 30px;
  height: 1px;
  margin-right: 1vw;
  background-color: #3d404c;
}


#Osaka h5:first-of-type {
  margin: .5vw 0 .5vw;
}

#Osaka .font_s {
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
}

#Osaka .Wrap {
  margin: 0.8vw 0;
  padding: 1.5vw 2vw .5vw;
  background: rgba(249, 245, 231, 0.5);
  font-size: 1.45rem;
}

#Osaka .Wrap a {
  text-decoration: underline;
}

#Osaka .Osaka__entry {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 1vw;
  border-bottom: 1px solid #3d404c;
  padding: 0 0 1vw;
  text-align: center;
}


#Osaka .Osaka__fc {
  margin: 1vw 0 2vw;
}

#Osaka .Osaka__fc div {
  border-bottom: 1px dotted #3d404c;
  padding-bottom: 0.5vw;
  margin: 0 0 0.5vw;
}

#Osaka .Osaka__fc img {
  width: 15%;
  margin: 0 1vw 0 0;
}

#Osaka .Osaka__entry--title {
  padding: .8vw 2vw;
  font-weight: normal;
  font-size: 1.4rem;
  background: #3d404c;
  color: #fff;
  margin: 1vw auto 2vw;
  text-align: center;
}


#Osaka .Osaka__entry--detail {
  padding: 1vw 2vw;
  font-weight: normal;
  font-size: 1.4rem;
  background: rgba(249, 245, 231, 0.5);
  margin: 1vw auto 2vw;
}


/* ---------------------------------- **
		Modal Window
** ---------------------------------- */
#layer_board_area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow-y: auto;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 2;
}

#layer_board_area::-webkit-scrollbar {
  display: none;
}

.layer_board_bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  background: #000;
  z-index: 0;
}

.layer_board {
  display: none;
  position: relative;
  width: 50%;
  max-width: 800px;
  margin: 5em auto;
  padding: 3vw;
  box-sizing: border-box;
  background: #fff;
  z-index: 10;
  color: #000;
}

.layer_board p {
  font-size: 1.45rem;
}

.layer_board p.osaka-title {
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
}


.asia-title {
  font-size: 5rem;
  text-align: center;
  margin: 0 0 1vw;
  font-family: "Merriweather", serif;
  font-weight: 600;
  letter-spacing: .05em;
}

.asia-title a {
  border: 0;
  color: #000;
  border-bottom: 1px dotted #333;
  padding-bottom: 2px;
}

.asia-title span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: .18em;
}

.asia {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 15px;
  font-family: "Merriweather", serif;
  font-weight: 600;
}

.asia li {
  font-size: 2.8rem;
  letter-spacing: .02em;
  font-weight: 400;
}

.asia .date {
  display: inline-block;
  font-size: 2.2rem;
}

.asia .week {
  font-size: 1.4rem;
  display: inline-block;
  text-align: center;
  margin: 0 .8vw 0 .5vw;
}

.fes {
  background: #f5f5f5;
  padding: 13px 25px 11px;
  font-size: 15px;
  border: 2px solid #ddd;
  margin: 3vw 0 0;
}


.fes li {
  margin: 5px 0;
  letter-spacing: .05em;
  font-weight: 300;
  line-height: 1.5em;
}

.fes li span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  width: 20%;
}


.fes-title {
  font-weight: 600;
  margin-bottom: 5px;
}


/* --modalWindow バツ(閉じる)ボタン-- */
.layer_board .mdl_btn_close.circle_btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  color: #ED344E;
  background-image: url("../images/btn_close.png");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 50%;
  border-radius: 50%;
  transition: 0.15s;
}



/* -----------------------
  Footer
----------------------- */
.footer {
  width: 100%;
  /* background-color: white;*/
  margin: 1vw 0 0;
  text-align: center;
  padding: 3vw 0;
}

.footer img {
  display: block;
  margin: 0 auto 1vw;
  width: 18%;
}

.footer .copyright {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

#pageTop {
  position: fixed;
  bottom: 8px;
  right: 8px;
}

#pageTop a {
  display: table-cell;
  z-index: 999;
  width: 3.3em;
  height: 3.3em;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  background: #3d404c;
}

#pageTop a:hover {
  opacity: 0.7;
}

/* -----------------------
  Vidible
----------------------- */
.visible,
.invisible {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.visible {
  opacity: 1;
}

.visible.translateY,
.invisible.translateY {
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateY {
  transform: translateY(0);
}

.visible.translateToLeft,
.invisible.translateToLeft {
  transform: translateX(10px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateToLeft {
  transform: translateX(0);
}

.visible.translateToLeft2,
.invisible.translateToLeft2 {
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateToLeft2 {
  transform: translateX(0);
}

.visible.translateToRight,
.invisible.translateToRight {
  transform: translateX(-10px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateToRight {
  transform: translateX(0);
}

.visible.translateScaleUp,
.invisible.translateScaleUp {
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateScaleUp {
  transform: scale(1);
}

.visible.translateScaleDown,
.invisible.translateScaleDown {
  transform: scale(1.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateScaleDown {
  transform: scale(1);
}

.visible.translateRotate,
.invisible.translateRotate {
  transform: rotate(360deg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateRotate {
  transform: rotate(0deg);
}

.pc {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inline-block !important;
  }
}

/*# sourceMappingURL=style250228.css.map */