@charset "UTF-8";
/* =====================================================
  1.0 - mixin
===================================================== */
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*=============== BASE ===============*/
/* リセット + 基本設定 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    overflow: auto;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

body,
html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-size: 1em;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before {
  content: "";
  content: none;
}

q:after,
q:before {
  content: "";
  content: none;
}

a img {
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=button],
input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=image],
textarea {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

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;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type=radio] {
  display: none;
}

input[type=radio]:checked + label {
  background: #5f5f5f;
}

select::-ms-expand {
  display: none;
}

figure img {
  vertical-align: bottom;
}

video {
  -webkit-filter: drop-shadow(0px 0px #000);
  filter: drop-shadow(0px 0px #000);
  outline: none;
  border: none;
}

em {
  font-style: normal;
}

/* =====================================================
  2.0 - Layout
===================================================== */
.floating-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 999;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  will-change: transform, opacity;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.45s ease, -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (min-width: 1025px) {
  .floating-banner {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .floating-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.floating-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.floating-banner__hi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.floating-banner__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  gap: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.floating-banner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.floating-banner__item img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.floating-banner__item:active img {
  opacity: 0.85;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.floating-banner__item--live {
  -webkit-box-flex: 219.5855;
      -ms-flex: 219.5855;
          flex: 219.5855;
}
.floating-banner__item--food {
  -webkit-box-flex: 180.5701;
      -ms-flex: 180.5701;
          flex: 180.5701;
}
.floating-banner__item--event {
  -webkit-box-flex: 219.5855;
      -ms-flex: 219.5855;
          flex: 219.5855;
}
.floating-banner__item--map {
  -webkit-box-flex: 180.5701;
      -ms-flex: 180.5701;
          flex: 180.5701;
}

@media screen and (max-width: 1024px) {
  html {
    scroll-padding-bottom: 8.75rem;
  }
}
.map-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.map-popup.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.map-popup.is-active body {
  overflow: hidden;
}
.map-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}
.map-popup__content {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  z-index: 2;
}
.map-popup__content img {
  width: 100%;
  height: auto;
  display: block;
}
.map-popup__close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1.5625rem;
  height: 1.5625rem;
  padding: 0;
  background: rgba(128, 128, 128, 0.9);
  border: 2px solid #999;
  border-radius: 0;
  cursor: pointer;
  z-index: 3;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.map-popup__close::before, .map-popup__close::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: #fff;
}
.map-popup__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.map-popup__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.map-popup__close:hover {
  background: #333;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*=============== animation ===============*/
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
[class*=deco--item] {
  -webkit-animation: float 5s ease-in-out infinite, rotate 10s linear infinite !important;
          animation: float 5s ease-in-out infinite, rotate 10s linear infinite !important;
}

[class*=deco--icon],
[class*=circle-photo],
.deco--person1,
.deco--person2,
.deco--person3,
.deco--person4,
.deco--person9,
.deco--person5,
.deco--person6 {
  -webkit-animation: float 6s ease-in-out infinite !important;
          animation: float 6s ease-in-out infinite !important;
}

.l-ticker {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(131, 208, 255)), to(rgb(255, 129, 228)));
  background: linear-gradient(90deg, rgb(131, 208, 255) 0%, rgb(255, 129, 228) 100%);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #000;
  padding: 15px 0;
  z-index: 100;
  white-space: nowrap;
  overflow: hidden;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.l-ticker__inner {
  display: inline-block;
  padding-left: 100%;
  -webkit-animation: ticker 30s linear infinite;
          animation: ticker 30s linear infinite;
}
@media screen and (max-width: 1024px) {
  .l-ticker__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-ticker__inner p {
  display: inline-block;
  font-size: 1.375rem;
  margin-right: 50px;
  white-space: nowrap;
}

@media screen and (min-width: 1025px) {
  .l-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .l-hero__main .l-ticker {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  body > .l-ticker {
    display: none;
  }
  .l-hero__main .l-ticker {
    display: block;
    position: relative;
    margin-top: 42.8125rem;
  }
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.l-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #ffd6e8;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .l-hero {
    height: auto;
    overflow: visible;
    padding-bottom: 0;
    background: transparent;
  }
}
.l-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .l-hero__container {
    display: block;
  }
}
.l-hero__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50.1463414634%;
          flex: 0 0 50.1463414634%;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .l-hero__left {
    display: none;
  }
}
.l-hero__stadium {
  position: absolute;
  bottom: 7%;
  left: -29.766536965%;
  width: 153.6964980545%;
  z-index: -10;
  pointer-events: none;
}
.l-hero__badges-left .badge-item01 {
  display: block;
  position: absolute;
  top: 32%;
  left: 2.9182879377%;
  width: 36.8245914397%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.l-hero__badges-left .badge-item01 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-left .badge-item01:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 10;
}
.l-hero__badges-left .badge-item02 {
  display: block;
  position: absolute;
  top: 34%;
  left: 41.9892996109%;
  width: 32.3975875486%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.l-hero__badges-left .badge-item02 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-left .badge-item02:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 10;
}
.l-hero__badges-left .badge-item03 {
  position: absolute;
  top: 33%;
  left: 78.4046692607%;
  width: 18.2040272374%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.l-hero__badges-left .badge-item03 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-left .badge-item03:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 10;
}
.l-hero__ticket {
  position: absolute;
  bottom: 9%;
  left: 1.3618677043%;
  width: 97.859922179%;
  z-index: 5;
}
.l-hero__ticket .ticket-credits {
  position: absolute;
  top: 83%;
  left: 3%;
  width: 100%;
  margin-top: 35px;
  -webkit-transform: translateX(-18.28%);
          transform: translateX(-18.28%);
  font-size: 1vw;
  color: #000;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-hero__ticket .ticket-credits {
    display: none;
  }
}
.l-hero__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39.0243902439%;
          flex: 0 0 39.0243902439%;
  height: 100%;
  max-height: 100vh;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-hero__main::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-hero__main {
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
  }
}
.l-hero__main-inner {
  position: relative;
  background: #ffd6e8;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  min-height: 100% !important;
}
@media screen and (max-width: 1024px) {
  .l-hero__main-inner {
    padding: 0;
    min-height: 100% !important;
  }
}
.l-hero__main-aria {
  position: relative;
  width: 100%;
  aspect-ratio: 400/684;
  margin-bottom: 10%;
}
.l-hero .deco {
  position: absolute;
}
.l-hero .deco--item20 {
  top: -2.7%;
  left: 10%;
  width: 9.19805%;
}
.l-hero .deco--item21 {
  top: -2.7%;
  left: 20%;
  width: 13.9685%;
}
.l-hero .deco--item22 {
  top: 1.4%;
  left: 77%;
  width: 7.967825%;
}
.l-hero .deco--item23 {
  top: 30.2%;
  right: 2%;
  width: 10.19305%;
}
.l-hero .deco--item24 {
  top: 27.5%;
  left: 5%;
  width: 2.43565%;
}
.l-hero .deco--item25 {
  top: 0;
  left: 50%;
  width: 7.967825%;
}
.l-hero .deco--person3 {
  top: 4.1%;
  left: 2.5%;
  width: 20%;
  z-index: 1;
}
.l-hero .deco--person4 {
  top: 49%;
  left: 70.243902439%;
  width: 27.5%;
  z-index: 2;
}
.l-hero .deco--icon4 {
  top: 37.8%;
  right: 6%;
  width: 9.75%;
  z-index: 2;
}
.l-hero .deco--item26 {
  top: 44%;
  left: 11%;
  width: 10.262%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .l-hero .deco--item26 {
    left: 7%;
  }
}
.l-hero .deco--item27 {
  top: 17.9%;
  left: 0%;
  width: 13.884625%;
  z-index: 0;
}
.l-hero .deco--item28 {
  top: 35.7%;
  left: 4%;
  width: 9.948%;
  z-index: 2;
}
.l-hero .deco--item29 {
  top: 52.2%;
  left: 68%;
  width: 8.218525%;
  z-index: 2;
}
.l-hero .deco--item30 {
  top: 77%;
  left: 3%;
  width: 11.0972%;
  z-index: 2;
}
.l-hero .deco--item31 {
  top: 87%;
  left: 1%;
  width: 20.1816%;
}
.l-hero .deco--item32 {
  top: 78.3%;
  left: 42%;
  width: 13.8266%;
}
.l-hero .deco--item33 {
  top: 88%;
  left: 67%;
  width: 2.43565%;
  z-index: 2;
}
.l-hero__photos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  margin: 0;
}
.l-hero__photos .photo-item01 {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 27.5%;
}
.l-hero__photos .photo-item01 img {
  width: 100%;
  height: auto;
}
.l-hero__photos .photo-item02 {
  position: absolute;
  top: 5%;
  right: 17%;
  width: 32.5%;
}
.l-hero__photos .photo-item02 img {
  width: 100%;
  height: auto;
}
.l-hero__photos .photo-item03 {
  position: absolute;
  top: 52%;
  left: 4%;
  width: 31.25%;
}
.l-hero__photos .photo-item03 img {
  width: 100%;
  height: auto;
}
.l-hero__photos .photo-item04 {
  position: absolute;
  top: 55%;
  left: 38%;
  width: 30.75%;
  z-index: 10;
}
.l-hero__photos .photo-item04 img {
  width: 100%;
  height: auto;
}
.l-hero__photos .photo-item05 {
  position: absolute;
  top: 72%;
  left: 13%;
  width: 31.25%;
  z-index: 10;
}
.l-hero__photos .photo-item05 img {
  width: 100%;
  height: auto;
}
.l-hero__photos .photo-item06 {
  position: absolute;
  top: 3%;
  left: 82%;
  width: 15%;
  z-index: 10;
}
.l-hero__photos .photo-item06 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-main .badge-item04 {
  display: block;
  position: absolute;
  top: 75.6%;
  right: 3.75%;
  width: 37.5%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .l-hero__badges-main .badge-item04 {
    top: 73%;
  }
}
.l-hero__badges-main .badge-item04 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-main .badge-item04:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 10;
}
.l-hero__badges-main .badge-item05 {
  display: block;
  position: absolute;
  top: 80.5%;
  right: 3.75%;
  width: 37.5%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (max-width: 1024px) {
  .l-hero__badges-main .badge-item05 {
    top: 77.8%;
  }
}
.l-hero__badges-main .badge-item05 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-main .badge-item05:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 10;
}
.l-hero__badges-main .badge-item06 {
  display: block;
  position: absolute;
  top: 85%;
  right: 3.75%;
  width: 18.037025%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (max-width: 1024px) {
  .l-hero__badges-main .badge-item06 {
    top: 82%;
  }
}
.l-hero__badges-main .badge-item06 img {
  width: 100%;
  height: auto;
}
.l-hero__badges-main .badge-item06:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 10;
}
.l-hero__badges-main .badge-item10 {
  display: block;
  position: absolute;
  top: 82%;
  right: 3.75%;
  width: 37.5%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.l-hero__badges-main .badge-item10 img {
  width: 100%;
  height: auto;
}
.l-hero__header {
  text-align: center;
}
.l-hero__bk {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
}
.l-hero__logo {
  position: absolute;
  top: 28.9%;
  left: 11%;
  width: 76.2923%;
}
@media screen and (max-width: 1024px) {
  .l-hero__logo {
    top: 27%;
    width: 80%;
  }
}
.l-hero__info {
  position: absolute;
  width: 53%;
  top: 43.5%;
  left: 26%;
}
@media screen and (max-width: 1024px) {
  .l-hero__info {
    top: 40.3%;
    width: 59%;
    left: 21.8%;
  }
}
.l-hero__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10.8292682927%;
          flex: 0 0 10.8292682927%;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-hero__right {
    display: none;
  }
}
.l-hero__right .deco--person5 {
  top: 33%;
  right: 5%;
  width: 95.4954954955%;
}
.l-hero__right .deco--item34 {
  top: 26%;
  left: 10%;
  width: 8.5736036036%;
}
.l-hero__right .deco--item35 {
  top: 25%;
  left: 60%;
  width: 30.6526126126%;
}
.l-hero__right .deco--item36 {
  top: 46%;
  left: 85%;
  width: 9.6309009009%;
}
.l-hero__right .deco--item37 {
  top: 55%;
  left: 10%;
  width: 11.6148648649%;
}
.l-hero__right .deco--item38 {
  top: 55%;
  left: 37%;
  width: 47.9213513514%;
}
.l-hero__right .deco--item39 {
  top: 65%;
  left: 30%;
  width: 6.1452252252%;
}
.l-hero__right .deco--item40 {
  top: 70%;
  left: 40%;
  width: 40.6923423423%;
}
.l-hero__right .deco--item41 {
  top: -8%;
  left: 75%;
  width: 64.1575675676%;
}
.l-hero__photos {
  width: 100%;
  margin-bottom: 0.9375rem;
}
.l-hero__photos .photo-item {
  margin-bottom: 0.5rem;
}
.l-hero__badges-right .badges-logo01 {
  position: absolute;
  display: block;
  top: 2%;
  left: 2%;
  width: 94.5945945946%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.l-hero__badges-right .badges-logo02 {
  position: absolute;
  display: block;
  top: 19%;
  left: 0;
  width: 100%;
}
.l-hero .l-hero__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 11;
  overflow: hidden;
}
.l-hero .l-hero__decorations .deco {
  position: absolute;
  display: block;
}
.l-hero .l-hero__decorations .deco--person1 {
  top: 13%;
  left: 3.9024390244%;
  width: 7.8048780488%;
}
.l-hero .l-hero__decorations .deco--person2 {
  top: 5%;
  left: 26.8292682927%;
  width: 22.4390243902%;
}
.l-hero .l-hero__decorations .deco--icon1 {
  top: 13%;
  left: 12.8780487805%;
  width: 6.1463414634%;
}
.l-hero .l-hero__decorations .deco--icon2 {
  top: 14.5%;
  left: 28%;
  width: 4.5853658537%;
}
.l-hero .l-hero__decorations .deco--item1 {
  top: 1%;
  left: 19.512195122%;
  width: 5.2682926829%;
}
.l-hero .l-hero__decorations .deco--item2 {
  top: 10%;
  left: 24.3902439024%;
  width: 2.1463414634%;
}
.l-hero .l-hero__decorations .deco--item3 {
  top: 22%;
  left: 1.8536585366%;
  width: 1%;
}
.l-hero .l-hero__decorations .deco--item4 {
  top: 21%;
  left: 12.7804878049%;
  width: 2.367902439%;
}
.l-hero .l-hero__decorations .deco--item5 {
  top: 21.5%;
  left: 19.3170731707%;
  width: 3.5641170732%;
}
.l-hero .l-hero__decorations .deco--item6 {
  top: 19%;
  left: 23.4146341463%;
  width: 1.257804878%;
}
.l-hero .l-hero__decorations .deco--item7 {
  top: 23%;
  left: 32.1951219512%;
  width: 5.1504292683%;
}
.l-hero .l-hero__decorations .deco--item8 {
  top: 3%;
  left: 41.5609756098%;
  width: 0.6669756098%;
}
.l-hero .l-hero__decorations .deco--item9 {
  top: -2%;
  left: 45.3658536585%;
  width: 3.6870829268%;
}
.l-hero .l-hero__decorations .deco--item10 {
  top: 55%;
  left: 2.1463414634%;
  width: 1.0448097561%;
  z-index: 2;
}
.l-hero .l-hero__decorations .deco--item11 {
  top: 47%;
  left: 7.9024390244%;
  width: 0.9213658537%;
}
.l-hero .l-hero__decorations .deco--item12 {
  top: 50%;
  left: 11.1219512195%;
  width: 3.1974926829%;
}
.l-hero .l-hero__decorations .deco--item13 {
  top: 43%;
  left: 18.0487804878%;
  width: 1.8915414634%;
}
.l-hero .l-hero__decorations .deco--item14 {
  top: 61%;
  left: 20.487804878%;
  width: 2.2105463415%;
}
.l-hero .l-hero__decorations .deco--item15 {
  top: 44%;
  left: 35.1219512195%;
  width: 2.9821658537%;
}
.l-hero .l-hero__decorations .deco--item16 {
  top: 45%;
  left: 40.9756097561%;
  width: 4.2884195122%;
}
.l-hero .l-hero__decorations .deco--item17 {
  top: 46%;
  left: 47.3170731707%;
  width: 0.6758731707%;
}
.l-hero .l-hero__decorations .deco--item18 {
  top: 55%;
  left: 39.0243902439%;
  width: 4.1386439024%;
}
.l-hero .l-hero__decorations .deco--item19 {
  top: 53%;
  left: 45.8536585366%;
  width: 2.9776682927%;
}
@media screen and (max-width: 1024px) {
  .l-hero .l-hero__decorations .deco {
    display: none;
  }
}
.l-hero .deco {
  position: absolute;
  display: block;
}
.l-hero .deco--icon3 {
  bottom: 35%;
  left: 5.0583657588%;
  width: 14.1983657588%;
}
.l-hero .deco--logo {
  top: 2%;
  left: 1.3618677043%;
  width: 34.3782101167%;
}
.l-hero .deco--person9 {
  top: 49%;
  right: 7%;
  width: 13.6585365854%;
  z-index: -2;
}

.deco--person6 {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 10.7317073171%;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .deco--person6 {
    display: none;
  }
}

.c-section {
  padding: 1.25rem 1.25rem;
}
.c-section__title {
  text-align: center;
  margin-bottom: 0.625rem;
}
.c-section__title img {
  width: 500px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.c-section__title01 {
  text-align: center;
  margin-bottom: 0rem;
}
.c-section__title01 img {
  width: 90%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.c-section__text {
  font-weight: 500;
  font-size: 0.90625rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
}
.c-section__text p {
  margin-bottom: 1.25rem;
}
.c-section__text p:last-child {
  margin-bottom: 0;
}
.c-section__image {
  width: 100%;
  text-align: center;
  margin-top: -0.9375rem;
}
.c-section__image img {
  max-width: 100%;
  height: auto;
  border-radius: 1.875rem;
}
.c-section__note {
  font-size: 0.5625rem;
  color: #666;
  text-align: left;
  line-height: 1.5;
  margin-top: 0.625rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .c-section__note {
    white-space: normal;
    word-wrap: break-word;
    padding-left: 0.625rem;
    text-indent: -0.625rem;
  }
}

#about {
  background: #fff;
  border-radius: 3rem 3rem 0 0;
  margin-top: 1.25rem;
  padding-top: 5rem;
}
#about .c-section__text {
  margin-bottom: 0;
}
#about .c-section__text p:last-of-type {
  margin-bottom: 0;
}
#about .c-section__image {
  margin-top: -6.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  width: calc(100% + 2.5rem);
}

#ticket,
#artist,
footer {
  background: #fff;
  margin-top: 0;
  padding-top: 3.75rem;
}
@media screen and (max-width: 1024px) {
  #ticket,
  #artist,
  footer {
    padding-top: 1.25rem;
  }
}

#ticket .c-section__title {
  margin-bottom: 1.25rem !important;
}
@media screen and (max-width: 1024px) {
  #ticket .c-section__title {
    margin-bottom: 0rem;
  }
}
#ticket .ticket-card__title {
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: -0.9375rem;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 1024px) {
  #ticket .ticket-card__title {
    margin-bottom: 0rem;
  }
}
#ticket p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1024px) {
  #ticket p {
    font-size: 0.9375rem;
  }
}

.artist-card {
  margin-bottom: 0.3125rem;
  text-align: center;
}
.artist-card--cyan {
  padding: 1.25rem 0;
}
.artist-card--green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
.artist-card--green img {
  width: 100%;
  height: auto;
  display: block;
}

#artist .c-section__title {
  margin-bottom: 0rem !important;
}
#artist .c-section__title img {
  width: 70%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
#artist .artist-card__title {
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: -0.9375rem;
  margin-bottom: 1.5625rem;
}
#artist .artist-card__desc {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}
#artist .artist-btn-link {
  display: block;
  text-align: center;
  margin-top: 3.75rem;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  cursor: pointer;
}
#artist .artist-btn-link:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
#artist .artist-btn-link img {
  width: 97%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#family,
#food {
  background: #fff;
  margin-top: 0;
  padding-top: 3.75rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

#family .c-section__title {
  margin-bottom: 0rem !important;
}
#family .c-section__title img {
  width: 70%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
#family .family-card__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 0.3125rem;
  margin-bottom: 1.5625rem;
}
#family p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #family p {
    font-size: 0.9375rem;
  }
}

#family::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: black;
  margin-bottom: 80px;
}

#food {
  background: #fff;
}
#food .c-section__title {
  margin-bottom: 0rem !important;
}
#food .c-section__title img {
  width: 70%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
#food .food-card__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 0.3125rem;
  margin-bottom: 1.5625rem;
}
#food p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #food p {
    font-size: 0.9375rem;
  }
}

#map {
  background: #fff;
}
#map .c-section__title {
  margin-top: 2.5rem;
  margin-bottom: 0rem !important;
}
#map .c-section__title img {
  width: 70%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
#map .map-card__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 0.3125rem;
  margin-bottom: 1.5625rem;
}
#map p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #map p {
    font-size: 0.9375rem;
  }
}
#map .c-section__note {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  padding-right: 1.25rem;
  margin-bottom: -0.3125rem;
  padding-left: 2em;
  text-indent: -1em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 1024px) {
  #map .c-section__note {
    font-size: 0.6875rem;
    padding-left: 2em;
    text-indent: -1em;
  }
}

html,
body,
.l-hero__main,
.l-hero__main-inner {
  scroll-behavior: smooth;
}

.l-footer {
  text-align: center;
  padding: 1.875rem 1.25rem 6.25rem;
  background: #fff;
}
.l-footer .toiawase-btn-link {
  display: block;
  text-align: center;
  margin-top: 0.3125rem;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  margin-bottom: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  cursor: pointer;
}
.l-footer .toiawase-btn-link:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.l-footer .toiawase-btn-link img {
  width: 97%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.l-footer__sponsors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.l-footer__sponsors .koushin {
  width: 15.625rem;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.l-footer__sponsors .sponsor-block .sponsor-role {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  line-height: 1.5;
}
.l-footer__sponsors .sponsor-block .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__sponsors .sponsor-block .logos img {
  max-width: 100%;
  height: auto;
}
.l-footer__pagetop {
  text-align: right;
  margin-top: 1.25rem;
  padding-right: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__pagetop {
    margin-top: 1.875rem;
  }
}
.l-footer__pagetop .pagetop-btn {
  display: inline-block;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
}
.l-footer__pagetop .pagetop-btn img {
  width: 5rem;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .l-footer__pagetop .pagetop-btn img {
    width: 3.75rem;
  }
}
.l-footer__pagetop .pagetop-btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
bg
-----------------------------------------------------*/
body {
  background: -webkit-gradient(linear, 1.41% 50%, 99.22% 50%, color-stop(0.0018, rgb(255, 227, 225)), color-stop(1, rgb(255, 209, 236)));
}

/*
  3.2 - Project
-----------------------------------------------------*/
/*
  3.3 - Utility
-----------------------------------------------------*//*# sourceMappingURL=style.css.map */