.home { color: #000;}

/* first view */
.fv {
  position: relative;
}
.fv::after {
  content: "";
  display: block;
  width: 100%;
  height: 3.6vw;
  background: url(../img/fv-bg-bottom.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.fv__item img {
  aspect-ratio: 1920 / 1080;
}
.fv .splide__arrow {
  width: auto;
  height: auto;
  background: none;
}
.fv .splide__arrow svg {
  fill: var(--white);
  width: 40px;
  height: 80px;
}
.fv .splide__pagination {
  bottom: 80px;
  column-gap: 16px;
}
.fv .splide__pagination__page {
  width: 12px;
  height: 12px;
  background: var(--white);
  border-radius: 50%;
  opacity: 1;
  margin: 0;
}
.fv .splide__pagination__page.is-active {
  background: var(--main);
  transform: scale(1);
  opacity: 1;
}
/* first view end */

/* news */
.news {
  background-color: var(--bg);
  padding-top: 0;
}
.news__title::after {
  width: 228px;
  aspect-ratio: 341 / 333;
  background-image: url(../img/title-news.png);
}
.news__box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 16px;
}
.news__item a {
  display: block;
  min-height: 340px;
  background-color: var(--white);
  border-radius: 15px;
}
.news__item a:hover {
  opacity: .7;
}
.news__item-img img {
  aspect-ratio: 300 / 188;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.news__item-text {
  color: #000;
  padding: 8px 12px;
}
.news__item-title {
  font-weight: 500;
  word-break: normal;
}
.news__item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.news__item-meta .category {
  min-width: 6em;
  color: var(--white);
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 2px;
  margin-left: 4px;
}
.news__item-meta .category.cat-news { background-color: #6D8B96;}
.news__item-meta .category.cat-event { background-color: #D4A373;}
.news__item-meta .category.cat-invite { background-color: #8A9A5B;}
.news__item-meta .category.cat-media { background-color: #B05B56;}
/* news end */

/* event */
.event {
  background: url(../img/bg1.webp) repeat-y;
  background-size: 100%;
  padding-bottom: 28vw;
}
.event::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 940;
  background: url(../img/event-bg-bottom.png) no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.event__title {
  padding-top: 135px;
}
.event__title::after {
  width: 276px;
  aspect-ratio: 437 / 282;
  background-image: url(../img/title-event.png);
  right: 1%;
}
.event__title .c-section-title-en {
  color: var(--main-d);
}
.event__img img {
  border-radius: 4vw;
  margin-bottom: 80px;
}
.event__year {
  width: max-content;
  min-width: 382px;
  background-color: var(--main);
  color: var(--white);
  font-size: 2rem;
  font-weight: var(--bold);
  text-align: center;
  letter-spacing: 0.2em;
  border-radius: 20px;
  padding: 2px 24px 4px;
  margin: 0 auto 40px;
}
.event__box {
  display: flex;
  column-gap: 16px;
  margin-bottom: 80px;
}
.event__item {
  width: 32%;
  background-color: var(--white);
  color: var(--main);
  font-weight: var(--bold);
  border: 4px solid var(--main);
  border-radius: 4vw;
  padding: 24px 1%;
}
.event__item.main {
  width: 36%;
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  padding: 24px 3%;
}
.event__head {
  font-size: 1.25rem;
  text-align: center;
  border-bottom: 2px solid var(--main);
  margin-bottom: 16px;
}
.main .event__head {
  border-color: var(--white);
  border-top: 2px solid var(--white);
}
.event__content-day {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-style: italic;
  padding: 0 4%;
}
.main .event__content-day {
  font-size: 7rem;
}
.event__content-day small {
  font-size: 1.5rem;
  letter-spacing: 0;
}
.event__content-day.end {
  width: max-content;
  margin-left: auto;
}
.event__content-day.end::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 26px solid var(--main);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-top: 22px;
  margin-bottom: 8px;
  margin-right: 8px;
  float: left;
}
.event__content-time {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}
.event__text {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 80px;
}
.event__disc {
  position: relative;
}
.event__disc::before {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  background: url(../img/disc.webp) no-repeat;
  background-size: cover;
  border-radius: 4vw;
  position: absolute;
  top: 0;
  left: 0;
}
.event__disc-content {
  padding-left: calc(35% + 32px);
  padding-top: 24px;
}
.event__disc-title {
  color: var(--main-d);
  font-size: 1.25rem;
  font-weight: var(--bold);
  margin-bottom: 16px;
}
.event__disc-link {
  text-align: right;
  margin-top: 24px;
}
/* event end */

/* about */
.about {
  background: url(../img/bg2.webp) no-repeat;
  background-size: 100% 100%;
}
.about__title {
  mix-blend-mode: multiply;
}
.about__title::after {
  width: 420px;
  aspect-ratio: 341 / 333;
  background-image: url(../img/title-about.png);
}
.about__title .c-section-title-en {
  color: var(--main-d);
}
.about__img img {
  border-radius: 4vw;
  margin-bottom: 80px;
}
.about__disc {
  position: relative;
}
.about__disc::before {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  background: url(../img/disc.webp) no-repeat;
  background-size: cover;
  border-radius: 4vw;
  position: absolute;
  top: 0;
  right: 0;
}
.about__disc-content {
  padding-right: calc(35% + 32px);
  padding-top: 48px;
}
.about__disc-title {
  color: var(--main-d);
  font-size: 1.25rem;
  font-weight: var(--bold);
  margin-bottom: 16px;
}
.about__disc-link {
  text-align: right;
  margin-top: 48px;
}
/* about end */

/* instagram */
.instagram {
  margin-top: 80px;
}
.instagram__head {
  width: 238px;
  margin-bottom: 16px;
}
.instagram__link a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 14px 56px 18px !important;
}
.instagram__link a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon-insta.png) no-repeat;
  background-size: contain;
  margin-bottom: -4px;
  margin-right: 8px;
}
/* instagram end */

/* movie */
.movie__title::after {
  width: 340px;
  aspect-ratio: 585 / 379;
  background-image: url(../img/title-movie.png);
}
.movie__box {
  padding: 0 80px 48px;
}
.movie__box .splide__slide {
  height: 50vw;
  max-height: 600px;
}
.movie__box .splide__arrow {
  width: auto;
  height: auto;
  background: none;
}
.movie__box .splide__arrow svg {
  fill: var(--gray);
  width: 40px;
  height: 80px;
}
.movie__box .splide__pagination {
  bottom: 0;
  column-gap: 16px;
}
.movie__box .splide__pagination__page {
  width: 64px;
  height: 6px;
  background: var(--gray);
  border-radius: 3px;
  opacity: 1;
  margin: 0;
}
.movie__box .splide__pagination__page.is-active {
  background: var(--main);
  transform: scale(1);
  opacity: 1;
}
/* movie end */

/* sponsor */
.sponsor__title::after {
  width: 386px;
  aspect-ratio: 579 / 326;
  background-image: url(../img/title-sponsor.png);
}
.sponsor__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5%;
  align-items: center;
}
.sponsor__item img {
  object-fit: contain;
}
.sponsor__disc {
  background: url(../img/sponsor-disc.webp) no-repeat;
  background-size: cover;
  border-radius: 4vw;
  padding: 80px 5%;
  margin-top: 80px;
}
.sponsor__disc-head {
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}
.sponsor__disc-content {
  display: flex;
  column-gap: 96px;
  justify-content: center;
}
.sponsor__disc-content a {
  min-width: 358px;
  letter-spacing: 0.05em;
  padding: 12px 40px;
}
/* sponsor end */

/* access */
.access {
  background-color: var(--bg);
}
.access__title {
  padding-top: 126px;
}
.access__title::after {
  width: 380px;
  aspect-ratio: 619 / 327;
  background-image: url(../img/title-access.png);
}
.access__map {
  margin-bottom: 80px;
}
.access__map iframe {
  height: 36vw;
}
.access__parking {
  display: flex;
  column-gap: 16px;
  margin-bottom: 80px;
}
.access__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--main-d);
  border: 6px solid var(--main-d);
  border-radius: 10px;
  padding: 16px;
}
.access__item-flex {
  display: flex;
  width: 100%;
}
.access__item-child {
  flex: 1;
  text-align: center;
  padding: 4px;
}
.access__item-child:not(:first-of-type) {
  border-left: 2px solid var(--main-d);
}
.access__item-title {
  font-size: 1.25rem;
  font-weight: var(--bold);
  margin-bottom: 16px;
}
.access__item-head {
  font-size: 1.25rem;
  font-weight: var(--bold);
}
.access__item-em {
  font-size: 2rem;
  font-weight: var(--bold);
}
.access__item-small {
  word-break: auto-phrase;
  margin-top: 16px;
}
.access__text {
  line-height: 1.8;
  margin: 8px 0;
}
.access__parking .access__item:nth-of-type(1) {
  width: 16%;
  font-size: 136px;
  font-weight: var(--bg);
  line-height: 1;
  padding-bottom: 24px;
}
.access__parking .access__item:nth-of-type(2) {
  width: 26%;
}
.access__parking .access__item:nth-of-type(3) {
  flex-grow: 1;
}
.access__text {
  text-align: center;
  word-break: auto-phrase;
}
.access__flow {
  margin-top: 80px;
}
.access__flow-head {
  width: 400px;
  min-width: max-content;
  background-color: var(--white);
  color: var(--main-d);
  font-size: 1.5rem;
  font-weight: var(--bold);
  text-align: center;
  border: 4px solid var(--main-d);
  border-radius: 10px;
  margin: 0 auto 40px;
  padding: 4px 8px;
}
/* access end */

/* sight */
.sight__title {
  padding-top: 260px;
}
.sight__title::after {
  width: 333px;
  aspect-ratio: 563 / 533;
  background-image: url(../img/title-sight.png);
}
/* sight end */

/* responsive */
@media (max-width: 1023px) {
  .fv img { height: 110vw; aspect-ratio: 1 / 1.1; object-fit: cover;}
  .fv .splide__pagination { bottom: 24px;}
  .fv .splide__arrow svg { width: 32px;}
  .fv .splide__arrow--prev { left: 4px;}
  .fv .splide__arrow--next { right: 4px;}
  .news__title::after { width: 120px; margin-top: 8px;}
  .news__box { display: flex; flex-wrap: wrap; column-gap: 2%;}
  .news__item a { width: 49%; min-height: 250px;}
  .event__title { padding-top: 80px;}
  .event__title::after { width: 160px;}
  .event__year { min-width: auto; font-size: 1.5rem; padding: 0 2em; margin-bottom: 24px;}
  .event__box { flex-direction: column; row-gap: 16px; margin-bottom: 48px;}
  .event__img img { margin-bottom: 48px;}
  .event__item, .event__item.main { width: 100%;}
  .event__content { max-width: 400px; margin: auto;}
  .event__text { margin-bottom: 48px;}
  .event__disc::before { position: static; width: 100%; height: 240px;}
  .event__disc-content { padding: 0; margin-top: 24px;}
  .event__disc-title { text-align: center;}
  .event__disc-link { text-align: center;}
  .about__title::after { width: 200px;}
  .about__img img { margin-bottom: 48px;}
  .about__disc::before { position: static; width: 100%; height: 240px;}
  .about__disc-content { padding: 0; margin-top: 24px;}
  .about__disc-title { text-align: center;}
  .about__disc-link { text-align: center;}
  .instagram { margin-top: 64px;}
  .instagram__head { margin: 16px auto;}
  .instagram__link { margin-top: 16px;}
  .instagram__link a { font-size: min(3.5vw, 1rem); padding: 14px 24px 16px !important;}
  .instagram__link a::before { margin-bottom: -2px;}
  .movie__title::after { width: 160px;}
  .movie__box { padding: 0 16px;}
  .movie__box .splide__arrow svg { width: 32px;}
  .movie__box .splide__arrow--prev { left: -16px;}
  .movie__box .splide__arrow--next { right: -16px;}
  .sponsor__title::after { width: 200px;}
  .sponsor__disc-content { flex-direction: column; row-gap: 16px;}
  .sponsor__disc-content a { min-width: 90%; padding: 12px;}
  .access__title { padding-top: 80px;}
  .access__title::after { width: 200px;}
  .access__map { margin-bottom: 48px;}
  .access__parking { flex-direction: column; row-gap: 16px; margin-bottom: 48px;}
  .access__parking .access__item:nth-of-type(1),
  .access__parking .access__item:nth-of-type(2),
  .access__parking .access__item:nth-of-type(3) { width: 100%;}
  .access__item-small { text-align: center;}
  .access__item-flex { display: block;}
  .access__item-child:not(:first-of-type) { border-left: none; border-top: 2px solid var(--main-d); padding-top: 8px;}
  .access__flow { margin-top: 64px;}
  .access__flow-head { width: auto; font-size: 1.125rem;}
  .sight__title { padding-top: 120px;}
  .sight__title::after { width: 180px;}
  .sight__title .c-section-title-en { font-size: 2.5rem;}
}
/* responsive end */