@charset "UTF-8";
/*CSS Reset*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/*CSS Reset-end*/
html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  background: #40296D;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.p-header {
  background-color: #F8C107;
  padding: 5px 3.4375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-header.is-transparent {
  box-shadow: none;
  background-color: rgba(248, 193, 7, 0);
}
@media screen and (max-width: 768px) {
  .p-header {
    padding: 5px 26px;
  }
}
@media screen and (max-width: 768px) {
  .p-header__logo img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .p-header__logo a {
    display: flex;
    align-items: center;
  }
}
.p-header__button {
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4375rem;
  padding: 1.125rem 4rem;
  background-color: #5347FF;
  border-radius: 1.25rem;
  width: 256px;
  height: 74px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0px 3px 0 #000;
  border: 1px solid #000;
  white-space: nowrap;
}
.p-header.is-transparent .p-header__toggle:not(.is-open) .p-header__toggle-line {
  background-color: #fff;
}
.p-header__toggle-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-header__toggle-line {
    height: 2px;
  }
}
.p-header__toggle {
  width: 3.3125rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-header__toggle {
    width: 23px;
    height: 18px;
  }
}
.p-header__toggle-line:nth-child(1) {
  top: 0;
}
.p-header__toggle-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-header__toggle-line:nth-child(3) {
  bottom: 0;
}
.p-header__toggle.is-open .p-header__toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(25px);
}
@media screen and (max-width: 768px) {
  .p-header__toggle.is-open .p-header__toggle-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
}
.p-header__toggle.is-open .p-header__toggle-line:nth-child(2) {
  opacity: 0;
}
.p-header__toggle.is-open .p-header__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-25px);
}
@media screen and (max-width: 768px) {
  .p-header__toggle.is-open .p-header__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }
}

.p-global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 900;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.p-global-nav.is-open {
  display: block;
  max-width: 443px;
  padding: 130px 0 61px 27px;
  border-radius: 32px;
}
@media screen and (max-width: 768px) {
  .p-global-nav.is-open {
    padding: 90px 0 61px 27px;
  }
}
.p-global-nav li {
  margin-bottom: 1.5rem;
  padding-bottom: 0.3rem;
  text-align: left;
  list-style: none;
}
.p-global-nav a {
  display: inline-block;
  position: relative;
  color: #5E4294;
  text-decoration: none;
  display: block;
  font-size: 30px;
}
.p-global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #BD31B4;
  transition: width 0.3s ease;
}
.p-global-nav a:hover::after {
  width: 180px;
}
.p-global-nav::before {
  content: none;
}
.p-global-nav__header {
  background-color: #4B267C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.p-global-nav__header img {
  height: 2.5rem;
}
.p-global-nav__header .p-global-nav__close {
  font-size: 2rem;
  color: #fff;
}

.js-header {
  transition: background-color 0.4s ease, opacity 0.4s ease;
}

.p-footer {
  background-color: #19001C;
  padding: 160px 80px 0px 80px;
  border-radius: 65px 65px 0 0;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 48px 24px 0 24px;
    border-radius: 32px 32px 0 0;
  }
}
.p-footer__inner {
  background-color: #fff;
  padding: 56px 0;
  text-align: center;
  max-width: 1120px;
  border-radius: 32px;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    border-radius: 16px;
    padding: 24px;
    margin: 4px auto 32px auto;
  }
}
.p-footer__sponsor-title {
  font-size: 32px;
  margin-bottom: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-footer__sponsor-title {
    font-size: 18px;
  }
}
.p-footer__sponsor-text {
  font-size: 20px;
  letter-spacing: 13%;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .p-footer__sponsor-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
  }
}
.p-footer__sponsor-line {
  width: 81%;
  margin: 32px auto;
}
@media screen and (max-width: 768px) {
  .p-footer__sponsor-line {
    width: 100%;
    margin: 16px auto 19px;
  }
}
.p-footer__sponsor-logos {
  display: flex;
  gap: 23px;
  justify-content: center;
  margin-top: 32px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-footer__sponsor-logos {
    gap: 12px;
    margin-top: 16px;
  }
}
.p-footer__sponsor-logos img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-footer__sponsor-logos img {
    height: 36px;
  }
}
@media (max-width: 400px) {
  .p-footer__sponsor-logos img {
    height: 30px;
  }
}
@media (max-width: 360px) {
  .p-footer__sponsor-logos img {
    height: 26px;
  }
}
.p-footer__sponsor-buttons {
  display: flex;
  gap: 36px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-footer__sponsor-buttons {
    display: block;
  }
}
.p-footer__organizer span {
  color: white;
  display: block;
  text-align: center;
}
.p-footer__organizer-label {
  font-size: 16px;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .p-footer__organizer-label {
    display: block;
  }
}
.p-footer__organizer-name {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-footer__organizer-name {
    display: block;
  }
}
.p-footer__contact {
  display: block;
  text-align: center;
  margin-bottom: 25px;
}
.p-footer__sns-logos {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 25px;
}
.p-footer__copyright {
  color: #fff;
  font-size: 10px;
  text-align: center;
}
.p-footer__tents {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  height: 0;
}
.p-footer__tent {
  position: absolute;
  bottom: 0;
  width: 166px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-footer__tent {
    width: 60px;
  }
}
.p-footer__tent--left {
  left: 0;
}
.p-footer__tent--right {
  right: 0;
}

.l-main {
  background-color: #40296D;
  position: relative;
  overflow: hidden;
}

.l-main.p-ticket,
.l-main.p-message,
.l-main.p-artist,
.l-main.p-news,
.l-main.p-faq,
.l-main.p-notice,
.l-main.p-contact {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .l-main.p-ticket,
  .l-main.p-message,
  .l-main.p-artist,
  .l-main.p-news,
  .l-main.p-faq,
  .l-main.p-notice,
  .l-main.p-contact {
    padding-top: 0px;
  }
}
.c-box {
  position: relative;
  background-color: #E0D3FA;
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 41px 62px 60px 62px;
  border-radius: 32px;
  border: 2px solid #000;
}
@media screen and (max-width: 1024px) {
  .c-box {
    margin: 0 32px 24px 32px;
  }
}
@media screen and (max-width: 768px) {
  .c-box {
    margin: 0 28px 20px 28px;
    padding: 28px 24px;
    border-radius: 16px;
  }
}
.c-box__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-box__inner {
    margin: 0;
  }
}
.c-box__inner--contents {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-box__inner--contents {
    flex-direction: column;
  }
  .c-box__inner--contents .c-box__image {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
  .c-box__inner--contents .c-box__textblock {
    order: 2;
    width: 100%;
  }
}
.c-box__button-wrap {
  text-align: center;
}
.c-box__line {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
.c-box__title {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .c-box__title {
    font-size: 24px;
    text-align: center;
  }
}
.c-box__textblock {
  width: 416px;
}
@media screen and (max-width: 768px) {
  .c-box__textblock {
    width: 274px;
    margin: 0 auto;
  }
}
.c-box__image {
  width: 510px;
}
@media screen and (max-width: 768px) {
  .c-box__image {
    width: 274px;
    margin: 0 auto;
  }
  .c-box__image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
.c-box__text {
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-box__text {
    font-size: 13px;
    line-height: 1.5;
  }
}

.p-top .c-box {
  padding: 64px;
}
@media screen and (max-width: 768px) {
  .p-top .c-box {
    padding: 32px 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-box.artist {
    padding: 32px 20px;
  }
}
.p-top .c-box__line {
  font-size: 24px;
  line-height: 200%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .p-top .c-box__line {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 16px;
  }
}
.p-top .c-box__note {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-top .c-box__note {
    font-size: 12px;
  }
}
.p-top .p-notice .c-box {
  padding: 27px 191px;
}
@media screen and (max-width: 768px) {
  .p-top .p-notice .c-box {
    padding: 27px 52px;
  }
}

.c-box--shop .c-box__inner,
.c-box--music .c-box__inner,
.c-box--fireworks .c-box__inner {
  display: flex;
  max-width: 992px;
  margin: 0 auto;
  column-gap: 66px;
}
@media screen and (max-width: 768px) {
  .c-box--shop .c-box__inner,
  .c-box--music .c-box__inner,
  .c-box--fireworks .c-box__inner {
    display: block;
  }
}

.c-box--news .c-section__title {
  color: #000;
}

.c-box--message {
  padding: 41px 62px 20px 62px;
}
@media screen and (max-width: 768px) {
  .c-box--message {
    padding: 50px 30px 20px 30px;
  }
}
.c-box--message .c-box__inner {
  max-width: 720px;
  width: 100%;
  margin: 59px auto;
}
@media screen and (max-width: 768px) {
  .c-box--message .c-box__inner {
    margin: 18px auto;
  }
}

.c-box--notice {
  padding: 56px 64px;
}
@media screen and (max-width: 768px) {
  .c-box--notice {
    padding: 28px 24px;
  }
}

.c-box--ticket {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .c-box--ticket {
    margin-bottom: 40px;
  }
}
.c-box--ticket .c-box__line {
  text-align: left;
}

.c-box--contact {
  padding: 80px 154px;
}
@media screen and (max-width: 768px) {
  .c-box--contact {
    padding: 32px 52px;
  }
}

.c-button {
  display: inline-block;
  padding: 25px 54px;
  border: 1px solid #000;
  border-radius: 16px;
  background-color: #009684;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 0 0 #000;
  transition: all 0.2s;
  cursor: pointer;
}
.c-button:hover {
  box-shadow: 0 0 0 #000;
  transform: translateY(4px);
}
.c-button__center {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-button__center {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .c-button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
  }
}

/* -------------------------
  Modifier : 共通で使用される色別
-------------------------- */
.c-button--artist {
  background-color: #E06D2F;
  margin-right: 32px;
}

.c-button--time {
  background-color: #03A4AF;
}

.c-button--shop {
  background-color: #4704FF;
}

.c-button--music {
  background-color: #E06D2F;
}

.c-button--news {
  background-color: #BD31B4;
  margin-top: 24px;
}

.c-button--notice {
  background-color: #47ACC5;
}

.c-button--contact {
  background-color: #0883B7;
  margin-top: 20px;
  width: 240px;
}

@media screen and (max-width: 768px) {
  .c-button--artist {
    margin-right: 16px;
  }
  .c-button--contact {
    padding: 12px 17px;
    font-size: 12px;
    width: 110px;
    margin-top: 0;
  }
  .c-button--contact {
    border-radius: 6px;
  }
}
/* -------------------------
  Footer Contactボタン
-------------------------- */
.c-button--contact-footer {
  background-color: #0883B7;
  padding: 22px 65px;
}
@media screen and (max-width: 768px) {
  .c-button--contact-footer {
    padding: 8px 27px;
  }
}

/* -------------------------
  個人・法人向け（CONTACTページ）
-------------------------- */
.c-button--contact-individual,
.c-button--contact-corporate {
  padding: 20px;
  border-radius: 16px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-button--contact-individual,
  .c-button--contact-corporate {
    padding: 12px 17px;
    font-size: 11px;
    width: 200px;
    margin-bottom: 10px;
    border-radius: 6px;
  }
}

.c-button--contact-individual {
  background-color: #DA4949;
}

.c-button--contact-corporate {
  background-color: #009684;
}

/* -------------------------
  チケット用共通
-------------------------- */
.c-button--ticket,
.c-button--stay,
.c-button--stay-cottage,
.c-button--stay-hotel {
  background-color: #FA5E4B;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-button--ticket,
  .c-button--stay,
  .c-button--stay-cottage,
  .c-button--stay-hotel {
    width: 110px;
  }
}

/* チケットの派生 */
.c-button--ticket-external {
  display: inline-flex;
  background-color: #FA5E4B;
  width: 240px;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-button--ticket-external {
    width: 110px;
  }
}

.c-button--stay-cottage,
.c-button--stay-hotel {
  width: 240px;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .c-button--stay-cottage,
  .c-button--stay-hotel {
    width: 110px;
  }
}

.c-button--stay-cottage {
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .c-button--stay-cottage {
    margin-right: 24px;
  }
}

.c-button--bus-direct {
  width: 240px;
  margin-right: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-button--bus-direct {
    width: 110px;
  }
}

.c-button--bus-free {
  width: 270px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-button--bus-free {
    width: 120px;
  }
}

.c-section__title {
  font-size: 72px;
  text-align: center;
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  margin: 120px 0 80px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-section__title {
    font-size: 40px;
    margin: 95px 0 40px;
  }
}

.c-section__title.c-section__subtitle {
  font-size: 4rem;
  margin: 0 0 4rem;
}
@media screen and (max-width: 768px) {
  .c-section__title.c-section__subtitle {
    font-size: 36px;
    margin: 0 0 40px;
  }
}
.c-section__title.c-section__subtitle span {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .c-section__title.c-section__subtitle span {
    font-size: 24px;
  }
}

.c-news-item__divider {
  border: none;
  border-top: 1px solid #000;
  margin: 0;
}

.c-bg-decoration {
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-bg-decoration {
    display: none;
  }
}
.c-bg-decoration__top {
  position: absolute;
  left: -18%;
}
.c-bg-decoration__middle {
  position: absolute;
  top: 970px;
  right: -16%;
}
.c-bg-decoration__bottom {
  position: absolute;
  top: 1440px;
  left: -427px;
}
.c-bg-decoration__extra1 {
  position: absolute;
  top: 3200px;
  right: -200px;
}
.c-bg-decoration__extra2 {
  position: absolute;
  top: 4460px;
  left: -340px;
}
.c-bg-decoration__extra3 {
  position: absolute;
  top: 5440px;
  right: -200px;
}

.u-br__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br__sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-br__pc {
    display: none;
  }
}

.p-news {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-bottom: 80px;
  }
}
.p-news__list {
  list-style: none;
}
.p-news__item {
  padding: 24px 0 24px;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .p-news__item {
    padding: 20px 0;
  }
}
.p-news__link {
  text-decoration: none;
}
.p-news__item:last-child {
  border-bottom: none;
}
.p-news__date, .p-news__title {
  display: block;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .p-news__date, .p-news__title {
    margin-bottom: 0;
  }
}
.p-news__date {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #696969;
  font-family: "Oswald", sans-serif;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .p-news__date {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.p-news__title {
  font-size: 24px;
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-news__title {
    font-size: 16px;
    line-height: 23px;
  }
}

.p-pagination {
  text-align: center;
}
.p-pagination__nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-pagination__num {
  border: 1px solid #333333;
  padding: 20px;
  font-size: 30px;
  line-height: 1;
  color: #4A4A4A;
  border-radius: 12px;
  margin: 0 19px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  font-family: "Konkhmer Sleokchher", sans-serif;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-pagination__num {
    font-size: 17px;
    width: 38px;
    height: 38px;
    margin: 0 10px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 768px) {
  .p-pagination__num img {
    width: 12px;
    height: 12px;
  }
}
.p-pagination__num:hover {
  border: 1px solid #333333;
}
.p-pagination .page-numbers.current .p-pagination__num {
  background: #333333;
  color: white;
}
.p-pagination__back {
  border: 1px solid #000;
  font-size: 20px;
  padding: 25px 60px;
  color: white;
  background-color: #333333;
  text-decoration: none;
  border-radius: 17px;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  align-items: center;
  font-family: "Konkhmer Sleokchher", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-pagination__back {
    font-size: 14px;
    height: 38px;
    padding: 7px 16px;
    border-radius: 6px;
    display: inline-block;
  }
}

.p-news-detail {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-news-detail {
    padding-bottom: 80px;
  }
}
.p-news-detail__block {
  margin-bottom: 80px;
}
.p-news-detail__heading {
  text-align: left;
  font-size: 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-news-detail__heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.p-news-detail__divider {
  border: none;
  height: 1px;
  background-color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-news-detail__divider {
    margin-bottom: 24px;
  }
}
.p-news-detail__img {
  text-align: center;
  margin-bottom: 40px;
}
.p-news-detail__img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.p-top {
  position: relative;
  z-index: 0;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-top {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.p-top .p-news {
  padding-bottom: 0;
}
.p-top .p-notice {
  padding-bottom: 0;
}
.p-top .p-notice__title {
  font-size: 30px;
  margin: 0 83px 0 0px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .p-notice__title {
    font-size: 16px;
    margin: 0 0px 16px 0;
  }
}
.p-top .p-notice .c-box__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top .p-notice .c-box__inner {
    display: block;
    text-align: center;
  }
}

.p-lead {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-image: url("assets/images/bg_mountain.png");
  background-size: 155%;
  background-position: center 70%;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .p-lead {
    height: 80vh;
    background-size: 170%;
    background-position: center 68%;
    padding-top: 60px;
  }
}
@media (max-width: 430px) {
  .p-lead {
    background-image: url("assets/images/bg_sp.png");
    background-size: 200%;
    background-position: center 50%;
    height: 100vh;
  }
}
.p-lead__logo {
  padding: 10vh 0 10vh 65px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-lead__logo {
    padding: 100px 111px 80px 133px;
  }
}
@media (max-width: 430px) {
  .p-lead__logo {
    display: none;
  }
}
@media (max-width: 1728px) {
  .p-lead__logo {
    padding: 4vh 0 10vh 65px;
  }
}
.p-lead__logo img {
  display: block;
  margin: 0 auto;
  max-width: 552px;
}
@media screen and (max-width: 1024px) {
  .p-lead__logo img {
    max-width: 320px;
  }
}
@media (max-width: 430px) {
  .p-lead__logo img {
    display: none;
  }
}
.p-lead__info img {
  max-width: 621px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-lead__info img {
    max-width: 300px;
  }
}
@media (max-width: 430px) {
  .p-lead__info img {
    display: none;
  }
}

.p-top .c-section {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .p-top .c-section {
    margin-bottom: 80px;
  }
}

.p-access__map {
  width: 928px;
  border-radius: 32px;
  overflow: hidden;
  margin: 0 auto 42px;
}
@media screen and (max-width: 768px) {
  .p-access__map {
    width: 282px;
    height: 150px;
    border-radius: 16px;
    margin: 0 auto 24px;
  }
}
.p-access iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.p-access__text {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2.5rem;
  color: white;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-access__text {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
  }
}
.p-access__item {
  display: flex;
  color: white;
  gap: 1rem;
  align-items: center;
  justify-content: left;
}
@media screen and (max-width: 768px) {
  .p-access__item {
    gap: 6px;
  }
}
.p-access__item:last-child {
  margin-bottom: 0;
}
.p-access__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-access__list {
    gap: 18px;
  }
}
.p-access__label {
  gap: 0.5rem;
  border-radius: 9999px;
  display: flex;
  flex-direction: row;
  position: relative;
}
.p-access__label--train .p-access__tag, .p-access__label--bus .p-access__tag, .p-access__label--car .p-access__tag {
  padding: 10px 30px;
  border-radius: 9999px;
  border: 1px solid #000;
  padding-left: 3.8rem;
  font-size: 1.25rem;
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .p-access__label--train .p-access__tag, .p-access__label--bus .p-access__tag, .p-access__label--car .p-access__tag {
    font-size: 12px;
    padding: 3px 20px;
  }
}
.p-access__label--car .p-access__tag {
  background-color: #009684;
  padding-left: 48px;
}
@media screen and (max-width: 768px) {
  .p-access__label--car .p-access__tag {
    padding-left: 31px;
  }
}
.p-access__label--bus .p-access__tag {
  background-color: #29A3CB;
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .p-access__label--bus .p-access__tag {
    padding-left: 36px;
  }
}
.p-access__label--train .p-access__tag {
  background-color: #E93535;
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .p-access__label--train .p-access__tag {
    padding-left: 36px;
  }
}
.p-access__icon-wrap {
  background-color: white;
  padding: 12px;
  border-radius: 9999px;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-access__icon-wrap {
    width: 20px;
    height: 20px;
  }
  .p-access__icon-wrap img {
    width: 10px;
  }
}
.p-access__desc {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-access__desc {
    font-size: 14px;
  }
}
.p-access__text {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-access__text {
    margin-bottom: 28px;
  }
}
.p-access__tag {
  width: 8.25rem;
  white-space: nowrap;
  padding-left: 0.85rem;
}
@media screen and (max-width: 768px) {
  .p-access__tag {
    width: 80px;
  }
}

.c-section__body p {
  margin: 0 auto;
  width: 997px;
  font-size: 1.75rem;
  line-height: 5rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

.p-fixed-ticket {
  position: fixed;
  right: 40px;
  bottom: 80px;
  z-index: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-fixed-ticket.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .p-fixed-ticket {
    right: 20px;
    bottom: 20px;
  }
}
.p-fixed-ticket__link {
  display: flex;
  align-items: center;
  background-color: #FF6A4D;
  color: #fff;
  padding: 16px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
}
.p-fixed-ticket__link:hover {
  background-color: #FF7B5D;
}
@media screen and (max-width: 768px) {
  .p-fixed-ticket__link {
    padding: 6px 12px;
    font-size: 10px;
    line-height: 1.5;
    border-radius: 6px;
  }
}
.p-fixed-ticket__icon {
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-fixed-ticket__icon {
    display: block;
    margin-right: 0;
  }
}
.p-fixed-ticket__icon img {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-fixed-ticket__icon img {
    display: none;
  }
}

.is-preload {
  opacity: 0;
  visibility: hidden;
}

.p-faq {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding-bottom: 80px;
  }
}
.p-faq__section p {
  text-align: left;
}
.p-faq__question {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-faq__question {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.p-faq__answer {
  font-size: 16px;
  line-height: 38px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-faq__answer {
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-faq__answer-label {
  font-size: 24px;
  margin-right: 8px;
  font-weight: 600;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .p-faq__answer-label {
    font-size: 16px;
  }
}
.p-faq .banner {
  display: block;
  max-width: 380px;
  border: 1px solid #000;
  border-radius: 9px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-faq .banner {
    border-radius: 5px;
    max-width: 100%;
  }
}

.p-notice {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-notice {
    padding-bottom: 80px;
  }
}
.p-notice__section p {
  text-align: left;
}
.p-notice__heading {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-notice__heading {
    font-size: 20px;
  }
}
.p-notice__subheading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .p-notice__subheading {
    font-size: 16px;
  }
}
.p-notice__text {
  font-size: 16px;
  line-height: 2;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-notice__text {
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-notice__text--rental {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-notice__text--rental {
    margin-bottom: 32px;
  }
}
.p-notice__block {
  margin-bottom: 42px;
}
.p-notice__block:last-child {
  margin-bottom: 0;
}
.p-notice__divider {
  border: none;
  border-top: 1px solid #000;
  margin: 40px 0;
  width: 100%;
}
.p-notice .banner {
  display: block;
  max-width: 380px;
  border: 1px solid #000;
  border-radius: 9px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-notice .banner {
    border-radius: 5px;
    max-width: 100%;
  }
}

.p-message {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-message {
    padding-bottom: 80px;
  }
}
.p-message__section {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-message__section {
    margin-top: 40px;
  }
}
.p-message__text {
  text-align: left;
  font-size: 18px;
  line-height: 200%;
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-message__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 30px;
  }
}
.p-message__signature {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-message__signature {
    font-size: 20px;
    margin-bottom: 26px;
  }
}
.p-message__signature--bold {
  font-weight: 600;
}

.p-ticket {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-ticket {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.p-ticket__heading {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-ticket__heading {
    font-size: 20px;
  }
}
.p-ticket__subheading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
.p-ticket__block {
  margin-bottom: 42px;
}
.p-ticket__block:last-child {
  margin-bottom: 0;
}
.p-ticket__cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-ticket__cards {
    margin-bottom: 16px;
  }
}
.p-ticket__card {
  background: #fff;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-ticket__card {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-ticket__card {
    padding: 20px;
    border-radius: 6px;
  }
}
.p-ticket__card-title, .p-ticket__card-price {
  font-weight: 500;
  font-size: 24px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-ticket__card-title, .p-ticket__card-price {
    font-size: 18px;
  }
}
.p-ticket__card-title {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-ticket__card-title {
    margin-bottom: 8px;
  }
}
.p-ticket__card-divider {
  width: 100%;
  border-top: 1px solid #000;
  margin: 16px 0 21px 0;
}
@media screen and (max-width: 768px) {
  .p-ticket__card-divider {
    margin-bottom: 12px;
  }
}
.p-ticket__card-code {
  margin-bottom: 16px;
}
.p-ticket__card-url {
  display: flex;
  align-items: center;
}
.p-ticket__card-url img {
  width: 30px;
  display: block;
}
.p-ticket__external-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-ticket__external-buttons {
    gap: 16px;
    width: 100%;
    margin-top: 16px;
  }
}
.p-ticket__text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-ticket__text {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 16px;
  }
}
.p-ticket__text--compact {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 25px;
}
.p-ticket__text--compact.p-ticket__text--first {
  margin-top: 32px;
}
.p-ticket__text--free {
  margin: 25px auto 25px auto;
}
@media screen and (max-width: 768px) {
  .p-ticket__text--free {
    margin: 16px auto 16px auto;
  }
}
.p-ticket__text--tent {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-ticket__text--tent {
    margin-top: 25px;
  }
}
.p-ticket__text--subtitle {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-ticket__text--subtitle {
    font-size: 16px;
  }
}
.p-ticket__stay-cottage, .p-ticket__stay-hotel {
  font-size: 14px;
  align-items: center;
  margin-top: 17px;
}
.p-ticket__stay-cottage img, .p-ticket__stay-hotel img {
  width: 30px;
  display: block;
}
.p-ticket__stay-cottage a, .p-ticket__stay-hotel a {
  display: flex;
}
.p-ticket__banner img {
  width: 100%;
  display: block;
  max-width: 980px;
  border: 1px solid #000;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-ticket__banner img {
    border-radius: 5px;
  }
}
.p-ticket__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #000;
}
.p-ticket .c-box__button-wrap {
  text-align: left;
}
.p-ticket__stay-buttons {
  margin-top: 32px;
}
.p-ticket__purchase {
  font-size: 24px;
  margin-top: 25px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-ticket__purchase {
    font-size: 18px;
    margin-top: 16px;
  }
}

.p-contact {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding-bottom: 80px;
  }
}
.p-contact__field label {
  font-family: bold;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact__field label {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.p-contact__field:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-contact__field:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-contact__field input, .p-contact__field textarea {
  background: white;
  border: 2px solid #000;
  border-radius: 12px;
  max-width: 811px;
  height: 73px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-contact__field input, .p-contact__field textarea {
    height: 38px;
    border: 1px solid #000;
    border-radius: 8px;
  }
}
.p-contact__field textarea {
  height: 426px;
}
@media screen and (max-width: 768px) {
  .p-contact__field textarea {
    height: 300px;
  }
}
.p-contact__submit {
  text-align: center;
}
.p-contact input.wpcf7-submit {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact input.wpcf7-submit {
    display: block;
    margin: 0 auto;
  }
}
.p-contact__message {
  font-weight: 600;
}
.p-contact__message-heading {
  font-size: 32px;
  margin-bottom: 16px;
}
.p-contact__message-text {
  font-size: 24px;
}

.p-artist {
  position: relative;
  z-index: 0;
  padding-bottom: 150px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-artist {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.p-artist__item {
  color: white;
}
.p-artist__image {
  width: 238px;
  height: 238px;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.5rem;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .p-artist__image {
    width: 110px;
    height: 110px;
  }
}
.p-artist__image--contain {
  object-fit: contain;
}
.p-artist__image--with-bg {
  background-color: #000;
}
.p-artist__image--right {
  object-position: right;
}
.p-artist__image--left {
  object-position: left;
}
.p-artist__image--focus-top {
  object-position: center top;
}
.p-artist__name {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-artist__name {
    font-size: 12px;
  }
}
.p-artist__name--small {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-artist__name--small {
    font-size: 13px;
  }
}
.p-artist__subname {
  font-size: 10px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-artist__subname {
    font-size: 8px;
  }
}
.p-artist__dj-badge {
  display: inline-block;
  background: #e855c8;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 9999px;
  margin-right: 6px;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-artist__dj-badge {
    font-size: 12px;
    padding: 4px 6px;
  }
}
.p-artist__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 60px;
  justify-items: center;
  margin: 48px auto;
  max-width: 1120px;
}
@media screen and (max-width: 768px) {
  .p-artist__list {
    font-size: 40px;
    margin: 0 auto;
    padding: 0 16px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    column-gap: 16px;
  }
}
.p-artist__section {
  max-width: 1120px;
  margin: 0 auto;
}
.p-artist__section + .p-artist__section {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .p-artist__section + .p-artist__section {
    margin-top: 60px;
  }
}
.p-artist__section--tight {
  margin-top: 0 !important;
}
.p-artist .c-section__subtitle--night {
  display: inline-block;
  background-color: #2A87C9;
  color: #fff;
  padding: 0 40px;
  border-radius: 8px;
  border: 1px solid #000;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  line-height: 80px;
  margin: 15px auto 10px;
  text-shadow: none;
}
@media screen and (max-width: 768px) {
  .p-artist .c-section__subtitle--night {
    font-size: 16px;
    padding: 10px 20px;
    line-height: 23px;
    margin: 49px 0 40px 28px;
  }
}
.p-artist .c-section__subtitle--dj {
  display: inline-block;
  background-color: #DA45BC;
  color: #fff;
  padding: 0 40px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  line-height: 80px;
  margin: 15px auto 10px;
  text-shadow: none;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-artist .c-section__subtitle--dj {
    font-size: 16px;
    padding: 10px 20px;
    line-height: 23px;
    margin: 49px 0 40px 28px;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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