@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

:root {
  --color-primary: #1A88C8;
  --color-red: #e82d81;
  --color-blue: #39BCE3;
  --color-green: #01B3BB;
  --color-base: #fffded;
  --color-text: #3a3a3a;
  --font-noto: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: url(../img/side_bg.jpg) center/cover fixed no-repeat;
  background: url(../img/side_bg.webp) center/cover fixed no-repeat;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 30, 69, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

section {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

h2.section-title {
  margin-bottom: 26px;
  font-size: 2.4rem;
  font-weight: 700;
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

a.btn {
  display: block;
  width: 280px;
  margin: 0 auto;
  padding: 10px;
  border: 0.25px solid var(--color-text);
  border-radius: 2em;
  background: #fff;
  font-size: 1.3rem;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.3s ease;
}

a.btn:hover {
  background-color: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
}

.layout {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 520px auto;
  align-items: start;
  margin: 0 auto;
}

.content {
  max-width: 520px;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
}

.side {
  position: sticky;
  top: 0;
  height: 100vh;
}

@media (max-width: 1300px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }
}

@media (max-height: 860px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }
}

.wrapper {
  width: calc(100% - 32px);
  margin: 0 auto;
}

/* -----------
left side
----------- */

.sideLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 460px;
  height: 100vh;
  margin: 0 50px 0 7.81vw;
  color: #fff;
}

.sideLeft__copy {
  font-size: clamp(2.4rem, 1.88vw, 3.8rem);
  font-weight: 700;
}

.sideLeft__logo {
  width: 100%;
  margin: min(96px, 7vh) auto;
}

.sideLeft__place {
  margin: 0;
  font-size: clamp(2.4rem, 1.88vw, 3.8rem);
  font-weight: 900;
  margin-bottom: min(33px, 2vh);
}

.sideLeft__place span {
  font-size: clamp(2rem, 1.46vw, 2.8rem);
}

.sideLeft__date {
  margin-bottom: min(84px, 6vh);
  font-size: clamp(2.2rem, 1.77vw, 3.4rem);
  font-weight: 900;
  line-height: 1.17;
}

.sideLeft__date span {
  font-size: clamp(2rem, 1.46vw, 2.8rem);
}

.sideLeft__map {
  position: relative;
  width: calc(100% - 40px);
  aspect-ratio: 4 / 3;
  border-radius: min(1.15vw, 22px);
  overflow: hidden;
}

.sideLeft__map iframe {
  width: 100%;
  height: 100%;
}

@supports (height: 100dvh) {
  .sideLeft {
    height: 100dvh;
  }

  .sideLeft__logo {
    margin: min(96px, 7dvh) auto;
  }

  .sideLeft__place {
    margin-bottom: min(33px, 2dvh);
  }

  .sideLeft__date {
    margin-bottom: min(84px, 6dvh);
  }
}

/* -----------
right side
----------- */
.sideRight {
  height: 100vh;
  display: grid;
  align-content: center;
  padding: 50px 50px min(140px, 11vh);
  padding: 50px 50px min(140px, 11dvh);
  color: #fff;
}

.side--right {
  pointer-events: none;
}

.side--right a,
.side--right button {
  pointer-events: auto;
}

.sideMenu__title {
  margin-bottom: 3.28vh;
  margin-bottom: 3.28dvh;
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  font-weight: 900;
}

.sideMenu__list {
  display: grid;
  gap: 26px;
  margin-bottom: min(100px, 8.2vh);
  margin-bottom: min(100px, 8.2dvh);
  font-size: clamp(1.8rem, 1.04vw, 2rem);
}

.sideMenu__link {
  position: relative;
  color: #fff;
  font-weight: 700;
}

.sideMenu__item .sideMenu__link.is-current::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 160px;
  height: 6px;
  background: url(../img/menu_line.svg) center / contain no-repeat;
  transform: translateX(-50%);
}

.sideShop__lead {
  font-size: clamp(1.4rem, 0.83vw, 1.6rem);
  margin-bottom: 7px;
  font-weight: 700;
}

.sideShop__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 7.13vh;
  padding: 12px 26px;
  border-radius: 5px;
  background: #fff;
}

.sideSns__title {
  margin-bottom: 20px;
  font-size: min(1.25vw, 2.4rem);
  font-weight: 500;
}

.sideSns__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.sideSns__link {
  display: block;
  width: 20px;
}


/* -----------
content
----------- */

header {
  background: url(../img/pattern-pink.svg) center / auto repeat;
  padding: 10px;
  color: #fff;
  font-weight: 700;
}

/* main-visual */
.hero {
  position: relative;
  min-height: 100vh;
}


/* .hero__txt {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero__txt h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--color-base);
}

.hero__txt img {
  width: 265px;
} */

/* info */
/* .info {
  position: relative;
  padding: 40px 0 33px;
  background: var(--color-base);
}

.info::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30px;
  background: url(../img/Vector1.png) center bottom / cover no-repeat;
  top: 0;
  left: 0;
  transform: translateY(-99%);
}

.info__inner {
  position: relative;
  color: #2f2f2f;
}

.info__inner::before,
.info__inner::after {
  content: "";
  display: block;
  position: absolute;
}

.info__inner::before {
  width: 109px;
  height: 86px;
  background: url(../img/flower2lefttop.svg) center / contain no-repeat;
  top: -32px;
  left: -1px;
}

.info__inner::after {
  width: 120px;
  height: 116px;
  background: url(../img/flower2rightbottom.svg) center / contain no-repeat;
  bottom: -85px;
  right: 0px;
}

.info__free {
  width: 164px;
  margin-bottom: 15px;
}

.info__place {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 2.6rem;
}

.info__place span {
  font-size: 2rem;
}

.info__date {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.info__date span {
  font-size: 2rem;
}

.info__time {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
} */

/* about */
/* .about {
  padding: 48px 0 40px;
}

.about p {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
} */

/* sponsor */
/* .sponsor {
  margin: 30px auto;
  padding: 32px 0 38px;
  background-color: var(--color-blue);
}

.sponsor::before,
.sponsor::after {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  background: url(../img/Vector2.png) center bottom / cover no-repeat;
}

.sponsor::before {
  top: 0;
  transform: translateY(calc(-100% + 2px));
}

.sponsor::after {
  bottom: 0;
  transform: translateY(calc(100% - 2px)) rotate(180deg);
}

.sponsor h2.section-title {
  margin-bottom: 37px;
  color: #fff;
}

.sponsor-lst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}

.sponsor-lst + ul {
  margin-top: 30px;
}

.sponsor-lst.gold {
  grid-template-columns: 1fr;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  min-width: 0;
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.sponsor-item.blk {
  background-color: #3a3a3a;
}

.sponsor-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.sponsor-lst.gold .sponsor-item {
  aspect-ratio: auto;
  padding: 20px;
} */

/* guest */
/* .guest {
  padding: 50px 0;
}

.guest h2.section-title {
  color: var(--color-green);
}

.guest figure {
  position: relative;
}

.guest figure::before,
.guest figure::after {
  content: "";
  display: block;
  position: absolute;
}

.guest figure::before {
  top: -20px;
  left: -30px;
  width: 80px;
  height: 85px;
  background: url(../img/leaf2.svg) center / contain no-repeat;
}

.guest figure::after {
  bottom: -15px;
  right: -20px;
  width: 87px;
  height: 66px;
  background: url(../img/leaf1.svg) center / contain no-repeat;
}

.guest h3 {
  margin: 22px auto 16px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-green);
}

.guest p {
  margin-bottom: 32px;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
} */

/* timetable */
/* .timetable {
  padding: 50px 0;
  background-color: var(--color-base);
}

.timetable::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30px;
  background: url(../img/Vector5.png) center bottom / cover no-repeat;
  top: 0;
  left: 0;
  transform: translateY(-99%);
}

.timetable::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30px;
  background: url(../img/Vector5.png) center bottom / cover no-repeat;
  bottom: 0;
  left: 0;
  transform: translateY(100%) scale(1, -1);
}

.timetable h2.section-title {
  color: var(--color-green);
}

.timetable h3 {
  margin: 50px auto 30px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #e82d81;
}

.timetable a {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 10px;
  border: 1px solid #e82d81;
  border-radius: 10px;
  background-color: #fff;
  color: #e82d81;
}

.timetable__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.timetable__scroll figure {
  flex: 0 0 85%;
  scroll-snap-align: start;
}

.timetable__scroll img {
  width: 100%;
  border-radius: 10px;
} */

/* スクロールバー調整 */
/* .timetable__scroll::-webkit-scrollbar {
  height: 6px;
}

.timetable__scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
} */

/* eventmap */
/* .eventmap {
  padding: 80px 0 50px;
}

.eventmap h2.section-title {
  color: var(--color-green);
}

.eventmap a {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 10px;
  border: 1px solid #e82d81;
  border-radius: 10px;
  background-color: #fff;
  color: #e82d81;
} */

/* shoplist */
/* .shoplist {
  padding: 50px 0 80px;
}

.shoplist h2.section-title {
  margin-bottom: 50px;
  color: var(--color-primary);
}

.shop__lst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px 10px;
}

.shop__lst li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto auto;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  padding: 5px;
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(18, 181, 178, 0.2);
  text-align: left;
}

.shop__lst figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  background-color: #fff;
  text-align: center;
}

.shop__lst figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-ttl {
  font-weight: 700;
  color: #564243;
  word-wrap: break-word;
}

.shop-cat {
  font-size: 1.4rem;
  font-weight: 500;
  color: #564243;
  opacity: 0.7;
}

.shop-btn {
  display: block;
  width: fit-content;
  margin: 10px auto;
  padding: 5px 10px;
  border: 1px solid #e82d81;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.4rem;
  color: #e82d81;
} */

/* goods */
/* .goods {
  background: var(--color-primary);
  padding: 20px 0;
  z-index: 2;
}

.goods::before,
.goods::after {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  background: url(../img/Vector.png) center bottom / cover no-repeat;
}

.goods::before {
  top: 0;
  transform: translateY(calc(-100% + 2px));
}

.goods::after {
  bottom: 0;
  transform: translateY(calc(100% - 2px)) rotate(180deg);
}

.goods .section-title {
  color: #fff;
  margin-bottom: 32px;
}

.goods__name {
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.goods__desc {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
}

.goodsCard {
  background: #fff;
  border-radius: 10px;
  padding: 26px 32px 26px;
  margin: 46px auto 16px;
} */

/* .goodsCard__period {
  transform: translateY(-30px);
}

.goodsCard__period-inner {
  background: var(--color-base);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 11px 5px;
}

.goodsCard__periodLabel {
  margin-bottom: 10px;
  font-size: 14px;
}

.goodsCard__periodDate {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
} */

/* .goodsCard__note {
  padding-top: 8px;
  font-size: 1rem;
  color: var(--color-text);
} */

/* access */
/* .access {
  background: url(../img/pattern-yellow.svg) center / auto repeat;
  padding: 80px 18px 50px;
  text-align: center;
}

.access__inner {
  margin-bottom: 25px;
}

.access .section-title {
  color: var(--color-green);
  margin-bottom: 38px;
}

.access__diagram {
  margin-bottom: 17px;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: #fff;
}

.access__note {
  margin-bottom: 17px;
  font-size: 1.3rem;
  line-height: 1.7;
}

.access__buttons a + a,
.parking__buttons a + a {
  margin-top: 16px;
}

.parking .section-title {
  margin-bottom: 20px;
} */

/* faq */
/* .faq {
  padding: 26px 0 107px;
}

.faq::before {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 2px));
  background: url(../img/Vector3.png) center bottom / cover no-repeat;
}

.faq .section-title {
  margin-bottom: 45px;
}

.faqList {
  text-align: left;
}

.faqList > li + li {
  margin-top: 46px;
}

.faqItem__q {
  padding-bottom: 8px;
  margin-bottom: 13px;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 0.25px solid var(--color-text);
}

.faqItem__a {
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

.faqItem__a strong {
  font-weight: 700;
} */

/* closing */
/* .closing {
  background-color: var(--color-green);
  padding: 46px 0 42px;
  color: #fff;
  text-align: center;
}

.closing::before {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(calc(-100% + 2px));
  background: url(../img/Vector4.png) center bottom / cover no-repeat;
}

.closing__event {
  position: relative;
  width: 100%;
  padding: 0 16px;
}

.closing__event::before,
.closing__event::after {
  content: "";
  display: block;
  position: absolute;
}

.closing__event::before {
  width: 106px;
  height: 80px;
  top: 0;
  left: 5px;
  transform: translateY(-65%);
  background: url(../img/flower-white1.svg) center / contain no-repeat;
}

.closing__event::after {
  width: 123px;
  height: 108px;
  bottom: 0;
  right: 0;
  transform: translateY(43%);
  background: url(../img/flower-white2.svg) center / contain no-repeat;
}


.closing__logo {
  width: 232px;
  margin-bottom: 10px;
}

.closing__free {
  width: 164px;
  margin-bottom: 8px;
}

.closing__place {
  margin-bottom: 14px;
  font-size: 2.6rem;
  font-weight: 900;
}

.closing__place span {
  font-size: 2rem;
}

.closing__date {
  margin-bottom: 32px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
}

.closing__date span {
  font-size: 2rem;
}

.closing__notice {
  margin-bottom: 40px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-text);
  border-radius: 13px;
  text-align: left;
  color: var(--color-text);
}

.closing__notice p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

.closing__host {
  font-size: 1.4rem;
} */

/* footer */
/* .footerBar {
  padding: 6px 0;
  background: url(../img/pattern-pink.svg) center / auto repeat;
  text-align: center;
}

.footerBar__text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
} */




/*イベント終了*/
.sideLeft__tnk{
  margin: 0;
  font-size: clamp(2rem, 1.3vw, 3rem);
  margin-bottom: 1.3em;
  line-height: 1.2;
}

.closing__event .img_tnk{
  top: 65%;
}