@charset "UTF-8";

:root {
  --outer-padding-x: 2rem;
  --cardPadding-x: 1.5rem;
  --cardMargin-y: 1.5rem;
  --fz120: 7.5rem;
  --fz110: 6.875rem;
  --fz100: 6.25rem;
  --fz80: 5rem;
  --fz72: 4.5rem;
  --fz70: 4.375rem;
  --fz68: 4.25rem;
  --fz64: 4rem;
  --fz60: 3.75rem;
  --fz54: 3.375rem;
  --fz50: 3.125rem;
  --fz48: 3rem;
  --fz40: 2.5rem;
  --fz38: 2.375rem;
  --fz32: 2rem;
  --fz30: 1.875rem;
  --fz28: 1.75rem;
  --fz24: 1.5rem;
  --fz20: 1.25rem;
  --fz18: 1.125rem;
  --fz16: 1rem;
  --fz14: .875rem;
  --fz13: .8125rem;
  --fz12: .75rem;
  --fz11: .6875rem;
}

@media (max-width: 768px) {
  :root {
    --cardPadding-x: 1rem;
    --cardMargin-y: 1rem;
    --outer-padding-x: 1rem;
  }
}

* {
  box-sizing: border-box;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

html {
  background-color: #fcfcfc;
  overflow-x: hidden;
  color: #020202;
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

@media screen and (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}

[id] {
  scroll-margin-top: 60px;
}

body {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  background-color: #fcfcfc;
  overflow-x: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

.--m {
  --category-color: #C83433;
}

.--l {
  --category-color: #199D6D;
}

.--b {
  --category-color: #48ADD2;
}

.container {
  padding-right: var(--outer-padding-x);
  padding-left: var(--outer-padding-x);
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.u-icon {
  display: inline-block;
  width: 1em;
  /* 文字サイズに追従 */
  aspect-ratio: 1/1;
  vertical-align: middle;
  background-color: var(--icon-color, currentColor);
  /* Propsで渡す色、なければ文字色 */
  /* マスクの設定 */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.u-icon-circlebg {
  border-radius: 1000px;
  background-color: #fff;
  display: inline-block;
  width: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}

.u-icon-circlebg .u-icon {
  color: #214370;
}

.u-icon-circlebg .--send {
  top: 2%;
  left: -2%;
  position: relative;
}

/* 各アイコンごとのSVG定義 */
.u-icon.--send {
  -webkit-mask-image: url("../img/send.svg");
  mask-image: url("../img/send.svg");
}

/* 各アイコンごとのSVG定義 */
.u-icon.--chat {
  -webkit-mask-image: url("../img/chat.svg");
  mask-image: url("../img/chat.svg");
}

.u-icon.--error {
  -webkit-mask-image: url("../img/error.svg");
  mask-image: url("../img/error.svg");
}

.u-icon.--check {
  -webkit-mask-image: url("../img/check.svg");
  mask-image: url("../img/check.svg");
}

.u-icon.--graph {
  -webkit-mask-image: url("../img/graph.svg");
  mask-image: url("../img/graph.svg");
}

header {
  position: fixed;
  z-index: 10000;
  width: 12%;
  min-width: 160px;
  left: 2%;
  top: 0;
}

header nav .nav-logo {
  display: none;
}

header nav .nav-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  position: relative;
  z-index: 2;
}

header nav .nav-toggle .nav-toggle-img {
  width: 100%;
  display: block;
  transform: scale(1.1);
}

header nav .nav-list {
  margin-top: -1em;
  /* margin-left: -0.25em; */
  border-radius: 4px;
  background: #2A5B42;
  /* 背景画像を指定 */
  background-image: url('../img/menu-bg.png');

  /* 画像を右下に配置 (右 下) */
  background-position: right bottom;

  background-size: contain;
  /* 画像の繰り返しを防ぐ */
  background-repeat: no-repeat;
  padding: 1.5em 1em 1em;
  overflow: hidden;
  max-height: 600px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

header nav .nav-list.is-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

header nav .nav-list-item:not(:last-child) {
  margin-bottom: 0.75em;
}

header nav .nav-list-item a {
  color: white;
  text-decoration: none;
  font-size: var(--fz14);
  transition: opacity 0.2s;
}

header nav .nav-list-item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1023.98px) {
  .hero {
    padding-top: calc(56px + 2em) !important;
  }

  header {
    width: 100%;
    min-width: unset;
    left: 0;
    top: 0;
    background-color: #2A5B42;
    background-image: url('../img/h-bg-left.png'), url('../img/h-bg-right.png');
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 100%, auto 100%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  header nav {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 1.25rem 0 0.5rem;
    justify-content: flex-end;
  }

  header nav .nav-logo {
    display: block;
    height: 72%;
    margin-right: auto;
  }

  header nav .nav-logo img {
    height: 100%;
    width: auto;
  }

  header nav .nav-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 6px;
  }

  header nav .nav-toggle .nav-toggle-img {
    display: none;
  }

  header nav .nav-toggle::before,
  header nav .nav-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  }

  header nav .nav-toggle::before {
    top: 11px;
    box-shadow: 0 8px 0 #fff;
  }

  header nav .nav-toggle::after {
    bottom: 11px;
  }

  header nav .nav-toggle[aria-expanded=true]::before {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    box-shadow: none;
  }

  header nav .nav-toggle[aria-expanded=true]::after {
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }

  header nav .nav-list {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: rgba(42, 91, 66, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 0;
    border-radius: 0 0 8px 8px;
    padding: 1.25em 1.5em 1.75em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
    max-height: 500px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  header nav .nav-list.is-hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  header nav .nav-list-item {
    margin-bottom: 0;
  }

  header nav .nav-list-item:not(:last-child) {
    margin-bottom: 0;
  }

  header nav .nav-list-item a {
    display: block;
    padding: 0.75em 0.5em;
    font-size: var(--fz13);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: background 0.2s;
    background: #fff;
    font-weight: bold;
    color: #421905;
  }

  header nav .nav-list-item a:hover,
  header nav .nav-list-item a:active {
    opacity: 1;
  }
}

@media screen and (max-width: 639.98px) {
  header nav .nav-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero {
  padding-top: 3em;
  padding-bottom: 12em;
  background-image: url(../img/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-title-wrapper {
  position: relative;
  width: 42%;
  margin: 0 auto;
}

@media screen and (max-width: 639.98px) {
  .hero {
    padding-bottom: 10em;
  }

  .hero-title-wrapper {
    width: 66%;
  }
}

.hero-title-wrapper:before {
  content: "";
  background-image: url(../img/main-effect.png);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 186%;
  z-index: -1;
  aspect-ratio: 1931/1000;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-title-wrapper:after {
  content: "";
  background-image: url(../img/hero-bg-right.png);
  position: absolute;
  top: 0%;
  left: 111%;
  width: 58%;
  z-index: -1;
  aspect-ratio: 712/1171;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero h1 {
  position: relative;
}

.hero-title02,
.hero-title03 {
  position: absolute;
}

.hero-title02 {
  top: 14%;
  right: -22%;
  width: 29%;
}

@media screen and (max-width: 639.98px) {
  .hero-title02 {
    right: -26%;
    width: 36%;
    top: 11%;
  }
}

.hero-title03 {
  left: -24%;
  top: 13%;
  width: 28%;
}

@media screen and (max-width: 639.98px) {
  .hero-title03 {
    left: -25%;
    top: 10%;
    width: 34%;
  }
}

.hero-date-deco01,
.hero-date-deco02 {
  width: 34%;
}

.hero-date-main {
  width: 44%;
}

.hero-date-wrapper {
  display: flex;
  gap: 1em;
  padding-top: 1em;
  align-items: flex-end;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 639.98px) {
  .hero-date-wrapper {
    display: grid;
    grid-template-areas: "date date" "daco01 daco02";
    justify-content: center;
  }

  .hero-date-wrapper .hero-date-main {
    margin: 5% auto 1.5%;
    grid-area: date;
    width: 80%;
  }

  .hero-date-wrapper .hero-date-deco01 {
    grid-area: daco01;
    width: 110%;
  }

  .hero-date-wrapper .hero-date-deco02 {
    grid-area: daco02;
    width: 110%;
  }
}

main .bg-yellow {
  position: relative;
  background-color: #FFD214;
  padding-bottom: 10em;
}

@media screen and (max-width: 639.98px) {
  main .bg-yellow {
    padding-bottom: 8em;
  }
}

main .bg-yellow-above-img {
  aspect-ratio: 2880/362;
  width: 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  display: block;
  width: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/divide.png);
}

@media screen and (max-width: 639.98px) {
  main .bg-yellow-above-img {
    background-image: url(../img/divide-sp.png);
    aspect-ratio: 963/329;
  }
}

main .bg-white {
  position: relative;
  background: white;
}

main .bg-white-above-img {
  aspect-ratio: 2883/381;
  width: 100%;
  position: absolute;
  bottom: 99%;
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/divide2.png);
}

@media screen and (max-width: 639.98px) {
  main .bg-white-above-img {
    background-image: url(../img/divide2-sp.png);
    aspect-ratio: 963/237;
  }
}

.main-content {
  position: relative;
  top: -3em;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 3em;
  padding-left: 1em;
  padding-right: 1em;
}

@media screen and (max-width: 639.98px) {
  .content-wrapper {
    margin-bottom: 1.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

.orion-wrapper {
  display: grid;
  grid-template-areas: "img01 img02" "img01 img03";
  grid-template-columns: 60% 40%;
  max-width: 1020px;
  margin: 0 auto;
  gap: 1em 3em;
}

@media screen and (max-width: 639.98px) {
  .orion-wrapper {
    grid-template-areas: "img01 img01" "img02 img03";
    grid-template-columns: 1fr 1fr;
  }
}

.orion-wrapper .orion-img01 {
  grid-area: img01;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 639.98px) {
  .orion-wrapper .orion-img01 {
    justify-content: center;
  }
}

.orion-wrapper .orion-img01 img {
  margin-top: -7%;
  border-radius: 20px;
}

@media screen and (max-width: 639.98px) {
  .orion-wrapper .orion-img01 img {
    width: 88%;
    margin-top: 0;
  }
}

.orion-wrapper .orion-img02 {
  grid-area: img02;
  display: flex;
  justify-content: center;
}

.orion-wrapper .orion-img02 img {
  width: 60%;
}

@media screen and (max-width: 639.98px) {
  .orion-wrapper .orion-img02 img {
    width: 140%;
    max-width: unset;
    transform: translateY(-18%);
  }
}

.orion-wrapper .orion-img03 {
  grid-area: img03;
}

.orion-wrapper .orion-img03 img {
  width: 60%;
}

@media screen and (max-width: 639.98px) {
  .orion-wrapper .orion-img03 img {
    width: 100%;
    transform: translateY(30%);
  }
}

.cheers-title {
  margin-top: 5em;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
  text-align: center;
  max-width: 600px;
  width: 90%;
}

@media screen and (max-width: 639.98px) {
  .cheers-title {
    margin-top: 2.5em;
  }
}

.cheers-title .cheers-title-main {
  margin: 0 auto;
}

.cheers-title .cheers-title-deco01,
.cheers-title .cheers-title-deco03 {
  position: absolute;
  bottom: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: auto;
}

@media screen and (max-width: 639.98px) {

  .cheers-title .cheers-title-deco01,
  .cheers-title .cheers-title-deco03 {
    opacity: 0.35;
    z-index: -1;
    transform: scale(1.4);
  }
}

.cheers-title .cheers-title-deco01 {
  right: calc(100% + 2em);
}

@media screen and (max-width: 639.98px) {
  .cheers-title .cheers-title-deco01 {
    right: calc(100% - 2em);
  }
}

.cheers-title .cheers-title-deco03 {
  left: calc(100% + 2em);
}

@media screen and (max-width: 639.98px) {
  .cheers-title .cheers-title-deco03 {
    left: calc(100% - 2em);
  }
}

.news-wrapper {
  background: #ffffff;
  border: 2px solid #834a4b;
  border-radius: 6px;
  padding: 1.5em 2em 3em;
}

@media screen and (max-width: 639.98px) {
  .news-wrapper {
    padding: 1em 1em 2em;
  }
}

.news-list {
  list-style: none;
  margin-top: 2.5em;
  border-top: 1px solid rgba(66, 25, 5, 0.2);
}

.news-list-item {
  display: flex;
  align-items: baseline;
  gap: 1.5em;
  padding: 0.85em 0.75em;
  border-bottom: 1px solid rgba(66, 25, 5, 0.2);
  transition: background 0.2s;
}

.news-list-item:hover {
  background: rgba(66, 25, 5, 0.05);
}

.news-date {
  flex-shrink: 0;
  font-size: var(--fz13);
  font-weight: 700;
  color: #421905;
  letter-spacing: 0.04em;
  min-width: 6.5em;
}

.news-text {
  font-size: var(--fz14);
  line-height: 1.6;
  color: #2a1200;
}

.news-text a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.news-text a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767.98px) {
  .news-list-item {
    flex-direction: column;
    gap: 0.25em;
  }
}

.brand-list {
  width: 90%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0em 2em;
  justify-items: center;
  align-items: center;
}

.brand-list li {
  grid-column: span 2;
  width: 100%;
}

.brand-list li:nth-child(4) {
  grid-column: 2 / span 2;
}

@media screen and (max-width: 639.98px) {
  .brand-list {
    gap: 0em 1em;
  }
}

.brand-list li img {
  max-height: 180px;
  max-width: 220px;
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.brand-list li a {
  pointer-events: none;
}

/* =====================================================
   パネル背景コンポーネント  .panel-bg / .panel-bg__inner
   ─────────────────────────────────────────────────────
   使い方:
     HTML: <div class="panel-bg">
               <div class="panel-bg__inner">
                 ... コンテンツ ...
               </div>
             </div>

   bg-top.png   : 1631×188px（上部の枠線）
   bg-center.png: 1631×204px（repeat-y で中央を埋める）
   bg-bottom.png: 1631×197px（下部の枠線）
   ===================================================== */

/* ── 外側ラッパー: top/bottom の枠線画像のみ担当 ─────── */
/* center は inner に閉じ込めるため、ここには背景を持たせない */
.panel-bg {
  position: relative;
  /* bg-top.png の高さ分（188/1631 ≈ 11.53%）だけ上に余白 */
  /* padding-top: clamp(60px, 11.53%, 188px); */
  /* bg-bottom.png の高さ分（197/1631 ≈ 12.08%）だけ下に余白 */
  /* padding-bottom: clamp(63px, 12.08%, 197px); */
}

/* top 画像 — absolute で外側ラッパーの最上部に固定 */
.panel-bg::before {
  content: "";
  /* position: absolute; */
  display: block;
  width: 100%;
  aspect-ratio: 1631 / 188;
  background-image: url(../img/bg-top.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: translateY(1px);
}

/* bottom 画像 — absolute で外側ラッパーの最下部に固定 */
.panel-bg::after {
  content: "";
  /* position: absolute; */
  display: block;
  width: 100%;
  aspect-ratio: 1631 / 197;
  background-image: url(../img/bg-bottom.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* ── 内側ラッパー: center 画像のみ repeat-y ─────────── */
/* top/bottom の疑似要素は z-index:0、inner は z-index:1 のため */
/* center が top/bottom 画像の裏に回り込まない */
.panel-bg__inner {
  position: relative;
  z-index: 1;
  background-image: url(../img/bg-center.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: center top;
}

.panel-bg__inner h2 {
  margin-top: -1em;
}

@media screen and (max-width: 639.98px) {
  .panel-bg__inner h2 {
    margin-top: 0;
  }
}

.panel-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 4%;
  max-height: 28px;
  object-fit: contain;
  height: auto;
  pointer-events: none;
}

.panel-icon--top {
  transform: translate(-50%, 100%);
  top: 0;
}

.panel-icon--bottom {
  transform: translate(-50%, -100%);
  bottom: 0;
}

@media screen and (max-width: 639.98px) {
  .panel-icon {
    width: 5%;
    max-height: 16px;

  }

  .panel-icon--top {
    transform: translate(-50%, 75%);
  }

  .panel-icon--bottom {
    transform: translate(-50%, -75%);
  }
}

/* =====================================================
   ステージ情報
   ===================================================== */

/* タイトル画像（stage-title.png: 540×182px） */
.stage-header {
  text-align: center;
  padding: 0em 0 1.5em;
}

.stage-header .title-img {
  max-width: 270px;
}

/* タイトル画像（special-title.png） */
.special-header {
  text-align: center;
  padding: 0em 0 .5em;
}

.special-header .title-img {
  max-width: 270px;
}

/* 出演者：左に写真、右にテキスト */
.stage-act {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  padding: 0 2.5em 2em;
  /* border-bottom: 1px dashed rgba(66, 25, 5, 0.25); */
}

.stage-act__fig {
  margin: 0;
  flex: 0 0 38%;
}

.stage-act__fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stage-act__body {
  flex: 1;
}

.stage-act__name {
  font-size: var(--fz18);
  font-weight: 700;
  color: #421905;
  margin-bottom: 0.5em;
}

.stage-act__text {
  font-size: var(--fz14);
  line-height: 1.85;
  color: #2a1200;
}

/* 追加情報 COMING SOON ボックス */
.stage-coming-soon {
  margin: 1.75em 2.5em 0em;
  background: #e8e4dc;
  border-radius: 6px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
  position: relative;
  overflow: hidden;
}

.stage-coming-soon__illust {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 160px;
  opacity: 0.25;
  pointer-events: none;
}

.stage-coming-soon__text {
  position: relative;
  z-index: 1;
  font-size: var(--fz24);
  font-weight: 700;
  color: #421905;
  text-align: center;
  line-height: 1.55;
}

/* スマートフォン */
@media screen and (max-width: 639.98px) {
  .stage-act {
    flex-direction: column;
    padding: 0 2em 1.5em;
    gap: 1em;
  }

  .stage-act__fig {
    flex: 0 0 auto;
    width: 100%;
  }

  .stage-coming-soon {
    margin: 1.25em 1em 0em;
  }

  .stage-act.has-separator-bottom::after {
    left: 1em;
    right: 1em;
  }

  .stage-coming-soon__text {
    font-size: var(--fz20);
  }
}

/* =====================================================
   コラボ企画コンテンツ
   ===================================================== */
.collabo-item {
  position: relative;
  padding: 2em 2.5em;
}

/* 共通：上部または下部仕切り線（左右余白あり） */
.has-separator-top,
.has-separator-bottom {
  position: relative;
}

.has-separator-top::before,
.has-separator-bottom::after {
  content: "";
  position: absolute;
  left: 2.5em;
  right: 2.5em;
  height: 1px;
  background-color: rgba(66, 25, 5, 0.25);
}

.has-separator-top::before {
  top: 0;
}

.has-separator-bottom::after {
  bottom: 0;
}

.collabo-heading {
  font-size: var(--fz18);
  font-weight: 700;
  color: #421905;
  margin-bottom: 0.6em;
  line-height: 1.5;
}

.collabo-text {
  font-size: var(--fz14);
  line-height: 1.85;
  color: #2a1200;
  margin-bottom: 1.5em;
}

/* 2枚並べ */
.collabo-images--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* 1枚全幅 */
.collabo-images--1col {
  display: block;
}

.collabo-figure {
  margin: 0;
}

.collabo-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.collabo-figure figcaption {
  font-size: var(--fz13);
  color: #6b4226;
  text-align: center;
  margin-top: 0.4em;
}

.collabo-item-car {
  padding-top: 3em;
}

@media screen and (max-width: 639.98px) {
  .collabo-item {
    padding: 1.5em 2em;
  }

  .collabo-item.has-separator-top::before {
    left: 1em;
    right: 1em;
  }

  .collabo-images--2col {
    /* grid-template-columns: 1fr; */
  }
}

/* 横並びレイアウト（画像左、テキスト右） */
.collabo-item--horizontal {
  display: flex;
  align-items: center;
  gap: 2.5em;
}

.collabo-item--horizontal .collabo-img-wrapper {
  flex: 0 0 45%;
}

.collabo-item--horizontal .collabo-body {
  flex: 1;
}

.collabo-item--horizontal .collabo-text {
  margin-bottom: 0;
  /* 横並び時は最下部コンテンツになるためマージン調整 */
}

@media screen and (max-width: 767.98px) {
  .collabo-item--horizontal {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25em;
  }

  .collabo-item--horizontal .collabo-img-wrapper {
    flex: 0 0 auto;
  }
}


.u-nobrk {
  display: inline-block;
}

.title-img {
  max-width: 290px;
  margin: 0 auto;
}

@media screen and (max-width: 639.98px) {
  .title-img {
    width: 60%;
  }
}

.separator {
  aspect-ratio: 1627/49;
  width: 100%;
  background: url(../img/separator.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 900px;
  margin: 2em auto;
}

@media screen and (max-width: 639.98px) {

  #access {
    padding-top: 2em;
  }
}

.access-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-areas: "list map";
  margin: 0 auto;
  margin-top: 3em;
  gap: 1em;
}

@media screen and (max-width: 639.98px) {
  .access-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "list" "map";
  }
}

.access-list {
  grid-area: list;
  list-style: none;
}

.access-list li {
  border-left: 6px solid #F4731B;
  padding-left: 0.5em;
}

.access-list li:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 639.98px) {
  .access-list li:not(:last-child) {
    margin-bottom: 1em;
  }
}

.access-list li b {
  display: block;
}

.access-map {
  grid-area: map;
  width: 100%;
}

@media screen and (max-width: 639.98px) {
  .access-map {
    aspect-ratio: 16/9;
  }
}

.access-map iframe {
  width: 100%;
  height: 100%;
}



.footer {
  padding-top: 4em;
  background-color: #F9C23D;
  text-align: center;
}

.footer-title {
  margin-bottom: 2em;
}

@media screen and (max-width: 639.98px) {
  .footer-title {
    margin-bottom: 1em;
  }
}

.footer-title img {
  margin-left: auto;
  margin-right: auto;
  max-width: 170px;
}

@media screen and (max-width: 639.98px) {
  .footer-title img {
    max-width: 140px;
  }
}

.footer-logo {
  margin-bottom: 2em;
}

.footer-logo img {
  margin-left: auto;
  margin-right: auto;
  max-width: 360px;
  width: 75%;
}

.footer-contact-link a {
  display: block;
  border-radius: 100px;
  border: solid #222 2px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 0.75em 1em;
  text-decoration: none;
  max-width: 240px;
  transition: 0.25s;
  font-weight: bold;
  margin-bottom: 1.5em;
}

.footer-contact-link a:hover {
  border-color: #421905;
  background-color: #C20F23;
  color: #fff;
}

.footer-contact-link p {
  font-weight: 300;
}

.footer-sns {
  margin-top: 5em;
}

.footer-sns-title {
  margin-bottom: 1.2em;
}

.footer-sns-title img {
  margin-left: auto;
  margin-right: auto;
  max-width: 52px;
}

.footer-sns-link {
  display: flex;
  gap: 2em;
  justify-content: center;
  align-items: center;
}

.footer-sns-link li img {
  width: 36px;
}

.footer-copyRight {
  font-weight: 300;
  text-align: center;
  margin-top: 4em;
  padding-bottom: 1em;
}

/* ============================================================
   ① 無限横スクロールスライダー（Swiper.js）
   ============================================================ */
/**
 * .slide-list / .swiper-slide
 * Swiper.js を使った装飾用マーキースライダー。
 * JS の speed オプションでスクロール速度を制御。
 *
 * --- 見た目を変えたい場合はここを編集 ---
 * .swiper-slide img { height } : スライドの高さ ▼
 * .swiper-slide { padding }    : スライド間のスペース ▼
 */
.slide-list {
  overflow: hidden;
  margin-bottom: 5em;
}

.slide-list .swiper-slide {
  width: auto;
  padding: 0 0.75em;
}

@media screen and (max-width: 639.98px) {
  .slide-list .swiper-slide {
    margin-top: 2.5em;
  }

  .slide-list .swiper-slide {
    padding: 0 0.5em;
  }
}

.slide-list .swiper-slide img {
  height: 180px;
  width: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 8px;
}

@media screen and (max-width: 639.98px) {
  .slide-list .swiper-slide img {
    height: 120px;
  }
}

/* ============================================================
   ② Rellax.js パララックス補助
   ============================================================ */
/**
 * #orion
 * Rellax.js が orion-imgXX に transform: translateY() を適用するため、
 * パララックスが大きすぎてはみ出る場合は overflow: hidden を有効化する。
 * ▼ はみ出しが気になる場合はコメントを外す
 */
/* ============================================================
   ビール泡アニメーション
   ============================================================ */
/**
 * @keyframes bubble-rise
 * パーティクルが下から上へ浮かびながらフェードアウトするアニメーション。
 * transform: translateY を使用 → GPU合成層で処理 → reflowなし・軽量
 * ▼ フェードのタイミングを変えたい場合は % の値を調整
 */
@keyframes bubble-rise {

  /* フェードインしながら出現（途中発生でも自然に見える）*/
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  15% {
    /* --opacity は JS で個別にセットされるランダム値（0.3〜0.9）*/
    opacity: var(--opacity, 0.85);
  }

  75% {
    opacity: calc(var(--opacity, 0.85) * 0.9);
  }

  /* フェードアウトしながら消滅（途中消滅でも自然）*/
  100% {
    transform: translateY(calc(-1 * var(--travel, 300px)));
    opacity: 0;
  }
}

/**
 * #foam-container
 * パーティクルを乗せる透明なレイヤー。
 * <main> 内に収めるために position: absolute を使用。
 * pointer-events: none にすることで下のコンテンツのクリックを妨げない。
 */
#foam-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/**
 * 共通: パーティクルのベーススタイル
 * .bubble-shine と .bubble-dot に共通するプロパティ
 */
.bubble-shine,
.bubble-dot {
  position: absolute;
  animation: bubble-rise var(--duration, 3s) ease-out forwards;
  will-change: transform, opacity;
}

/**
 * .bubble-shine
 * SVG（./img/shine.svg）を使った輝きパーティクル。
 * JS が <img src="./img/shine.svg"> を生成してこのクラスを付ける。
 *
 * --- 見た目を変えたい場合はここを編集 ---
 * SVGファイル自体を差し替えると形が変わる
 * ▼ 明るさを調整したい場合は filter: brightness() を変更
 */
.bubble-shine {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  /* SVGに光のグロー感を足したい場合はコメントを外す
   * filter: drop-shadow(0 0 4px rgba(255, 240, 180, 0.8)); */
}

/**
 * .bubble-dot
 * #F9C23D の丸いパーティクル。
 * JS が <div> を生成してこのクラスを付ける。
 *
 * --- 見た目を変えたい場合はここを編集 ---
 * background-color : 丸の色 ▼
 * box-shadow       : グロー効果の色・強さ ▼
 */
.bubble-dot {
  border-radius: 50%;
  /* 丸の色: ▼ ここを変更 */
  background-color: #F9C23D;
  /* グロー効果: 第2引数がブラー半径、大きいほど広がる ▼ */
  box-shadow: 0 0 4px 1px rgba(249, 194, 61, 0.8), 0 0 10px 2px rgba(249, 194, 61, 0.4);
}

header,
.hero,
main,
footer {
  opacity: 0;
  transition: opacity 0.9s ease;
}

body.is-loaded header,
body.is-loaded .hero,
body.is-loaded main,
body.is-loaded footer {
  opacity: 1;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #FFD214;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease 0.2s;
}

.loading-overlay.is-done {
  opacity: 0;
  pointer-events: none;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-title {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: #fff;
  text-transform: uppercase;
}

.loading-title::after {
  content: "...";
  animation: ld-blink 1.4s ease-in-out infinite;
  display: inline-block;
}

@keyframes ld-blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.loading-percent {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  min-width: 3em;
  text-align: center;
}

.loading-overlay.--beer .loading-bar-outer {
  display: none;
}

.loading-overlay.--beer .loading-beer-wrap {
  display: flex;
}

.loading-overlay.--bar .loading-beer-wrap {
  display: none;
}

.loading-overlay.--bar .loading-bar-outer {
  display: block;
}

.loading-beer-wrap {
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 64px;
}

.loading-stream {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(249, 194, 61, 0) 0%, #C97B00 100%);
  border-radius: 4px;
  animation: ld-stream-sway 0.35s ease-in-out infinite alternate;
  transform-origin: top center;
}

@keyframes ld-stream-sway {
  from {
    transform: translateX(-60%) skewX(-3deg) scaleX(0.85);
  }

  to {
    transform: translateX(-40%) skewX(3deg) scaleX(1.15);
  }
}

.loading-mug {
  position: relative;
  width: 88px;
}

.loading-mug-body {
  width: 80px;
  height: 116px;
  border: 4px solid #fff;
  border-radius: 3px 3px 12px 12px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loading-mug-handle {
  position: absolute;
  right: -20px;
  top: 18px;
  width: 20px;
  height: 56px;
  border: 4px solid #fff;
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.loading-mug-base {
  width: 92px;
  height: 7px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}

.loading-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to top, #FFC304 0%, #FFFAEB 85%, #fff 100%);
  transition: height 0.45s ease;
}

.loading-foam {
  position: absolute;
  left: -3px;
  right: -3px;
  height: 22px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  bottom: 0%;
  display: none;
  z-index: 2;
  transition: bottom 0.45s ease;
  overflow: visible;
}

.loading-foam::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 14px;
  background: radial-gradient(ellipse 14px 10px at 50% 80%, #fff 60%, transparent 100%);
  animation: ld-foam-blob 1.8s ease-in-out infinite;
}

@keyframes ld-foam-blob {

  0%,
  100% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(1.25) scaleX(0.96);
  }
}

.loading-bubble {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  left: var(--x, 50%);
  bottom: 2%;
  animation: ld-bubble-rise var(--dur, 1.8s) ease-in var(--delay, 0s) infinite;
}

@keyframes ld-bubble-rise {
  0% {
    bottom: 2%;
    opacity: 0.9;
    transform: scale(1);
  }

  80% {
    opacity: 0.4;
  }

  100% {
    bottom: 95%;
    opacity: 0;
    transform: scale(0.6);
  }
}

.loading-bar-outer {
  width: 220px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 100px;
  transition: width 0.35s ease;
  position: relative;
  overflow: hidden;
}

.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: ld-shimmer 1.6s ease-in-out infinite;
}

@keyframes ld-shimmer {
  from {
    left: -60%;
  }

  to {
    left: 160%;
  }
}

.deco {
  position: absolute;
}

@media screen and (max-width: 639.98px) {
  .deco {
    transform: scale(2);
  }
}

.deco.--hop {
  width: 8%;
  bottom: -4%;
  left: -10%;
}

.deco.--beer {
  width: 12%;
  top: 4%;
  right: -4%;
}

.deco.--wiener {
  width: 16%;
  bottom: -5%;
  left: -7%;
}

.deco.--pretzel {
  width: 12%;
  top: 3%;
  right: -3%;
}

.deco.--pipe {
  width: 12%;
  top: -3%;
  right: -4%;
}

.deco.--rap {
  width: 20%;
  bottom: -6%;
  left: -7%;
}

.deco.--mustache {
  width: 10%;
  top: 0%;
  right: -1%;
}

.deco.--drum {
  width: 13%;
  bottom: -9%;
  left: -3%;
}

/* ============================================================
   画面右下固定バナー
   ============================================================ */
.floating-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 300px;
  max-width: 45vw;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-banner a {
  display: block;
}

.floating-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-banner a:hover img {
  transform: scale(1.02);
}

.floating-banner-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s, color 0.2s;
  padding: 0;
  z-index: 10000;
}

.floating-banner-close:hover {
  background-color: #333;
  color: #fff;
}

@media screen and (max-width: 639.98px) {
  .floating-banner {
    right: 12px;
    bottom: 12px;
    width: 160px;
    max-width: 50vw;
  }

  .floating-banner-close {
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */