@charset "UTF-8";
body {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-bottom: 0 !important;
  color: #4b4b4b;
  padding-top: 90px;
  font-size: 16px;
  letter-spacing: calc(.02 * 1.4em);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  height: 100%;
}
#page {
  height: 100%;
}
#primary {
  height: 100%;
}
@media screen and (max-width: 768px) {
  body {
    scroll-padding-top: 71px;
  }
    p {
    font-size: 14px;
}
    ol, ul {
    font-size: 14px;
}
}
@font-face {
  font-family: "oswald";
  src: url("../fonts/Oswald-VariableFont_wght.ttf") format("truetype");
}
.oswald {
  font-family: 'oswald', sans-serif;
}
.font_normal {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif !important;
}
h1, h2, h3, h4, h5 {}
::selection {
  background-color: #e09d30;
  color: #fff;
}
.none {
  display: none;
}
/* header */
.site_title, .site_description {
  display: none;
}
.menu_toggle {
  display: none;
}
.site_header {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #b7b6b6;
  background: rgba(255, 255, 255, 0.9);
}
.site_branding {
  width: 150px;
}
.menu_right {
  display: flex;
  align-items: center;
}
.menu_wrap {
  font-family: 'oswald', sans-serif;
  margin-right: 2rem;
}
.site_header .menu_wrap {
  font-weight: 500;
}
ul.menu {
  display: flex;
  justify-content: flex-end;
}
ul.menu li {
  margin-left: 2rem;
  line-height: 1;
}
ul.menu li a {
  line-height: 1;
  white-space: nowrap;
}
#sns_menu li a {
  font-size: 0;
  width: 25px;
  height: 25px;
  display: block;
}
#sns_menu li.sns_x a {
  background: url("../images/sns_x.webp") no-repeat center / 25px;
}
#sns_menu li.sns_instagram a {
  background: url("../images/sns_instagram.webp") no-repeat center / 25px;
}
#sns_menu li.sns_youtube a {
  background: url("../images/sns_youtube.webp") no-repeat center / 25px;
}
#sns_menu li.sns_tiktok a {
  background: url("../images/sns_tiktok.webp") no-repeat center / 25px;
}
.main_navigation {
  margin-top: 10px;
}
#primary_menu {
  font-size: 2.0rem;
}
li.menu_off a {
  color: #ccc !important;
  pointer-events: none !important;
}
.main_button_wrap {
  font-family: 'oswald', sans-serif;
  font-size: 2.6rem;
  display: flex;
  font-weight: 500;
}
.main_button_wrap a {
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 2rem;
  line-height: 1;
  padding: 15px;
  color: #fff;
  vertical-align: baseline;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .main_button_wrap a:hover {
    filter: brightness(1.5);
  }
}
.main_button_wrap a:nth-of-type(2) {
  margin-right: 0;
}
.main_button_wrap a.header_ticket {
  background: url("../images/btn_bg_s.webp") no-repeat center / 100% 100%;
}
.main_button_wrap a.header_artist {
  background: url("../images/btn_bg_s.webp") no-repeat center / 100% 100%;
}
/* burger */
.menu_toggle_wrap {
  display: none;
  width: 54px;
  height: 54px;
  background: url(../images/orange.png) no-repeat center / 54px 54px;
  position: relative;
  margin-right: 2rem;
  border-radius: 10px;
}
.menu_toggle {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.menu_toggle span {
  display: block;
  position: absolute;
  left: 12px;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .3s;
}
.menu_toggle span:nth-child(1) {
  top: 15px;
}
.menu_toggle span:nth-child(2) {
  top: 25px;
}
.menu_toggle span:nth-child(3) {
  bottom: 15px;
}
.menu_toggle.open span {
  background-color: #fff;
}
.menu_toggle.open span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.menu_toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu_toggle.open span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
@media screen and (max-width: 1120px) {
  .menu_toggle_wrap {
    display: block;
  }
  .main_navigation {
    display: block;
    position: fixed;
    background: #fff;
    top: 90px;
    left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .3s all;
  }
  .main_navigation.active {
    visibility: visible;
    opacity: 1;
  }
  .main_navigation:before {
    content: '';
    display: block;
    position: fixed;
    /*background: url(../images/drawer_bg.webp) no-repeat center / cover;*/
    top: 90px;
    left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
    transform: scale(1);
  }
  #primary_menu {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    text-align: center;
  }
  #primary_menu.menu li {
    margin-left: 0;
    margin-bottom: 3rem;
  }
  #primary_menu.menu li:last-child {
    margin-bottom: 0;
  }
  .main_navigation > div {
    position: relative;
    width: 100%;
    height: calc(100% - 90px);
  }
  .sns_navigation {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  ul#sns_menu {
    display: block;
  }
  ul#sns_menu li {
    margin: 10px 0;
  }
  .site_header {
    padding-right: 0;
  }
  .main_button_wrap a:nth-of-type(2) {
    margin-right: 2rem;
  }
  #primary_menu.menu li {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 71px;
  }
  .site_header {
    height: 71px;
    z-index: 10;
    padding: 10px 0 10px 1rem;
  }
  .site_branding {
    width: 100px;
  }
  .main_button_wrap {
    height: 47px;
  }
  .main_button_wrap a {
    font-size: 1.6rem;
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .main_button_wrap a:nth-of-type(2) {
    margin-right: 0.5rem;
  }
  .menu_toggle {
        width: 47px;
        height: 47px;
    }
  .menu_toggle_wrap {
    margin-right: 1rem;
    width: 47px;
    height: 47px;
    background: url(../images/orange.png) no-repeat center / 47px 47px;
  }
  .menu_toggle span {
    width: 25px;
    height: 3px;
  }
    .menu_toggle span:nth-child(1) {
    top: 15px;
}
  .menu_toggle span:nth-child(2) {
    top: 22px;
  }
    .menu_toggle span:nth-child(3) {
    bottom: 15px;
}
  .menu_toggle.open span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateY(7px) rotate(-315deg);
  }
  .menu_toggle.open span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translateY(-7px) rotate(315deg);
  }
  .main_navigation {
    top: 71px;
  }
  .main_navigation:before {
    top: 71px;
  }
  .main_navigation > div {
    height: calc(100% - 71px);
  }
  #primary_menu {
    font-size: clamp(3rem, 8vw, 4rem);
  }
  #primary_menu.menu li {
    margin-bottom: 5vw;
  }
  #primary_menu.menu li:last-child {
    margin-bottom: 0;
  }
}
/* footer */
.site_footer {
  background: #000;
  position: relative;
}
.site_footer a {
  color: #fff;
}
.site_footer li.menu_off a {
  color: #5f5f5f !important;
}
.site_footer .inner {
  padding-bottom: 0;
}
.site_footer_wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 60px;
}
.site_footer ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.site_footer ul.menu li {
  margin-left: 0;
  margin-right: 2rem;
  line-height: 2;
}
section.sitemap {
  display: flex;
  align-items: center;
  font-family: "oswald", sans-serif;
  padding-left: 60px;
}
.site_footer_bottom {
  background: #000;
  color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: 14px;
  padding-bottom: 10px;
}
.site_footer_bottom > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  padding: 10px 0;
  margin-bottom: 5px;
}
.site_footer_bottom ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.site_footer_bottom ul li:before {
  content: "|";
  margin: 0 5px;
}
.site_footer_bottom ul a {
  text-decoration: none;
  vertical-align: middle;
}
.site_footer_bottom ul a img {
  height: 12px;
  vertical-align: baseline;
}
ul.archive_fes {
  display: flex;
  align-items: center;
}
ul.archive_fes a {
  color: #fff;
}
@media screen and (max-width: 650px) {
  .site_footer_wrap {
    grid-template-columns: 1fr;
  }
  .footer_logo {
    width: 70%;
    margin: 0 auto 30px;
  }
  section.sitemap {
    padding: 0;
  }
  .site_footer ul.menu li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .site_footer ul.menu {
    justify-content: center;
  }
  .site_footer_bottom {
    font-size: 12px;
  }
  .site_footer_bottom ul a img {
    height: 12px;
  }
  ul.sns-link_item {
    width: 100%;
  }
  .site_footer_bottom ul.sns-link_item li:first-child:before {
    content: none;
  }
}
/* front page */
/* mv */
.mv {
  position: sticky;
  top: 90px;
  height: calc(100vh - 90px);
  z-index: 0;
}
.mv_content {
  position: relative;
  overflow: visible;
  height: 100%;
}
.mv_left, .mv_right {
  width: 50%;
  position: absolute;
  height: 100%;
}
.mv_left {
  left: 0;
  width: calc(50% + 175px);
  height: calc(100% + 175px);
}
.mv_left img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv_right {
  right: 0;
}
.mv_right_bg {
  clip-path: inset(0 0 round 175px 0 0 0);
  background: #fff;
  width: 100%;
  height: 100%;
}
.mv_right .round_out_bottomLeft {
  bottom: 0;
  left: -175px;
  transform: rotate(0deg);
}
.sp_round {
  display: none;
}
.mv_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
}
h1.mv_logo_wrap {
  position: relative;
  padding-top: 48%;
  margin-top: 0;
  margin-bottom: 5px;
}
.mv_logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.logo_01 {
  z-index: 2;
}
.logo_02 {
  z-index: 1;
}
.logo_03 {
  z-index: 3;
}
.mv_menu img {
  width: 100%;
  vertical-align: middle;
}
ul.description_link {
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  display: flex;
  flex-wrap: wrap;
}
ul.description_link li {
  width: calc(100% / 3);
}
ul.description_link li a {
  display: block;
  background: #fff;
  border: solid 2px #424242;
  box-sizing: content-box;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #424242;
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 1.5rem);
  padding: 0.5rem 0;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .mv_right .round_out_bottomLeft {
    left: -100px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: calc(100dvh - 71px);
    top: 71px;
  }
}
@media screen and (max-width: 650px) {
  .mv_content {
    height: 100%;
  }
  .mv_left, .mv_right {
    width: 100%;
    height: 50%;
  }
  .mv_left {
    height: 100%;
    background-size: cover;
    background-position-y: -100px;
  }
  .mv_left::after {
    content: none;
  }
  .mv_left img {
    top: calc(50% - 71px);
  }
  .mv_right {
    height: auto;
    top: auto;
    bottom: 0;
  }
  .mv_right_bg {
    clip-path: inset(0 0 round 100px 0 0 0);
  }
  .mv_right::before {
    position: absolute;
    display: block;
    content: '';
    background: url(../images/round_lb.svg) right bottom / 100px 100% no-repeat;
    width: 100px;
    height: 100px;
    top: -100px;
    left: auto;
    right: 0;
    bottom: auto;
  }
  .mv_box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 35px 35px;
    box-sizing: border-box;
  }
  .mv_right .round_out_bottomLeft {
    left: auto;
    right: 0;
    bottom: auto;
    top: -100px;
  }
}
@media screen and (max-width: 500px) {
  .mv_left {
    background-position-y: -75px;
  }
  .mv_right_bg {
    clip-path: inset(0 0 round 75px 0 0 0);
  }
  .mv_right .round_out_bottomLeft {
    top: -75px;
  }
}
.delay-01s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.delay-02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.delay-04s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.delay-06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.delay-09s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.delay-12s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.delay-25s {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.ease-in {
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.ease-in-out {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes blurIn {
  0% {
    -webkit-transform: translate3d(50px, 50px, 0);
    opacity: 0;
    transform: translate3d(50px, 50px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  -webkit-animation-name: blurIn;
  animation-name: blurIn;
  animation-duration: 3s !important;
}
@-webkit-keyframes fadeInUpSmall {
  0% {
    -webkit-transform: translate3d(0, 50px, 0);
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUpSmall {
  0% {
    -webkit-transform: translate3d(0, 50px, 0);
    opacity: 0;
    transform: translate3d(0px, 50px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}
@-webkit-keyframes fadeInDownSmall {
  0% {
    -webkit-transform: translate3d(0, -50px, 0);
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDownSmall {
  0% {
    -webkit-transform: translate3d(0, -50px, 0);
    opacity: 0;
    transform: translate3d(0px, -50px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownSmall {
  -webkit-animation-name: fadeInDownSmall;
  animation-name: fadeInDownSmall;
}
@-webkit-keyframes fadeInRightSmall {
  0% {
    -webkit-transform: translate3d(50px, 0, 0);
    opacity: 0;
    transform: translate3d(50px, 0, 0)
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0)
  }
}
@keyframes fadeInRightSmall {
  0% {
    -webkit-transform: translate3d(50px, 0, 0);
    opacity: 0;
    transform: translate3d(50px, 0, 0)
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0)
  }
}
.fadeInRightSmall {
  -webkit-animation-name: fadeInRightSmall;
  animation-name: fadeInRightSmall;
}
/* mv end */
/* section */
.inner {
  max-width: 1550px;
  min-width: calc(100% - 350px);
}
.inner {
  padding: 100px 20px;
}
@media screen and (min-width: 901px) {
  .inner {
    padding: 150px 175px;
  }
}
.fadein_up {
  opacity: 0;
  transform: translateY(30px); /* 下に30pxよけておく */
}
h1.section_title, h2.section_title {
  font-family: 'oswald', sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 500;
  margin-bottom: 60px;
}
.section_title {
  overflow: hidden;
  perspective: 800px;
  display: flex;
  align-items: center;
}
.section_title span.char {
  display: inline-block;
  opacity: 0;
  transform-origin: center;
  transform-style: preserve-3d;
}
.section_title .section_title_sub {
  display: inline-block;
  opacity: 0;
  font-size: 40%;
  margin-left: 30px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 600px) {
  .section_title .section_title_sub {
    margin-left: 15px;
  }
}
.round_wrap {
  position: relative;
}
.round_item {
  width: 175px;
  height: 175px;
  background: #000;
  mask-image: url(../images/round_item.svg);
  position: absolute;
  z-index: 1;
}
.round_out_topLeft {
  top: -175px;
  left: 0;
  transform: rotate(90deg);
}
.round_out_bottomLeft {
  bottom: -175px;
  left: 0;
  transform: rotate(180deg);
}
.round_out_topRight {
  top: -175px;
  right: 0;
}
.round_out_bottomRight {
  bottom: -175px;
  right: 0;
  transform: rotate(270deg);
}
.round_baige {
  background: #f9f2e5;
}
.round_white {
  background: #ffffff;
}
.round_in_topLeft {
  border-top-left-radius: 175px;
}
.round_in_bottomLeft {
  border-bottom-left-radius: 175px;
}
.round_in_topRight {
  border-top-right-radius: 175px;
}
.round_in_bottomRight {
  border-bottom-right-radius: 175px;
}
.round_over {
  margin-top: -175px;
  margin-bottom: -175px;
  z-index: 0;
  padding: 175px 0;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 100px 20px;
  }
  .round_item {
    width: 100px;
    height: 100px;
  }
  .round_out_topLeft {
    top: -100px;
  }
  .round_out_bottomLeft {
    bottom: -100px;
  }
  .round_out_topRight {
    top: -100px;
  }
  .round_out_bottomRight {
    bottom: -100px;
  }
  .round_in_topLeft {
    border-top-left-radius: 100px;
  }
  .round_in_bottomLeft {
    border-bottom-left-radius: 100px;
  }
  .round_in_topRight {
    border-top-right-radius: 100px;
  }
  .round_in_bottomRight {
    border-bottom-right-radius: 100px;
  }
  .round_over {
    margin-top: -100px;
    margin-bottom: -100px;
    padding: 100px 0;
  }
}
@media screen and (max-width: 500px) {
  .round_item {
    width: 75px;
    height: 75px;
  }
  .round_out_topLeft {
    top: -75px;
  }
  .round_out_bottomLeft {
    bottom: -75px;
  }
  .round_out_topRight {
    top: -75px;
  }
  .round_out_bottomRight {
    bottom: -75px;
  }
  .round_in_topLeft {
    border-top-left-radius: 75px;
  }
  .round_in_bottomLeft {
    border-bottom-left-radius: 75px;
  }
  .round_in_topRight {
    border-top-right-radius: 75px;
  }
  .round_in_bottomRight {
    border-bottom-right-radius: 75px;
  }
  .round_over {
    margin-top: -75px;
    margin-bottom: -75px;
    padding: 75px 0;
  }
}
/* section end */
/* top info */
.top_information {
  background: #f9f2e5;
  z-index: 1;
}
.info_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 50px;
  margin-bottom: 60px;
}
.info_col_first {
  grid-column: 1 / -1;
}
.info_col {
  display: flex;
}
.info_thumb {
  width: 30%;
}
.info_thumb_wrap a {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  width: 100%;
}
.info_col_first .info_thumb_wrap {
  border-radius: 20px;
}
.info_thumb_wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
}
@media screen and (min-width: 768px) {
  .info_thumb_wrap a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.info_content {
  width: 70%;
  padding-left: 30px;
}
p.info_date {
  font-family: 'oswald', sans-serif;
}
h3.info_title {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  margin-bottom: 12px;
}
.info_col_first h3.info_title {
  font-size: clamp(1.6rem, 2vw, 2.6rem);
}
p.info_excerpt {
  margin-bottom: 12px;
}
a.info_readmore {
  font-family: 'oswald', sans-serif;
  font-size: 18px;
  border-bottom: solid 2px;
}
.view_more_wrap {
  text-align: center;
}
.view_more_wrap a, .view_more_wrap button {
  display: inline-block;
  line-height: 1;
  padding: 15px 60px;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 10px;
  background: url(../images/btn_bg_m.webp) no-repeat center / 100% 100%;
  font-family: 'oswald', sans-serif;
  font-size: 2.6rem;
  cursor: pointer;
  border: none;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .view_more_wrap a:hover, .view_more_wrap button:hover {
    filter: brightness(1.5);
  }
}
@media screen and (max-width: 600px) {
  p.info_excerpt {
    display: none;
  }
  .info_wrap {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
  a.info_readmore {
    font-size: 16px;
  }
}
/* top_history */
.top_history {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bg_zoom_img {
  position: absolute;
  inset: 0;
  background-image: url('../images/sky.webp');
  background-size: cover;
  background-position: top center;
  will-change: transform;
  transform: scale(1.25);
  z-index: 1;
}
.top_history .inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.youtube_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
}
.youtube_wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video_wrap {
  width: 100%;
  max-height: 80vh;
  aspect-ratio: 9 / 16;
  display: flex;
  justify-content: center;
}

.video_wrap video {
  width: auto;
  height: 100%;
  max-width: 100%;
}
.stroke_blue {
  text-shadow: 4px 4px 0px #2486b9;
}
.history_box {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-top: 30px;
  color: #333;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
p.history_title {
  font-size: 1.8rem;
  font-family: "oswald", sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
p.history_text {
  margin-bottom: 1.5rem;
}
p.history_text:last-of-type {
  margin-bottom: 0;
}
/* top_history end */
/* artist */
.artist {
  background: #fff;
}
.artist_date {
  color: #e09d30;
  font-family: "oswald", sans-serif;
  font-size: 4.6rem;
}
.artist_date span {
  color: #333;
  font-size: 65%;
  margin-left: 5px;
}
.artist_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  column-gap: 40px;
  row-gap: 40px;
  margin-top: 20px;
  margin-bottom: 60px;
}
h3.artist_name {
  font-size: 2.2rem;
  margin-top: 10px;
  margin-bottom: 5px;
}
ul.artist_description {
  list-style: disc;
  padding-left: 30px;
}
.artist_link a {
  font-size: 12px;
  font-weight: 700;
}
.artist_link a:after {
  content: "/";
  margin: 0 5px;
}
.artist_link a:last-child:after {
  content: none;
}
.andmore {
  text-align: center;
  font-family: "oswald", sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 500;
}
.andmore_cursor {
  display: inline-block;
  margin-left: .15em;
  opacity: 1;
}
.modaal-content-container {
  padding: 0;
}
.modaal-container {
  display: block;
  max-width: 1200px;
}
.mv_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.comment_wrap {
  padding-top: 177.25%;
}
.mw450 {
  max-width: 450px;
  margin: 0 auto;
}
.mv_wrap iframe, .mv_wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.modaal-close:before, .modaal-close:after {
  background: #333333;
}
@media screen and (max-width: 650px) {
  .artist_wrap {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }
  h3.artist_name {
    font-size: 2.0rem;
  }
  .artist_ling a {
    font-size: 10px;
  }
  ul.artist_description {
    font-size: 12px;
  }
  .andmore {
    font-size: 15vw;
  }
}
/* ticket */
ul.ticket_menu {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 60px;
}
ul.ticket_menu li {
  margin-right: 50px;
  position: relative;
  display: flex;
  align-items: center;
}
ul.ticket_menu li:last-child {
  margin-right: 0;
}
ul.ticket_menu li:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_down.webp) center / 20px;
  margin-right: 10px;
}
ul.ticket_menu li.menu_off:before {
  filter: grayscale(1);
}
.ticket_col {
  position: relative;
  border: 2px solid #333;
  border-radius: 15px;
  background: #ccc;
  margin-bottom: 50px;
}
.ticket_col:last-of-type {
  margin-bottom: 0;
}
#ticket01 {
  background: #0dac67;
}
#ticket01 a.ticket_link svg {
  fill: #0dac67;
}
#ticket02 {
  background: #bb62f4;
}
#ticket02 a.ticket_link svg {
  fill: #bb62f4;
}
#ticket03 {
  background: #6284f4;
}
#ticket03 a.ticket_link svg {
  fill: #6284f4;
}
#ticket04 {
  background: #d5b871;
}
#ticket04 a.ticket_link svg {
  fill: #d5b871;
}
#ticket05 {
  background: #d57171;
}
#ticket05 a.ticket_link svg {
  fill: #d57171;
}
#ticket06 {
  background: #9F1216;
}
#ticket06 a.ticket_link svg {
  fill: #9F1216;
}
.ticket_col:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
  background: #333;
}
.ticket_col:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
  background: #333;
}
.ticket_content {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.ticket_content:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-18px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f9f2e5;
  z-index: 3;
}
.ticket_content:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-18px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f9f2e5;
  z-index: 3;
}
.ticket_col_left {
  position: absolute;
  top: 50%;
  left: -38px;
  transform: translateY(-40px);
  width: 36px;
  height: 80px;
  background: #f9f2e5;
  z-index: 4;
}
.ticket_col_right {
  position: absolute;
  top: 50%;
  right: -38px;
  transform: translateY(-40px);
  width: 36px;
  height: 80px;
  background: #f9f2e5;
  z-index: 4;
}
h3.ticket_title {
  font-size: 18px;
}
.ticket_left {
  padding-left: 40px;
  min-width: 325px;
  min-height: 100px;
  display: flex;
  align-items: center;
}
.ticket_right {
  padding: 20px 40px;
  min-height: 100px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  background-image: linear-gradient(to top, #fff, #fff 6px, transparent 6px, transparent 20px);
  background-size: 2px 10px;
  background-position: left bottom;
  background-repeat: repeat-y;
}
p.ticket_info {
  width: 100%;
  margin-bottom: 10px;
}
a.ticket_link {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 7px 14px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #333;
  line-height: 1;
  font-size: 14px;
}
a.ticket_link img, a.ticket_link svg {
  height: 20px;
}
a.ticket_link svg {
  margin-left: 7px;
}
.ticket_description {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
}
ul.attention_list li {
  padding-left: 1.8rem;
  position: relative;
}
ul.attention_list li:before {
  content: '※';
  position: absolute;
  left: 0;
}
span.ticket_sold {
  background: #ff5555;
  line-height: 1;
  padding: 3px 10px;
  margin-left: 5px;
  border-radius: 20px;
  font-size: 12px;
}
@keyframes popBounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(1.16);
  }
  100% {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 651px) {
a.ticket_link:hover {
  animation: popBounce 0.35s ease-out forwards;
}
}
@media screen and (max-width: 650px) {
  ul.ticket_menu {
    font-size: 18px;
  }
  .ticket_col {
    margin-bottom: 30px;
  }
  .ticket_content {
    flex-wrap: wrap;
  }
  .ticket_left {
    width: 100%;
    min-height: auto;
    padding: 20px 25px;
  }
  .ticket_right {
    background-image: linear-gradient(to right, #fff, #fff 6px, transparent 6px, transparent 20px);
    background-size: 10px 2px;
    background-position: left top;
    background-repeat: repeat-x;
    padding: 20px 25px;
  }
  h3.ticket_title, p.ticket_info {
    font-size: 16px;
  }
  a.ticket_link img, a.ticket_link svg {
    height: 12px;
  }
  a.ticket_link {
    font-size: 12px;
  }
}
/* ticket end */
/* access */
.top_access {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top_access .bg_zoom_img {
  position: absolute;
  inset: 0;
  background-image: url('../images/green.webp');
  background-size: cover;
  background-position: top center;
  will-change: transform;
  transform: scale(1.25);
  z-index: 1;
}
.top_access .inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.access_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
.access_col {
  background: #fff;
  border-radius: 20px;
  color: #333;
}
.access_map {
  position: relative;
  border-radius: 20px;
  padding-top: 100%;
  overflow: hidden;
}
.access_map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.access_text_wrap {
  display: flex;
  align-items: center;
  padding: 20px;
}
.access_text {
  flex-grow: 1;
}
h3.access_title {
  font-size: 24px;
  font-family: "oswald", sans-serif;
}
@media screen and (max-width: 650px) {
  .access_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .access_text_wrap {
    display: block;
  }
}
/* access end */
/* outline */
.outline {
  background: #fff;
  position: relative;
  overflow: visible;
}
.outline_list {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 10px 20px;
  padding-bottom: 75px;
  border-bottom: solid 1px;
  margin-bottom: 75px;
}
.outline_label {
  font-weight: 700;
}
.sponsorship {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  column-gap: 40px;
  row-gap: 40px;
}
.crane {
  width: 50%;
  padding-top: 31%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../images/crane.webp) no-repeat center / 100%;
  z-index: -1;
  filter: blur(10px);
  will-change: transform;
}
@media screen and (max-width: 650px) {
  .outline_list {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 14px;
  }
  .outline_value {
    margin-bottom: 20px;
  }
  .outline_value:last-of-type {
    margin-bottom: 0;
  }
  .sponsorship {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;
    row-gap: 20px;
  }
  .crane {
    width: 100%;
    padding-top: 62%;
  }
}
/* message */
.top_message {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top_message_trriger {
  position: relative;
}
.top_message_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #ffffff;
}
.top_message_bg_layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
.top_message_bg_layer.bg1 {
  background-image: url('../images/top_message01.webp');
  opacity: 1;
}
.top_message_bg_layer.bg2 {
  background-image: url('../images/top_message02.webp');
}
.message_inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px;
}
.message_inner {
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  clip-path: polygon(0 0, /* 左上 */ 100% 0, /* 右上 */ 100% calc(100% - 60px), /* 右下少し上 */ calc(100% - 60px) 100%, /* 下辺少し左 */ 0 100% /* 左下 */ );
}
.message_inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 30px solid #ababab;
  border-right-color: transparent;
  border-bottom-color: transparent;
  box-sizing: border-box;
}
h2.message_title {
  font-family: "oswald", sans-serif;
  font-size: clamp(35px, 6vw, 70px);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}
.message_inner p {
  margin-bottom: 1.5rem;
}
.message_inner p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 650px) {
  .top_message_bg_layer.bg1 {
    background-image: url('../images/top_message01sp.webp');
    opacity: 1;
  }
  .top_message_bg_layer.bg2 {
    background-image: url('../images/top_message02sp.webp');
  }
    .message_inner {
    padding: 20px;
}
}
/* message end */
/* archive, entry content */
h1.entry-title {
  font-size: clamp(2.0rem, 2vw, 2.6rem);
  margin-bottom: 4rem;
}
.entry-content h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 2vw, 2.6rem);
}
h3.wp-block-heading {
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.entry-content p {
  margin-bottom: 2rem;
}
ul.wp-block-list {
  margin-bottom: 2rem;
  list-style: disc;
  padding-left: 2.5rem;
}
ol.wp-block-list {
  margin-bottom: 2rem;
  list-style: decimal;
  padding-left: 2.5rem;
}
.entry-content a {
  color: #e09d30;
  text-decoration: underline;
}
.entry-content a.ticket_button {
  text-decoration: none;
}
.infinite-scroll-request {
  text-align: center;
  margin-bottom: 30px;
}
@keyframes rotation {
  0% {
    transform: rotateX(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.infinite-scroll-request img {
  animation: 3s linear infinite rotation;
}
.post-thumbnail {
  margin-bottom: 4rem;
}
.wp-block-image {
  margin-bottom: 4rem;
}
.single_wrap {
  display: grid;
  grid-template-columns: 4fr 2fr;
  grid-gap: 60px;
  position: relative;
  align-items: start;
}
.single_side {
  position: sticky;
  top: 120px;
}
.single_side .info_col {
  margin-bottom: 30px;
}
.single_side h3.info_title {
  font-size: 1.6rem;
  font-weight: 400;
}
.single_side p.info_date {
  font-size: 1.6rem;
}
.single_side a.info_readmore {
  font-size: 1.6rem;
}
@media screen and (max-width: 1120px) {
  .single_wrap {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
}
/* contact form*/
ul.wp-block-list.contact_box {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 20px 20px 20px 40px;
  background: #e8f1eb;
}
.mw_form {
  max-width: 1100px;
  margin: 0 auto;
}
.form_row {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.form_rabel {
  width: 175px;
  text-align: left;
  padding-right: 0;
  position: relative;
  line-height: 1.5;
}
.form_input {
  width: 400px;
  position: relative;
  display: flex;
}
.form_input select {
  font-size: 1.6rem;
  line-height: 1.5;
  outline: none;
  padding: 10px 10px 10px 10px;
  width: 100%;
  border-radius: 3px;
  border: solid 1px #ccc;
}
.mw_wp_form .error {
  position: absolute;
  color: #ff5555;
  bottom: -25px;
}
.mw_wp_form .form_text .error {
  position: static;
}
span.required {
  color: #ff5555;
  font-size: 75%;
}
.form_row.form_row_col1 {
  display: block;
}
.form_input input, .form_input textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  outline: none;
  background: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.mwform-radio-field input {
  width: auto;
  padding: 0;
}
.mwform-radio-field label {
  cursor: pointer;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 20px;
}
.mw_wp_form_confirm .form_input {
  border-radius: 3px;
  padding: 10px;
  font-size: 1.6rem;
  outline: none;
  border: solid 1px #ccc;
  background: #EEEEEE;
}
.form_row.form_row_col1 .form_input {
  width: 100%;
}
.form_row textarea {
  max-width: 100%;
}
.form_text {
  text-align: center;
}
.form_row.form_row_col1 .form_rabel {
  margin-bottom: 5px;
}
.mwform-checkbox-field label {
  cursor: pointer;
}
.form_text a {
  text-decoration: underline;
  color: #e09d30;
}
.entry_button {
  text-align: center;
}
.entry_button input[type="submit"] {
  outline: none;
  border: solid 1px #000;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  padding: 15px 75px;
  cursor: pointer;
  min-width: 325px;
  margin-bottom: 15px;
}
.contact_wrap {
  position: relative;
  overflow: hidden;
}
.contact_asset {
  position: absolute;
  display: block;
  width: 450px;
  height: 450px;
  background: #ff5555;
  border-radius: 50%;
  z-index: -1;
}
.contact_asset01 {
  top: 80px;
  right: -125px;
}
.contact_asset02 {
  top: 750px;
  left: -125px;
}
.open-area, .salesForm-area {
  display: none;
}
.form_3col .form_rabel {
  width: 175px;
}
.form_3col input {
  padding: 10px;
  font-size: 1.6rem;
  outline: none;
  background: #fff;
  width: 100%;
}
.form_3col_item {
  width: calc(100% - 175px);
  display: flex;
  justify-content: space-between;
}
.form_3col .sale_name {
  width: 69%;
  position: relative;
}
.form_3col .sale_price {
  width: 29%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry-content.inner.inner800 {
    padding-top: 0;
  }
  .form_row {
    display: block;
  }
  .form_rabel {
    width: 100%;
    text-align: left;
    padding: 0;
    margin-bottom: 5px;
  }
  .form_input {
    width: 100%;
  }
  span.required {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    margin-left: 0.5rem;
  }
  .contact_asset {
    width: 250px;
    height: 250px;
  }
  .contact_asset01 {
    top: 165px;
    right: -75px;
  }
  .contact_asset02 {
    top: 785px;
    left: -75px;
  }
  .form_3col .form_rabel {
    width: 100%;
  }
  .form_3col_item {
    width: 100%;
  }
}
/* 404 */
h1.title404 {
  font-size: 8rem;
}
/* archive */
/* page */
.entry-content h2.point_title {
  font-size: clamp(2.5rem, 4vw, 5rem) !important;
  margin: 3.5rem auto 60px;
  white-space: nowrap;
}
.entry-content h2.point_title span {
  margin: 2em 0;
  position: relative;
  padding: 0.5em 1.5em;
  border-top: solid 3px #7584b0;
  border-bottom: solid 2px #7584b0;
}
.entry-content h2.point_title span:before, .entry-content h2.point_title span:after {
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
}
.entry-content h2.point_title span:before {
  left: 10px;
  width: 3px;
  background-color: #e58f80;
}
.entry-content h2.point_title span:after {
  right: 10px;
  background-color: #e09d30;
}
h2.camp_ttl {
  position: relative;
  padding: 20px;
}
h2.camp_ttl span {}
h2.camp_ttl:before {
  content: '';
  background: url(../images/title06.webp) no-repeat center left / 175px 75px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 175px;
  height: 75px;
  z-index: -1;
}
.bg_camp {
  background: url(../images/camp_bg.webp) no-repeat right bottom / 50% auto;
}
.camp_box {
  border: dashed 1px #333;
  margin-bottom: 30px;
  padding: 20px;
  display: inline-block;
}
.mb0 .wp-block-image {
  margin-bottom: 0 !important;
}
.camp_box p {
  margin-bottom: 0;
}
.camp_box {
  border: dashed 1px #333;
  margin-bottom: 30px;
  padding: 20px;
  display: inline-block;
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
}
.camp_box h3 {
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
table.camp_table {
  max-width: 500px;
}
table.camp_table td {
  border: dotted 1px;
  padding: 10px;
  line-height: 1.5;
  font-size: clamp(1.4rem, 2vw, 14px);
}
h3.camp_onegai {
  font-size: 2.0rem;
  margin-top: 30px;
  margin-bottom: 10px;
}
.entry-content .onegai p {
  margin-bottom: 10px;
}
#map {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  margin-bottom: 60px;
}
#map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
h3.access-h3 {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  padding-left: 1rem;
  border-left: solid 4px;
}
h3.access-h3.access-h3_01 {
  border-color: #e09d30;
}
h3.access-h3.access-h3_02 {
  border-color: #8775b3;
}
h3.access-h3.access-h3_03 {
  border-color: #e58f80;
}
h3.access-h3.access-h3_04 {
  border-color: #3dbce1;
}
.caution {
  margin-top: 100px;
  position: relative;
  background: #f2f2f2;
  padding: 20px;
  margin-bottom: 60px;
}
.caution h3 {
  display: inline-block;
  background: #fff;
  color: #000;
  width: 150px;
  text-align: center;
  position: absolute;
  top: -31.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  line-height: 1.5;
  border: solid 2px #000;
}
.caution h3::before, .caution h3::after {
  content: "";
  display: block;
  height: 0.5em;
  background: repeating-linear-gradient(-45deg, black, black 0.5em, yellow 0.5em, yellow 1em);
}
.caution p {
  margin: 20px 0 0;
}
.inline-box {
  border: dashed 1px #4b4b4b;
  padding: 10px;
  line-height: 1.5;
  font-size: 125%;
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}
.inline-box span {
  position: absolute;
  right: -11.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 75%;
}
.open_table th {
  vertical-align: top;
  padding-right: 2rem;
}
h3.access-h3 span {
  font-size: 75%;
  font-weight: 400;
  margin-left: 2rem;
}
.ticket_text_sub_title span {
  word-break: keep-all;
}
.ticket_text_sub_title span.reception {
  background: #ff5555;
  color: #fff;
  line-height: 1;
  padding: 0.25rem 1rem;
}
@media screen and (max-width: 768px) {
  .inline-box {
    margin-bottom: 4rem;
  }
  .inline-box span {
    left: 0;
    bottom: -3rem;
    top: auto;
    transform: none;
  }
  .bg_camp {
    background: url(../images/camp_bg.webp) no-repeat right bottom / 100% auto;
  }
  h3.access-h3 span {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
.accordion {
  margin: 0 auto 60px;
  max-width: 80%;
}
.entry-content .accordion h2, .entry-content h2.bubble_title {
  display: flex;
  align-items: center;
  font-size: clamp(2rem, 2vw, 2.6rem);
  margin-bottom: 30px;
  margin-top: 60px;
}
.entry-content .accordion h2:before, .entry-content h2.bubble_title:before {
  content: '';
  background: url(../images/button_bg.webp) no-repeat center / 40px 40px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}
.toggle {
  display: none;
}
.faq {
  position: relative;
  margin-bottom: 1rem;
  margin-bottom: 20px;
}
.question, .anser {
  transform: translateZ(0);
  transition: all 0.3s;
}
.question {
  padding: 1rem 2.2rem 1rem 1rem;
  display: flex;
  align-items: baseline;
  color: #4b4b4b;
  cursor: pointer;
  border: dotted 1px;
}
.question span, .anser span {
  font-size: 160%;
  padding-right: 1.5rem;
  color: #e09d30;
  line-height: 0;
  font-family: 'oswald', sans-serif;
  transform: translateY(0.25rem);
}
.anser span {
  color: #e58f80;
}
.question:after, .question:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 8px;
  background-color: #4b4b4b;
  transition: all 0.3s;
}
.question:after {
  transform: rotate(90deg);
}
.anser {
  max-height: 0;
  overflow: hidden;
}
.anser div {
  margin: 0;
  padding: 2rem 1rem 2rem;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
}
.toggle:checked + .question + .anser {
  max-height: 500px;
  transition: all 1.5s;
}
.toggle:checked + .question:before {
  transform: rotate(90deg) !important;
}
.goods_info h3 {
  display: block;
  text-align: center;
  max-width: 230px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 31px;
  font-weight: 600;
  background-color: rgb(57, 117, 155);
  letter-spacing: 0.01em;
  margin: 0px auto 36px;
  padding: 10px 0px;
  border-radius: 50px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(57, 117, 155);
  border-image: initial;
}
.goods_info h4 {
  text-align: center;
  color: rgb(14, 14, 14);
  font-size: 29px;
  line-height: 42px;
  font-weight: 600;
  max-width: 600px;
  margin: 0px auto 60px;
}
.goods_info h4 span {
  font-size: 16px;
  line-height: 27px;
  font-weight: 300;
  color: rgb(14, 14, 14);
  display: block;
  padding-top: 21px;
}
.goods_wrap {
  position: relative;
  overflow: hidden;
}
.goods_wrap:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_ptn.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
  top: 0;
  left: 0;
}
.goods_wrap .wp-block-table td {
  background: #fff;
}
.floating_button {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 150px;
  z-index: 2;
}
.floating_button img {
  width: 150px;
}
.floating_button {
  display: none;
}
h2.tt_ttl {
  font-family: 'oswald', sans-serif;
  line-height: 1;
  font-size: 4rem;
}
h2.tt_ttl span {
  font-size: 75%;
  margin-left: 0.5rem;
}
.access_google {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.access_google iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
h2.wp-block-heading {
    border-bottom: solid 1px #b7b6b6;
    padding-bottom: 15px;
}
.wp-block-heading {
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 1.6;
}
h3.wp-block-heading.access_h3 span {
    font-weight: 400;
    font-size: 80%;
    margin-left: 2rem;
}
.access_car_box {
    border-bottom: solid 1px #b7b6b6;
}
.access_car_box img {
    max-width: 1000px;
    width: 100%;
}
@media screen and (max-width: 768px) {
  .accordion {
    max-width: 100%;
  }
  .goods_info h3 {
    font-size: 20px;
    margin: 0 auto 22px;
  }
  .goods_info h4 h4 {
    font-size: 26px;
    line-height: 32px;
    padding: 0 30px;
  }
  .goods_info h4 span {
    font-size: 15px;
    line-height: 26px;
  }
  .floating_button {
    width: 100px;
  }
  .floating_button img {
    width: 100px;
  }
h3.wp-block-heading.access_h3 span {
    display: block;
    margin-left: 0;
}
}