@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");

/** base **/
body {
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    sans-serif;
  font-size: 16px;
  position: relative;
}
a {
  color: inherit;
  transition: opacity 0.3s ease 0s;
}
a:hover {
  opacity: 0.6;
}
img {
  max-width: 100%;
  height: auto;
}
br.pc {
  display: inline;
}
br.sp {
  display: none;
}

/* header */
header {
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, #00aee9, #05aca1);
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 1;
}
header .inner {
  width: calc((1280 / 1440) * 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .menu_toggle {
  display: none;
}
header nav .menu {
  display: flex;
}
header nav .menu li {
  padding-left: 35px;
  display: flex;
  align-items: center;
}
header nav .menu li::before {
  content: "|";
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-right: 35px;
}
header nav .menu li:first-child:before {
  content: none;
}
header nav .menu a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
header nav .menu a .sub {
  font-size: 10px;
}
header nav .menu .current a {
  color: #fff100;
}

/* footer */
footer {
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, #00aee9, #05aca1);
  display: flex;
  justify-content: center;
  color: #fff;
}
footer .inner {
  width: calc((1280 / 1440) * 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .copyright {
  font-size: 10px;
  position: absolute;
  right: 0;
}

/* goform */
.goform {
  width: 250px;
  height: 70px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  right: calc((((1440 - 1280) * 0.5) / 1440) * 100%);
}
.goform a {
  background: linear-gradient(90deg, #cb3657, #ffdb00);
  border-radius: 70px;
  padding: 3px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.goform a .inner {
  border: 2px solid #fff;
  border-radius: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  padding-left: 25px;
}
.goform a .sub {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
}
.goform a .txt {
  letter-spacing: 0.05em;
}
.goform a .arrow {
  position: absolute;
  right: 11px;
  top: calc(50% - 11px);
  width: 44px;
  height: 22px;
  overflow: hidden;
}
.goform a .arrow::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icon_arrowright.svg) center center no-repeat;
  position: absolute;
  left: 11px;
  top: 0;
}
.goform a:hover {
  opacity: 1;
}
.goform a:hover .arrow::before {
  animation: kf-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
}
@keyframes kf-arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  37% {
    transform: translateX(100%);
    opacity: 1;
  }
  38% {
    transform: translateX(100%);
    opacity: 0;
  }
  39% {
    transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.goform.nofixed {
  position: absolute;
  bottom: calc(40px + 120px);
}

/* contents */
.contents {
  margin-top: 100px;
}
.contents > section {
  scroll-margin-top: 100px;
}
.contents > section .inner {
  padding: 120px 0;
  position: relative;
}
.contents > section h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #00adaa;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}
.contents > section h2 span.main {
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contents > section h2 span.main::before,
.contents > section h2 span.main::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/icon_head_star.svg) center center no-repeat;
}
.contents > section h2 span.sub {
  font-size: 14px;
  letter-spacing: 0em;
  padding-top: 5px;
  opacity: 0.5;
}
.coming_soon {
  color: #c9c9c9;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}

/* effects */
@keyframes kf-bright {
  0% {
    filter: brightness(0%);
  }
  50% {
    filter: brightness(150%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes kf-bound {
  0% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.efx-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.efx-fade.scrollin {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.efx-bright,
.efx-fv {
  filter: brightness(0%);
}
.efx-bright.scrollin,
.efx-fv.scrollin {
  -webkit-animation: kf-bright 3s ease-in-out 0.1s 1 normal forwards;
  animation: kf-bright 3s ease-in-out 0.1s 1 normal forwards;
}
.efx-bound.scrollin {
  animation: kf-bound 0.6s ease-in-out 0.5s forwards;
}

/* sec_fv */
.sec_fv {
  padding: 0;
  height: calc((810 / 1440) * 100vw);
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_fv .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/img_fv_02.jpg) center center no-repeat;
  background-size: cover;
}
.sec_fv h1 {
  position: relative;
  width: calc((478 / 1440) * 100%);
}
.sec_fv h1 img {
  width: 100%;
}

/* sec_news */
.contents .sec_news {
  background-color: #e5f7f6;
  padding: 80px 0;
}
.sec_news .news_list {
  width: calc((1140 / 1440) * 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_news .news_list > li {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  gap: 30px;
  padding: 20px 40px;
  position: relative;
  cursor: pointer;
}
.sec_news .news_list > li a {
  text-decoration: underline;
}
.sec_news .news_list > li.nobody {
  cursor: default;
}
.sec_news .news_list > li::before,
.sec_news .news_list > li::after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #00adaa;
  position: absolute;
  right: 40px;
  top: 36px;
  transition: all 0.4s ease;
}
.sec_news .news_list > li::after {
  transform: rotate(90deg) translate(0px, 0px);
}
.sec_news .news_list > li.nobody::before,
.sec_news .news_list > li.nobody::after {
  content: none;
}
.sec_news .news_list > li.open::before {
  transform: rotate(180deg);
}
.sec_news .news_list > li.open::after {
  transform: rotate(180deg);
}
.sec_news .date {
  min-width: 80px;
  height: 32px;
  display: flex;
  align-items: center;
}
.sec_news .category {
  min-width: 124px;
  height: 32px;
  font-size: 14px;
  color: #fff;
  background-color: #00adaa;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_news .texts {
  flex: 1;
}
.sec_news .texts p.title {
  margin-top: 0;
  color: #00adaa;
  min-height: 32px;
  display: flex;
  align-items: center;
  line-height: 1.3;
  padding-right: 2em;
}
.sec_news .texts p.body {
  line-height: 2;
  margin-top: 14px;
  display: none;
}

/* sec_about */
.contents .sec_about {
  text-align: center;
  color: #fff;
  position: relative;
  background-color: #e5f7f6;
}
.contents .sec_about .mask {
  clip-path: ellipse(110% 60% at 50% 60%);
  background: linear-gradient(
    #cb3657 0%,
    #ffdb00 36%,
    #ffdb00 43%,
    #479a5e 74%,
    #1d9c92 100%
  );
}
.contents .sec_about .inner {
  padding-top: 200px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.sec_about .catch {
  margin-bottom: 80px;
  position: relative;
}
.sec_about .symbol {
  display: inline-block;
  position: relative;
}
.sec_about .symbol img {
  width: 80%;
}
.sec_about .info {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0 auto;
  font-size: 50px;
  font-size: clamp(40px, 3.436426vw, 50px);
  font-weight: bold;
}
.sec_about .info em {
  color: #fff100;
  font-size: 80px;
  font-size: 160%;
  font-weight: bold;
  font-style: normal;
}
.sec_about .info .info1,
.sec_about .info .info2 {
  text-align: left;
}
.sec_about .info .info1 .date {
  margin-bottom: 5px;
  white-space: nowrap;
}
.sec_about .info .info1 .date small {
  font-size: 30px;
  font-size: 60%;
}
.sec_about .info .info1 .time small {
  font-size: 28px;
  font-size: 56%;
  font-weight: normal;
}
.sec_about .info .info2 .place {
  margin-bottom: 20px;
}
.sec_about .info .info2 .access {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_about .info .info2 .access > li {
  line-height: 1.5;
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.sec_about .info .free {
  position: absolute;
  top: -160px;
  left: calc(50% + 350px);
}
.sec_about .about_bg {
  position: absolute;
}
.sec_about .about_bg img {
  width: 100%;
}
.sec_about #about_bg1 {
  left: 80px;
  top: 164px;
  width: 272px;
}
.sec_about #about_bg2 {
  right: 0px;
  top: 264px;
  width: 278px;
}
.sec_about #about_bg3 {
  right: 178px;
  top: 628px;
  width: 192px;
}
.sec_about #about_bg4 {
  left: 23px;
  top: 743px;
  width: 308px;
}
.sec_about #about_bg5 {
  left: 141px;
  top: 882px;
  width: 228px;
}

/* sec_contents */
.sec_contents .inner {
  width: calc((1060 / 1440) * 80%);
  margin: 0 auto;
  text-align: center;
}
.sec_contents ul.contents_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sec_contents ul.contents_list > li {
  text-align: left;
}
.sec_contents ul.contents_list > li .img img {
  border-radius: 20px;
}
.sec_contents ul.contents_list > li .texts {
  border-radius: 15px;
  background-color: #fff;
  text-align: left;
  padding: 30px;
  margin-top: -50px;
  margin-left: -110px;
  position: relative;
  display: inline-block;
}
.sec_contents ul.contents_list > li .texts p.title {
  color: #00adaa;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
.sec_contents ul.contents_list > li .texts .body {
  line-height: 2;
}
.sec_contents ul.contents_list > li .texts .body > p {
  margin-bottom: 20px;
}
.sec_contents ul.contents_list > li .texts .body > p:last-child {
  margin-bottom: 0px;
}
.sec_contents ul.contents_list > li .texts .body .detail {
  border: 1px solid #00adaa;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 20px;
}
.sec_contents ul.contents_list > li .texts .body .detail .subti {
  color: #00adaa;
  font-weight: bold;
}
.sec_contents ul.contents_list > li .texts .body .detail > ul {
  border-left: 1px solid #00adaa;
  padding-left: 20px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sec_contents ul.contents_list > li .texts .body .detail > ul > li {
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.6;
}
.sec_contents ul.contents_list > li .texts .info {
  background-color: #00adaa;
  border-radius: 10px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 9px 20px 10px 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.sec_contents ul.contents_list > li .texts .info span {
  display: inline-block;
  vertical-align: bottom;
  line-height: 28px;
}
.sec_contents ul.contents_list > li .texts .info span::before {
  content: "｜";
  font-size: 28px;
  font-weight: bold;
}
.sec_contents ul.contents_list > li .texts .info span:first-child::before {
  content: none;
}
.sec_contents ul.contents_list > li .texts .info .date {
  font-size: 28px;
}
.sec_contents ul.contents_list > li .texts .info .timesche {
  font-size: 24px;
}
.sec_contents ul.contents_list > li .texts .info .timesche small {
  font-size: calc(18 / 24 * 100%);
  padding-right: 10px;
  vertical-align: inherit;
}
.sec_contents ul.contents_list > li .texts .info .location {
  font-size: 20px;
}
.sec_contents ul.contents_list > li .texts .note {
  font-size: 12px;
}
.sec_contents ul.contents_list > li .layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.sec_contents ul.contents_list > li .subinfo {
  padding-bottom: 30px;
  text-align: right;
}
.sec_contents ul.contents_list > li .subinfo .main {
  font-size: 20px;
  font-weight: bold;
  color: #00adaa;
  line-height: 1.6;
}
.sec_contents ul.contents_list > li .subinfo .main strong {
  font-size: 32px;
}
.sec_contents ul.contents_list > li .subinfo .note {
  font-size: 12px;
  line-height: 2;
}
.sec_contents .andmore {
  margin-top: 40px;
  font-size: 46px;
  font-weight: bold;
  color: #00aee9;
}
.sec_contents .andmore small {
  font-size: 88.888%;
}

/* abtn */
.abtn {
  width: 250px;
  height: 70px;
  margin: 0 auto;
}
.abtn a {
  background: linear-gradient(90deg, #00aee9, #05aca1);
  border-radius: 70px;
  padding: 3px;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.abtn a .border {
  border: 2px solid #fff;
  border-radius: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  padding-left: 25px;
}
.abtn a .sub {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 5px;
}
.abtn a .txt {
  letter-spacing: 0.05em;
}
.abtn a .arrow {
  position: absolute;
  right: 11px;
  top: calc(50% - 11px);
  width: 44px;
  height: 22px;
  overflow: hidden;
}
.abtn a .arrow::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/icon_arrowright.svg) center center no-repeat;
  position: absolute;
  left: 11px;
  top: 0;
}
.abtn a:hover {
  opacity: 1;
}
.abtn a:hover .arrow::before {
  animation: kf-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
}

/* sec_foods */
.sec_foods {
  background: url(../img/img_foods_bg_01.svg) top center no-repeat;
  background-size: contain;
  background-color: #e5f7f6;
}
.contents .sec_foods > .inner {
  width: calc((1060 / 1440) * 80%);
  margin: 0 auto;
}
.sec_foods ul.foods_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sec_foods ul.foods_list > li {
  text-align: left;
}
.sec_foods ul.foods_list > li .img {
  margin-bottom: 40px;
}
.sec_foods ul.foods_list > li .img img {
  border-radius: 20px;
}
.sec_foods ul.foods_list > li .texts {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sec_foods ul.foods_list > li h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #00adaa;
}
.sec_foods ul.foods_list > li .body > p {
  line-height: 2;
}
.sec_foods ul.foods_list > li .texts .abtn {
  margin-top: 40px;
}

/* sec_stage */
.sec_stage {
  background: url(../img/img_stage_bg_02.svg) top center no-repeat;
  background-size: cover;
}
.contents .sec_stage .inner {
  width: calc((1060 / 1440) * 80%);
  margin: 0 auto;
}
.sec_stage ul.stage_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sec_stage ul.stage_list > li {
  text-align: left;
}
.sec_stage ul.stage_list > li .img {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.sec_stage ul.stage_list > li .texts {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sec_stage ul.stage_list > li h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #00adaa;
}
.sec_stage ul.stage_list > li .body > p {
  line-height: 2;
}
.sec_stage ul.stage_list > li .texts .abtn {
  margin-top: 40px;
  width: 312px;
}

/* sec_map */
.sec_map {
  background-color: #00adaa;
  color: #fff;
}
.contents .sec_map h2 {
  color: #fff;
}
.contents .sec_map h2 span.main::before,
.contents .sec_map h2 span.main::after {
  background-image: url(../img/icon_head_star_white.svg);
}
.contents .sec_map .inner {
  width: calc((1060 / 1440) * 100%);
  margin: 0 auto;
}
.contents .sec_map .gmap {
  height: 600px;
  margin-bottom: 20px;
}
.contents .sec_map .gmap iframe {
  border-radius: 20px;
}
.contents .sec_map .go_gmap {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff100;
}
.contents .sec_map .go_gmap a {
  background: url(../img/icon_map-marker.svg) left center no-repeat;
  padding-left: 30px;
}
.contents .sec_map .info {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contents .sec_map .info > li {
  line-height: 1.5;
  text-indent: -1.3em;
  margin-left: 1.3em;
}

/* sec_contact */
.sec_contact .texts {
  width: 414px;
  margin: 0 auto;
  margin-bottom: 58px;
}
.sec_contact .txt1 {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 24px;
}
.sec_contact .txt2 {
  font-size: 14px;
}
.sec_contact .btn a {
  border-radius: 15px;
  width: 840px;
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  background-color: #00adaa;
}
.sec_contact .btn a::before {
  content: "";
  background: url(../img/icon_email.svg) left center no-repeat;
  width: 79px;
  height: 64px;
  display: inline-block;
  margin-right: 20px;
}

/* sec_eventpartner */
.sec_eventpartner {
  background-color: #e5f7f6;
}
.sec_eventpartner .inner {
  width: calc((1060 / 1440) * 100%);
  margin: 0 auto;
  text-align: center;
}
.sec_eventpartner h3 {
  font-size: 24px;
  font-weight: bold;
  color: #00adaa;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_eventpartner h3 > span {
  display: inline-block;
  background-color: #e5f7f6;
  position: relative;
  padding: 0 20px;
}
.sec_eventpartner h3::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #00adaa;
}
.sec_eventpartner p {
  font-size: 20px;
  line-height: 2;
}
.sec_eventpartner .sponsorship ul {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  margin-bottom: 40px;
}
.sec_eventpartner .sponsorship ul > li {
  width: calc((100% - (33px * (4 - 1))) / 4);
}
.sec_eventpartner .sponsorship ul.type2 > li {
  width: calc((100% - (33px * (5 - 1))) / 5);
}
.sec_eventpartner .sponsorship ul.type3 > li {
  width: calc((100% - (33px * (6 - 1))) / 6);
}
.sec_eventpartner .sponsorship .andmore {
  margin-bottom: 60px;
  font-size: 24px;
  font-weight: bold;
}
.sec_eventpartner .sponsorship .andmore small {
  font-size: 75%;
}
.sec_eventpartner .sponsorship h4 {
  color: #00adaa;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.sec_eventpartner .sponsorship p {
  font-size: 16px;
}
.sec_eventpartner .sponsorship p a {
  text-decoration: underline;
}
.sec_eventpartner .cooperation_list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.sec_eventpartner .cooperation_list > li {
  width: 240px;
}
.sec_eventpartner .cooperation_list > li > h4 {
  color: #00adaa;
  font-weight: bold;
  margin-bottom: 10px;
}
.sec_eventpartner .cooperation_list > li > img {
  border-radius: 10px;
}
.sec_eventpartner .cooperation_list > li > p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 10px;
}

/* sec_stores */
.sec_stores {
  background: url(../img/img_foods_bg_01.svg) top center no-repeat;
  background-size: 100%;
  background-position-y: -5vw;
}
.contents .sec_stores .inner {
  width: calc(1280 / 1440 * 100%);
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.sec_stores .tables {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}
.sec_stores .tables table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  table-layout: fixed;
}
.sec_stores .tables th,
.sec_stores .tables td {
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}
.sec_stores .tables thead th {
  font-size: 20px;
  padding: 24px 10px;
  background-color: #00adaa;
  color: #fff;
}
.sec_stores .tables tbody th,
.sec_stores .tables tbody td {
  font-size: 18px;
  background-color: rgba(0, 173, 170, 0.1);
  padding: 15px;
  word-wrap: break-word;
}
.sec_stores .tables .col1 {
  width: 35%;
}
.sec_stores .tables .col2 {
  width: 65%;
}
.sec_stores .tables tbody small {
  font-size: 75%;
  font-weight: normal;
}
.sec_stores .abtn a .txt {
  text-align: center;
  padding-right: 25px;
}

/* sec_timetable */
.sec_timetable {
  background: url(../img/img_tiletable_bg_01.svg) top center repeat-y;
  background-size: 100%;
  background-position-x: 6vw;
  background-position-y: -6vw;
  background-color: #e5f7f6;
}
.contents .sec_timetable .inner {
  width: calc(1060 / 1440 * 100%);
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.sec_timetable .oneday {
  margin-bottom: 80px;
}
.sec_timetable .oneday h3 {
  background-color: #00adaa;
  border-radius: 10px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  line-height: 50px;
  padding: 12px 0px 18px 40px;
  margin: 0 15px;
  margin-bottom: 25px;
}
.sec_timetable .oneday h3 .head::after {
  content: "｜";
}
.sec_timetable .oneday h3 .date {
  font-size: calc(36 / 50 * 100%);
  vertical-align: bottom;
}
.sec_timetable .oneday table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px 15px;
  table-layout: fixed;
  margin-bottom: 25px;
}
.sec_timetable .oneday th,
.sec_timetable .oneday td {
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  color: #00adaa;
  padding: 4px 10px;
}
.sec_timetable .oneday .col1 {
  width: 30%;
  background-color: rgba(0, 173, 170, 0.1);
}
.sec_timetable .oneday .col2 {
  width: 70%;
  background-color: #fff;
}
.sec_timetable .oneday th {
  font-size: 28px;
  font-weight: bold;
}
.sec_timetable .oneday th small {
  font-size: calc(20 / 28 * 100%);
}
.sec_timetable .oneday td {
  font-size: 24px;
  font-weight: bold;
}
.sec_timetable .mc {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.sec_timetable .mc img {
  max-width: 290px;
}
.sec_timetable .mc .texts h4 {
  font-size: 24px;
  font-weight: bold;
  color: #00adaa;
  margin-bottom: 10px;
}
.sec_timetable .mc .texts p {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}
.sec_timetable .abtn a .txt {
  text-align: center;
  padding-right: 25px;
}

/**** sp *****/
@media screen and (max-width: 1024px) {
  /** base **/
  body {
    font-size: 14px;
  }
  br.pc {
    display: none;
  }
  br.sp {
    display: inline;
  }

  /* header */
  header {
    min-height: 70px;
    height: auto;
  }
  header .inner {
    width: 100%;
    display: block;
  }
  header .logo a {
    display: inline-block;
  }
  header .logo a img {
    height: 48px;
    width: auto;
    margin: 11px 20px;
  }
  header .menu_toggle {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 20px;
    top: 11px;
    cursor: pointer;
  }
  header .menu_toggle::before,
  header .menu_toggle::after {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #00adaa;
    position: absolute;
    left: calc(50% - 8px);
    transition: all 0.4s ease;
  }
  header .menu_toggle::before {
    top: calc(50% - 3px);
  }
  header .menu_toggle::after {
    top: calc(50% + 3px);
  }
  header.open .menu_toggle::before {
    transform: rotate(45deg) translate(2px, 2px);
  }
  header.open .menu_toggle::after {
    transform: rotate(-45deg) translate(2px, -2px);
  }
  header nav {
    display: none;
  }
  header nav .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px 0 40px 0;
  }
  header nav .menu li {
    padding: 0;
  }
  header nav .menu li::before {
    content: none;
  }

  /* footer */
  footer {
    height: auto;
  }
  footer .inner {
    display: block;
    text-align: center;
    padding: 20px 0 10px 0;
  }
  footer .copyright {
    position: static;
    margin-top: 20px;
  }

  /* goform */
  .goform {
    width: 180px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  .goform a .inner {
    font-size: 13px;
    padding-left: 20px;
    background-size: 20px auto;
    background-position: calc(100% - 12px) center;
  }
  .goform a .sub {
    font-size: 12px;
  }
  .goform a .arrow {
    right: 5px;
  }
  .goform.nofixed {
    bottom: calc(10px + 120px);
  }

  /* contents */
  .contents {
    margin-top: 70px;
  }
  .contents > section {
    scroll-margin-top: 70px;
  }
  .contents > section .inner {
    width: auto;
    padding: 80px 20px;
  }
  .contents > section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .coming_soon {
    font-size: 30px;
  }

  /* sec_fv */
  .sec_fv {
    height: auto;
    aspect-ratio: 375 / 550;
  }
  .sec_fv .bg {
    background-image: url(../img/img_fv_02_sp.jpg);
  }
  .sec_fv h1 {
    width: calc((241 / 375) * 100%);
    margin-bottom: 50px;
  }

  /* sec_news */
  .contents .sec_news {
    padding: 40px 20px;
  }
  .sec_news .news_list {
    width: auto;
  }
  .sec_news .news_list > li {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 15px;
  }
  .sec_news .texts {
    flex-basis: 100%;
  }
  .sec_news .category {
    font-size: 10px;
    min-width: 80px;
    height: 23px;
  }
  .sec_news .news_list > li::before,
  .sec_news .news_list > li::after {
    right: 15px;
    top: 30px;
  }
  /* sec_about */
  .contents .sec_about .mask {
    clip-path: ellipse(170% 60% at 50% 60%);
  }
  .contents .sec_about .inner {
    padding-top: 120px;
  }

  .sec_about .catch {
    width: 68%;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  .sec_about .symbol {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 80px;
  }
  .sec_about .symbol img {
    width: auto;
  }
  .sec_about .info {
    display: block;
    font-size: 10px;
  }
  .sec_about .info .info1,
  .sec_about .info .info2 {
    text-align: center;
  }
  .sec_about .info .info1 {
    margin-bottom: 30px;
  }
  .sec_about .info .info1 .date {
    font-size: 32px;
  }
  .sec_about .info .info1 .date small {
    font-size: 25px;
  }
  .sec_about .info .info1 .date em {
    font-size: 40px;
  }
  .sec_about .info .info1 .time {
    font-size: 24px;
  }
  .sec_about .info .info1 .time small {
    font-size: 18px;
  }
  .sec_about .info .info2 .place {
    font-size: 36px;
  }
  .sec_about .info .info2 .place em {
    font-size: 46px;
  }
  .sec_about .info .info2 .access {
    font-size: 14px;
    text-align: left;
  }
  .sec_about .info .free {
    width: 117px;
    left: calc(50% + 70px);
    top: -110px;
  }

  .sec_about #about_bg1 {
    left: 38px;
    top: 30px;
    width: 72px;
  }
  .sec_about #about_bg2 {
    right: 6px;
    top: 35px;
    width: 112px;
  }
  .sec_about #about_bg3 {
    right: 72px;
    top: 323px;
    width: 64px;
  }
  .sec_about #about_bg4 {
    left: 6px;
    top: 428px;
    width: 104px;
  }
  .sec_about #about_bg5 {
    left: 46px;
    top: 482px;
    width: 77px;
  }

  /* sec_contents */
  .sec_contents ul.contents_list {
    gap: 40px;
  }
  .sec_contents ul.contents_list > li .img {
    margin-left: 35px;
  }
  .sec_contents ul.contents_list > li .texts {
    padding: 10px;
    margin-left: 0;
    margin-top: -30px;
    margin-right: 20px;
  }
  .sec_contents ul.contents_list > li .texts p.title {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .sec_contents ul.contents_list > li .texts.no_info p.title {
    margin-top: 0;
  }
  .sec_contents ul.contents_list > li .texts .info {
    padding: 5px 8px 8px 8px;
    margin-bottom: 0;
    position: absolute;
    top: -75px;
  }
  .sec_contents ul.contents_list > li .texts .info.row4 {
    top: -90px;
  }
  .sec_contents ul.contents_list > li .texts .info.row2 {
    top: -50px;
  }
  .sec_contents ul.contents_list > li .texts .info.oneline {
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }
  .sec_contents ul.contents_list > li .texts .info span {
    line-height: 1.6em;
  }
  .sec_contents ul.contents_list > li .texts .info span::before {
    font-size: 20px;
  }
  .sec_contents ul.contents_list > li .texts .info .date {
    font-size: 20px;
  }
  .sec_contents ul.contents_list > li .texts .info .timesche {
    font-size: 14px;
  }
  .sec_contents ul.contents_list > li .texts .info .location {
    font-size: 12px;
  }
  .sec_contents ul.contents_list > li .layout {
    display: block;
  }
  .sec_contents ul.contents_list > li .subinfo {
    position: relative;
  }
  .sec_contents .andmore {
    font-size: 30px;
  }

  /* sec_foods */
  .sec_foods {
    background-size: contain;
  }
  .contents .sec_foods .inner {
    width: auto;
    padding-bottom: 80px;
  }
  .sec_foods ul.foods_list > li h3 {
    font-size: 24px;
  }
  /* sec_stage */
  .sec_stage {
    background-size: contain;
  }
  .contents .sec_stage .inner {
    width: auto;
    padding-bottom: 80px;
  }
  .sec_stage ul.stage_list > li .img {
    flex-direction: column;
  }
  .sec_stage ul.stage_list > li h3 {
    font-size: 24px;
  }

  /* sec_map */
  .contents .sec_map .inner {
    width: auto;
  }
  .contents .sec_map .gmap {
    height: 98vw;
  }
  .contents .sec_map .info {
    font-size: 16px;
  }

  /* sec_contact */
  .sec_contact .texts {
    width: auto;
  }
  .sec_contact .txt1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .sec_contact .btn a {
    width: auto;
    height: auto;
    flex-direction: column;
    font-size: 18px;
    padding: 25px 5px;
  }
  .sec_contact .btn a::before {
    width: 44px;
    height: 36px;
    background-size: contain;
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* sec_eventpartner */
  .sec_eventpartner .logo {
    padding: 0 30px;
  }
  .sec_eventpartner h3 {
    font-size: 20px;
  }
  .sec_eventpartner p {
    font-size: 18px;
  }
  .sec_eventpartner .sponsorship ul {
    gap: 20px;
  }
  .sec_eventpartner .sponsorship ul > li {
    width: calc((100% - (20px * (1 - 1))) / 1);
  }
  .sec_eventpartner .sponsorship ul.type2 > li {
    width: calc((100% - (20px * (2 - 1))) / 2);
  }
  .sec_eventpartner .sponsorship ul.type3 > li {
    width: calc((100% - (20px * (3 - 1))) / 3);
  }
  .sec_eventpartner .cooperation_list {
    gap: 20px;
  }
  .sec_eventpartner .cooperation_list > li {
    width: 50%;
  }
  .sec_eventpartner .cooperation_list > li > p {
    font-size: 12px;
  }

  /* sec_stores */
  .sec_stores {
    background-size: contain;
  }
  .contents .sec_stores .inner {
    width: auto;
  }
  .sec_stores .tables {
    display: block;
  }
  .sec_stores .tables table:last-child thead {
    display: none;
  }
  .sec_stores .tables thead th {
    font-size: 18px;
    padding: 5px;
  }
  .sec_stores .tables tbody th,
  .sec_stores .tables tbody td {
    font-size: 14px;
    padding: 5px;
  }

  /* sec_timetable */
  .contents .sec_timetable .inner {
    width: auto;
  }
  .sec_timetable .oneday h3 {
    font-size: 30px;
    line-height: 30px;
    padding: 10px;
    margin: 0 0 0 0;
  }
  .sec_timetable .oneday table {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
  .sec_timetable .oneday th,
  .sec_timetable .oneday td {
    font-size: 16px;
    padding: 5px;
  }
  .sec_timetable .mc {
    gap: 20px;
  }
  .sec_timetable .mc img {
    max-width: 50%;
  }
  .sec_timetable .mc .texts h4 {
    font-size: 20px;
  }
  .sec_timetable .mc .texts p {
    font-size: 16px;
  }
}
