@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;
}
header nav .nav-list {
  margin-top: -1em;
  margin-left: -0.25em;
  border-radius: 4px;
  background: #421905;
  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: rgba(66, 25, 5, 0.95);
    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: 60%;
  }
  header nav .nav-logo img {
    height: 100%;
    width: auto;
  }
  header nav .nav-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
  }
  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 9px 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(66, 25, 5, 0.97);
    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-title-wrapper {
    width: 72%;
  }
}
.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: 18%;
  right: -23%;
  width: 36%;
}
@media screen and (max-width: 639.98px) {
  .hero-title02 {
    right: -20%;
    width: 42%;
  }
}
.hero-title03 {
  left: -26%;
  top: 23%;
  width: 39%;
}
@media screen and (max-width: 639.98px) {
  .hero-title03 {
    left: -23%;
    top: 22%;
    width: 45%;
  }
}
.hero-date-deco01, .hero-date-deco02 {
  width: 34%;
}
.hero-date-main {
  width: 33%;
}

.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: 1.5% auto;
    grid-area: date;
    width: 80%;
  }
  .hero-date-wrapper .hero-date-deco01 {
    grid-area: daco01;
    width: 100%;
  }
  .hero-date-wrapper .hero-date-deco02 {
    grid-area: daco02;
    width: 100%;
  }
}

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%;
}
@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: 5em;
  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;
}

@media screen and (max-width: 767.98px) {
  .news-list-item {
    flex-direction: column;
    gap: 0.25em;
  }
}
.brand-list {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 0em;
}
.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;
}

.title-img {
  max-width: 290px;
  margin: 0 auto;
}
@media screen and (max-width: 639.98px) {
  .title-img {
    width: 68%;
  }
}

.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;
}

.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%;
}

@media screen and (max-width: 639.98px) {
  #brand {
    padding-top: 3em;
  }
}

.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 {
    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%;
}/*# sourceMappingURL=style.css.map */