*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #212121;
  background-color: #fcf9f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  color: #FFFFFF;
  background-color: #036EB8;
}

::selection {
  color: #FFFFFF;
  background-color: #036EB8;
}

img {
  height: auto;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes subtleFloatReverse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes navFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.4);
    transform-origin: top;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeInSkew {
  from {
    opacity: 0;
    transform: translateY(24px) skewX(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewX(-2deg);
  }
}
@keyframes pulse-ring {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}
@keyframes waveDrift1 {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(30px) translateY(-20px);
  }
}
@keyframes waveDrift2 {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(-25px) translateY(15px);
  }
  66% {
    transform: translateX(20px) translateY(-10px);
  }
}
@keyframes waveDrift3 {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-35px) translateY(25px);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 80px;
}
@media (max-width: 768px) {
  .l-header {
    height: 64px;
  }
}
.l-header {
  padding-right: 48px;
}
@media (max-width: 1024px) {
  .l-header {
    padding-right: 16px;
  }
}
.l-header {
  padding-left: 48px;
}
@media (max-width: 1024px) {
  .l-header {
    padding-left: 16px;
  }
}
.l-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.l-header.is-scrolled {
  background: rgba(252, 249, 243, 0.8);
  border-bottom-color: rgba(106, 93, 55, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.l-header__left {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.l-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.l-header__logo-img {
  width: auto;
  height: 44px;
}
@media (max-width: 768px) {
  .l-header__logo-img {
    height: 32px;
  }
}
.l-header__divider {
  display: none;
  width: 1px;
  height: 32px;
  background: rgba(106, 93, 55, 0.2);
}
@media (min-width: 769px) {
  .l-header__divider {
    display: block;
  }
}
.l-header__partner {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .l-header__partner {
    display: flex;
  }
}
.l-header__partner-link {
  transition: all 0.3s ease;
}
.l-header__partner-link:hover {
  opacity: 0.7;
}
.l-header__partner-logo {
  width: auto;
}
.l-header__partner-logo--zipfm {
  height: 20px;
}
.l-header__partner-logo--fmyokohama {
  height: 28px;
}
.l-header__sns {
  display: none;
  align-items: center;
  gap: 12px;
}
@media (min-width: 769px) {
  .l-header__sns {
    display: flex;
  }
}
.l-header__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.125rem;
  color: #6a5d37;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.l-header__sns-link:hover {
  color: #036EB8;
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.l-header__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  .l-header__lang {
    display: none;
  }
}
.l-header__lang-btn {
  color: #1a1711;
}
.l-header__lang-btn--active {
  padding-bottom: 2px;
  border-bottom: 2px solid #036EB8;
}
.l-header__lang-sep {
  color: #6a5d37;
}
.l-header__menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(106, 93, 55, 0.05);
  border-radius: 9999px;
}
.l-header__menu-label {
  display: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a1711;
}
@media (min-width: 769px) {
  .l-header__menu-label {
    display: block;
  }
}
.l-header__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #1a1711;
  transition: all 0.3s ease;
}
.l-header__menu-icon:hover {
  color: #036EB8;
}

html.is-menu-open,
html.is-menu-open body {
  overflow: hidden;
}

.l-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.l-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  display: flex;
  flex-direction: column;
  width: 560px;
  max-width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  visibility: hidden;
  background: rgba(252, 249, 243, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.l-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 20px 40px;
}
@media (max-width: 768px) {
  .l-menu__header {
    padding: 12px 16px;
  }
}
.l-menu__logo {
  display: block;
}
.l-menu__logo-img {
  width: auto;
  height: 32px;
}
.l-menu__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-menu__lang {
  display: none;
  align-items: center;
  gap: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .l-menu__lang {
    display: flex;
  }
}
.l-menu__lang-btn {
  color: #1a1711;
}
.l-menu__lang-btn--active {
  padding-bottom: 2px;
  border-bottom: 2px solid #036EB8;
}
.l-menu__lang-sep {
  color: #6a5d37;
}
.l-menu__close {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 16px;
  background: rgba(106, 93, 55, 0.05);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.l-menu__close:hover {
  opacity: 0.7;
}
.l-menu__close-label {
  display: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a1711;
}
@media (min-width: 769px) {
  .l-menu__close-label {
    display: block;
  }
}
.l-menu__close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #1a1711;
}
.l-menu__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 40px 40px;
}
@media (max-width: 768px) {
  .l-menu__body {
    padding: 0 16px 40px;
  }
}
.l-menu__nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 0;
}
.l-menu__nav-item {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-menu.is-open .l-menu__nav-item {
  opacity: 1;
  transform: translateX(0);
}
.l-menu__nav-item:nth-child(1) {
  transition-delay: 0.09s;
}
.l-menu__nav-item:nth-child(2) {
  transition-delay: 0.13s;
}
.l-menu__nav-item:nth-child(3) {
  transition-delay: 0.17s;
}
.l-menu__nav-item:nth-child(4) {
  transition-delay: 0.21s;
}
.l-menu__nav-item:nth-child(5) {
  transition-delay: 0.25s;
}
.l-menu__nav-item:nth-child(6) {
  transition-delay: 0.29s;
}
.l-menu__nav-item:nth-child(7) {
  transition-delay: 0.33s;
}
.l-menu__nav-link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-menu__nav-link:hover {
  transform: translateX(4px);
}
.l-menu__nav-link:hover .l-menu__nav-en {
  color: #2EA7E0;
}
.l-menu__nav-link:hover .l-menu__nav-ja {
  color: #036EB8;
}
.l-menu__nav-en {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #036EB8;
  transition: all 0.3s ease;
}
.l-menu__nav-ja {
  font-family: "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1711;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .l-menu__nav-ja {
    font-size: 1rem;
  }
}
.l-menu__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px;
  color: #1a1711;
  background-color: #fcf9f3;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
}
.l-menu__app-download > p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #1a1711;
}
.l-menu__app-download-logo {
  width: 200px;
  height: auto;
  margin-bottom: 12px;
}
.l-menu__app-download-btns {
  display: flex;
  flex-direction: row;
}
@media (max-width: 576px) {
  .l-menu__app-download-btns {
    flex-direction: column;
  }
}
.l-menu__app-download-btns {
  gap: 12px;
}
@media (max-width: 576px) {
  .l-menu__app-download-btns {
    gap: 8px;
  }
}
.l-menu__app-download-btns {
  width: 100%;
}
.l-menu__app-download-link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background-color: #000000;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.l-menu__app-download-link:hover {
  opacity: 0.7;
}
.l-menu__app-download-link img {
  width: auto;
  height: 28px;
}
.l-menu__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 8px 40px 48px;
}
@media (max-width: 768px) {
  .l-menu__footer {
    padding: 8px 16px 48px;
  }
}
.l-menu__partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.l-menu__partner-link {
  display: block;
  transition: all 0.3s ease;
}
.l-menu__partner-link:hover {
  opacity: 0.7;
}
.l-menu__partner-logo {
  width: auto;
}
.l-menu__partner-logo--zipfm {
  height: 28px;
}
.l-menu__partner-logo--fmyokohama {
  height: 40px;
}
.l-menu__social {
  display: flex;
  align-items: center;
  gap: 28px;
}
.l-menu__social-link {
  font-size: 1.25rem;
  color: #6a5d37;
  transition: all 0.3s ease;
}
.l-menu__social-link:hover {
  color: #036EB8;
}
.l-menu__event-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4px;
  padding: 16px 32px;
  background-color: #FFFFFF;
  border: 1px solid #e8e4d9;
  border-radius: 8px;
}
.l-menu__event-date {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1711;
}
.l-menu__event-venue {
  font-family: "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1711;
}

.l-footer {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .l-footer {
    padding-top: 64px;
  }
}
.l-footer {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .l-footer {
    padding-bottom: 128px;
  }
}
.l-footer {
  background: #003b65;
}
.l-footer__inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 24px;
  padding-left: 24px;
}
.l-footer__logo {
  margin-bottom: 40px;
  transition: all 0.3s ease;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
.l-footer__logo-img {
  height: 56px;
}
@media (max-width: 768px) {
  .l-footer__logo-img {
    height: 48px;
  }
}
.l-footer__logo-img {
  filter: brightness(0) invert(1);
}
.l-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.l-footer__copyright {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.l-section {
  position: relative;
  width: 100%;
  padding-top: 128px;
}
@media (max-width: 768px) {
  .l-section {
    padding-top: 80px;
  }
}
.l-section {
  padding-bottom: 128px;
}
@media (max-width: 768px) {
  .l-section {
    padding-bottom: 80px;
  }
}
.l-section--summary {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #f5f0e8;
}
.l-section--guide {
  padding-top: 128px;
}
@media (max-width: 768px) {
  .l-section--guide {
    padding-top: 96px;
  }
}
.l-section--guide {
  padding-bottom: 128px;
}
@media (max-width: 768px) {
  .l-section--guide {
    padding-bottom: 96px;
  }
}
.l-section--ticket {
  padding-top: 128px;
}
@media (max-width: 1024px) {
  .l-section--ticket {
    padding-top: 80px;
  }
}
.l-section--ticket {
  padding-bottom: 128px;
}
@media (max-width: 1024px) {
  .l-section--ticket {
    padding-bottom: 80px;
  }
}
.l-section--ticket {
  overflow: clip;
  background-color: #f5f0e8;
}
.l-section--sakagura {
  padding-top: 160px;
}
@media (max-width: 1024px) {
  .l-section--sakagura {
    padding-top: 128px;
  }
}
@media (max-width: 768px) {
  .l-section--sakagura {
    padding-top: 96px;
  }
}
.l-section--sakagura {
  padding-bottom: 160px;
}
@media (max-width: 1024px) {
  .l-section--sakagura {
    padding-bottom: 128px;
  }
}
@media (max-width: 768px) {
  .l-section--sakagura {
    padding-bottom: 96px;
  }
}
.l-section--osake {
  padding-top: 80px;
  padding-bottom: 80px;
}
.l-section--osake-detail {
  padding-top: 120px;
  padding-bottom: 80px;
}
.l-section--otsumami {
  background-color: #f5f0e8;
}
.l-section--kakuuchi-light {
  padding-top: 128px;
}
@media (max-width: 768px) {
  .l-section--kakuuchi-light {
    padding-top: 96px;
  }
}
.l-section--kakuuchi-light {
  padding-bottom: 128px;
}
@media (max-width: 768px) {
  .l-section--kakuuchi-light {
    padding-bottom: 96px;
  }
}
.l-section--kakuuchi-light {
  background-color: #fcf9f3;
}
.l-section--access {
  padding-top: 144px;
}
@media (max-width: 768px) {
  .l-section--access {
    padding-top: 112px;
  }
}
.l-section--access {
  padding-bottom: 144px;
}
@media (max-width: 768px) {
  .l-section--access {
    padding-bottom: 112px;
  }
}
.l-section--access {
  background-color: #f5f0e8;
}

.l-inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .l-inner {
    padding-right: 16px;
  }
}
.l-inner {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .l-inner {
    padding-left: 16px;
  }
}
.l-inner--narrow {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.c-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .c-section-heading {
    margin-bottom: 28px;
  }
}
.c-section-heading {
  text-align: center;
}
.c-section-heading--left {
  align-items: flex-start;
  text-align: left;
}
.c-section-heading__en {
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .c-section-heading__en {
    font-size: 1.125rem;
  }
}
.c-section-heading__en {
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #036EB8;
}
.c-section-heading__label {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .c-section-heading__label {
    font-size: 2.25rem;
  }
}
.c-section-heading__label {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #212121;
}
.c-section-heading__subtitle {
  max-width: 600px;
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: center;
  color: #6a5d37;
}
.c-section-heading__subtitle span {
  font-weight: 700;
  color: #036EB8;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  font-family: "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-weight: 700;
  outline: none;
  transition: all 0.3s ease;
}
.c-btn--cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 360px;
  height: 74px;
  overflow: hidden;
  font-size: 1.375rem;
  color: #FFFFFF;
  background-color: #036EB8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgba(3, 110, 184, 0.3);
}
.c-btn--cta:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn--cta:hover .c-btn__arrow {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .c-btn--cta {
    width: 100%;
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .c-btn--cta {
    height: 64px;
    font-size: 1.125rem;
  }
}
.c-btn__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #003b65;
  transform: translateY(calc(100% + 12px));
  transition: transform 0.3s ease-out;
}
.c-btn__overlay::before {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 12' preserveAspectRatio='none'%3E%3Cpath d='M0 12 Q45 2 90 8 T180 5 T270 9 T360 4 L360 12Z' fill='%23003b65'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  content: "";
}
.c-btn__text {
  position: relative;
  z-index: 10;
  padding-left: 32px;
  pointer-events: none;
}
.c-btn__icon-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.c-btn__arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-btn--floating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: inherit;
  color: #FFFFFF;
  background-color: #036EB8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgba(3, 110, 184, 0.3);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.c-btn--floating:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn--floating.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.c-btn__floating-icon, .c-btn__floating-text {
  position: relative;
  z-index: 1;
}
.c-btn--fixed-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 56px;
  padding-right: 16px;
  padding-left: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #212121;
  background-color: #036EB8;
  border: 1px solid rgba(26, 23, 17, 0.1);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgba(3, 110, 184, 0.3);
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  pointer-events: none;
}
.c-btn--fixed-ticket:hover {
  background-color: #003b65;
}
.c-btn--fixed-ticket.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .c-btn--fixed-ticket {
    width: 160px;
    height: 48px;
    font-size: 0.75rem;
  }
}
.c-btn--ticket-provider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .c-btn--ticket-provider {
    font-size: 0.9375rem;
  }
}
.c-btn--ticket-provider {
  overflow: hidden;
  color: #FFFFFF;
  background-color: #2EA7E0;
  border-radius: 9999px;
}
.c-btn--ticket-provider .c-btn__overlay {
  background-color: #0073A9;
}
.c-btn--ticket-provider .c-btn__overlay::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 12' preserveAspectRatio='none'%3E%3Cpath d='M0 12 Q45 2 90 8 T180 5 T270 9 T360 4 L360 12Z' fill='%230073A9'/%3E%3C/svg%3E");
}
.c-btn--ticket-provider:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn--ticket-app {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 2;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #036EB8;
  border-radius: 9999px;
}
.c-btn--ticket-app:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn__ticket-icon, .c-btn__ticket-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .c-btn__ticket-icon, .c-btn__ticket-text {
    font-size: 0.9375rem;
  }
}
.c-btn--store {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 9999px;
}
.c-btn--store .c-btn__overlay {
  background-color: #424242;
}
.c-btn--store:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn__store-icon {
  position: relative;
  z-index: 1;
}
.c-btn__store-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.c-btn__store-text span:first-child {
  font-size: 0.625rem;
  font-weight: 400;
}
.c-btn__store-text span:last-child {
  font-size: 0.875rem;
  font-weight: 700;
}

.c-card {
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.c-card--shadow {
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -15px rgba(106, 93, 55, 0.05);
}
.c-card--brewery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}
.c-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/1;
}
.c-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 9999px;
}
.c-card__badge--accent {
  background-color: #036EB8;
}
.c-card__badge--primary {
  background-color: #6a5d37;
}
.c-card__badge--dark {
  background-color: #212121;
  color: #FFFFFF;
}
.c-card__body {
  flex-grow: 1;
  padding: 32px;
}
@media (max-width: 768px) {
  .c-card__body {
    padding: 24px;
  }
}
.c-card__title {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
@media (max-width: 768px) {
  .c-card__title {
    font-size: 1.375rem;
  }
}
.c-card__title-sub {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6a5d37;
}
.c-card__desc {
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6a5d37;
}
.c-card__menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(106, 93, 55, 0.1);
}
.c-card__actions {
  display: flex;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(106, 93, 55, 0.08);
}
.c-card__external {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #036EB8;
  border-radius: 0 0 8px 8px;
  transition: all 0.3s ease;
}
.c-card__external:hover {
  background-color: rgba(3, 110, 184, 0.05);
}
.c-card__brewery-logo {
  width: 200px;
}
@media (max-width: 768px) {
  .c-card__brewery-logo {
    width: 160px;
  }
}
.c-card__brewery-logo {
  height: 200px;
}
@media (max-width: 768px) {
  .c-card__brewery-logo {
    height: 160px;
  }
}
.c-card__brewery-logo {
  margin-top: 24px;
  margin-bottom: 16px;
  padding: 24px;
}
@media (max-width: 768px) {
  .c-card__brewery-logo {
    padding: 16px;
  }
}
.c-card__brewery-logo {
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.c-card__brewery-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-card__brewery-location {
  margin-bottom: 8px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6a5d37;
}
.c-card__brewery-info {
  flex-grow: 1;
  margin-bottom: 16px;
  padding-right: 24px;
  padding-left: 24px;
}
.c-card__brewery-name {
  margin-bottom: 4px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
.c-card__brewery-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #ffa11e;
  border-radius: 9999px;
}
.c-card__brewery-brand {
  font-size: 0.875rem;
  color: #6a5d37;
}
.c-card__brewery-brand span {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  color: #6a5d37;
}
.c-card__brewery-actions {
  display: flex;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(106, 93, 55, 0.08);
}
.c-card__brewery-link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #036EB8;
  border-radius: 0 0 0 8px;
  transition: all 0.3s ease;
}
.c-card__brewery-link:hover {
  background-color: rgba(3, 110, 184, 0.05);
}
.c-card__brewery-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(3, 110, 184, 0.1);
  border-radius: 50%;
}
.c-card__brewery-external {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6a5d37;
  border-left: 1px solid rgba(106, 93, 55, 0.08);
  border-radius: 0 0 8px 0;
  transition: all 0.3s ease;
}
.c-card__brewery-external:hover {
  background-color: rgba(106, 93, 55, 0.05);
}

.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .c-accordion {
    gap: 8px;
  }
}
.c-accordion__item {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E0E0E0;
}
.c-accordion__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 24px;
  text-align: left;
  cursor: pointer;
}
.c-accordion__q-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #036EB8;
  border-radius: 50%;
}
.c-accordion__question {
  flex: 1;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .c-accordion__question {
    font-size: 1rem;
  }
}
.c-accordion__question {
  font-weight: 700;
  line-height: 1.7;
  color: #212121;
}
.c-accordion__toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.c-accordion__toggle-icon::before, .c-accordion__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #036EB8;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.c-accordion__toggle-icon::before {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.c-accordion__toggle-icon::after {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.c-accordion__item.is-open .c-accordion__toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.c-accordion__item.is-open .c-accordion__body {
  grid-template-rows: 1fr;
}
.c-accordion__answer-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 0;
  margin-bottom: 24px;
  padding: 0 24px;
  overflow: hidden;
}
.c-accordion__item:not(.is-open) .c-accordion__answer-wrap {
  margin-bottom: 0;
}
.c-accordion__a-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #6a5d37;
  border-radius: 50%;
}
.c-accordion__answer {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(33, 33, 33, 0.8);
}

.c-tab {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 16px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(106, 93, 55, 0.1);
}
.c-tab::-webkit-scrollbar {
  display: none;
}
.c-tab--ticket {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: auto;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-tab--ticket::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .c-tab--ticket {
    flex-wrap: nowrap;
    gap: 12px;
    width: -moz-max-content;
    width: max-content;
  }
}
.c-tab__list {
  display: flex;
  gap: 8px;
  isolation: isolate;
  padding: 8px 4px 0;
}
.c-tab__item {
  position: relative;
  padding: 16px 40px;
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.c-tab__item--active {
  transform: translateY(-8px);
  color: #FFFFFF;
}
.c-tab__item--active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #036EB8;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 8px 24px -6px rgba(3, 110, 184, 0.3);
}
.c-tab__item--active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 20;
  height: 2px;
  background-color: #036EB8;
}
.c-tab__item--inactive {
  color: #6a5d37;
}
.c-tab__item--inactive::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(106, 93, 55, 0.04);
  border-radius: 24px 24px 0 0;
  opacity: 0;
}
@media (max-width: 768px) {
  .c-tab__item {
    padding: 16px 24px;
  }
}
.c-tab__label {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-tab__ticket-item {
  padding: 20px 32px;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.c-tab__ticket-item--active {
  font-weight: 700;
  color: #FFFFFF;
  background-color: #036EB8;
  box-shadow: 0 16px 32px -8px rgba(3, 110, 184, 0.3);
}
.c-tab__ticket-item--inactive {
  font-weight: 500;
  color: #6a5d37;
  background-color: #FFFFFF;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
}
@media (max-width: 1024px) {
  .c-tab__ticket-item {
    font-size: 0.875rem;
  }
}

.c-menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.c-menu-item__name {
  font-size: 0.9375rem;
  color: #212121;
}
.c-menu-item__dots {
  flex: 1;
  min-width: 20px;
  margin-bottom: 4px;
  border-bottom: 2px dotted rgba(106, 93, 55, 0.25);
}
.c-menu-item__price {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  color: #6a5d37;
}
.c-menu-item__price-num {
  margin-right: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #212121;
}

.c-spec-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}
.c-spec-row__label {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6a5d37;
}
.c-spec-row__dots {
  position: relative;
  top: -4px;
  flex-grow: 1;
  height: 14px;
  margin-right: 12px;
  margin-left: 12px;
  border-bottom: 1px dotted #BDBDBD;
  opacity: 0.6;
}
.c-spec-row__value {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
}

.c-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-social-icon:hover {
  color: #FFFFFF;
}

.p-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding-top: 0;
}
@media (max-width: 768px) {
  .p-hero {
    padding-top: 64px;
  }
}
.p-hero__visual {
  position: relative;
  display: flex;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  background-color: #1a1711;
}
.p-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: kenBurns 20s ease-out infinite alternate;
  transition: opacity 1.5s ease;
}
.p-hero__bg-img.is-active {
  opacity: 0.9;
}
.p-hero__gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(26, 23, 17, 0.2), transparent);
  pointer-events: none;
}
.p-hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(26, 23, 17, 0.25), transparent);
  pointer-events: none;
}
.p-hero__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .p-hero__content {
    padding-right: 16px;
  }
}
.p-hero__content {
  padding-left: 0;
}
@media (max-width: 1024px) {
  .p-hero__content {
    padding-left: 16px;
  }
}
.p-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .p-hero__title {
    gap: 16px;
  }
}
.p-hero__title {
  padding-bottom: 80px;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}
.p-hero__title-wrap {
  width: 100%;
  text-align: center;
}
.p-hero__title-main {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
  color: #FFFFFF;
  font-size: 2.5rem;
}
@media (max-width: 1024px) {
  .p-hero__title-main {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p-hero__title-main {
    font-size: 1.5rem;
  }
}
.p-hero__title-main {
  animation: heroFadeInSkew 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.p-hero__title-sub {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
.p-hero__title-number {
  padding-left: 8px;
}
@media (max-width: 768px) {
  .p-hero__title-number {
    padding-left: 4px;
  }
}
.p-hero__title-number {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  color: #FFFFFF;
  font-size: 5.5rem;
}
@media (max-width: 1024px) {
  .p-hero__title-number {
    font-size: 3.75rem;
  }
}
@media (max-width: 768px) {
  .p-hero__title-number {
    font-size: 2.75rem;
  }
}
.p-hero__title-unit {
  font-size: 4rem;
}
@media (max-width: 1024px) {
  .p-hero__title-unit {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .p-hero__title-unit {
    font-size: 2.125rem;
  }
}
.p-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .p-hero__scroll-hint {
    display: none;
  }
}
.p-hero__scroll-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.p-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.p-hero__datebar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  width: 100%;
  padding: 24px 48px;
  background-color: rgba(26, 23, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 1024px) {
  .p-hero__datebar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}
.p-hero__dates {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: #FFFFFF;
}
.p-hero__dates-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.p-hero__date-group {
  display: flex;
  align-items: baseline;
}
.p-hero__date-num {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #FFFFFF;
  font-size: 2.625rem;
}
@media (max-width: 1024px) {
  .p-hero__date-num {
    font-size: 2rem;
  }
}
.p-hero__date-unit {
  margin-right: 4px;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .p-hero__date-unit {
    font-size: 1.125rem;
  }
}
.p-hero__date-day {
  margin-left: 2px;
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
}
@media (max-width: 1024px) {
  .p-hero__date-day {
    font-size: 1rem;
  }
}
.p-hero__date-sep {
  align-self: center;
  margin-right: 8px;
  margin-left: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.p-hero__venue {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
}
@media (max-width: 1024px) {
  .p-hero__venue {
    padding: 6px 12px;
  }
}
.p-hero__venue {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}
.p-hero__venue-label {
  padding: 2px 8px;
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #212121;
  background-color: #FBC863;
  border-radius: 4px;
}
.p-hero__venue-name {
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  color: #FFFFFF;
  font-size: 1.125rem;
}
@media (max-width: 1024px) {
  .p-hero__venue-name {
    font-size: 0.9375rem;
  }
}

.p-headline {
  position: relative;
}
.p-headline__grid-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-headline__grid-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.03);
}
.p-headline__grid-line--left {
  left: 96px;
}
@media (max-width: 1024px) {
  .p-headline__grid-line--left {
    left: 48px;
  }
}
.p-headline__grid-line--right {
  right: 96px;
}
@media (max-width: 1024px) {
  .p-headline__grid-line--right {
    right: 48px;
  }
}
.p-headline__grid-center {
  position: absolute;
  width: 964px;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.015);
  border-left: 1px solid rgba(0, 0, 0, 0.015);
}
.p-headline__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 964px;
  margin-right: auto;
  margin-left: auto;
  padding: 96px 16px;
  padding-right: 0;
}
@media (max-width: 576px) {
  .p-headline__inner {
    padding-right: 16px;
  }
}
.p-headline__inner {
  padding-left: 0;
}
@media (max-width: 576px) {
  .p-headline__inner {
    padding-left: 16px;
  }
}
.p-headline__layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 768px) {
  .p-headline__layout {
    flex-direction: column;
    gap: 32px;
  }
}
.p-headline__label {
  flex-shrink: 0;
  width: auto;
  padding-top: 2px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .p-headline__label {
    width: auto;
    padding-right: 0;
  }
}
.p-headline__label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-headline__label-dot {
  display: block;
  width: 6px;
  height: 6px;
  background-color: rgba(106, 93, 55, 0.4);
  transform: rotate(45deg);
}
.p-headline__label-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a5d37;
}
.p-headline__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 728px;
}
@media (max-width: 768px) {
  .p-headline__list {
    max-width: none;
  }
}
.p-headline__item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  margin-left: -16px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  background-color: rgba(0, 0, 0, 0.02);
}
.p-headline__item:nth-child(1) {
  animation-delay: 0.1s;
}
.p-headline__item:nth-child(2) {
  animation-delay: 0.2s;
}
.p-headline__item:nth-child(3) {
  animation-delay: 0.3s;
}
.p-headline__item:nth-child(4) {
  animation-delay: 0.4s;
}
.p-headline__item:nth-child(5) {
  animation-delay: 0.5s;
}
.p-headline__item:nth-child(6) {
  animation-delay: 0.6s;
}
.p-headline__item:nth-child(7) {
  animation-delay: 0.7s;
}
.p-headline__item:nth-child(8) {
  animation-delay: 0.8s;
}
.p-headline__item:nth-child(9) {
  animation-delay: 0.9s;
}
.p-headline__item:nth-child(10) {
  animation-delay: 1s;
}
.p-headline__item:nth-child(11) {
  animation-delay: 1.1s;
}
.p-headline__item:nth-child(12) {
  animation-delay: 1.2s;
}
.p-headline__item:nth-child(13) {
  animation-delay: 1.3s;
}
.p-headline__item:nth-child(14) {
  animation-delay: 1.4s;
}
.p-headline__item:nth-child(15) {
  animation-delay: 1.5s;
}
.p-headline__item:nth-child(16) {
  animation-delay: 1.6s;
}
.p-headline__item:nth-child(17) {
  animation-delay: 1.7s;
}
.p-headline__item:nth-child(18) {
  animation-delay: 1.8s;
}
.p-headline__item:nth-child(19) {
  animation-delay: 1.9s;
}
.p-headline__item:nth-child(20) {
  animation-delay: 2s;
}
.p-headline__item:nth-child(21) {
  animation-delay: 2.1s;
}
.p-headline__item:nth-child(22) {
  animation-delay: 2.2s;
}
.p-headline__item:nth-child(23) {
  animation-delay: 2.3s;
}
.p-headline__item:nth-child(24) {
  animation-delay: 2.4s;
}
.p-headline__item:nth-child(25) {
  animation-delay: 2.5s;
}
.p-headline__item:nth-child(26) {
  animation-delay: 2.6s;
}
.p-headline__item:nth-child(27) {
  animation-delay: 2.7s;
}
.p-headline__item:nth-child(28) {
  animation-delay: 2.8s;
}
.p-headline__item:nth-child(29) {
  animation-delay: 2.9s;
}
.p-headline__item:nth-child(30) {
  animation-delay: 3s;
}
.p-headline__item:nth-child(31) {
  animation-delay: 3.1s;
}
.p-headline__item:nth-child(32) {
  animation-delay: 3.2s;
}
.p-headline__item:nth-child(33) {
  animation-delay: 3.3s;
}
.p-headline__item:nth-child(34) {
  animation-delay: 3.4s;
}
.p-headline__item:nth-child(35) {
  animation-delay: 3.5s;
}
.p-headline__item:nth-child(36) {
  animation-delay: 3.6s;
}
.p-headline__item:nth-child(37) {
  animation-delay: 3.7s;
}
.p-headline__item:nth-child(38) {
  animation-delay: 3.8s;
}
.p-headline__item:nth-child(39) {
  animation-delay: 3.9s;
}
.p-headline__item:nth-child(40) {
  animation-delay: 4s;
}
.p-headline__item:nth-child(41) {
  animation-delay: 4.1s;
}
.p-headline__item:nth-child(42) {
  animation-delay: 4.2s;
}
.p-headline__item:nth-child(43) {
  animation-delay: 4.3s;
}
.p-headline__item:nth-child(44) {
  animation-delay: 4.4s;
}
.p-headline__item:nth-child(45) {
  animation-delay: 4.5s;
}
.p-headline__item:nth-child(46) {
  animation-delay: 4.6s;
}
.p-headline__item:nth-child(47) {
  animation-delay: 4.7s;
}
.p-headline__item:nth-child(48) {
  animation-delay: 4.8s;
}
.p-headline__item:nth-child(49) {
  animation-delay: 4.9s;
}
.p-headline__item:nth-child(50) {
  animation-delay: 5s;
}
.p-headline__item:nth-child(51) {
  animation-delay: 5.1s;
}
.p-headline__item:nth-child(52) {
  animation-delay: 5.2s;
}
.p-headline__item:nth-child(53) {
  animation-delay: 5.3s;
}
.p-headline__item:nth-child(54) {
  animation-delay: 5.4s;
}
.p-headline__item:nth-child(55) {
  animation-delay: 5.5s;
}
.p-headline__item:nth-child(56) {
  animation-delay: 5.6s;
}
.p-headline__item:nth-child(57) {
  animation-delay: 5.7s;
}
.p-headline__item:nth-child(58) {
  animation-delay: 5.8s;
}
.p-headline__item:nth-child(59) {
  animation-delay: 5.9s;
}
.p-headline__item:nth-child(60) {
  animation-delay: 6s;
}
.p-headline__item:nth-child(61) {
  animation-delay: 6.1s;
}
.p-headline__item:nth-child(62) {
  animation-delay: 6.2s;
}
.p-headline__item:nth-child(63) {
  animation-delay: 6.3s;
}
.p-headline__item:nth-child(64) {
  animation-delay: 6.4s;
}
.p-headline__item:nth-child(65) {
  animation-delay: 6.5s;
}
.p-headline__item:nth-child(66) {
  animation-delay: 6.6s;
}
.p-headline__item:nth-child(67) {
  animation-delay: 6.7s;
}
.p-headline__item:nth-child(68) {
  animation-delay: 6.8s;
}
.p-headline__item:nth-child(69) {
  animation-delay: 6.9s;
}
.p-headline__item:nth-child(70) {
  animation-delay: 7s;
}
.p-headline__item:nth-child(71) {
  animation-delay: 7.1s;
}
.p-headline__item:nth-child(72) {
  animation-delay: 7.2s;
}
.p-headline__item:nth-child(73) {
  animation-delay: 7.3s;
}
.p-headline__item:nth-child(74) {
  animation-delay: 7.4s;
}
.p-headline__item:nth-child(75) {
  animation-delay: 7.5s;
}
.p-headline__item:nth-child(76) {
  animation-delay: 7.6s;
}
.p-headline__item:nth-child(77) {
  animation-delay: 7.7s;
}
.p-headline__item:nth-child(78) {
  animation-delay: 7.8s;
}
.p-headline__item:nth-child(79) {
  animation-delay: 7.9s;
}
.p-headline__item:nth-child(80) {
  animation-delay: 8s;
}
.p-headline__item:nth-child(81) {
  animation-delay: 8.1s;
}
.p-headline__item:nth-child(82) {
  animation-delay: 8.2s;
}
.p-headline__item:nth-child(83) {
  animation-delay: 8.3s;
}
.p-headline__item:nth-child(84) {
  animation-delay: 8.4s;
}
.p-headline__item:nth-child(85) {
  animation-delay: 8.5s;
}
.p-headline__item:nth-child(86) {
  animation-delay: 8.6s;
}
.p-headline__item:nth-child(87) {
  animation-delay: 8.7s;
}
.p-headline__item:nth-child(88) {
  animation-delay: 8.8s;
}
.p-headline__item:nth-child(89) {
  animation-delay: 8.9s;
}
.p-headline__item:nth-child(90) {
  animation-delay: 9s;
}
.p-headline__item:nth-child(91) {
  animation-delay: 9.1s;
}
.p-headline__item:nth-child(92) {
  animation-delay: 9.2s;
}
.p-headline__item:nth-child(93) {
  animation-delay: 9.3s;
}
.p-headline__item:nth-child(94) {
  animation-delay: 9.4s;
}
.p-headline__item:nth-child(95) {
  animation-delay: 9.5s;
}
.p-headline__item:nth-child(96) {
  animation-delay: 9.6s;
}
.p-headline__item:nth-child(97) {
  animation-delay: 9.7s;
}
.p-headline__item:nth-child(98) {
  animation-delay: 9.8s;
}
.p-headline__item:nth-child(99) {
  animation-delay: 9.9s;
}
.p-headline__item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.p-headline__date {
  flex-shrink: 0;
  width: 100px;
}
@media (max-width: 576px) {
  .p-headline__date {
    width: 90px;
  }
}
.p-headline__date {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #666666;
  transition: color 0.3s;
  font-size: 0.9375rem;
}
@media (max-width: 576px) {
  .p-headline__date {
    font-size: 0.875rem;
  }
}
.p-headline__title {
  padding-right: 32px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  line-height: 1.4;
  color: #212121;
  transition: color 0.3s;
  font-size: 0.9375rem;
}
@media (max-width: 576px) {
  .p-headline__title {
    font-size: 0.875rem;
  }
}
.p-headline__tag {
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(3, 110, 184, 0.8);
}
.p-headline__arrow {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.75rem;
  color: #6a5d37;
  transition: all 0.3s;
}

.p-message {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
}
@media (max-width: 1024px) {
  .p-message {
    padding-top: 0;
  }
}
.p-message {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .p-message {
    padding-bottom: 0;
  }
}
.p-message__wave-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}
.p-message__wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  min-width: 1600px;
  height: 150%;
  color: #6a5d37;
}
.p-message__wave-svg--1 {
  animation: waveDrift1 12s ease-in-out infinite;
}
.p-message__wave-svg--2 {
  animation: waveDrift2 16s ease-in-out infinite;
}
.p-message__wave-svg--3 {
  animation: waveDrift3 20s ease-in-out infinite;
}
.p-message__stage {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  min-height: 800px;
}
@media (max-width: 1024px) {
  .p-message__stage {
    min-height: auto;
  }
}
.p-message__stage {
  margin-right: auto;
  margin-left: auto;
  padding-top: 160px;
}
@media (max-width: 1024px) {
  .p-message__stage {
    padding-top: 80px;
  }
}
.p-message__stage {
  padding-bottom: 160px;
}
@media (max-width: 1024px) {
  .p-message__stage {
    padding-bottom: 80px;
  }
}
.p-message__stage {
  padding-right: 0;
}
@media (max-width: 1024px) {
  .p-message__stage {
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .p-message__stage {
    padding-right: 16px;
  }
}
.p-message__stage {
  padding-left: 0;
}
@media (max-width: 1024px) {
  .p-message__stage {
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .p-message__stage {
    padding-left: 16px;
  }
}
.p-message__float {
  position: absolute;
  z-index: 20;
  width: 320px;
  height: 200px;
  display: block;
}
@media (max-width: 1024px) {
  .p-message__float {
    display: none;
  }
}
.p-message__float {
  transition: all 0.3s ease;
}
.p-message__float--1 {
  top: 2%;
  left: 5%;
  animation: subtleFloat 8s ease-in-out infinite;
}
.p-message__float--2 {
  top: 15%;
  right: 5%;
  animation: subtleFloatReverse 9s ease-in-out infinite;
}
.p-message__float--3 {
  bottom: 15%;
  left: 2%;
  animation: subtleFloat 10s ease-in-out infinite;
}
.p-message__float--4 {
  right: 3%;
  bottom: 10%;
  animation: subtleFloatReverse 8s ease-in-out infinite;
}
@media (max-width: 1280px) {
  .p-message__float {
    opacity: 0.15;
    pointer-events: none;
    filter: blur(4px);
  }
}
.p-message__img-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
}
.p-message__img-wrap img {
  filter: grayscale(20%) sepia(10%);
  mix-blend-mode: multiply;
}
.p-message__content {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 640px;
}
.p-message__subtitle {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a5d37;
}
.p-message__subtitle-line {
  display: block;
  width: 32px;
  height: 1px;
  background-color: rgba(106, 93, 55, 0.4);
}
.p-message__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.p-message__text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.p-message__text p {
  position: relative;
  z-index: 10;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #212121;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-message__text p {
    font-size: 0.9375rem;
  }
}
.p-message__text--emphasis p {
  max-width: 540px;
  font-weight: 500;
}
.p-message__divider {
  width: 1px;
  height: 48px;
  margin-bottom: 80px;
  background: linear-gradient(to bottom, rgba(106, 93, 55, 0.4), transparent);
}
.p-message__end-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(106, 93, 55, 0.4);
  transform: rotate(45deg);
}
.p-message__end-dot {
  width: 4px;
  height: 4px;
  background-color: #036EB8;
  border-radius: 50%;
}

.p-summary__table {
  width: 100%;
  overflow: hidden;
  margin-bottom: 64px;
  background-color: #fcf9f3;
  border-radius: 16px;
  border: 1px solid rgba(106, 93, 55, 0.2);
}
.p-summary__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e8e4d9;
  opacity: 0;
  animation: fadeInRise 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.p-summary__row:last-child {
  border-bottom: none;
}
.p-summary__row:nth-child(1) {
  animation-delay: 0.1s;
}
.p-summary__row:nth-child(2) {
  animation-delay: 0.15s;
}
.p-summary__row:nth-child(3) {
  animation-delay: 0.2s;
}
.p-summary__row:nth-child(4) {
  animation-delay: 0.25s;
}
.p-summary__row:nth-child(5) {
  animation-delay: 0.3s;
}
.p-summary__row:nth-child(6) {
  animation-delay: 0.35s;
}
.p-summary__row:nth-child(7) {
  animation-delay: 0.4s;
}
.p-summary__row:nth-child(8) {
  animation-delay: 0.45s;
}
@media (max-width: 576px) {
  .p-summary__row {
    flex-direction: column;
  }
}
.p-summary__label {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  width: 240px;
}
@media (max-width: 768px) {
  .p-summary__label {
    width: 180px;
  }
}
@media (max-width: 576px) {
  .p-summary__label {
    width: 100%;
  }
}
.p-summary__label {
  padding: 24px 24px 24px 48px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #036EB8;
}
@media (max-width: 768px) {
  .p-summary__label {
    padding: 24px 20px 24px 40px;
  }
}
@media (max-width: 576px) {
  .p-summary__label {
    width: 100%;
    padding: 20px 24px 0;
  }
}
.p-summary__value {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  padding: 24px 32px;
  line-height: 1.7;
  color: #212121;
}
@media (max-width: 576px) {
  .p-summary__value {
    padding: 8px 24px 20px;
  }
}
.p-summary__value-main {
  font-weight: 500;
}
.p-summary__value-sub {
  font-size: 0.8125rem;
  color: #616161;
}
.p-summary__value-note {
  font-size: 0.875rem;
  color: #616161;
}
.p-summary__schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-summary__schedule li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.9375rem;
}
.p-summary__schedule-day {
  flex-shrink: 0;
  font-weight: 700;
  color: #1a1711;
}
.p-summary__schedule-note {
  font-size: 0.9375rem;
}
.p-summary__price-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-summary__price-list li {
  font-size: 0.9375rem;
}
.p-summary__price-list strong {
  font-weight: 700;
  color: #1a1711;
}
.p-summary__tail {
  width: 1px;
  height: 96px;
  background: linear-gradient(to bottom, rgba(106, 93, 55, 0.3), transparent);
}

.p-guide__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-guide__steps {
    margin-bottom: 32px;
  }
}
.p-guide__step {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #e8e4d9;
}
.p-guide__step:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-guide__step {
    flex-direction: column;
  }
  .p-guide__step:nth-child(even) {
    flex-direction: column;
  }
}
.p-guide__step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 300px;
  min-height: 260px;
  overflow: hidden;
  background-color: #f5f0e8;
}
@media (max-width: 768px) {
  .p-guide__step-visual {
    width: 100%;
    min-height: 200px;
    padding: 32px;
  }
}
.p-guide__step-num {
  position: absolute;
  right: -8px;
  bottom: -20px;
  font-family: "Manrope", sans-serif;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(106, 93, 55, 0.06);
  pointer-events: none;
}
.p-guide__step-img {
  position: relative;
  z-index: 1;
  width: 160px;
}
@media (max-width: 768px) {
  .p-guide__step-img {
    width: 120px;
  }
}
.p-guide__step-img {
  height: auto;
}
.p-guide__step-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
@media (max-width: 768px) {
  .p-guide__step-body {
    padding: 32px 24px;
  }
}
.p-guide__step-label {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #036EB8;
}
.p-guide__step-title {
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #212121;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .p-guide__step-title {
    font-size: 1.25rem;
  }
}
.p-guide__step-desc {
  margin-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #666666;
}
.p-guide__step-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 4px;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #036EB8;
  border: 1px solid #036EB8;
  border-radius: 4px;
}
.p-guide__notes {
  width: 100%;
  margin-bottom: 80px;
}
.p-guide__note {
  position: relative;
  margin-bottom: 4px;
  margin-left: 16px;
  padding-left: 20px;
  line-height: 1.7;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-guide__note {
    font-size: 0.875rem;
  }
}
.p-guide__note::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #212121;
  border-radius: 50%;
}
.p-guide__caution {
  width: 100%;
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
}
.p-guide__caution-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #c62828;
  border-radius: 8px;
  padding: 48px;
}
@media (max-width: 768px) {
  .p-guide__caution-box {
    padding: 32px 24px;
  }
}
.p-guide__caution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.p-guide__caution-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c62828;
}
.p-guide__caution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-guide__caution-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.p-guide__caution-icon {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 1.125rem;
  color: #c62828;
}
.p-guide__caution-text {
  line-height: 1.6;
}

.p-divider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 640px;
}
@media (max-width: 768px) {
  .p-divider {
    height: 320px;
  }
}
.p-divider {
  margin-left: calc(50% - 50vw);
}
.p-divider__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 6s cubic-bezier(0.16, 1, 0.3, 1), transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-divider.is-visible .p-divider__img {
  opacity: 1;
  transform: scale(1);
}

.p-ticket {
  position: relative;
}
.p-ticket__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 320px;
}
@media (max-width: 1024px) {
  .p-ticket__grid {
    grid-template-columns: 1fr;
  }
}
.p-ticket__grid {
  gap: 40px;
}
@media (max-width: 1024px) {
  .p-ticket__grid {
    gap: 32px;
  }
}
.p-ticket__cards {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-ticket__card {
  position: relative;
  overflow: hidden;
  word-break: break-word;
  padding: 40px;
}
@media (max-width: 768px) {
  .p-ticket__card {
    padding: 28px 24px;
  }
}
.p-ticket__card {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #BDBDBD;
}
.p-ticket__card-head {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .p-ticket__card-head {
    flex-direction: column;
  }
}
.p-ticket__card-head {
  align-items: center;
}
@media (max-width: 768px) {
  .p-ticket__card-head {
    align-items: flex-start;
  }
}
.p-ticket__card-head {
  gap: 16px;
}
@media (max-width: 768px) {
  .p-ticket__card-head {
    gap: 8px;
  }
}
.p-ticket__card-head {
  margin-bottom: 32px;
}
.p-ticket__card-badge {
  flex-shrink: 0;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  background-color: #EEEEEE;
  border-radius: 9999px;
}
.p-ticket__card-badge--app {
  background-color: #FBC863;
}
.p-ticket__card-badge--sub {
  color: #6a5d37;
  background-color: rgba(106, 93, 55, 0.08);
}
.p-ticket__card-name {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-ticket__card-name {
    font-size: 1.25rem;
  }
}
.p-ticket__card-name {
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
.p-ticket__card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.p-ticket__card-price-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(135deg, #036EB8, #003b65);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-ticket__card-price-num {
    font-size: 2.5rem;
  }
}
.p-ticket__card-price-unit {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-ticket__card-price-unit {
    font-size: 1.25rem;
  }
}
.p-ticket__card-price-unit {
  font-weight: 700;
  color: #036EB8;
}
.p-ticket__card-price-tax {
  margin-left: 4px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #003b65;
}
.p-ticket__card-discount {
  display: inline-block;
  width: 100%;
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #c62828;
  -webkit-text-fill-color: #c62828;
}
.p-ticket__card-set {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.p-ticket__card-set-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-ticket__card-set-item {
    font-size: 0.875rem;
  }
}
.p-ticket__card-set-item {
  font-weight: 500;
  background-color: #fcf9f3;
  border-radius: 24px;
  border: 1px solid #e8e4d9;
}
.p-ticket__card-set-item--highlight {
  font-weight: 700;
  color: #c43a6b;
  background-color: rgba(232, 75, 128, 0.1);
  border-color: rgba(232, 75, 128, 0.35);
}
.p-ticket__card-desc {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.4;
}
.p-ticket__card-purchase {
  padding-top: 24px;
  border-top: 1px solid #e8e4d9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-ticket__card-purchase-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1711;
}
.p-ticket__card-purchase-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .p-ticket__card-purchase-grid {
    gap: 12px;
  }
}
.p-ticket__card-purchase-providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .p-ticket__card-purchase-providers {
    gap: 8px;
  }
}
.p-ticket__card-purchase-app {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-ticket__card-purchase-app .c-btn--ticket-app {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .p-ticket__card-purchase-app {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
.p-ticket__card-purchase-app-logo {
  width: 144px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-ticket__card-purchase-app-logo {
    width: 120px;
    align-self: center;
  }
}
.p-ticket__card-purchase-note {
  font-size: 0.875rem;
}
.p-ticket__warning {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 40px;
}
@media (max-width: 768px) {
  .p-ticket__warning {
    padding: 28px 24px;
  }
}
.p-ticket__warning {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1711;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
}
.p-ticket__warning > i {
  transform: translateY(2px);
}
.p-ticket__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .p-ticket__sidebar {
    position: static;
    order: -1;
    min-width: 0;
  }
}
.p-ticket__sidebar-nav {
  border-top: 1px solid rgba(106, 93, 55, 0.15);
  border-bottom: 1px solid rgba(106, 93, 55, 0.15);
}
@media (max-width: 1024px) {
  .p-ticket__sidebar-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: calc(-1 * 24px);
    margin-left: calc(-1 * 24px);
    padding-right: 24px;
    padding-left: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-top: none;
    border-bottom: none;
  }
  .p-ticket__sidebar-nav::-webkit-scrollbar {
    display: none;
  }
}
.p-ticket__sidebar-nav-item {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #6a5d37;
  transition: all 0.3s ease;
}
.p-ticket__sidebar-nav-item::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background-color: #036EB8;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.p-ticket__sidebar-nav-item:not(:last-child) {
  border-bottom: 1px solid rgba(106, 93, 55, 0.08);
}
.p-ticket__sidebar-nav-item:hover {
  color: #036EB8;
}
.p-ticket__sidebar-nav-item.is-active {
  color: #036EB8;
  font-weight: 700;
}
.p-ticket__sidebar-nav-item.is-active::before {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1024px) {
  .p-ticket__sidebar-nav-item {
    padding: 8px 16px;
    font-size: 0.75rem;
    white-space: nowrap;
    border: 1px solid rgba(106, 93, 55, 0.2);
    border-radius: 9999px;
  }
  .p-ticket__sidebar-nav-item::before {
    display: none;
  }
  .p-ticket__sidebar-nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(106, 93, 55, 0.2);
  }
  .p-ticket__sidebar-nav-item.is-active {
    color: #FFFFFF;
    background-color: #036EB8;
    border-color: #036EB8;
  }
}
.p-ticket__sidebar-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 28px;
}
@media (max-width: 768px) {
  .p-ticket__sidebar-content {
    padding: 16px;
  }
}
.p-ticket__sidebar-content {
  color: #1a1711;
  background-color: #fcf9f3;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .p-ticket__sidebar-content {
    display: none;
  }
}
.p-ticket__sidebar-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: radial-gradient(#1a1711 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.p-ticket__sidebar-logo {
  position: relative;
  z-index: 1;
  width: 200px;
  height: auto;
  margin-bottom: 16px;
}
.p-ticket__app-title {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1711;
  text-align: center;
}
.p-ticket__app-download-btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.p-ticket__app-download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 42px;
  background-color: #212121;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.p-ticket__app-download-link:hover {
  opacity: 0.7;
}
.p-ticket__app-download-link img {
  height: 36px;
  width: auto;
}
.p-ticket__app-promo {
  margin-top: 48px;
}
.p-ticket__app-promo-inner {
  padding: 48px;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-inner {
    padding: 32px 24px;
  }
}
.p-ticket__app-promo-inner {
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
}
.p-ticket__app-promo-content {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.p-ticket__app-promo-lead {
  margin-bottom: 24px;
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-lead {
    font-size: 1.5rem;
  }
}
.p-ticket__app-promo-lead {
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
.p-ticket__app-promo-desc {
  margin-bottom: 40px;
  padding: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: left;
  color: #1a1711;
  background-color: #F5F5F5;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-desc {
    margin-bottom: 32px;
  }
}
.p-ticket__app-promo-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-body {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
  }
}
.p-ticket__app-promo-image {
  flex-shrink: 0;
  width: 240px;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-image {
    width: 160px;
  }
}
.p-ticket__app-promo-image img {
  width: 100%;
  height: auto;
}
.p-ticket__app-promo-features {
  text-align: left;
}
.p-ticket__app-promo-features-title {
  margin-bottom: 20px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-features-title {
    font-size: 1rem;
  }
}
.p-ticket__app-promo-features-title {
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
.p-ticket__app-promo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-ticket__app-promo-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1711;
}
.p-ticket__app-promo-list-item > i {
  flex-shrink: 0;
  font-size: 1.375rem;
  color: #036EB8;
}
.p-ticket__app-promo-download {
  padding-top: 32px;
  border-top: 1px solid #e8e4d9;
  text-align: center;
}
.p-ticket__app-promo-download-text {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1711;
}
.p-ticket__app-promo-download-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .p-ticket__app-promo-download-btns {
    flex-direction: column;
  }
}

.p-sakagura {
  position: relative;
}
.p-sakagura__heading {
  display: flex;
  align-items: flex-end;
  gap: 64px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .p-sakagura__heading {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .p-sakagura__heading {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-sakagura__heading .c-section-heading {
  margin-bottom: 0;
}
.p-sakagura__heading-desc {
  margin-bottom: 6px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #212121;
}
.p-sakagura__heading-desc span {
  margin-left: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-sakagura__schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  padding: 10px 20px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-sakagura__schedule {
    font-size: 0.875rem;
  }
}
.p-sakagura__schedule {
  font-weight: 700;
  line-height: 1.4;
  color: #036EB8;
  border: 1px solid #036EB8;
  border-radius: 9999px;
}
.p-sakagura__schedule i {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .p-sakagura__schedule {
    margin-bottom: 40px;
  }
}
.p-sakagura__prefectures {
  display: flex;
  flex-direction: column;
  gap: 140px;
}
@media (max-width: 768px) {
  .p-sakagura__prefectures {
    gap: 100px;
  }
}
.p-sakagura__prefecture {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-sakagura__prefecture-header {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-sakagura__prefecture-header {
    gap: 16px;
  }
}
.p-sakagura__prefecture-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 85%;
  background-color: #036EB8;
  transform: translateY(-50%);
}
.p-sakagura__prefecture-name {
  padding-left: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #1a1711;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-sakagura__prefecture-name {
    font-size: 1.5rem;
  }
}
.p-sakagura__prefecture-en {
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a5d37;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-sakagura__prefecture-en {
    font-size: 0.875rem;
  }
}
.p-sakagura__prefecture-line {
  display: none;
  flex: 1;
  height: 1px;
  margin-left: 16px;
  background: linear-gradient(to right, rgba(106, 93, 55, 0.2), transparent);
  display: block;
}
@media (max-width: 768px) {
  .p-sakagura__prefecture-line {
    display: none;
  }
}
.p-sakagura__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .p-sakagura__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-sakagura__grid {
    grid-template-columns: 1fr;
  }
}

.p-otsumami__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .p-otsumami__grid {
    grid-template-columns: 1fr;
  }
}

.p-kakuuchi__coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 24px;
  border: 1px dashed rgba(106, 93, 55, 0.2);
  border-radius: 24px;
}
.p-kakuuchi__coming-soon-en {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-kakuuchi__coming-soon-en {
    font-size: 1.75rem;
  }
}
.p-kakuuchi__coming-soon-en {
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(106, 93, 55, 0.15);
}
@media (max-width: 768px) {
  .p-kakuuchi__coming-soon-en {
    font-size: 2rem;
  }
}
.p-kakuuchi__coming-soon-desc {
  font-size: 0.9375rem;
  color: #6a5d37;
}
.p-kakuuchi__navigator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .p-kakuuchi__navigator {
    flex-direction: column;
    gap: 48px;
  }
}
.p-kakuuchi__nav-text {
  flex: 1;
  order: 1;
}
@media (max-width: 1024px) {
  .p-kakuuchi__nav-text {
    order: 2;
  }
}
.p-kakuuchi__nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(3, 110, 184, 0.3);
  border-radius: 9999px;
}
.p-kakuuchi__nav-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #036EB8;
  border-radius: 50%;
}
.p-kakuuchi__nav-badge-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #036EB8;
}
.p-kakuuchi__nav-sub {
  margin-bottom: 4px;
  font-size: 0.875rem;
  color: #6a5d37;
}
.p-kakuuchi__nav-name {
  margin-bottom: 32px;
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  .p-kakuuchi__nav-name {
    font-size: 2.25rem;
  }
}
.p-kakuuchi__nav-name {
  font-weight: 700;
  line-height: 1;
  color: #212121;
}
.p-kakuuchi__nav-schedule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 9999px;
}
.p-kakuuchi__nav-photo-wrap {
  flex-shrink: 0;
  order: 2;
}
@media (max-width: 1024px) {
  .p-kakuuchi__nav-photo-wrap {
    order: 1;
  }
}
.p-kakuuchi__nav-photo {
  width: 458px;
}
@media (max-width: 1024px) {
  .p-kakuuchi__nav-photo {
    width: 360px;
  }
}
@media (max-width: 768px) {
  .p-kakuuchi__nav-photo {
    width: 100%;
  }
}
.p-kakuuchi__nav-photo {
  height: 458px;
}
@media (max-width: 1024px) {
  .p-kakuuchi__nav-photo {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .p-kakuuchi__nav-photo {
    height: auto;
  }
}
.p-kakuuchi__nav-photo {
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(106, 93, 55, 0.1);
  animation: navFloat 5s ease-in-out infinite;
}
@media (max-width: 768px) {
  .p-kakuuchi__nav-photo {
    aspect-ratio: 1/1;
    border-radius: 24px;
    animation: none;
  }
}
.p-kakuuchi__marquee {
  padding: 16px 0;
  overflow: hidden;
  background-color: #212121;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-kakuuchi__marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.p-kakuuchi__marquee-text {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 16px;
  padding-left: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #FBC863;
}
.p-kakuuchi__dark {
  background-color: #1a1711;
  padding: 128px 0;
}
@media (max-width: 768px) {
  .p-kakuuchi__dark {
    padding: 96px 0;
  }
}
.p-kakuuchi__dark-inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}
.p-kakuuchi__day {
  margin-bottom: 80px;
}
.p-kakuuchi__day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.p-kakuuchi__day-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #FFFFFF;
}
.p-kakuuchi__day-line {
  flex: 1;
  height: 1px;
  background-color: rgba(3, 110, 184, 0.3);
}
.p-kakuuchi__dj-grid {
  display: grid;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .p-kakuuchi__dj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-kakuuchi__dj-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-kakuuchi__dj-photo {
  width: 220px;
}
@media (max-width: 768px) {
  .p-kakuuchi__dj-photo {
    width: 160px;
  }
}
.p-kakuuchi__dj-photo {
  height: 220px;
}
@media (max-width: 768px) {
  .p-kakuuchi__dj-photo {
    height: 160px;
  }
}
.p-kakuuchi__dj-photo {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 50%;
}
.p-kakuuchi__dj-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}
.p-kakuuchi__dj-name {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.p-kakuuchi__credit {
  padding-top: 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.p-kakuuchi__credit-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.p-access__map {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-access__map {
    margin-bottom: 16px;
  }
}
.p-access__map {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #BDBDBD;
}
.p-access__map iframe {
  display: block;
  width: 100%;
  height: 560px;
}
@media (max-width: 768px) {
  .p-access__map iframe {
    height: 50vh;
  }
}
.p-access__venue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-access__venue-row {
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .p-access__venue-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-access__venue-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-access__venue {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-access__venue {
    font-size: 1.25rem;
  }
}
.p-access__venue {
  font-weight: 700;
  line-height: 1.4;
  color: #1a1711;
}
.p-access__venue-sub {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-access__venue-sub {
    font-size: 0.9375rem;
  }
}
.p-access__venue-sub {
  font-weight: 500;
  color: #6a5d37;
  display: inline;
}
@media (max-width: 768px) {
  .p-access__venue-sub {
    display: block;
  }
}
.p-access__venue-sub {
  margin-left: 8px;
}
@media (max-width: 768px) {
  .p-access__venue-sub {
    margin-left: 0;
  }
}
.p-access__address-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.p-access__address-text {
  font-size: 0.9375rem;
  color: #6a5d37;
}
.p-access__map-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #036EB8;
  background-color: rgba(3, 110, 184, 0.06);
  border: 1px solid rgba(3, 110, 184, 0.2);
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.p-access__map-link:hover {
  background-color: rgba(3, 110, 184, 0.12);
}
.p-access__transit {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.p-access__transit-panel {
  padding: 40px;
}
@media (max-width: 768px) {
  .p-access__transit-panel {
    padding: 32px;
  }
}
.p-access__transit-panel {
  background-color: #FFFFFF;
  border: 1px solid rgba(106, 93, 55, 0.1);
  border-radius: 16px;
}
.p-access__transit-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(106, 93, 55, 0.1);
}
.p-access__transit-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1711;
  line-height: 1.4;
}
.p-access__routes {
  display: flex;
  flex-direction: column;
}
.p-access__route {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(106, 93, 55, 0.08);
}
.p-access__route:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-access__route-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
}
@media (max-width: 768px) {
  .p-access__route-icon {
    width: 48px;
  }
}
.p-access__route-icon {
  height: 64px;
}
@media (max-width: 768px) {
  .p-access__route-icon {
    height: 48px;
  }
}
.p-access__route-icon {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .p-access__route-icon {
    font-size: 1.375rem;
  }
}
.p-access__route-icon {
  color: #036EB8;
  background-color: rgba(3, 110, 184, 0.06);
  border-radius: 50%;
}
.p-access__route-name {
  margin-bottom: 2px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1711;
}
.p-access__route-time {
  font-size: 0.9375rem;
  color: #6a5d37;
}
.p-access__route-time span {
  margin-left: 4px;
  font-weight: 700;
  color: #036EB8;
}
.p-access__transit-map {
  margin-top: 24px;
  padding: 48px;
}
@media (max-width: 768px) {
  .p-access__transit-map {
    padding: 24px;
  }
}
.p-access__transit-map {
  background-color: #FFFFFF;
  border-radius: 16px;
}
.p-access__transit-map img {
  display: block;
  width: 100%;
  height: auto;
}
.p-access__transit-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: #6a5d37;
}

.p-sponsor {
  padding: 128px 0;
}
@media (max-width: 768px) {
  .p-sponsor {
    padding: 96px 0;
  }
}
.p-sponsor {
  background-color: #fcf9f3;
}
.p-sponsor__inner {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}
.p-sponsor__category {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-sponsor__category {
    margin-bottom: 64px;
  }
}
.p-sponsor__category-label {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #6a5d37;
}
.p-sponsor__category-label::before, .p-sponsor__category-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(106, 93, 55, 0.25);
}
.p-sponsor__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
@media (max-width: 768px) {
  .p-sponsor__logos {
    gap: 32px;
  }
}
.p-sponsor__logo-link {
  transition: all 0.3s ease;
}
.p-sponsor__logo-link:hover {
  opacity: 0.7;
}
.p-sponsor__logo-img--fmyokohama {
  height: 48px;
}
.p-sponsor__logo-img--zipfm {
  height: 40px;
}
.p-sponsor__logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1711;
}

.p-osake-detail {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .p-osake-detail {
    gap: 32px;
  }
}
.p-osake-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #212121;
  transition: all 0.3s ease;
}
.p-osake-detail__back:hover {
  color: #036EB8;
}
.p-osake-detail__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-osake-detail__tab {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  color: #6a5d37;
  background-color: rgba(106, 93, 55, 0.05);
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.p-osake-detail__tab:hover {
  background-color: rgba(3, 110, 184, 0.08);
  color: #036EB8;
}
.p-osake-detail__tab--active {
  color: #FFFFFF;
  background-color: #036EB8;
}
.p-osake-detail__tab--active:hover {
  color: #FFFFFF;
  background-color: #036EB8;
}
.p-osake-detail__tab-new {
  padding: 2px 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #ffa11e;
  border-radius: 9999px;
}
.p-osake-detail__hero {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 64px;
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0px 20px 40px rgba(46, 46, 46, 0.05);
}
@media (max-width: 1024px) {
  .p-osake-detail__hero {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .p-osake-detail__hero {
    gap: 24px;
    padding: 24px;
  }
}
.p-osake-detail__hero-logo {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 240px;
}
@media (max-width: 768px) {
  .p-osake-detail__hero-logo {
    width: 180px;
  }
}
.p-osake-detail__hero-logo {
  height: 240px;
}
@media (max-width: 768px) {
  .p-osake-detail__hero-logo {
    height: 180px;
  }
}
.p-osake-detail__hero-logo {
  padding: 28px;
}
@media (max-width: 768px) {
  .p-osake-detail__hero-logo {
    padding: 20px;
  }
}
.p-osake-detail__hero-logo {
  overflow: hidden;
}
.p-osake-detail__hero-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .p-osake-detail__hero-logo {
    align-self: center;
  }
}
.p-osake-detail__badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #ffa11e;
  border-radius: 9999px;
}
.p-osake-detail__hero-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}
.p-osake-detail__hero-id {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #036EB8;
  border-radius: 4px;
}
.p-osake-detail__hero-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6a5d37;
}
.p-osake-detail__hero-name {
  margin-bottom: 16px;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .p-osake-detail__hero-name {
    font-size: 1.875rem;
  }
}
.p-osake-detail__hero-name {
  font-weight: 700;
  letter-spacing: 0;
  color: #212121;
}
.p-osake-detail__hero-desc {
  max-width: 672px;
  margin-bottom: 24px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-osake-detail__hero-desc {
    font-size: 0.9375rem;
  }
}
.p-osake-detail__hero-desc {
  line-height: 1.6;
  color: rgba(33, 33, 33, 0.8);
}
.p-osake-detail__hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #036EB8;
  transition: all 0.3s ease;
}
.p-osake-detail__hero-link:hover {
  color: #212121;
}
.p-osake-detail__section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -24px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-osake-detail__section-title {
    font-size: 1.25rem;
  }
}
.p-osake-detail__section-title {
  font-weight: 700;
  color: #212121;
}
.p-osake-detail__section-title i {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .p-osake-detail__section-title i {
    font-size: 1.5rem;
  }
}
.p-osake-detail__section-title i {
  color: #036EB8;
}
.p-osake-detail__sake-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .p-osake-detail__sake-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-osake-detail__sake-grid {
    grid-template-columns: 1fr;
  }
}
.p-osake-detail__sake-grid {
  gap: 32px;
}
@media (max-width: 768px) {
  .p-osake-detail__sake-grid {
    gap: 24px;
  }
}
.p-osake-detail__sake-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid rgba(106, 93, 55, 0.2);
  border-radius: 8px;
}
.p-osake-detail__sake-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.p-osake-detail__sake-id {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #036EB8;
  border-radius: 4px;
}
.p-osake-detail__sake-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
.p-osake-detail__sake-specs {
  margin-bottom: 16px;
}
.p-osake-detail__sake-desc {
  flex-grow: 1;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(33, 33, 33, 0.75);
}
.p-osake-detail__sake-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}
.p-osake-detail__sake-shin-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FBC863, #d9a840);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(251, 200, 99, 0.2);
}
.p-osake-detail__sake-coin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 1.125rem;
  color: #036EB8;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 9999px;
}
.p-osake-detail__sake-coin-num {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #212121;
}
.p-osake-detail__sake-coin-unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6a5d37;
}
.p-osake-detail__sake-sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #036EB8;
  background-color: rgba(3, 110, 184, 0.08);
  border-radius: 9999px;
}
.p-osake-detail__sake-sale-badge--none {
  color: #BDBDBD;
  background-color: #F5F5F5;
}
.p-osake-detail__others {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px;
}
@media (max-width: 768px) {
  .p-osake-detail__others {
    padding-top: 40px;
  }
}
.p-osake-detail__others {
  border-top: 1px solid rgba(106, 93, 55, 0.1);
}
.p-osake-detail__others-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-osake-detail__others-title {
    font-size: 1.25rem;
  }
}
.p-osake-detail__others-title {
  font-weight: 700;
  color: #212121;
}
.p-osake-detail__others-title i {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .p-osake-detail__others-title i {
    font-size: 1.5rem;
  }
}
.p-osake-detail__others-title i {
  color: #036EB8;
}
.p-osake-detail__others-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .p-osake-detail__others-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-osake-detail__others-grid {
    grid-template-columns: 1fr;
  }
}
.p-osake-detail__mini-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.p-osake-detail__mini-card:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.p-osake-detail__mini-card--active {
  background-color: rgba(3, 110, 184, 0.06);
  border: 1px solid #036EB8;
  cursor: default;
}
.p-osake-detail__mini-card--active:hover {
  background-color: rgba(3, 110, 184, 0.06);
}
.p-osake-detail__mini-logo {
  flex-shrink: 0;
  width: 64px;
}
@media (max-width: 768px) {
  .p-osake-detail__mini-logo {
    width: 56px;
  }
}
.p-osake-detail__mini-logo {
  height: 64px;
}
@media (max-width: 768px) {
  .p-osake-detail__mini-logo {
    height: 56px;
  }
}
.p-osake-detail__mini-logo {
  padding: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 4px;
}
.p-osake-detail__mini-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-osake-detail__mini-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #ffa11e;
  border-radius: 9999px;
}
.p-osake-detail__mini-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 8px;
}
.p-osake-detail__mini-id {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #036EB8;
}
.p-osake-detail__mini-location {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.75rem;
  color: #6a5d37;
}
.p-osake-detail__mini-name {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #212121;
}
.p-osake-detail__mini-brand {
  width: 100%;
  font-size: 0.75rem;
  color: #6a5d37;
}

.u-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.u-text-glow {
  text-shadow: 0 4px 32px rgba(252, 249, 243, 0.9), 0 2px 8px rgba(252, 249, 243, 0.6);
}

.u-text-gradient-accent {
  background: linear-gradient(135deg, #036EB8 0%, #003b65 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.u-note-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-hidden {
  display: none;
}

.u-pc-only {
  display: block;
}
@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

.u-hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.u-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.u-fade-in-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.u-fade-in-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.u-animate-fade-up {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.u-hero-fadein {
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.u-hero-fadein:nth-child(1) {
  animation-delay: 0.5s;
}
.u-hero-fadein:nth-child(2) {
  animation-delay: 0.7s;
}
.u-hero-fadein:nth-child(3) {
  animation-delay: 0.9s;
}
.u-hero-fadein:nth-child(4) {
  animation-delay: 1.1s;
}

.u-fixed-actions {
  position: fixed;
  right: 48px;
  bottom: 48px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .u-fixed-actions {
    right: 20px;
    bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */