:root {
  --brown: #5a2b15;
  --gold: #f4c43f;
  --cream: #fffcf4;
  --placeholder: #d9d9d9;
}

* {
  box-sizing: border-box;
}

/* ゆっくり遷移する */
html {
	scroll-behavior: smooth;
}
footer{
  margin-top: 0!important;
}
body{
  margin: 0;
  background: #fff;
}

main p,main h1, main h2,main h3,main h4,main h5,main h6 main figcaption,main li,main a,main span,main strong,main em {
  color: var(--brown);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif!important;
}

.hero {
  min-height: 390px;
  display: grid;
  place-items: center;
  color: transparent;
      overflow: hidden;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: -1;
}

.beer-video {
  width: 100%;
  height: 80dvh;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero img {
  position: absolute;
  left: 0;
  filter: drop-shadow(0px 0px 5px #fff);
  width: 100%;
  height: 70dvh;
  object-fit: contain;
  object-position: center;
}

.event-section {
  position: relative;
  min-height: 806px;
  padding: 170px 7.2vw 74px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 9% 9%, rgba(255, 223, 100, .22), transparent 26%),
    radial-gradient(ellipse at 92% 8%, rgba(255, 223, 100, .18), transparent 27%),
    var(--cream);
}

.intro,
.section-heading,
.booth-grid {
  position: relative;
  z-index: 1;
}

.intro {
  max-width: 730px;
  margin: 0 auto;
}

.intro h1 {
  margin: 0;
  font-size: clamp(23px, 2.05vw, 31px);
  line-height: 1.55;
  text-align: center;
  letter-spacing: .035em;
  font-weight: 800;
}

.intro p {
  margin: 31px auto 0;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .025em;
  font-weight: 500;
}

.section-heading {
  margin-top: 57px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1;
  letter-spacing: .015em;
  font-weight: 700;
}

.section-heading p {
  margin: 11px 0 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}

.section-heading span {
  margin: 0 8px;
  color: var(--gold);
}

.booth-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.booth-card {
  list-style: none;
  min-width: 0;
  position: relative;
}

.booth-card img {
  filter: brightness(0.6);
}


/* COMING SOON */
.booth-card a:after {
  top: 35%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  content: 'COMING SOON';
  position: absolute;
  color: white;
  font-weight: 700;
  z-index: 10;
  /* top: 10px; */
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(18px, 2.2vw, 22px);
}

#coming_soon {
  background: #edb807;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  color: white;
  font-size: clamp(30px, 5.5vw, 56px);
  letter-spacing: 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.booth-card a {
  display: block;
  position: relative;
  text-decoration: none;
}

.booth-card p {
  margin: 5px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--brown);
  font-weight: 700;
}

.booth-card p::after {
  content: '';
  display: block;
  background-image: url('/wp-content/themes/stadiumcity/images/beer/btn.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 11px;
  line-height: 1;
  /* transform: rotate(90deg); */
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booth-image {
  display: grid;
  place-items: center;
  background: var(--placeholder);
  color: transparent;
  transition: transform .25s ease, box-shadow .25s ease;
}

main img {
  width: 100%;
  height: auto;
}

.booth-card:hover .booth-image {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(90, 43, 21, .1);
}

details {
  text-align: center;
}

summary {
  margin-top: 14px;
  color: var(--brown);
  font-size: 15px;
  line-height: 28px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.arrow {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #4e381d;
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease;
}

details[open] .arrow {
  transform: rotate(180deg);
}

details p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

@media (max-width: 900px) {
  .hero {
    min-height: 300px;
  }

  .event-section {
    padding-inline: 7vw;
  }

  .booth-grid {
    max-width: 620px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .wave-section{
    margin-top: -80px;
  }
  .hero {
    min-height: 210px;
  }

  .event-section {
    padding: 120px 22px 56px;
  }


  .intro h1 {
    font-size: 21px;
    text-align: left;
  }

  .intro h1 br {
    display: none;
  }

  .intro p {
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.85;
  }

  .section-heading {
    margin-top: 46px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .booth-grid {
    margin-top: 42px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .booth-image {
    aspect-ratio: 2.15 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


.wave-section {
  filter: drop-shadow(0 0 15px #F3CB45);
  position: relative;
  min-height: 790px;
  padding: clamp(80px, 11vw, 130px) 20px;
  margin-top: -120px;
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
}

/* SVGをセクション全面に配置 */
.wave-section__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 背景色 */
.wave-section__base {
  fill: #fff;
}

/*
 * Figma設定のイメージ
 * 色：#F3CB45
 * 不透明度：25%
 * Y：4
 * ぼかし：104
 */

.wave-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 790px;
  margin-inline: auto;
  overflow: hidden;
}

.wave-section__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wave-section__bg--pc {
  display: block;
}

.wave-section__bg--sp {
  display: none;
}

.wave-section__base {
  fill: #fff;
}

.wave-section__shadow {
  fill: none;
  stroke: rgba(243, 203, 69, 0.25);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wave-section__shadow--pc {
  stroke-width: 110px;
}

.wave-section__shadow--sp {
  stroke-width: 56px;
}

.wave-section__content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(130px, 14vw, 200px) 40px 100px;
  text-align: center;
}

.wave-section__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.wave-section__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
}

.wave-section__text {
  max-width: 640px;
  margin: 30px auto 0;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 2;
}

@media (max-width: 768px) {
  .wave-section {
    width: 100%;
    min-height: 600px;
  }

  .wave-section__bg--pc {
    display: none;
  }

  .wave-section__bg--sp {
    display: block;
  }

  .wave-section__content {
    padding:
      clamp(90px, 25vw, 130px) 20px 60px;
  }
}

@media (prefers-reduced-motion: reduce) {

  #waveShapePc animate,
  #waveShapeSp animate {
    display: none;
  }
}

/* スマホ */
@media (max-width: 480px) {
  .hero img{
    height: 66dvh;
  }
  .wave-section {
    width: 100%;
    min-height: 560px;
  }

  .wave-section__content {
    padding:
      clamp(100px, 32vw, 140px) 20px 60px;
  }
}

