@charset "UTF-8";
/* Box sizing rules */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
}

/* Remove all animations and transitions for people that prefer not to see them */
@font-face {
  font-display: swap;
  font-family: "Corporate";
  font-style: normal;
  font-weight: bold;
  src: url("../font/clr-bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Zen";
  font-style: normal;
  font-weight: 400;
  src: url("../font/zkgn-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Zen";
  font-style: normal;
  font-weight: 500;
  src: url("../font/zkgn-medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto sans";
  font-style: normal;
  font-weight: 400;
  src: url("../font/nsjp-regular.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
html.is-fixed {
  /* when modal active */
  touch-action: none;
  -webkit-overflow-scrolling: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  /* Other browsers */
  overscroll-behavior: none;
  top: 0;
  width: 100%;
}

body {
  color: #000;
  font-family: "Zen", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.0013em;
  line-height: 1.6875;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  display: grid;
  grid-template: "header" auto "contents" 1fr "footer" auto/100%;
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  min-height: 100vh;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
}
body.is-fixed {
  /* when modal active */
  touch-action: none;
  -webkit-overflow-scrolling: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  /* Other browsers */
  overscroll-behavior: none;
  top: 0;
  width: 100%;
}

.box {
  min-height: 150vw;
  place-content: center;
}

li {
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding-left: 0;
}

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

img,
svg {
  height: 100%;
  max-width: 100%;
  width: 100%;
}

a,
picture,
img {
  display: block;
}

span {
  display: inline-block;
}

button {
  border: none;
  cursor: pointer;
}
button:focus:not(:focus-visible) {
  outline: 0;
  /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

.l-inner {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 40px;
}

.c-button {
  background-color: #ff1d00;
  border-radius: 20px;
  display: grid;
  min-height: 66px;
  place-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.c-button::after {
  border: 2px solid #fff;
  border-radius: 17px;
  content: "";
  height: calc(100% - 6px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
}
.c-button.c-button__white {
  background-color: #fff;
}
.c-button.c-button__white::after {
  border-color: #ff1d1d;
}

.c-button__txt {
  color: #fffcfc;
  font-family: "Corporate";
  font-size: 20px;
  font-weight: 700;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.15;
  padding-right: 34px;
  position: relative;
}
.c-button__txt::after {
  content: "＞";
  font-family: "Corporate";
  font-size: 22px;
  font-weight: 700;
  height: 22px;
  letter-spacing: 0em;
  line-height: 1.0454545455;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
.c-button__txt.c-button__youtube {
  color: #ff1d1d;
  margin-left: 10px;
  padding-left: 44px;
  padding-right: 33px;
}
.c-button__txt.c-button__youtube::before {
  background-color: #ff1d1d;
  content: "";
  height: 33.14px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28.7px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-pagination-entry {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 78px;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: normal;
  text-transform: uppercase;
}
.c-pagination-entry .c-pagination-entry-prev {
  padding-left: 18px;
  position: relative;
}
.c-pagination-entry .c-pagination-entry-prev::after {
  content: "＜";
  height: 23px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.c-pagination-entry .c-pagination-entry-prev.c-pagination-entry-prev-gray {
  color: #808080;
}
.c-pagination-entry .c-pagination-entry-prev.c-pagination-entry-prev-gray::after {
  color: #808080;
}
.c-pagination-entry .c-pagination-entry-next {
  padding-right: 18px;
  position: relative;
}
.c-pagination-entry .c-pagination-entry-next::after {
  content: "＞";
  height: 23px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.c-pagination-entry .c-pagination-entry-next.c-pagination-entry-next-gray {
  color: #808080;
}
.c-pagination-entry .c-pagination-entry-next.c-pagination-entry-next-gray::after {
  color: #808080;
}
.c-pagination-entry a {
  transition: all 0.3s ease;
}

.p-news__pagination-wrap .c-pagination {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: normal;
  position: relative;
  text-transform: uppercase;
}
.p-news__pagination-wrap .c-pagination .page-numbers {
  margin-left: 5px;
}
.p-news__pagination-wrap .prev {
  margin-left: 0;
  margin-right: 60px !important;
  padding-left: 18px;
  position: relative;
}
.p-news__pagination-wrap .prev::after {
  content: "＜";
  height: 23px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.p-news__pagination-wrap .prev + .page-numbers {
  margin-left: 0;
}
.p-news__pagination-wrap .prev.disabled {
  color: #808080;
  margin-left: 0;
  margin-right: 60px;
}
.p-news__pagination-wrap .prev.disabled::after {
  color: #808080;
}
.p-news__pagination-wrap .next {
  margin-left: 60px !important;
  margin-right: 0;
  padding-right: 18px;
  position: relative;
}
.p-news__pagination-wrap .next::after {
  content: "＞";
  height: 23px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.p-news__pagination-wrap .next.disabled {
  color: #808080;
  margin-left: 60px;
}
.p-news__pagination-wrap .next.disabled::after {
  color: #808080;
}
.p-news__pagination-wrap a {
  transition: all 0.3s ease;
}

.c-section__title {
  position: relative;
}
.c-section__title img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-section__title.c-section__title-top-news {
  max-width: 375px;
}
.c-section__title.c-section__title-top-event {
  max-width: 392px;
}
.c-section__title.c-section__title-top-food {
  max-width: 387px;
}
.c-section__title.c-section__title-top-youtube {
  max-width: 264px;
}
.c-section__title.c-section__title-access {
  max-width: 211px;
}
.c-section__title.c-section__title-history {
  max-width: 260px;
}

.fadeUp.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.slideIn.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.card-article__img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.card-article__img img {
  aspect-ratio: 424/263;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-article__title {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 1.2272727273;
  margin-top: 27px;
  word-break: break-all;
}

.card-article__txt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6875;
  margin-top: 9px;
  word-break: break-all;
}
.card-article__txt > :first-child {
  margin-top: 0;
}
.card-article__txt p {
  margin-top: 16px;
}
.card-article__txt a {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.card-article__txt ul li {
  padding-left: 12px;
  position: relative;
}
.card-article__txt ul li::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 4px;
  position: absolute;
  top: 13px;
  width: 3px;
}
.card-article__txt ul ul {
  display: inline-flex;
  flex-direction: column;
}
.card-article__txt ul ul li::after {
  display: none;
}

.p-card-news {
  border-bottom: 2px solid #ff3d24;
  padding: 27px 0 28px;
}

.p-card-news__link {
  position: relative;
  transition: all 0.3s ease;
}
.p-card-news__link::after {
  content: "＞";
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.2272727273;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-card-news__item-head {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 13px;
  justify-content: start;
  letter-spacing: 0.1em;
}

.p-card-news__label {
  color: #ff0000;
  text-transform: uppercase;
}

.p-card-news__item-body {
  margin-top: 4px;
}

.p-card-news__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: normal;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 40px);
}

.p-drawer__icon {
  background-color: #e80000;
  border-radius: 50%;
  height: 72.6px;
  left: 2px;
  padding: 0;
  position: fixed;
  top: 2px;
  width: 72.6px;
  z-index: 30;
}
.p-drawer__icon.is-open .p-drawer__icon-item:nth-child(2) {
  top: 32px;
  transform: translateX(-50%) rotate(-42deg);
}
.p-drawer__icon.is-open .p-drawer__icon-item:nth-child(3) {
  display: none;
}
.p-drawer__icon.is-open .p-drawer__icon-item:nth-child(4) {
  top: 32px;
  transform: translateX(-50%) rotate(42deg);
}

.p-drawer__icon-item {
  background-color: #fff;
  border-radius: 4px;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 17px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  width: 46px;
}
.p-drawer__icon-item:nth-child(1) {
  display: none;
}
.p-drawer__icon-item:nth-child(3) {
  top: 36px;
}
.p-drawer__icon-item:nth-child(4) {
  top: 54px;
}

.p-drawer__nav-bg {
  background-color: #ffd800;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: all 0.5s ease 0.5s;
  width: 100%;
  z-index: 10;
}
.p-drawer__nav-bg.is-open {
  transform: translateX(0);
}

.p-drawer__nav {
  height: 100%;
  left: 0;
  min-height: 807px;
  position: relative;
  top: 0;
  width: 100%;
}
.p-drawer__nav::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-drawer__nav-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  left: 50%;
  position: absolute;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.p-drawer__nav-list::after {
  content: "";
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
}
.p-drawer__nav-list li {
  margin: 0 auto;
  max-width: 193px;
  text-align: left;
  width: 100%;
}
.p-drawer__nav-list a {
  color: #000;
  font-family: "Noto sans";
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 2.2631578947;
  padding-left: 19px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease;
  z-index: 2;
}
.p-drawer__nav-list a::after {
  content: "＞";
  font-size: 19px;
  font-weight: 900;
  left: 0;
  letter-spacing: 0em;
  line-height: 2.2631578947;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 9px;
}
.p-drawer__nav-list .p-drawer__youtube a {
  text-transform: none;
}

.p-entry {
  height: 100%;
  left: 0;
  padding-bottom: 6.328125vw;
  padding-top: 94px;
  position: relative;
  top: 0;
  width: 100%;
}
.p-entry::after {
  background: linear-gradient(180deg, #00a0b8 0%, #4cbbab 50%, #7ccca3 80%, #feee7d 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.p-entry::before {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-entry__title {
  margin: 0 auto;
  max-width: 250px;
  position: relative;
}
.p-entry__title img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-entry__container {
  background-color: #fff;
  border-radius: 20px;
  margin: 48px auto 0;
  max-width: 960px;
  padding: 157px 58px 256px;
  position: relative;
  z-index: 2;
}

.p-entry__meta {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 13px;
  justify-content: start;
  letter-spacing: 0.1em;
}

.p-entry__time {
  margin-left: 5px;
}

.p-entry__label {
  color: #ff0000;
  text-transform: uppercase;
}

.p-entry__post-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: normal;
  margin-left: 7px;
  margin-top: 4px;
  word-break: break-all;
}

.p-entry__contents {
  margin-top: 18px;
}
.p-entry__contents > :first-child {
  margin-top: 0;
}
.p-entry__contents p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6875;
  margin-top: 16px;
  word-break: break-all;
}
.p-entry__contents .wp-block-image {
  border-radius: 20px;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}
.p-entry__contents .wp-block-image img {
  aspect-ratio: 844/654;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-entry__contents .wp-block-button__link {
  text-decoration: underline;
  transition: all 0.3s ease;
}
.p-entry__contents a {
  display: inline-block;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.p-entry__contents .wp-block-button {
  display: inline-block;
}
.p-entry__contents .wp-block-button__link {
  background-color: #ff1d00;
  border-radius: 20px;
  color: #fffcfc;
  display: grid;
  font-family: "Corporate";
  font-size: 22px;
  font-weight: 700;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.0454545455;
  margin-top: 20px;
  min-height: 66px;
  padding: 0px 60px 0 30px;
  place-content: center;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-entry__contents .wp-block-button__link::after {
  border: 2px solid #fff;
  border-radius: 17px;
  content: "";
  height: calc(100% - 6px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
}
.p-entry__contents .wp-block-button__link::before {
  content: "＞";
  font-family: "Corporate";
  font-size: 22px;
  font-weight: 700;
  height: 22px;
  letter-spacing: 0em;
  line-height: 1.0454545455;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}

.p-entry__pagination-wrap {
  margin-top: 75px;
}

.p-event {
  height: 100%;
  left: 0;
  padding-bottom: 18.359375vw;
  padding-top: 7.8125vw;
  position: relative;
  top: 0;
  width: 100%;
}
.p-event::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-event__bg {
  background-color: #0600a8;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-event__bg::after {
  background-attachment: fixed;
  background-image: url(../img/bg_top-event-pc.png.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-event__container {
  margin: 0 auto;
  max-width: 960px;
  position: relative;
  z-index: 1;
}

.p-event__title {
  border-bottom: 2px solid #fff;
  margin: 0 auto;
  max-width: 392px;
  padding-bottom: 20px;
}

.p-event__timeTable {
  margin-top: 86px;
}

.p-event__timeTable-title {
  max-width: 233px;
}

.p-event__timeTable-container {
  border-radius: 20px 0 0 20px;
  left: 50%;
  margin-top: 33px;
  overflow: hidden;
  position: relative;
  top: 0;
  transform: translateX(-50%);
  width: 960px;
}

.p-event__artist {
  margin-top: 163px;
}

.p-event__artist-title {
  max-width: 169px;
}

.p-event__artist-list {
  display: grid;
  gap: 110px 112px;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  margin-top: 33px;
}

table {
  background-color: #fff;
  border-collapse: separate;
  border-radius: 20px;
  border-spacing: 0;
  height: 1419px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
  width: 960px;
}

thead tr:nth-child(1) .time {
  border-radius: 20px 0 0 0;
}

tbody tr:last-child .time {
  border-radius: 0 0 0 20px;
}

td {
  height: 136px;
  padding: 0px !important;
  position: relative;
  text-align: center;
  word-break: break-all;
}
td span {
  white-space: pre-line;
}

th {
  background-color: #171c60;
  color: #fff;
  height: 59px;
  text-align: center;
  word-break: break-all;
}

.eventBtn {
  background-color: #82bfed;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.eventBtn span:first-child {
  color: #000;
  display: block;
  left: 0;
  margin: 0px;
  padding: 0px 8px 0px;
  position: absolute;
  top: 0;
}
.eventBtn span:nth-child(2) {
  left: 50%;
  padding: 0 8px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.eventBox {
  align-items: center;
  color: #000;
  display: flex;
  justify-content: center;
  margin: 0px;
  position: absolute;
  white-space: normal;
  width: 100%;
}

.time {
  background-color: #171c60;
  color: #fff;
  vertical-align: top;
}

.p-footer__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center top;
  mask-position: center top;
  overflow: hidden;
}
.p-footer__wave::after {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -36px;
  content: "";
  height: auto;
  left: calc(50% + 13px);
  position: absolute;
  transform: translateX(-50%);
}

.p-footer {
  grid-area: footer;
  margin-top: -7.96875vw;
  padding-bottom: 14.0625%;
  position: relative;
  text-align: center;
  width: 100%;
}
.p-footer::before {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.p-footer__copy {
  bottom: 35px;
  color: #fff;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
.p-footer__copy small {
  font-family: "Noto sans";
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.p-header {
  background-color: transparent;
  grid-area: header;
  height: 104px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.p-header__container {
  align-items: start;
  box-sizing: content-box;
  display: flex;
  height: inherit;
  margin: 0 auto;
  max-width: 100%;
  z-index: 20;
}

.p-header__logo {
  margin-left: 11px;
  max-width: 187px;
}

.p-header__logo-link {
  transition: all 0.3s ease;
}

.p-main {
  grid-area: contents;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-mv {
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.p-mv__contents {
  bottom: 13.1008482564%;
  color: #fff;
  left: 50%;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 832px;
  padding: 0 23px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}

.p-news {
  height: 100%;
  left: 0;
  padding-bottom: 6.5625vw;
  padding-top: 90px;
  position: relative;
  top: 0;
  width: 100%;
}
.p-news::after {
  background: linear-gradient(180deg, #00a0b8 0%, #4cbbab 50%, #7ccca3 80%, #feee7d 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.p-news::before {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-news__title {
  margin: 0 auto;
  max-width: 376px;
  position: relative;
}
.p-news__title img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news__container {
  background-color: #fff;
  border-radius: 20px;
  margin: 51px auto 0;
  max-width: 960px;
  padding: 130px 64px 256px;
  position: relative;
  z-index: 2;
}

.p-news__pagination-wrap {
  margin-top: 106px;
}

.p-products {
  height: 100%;
  padding-bottom: 18.359375vw;
  padding-top: 7.8125vw;
  position: relative;
  width: 100%;
}
.p-products::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-products__bg {
  background-color: #f45400;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-products__bg::after {
  background-attachment: fixed;
  background-image: url(../img/bg_top-food-pc.png.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-products__container {
  margin: 0 auto;
  max-width: 960px;
  position: relative;
  z-index: 1;
}

.p-products__title {
  border-bottom: 2px solid #fff;
  margin: 0 auto;
  max-width: 396px;
  padding-bottom: 7px;
}

.p-products__map {
  margin-top: 87px;
}

.p-products__map-title {
  max-width: 82px;
}

.p-products__map-img {
  border-radius: 20px;
  margin-top: 35px;
  overflow: hidden;
  position: relative;
}
.p-products__map-img img {
  aspect-ratio: 960/669;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-products__foods {
  margin-top: 164px;
}

.p-products__foods-title {
  max-width: 122px;
}

.p-products__foods-list {
  display: grid;
  gap: 110px 112px;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  margin-top: 33px;
}

.p-products__goods {
  margin-top: 187px;
}

.p-products__goods-title {
  max-width: 122px;
}

.p-products__goods-list {
  display: grid;
  gap: 110px 112px;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  margin-top: 35px;
}

.p-products__container-foot-txt {
  margin-top: 100px;
  max-width: 600px;
}
.p-products__container-foot-txt strong {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  text-align: left;
}

.p-top-access__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-access {
  margin-top: -3.90625vw;
  padding-bottom: 234px;
  padding-top: 211px;
  position: relative;
  top: 0;
}

.p-top-access__map {
  border-radius: 20px;
  margin: 97px auto 0;
  max-width: 680px;
  overflow: hidden;
  padding-bottom: 37.1666666667%;
  position: relative;
  width: 100%;
}
.p-top-access__map iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-event__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-event {
  margin-top: -4.53125vw;
  position: relative;
}

.p-top-event__container {
  display: flex;
  margin: 99px auto 0;
  max-width: 1137px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.p-top-event__img {
  border-radius: 20px;
  flex-grow: 1;
  margin-left: 10px;
  overflow: hidden;
  position: relative;
}
.p-top-event__img img {
  aspect-ratio: 560/440;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-event__txt-wrap {
  flex-shrink: 0;
}

.p-top-event__txt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6875;
  margin-top: 22px;
}

.p-top-event__place {
  align-items: start;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  justify-content: start;
  letter-spacing: 0em;
  line-height: 1.6875;
  margin-top: 25px;
}

.p-top-event__button {
  margin-top: 80px;
  max-width: 340px;
}

.p-top-food__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-top-food {
  margin-top: -4.296875vw;
  position: relative;
  top: 0;
}

.p-top-food__container {
  display: flex;
  flex-direction: row-reverse;
  margin: 85px auto 0;
  max-width: 1137px;
  position: relative;
  z-index: 2;
}

.p-top-food__img {
  border-radius: 20px;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.p-top-food__img img {
  aspect-ratio: 560/440;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-food__txt-wrap {
  flex-shrink: 0;
  width: 100%;
}

.p-top-food__txt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.75;
}

.p-top-food__place {
  align-items: start;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  justify-content: start;
  letter-spacing: 0em;
  line-height: 1.75;
  margin-top: 21px;
}
.p-top-food__place dd {
  margin-left: 3px;
}

.p-top-food__button {
  margin-top: 76px;
  max-width: 340px;
}

.p-top-history__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/****************
TOPページ
ABOUT セクション
****************/
.p-top-about {
  padding-top: 438px;
  padding-bottom: 186px;
  position: relative;
}

.p-top-about__txt {
  text-align: center;
}

.p-top-about__button {
  margin: 80px auto auto;
  max-width: 340px;
}

/****************
TOPページ
PHOTO GALLERYセクション
*****************/
.p-top-history {
  padding-bottom: 234px;
  padding-top: 211px;
  position: relative;
  top: 0;
}

.p-top-history__list {
  list-style-type: disc;
  padding-left: 2rem;
  margin: auto;
}
.p-top-history__list li {
  list-style-type: disc;
  line-height: 1.6825;
}

.p-top-news__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center top;
  mask-position: center top;
  overflow: hidden;
}
.p-top-news__wave::after {
  aspect-ratio: 1485/1142;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -288px;
  content: "";
  height: auto;
  left: 50%;
  mix-blend-mode: screen;
  position: absolute;
  transform: translateX(-50%);
  width: 116.009375%;
}

.p-top-news {
  left: 0;
  margin-top: -3.515625vw;
  padding-bottom: 438px;
  padding-top: 186px;
  position: relative;
  top: 0;
}

.p-top-news__container {
  grid-area: contents;
  margin: 168px auto 0;
  max-width: 531px;
  min-height: 241px;
  padding: 0 40px;
  position: relative;
}

.p-top-news__bg-svg {
  animation: shake 5s infinite;
  aspect-ratio: 1080/692;
  height: auto;
  left: 50%;
  max-width: 980px;
  position: absolute;
  top: calc(50% + 30px);
  transform: translate(-50%, -50%) rotate(5deg);
  width: 76.5625vw;
}
.p-top-news__bg-svg svg {
  display: block;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
}

.p-top-news__list {
  display: flex;
  flex-direction: column;
  gap: 39.6px;
  position: relative;
}

.p-top-news__item-link {
  transition: all 0.3s ease;
}

.p-top-news__item-date {
  color: #ff1d1d;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.0013em;
  line-height: 1.6875;
}

.p-top-news__title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 1.6875;
  word-break: break-all;
}

.p-top-news__linkBox {
  bottom: -17px;
  margin-top: 17px;
  max-width: 424px;
  position: relative;
  position: absolute;
  right: 0;
  text-align: right;
}

.p-top-news-link {
  color: #ff1d1d;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.0013em;
  line-height: 1.125;
  padding-right: 11px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.p-top-news-link::after {
  content: "＞";
  font-size: 16px;
  font-weight: 500;
  height: 16px;
  letter-spacing: 0.0013em;
  line-height: 1.125;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
}

.p-top-share__bg {
  margin-top: -9.765625vw;
  position: relative;
}

.p-top-share__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-share__list {
  align-items: center;
  display: flex;
  gap: 147px;
  justify-content: center;
  margin-top: 81px;
  position: relative;
  z-index: 3;
}

.p-top-share__item {
  aspect-ratio: 1/1;
  height: auto;
  max-width: 78.4px;
}

.p-top-share__link {
  transition: opacity 0.3s ease;
}

.p-top-sponsor {
  left: 0;
  margin-top: -1px;
  padding-bottom: 12.65625vw;
  padding-top: 190px;
  position: relative;
  top: 0;
}

.p-top-sponsor__title {
  margin-bottom: 60px;
  margin-left: 45px;
  max-width: 266px;
}

.p-top-sponsor__txt {
  color: #1a0000;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 1.0454545455;
  margin-top: 40px;
  text-align: center;
}

.p-top-sponsor__img {
  margin: 20px auto 0;
  max-width: 560px;
}
.p-top-sponsor__img img {
  aspect-ratio: 780/240;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-top-sponsor__img a {
  transition: all 0.3s ease;
}
.p-top-sponsor__img.sm {
  max-width: 200px;
}
.p-top-sponsor__img.sm img {
  aspect-ratio: 781/398;
}

.p-top-sponsor__contents {
  color: #1a0000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6875;
  margin-top: 121px;
}

.p-top-sponsor__dl {
  align-items: start;
  display: flex;
  justify-content: center;
  text-align: center;
}
.p-top-sponsor__dl a {
  transition: opacity 0.3s ease;
}

.p-top-youtube__wave {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-top-youtube {
  margin-top: -3.75vw;
  padding-bottom: 168px;
  padding-top: 203px;
  position: relative;
}

.p-top-youtube__container {
  margin: 94.7px auto 0;
  max-width: 680px;
}

.p-top-youtube__img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.p-top-youtube__img img {
  aspect-ratio: 681/447;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-youtube__txt-wrap {
  position: relative;
}

.p-top-youtube__txt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6875;
  text-align: center;
}

.p-top-youtube__button {
  margin: 51px auto 0;
  max-width: 340px;
}

.u-hidden-visible {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
  .c-event-none a:hover {
    cursor: not-allowed;
  }
  .c-pagination-entry a:hover,
  .p-news__pagination-wrap a:hover,
  .card-article__txt a:hover,
  .p-card-news__link:hover,
  .p-drawer__nav-list a:hover {
    opacity: 0.7;
  }
  .p-entry__contents .wp-block-button__link:hover,
  .p-entry__contents a:hover,
  .p-entry__contents .wp-block-button__link:hover {
    opacity: 0.7;
  }
  .p-header__logo-link:hover,
  .p-top-news__item-link:hover,
  .p-top-news-link:hover,
  .p-top-share__link:hover,
  .p-top-sponsor__img a:hover,
  .p-top-sponsor__dl a:hover {
    opacity: 0.7;
  }
}
@media not screen and (min-width: 576px) {
  .u-hidden-nsm {
    display: none;
  }
}
@media screen and (max-width: 750px) and (min-width: 375px) {
  .p-top-news__container {
    margin-top: 20vw;
  }
}
@media not screen and (min-width: 768px) {
  .l-inner {
    padding: 0 5.3333333333vw;
  }
  .p-event__bg::after {
    background-position: 11% bottom;
  }
  .p-header {
    height: 60px;
  }
  .p-header__logo {
    width: min(151px, 38.7179487179vw);
  }
  .p-mv {
    background: url(../img/bg_mv-sp.png.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: auto;
    padding-bottom: 182.9333333333%;
  }
  .p-mv__contents {
    -moz-text-align-last: left;
    bottom: 8.0174927114%;
    max-width: 583px;
    text-align-last: left;
  }
  .p-news__title {
    width: 50.1333333333vw;
  }
  .p-products__bg::after {
    background-position: 16% top;
  }
  .p-products__container-foot-txt {
    margin-top: 50px;
  }
  .u-hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-mv {
    background: url(../img/2025/pc/hero.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 82.2916666667%;
  }
  .u-hidden-pd,
  .u-hidden-md {
    display: none;
  }
}
@media not screen and (min-width: 980px) {
  .p-event__timeTable-container {
    overflow-x: scroll;
    padding: 0 20px;
    width: 100vi;
  }
}
@media screen and (min-width: 1200px) {
  .box {
    min-height: 1500px;
  }
  .c-section__title.c-section__title-top-news {
    margin-left: 48px;
  }
  .c-section__title.c-section__title-top-event {
    margin-left: 47px;
  }
  .c-section__title.c-section__title-top-food {
    margin-left: auto;
    margin-right: 54px;
    text-align: right;
  }
  .c-section__title.c-section__title-top-youtube {
    margin-left: 54px;
  }
  .c-section__title.c-section__title-access {
    margin-left: 44px;
  }
  .c-section__title.c-section__title-history {
    margin-left: 44px;
  }
  .p-drawer__icon.is-open .p-drawer__icon-item:nth-child(2), .p-drawer__icon.is-open .p-drawer__icon-item:nth-child(4) {
    width: 60px;
  }
  .p-drawer__nav::after {
    background: url(../img/bg_drawer-pc.png.webp) no-repeat center center/cover;
  }
  .p-drawer__nav-list {
    aspect-ratio: 775/557;
    gap: 7px;
    padding-bottom: 62px;
    width: 60.546875%;
  }
  .p-drawer__nav-list::after {
    background: url(../img/deco_drawer-pc.svg) no-repeat center center/cover;
    left: calc(50% - 5px);
    top: calc(50% - 35px);
  }
  .p-entry::before {
    background-image: url(../img/bg_entry-pc.png.webp);
  }
  .p-event::after {
    background-image: url(../img/deco_head-wave-pc.svg);
    padding-bottom: 5.7638888889%;
  }
  .p-footer__wave {
    -webkit-mask-image: url(../img/bg_footer-wave-pc.svg);
    background-color: #ea5504;
    mask-image: url(../img/bg_footer-wave-pc.svg);
  }
  .p-footer__wave::after {
    aspect-ratio: 3900/389;
    background-image: url(../img/deco_footer-pc.png.webp);
    width: 152.3125%;
  }
  .p-footer::before {
    background-image: url(../img/deco_footer-wave-pc.svg);
    background-position: left 0px top;
    padding-top: 8.203125%;
    top: 1.171875vw;
    width: 100%;
  }
  .p-mv__contents {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 2.3;
  }
  .p-news::before {
    background-image: url(../img/bg_entry-pc.png.webp);
  }
  .p-products::after {
    background-image: url(../img/deco_head-wave-pc.svg);
    padding-bottom: 5.7638888889%;
  }
  .p-top-access__wave {
    background: url(../img/2025/pc/ACCESS-100.jpg) no-repeat center top/cover;
  }
  .p-top-event__wave {
    background: url(../img/2025/pc/STAGE\ EVENT-100.jpg) no-repeat center top/cover;
  }
  .p-top-event {
    padding-bottom: 180px;
    padding-top: 191px;
  }
  .p-top-event__container {
    gap: 63px;
  }
  .p-top-event__txt-wrap {
    width: 502px;
  }
  .p-top-food__wave {
    background: url(../img/2025/pc/FOODS&GOODS-100.jpg) no-repeat center top/cover;
  }
  .p-top-food {
    padding-bottom: 180px;
    padding-top: 186px;
  }
  .p-top-food__container {
    gap: 56px;
  }
  .p-top-food__img {
    margin-right: 19px;
  }
  .p-top-food__txt-wrap {
    width: 500px;
  }
  .p-top-food__txt {
    margin-top: 32px;
  }
  .p-top-news__wave {
    background: url(../img/2025/pc/WHATS\ NEW.png);
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-news__wave::after {
    background-image: url(../img/bg_top-news-sp.png.webp);
    bottom: -22.5vw;
  }
  .p-top-share__wave {
    background: url(../img/bg_top-share.png.webp) no-repeat center top/cover;
  }
  .p-top-youtube__wave {
    background: url(../img/2025/pc/YOUTUBE-100.jpg) no-repeat center top/cover;
  }
  .p-top-youtube__txt-wrap {
    margin-top: 28.7px;
  }
  .p-top-history__wave {
    background: url(../img/2025/pc/HISTORY.png) no-repeat center top/cover;
  }
  .u-hidden-xl {
    display: none;
  }
}
@media not screen and (min-width: 1200px) {
  .l-inner {
    max-width: 600px;
  }
  .c-button {
    min-height: 64px;
  }
  .c-button__txt.c-button__youtube {
    margin-left: 0;
    margin-right: 10px;
    padding-left: 47px;
    padding-right: 34px;
  }
  .c-button__txt.c-button__youtube::before {
    height: 25px;
    width: 29px;
  }
  .c-pagination-entry {
    gap: 61px;
  }
  .p-news__pagination-wrap .prev {
    left: 9px;
    padding-left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-news__pagination-wrap .next {
    padding-right: 21px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-section__title.c-section__title-top-news {
    margin-left: 4px;
    width: 50.1333333333vw;
  }
  .c-section__title.c-section__title-top-event {
    margin-left: 3px;
    width: 52.2666666667vw;
  }
  .c-section__title.c-section__title-top-food {
    margin-left: 3px;
    width: 52.8vw;
  }
  .c-section__title.c-section__title-top-youtube {
    margin-left: 3px;
    width: 35.2vw;
  }
  .c-section__title.c-section__title-access {
    margin-left: 3px;
    width: 28vw;
  }
  .card-article__img img {
    aspect-ratio: 330/205;
  }
  .card-article__title {
    font-size: 20px;
    font-weight: 0;
    letter-spacing: 0.01em;
    line-height: 1.35;
    margin-top: 12px;
  }
  .card-article__txt {
    margin-top: 7px;
  }
  .p-card-news {
    padding: 10px 0 12px;
  }
  .p-news__item:last-child .p-card-news {
    border-bottom: none;
  }
  .p-card-news__link::after {
    font-size: 16px;
  }
  .p-card-news__item-body {
    margin-top: 8px;
  }
  .p-card-news__title {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.35;
  }
  .p-drawer__icon {
    height: 54px;
    width: 54px;
  }
  .p-drawer__icon.is-open .p-drawer__icon-item:nth-child(2), .p-drawer__icon.is-open .p-drawer__icon-item:nth-child(4) {
    top: 25px;
  }
  .p-drawer__icon-item {
    height: 2px;
    top: 15px;
    width: 34px;
  }
  .p-drawer__icon-item:nth-child(3) {
    top: 27px;
  }
  .p-drawer__icon-item:nth-child(4) {
    top: 38px;
  }
  .p-drawer__nav {
    min-height: 668px;
  }
  .p-drawer__nav::after {
    background: url(../img/bg_drawer-sp.png.webp) no-repeat center center/cover;
  }
  .p-drawer__nav-list {
    aspect-ratio: 413/412;
    gap: 0;
    max-width: 750px;
    padding-bottom: 3px;
    width: 110.1333333333%;
  }
  .p-drawer__nav-list::after {
    background: url(../img/deco_drawer-sp.svg) no-repeat center center/cover;
    left: calc(50% - 20px);
    top: calc(50% - 3px);
  }
  .p-drawer__nav-list li {
    max-width: 178px;
  }
  .p-drawer__nav-list a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 2.3125;
  }
  .p-drawer__nav-list a::after {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0em;
    line-height: 2.3125;
  }
  .p-entry {
    padding-bottom: 20.5333333333vw;
    padding-top: 63px;
  }
  .p-entry::before {
    background-color: #ffed5f;
    background-image: url(../img/bg_entry-sp.png.webp);
    mix-blend-mode: hard-light;
    opacity: 0.18;
  }
  .p-entry__title {
    width: 33.6vw;
  }
  .p-entry__container {
    left: 50%;
    margin-top: 16px;
    max-width: 800px;
    padding: 43px 15px 44px;
    transform: translateX(-50%);
    width: 91.2vw;
  }
  .p-entry__meta {
    gap: 11px;
  }
  .p-entry__post-title {
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 1.35;
    margin-left: 4px;
    margin-top: 8px;
  }
  .p-entry__contents {
    margin-left: 5px;
    margin-right: 7px;
    margin-top: 22px;
  }
  .p-entry__contents .wp-block-button__link {
    min-height: 64px;
    padding: 0px 60px 0 24px;
  }
  .p-entry__contents .wp-block-button__link::before {
    right: 24px;
  }
  .p-entry__pagination-wrap {
    margin-top: 58px;
  }
  .p-event {
    padding-bottom: 31.4666666667vw;
    padding-top: 15.4666666667vw;
  }
  .p-event::after {
    background-image: url(../img/deco_head-wave-sp.svg);
    padding-bottom: 5.6%;
  }
  .p-event__container {
    padding: 0 2px 0 3px;
  }
  .p-event__title {
    padding-bottom: 13px;
    width: 52.2666666667vw;
  }
  .p-event__timeTable {
    margin: 47px auto 0;
  }
  .p-event__timeTable-title {
    width: 33.8666666667vw;
  }
  .p-event__timeTable-container {
    margin-top: 13px;
  }
  .p-event__artist {
    margin-top: 122px;
  }
  .p-event__artist-title {
    width: 24.5333333333vw;
  }
  .p-event__artist-list {
    gap: 49px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 12px;
  }
  .p-footer__wave {
    -webkit-mask-image: url(../img/bg_footer-wave-sp.svg);
    background-color: #ea3004;
    mask-image: url(../img/bg_footer-wave-sp.svg);
  }
  .p-footer__wave::after {
    aspect-ratio: 812/198;
    background-image: url(../img/deco_footer-sp.png.webp);
    bottom: -3px;
    left: calc(50% + 15px);
    width: 108.2453333333%;
  }
  .p-footer {
    min-height: 92px;
    padding-top: 15px;
  }
  .p-footer::before {
    background-image: url(../img/deco_footer-wave-sp.svg);
    background-position: left 0px top;
    padding-top: 6.4%;
    top: -1.6vw;
    width: 100%;
  }
  .p-footer__copy {
    bottom: 28px;
  }
  .p-header__logo {
    margin-left: 0;
    max-width: 151px;
  }
  .p-news {
    padding-bottom: 20.8vw;
    padding-top: 59px;
  }
  .p-news::before {
    background-color: #ffed5f;
    background-image: url(../img/bg_entry-sp.png.webp);
    mix-blend-mode: hard-light;
    opacity: 0.18;
  }
  .p-news__container {
    left: 50%;
    margin-top: 17px;
    max-width: 700px;
    padding: 36px 21px 44px;
    transform: translateX(-50%);
    width: 91.2vw;
  }
  .p-news__pagination-wrap {
    margin-top: 58px;
  }
  .p-products {
    padding-bottom: 31.4666666667vw;
    padding-top: 15.4666666667vw;
  }
  .p-products::after {
    background-image: url(../img/deco_head-wave-sp.svg);
    padding-bottom: 5.6%;
  }
  .p-products__container {
    padding: 0 3px 0 2px;
  }
  .p-products__title {
    width: 52.8vw;
  }
  .p-products__map {
    margin-top: 48px;
  }
  .p-products__map-title {
    width: 12vw;
  }
  .p-products__map-img {
    margin-top: 15px;
  }
  .p-products__map-img img {
    aspect-ratio: 330/229;
  }
  .p-products__foods {
    margin-top: 104px;
  }
  .p-products__foods-title {
    width: 17.6vw;
  }
  .p-products__foods-list {
    gap: 49px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 12px;
  }
  .p-products__goods {
    margin-top: 93px;
  }
  .p-products__goods-title {
    max-width: 67px;
  }
  .p-products__goods-list {
    gap: 49px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 12px;
  }
  .p-top-access__wave {
    background: url(../img/bg_top-access-wave-sp.png.webp) no-repeat center top/cover;
  }
  .p-top-access {
    margin-top: -12.2666666667vw;
    padding-bottom: 20.5333333333vw;
    padding-top: 20vw;
  }
  .p-top-access__map {
    margin-top: 26px;
    padding-bottom: 77.3134328358%;
    padding-left: 3px;
    padding-right: 2px;
  }
  .p-top-event__wave {
    background: url(../img/bg_top-event-sp.png.webp) no-repeat center top/cover;
  }
  .p-top-event {
    margin-top: -6.9333333333vw;
    padding-bottom: 29.3333333333vw;
    padding-top: 18.6666666667vw;
  }
  .p-top-event__container {
    flex-direction: column;
    gap: 9px;
    margin-top: 25px;
  }
  .p-top-event__img {
    margin-left: 3px;
    margin-right: 2px;
  }
  .p-top-event__img img {
    aspect-ratio: 330/259;
  }
  .p-top-event__txt-wrap {
    width: 100%;
  }
  .p-top-event__txt {
    letter-spacing: 0.04em;
    margin-left: 2px;
    margin-top: 0;
  }
  .p-top-event__place {
    margin-left: 3px;
  }
  .p-top-event__button {
    margin: 32px auto 0;
    max-width: 330px;
  }
  .p-top-food__wave {
    background: url(../img/bg_top-foodsgoods-sp.png.webp) no-repeat center top/cover;
  }
  .p-top-food {
    margin-top: -16.5333333333vw;
    padding-bottom: 21.6vw;
    padding-top: 18.6666666667vw;
  }
  .p-top-food__container {
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
  }
  .p-top-food__img {
    margin-left: 2px;
    margin-right: 3px;
  }
  .p-top-food__img img {
    aspect-ratio: 330/259;
  }
  .p-top-food__txt {
    margin-left: 2px;
  }
  .p-top-food__place {
    margin-left: 2px;
    margin-top: 17px;
  }
  .p-top-food__button {
    margin: 28px auto 0;
    max-width: 330px;
  }
  .p-top-news__wave {
    -webkit-mask-image: url(../img/bg_top-news-wave-sp.png.webp);
    background: url(../img/bg_top-news-wave-sp.png.webp) no-repeat center top/cover;
    mask-image: url(../img/bg_top-news-wave-sp.png.webp);
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top-news__wave::after {
    aspect-ratio: 915/704;
    background-image: url(../img/bg_top-news-sp.png.webp);
    bottom: -50px;
    width: 121.8666666667%;
  }
  .p-top-news {
    margin-top: -5.3333333333vw;
    padding-bottom: 26.1333333333vw;
    padding-top: 18.6666666667vw;
  }
  .p-top-news__container {
    padding: 0 20px;
  }
  .p-top-news__bg-svg {
    aspect-ratio: 464/303;
    left: calc(50% - 15px);
    max-width: 750px;
    min-width: 464px;
    top: 50%;
    width: 123.7333333333vw;
  }
  .p-top-news__list {
    gap: 10px;
  }
  .p-top-news__linkBox {
    bottom: 26px;
    margin-top: 7px;
    right: 20px;
  }
  .p-top-news-link {
    margin-right: 7px;
    padding-right: 15px;
  }
  .p-top-news-link::after {
    width: 10px;
  }
  .p-top-share__bg {
    margin-top: -8.8vw;
  }
  .p-top-share__wave {
    background: url(../img/bg_top-sponsor-sp.png.webp) no-repeat center top/cover;
  }
  .p-top-share__list {
    gap: 39px;
    margin-top: 35px;
  }
  .p-top-share__item {
    max-width: 57.4px;
  }
  .p-top-sponsor {
    padding-bottom: 27.7333333333vw;
    padding-top: 111px;
  }
  .p-top-sponsor__title {
    margin-bottom: 3px;
    margin-left: 3px;
    max-width: 133px;
  }
  .p-top-sponsor__img {
    max-width: 396px;
  }
  .p-top-sponsor__img.sm {
    max-width: 150px;
  }
  .p-top-sponsor__contents {
    margin-top: 91px;
  }
  .p-top-youtube__wave {
    background: url(../img/bg_top-youtube-wave-sp.png.webp) no-repeat center top/cover;
  }
  .p-top-youtube {
    margin-top: -7.4666666667vw;
    padding-bottom: 25.8666666667vw;
    padding-top: 18.6666666667vw;
  }
  .p-top-youtube__container {
    margin-top: 22.7px;
  }
  .p-top-youtube__img {
    margin-left: 2px;
    margin-right: 3px;
  }
  .p-top-youtube__img img {
    aspect-ratio: 330/259;
  }
  .p-top-youtube__txt {
    margin-left: 4px;
    margin-top: 10px;
    text-align: left;
  }
  .p-top-youtube__button {
    margin-top: 56px;
    max-width: 330px;
  }
  .u-hidden-tb {
    display: none;
  }
}
@media screen and (max-width: 1200px) and (min-width: 750px) {
  .p-top-news__container {
    margin-top: 157px;
  }
}
@media not screen and (min-width: 1400px) {
  .u-hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .p-top-news__container {
    margin-top: 11.4666666667vw;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes shake {
  0% {
    transform: translate(-50%, -50%) rotate(2deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(2deg);
  }
}
@keyframes round_anime {
  0% {
    border-radius: 30% 60% 60% 40%/30% 40% 60% 60%;
  }
  25% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  50% {
    border-radius: 60% 30% 30% 60%/50% 60% 30% 50%;
  }
  75% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  100% {
    border-radius: 30% 60% 60% 40%/30% 40% 60% 60%;
  }
}
@keyframes round-inner-anime {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */