@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

body {
  position: relative;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: #231815;
  background: #eeedf6;
}

.section_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border: 3px solid #231815;
  border-radius: 30px;
  padding: 60px 0;
}
@media screen and (max-width: 599px) {
  .section_inner {
    padding: 60px 20px;
  }
}

.section_ttl {
  width: fit-content;
  position: relative;
  font-family: Montserrat;
  font-size: 100px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 60px;
}
.section_ttl::before {
  content: url(../images/section_ttl.svg);
  position: absolute;
  left: -30px;
}
@media screen and (max-width: 599px) {
  .section_ttl {
    font-size: 50px;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.fix_ticket {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 10;
  width: 60px;
  height: 170px;
  border-radius: 15px 0px 0px 15px;
  border: 2px solid #fff;
  border-right: none;
  background: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fix_ticket a {
  display: block;
  color: #fff;
  font-size: 14px;
  writing-mode: vertical-rl;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.fix_ticket:hover {
  opacity: 0.7;
}

.btn_01 {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  color: #fff;
  background-color: #231815;
  font-family: Montserrat;
  font-weight: 700;
  width: fit-content;
  margin: 60px auto;
  border-radius: 50px;
}
.btn_01:hover {
  opacity: 0.7;
}

.no-pointer {
  pointer-events: none;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
header .header_pc {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  width: 100%;
  margin: 0 auto;
  padding: 25px 70px;
}
header .header_pc ul {
  display: flex;
  background-color: #fff;
  border-radius: 30px;
  border: 2px solid #231815;
  font-family: Montserrat;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  gap: 30px;
  padding: 15px 45px;
  position: relative;
}
header .header_pc .has-megamenu {
  position: relative;
}
header .header_pc .has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_pc .has-megamenu .megamenu {
  position: absolute;
  top: 100%;
  background-color: #fff;
  border: 2px solid #231815;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  min-width: 250px;
  z-index: 10000;
}
header .header_pc .has-megamenu .megamenu ul {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  padding: 15px 0;
  gap: 0;
  border-radius: 0;
}
header .header_pc .has-megamenu .megamenu ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #231815;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
  transition: all 0.3s ease;
}
header .header_pc .has-megamenu .megamenu ul li a:hover {
  background-color: #f5f5f5;
  color: #009d80;
  padding-left: 25px;
}
header .header_pc .has-megamenu .megamenu ul li:last-child a {
  border-bottom: none;
}
header .header_pc .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 10000;
}
header .header_pc .hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background-color: #231815;
  transition: all 0.3s ease-in-out;
}
header .header_pc .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header .header_pc .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .header_pc .hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media screen and (max-width: 599px) {
  header .header_pc {
    padding: 10px 20px 10px;
  }
  header .header_pc .logo img {
    height: 50px;
  }
  header .header_pc ul {
    display: none;
  }
  header .header_pc .hamburger {
    display: flex;
  }
  header .header_pc .sns {
    display: none;
  }
}
header .sp_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #dcdbec;
  z-index: 9998;
  padding: 100px 30px 50px;
  overflow-y: auto;
}
header .sp_menu.active {
  display: block;
}
header .sp_menu ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}
header .sp_menu ul .menu_kv img {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
header .sp_menu ul li {
  text-align: center;
}
header .sp_menu ul li a {
  font-family: Montserrat;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  color: #231815;
}
header .sp_menu ul li a:hover {
  opacity: 0.7;
}
header .sp_menu .contents-menu .submenu {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(35, 24, 21, 0.2);
}
header .sp_menu .contents-menu .submenu li a {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
  margin: 8px 0;
}
header .sp_menu .contents-menu .submenu li a:hover {
  opacity: 1;
  color: #009d80;
}
header .sp_menu .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-direction: row;
}
header .sp_menu .sns li a {
  display: block;
}
header .sp_menu .sns li a img {
  width: 40px;
  height: 40px;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

/*************************************************
footer
*************************************************/
.top_footer_bg {
  background: #dcdbec;
}

.footer_under {
  background: none;
}

footer {
  position: relative;
  background-color: #dcdbec;
  margin-top: 200px;
}
@media screen and (max-width: 599px) {
  footer {
    margin-top: 0;
  }
}
footer .operation {
  position: absolute;
  left: 50%;
  top: -600px;
  transform: translateX(-50%);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background-color: #fff;
  border: 3px solid #231815;
  border-radius: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  footer .operation {
    position: static;
    font-size: 14px;
    max-width: 330px;
    padding: 40px 20px 20px;
    transform: translateX(0%);
    margin-bottom: 60px;
  }
}
footer .operation h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  footer .operation h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
footer .operation p {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  footer .operation p {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  footer .operation .sponsor h3 {
    margin-bottom: 20px;
  }
}
footer .operation .spo-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  footer .operation .spo-logo.spo-xl img {
    width: 90%;
  }
}
footer .operation .spo-logo.spo-lg {
  gap: 50px;
}
@media screen and (max-width: 599px) {
  footer .operation .spo-logo.spo-lg {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  footer .operation .spo-logo.spo-lg img {
    width: 80%;
  }
}
footer .operation .spo-logo.spo-md {
  gap: 30px;
}
footer .operation .spo-logo.spo-md img {
  max-width: 150px;
  width: 100%;
  display: block;
}
footer .operation .spo-logo.spo-sm {
  gap: 15px;
}
footer .operation .spo-logo.spo-sm img {
  max-width: 120px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  footer .operation .spo-logo.spo-sm {
    flex-wrap: wrap;
  }
}
footer .footer_wrap {
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 900px 0 60px;
}
@media screen and (max-width: 599px) {
  footer .footer_wrap {
    background-position: center center;
    padding: 150px 0 100px;
  }
}
footer .footer_wrap .footer_logo {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 120px;
}
@media screen and (max-width: 599px) {
  footer .footer_wrap .footer_logo {
    max-width: 260px;
    margin-bottom: 0;
  }
}
footer .footer_wrap .footer_menu {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  footer .footer_wrap .footer_menu {
    display: none;
  }
}
footer .footer_wrap .footer_menu .sns {
  display: flex;
  gap: 45px;
}
footer .footer_wrap .footer_menu .footer_link {
  display: flex;
  gap: 30px;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

/*************************************************
navi
*************************************************/
/*************************************************
FV - SVGアニメーション用のスタイル追加
*************************************************/
.bg_purple {
  position: relative;
  background: #dcdbec;
  width: 100%;
  border-radius: 0px 0px 120px 120px;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .bg_purple {
    border-radius: 0;
  }
}
.bg_purple .kv_bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .bg_purple .kv_bg {
    background-size: contain;
  }
}

#fv {
  position: relative;
  width: 100%;
  min-height: 55.5555555556vw;
  margin-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #fv {
    min-height: 50vh;
    margin-bottom: 0px;
  }
}
#fv .kv_bg_svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  #fv .kv_bg_svg {
    height: 55vh;
  }
}
#fv .kv {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 100px;
  z-index: 5;
}
#fv .kv img {
  opacity: 0;
}
@media screen and (max-width: 599px) {
  #fv .kv {
    position: relative;
    transform: translate(0, 0);
    top: 0;
    left: 0;
  }
  #fv .kv img {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 0;
  }
}

/*************************************************
ニュース
*************************************************/
#top_news {
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #top_news {
    padding: 30px 20px 0;
    margin-bottom: 60px;
  }
}
#top_news h1 {
  text-align: center;
  color: #231815;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #top_news h1 {
    margin-bottom: 120px;
  }
}
#top_news .news_list {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px 30px;
}
@media screen and (max-width: 599px) {
  #top_news .news_list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
#top_news .news_list li {
  background-color: #fff;
  border: 3px solid #231815;
  border-radius: 15px;
  padding: 45px 15px;
  transition: all 0.3s ease;
}
#top_news .news_list li .news_date {
  display: block;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  color: #231815;
  margin-bottom: 10px;
  color: #8b88c1;
}
#top_news .news_list li p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
#top_news .news_list li img {
  display: block;
  margin-top: 30px;
  margin-right: 0;
  margin-left: auto;
}
#top_news .news_list li:hover {
  transform: translateY(-10px);
  opacity: 0.7;
}
#top_news .news_inner {
  padding: 60px;
}
@media screen and (max-width: 599px) {
  #top_news .news_inner {
    padding: 60px 20px;
  }
}
#top_news .news_inner .news_date {
  display: block;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  color: #231815;
  margin-bottom: 10px;
  color: #8b88c1;
}
#top_news .news_inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e78f95;
}
#top_news .news_inner p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
#top_news .news_inner a {
  color: #e6a52a;
  font-weight: 700;
  text-decoration: underline;
}
#top_news .news_inner .artist_list {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
#top_news .news_inner .artist_list li p {
  text-align: center;
  font-size: 14px;
}

/*************************************************
ABOUT
*************************************************/
#about {
  padding-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #about {
    padding: 60px 20px;
  }
}
#about .section_inner {
  background-image: url(../images/about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
#about .section_inner .about_text {
  margin-bottom: 125px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_text {
    margin-bottom: 60px;
  }
}
#about .section_inner .about_text p {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_text p {
    font-size: 14px;
  }
}
#about .section_inner ul {
  display: flex;
  gap: 60px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #about .section_inner ul {
    gap: 15px;
  }
}
#about .section_inner ul li {
  position: relative;
}
#about .section_inner ul li img {
  display: block;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #about .section_inner ul li img {
    display: block;
    width: 100%;
  }
}
#about .section_inner ul li:first-child::before {
  content: url(../images/about_music_jp.svg);
  position: absolute;
  top: -40px;
  left: 30px;
}
@media screen and (max-width: 599px) {
  #about .section_inner ul li:first-child::before {
    left: -10px;
    content: none;
  }
}
#about .section_inner ul li:nth-child(2)::before {
  content: url(../images/about_conference_jp.svg);
  position: absolute;
  top: -50px;
  left: 30px;
}
@media screen and (max-width: 599px) {
  #about .section_inner ul li:nth-child(2)::before {
    left: -10px;
    content: none;
  }
}
#about .section_inner ul li:nth-child(3)::before {
  content: url(../images/about_gourmet_jp.svg);
  position: absolute;
  top: -40px;
  left: 30px;
}
@media screen and (max-width: 599px) {
  #about .section_inner ul li:nth-child(3)::before {
    left: -10px;
    content: none;
  }
}

/*************************************************
マップセクション
*************************************************/
#map {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 120px;
}
#map h3 {
  text-align: center;
  color: #50b2da;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.map {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map_all {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 50px;
  color: #e78f95;
  text-decoration: underline;
}

/*************************************************
MOVIE
*************************************************/
#movie {
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #movie {
    padding: 0 20px;
  }
}
#movie .movie_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
#movie .movie_inner .movie_text {
  margin-bottom: 60px;
}
#movie .movie_inner .movie_text p {
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #movie .movie_inner .movie_text p {
    font-size: 14px;
  }
}
#movie .movie_inner .movie_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
#movie .movie_inner .movie_list .video-container {
  position: relative;
  width: 300px;
  aspect-ratio: 16/9;
  cursor: pointer;
}
#movie .movie_inner .movie_list .video-container .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#movie .movie_inner .movie_list .video-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(23, 35, 34, 0.8);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
#movie .movie_inner .movie_list .video-container .play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
#movie .movie_inner .movie_list .video-container iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

/*************************************************
CONTENTS
*************************************************/
#contents {
  position: relative;
  padding: 120px 0;
  border-radius: 0 0 120px 120px;
}
@media screen and (max-width: 599px) {
  #contents {
    padding: 60px 20px;
  }
}
#contents .contents_bg {
  background-image: url(../images/kv_bg_blur.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  border-radius: 0 0 120px 120px;
  z-index: -10;
}
@media screen and (max-width: 599px) {
  #contents .contents_bg {
    display: none;
  }
}
#contents .section_inner {
  position: relative;
  margin-top: 180px;
  padding-top: 170px;
}
@media screen and (max-width: 599px) {
  #contents .section_inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#contents .section_inner h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 599px) {
  #contents .section_inner h3 {
    font-size: 28px;
  }
}
#contents .section_inner h3 span {
  font-size: 32px;
}
@media screen and (max-width: 599px) {
  #contents .section_inner h3 span {
    font-size: 24px;
  }
}
#contents .section_inner .contents_text {
  margin-bottom: 60px;
  text-align: center;
}
#contents .section_inner .contents_text p {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 599px) {
  #contents .section_inner .contents_text p {
    font-size: 14px;
  }
}
#contents .section_inner .contents_flex {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 0px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  #contents .section_inner .contents_flex {
    flex-direction: column-reverse;
  }
}
#contents .section_inner .contents_flex .note {
  position: absolute;
  left: 0;
  bottom: 30px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  #contents .section_inner .contents_flex .note {
    bottom: -30px;
  }
}
#contents .section_inner .contents_flex table {
  max-width: 470px;
  width: 100%;
  display: block;
}
#contents .section_inner .contents_flex table tbody {
  display: block;
}
#contents .section_inner .contents_flex table tbody tr {
  display: flex;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#contents .section_inner .contents_flex table tbody tr th {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 40%;
}
@media screen and (max-width: 599px) {
  #contents .section_inner .contents_flex table tbody tr th {
    font-size: 14px;
  }
}
#contents .section_inner .contents_flex table tbody tr th div {
  width: 20px;
}
#contents .section_inner .contents_flex table tbody tr th div img {
  display: block;
  height: 25px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #contents .section_inner .contents_flex table tbody tr th div img {
    height: 20px;
  }
}
#contents .section_inner .contents_flex table tbody tr td {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #contents .section_inner .contents_flex table tbody tr td {
    font-size: 14px;
  }
}
#contents .section_inner .contents_flex table tbody tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#contents .section_inner .contents_flex img {
  display: block;
  width: 100%;
}
#contents .section_inner .space_01 {
  margin-bottom: 120px;
}
#contents .section_inner .presented {
  margin: 60px auto 0;
}
#contents .section_inner .presented span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5px;
}
#contents .section_inner .presented img {
  display: block;
  width: 100px;
  margin: 0 auto;
}
#contents .contents_music {
  border: 3px solid #009d80;
}
#contents .contents_music h3 {
  color: #009d80;
}
#contents .contents_music::before {
  position: absolute;
  content: url(../images/contents_music_icon.svg);
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  width: 200px;
  height: auto;
}
#contents .contents_conference {
  border: 3px solid #8c89c2;
}
#contents .contents_conference h3 {
  color: #8c89c2;
}
#contents .contents_conference::before {
  position: absolute;
  content: url(../images/contents_conference_icon.svg);
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  width: 200px;
  height: auto;
}
#contents .contents_gurume {
  border: 3px solid #e79096;
}
#contents .contents_gurume h3 {
  color: #e79096;
}
#contents .contents_gurume::before {
  position: absolute;
  content: url(../images/contents_gurume_icon.svg);
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  width: 200px;
  height: auto;
}
#contents .contents_other {
  border: 3px solid #50b2da;
  padding: 60px 0 !important;
  margin-top: 120px !important;
}
#contents .contents_other h3 {
  color: #50b2da;
}
@media screen and (max-width: 599px) {
  #contents .contents_other {
    padding: 60px 20px !important;
  }
}

/*************************************************
ACCESS
*************************************************/
#access {
  padding: 120px 0 520px;
  background-color: #dcdbec;
  position: relative;
}
@media screen and (max-width: 599px) {
  #access {
    padding: 60px 20px;
  }
}
#access .section_ttl {
  text-align: left;
  max-width: 900px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #access .section_ttl {
    width: fit-content;
  }
}
#access .access_inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #access .access_inner {
    display: block;
  }
}
#access .access_inner:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#access .access_inner .access_left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
#access .access_inner .access_left h3 span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #e79096;
  margin-right: 15px;
}
#access .access_inner .access_left p {
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #access .access_inner .access_left p {
    font-size: 14px;
  }
}
#access .access_inner .access_left p span {
  display: inline-block;
  padding: 5px;
  border: 1px solid #231815;
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  #access .access_inner .access_left p span {
    margin-bottom: 5px;
    font-size: 12px;
    padding: 3px;
  }
}
#access .access_inner .access_map iframe {
  width: 380px;
  height: 280px;
}
@media screen and (max-width: 599px) {
  #access .access_inner .access_map iframe {
    width: 100%;
    height: 200px;
  }
}

/*************************************************
アフタームービー
*************************************************/
.youtube-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  animation: fadeIn 0.5s ease;
}
.youtube-modal-overlay.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.youtube-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-header {
  background: #8b88c1;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modal-title {
  color: white;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .modal-title {
    font-size: 14px;
  }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-close-btn:hover {
  background: white;
  color: #000;
  transform: rotate(90deg);
}

.youtube-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .youtube-modal-container {
    width: 90%;
  }
  .modal-header {
    padding: 35px 15px 15px 15px;
  }
  .modal-close-btn {
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    font-size: 20px;
  }
}
/*************************************************
下層FV
*************************************************/
.music {
  background: #dcdbec;
}

#event_fv {
  position: relative;
  width: 100%;
  height: 69.4444444444vw;
  background-image: url(../images/main_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  #event_fv {
    height: 100%;
    background-image: url(../images/main_bg_sp.png);
    background-position: center 80px;
    background-size: contain;
    margin-bottom: 60px;
  }
}
#event_fv .event_inner {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner {
    position: initial;
    max-width: 300px;
    width: 100%;
    transform: translateX(0);
    margin: 0 auto;
    padding-top: 100px;
  }
}
#event_fv .event_inner h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner h1 {
    font-size: 32px;
  }
}
#event_fv .event_inner .event_logo {
  display: block;
  margin: 0 auto 30px;
  max-width: 302px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner .event_logo {
    max-width: 200px;
  }
}
#event_fv .event_inner p {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner p {
    font-size: 14px;
  }
}
#event_fv .event_inner .event_date {
  display: flex;
  gap: 15px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner .event_date {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }
  #event_fv .event_inner .event_date img {
    max-width: 30px;
    margin: 0 auto;
  }
}
#event_fv .event_inner .event_date div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner .event_date div {
    gap: 5px;
    justify-content: center;
  }
}
#event_fv .event_inner .event_date div span {
  font-size: 32px;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner .event_date div span {
    font-size: 16px;
  }
}
#event_fv .event_inner .event_locate {
  display: flex;
  gap: 30px;
  font-size: 22px;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #event_fv .event_inner .event_locate {
    font-size: 16px;
    gap: 15px;
  }
}

.under_contents_bg {
  background-image: url(../images/kv_bg_blur.png);
  background-repeat: no-repeat;
  background-size: auto;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .under_contents_bg {
    display: none;
  }
}

/*************************************************
音楽ライブ
*************************************************/
#artist {
  position: relative;
  margin-bottom: 145px;
}
@media screen and (max-width: 599px) {
  #artist {
    padding: 0 20px;
  }
}
#artist h2 {
  position: absolute;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  background: #009c80;
  padding: 10px 50px;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: -3%;
}
#artist h2 span {
  font-size: 30px;
}
@media screen and (max-width: 599px) {
  #artist h2 {
    font-size: 32px;
  }
}
#artist .hps {
  font-size: 26px !important;
  font-family: Montserrat;
  font-weight: 700 !important;
  color: #e6a52a !important;
  margin-bottom: 30px !important;
}
#artist .section_inner {
  padding-top: 90px;
  border: 3px solid #009c80;
}
#artist .section_inner p {
  text-align: center;
  color: rgba(35, 24, 21, 0.6);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 60px;
}
#artist .section_inner .artist_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 15px;
  margin: 0 auto 60px;
  max-width: 1020px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #artist .section_inner .artist_list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  #artist .section_inner .artist_list li:last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: 50%;
    margin: 0 auto;
  }
}
#artist .section_inner .artist_list li .artist_img {
  max-width: 330px;
  max-height: 220px;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 15px;
}
#artist .section_inner .artist_list li .artist_img img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
#artist .section_inner .artist_list li .artist_img img:hover {
  transform: scale(1.1);
}
#artist .section_inner .artist_list li p {
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  color: #231815;
  margin-bottom: 0;
}
#artist .section_inner .more {
  color: #009c80;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 22px;
  width: fit-content;
  margin: 0 auto 30px;
  border: 1px solid #009c80;
  padding: 5px 15px;
}
#artist .presented {
  margin: 60px auto 0;
}
#artist .presented span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5px;
}
#artist .presented img {
  display: block;
  width: 100px;
  margin: 0 auto;
}

#ticket {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #ticket {
    padding: 0 20px;
  }
}
#ticket h2 {
  position: absolute;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  background: #009c80;
  padding: 10px 50px;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: -3%;
}
@media screen and (max-width: 599px) {
  #ticket h2 {
    font-size: 32px;
  }
}
#ticket .section_inner {
  padding-top: 90px;
  border: 3px solid #009c80;
}
#ticket .section_inner .ticket_price {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 120px;
  gap: 160px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .ticket_price {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
}
#ticket .section_inner .ticket_price .ticket_price_inner {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .ticket_price .ticket_price_inner {
    margin: 0 auto;
  }
}
#ticket .section_inner .ticket_price .ticket_price_inner:first-child:after {
  content: "";
  width: 1px;
  height: 180px;
  background: #d9d9d9;
  position: absolute;
  right: -80px;
  top: 70%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .ticket_price .ticket_price_inner:first-child:after {
    content: none;
  }
}
#ticket .section_inner .ticket_price .ticket_price_inner h3 {
  text-align: center;
  color: #009c80;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #009c80;
  margin: 0 auto 10px;
  width: fit-content;
  padding: 5px 30px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .ticket_price .ticket_price_inner h3 {
    font-size: 26px;
  }
}
#ticket .section_inner .ticket_price .ticket_price_inner span {
  display: block;
  color: #009d80;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
}
#ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan {
  margin-top: 30px;
}
#ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div {
    gap: 15px;
    width: 100%;
  }
}
#ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div p {
    width: fit-content;
  }
}
#ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div .price {
  display: flex;
  font-family: Montserrat;
  font-size: 24px;
  align-items: baseline;
  width: fit-content;
}
#ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div .price .yen {
  color: #231815;
  font-size: 14px;
  margin: 0;
}
#ticket .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div .price .tax {
  font-size: 10px;
  color: #231815;
  margin: 0;
}
#ticket .section_inner .uketsuke img {
  display: block;
  width: fit-content;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .uketsuke img {
    width: 100%;
  }
}
#ticket .section_inner .uketsuke span {
  display: block;
  color: #dc5c55;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: 0 auto 30px;
}
#ticket .section_inner .uketsuke .uketsuke_link:hover {
  scale: 1.1;
  opacity: 0.7;
}
#ticket .section_inner .uketsuke p {
  color: rgba(35, 24, 21, 0.6);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ticket_link {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 60px auto;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .ticket_link {
    flex-direction: column;
    gap: 15px;
  }
}
.ticket_link li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  background-color: #dc5c55;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .ticket_link li a {
    font-size: 14px;
  }
}
.ticket_link li a:hover {
  opacity: 0.7;
}

/*************************************************
カンファレンス
*************************************************/
#conference {
  position: relative;
  margin-bottom: 145px;
}
@media screen and (max-width: 599px) {
  #conference {
    padding: 0 20px;
    margin-top: 60px;
  }
}
#conference h2 {
  position: absolute;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  background: #8c89c2;
  padding: 10px 50px;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
@media screen and (max-width: 599px) {
  #conference h2 {
    font-size: 32px;
    top: -30px;
  }
}
#conference .section_inner {
  padding: 60px;
  padding-top: 90px;
  border: 3px solid #8c89c2;
}
@media screen and (max-width: 599px) {
  #conference .section_inner {
    padding: 60px 20px;
  }
}
#conference .section_inner p {
  text-align: center;
  color: rgba(35, 24, 21, 0.6);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 60px;
}
#conference .section_inner .sprakers_list li {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #conference .section_inner .sprakers_list li {
    flex-direction: column;
    gap: 30px;
  }
  #conference .section_inner .sprakers_list li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
#conference .section_inner .sprakers_list li img {
  display: block;
  max-width: 300px;
  width: 100%;
}
#conference .section_inner .sprakers_list li .speaker_info {
  max-width: 614px;
  width: 100%;
}
#conference .section_inner .sprakers_list li .speaker_info h3 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdbec;
  margin-bottom: 15px;
}
#conference .section_inner .sprakers_list li .speaker_info p {
  line-height: 1.6;
  text-align: left;
  color: #333;
  margin-bottom: 30px;
}
#conference .section_inner .sprakers_list li .speaker_info .c_time {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
  background-color: #231815;
  padding: 3px 10px;
}
#conference .section_inner .sprakers_list .reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  #conference .section_inner .sprakers_list .reverse {
    flex-direction: column !important;
  }
}
#conference .section_inner .conference_tt {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
#conference .section_inner .more {
  color: #8b88c1;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 22px;
  width: fit-content;
  margin: 0 auto 30px;
  border: 1px solid #8b88c1;
  padding: 5px 15px;
}
#conference .section_inner .presented {
  margin: 60px auto 0;
}
#conference .section_inner .presented span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5px;
}
#conference .section_inner .presented img {
  display: block;
  width: 100px;
  margin: 0 auto;
}

/*************************************************
チケット
*************************************************/
#ticketpage {
  padding: 200px 0 500px;
}
@media screen and (max-width: 599px) {
  #ticketpage {
    padding: 100px 20px 0;
    margin-bottom: 200px;
  }
}
#ticketpage h1 {
  text-align: center;
  color: #231815;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 160px;
}
#ticketpage .section_inner {
  position: relative;
  border: 3px solid #009c80;
}
#ticketpage .section_inner .event_logo {
  position: absolute;
  max-width: 200px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -12%;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .event_logo {
    max-width: 140px;
    top: -80px;
  }
}
#ticketpage .section_inner h2 {
  padding-top: 60px;
  color: #009c80;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner h2 {
    font-size: 26px;
  }
}
#ticketpage .section_inner .ticket_price {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 120px;
  gap: 160px;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .ticket_price {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
}
#ticketpage .section_inner .ticket_price .ticket_price_inner {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .ticket_price .ticket_price_inner {
    margin: 0 auto;
  }
}
#ticketpage .section_inner .ticket_price .ticket_price_inner:first-child:after {
  content: "";
  width: 1px;
  height: 180px;
  background: #d9d9d9;
  position: absolute;
  right: -80px;
  top: 70%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .ticket_price .ticket_price_inner:first-child:after {
    content: none;
  }
}
#ticketpage .section_inner .ticket_price .ticket_price_inner h3 {
  text-align: center;
  color: #fff;
  background-color: #009c80;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 700;
  border-radius: 40px;
  margin: 0 auto 10px;
  width: fit-content;
  padding: 5px 30px;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .ticket_price .ticket_price_inner h3 {
    font-size: 26px;
  }
}
#ticketpage .section_inner .ticket_price .ticket_price_inner span {
  display: block;
  color: #009d80;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
}
#ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan {
  margin-top: 30px;
}
#ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div {
    gap: 15px;
    width: 100%;
  }
}
#ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div p {
    width: fit-content;
  }
}
#ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div .price {
  display: flex;
  font-family: Montserrat;
  font-size: 24px;
  align-items: baseline;
  width: fit-content;
}
#ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div .price .yen {
  color: #231815;
  font-size: 14px;
  margin: 0;
}
#ticketpage .section_inner .ticket_price .ticket_price_inner .ticket_price_plan div .price .tax {
  font-size: 10px;
  color: #231815;
  margin: 0;
}
#ticketpage .section_inner .uketsuke h4 {
  color: #e7a62a;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
#ticketpage .section_inner .uketsuke img {
  display: block;
  width: fit-content;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #ticketpage .section_inner .uketsuke img {
    width: 100%;
  }
}
#ticketpage .section_inner .uketsuke span {
  display: block;
  color: #dc5c55;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: 0 auto 30px;
}
#ticketpage .section_inner .uketsuke .uketsuke_link:hover {
  scale: 1.1;
  opacity: 0.7;
}
#ticketpage .section_inner .uketsuke p {
  color: rgba(35, 24, 21, 0.6);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/*************************************************
タイムテーブル
*************************************************/
#timetable {
  position: relative;
}
@media screen and (max-width: 599px) {
  #timetable {
    padding: 0 20px;
  }
}
#timetable h2 {
  position: absolute;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  background: #009c80;
  padding: 10px 50px;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: -1%;
}
@media screen and (max-width: 599px) {
  #timetable h2 {
    font-size: 32px;
  }
}
#timetable .section_inner {
  padding-top: 90px;
  border: 3px solid #009c80;
}
#timetable .section_inner .tt img {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 60px;
}
#timetable .section_inner .tt img:last-child {
  margin-bottom: 0;
}

/*************************************************
ニュース
*************************************************/
#news {
  padding: 200px 0 500px;
}
@media screen and (max-width: 599px) {
  #news {
    padding: 100px 20px 0;
    margin-bottom: 600px;
  }
}
#news h1 {
  text-align: center;
  color: #231815;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 160px;
}
@media screen and (max-width: 599px) {
  #news h1 {
    margin-bottom: 120px;
  }
}
#news .news_list {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  #news .news_list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
#news .news_list li {
  background-color: #fff;
  border: 2px solid #231815;
  border-radius: 15px;
  padding: 45px 15px;
  transition: all 0.3s ease;
}
#news .news_list li .news_date {
  display: block;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  color: #231815;
  margin-bottom: 10px;
  color: #8b88c1;
}
#news .news_list li p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
#news .news_list li img {
  display: block;
  margin-top: 30px;
  margin-right: 0;
  margin-left: auto;
}
#news .news_list li:hover {
  transform: translateY(-10px);
  opacity: 0.7;
}
#news .news_inner {
  padding: 60px 120px;
}
@media screen and (max-width: 599px) {
  #news .news_inner {
    padding: 60px 20px;
  }
}
#news .news_inner .news_date {
  display: block;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  color: #231815;
  margin-bottom: 10px;
  color: #8b88c1;
}
#news .news_inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e78f95;
}
#news .news_inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #009c80;
}
#news .news_inner p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
#news .news_inner .news_img {
  display: block;
  width: 100%;
}
#news .news_inner .news_img_02 {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
}
#news .news_inner .flea_market {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px;
}
#news .news_inner .conference_tt {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
#news .news_inner a {
  color: #e6a52a;
  font-weight: 700;
  text-decoration: underline;
}
#news .news_inner .artist_list {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
#news .news_inner .artist_list li p {
  text-align: center;
  font-size: 14px;
}
#news .news_inner .artist_list li img {
  display: block;
  width: 100%;
}
#news .news_inner .speaker_list li img {
  max-width: 300px;
}
#news .news_inner .event_img {
  display: block;
  width: 100%;
  margin: 0 auto 30px;
}
#news .news_inner .dancer_list {
  margin: 30px 0;
}
#news .news_inner .dancer_list li {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #news .news_inner .dancer_list li {
    flex-direction: column;
    gap: 30px;
  }
  #news .news_inner .dancer_list li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
#news .news_inner .dancer_list li img {
  display: block;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #news .news_inner .dancer_list li img {
    max-width: 100%;
  }
}
#news .news_inner .dancer_list li .dancer_info h4 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdbec;
  margin-bottom: 15px;
}
#news .news_inner .dancer_list li .dancer_info p {
  line-height: 1.6;
  text-align: left;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 14px;
}
#news .news_inner .dancer_list li .dancer_info p span {
  display: block;
}
#news .news_inner .dancer_list li .dancer_info:last-child p {
  margin-bottom: 0;
}
#news .news_inner .show_case_list {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 599px) {
  #news .news_inner .show_case_list {
    gap: 30px;
  }
}
#news .news_inner .show_case_list ul {
  list-style: disc;
}
#news .news_inner .show_case_list ul li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  list-style: inside;
}
#news .news_inner .etc {
  text-align: center;
  margin: 15px 0 0;
  font-weight: 700;
  font-size: 12px;
}
#news .news_inner .news_bg {
  background-color: #f4f4f4;
  padding: 30px;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_bg {
    padding: 30px 15px;
  }
}
#news .news_inner .news_table {
  display: block;
}
#news .news_inner .news_table tbody {
  display: block;
}
#news .news_inner .news_table tr {
  display: flex;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_table tr {
    display: block;
  }
}
#news .news_inner .news_table tr th {
  display: block;
  width: 20%;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_table tr th {
    width: 100%;
  }
}
#news .news_inner .news_table tr td {
  display: block;
  width: 75%;
}
@media screen and (max-width: 599px) {
  #news .news_inner .news_table tr td {
    width: 100%;
    font-size: 14px;
  }
}

/*************************************************
ダンス
*************************************************/
#event {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #event {
    padding: 0 20px;
  }
}
#event .section_inner {
  padding: 60px;
}
@media screen and (max-width: 599px) {
  #event .section_inner {
    padding: 60px 20px;
  }
}
#event .section_inner h2 {
  margin-bottom: 60px;
}
#event .section_inner h2 img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 auto 30px;
}
@media screen and (max-width: 599px) {
  #event .section_inner h2 img {
    width: 100%;
    height: auto;
  }
}
#event .section_inner .limitmake_logo img {
  height: 100px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .limitmake_logo img {
    width: 100%;
    height: auto;
  }
}
#event .section_inner .event_date {
  display: flex;
  gap: 15px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .event_date {
    font-size: 16px;
  }
}
#event .section_inner .event_date div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .event_date div {
    gap: 5px;
  }
}
#event .section_inner .event_date div span {
  font-size: 32px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .event_date div span {
    font-size: 20px;
  }
}
#event .section_inner h3 {
  font-family: Montserrat;
  font-weight: 700;
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #event .section_inner h3 {
    font-size: 28px;
  }
}
#event .section_inner .event_img {
  display: block;
  width: 100%;
  margin: 0 auto 30px;
}
#event .section_inner .geest {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
#event .section_inner .dancer_list {
  margin-top: 60px;
  margin-bottom: 60px;
}
#event .section_inner .dancer_list li {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .dancer_list li {
    flex-direction: column;
    gap: 30px;
  }
  #event .section_inner .dancer_list li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
#event .section_inner .dancer_list li img {
  display: block;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #event .section_inner .dancer_list li img {
    max-width: 100%;
  }
}
#event .section_inner .dancer_list li .dancer_info h4 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdbec;
  margin-bottom: 15px;
}
#event .section_inner .dancer_list li .dancer_info p {
  line-height: 1.6;
  text-align: left;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 14px;
}
#event .section_inner .dancer_list li .dancer_info p span {
  display: block;
}
#event .section_inner .dancer_list li .dancer_info:last-child p {
  margin-bottom: 0;
}
#event .section_inner .show_case_list {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .show_case_list {
    gap: 30px;
  }
}
#event .section_inner .show_case_list ul {
  list-style: disc;
}
#event .section_inner .show_case_list ul li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  list-style: inside;
}
#event .section_inner .etc {
  text-align: center;
  margin: 15px 0 0;
  font-weight: 700;
  font-size: 12px;
}
#event .section_inner .limitmake_date_wrap {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .limitmake_date_wrap {
    flex-direction: column;
    gap: 30px;
  }
}
#event .section_inner .limitmake_date_wrap .limitmake_date {
  margin-bottom: 30px;
}
#event .section_inner .limitmake_date_wrap .limitmake_date .day {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  width: fit-content;
  background-color: #e6a52a;
  margin: 0 auto 15px;
}
#event .section_inner .limitmake_date_wrap .limitmake_date .day span {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  margin-right: 10px;
}
#event .section_inner .limitmake_date_wrap .limitmake_date .event_date {
  margin-bottom: 15px;
}
#event .section_inner .limitmake_date_wrap .limitmake_date .on_day {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  opacity: 0.8;
}
#event .section_inner .rule_wrap {
  max-width: 700px;
  background-color: #e8e7e7;
  padding: 30px;
  margin: 0 auto 60px;
  border-radius: 15px;
}
#event .section_inner .rule_wrap h3 {
  margin-bottom: 30px;
}
#event .section_inner .rule_wrap h3 span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #1bb7e0;
  margin-bottom: 5px;
}
#event .section_inner .rule_wrap .battle_outline_plan .rule {
  margin-bottom: 15px;
}
#event .section_inner .rule_wrap .battle_outline_plan .rule .day {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
  background-color: #231815;
  padding: 5px 10px;
  margin: 0 auto 15px;
  width: fit-content;
  border-radius: 3px;
}
#event .section_inner .rule_wrap .battle_outline_plan .rule p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 599px) {
  #event .section_inner .rule_wrap .battle_outline_plan .rule p {
    text-align: left;
  }
}
#event .section_inner .battle_outline {
  display: flex;
  justify-content: center;
  gap: 160px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .battle_outline {
    display: block;
  }
}
#event .section_inner .battle_outline h3 {
  margin-bottom: 30px;
}
#event .section_inner .battle_outline h3 span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #1bb7e0;
  margin-bottom: 5px;
}
#event .section_inner .battle_outline .battle_outline_inner {
  position: relative;
}
@media screen and (max-width: 599px) {
  #event .section_inner .battle_outline .battle_outline_inner {
    margin-bottom: 30px;
  }
}
#event .section_inner .battle_outline .battle_outline_inner:first-child:after {
  content: "";
  width: 1px;
  height: 180px;
  background: #d9d9d9;
  position: absolute;
  right: -80px;
  top: 70%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  #event .section_inner .battle_outline .battle_outline_inner:first-child:after {
    content: none;
  }
}
#event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan {
  margin-top: 30px;
}
#event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div {
    justify-content: center;
    gap: 15px;
    width: 100%;
  }
}
#event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div p {
    width: fit-content;
  }
}
#event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div .price {
  display: flex;
  font-family: Montserrat;
  font-size: 24px;
  align-items: baseline;
  width: fit-content;
}
#event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div .price .yen {
  color: #231815;
  font-size: 14px;
  margin: 0;
}
#event .section_inner .battle_outline .battle_outline_inner .battle_outline_plan div .price .tax {
  font-size: 10px;
  color: #231815;
  margin: 0;
}
#event .section_inner .uketsuke {
  margin-bottom: 100px;
}
#event .section_inner .uketsuke h4 {
  color: #dc5c55;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
#event .section_inner .uketsuke img {
  display: block;
  width: fit-content;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #event .section_inner .uketsuke img {
    width: 100%;
  }
}
#event .section_inner .uketsuke .uketsuke_link:hover {
  scale: 1.1;
  opacity: 0.7;
}
#event .section_inner .uketsuke p {
  color: rgba(35, 24, 21, 0.6);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#event .section_inner .event_geust span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background-color: #f0e800;
  margin-right: 15px;
  margin-left: 15px;
}

/*************************************************
グルメ
*************************************************/
@media screen and (max-width: 599px) {
  #gourmet {
    padding: 0 20px;
  }
}
#gourmet .section_inner {
  padding: 60px;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner {
    padding: 60px 0px;
  }
}
#gourmet .section_inner h3 {
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #009d80;
}
#gourmet .section_inner .erea {
  display: block;
  text-align: center;
  font-weight: 700;
  color: #e78f95;
  font-size: 24px;
  margin-bottom: 15px;
}
#gourmet .section_inner .kaku {
  background-color: #fbc600;
  padding: 30px 0;
  margin-bottom: 60px;
  border-radius: 8px;
}
#gourmet .section_inner .kaku .erea {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #231815;
  margin-bottom: 15px;
}
#gourmet .section_inner .kaku p {
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
}
#gourmet .section_inner .kaku .kaku_img .logo_kaku {
  max-width: 200px;
}
#gourmet .section_inner .kaku .kaku_img img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner .kaku .kaku_img {
    padding: 0 10px;
  }
}
#gourmet .section_inner .gourmet_booth {
  display: flex;
  gap: 50px 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner .gourmet_booth {
    gap: 30px 15px;
  }
}
#gourmet .section_inner .gourmet_booth li {
  max-width: 300px;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner .gourmet_booth li {
    flex-basis: 45%;
  }
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner .gourmet_booth li .gourmet_booth_slide {
    max-width: 160px;
    width: 100%;
    max-height: 160px;
    height: 100%;
  }
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: none;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner .gourmet_booth li .gourmet_booth_slide img {
    width: 100%;
    height: 100%;
  }
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide img.active {
  display: block;
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide .slide_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide .slide_arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide .slide_arrow.prev {
  left: 10px;
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide .slide_arrow.next {
  right: 10px;
}
#gourmet .section_inner .gourmet_booth li .gourmet_booth_slide[data-count="1"] .slide_arrow {
  display: none;
}
#gourmet .section_inner .gourmet_booth li span {
  font-size: 14px;
  font-weight: 700;
}
#gourmet .section_inner .gourmet_booth li h2 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 0.8px solid #e78f95;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #gourmet .section_inner .gourmet_booth li h2 {
    font-size: 18px;
  }
}
#gourmet .section_inner .gourmet_booth li p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
#gourmet .section_inner .map_link {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #8b88c1;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 60px;
}
#gourmet .section_inner .map_link img {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 5px;
}

/*************************************************
グッズ
*************************************************/
#goods {
  padding: 200px 0 500px;
}
@media screen and (max-width: 599px) {
  #goods {
    padding: 100px 20px 0;
    margin-bottom: 600px;
  }
}
#goods h1 {
  text-align: center;
  color: #231815;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 160px;
}
@media screen and (max-width: 599px) {
  #goods h1 {
    margin-bottom: 120px;
  }
}
#goods .section_inner {
  padding: 60px;
}
#goods .section_inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-align: center;
  color: #1bb7e0;
}
#goods .section_inner .flea_market {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 30px;
}
#goods .section_inner .goods_list {
  display: flex;
  gap: 50px 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #goods .section_inner .goods_list {
    gap: 30px 15px;
  }
}
#goods .section_inner .goods_list li {
  max-width: 300px;
}
@media screen and (max-width: 599px) {
  #goods .section_inner .goods_list li {
    flex-basis: 45%;
  }
}
#goods .section_inner .goods_list li .gourmet_booth_slide {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 599px) {
  #goods .section_inner .goods_list li .gourmet_booth_slide {
    max-width: 160px;
    width: 100%;
    max-height: 160px;
    height: 100%;
  }
}
#goods .section_inner .goods_list li .gourmet_booth_slide img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: none;
}
@media screen and (max-width: 599px) {
  #goods .section_inner .goods_list li .gourmet_booth_slide img {
    width: 100%;
    height: 100%;
  }
}
#goods .section_inner .goods_list li .gourmet_booth_slide img.active {
  display: block;
}
#goods .section_inner .goods_list li .gourmet_booth_slide .slide_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
#goods .section_inner .goods_list li .gourmet_booth_slide .slide_arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}
#goods .section_inner .goods_list li .gourmet_booth_slide .slide_arrow.prev {
  left: 10px;
}
#goods .section_inner .goods_list li .gourmet_booth_slide .slide_arrow.next {
  right: 10px;
}
#goods .section_inner .goods_list li .gourmet_booth_slide[data-count="1"] .slide_arrow {
  display: none;
}
#goods .section_inner .goods_list li span {
  font-size: 14px;
  font-weight: 700;
}
#goods .section_inner .goods_list li h2 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 0.8px solid #1bb7e0 !important;
  margin-bottom: 10px !important;
  line-height: 1.5;
  text-align: left;
  color: #231815;
}
@media screen and (max-width: 599px) {
  #goods .section_inner .goods_list li h2 {
    font-size: 18px;
  }
}
#goods .section_inner .goods_list li p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.goods_list {
  display: flex;
  gap: 50px 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .goods_list {
    gap: 30px 15px;
  }
}
.goods_list li {
  max-width: 300px;
}
@media screen and (max-width: 599px) {
  .goods_list li {
    flex-basis: 45%;
  }
}
.goods_list li .gourmet_booth_slide {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 599px) {
  .goods_list li .gourmet_booth_slide {
    max-width: 160px;
    width: 100%;
    max-height: 160px;
    height: 100%;
  }
}
.goods_list li .gourmet_booth_slide img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: none;
}
@media screen and (max-width: 599px) {
  .goods_list li .gourmet_booth_slide img {
    width: 100%;
    height: 100%;
  }
}
.goods_list li .gourmet_booth_slide img.active {
  display: block;
}
.goods_list li .gourmet_booth_slide .slide_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.goods_list li .gourmet_booth_slide .slide_arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}
.goods_list li .gourmet_booth_slide .slide_arrow.prev {
  left: 10px;
}
.goods_list li .gourmet_booth_slide .slide_arrow.next {
  right: 10px;
}
.goods_list li .gourmet_booth_slide[data-count="1"] .slide_arrow {
  display: none;
}
.goods_list li span {
  font-size: 14px;
  font-weight: 700;
}
.goods_list li h2 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 0.8px solid #1bb7e0 !important;
  margin-bottom: 10px !important;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .goods_list li h2 {
    font-size: 18px;
  }
}
.goods_list li p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/*************************************************
TEE 15th Anniversary
*************************************************/
#tee {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #tee {
    padding: 0 20px;
  }
}
#tee .section_inner .tee15_img {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 30px;
}
#tee .section_inner .tee15_img img {
  display: block;
  width: 100%;
}
#tee .section_inner .contents_flex {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 30px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  #tee .section_inner .contents_flex {
    flex-direction: column-reverse;
  }
}
#tee .section_inner .contents_flex .note {
  position: absolute;
  left: 0;
  bottom: 30px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  #tee .section_inner .contents_flex .note {
    bottom: -30px;
  }
}
#tee .section_inner .contents_flex table {
  max-width: 470px;
  width: 100%;
  display: block;
}
#tee .section_inner .contents_flex table tbody {
  display: block;
}
#tee .section_inner .contents_flex table tbody tr {
  display: flex;
  align-items: center;
  padding: 15px 0;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
#tee .section_inner .contents_flex table tbody tr th {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 40%;
}
@media screen and (max-width: 599px) {
  #tee .section_inner .contents_flex table tbody tr th {
    font-size: 14px;
  }
}
#tee .section_inner .contents_flex table tbody tr th div {
  width: 20px;
}
#tee .section_inner .contents_flex table tbody tr th div img {
  display: block;
  height: 25px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #tee .section_inner .contents_flex table tbody tr th div img {
    height: 20px;
  }
}
#tee .section_inner .contents_flex table tbody tr td {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #tee .section_inner .contents_flex table tbody tr td {
    font-size: 14px;
  }
}
#tee .section_inner .contents_flex table tbody tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#tee .section_inner .contents_flex img {
  display: block;
  width: 100%;
}
#tee .section_inner .credit {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

#tee_guest {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #tee_guest {
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  #tee_guest .section_inner {
    padding: 60px 20px;
  }
}
#tee_guest .section_inner h2 {
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1bb7e0;
}
@media screen and (max-width: 599px) {
  #tee_guest .section_inner h2 {
    font-size: 26px;
  }
}
#tee_guest .section_inner p {
  text-align: center;
  color: rgba(35, 24, 21, 0.6);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 60px;
}
#tee_guest .section_inner .artist_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
  margin: 0 auto 60px;
  max-width: 1020px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #tee_guest .section_inner .artist_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  #tee_guest .section_inner .artist_list li:last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  #tee_guest .section_inner .artist_list li {
    width: 100%;
  }
}
#tee_guest .section_inner .artist_list li .artist_img {
  max-width: 330px;
  max-height: 220px;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 15px;
}
#tee_guest .section_inner .artist_list li .artist_img img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  object-fit: cover;
}
#tee_guest .section_inner .artist_list li .artist_img img:hover {
  transform: scale(1.1);
}
#tee_guest .section_inner .artist_list li p {
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  color: #231815;
  margin-bottom: 0;
}
#tee_guest .section_inner .more {
  color: #1bb7e0;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 22px;
  width: fit-content;
  margin: 0 auto 30px;
  border: 1px solid #1bb7e0;
  padding: 5px 15px;
}

#tee_message {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #tee_message {
    padding: 0 20px;
  }
}
#tee_message .section_inner {
  padding: 60px;
}
@media screen and (max-width: 599px) {
  #tee_message .section_inner {
    padding: 60px 20px;
  }
}
#tee_message .section_inner h2 {
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1bb7e0;
}
@media screen and (max-width: 599px) {
  #tee_message .section_inner h2 {
    font-size: 26px;
  }
}
#tee_message .section_inner .sprakers_list li {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #tee_message .section_inner .sprakers_list li {
    flex-direction: column;
    gap: 30px;
  }
  #tee_message .section_inner .sprakers_list li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
#tee_message .section_inner .sprakers_list li img {
  display: block;
  max-width: 300px;
  width: 100%;
}
#tee_message .section_inner .sprakers_list li .speaker_info h3 {
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdbec;
  margin-bottom: 15px;
}
#tee_message .section_inner .sprakers_list li .speaker_info p {
  line-height: 1.6;
  text-align: left;
  color: #333;
}

/*************************************************
注意事項
*************************************************/
#note {
  max-width: 900px;
  width: 100%;
  margin: 50px auto 120px;
}
@media screen and (max-width: 599px) {
  #note {
    padding: 0 20px;
  }
}
#note .accordion {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
}
#note .accordion-header {
  padding: 20px 25px;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  user-select: none;
}
#note .accordion-header:hover {
  background-color: #555;
}
#note .accordion-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
#note .accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
#note .accordion.active .accordion-icon {
  transform: rotate(180deg);
}
#note .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
  height: 300px;
  overflow-y: scroll;
}
#note .accordion.active .accordion-content {
  max-height: none;
  transition: max-height 0.5s ease-in;
}
#note .content-inner {
  padding: 25px;
  line-height: 1.8;
  color: #333;
  font-family: 700;
}
#note .content-inner h3 {
  color: #333;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #009c80;
}
#note .content-inner h3:first-child {
  margin-top: 0;
}
#note .content-inner p,
#note .content-inner ul li {
  margin-bottom: 12px;
  font-size: 15px;
}
#note .content-inner ul {
  padding-left: 25px;
}
#note .content-inner ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}
#note .content-inner strong {
  color: #d32f2f;
  font-weight: bold;
}
@media (max-width: 640px) {
  #note body {
    padding: 10px;
  }
  #note .accordion-header {
    padding: 15px 20px;
  }
  #note .accordion-header h2 {
    font-size: 18px;
  }
  #note .content-inner {
    padding: 20px;
  }
  #note .content-inner h3 {
    font-size: 16px;
  }
  #note .content-inner p,
  #note .content-inner ul li {
    font-size: 14px;
  }
}

.music_map p {
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
  color: #e6a52a;
}

/*************************************************
展示会
*************************************************/
#exhibition {
  position: relative;
}
@media screen and (max-width: 599px) {
  #exhibition {
    padding: 0 20px;
    margin-top: 60px;
  }
}
#exhibition h2 {
  position: absolute;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  background: #8c89c2;
  padding: 10px 50px;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
@media screen and (max-width: 599px) {
  #exhibition h2 {
    font-size: 32px;
    top: -30px;
  }
}
#exhibition .section_inner {
  padding: 60px;
  padding-top: 90px;
  border: 3px solid #8c89c2;
}
@media screen and (max-width: 599px) {
  #exhibition .section_inner {
    padding: 60px 20px;
  }
}
#exhibition .section_inner img {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 50px;
}
#exhibition .section_inner img:last-child {
  margin-bottom: 0;
}