@charset "utf-8";

/* === reset css === */
* {
    min-height: 0vw;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
ul {
  list-style: none;
}


/* font set */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 100%;
  font-size: clamp(0.875rem, calc(0.761rem + 0.48vw), 1.125rem);/*18-14*/
  line-height: 2;
}

.contents {
  font-size: clamp(12.5px, 1.5vw, 18px);
  line-height: 1.5;
}
.contents ._fs_16 { font-size: calc(16 / 18 * 100%); }
.contents ._fs_24 { font-size: clamp(16px, 2vw, 24px) }

._wt_sb { font-weight: 600; }
._wt_r  { font-weight: 400; }
._txt_w { color: var(--color-white); }
._txt_c { text-align: center; }

@media screen and (max-width:767px) {
  .contents {
    font-size: clamp(10px, 4.2667vw, 32px);
  }
  .contents ._fs_16 { font-size: calc(14 / 16 * 100%); }
  .contents ._fs_24 { font-size: calc(18 / 16 * 100%); }
}

/* color set */
body {
  --color-bg: rgba(244, 228, 249, 1);
  --color-shadow: rgba(140, 60, 146, 0.2);
  --color-border: rgba(205, 62, 144, 0.3);
  --color-op: rgba(140, 60, 146, 1);
  --color-op2: rgba(205, 62, 144, 1);
  --color-txt: rgba(0, 0, 0, 1);
  --color-red: rgba(232, 65, 59, 1);
  --color-white: rgb(255, 255, 255);
  --color-yellow: rgb(255, 240, 0);
  --color-footer: rgba(53, 3, 72, 1);

  background-color: var(--color-bg);
}

@media screen and (max-width:767px) {
}

/* tool */
.bgt {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

._flex { display: flex; }
._row { flex-direction: row; }
._txt_red { color: var(--color-red); }
._txt_yellow { color: var(--color-yellow); }

._idt_1 {
  padding-left: 1em;
  text-indent: -1em;
}

.for_sp {
  display: none;
}
@media screen and (max-width:767px) {
  .for_sp {
    display: block;
  }
  .for_pc {
    display: none;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

/* -- header -- */
.header {
  position: relative;
  width: 100%;
  aspect-ratio: 150/95;
}
.header .mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 150/95;
  background-image: url(../images/mv_pc.webp);
}
@media screen and (max-width:767px) {
  .header {
    aspect-ratio: 75/62;
  }
  .header .mv {
    aspect-ratio: 75/62;
    background-image: url(../images/mv_sp.webp);
  }
}


/* === main === */
main {
  position: relative;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg .bg01, .bg .bg02 {
  position: absolute;
  top: 0;
  width: calc(114 / 1500 * 100%);
  height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.bg .bg01 {
  left: 0;
  margin-top: calc(345 / 1500 * 100%);
  background-image: url(../images/bg-side-l.svg);
}
.bg .bg02 {
  right: 0;
  margin-top: calc(-123 / 1500 * 100%);
  background-image: url(../images/bg-side-r.svg);
}
@media screen and (min-width:1200px) {
  .bg .bg01, .bg .bg02 {
    width: 114px;
  }
  .bg .bg01 { margin-top: 345px; }
  .bg .bg02 { margin-top: -123px; }
}
@media screen and (max-width:767px) {
  .bg { display: none; }
}

/* -- .banner_box -- */
.banner_box {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 4/1;
  margin-top: calc(-60 / 1500 * 100%);
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
  border: 8px var(--color-white) solid;
  background-color: var(--color-op);
  box-shadow: 10px 10px 4px 0px var(--color-shadow);
  box-sizing: border-box;
}
.banner_box .title {
  width: calc(869 / 1184 * 100%);
  aspect-ratio: 869 / 141;
  margin-top: calc(25 / 1184 * 100%);
  margin-left: calc(33 / 1184 * 100%);
  background-image: url(../images/ttl_banner_box.webp);
}
.banner_box .text {
  position: relative;
  width: calc(848 / 1184 * 100%);
  aspect-ratio: 848 / 36;
  margin-top: calc(31 / 1184 * 100%);
  margin-left: calc(38 / 1184 * 100%);
  color: var(--color-op);
}
._parallel_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc((36 / 1.73 / 2) / 848 * 100%)) skewX(-30deg);
  width: calc((848 - (36 / 1.73)) / 848 * 100%);
  height: 100%;
  background-color: var(--color-white);
  box-shadow: 4px 4px 0px 0px rgba(53, 3, 72, 0.3);
}
.banner_box .text > span {
  position: relative;
  display: block;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: clamp(12px, calc(1.8519vw - 2.2222px), 20px);
}
.banner_box .note {
  width: calc(848 / 1184 * 100%);
  margin-top: calc(13 / 1184 * 100%);
  text-align: right;
  line-height: 1;
  font-size: clamp(10px, calc(0.9259vw + 2.8889px), 14px);
}
.banner_box .img {
  position: absolute;
  top: calc(22 / 284 * 100%);
  left: calc(895 / 1184 * 100%);
  width: calc(260 / 1184 * 100%);
  aspect-ratio: 260 / 244;
  background-image: url(../images/banner1.webp);
}
@media screen and (max-width:767px) {
  .banner_box {
    width: calc(355 / 375 * 100%);
    aspect-ratio: unset;
    margin-top: calc(50 / 375 * 100%);
    border-width: 4px;
    padding-bottom: calc(11 / 375 * 100%);
    box-shadow: 5px 5px 2px 0px var(--color-shadow);
  }
  .banner_box .title {
    width: calc(330 / 347 * 100%);
    aspect-ratio: 660 / 299;
    margin-top: calc(23 / 347 * 100%);
    margin-left: calc(10 / 347 * 100%);
    background-image: url(../images/ttl_banner_box_sp.webp);
  }
  .banner_box .text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(308 / 347 * 100%);
    aspect-ratio: 308 / 74;
    margin-top: calc(13 / 347 * 100%);
    margin-right: auto;
    margin-left: auto;
  }
  ._parallel_box::before {
    left: 50%;
    transform: translateX(-50%) skewX(-10deg);
    width: 96%;
  }
  .banner_box .text > span {
    line-height: 1.4;
    font-size: clamp(10px, 4vw, 30px);
  }
  .banner_box .note {
    width: auto;
    margin-top: calc(10 / 347 * 100%);
    text-align: center;
    font-size: clamp(10px, 2.6667vw, 20px);
  }
  .banner_box .img {
    position: relative;
    top: auto;
    left: auto;
    width: calc(321 / 347 * 100%);
    aspect-ratio: 321/122;
    margin-top: calc(11 / 347 * 100%);
    margin-right: auto;
    margin-left: auto;
    background-image: url(../images/banner2.webp);
  }
}



.container {
  width: 100%;
  overflow: hidden;
}

.contents {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 1px;
}


/* -- .info_box -- */
.info_box {
  position: relative;
  margin-top: calc(160 / 1200 * 100%);
  border-radius: 20px;
  padding-top: calc(120 / 1200 * 100%);
  background-color: var(--color-white);
  box-shadow: 10px 10px 4px 0px var(--color-shadow);
}
.info_box:last-child {
  margin-bottom: calc(120 / 1200 * 100%);
}
.info_box::before,
.info_box::after {
  content: '';
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.info_box::before { left: 0; }
.info_box::after { right: 0; }
.event_info::before {
  width: calc(293 / 1200 * 100%);
  aspect-ratio: 293/315;
  background-image: url(../images/bg-event_info01.webp);
  transform: translate(calc(-50 / 293 * 100%), calc(-94 / 315 * 100%));
}
.event_info::after {
  width: calc(473 / 1200 * 100%);
  aspect-ratio: 473/331;
  background-image: url(../images/bg-event_info02.webp);
  transform: translate(calc(61 / 293 * 100%), calc(-89 / 315 * 100%));
}
.movie_info::before {
  width: calc(502 / 1200 * 100%);
  aspect-ratio: 502/425;
  background-image: url(../images/bg-movie_info01.webp);
  transform: translate(calc(-95 / 502 * 100%), calc(-122 / 425 * 100%));
}
.movie_info::after {
  width: calc(328 / 1200 * 100%);
  aspect-ratio: 328/350;
  background-image: url(../images/bg-movie_info02.webp);
  transform: translate(calc(18 / 328 * 100%), calc(-57 / 350 * 100%));
}
.info_title {
  width: 100%;
  aspect-ratio: 1100/221;
  background-position: center center;
}
.event_info .info_title {
  background-image: url(../images/ttl_event_info.svg);
}
.movie_info .info_title {
  background-image: url(../images/ttl_movie_info.svg);
}
@media screen and (max-width:767px) {
  .info_box {
    width: calc(355 / 375 * 100%);
    margin-top: calc(80 / 375 * 100%);
    margin-right: auto;
    margin-left: auto;
    padding-top: calc(60 / 375 * 100%);
    box-shadow: 5px 5px 2px 0px var(--color-shadow);
  }
  .info_box::before,
  .info_box::after {
    display: none;
  }
  .info_title {
    width: calc(325 / 355 * 100%);
    margin-right: auto;
    margin-left: auto;
    aspect-ratio: 325/155;
  }
}




.info_body {
  position: relative;
  margin-top: calc(100 / 1200 * 100%);
  padding: 0 calc(50 / 1200 * 100%) calc(200 / 1200 * 100%);
}

.event_info .info_body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.event_info .info_body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(669 / 1200 * 100%);
  transform: translate(0, calc(-265 / 420 * 100%));
  width: calc(411 / 1200 * 100%);
  aspect-ratio: 411/420;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/bg-event_info03.webp);
}
.event_info .info_panel_box {
  position: relative;
  width: calc(530 / 1100 * 100%);
}
.event_info .info_panel_box:nth-child(2n+1) {
  margin-bottom: calc(360 / 1100 * 100%);
}
.event_info .info_panel_box:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.event_info .info_panel_box:nth-child(1) { z-index: 190; }
.event_info .info_panel_box:nth-child(2) { z-index: 180; }
.event_info .info_panel_box:nth-child(3) { z-index: 170; }
.event_info .info_panel_box:nth-child(4) { z-index: 160; }
.event_info .info_panel_box:nth-child(5) { z-index: 150; }
.event_info .info_panel_box:nth-child(6) { z-index: 140; }
.event_info .info_panel_box:nth-child(7) { z-index: 130; }
.event_info .info_panel_box:nth-child(8) { z-index: 120; }
.event_info .info_panel_box:nth-child(9) { z-index: 110; }
.event_info .info_panel {
  width: 100%;
  border-radius: clamp(6px, 0.8333vw, 10px);
  padding: calc(15 / 530 * 100%);
  background-color: var(--color-op);
  box-sizing: border-box;
}
.event_info .info_panel_box:nth-child(2n) .info_panel {
  position: relative;
  background-color: var(--color-op2);
}
.event_info .info_panel_box:nth-child(2) .info_panel {
  top: calc(508 / 1291 * 100%);
}
.event_info .info_panel_box:nth-child(n+2) .info_panel::before {
  content: '';
  position: absolute;
  top: 0;
  width: calc(344 / 530 * 100%);
  aspect-ratio: 344/184;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.event_info .info_panel_box:nth-child(2n+1) .info_panel::before {
  left: 50%;
  background-image: url(../images/bg-dashline01.svg);
  transform: translate(calc(-20 / 344 * 100%), calc(-200 / 184 * 100%));
}
.event_info .info_panel_box:nth-child(2n) .info_panel::before {
  right: 50%;
  background-image: url(../images/bg-dashline02.svg);
  transform: translate(calc(20 / 344 * 100%), calc(-200 / 184 * 100%));
}

.event_info .panel_inner {
  background-color: var(--color-white);
}
.event_info .panel_inner::before,
.event_info .panel_inner::after {
  display: block;
  content: '';
  width: 100%;
  aspect-ratio: 500/12;
  mask-repeat: no-repeat;
  mask-position: left top;
  mask-size: cover;
  background-color: var(--color-op);
}
.event_info .info_panel_box:nth-child(2n) .panel_inner::before,
.event_info .info_panel_box:nth-child(2n) .panel_inner::after {
  background-color: var(--color-op2);
}
.event_info .panel_inner::before {
  mask-image: url(../images/mask-panel-top.svg);
}
.event_info .panel_inner::after {
  mask-image: url(../images/mask-panel-bottom.svg);
}

.event_info .panel_inner > * {
  width: calc(440 / 500 * 100%);
  margin-right: auto;
  margin-left: auto;
}

.event_info .title {
  aspect-ratio: 440/35;
  margin-top: calc(43 / 500 * 100%);
}
.event01 .title { background-image: url(../images/event_ttl01.svg); }
.event02 .title { background-image: url(../images/event_ttl02.svg); }
.event03 .title { background-image: url(../images/event_ttl03.svg); }
.event04 .title { background-image: url(../images/event_ttl04.svg); aspect-ratio: 440/89;}
.event05 .title { background-image: url(../images/event_ttl05.svg); }
.event06 .title { background-image: url(../images/event_ttl06.svg); }
.event07 .title { background-image: url(../images/event_ttl07.svg); }
.event08 .title { background-image: url(../images/event_ttl08.svg); }
.event09 .title { background-image: url(../images/event_ttl09.svg); aspect-ratio: 440/89;}

.event_info .image {
  margin-top: calc(33 / 500 * 100%);
  margin-bottom: calc(20 / 500 * 100%);
}
.event_info .note {
  margin-top: calc(12 / 500 * 100%);
}
.event_info .border {
  width: 100%;
  margin-top: calc(30 / 500 * 100%);
  border-top: 30px var(--color-border) dotted;
}

.event_info .schedule {
  margin-top: calc(30 / 500 * 100%);
  margin-bottom: calc(30 / 500 * 100%);
}
.event04 .schedule {
  width: calc(485 / 500 * 100%);
  margin-right: 0;
}
.event_info .schedule > li {
  display: flex;
  width: 100%;
}
.event_info .schedule > li:nth-child(n+2) {
  margin-top: calc(20 / 440 * 100%);
}
.event_info .schedule > li > span {
  display: block;
}
.event_info .schedule > li > span:first-child {
  width: calc(60 / 440 * 100%);
  aspect-ratio: 1/1;
}
.event_info .schedule > li > span:nth-child(n+2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: calc(20 / 440 * 100%);
}
.event_info .schedule > .sc_time > span:first-child {
  background-image: url(../images/icon-sc_time.svg);
}
.event_info .schedule > .sc_place > span:first-child {
  background-image: url(../images/icon-sc_place.svg);
}
.event_info .schedule > .sc_place ._row > span:first-child {
  width: 5em;
}
.event_info .schedule > .sc_place ._row > span:last-child {
  width: calc(100% - 5em);
}
.event02 .schedule > .sc_place ._row > span:last-child {
  font-feature-settings: "palt";
}

@media screen and (max-width:767px) {
  .info_body {
    margin-top: calc(50 / 355 * 100%);
    padding: 0 calc(15 / 355 * 100%) calc(80 / 355 * 100%);
  }
  
  .event_info .info_panel_box {
    width: 100%;
  }
  .event_info .info_panel {
    border-radius: 10px;
    padding: calc(10 / 325 * 100%);
  }

  .event_info .panel_inner::before,
  .event_info .panel_inner::after {
    aspect-ratio: 305 / 8;
  }
  .event_info .panel_inner::before {
    mask-image: url(../images/mask-panel-top-sp.svg);
  }
  .event_info .panel_inner::after {
    mask-image: url(../images/mask-panel-bottom-sp.svg);
  }

  .event_info .panel_inner > * {
    width: calc(275 / 305 * 100%);
  }
  .event_info .title {
    aspect-ratio: 275 / 27;
    margin-top: calc(28 / 275 * 100%);
  }
  .event_info .border {
    width: 100%;
    margin-top: calc(20 / 325 * 100%);
    border-top-width: 20px;
  }
  .event_info .schedule {
    margin-top: calc(20 / 325 * 100%);
    margin-bottom: calc(30 / 325 * 100%);
  }
  .event_info .schedule > li > span:first-child {
    width: calc(50 / 275 * 100%);
  }
  .event_info .info_panel_box:nth-child(2) .info_panel {
    top: auto;
  }
  .event_info .info_panel_box:nth-child(n+2) .info_panel::before {
    top: 0;
    width: calc(40 / 325 * 100%);
    aspect-ratio: 40/76;
  }
  .event_info .info_panel_box:nth-child(2n+1) .info_panel::before {
    left: 50%;
    background-image: url(../images/bg-dashline-sp.svg);
    transform: translate(-50%, calc(-100%));
  }
  .event_info .info_panel_box:nth-child(2n) .info_panel::before {
    right: 50%;
    background-image: url(../images/bg-dashline-sp.svg);
    transform: translate(50%, calc(-100%));
  }


  .event_info .info_panel_box:nth-child(2n+1) {
    margin-bottom: calc(60 / 325 * 100%);
  }
  .event_info .info_panel_box:nth-child(2n) {
    margin-bottom: calc(60 / 325 * 100%);
  }
  .event_info .info_panel_box:last-child {
    margin-bottom: 0;
  }

  .event01 ._flex._row {
    flex-wrap: wrap;
  }
  .event01 ._flex._row > li {
    width: 100%;
  }
  .event04 .title {
    aspect-ratio: 275/69;
  }

}



/* -- .movie_info -- */
.movie_info .info_header .text {
  margin-top: calc(40 / 1200 * 100%);
}
.movie_box:nth-child(n+2) {
  margin-top: calc(80 / 1100 * 100%);
}
.movie_box .title {
  position: relative;
  display: inline-block;
  margin-bottom: calc(24 / 1100 * 100% );
  padding-right: calc(71 / 1100 * 100%);
  padding-left: calc(71 / 1100 * 100%);
}
.movie_box .title::before,
.movie_box .title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: auto;
  height: calc(20 / 36 * 100%);
  aspect-ratio: 39/20;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/icon-bus01.svg);
}
.movie_box .title::before {
  left: 0;
}
.movie_box .title::after {
  right: 0;
}
.movie_box:nth-child(2n) .title::before,
.movie_box:nth-child(2n) .title::after {
  background-image: url(../images/icon-bus02.svg);
}
.movie_box .movie {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  margin-right: auto;
  margin-left: auto;
}
.movie_box .movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width:767px) {
  .movie_info .info_header .text {
    margin-top: calc(30 / 355 * 100%);
  }
  .movie_box:nth-child(n+2) {
    margin-top: calc(60 / 325 * 100%);
  }
  .movie_box .title {
    margin-bottom: calc(20 / 325 * 100%);
    padding-right: calc(44 / 325 * 100%);
    padding-left: calc(44 / 325 * 100%);
  }
  .movie_box .title::before,
  .movie_box .title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 29px;
    height: 15px;
  }
}

/* -- .marquee_box -- */
.marquee {
  position: fixed;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 50px;
  background-color: var(--color-footer);
  font-size: 20px;
  color: var(--color-white);
  white-space: nowrap;
  z-index: 300;
}
.mq-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 30px;
}
.marquee .icon-bus {
  width: 39px;
  aspect-ratio: 39/20;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon-bus01.svg);
}
@media screen and (max-width:767px) {
  .marquee {
    height: 40px;
    font-size: 16px;
  }
}














/* -- footer -- */
.footer {
  position: relative;
  background-color: var(--color-footer);
  color: var(--color-white);
  margin-top: calc(9 / 50 * 100%);    
  padding-bottom: 60px;
}
.footer .footer-hd {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  aspect-ratio: 50/9;
  background-image: url(../images/footer-hd.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.footer .inner {
  width: 95%;
  max-width: 800px;
  margin-left:auto;
  margin-right: auto;
  margin-top: 30px;
}
.footer .inner p {
  margin-bottom: 5px;
}
.footer .inner p.midashi {
  font-size: 16px;
  font-weight: 600;
}

.footer .inner iframe {
  margin: 20px 0 40px;
}

.footer .inner .sub_footer p{
    font-size: 14px;
}
@media screen and (max-width:767px) {
  .footer {
    font-size: calc(1.2vw + 8px);
  }
  .footer .inner .sub_footer p{
    font-size: calc(1.0vw + 8px);
  }
}

.footer .inner p.text {
  text-indent: -5em;
  padding-left: 5em;
}

.c_right {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
}


/* バス移動アニメーション */
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 15px;
}
.scroll-infinity__list {
  display: flex;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
.sc-inf__i {
  width: calc(200vw / 6);
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
.scroll-infinity__list--left .sc-inf__i {
  background-image: url(../images/bus-hidari.png);
}
.scroll-infinity__list--right .sc-inf__i {
  background-image: url(../images/bus-migi.png);
}


@media screen and (max-width:767px) {
  .sc-inf__i {
    height: 20px;
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}