*,
*::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;
}

:root,
.theme-aichi {
  --theme-primary: #eb6112;
  --theme-primary-dark: #b8480a;
  --theme-secondary: #f5852f;
  --theme-secondary-dark: #d9530a;
}

.theme-gifu {
  --theme-primary: #579b2b;
  --theme-primary-dark: #3f7a1c;
  --theme-secondary: #7ab648;
  --theme-secondary-dark: #4a8520;
}

body {
  font-family: "YakuHanJPs", "hiragino-kaku-gothic-pron", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  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;
  overflow-x: clip;
}

::selection {
  color: #FFFFFF;
  background-color: var(--theme-primary);
}

img {
  height: auto;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    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 leafFall {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    transform: translateY(116svh);
    opacity: 0;
  }
}
@keyframes leafSwayX {
  from {
    transform: translateX(-16px) rotate(-42deg);
  }
  to {
    transform: translateX(16px) rotate(48deg);
  }
}
@keyframes blobWobble {
  0%, 100% {
    border-radius: 52% 48% 55% 45%/48% 54% 46% 52%;
  }
  33% {
    border-radius: 46% 54% 48% 52%/55% 45% 53% 47%;
  }
  66% {
    border-radius: 54% 46% 52% 48%/46% 55% 45% 54%;
  }
}
@keyframes leafShadowSway {
  0%, 100% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  28% {
    transform: rotate(0.7deg) translate(0.5%, 0.4%) scale(1.012);
  }
  55% {
    transform: rotate(-0.5deg) translate(-0.4%, 0.6%) scale(1.004);
  }
  80% {
    transform: rotate(0.3deg) translate(0.3%, -0.2%) scale(1.016);
  }
}
@keyframes leafShadowFocusNear {
  0%, 100% {
    opacity: 0.8;
  }
  28% {
    opacity: 0.5;
  }
  55% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.45;
  }
}
@keyframes leafShadowFocusFar {
  0%, 100% {
    opacity: 0.2;
  }
  28% {
    opacity: 0.5;
  }
  55% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.55;
  }
}
@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);
  }
}
.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: height 0.4s ease, background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
@media (max-width: 767px) {
  .l-header {
    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 .l-header__lang-btn {
    color: #1a1711;
  }
  .l-header .l-header__lang-btn:hover {
    color: var(--theme-primary);
  }
  .l-header .l-header__lang-btn--active {
    border-bottom-color: var(--theme-primary);
  }
  .l-header .l-header__lang-sep {
    color: #6a5d37;
  }
  .l-header .l-header__menu-btn {
    background: rgba(106, 93, 55, 0.05);
  }
  .l-header .l-header__menu-btn:hover {
    background: rgb(from var(--theme-primary) r g b/0.08);
  }
  .l-header .l-header__menu-btn:hover .l-header__menu-label, .l-header .l-header__menu-btn:hover .l-header__menu-icon {
    color: var(--theme-primary);
  }
  .l-header .l-header__menu-label,
  .l-header .l-header__menu-icon {
    color: #1a1711;
  }
}
.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.is-scrolled .l-header__logo-img--scrolled {
  display: block;
}
.l-header.is-scrolled .l-header__divider {
  background: rgba(106, 93, 55, 0.2);
}
.l-header.is-scrolled .l-header__sns-link {
  color: #6a5d37;
}
.l-header.is-scrolled .l-header__sns-link:hover {
  color: var(--theme-primary);
}
.l-header.is-scrolled .l-header__lang-btn {
  color: #1a1711;
}
.l-header.is-scrolled .l-header__lang-btn:hover {
  color: var(--theme-primary);
}
.l-header.is-scrolled .l-header__lang-btn--active {
  border-bottom-color: var(--theme-primary);
}
.l-header.is-scrolled .l-header__lang-sep {
  color: #6a5d37;
}
.l-header.is-scrolled .l-header__menu-btn {
  background: rgba(106, 93, 55, 0.05);
}
.l-header.is-scrolled .l-header__menu-btn:hover {
  background: rgb(from var(--theme-primary) r g b/0.08);
}
.l-header.is-scrolled .l-header__menu-btn:hover .l-header__menu-label, .l-header.is-scrolled .l-header__menu-btn:hover .l-header__menu-icon {
  color: var(--theme-primary);
}
.l-header.is-scrolled .l-header__menu-label,
.l-header.is-scrolled .l-header__menu-icon {
  color: #1a1711;
}
.l-header--light:not(.is-scrolled) {
  height: 112px;
}
@media (max-width: 768px) {
  .l-header--light:not(.is-scrolled) {
    height: 64px;
  }
}
.l-header--light:not(.is-scrolled) .l-header__logo-img--scrolled {
  display: block;
  height: 72px;
}
@media (max-width: 768px) {
  .l-header--light:not(.is-scrolled) .l-header__logo-img--scrolled {
    height: 34px;
  }
}
.l-header--light:not(.is-scrolled) .l-header__divider {
  background: rgba(106, 93, 55, 0.2);
}
.l-header--light:not(.is-scrolled) .l-header__sns-link {
  color: #6a5d37;
}
.l-header--light:not(.is-scrolled) .l-header__sns-link:hover {
  color: var(--theme-primary);
}
.l-header--light:not(.is-scrolled) .l-header__lang-btn {
  color: #1a1711;
}
.l-header--light:not(.is-scrolled) .l-header__lang-btn:hover {
  color: var(--theme-primary);
}
.l-header--light:not(.is-scrolled) .l-header__lang-btn--active {
  border-bottom-color: var(--theme-primary);
}
.l-header--light:not(.is-scrolled) .l-header__lang-sep {
  color: #6a5d37;
}
.l-header--light:not(.is-scrolled) .l-header__menu-btn {
  background: rgba(106, 93, 55, 0.05);
}
.l-header--light:not(.is-scrolled) .l-header__menu-btn:hover {
  background: rgb(from var(--theme-primary) r g b/0.08);
}
.l-header--light:not(.is-scrolled) .l-header__menu-btn:hover .l-header__menu-label, .l-header--light:not(.is-scrolled) .l-header__menu-btn:hover .l-header__menu-icon {
  color: var(--theme-primary);
}
.l-header--light:not(.is-scrolled) .l-header__menu-label,
.l-header--light:not(.is-scrolled) .l-header__menu-icon {
  color: #1a1711;
}
.l-header__left {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.l-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__logo-img {
  width: auto;
  height: 48px;
}
@media (max-width: 768px) {
  .l-header__logo-img {
    height: 40px;
  }
}
.l-header__logo-img {
  transition: height 0.4s ease;
}
.l-header__logo-img--scrolled {
  display: none;
}
.l-header__divider {
  display: none;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.4s ease;
}
@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__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: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.l-header__sns-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.l-header__lang {
  display: flex;
}
@media (max-width: 576px) {
  .l-header__lang {
    display: none;
  }
}
.l-header__lang {
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.l-header__lang-btn {
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.l-header__lang-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}
.l-header__lang-btn--active {
  padding-bottom: 2px;
  border-bottom: 2px solid #FFFFFF;
}
.l-header__lang-sep {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
}
.l-header__menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.l-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.l-header__menu-btn:hover .l-header__menu-label, .l-header__menu-btn:hover .l-header__menu-icon {
  color: #FFFFFF;
}
.l-header__menu-label {
  display: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  transition: color all 0.3s ease;
}
@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: 1.5rem;
  line-height: 1;
  color: #FFFFFF;
  transition: color all 0.3s ease;
}

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: 150;
  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: 160;
  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: flex-end;
  gap: 8px;
  padding: 20px 40px;
}
@media (max-width: 768px) {
  .l-menu__header {
    padding: 12px 24px;
  }
}
.l-menu__header {
  margin-bottom: 20px;
}
.l-menu__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l-menu__lang {
  display: none;
}
@media (max-width: 768px) {
  .l-menu__lang {
    display: flex;
  }
}
.l-menu__lang {
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.l-menu__lang-btn {
  color: #1a1711;
  transition: all 0.3s ease;
}
.l-menu__lang-btn:hover {
  color: var(--theme-primary);
}
.l-menu__lang-btn--active {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--theme-primary);
}
.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 {
  background: rgb(from var(--theme-primary) r g b/0.08);
}
.l-menu__close:hover .l-menu__close-label, .l-menu__close:hover .l-menu__close-icon {
  color: var(--theme-primary);
}
.l-menu__close-label {
  display: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a1711;
  transition: color all 0.3s ease;
}
@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: 1.5rem;
  line-height: 1;
  color: #1a1711;
  transition: color all 0.3s ease;
}
.l-menu__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 40px 40px;
}
@media (max-width: 768px) {
  .l-menu__body {
    padding: 0 24px 40px;
  }
}
.l-menu__nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.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: var(--theme-secondary);
}
.l-menu__nav-link:hover .l-menu__nav-ja {
  color: var(--theme-primary);
}
.l-menu__nav-en {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-primary);
  transition: all 0.3s ease;
}
.l-menu__nav-ja {
  font-family: "YakuHanJPs", "hiragino-kaku-gothic-pron", "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  .l-menu__nav-ja {
    font-size: 1rem;
  }
}
.l-menu__nav-ja {
  font-weight: 700;
  color: #1a1711;
  transition: all 0.3s ease;
}
.l-menu__notice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.7);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-menu__notice-link:hover {
  color: var(--theme-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.l-menu__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px 40px;
}
@media (max-width: 576px) {
  .l-menu__app-download {
    padding: 24px 16px;
  }
}
.l-menu__app-download {
  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;
  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: 4px;
  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: 0 40px 48px;
}
@media (max-width: 768px) {
  .l-menu__footer {
    padding: 0 24px 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__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: var(--theme-primary);
}
.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", "hiragino-kaku-gothic-pron", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1711;
}

.l-footer {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .l-footer {
    padding-top: 48px;
  }
}
.l-footer {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .l-footer {
    padding-bottom: 48px;
  }
}
.l-footer {
  background: #F7F7F7;
}
.l-footer__inner {
  max-width: 1208px;
  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 {
  width: auto;
  height: 210px;
}
@media (max-width: 768px) {
  .l-footer__logo-img {
    height: 168px;
  }
}
.l-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.l-footer__social .c-social-icon {
  color: rgba(33, 33, 33, 0.65);
  border-color: rgba(33, 33, 33, 0.25);
}
.l-footer__social .c-social-icon:hover {
  color: #212121;
  border-color: rgba(33, 33, 33, 0.45);
}
.l-footer__notice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.7);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-footer__notice-link:hover {
  color: var(--theme-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.l-copyright {
  padding: 18px 24px;
  text-align: center;
  background: var(--theme-primary);
}
.l-copyright__text {
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.l-section {
  position: relative;
  width: 100%;
  padding-block: 128px;
}
@media (max-width: 768px) {
  .l-section {
    padding-block: 80px;
  }
}
.l-section--summary {
  padding-block: 96px;
  background-color: #f5f0e8;
}
.l-section--guide {
  padding-block: 128px;
}
@media (max-width: 768px) {
  .l-section--guide {
    padding-block: 96px;
  }
}
.l-section--guide {
  overflow: clip;
}
.l-section--guide > .l-inner {
  position: relative;
  z-index: 1;
}
.l-section__momiji {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}
.l-section__momiji::before, .l-section__momiji::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  animation: leafShadowSway 9s ease-in-out infinite, leafShadowFocusNear 9s ease-in-out infinite;
}
.l-section__momiji::before {
  filter: blur(3px);
}
.l-section__momiji::after {
  filter: blur(12px);
  animation-name: leafShadowSway, leafShadowFocusFar;
}
.l-section__momiji--top {
  top: -24px;
  right: -24px;
  width: min(800px, 64vw);
  aspect-ratio: 609/365;
}
.l-section__momiji--top::before, .l-section__momiji--top::after {
  background-image: url("../images/common/image-momiji-bg-top.svg?v=20260714-2233");
  background-position: top right;
}
.l-section__momiji--bottom {
  bottom: -24px;
  left: -24px;
  width: min(740px, 59vw);
  aspect-ratio: 561/290;
}
.l-section__momiji--bottom::before, .l-section__momiji--bottom::after {
  background-image: url("../images/common/image-momiji-bg-bottom.svg?v=20260714-2233");
  background-position: bottom left;
  animation-delay: -3.5s;
}
@media (max-width: 768px) {
  .l-section__momiji {
    opacity: 0.12;
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-section__momiji::before, .l-section__momiji::after {
    animation: none;
  }
}
.l-section--ticket {
  padding-block: 128px;
}
@media (max-width: 1024px) {
  .l-section--ticket {
    padding-block: 80px;
  }
}
.l-section--ticket {
  overflow: clip;
  background-color: #f5f0e8;
}
.l-section--sakagura {
  padding-block: 160px;
}
@media (max-width: 1024px) {
  .l-section--sakagura {
    padding-block: 128px;
  }
}
@media (max-width: 768px) {
  .l-section--sakagura {
    padding-block: 96px;
  }
}
.l-section--sakagura {
  overflow: clip;
}
.l-section--sakagura::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(194, 161, 70, 0.09);
  mask: url("../images/common/pattern-shippo-mask.svg?v=20260714-2233") repeat left top/56px 56px;
  -webkit-mask: url("../images/common/pattern-shippo-mask.svg?v=20260714-2233") repeat left top/56px 56px;
}
.theme-gifu .l-section--sakagura::before {
  mask-image: url("../images/common/pattern-asanoha-mask.svg?v=20260714-2233");
  -webkit-mask-image: url("../images/common/pattern-asanoha-mask.svg?v=20260714-2233");
  mask-size: 64px auto;
  -webkit-mask-size: 64px auto;
}
.l-section--sakagura > .l-inner {
  position: relative;
  z-index: 1;
}
.l-section--otsumami {
  background-color: #f5f0e8;
}
.l-section--kakuuchi {
  padding-block: 160px;
}
@media (max-width: 1024px) {
  .l-section--kakuuchi {
    padding-block: 128px;
  }
}
@media (max-width: 768px) {
  .l-section--kakuuchi {
    padding-block: 96px;
  }
}
.l-section--kakuuchi {
  color: #FFFFFF;
  background-color: #1b1f28;
  background-image: radial-gradient(140% 120% at 50% 0%, rgb(from var(--theme-primary) r g b/0.16), transparent 100%), radial-gradient(100% 90% at 100% 100%, rgb(from var(--theme-primary) r g b/0.08), transparent 100%), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 14px);
}
.l-section--faq {
  padding-block: 128px;
}
@media (max-width: 768px) {
  .l-section--faq {
    padding-block: 80px;
  }
}
.l-section--access {
  padding-block: 144px;
}
@media (max-width: 768px) {
  .l-section--access {
    padding-block: 112px;
  }
}
.l-section--access {
  background-color: #f5f0e8;
}

.l-inner {
  max-width: 1208px;
  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: 1128px;
  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;
  scroll-margin-top: 128px;
}
@media (max-width: 768px) {
  .c-section-heading {
    scroll-margin-top: 96px;
  }
}
.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: 1rem;
  }
}
.c-section-heading__en {
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--theme-primary);
}
.c-section-heading__en--decorated {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.3em;
}
.c-section-heading__en--decorated::before, .c-section-heading__en--decorated::after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: rgb(from var(--theme-primary) r g b/0.5);
}
.c-section-heading__label {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .c-section-heading__label {
    font-size: 2rem;
  }
}
.c-section-heading__label {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #212121;
}
.c-section-heading--invert .c-section-heading__label {
  color: #FFFFFF;
}

.c-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;
}
.c-coming-soon__en {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .c-coming-soon__en {
    font-size: 1.75rem;
  }
}
.c-coming-soon__en {
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(106, 93, 55, 0.15);
}
.c-coming-soon__desc {
  font-size: 0.9375rem;
  text-align: center;
  color: #6a5d37;
}
.c-coming-soon--invert {
  border-color: rgba(255, 255, 255, 0.25);
}
.c-coming-soon--invert .c-coming-soon__en {
  color: rgba(255, 255, 255, 0.18);
}
.c-coming-soon--invert .c-coming-soon__desc {
  color: rgba(255, 255, 255, 0.8);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  font-family: "YakuHanJPs", "hiragino-kaku-gothic-pron", "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;
}
@media (max-width: 1024px) {
  .c-btn--cta {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .c-btn--cta {
    width: 250px;
  }
}
.c-btn--cta {
  height: 74px;
}
@media (max-width: 768px) {
  .c-btn--cta {
    height: 48px;
  }
}
.c-btn--cta {
  overflow: hidden;
  font-size: 1.375rem;
}
@media (max-width: 1024px) {
  .c-btn--cta {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .c-btn--cta {
    font-size: 0.875rem;
  }
}
.c-btn--cta {
  color: #FFFFFF;
  background-color: var(--theme-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgb(from var(--theme-primary) r g b/0.3);
}
.c-btn--cta:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn--cta:hover .c-btn__arrow {
  transform: translateX(4px);
}
.c-btn__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: var(--theme-primary-dark);
  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;
  content: "";
  background-color: var(--theme-primary-dark);
  mask: 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='%23000'/%3E%3C/svg%3E") no-repeat bottom center;
  mask-size: 100% 100%;
}
.c-btn__text {
  position: relative;
  z-index: 10;
  padding-left: 32px;
}
@media (max-width: 768px) {
  .c-btn__text {
    padding-left: 20px;
  }
}
.c-btn__text {
  pointer-events: none;
}
.c-btn__icon-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
}
@media (max-width: 768px) {
  .c-btn__icon-wrap {
    width: 48px;
  }
}
.c-btn__icon-wrap {
  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;
}
@media (max-width: 768px) {
  .c-btn--floating {
    height: 44px;
  }
}
.c-btn--floating {
  padding-right: 24px;
}
@media (max-width: 768px) {
  .c-btn--floating {
    padding-right: 16px;
  }
}
.c-btn--floating {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .c-btn--floating {
    padding-left: 16px;
  }
}
.c-btn--floating {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .c-btn--floating {
    font-size: 0.8125rem;
  }
}
.c-btn--floating {
  color: #FFFFFF;
  background-color: var(--theme-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgb(from var(--theme-primary) r g b/0.3);
  overflow: hidden;
  visibility: hidden;
  transform: translateY(calc(100% + 72px));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.5s;
  pointer-events: none;
}
.c-btn--floating:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn--floating.is-visible {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}
.c-btn__floating-icon, .c-btn__floating-text, .c-btn__ticket-text {
  position: relative;
  z-index: 1;
}
.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: var(--theme-secondary);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgb(from var(--theme-secondary) r g b/0.35);
}
.c-btn--ticket-provider .c-btn__overlay {
  background-color: var(--theme-secondary-dark);
}
.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: var(--theme-primary);
  border-radius: 4px;
  box-shadow: 0 8px 24px -6px rgb(from var(--theme-primary) r g b/0.3);
}
.c-btn--ticket-app:hover .c-btn__overlay {
  transform: translateY(0);
}
.c-btn__ticket-text--with-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.c-btn__ticket-logo {
  width: auto;
  height: 36px;
  padding: 6px 9px;
  background-color: #FFFFFF;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .c-btn__ticket-logo {
    height: 32px;
  }
}

.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .c-accordion {
    gap: 8px;
  }
}
.c-accordion__item {
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(106, 93, 55, 0.4);
}
.c-accordion__trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 24px;
  text-align: left;
  cursor: pointer;
}
.c-accordion__trigger::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}
.c-accordion__trigger:hover::before {
  background-color: #f5f0e8;
}
.theme-gifu .c-accordion__trigger:hover::before {
  background-color: rgb(from var(--theme-secondary) r g b/0.14);
}
.c-accordion__trigger > * {
  position: relative;
}
.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: var(--theme-primary);
  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;
  transition: transform 0.3s ease;
}
.c-accordion__toggle-icon::before, .c-accordion__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--theme-primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.c-accordion__toggle-icon::before {
  width: 14px;
  height: 2px;
}
.c-accordion__toggle-icon::after {
  width: 2px;
  height: 14px;
}
.c-accordion__trigger:hover .c-accordion__toggle-icon {
  transform: scale(1.1);
}
.c-accordion__item.is-open .c-accordion__toggle-icon {
  transform: rotate(45deg);
}
.c-accordion__item.is-open .c-accordion__trigger:hover .c-accordion__toggle-icon {
  transform: rotate(45deg) scale(1.1);
}
.c-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-accordion__item.is-open .c-accordion__body {
  grid-template-rows: 1fr;
}
.c-accordion__answer-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 16px;
  row-gap: 8px;
  min-height: 0;
  margin-bottom: 24px;
  padding: 0 24px;
  overflow: hidden;
  transition: margin-bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.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: #6a5d37;
  background-color: rgba(251, 200, 99, 0.35);
  border-radius: 50%;
}
.theme-gifu .c-accordion__a-badge {
  color: var(--theme-primary-dark);
  background-color: rgb(from var(--theme-secondary) r g b/0.3);
}
.c-accordion__answer {
  grid-column: 2;
  font-size: 1rem;
  line-height: 1.8;
  color: #212121;
}

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

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.c-modal.is-open .c-modal__content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.c-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  border: none;
  cursor: zoom-out;
}
.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(90vw, 480px);
  max-height: 90vh;
  padding: 24px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: #FFFFFF;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.c-modal__image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}
.c-modal__caption {
  font-size: 0.875rem;
  color: #FFFFFF;
  text-align: center;
}

.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%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.15) translateX(4%);
  will-change: transform, opacity;
}

.p-hero-circle {
  position: relative;
  background-color: #FFFFFF;
}
.p-hero-circle__stage {
  position: sticky;
  top: 0;
  overflow: clip;
  height: 100svh;
  background-color: #FFFFFF;
  transition: background-color 0.4s ease;
}
.p-hero-circle__stage.is-expanded {
  background-color: #1a1711;
}
.p-hero-circle__spacer {
  height: 40svh;
}
.p-hero-circle__join {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 166px;
  pointer-events: none;
  background-color: #f5f0e8;
  mask: url("../images/common/pattern-join-halftone.svg?v=20260714-2233") repeat-x left top/auto 100%;
  -webkit-mask: url("../images/common/pattern-join-halftone.svg?v=20260714-2233") repeat-x left top/auto 100%;
}
@media (max-width: 768px) {
  .p-hero-circle__join {
    height: 100px;
  }
}
.p-hero-circle__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
  background-color: rgba(26, 23, 17, 0.65);
  opacity: var(--hero-overlay, 0);
}
.p-hero-circle .u-hero-fadein.is-entered {
  animation: none;
  opacity: var(--hero-fade, 1);
}
.p-hero-circle__pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(194, 161, 70, 0.09);
  mask: url("../images/common/pattern-shippo-mask.svg?v=20260714-2233") repeat left top/56px 56px;
  -webkit-mask: url("../images/common/pattern-shippo-mask.svg?v=20260714-2233") repeat left top/56px 56px;
  opacity: var(--hero-fade, 1);
}
.theme-gifu .p-hero-circle__pattern {
  mask-image: url("../images/common/pattern-asanoha-mask.svg?v=20260714-2233");
  -webkit-mask-image: url("../images/common/pattern-asanoha-mask.svg?v=20260714-2233");
  mask-size: 64px auto;
  -webkit-mask-size: 64px auto;
}
.p-hero-circle__leaves {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  opacity: var(--hero-fade, 1);
}
.p-hero-circle__leaf {
  position: absolute;
  top: -8svh;
  left: var(--x, 50%);
  width: var(--size, 20px);
  height: var(--size, 20px);
  animation: leafFall var(--dur, 13s) linear var(--delay, 0s) infinite;
}
@media (max-width: 768px) {
  .p-hero-circle__leaf {
    width: calc(var(--size, 20px) * 0.72);
    height: calc(var(--size, 20px) * 0.72);
  }
}
.p-hero-circle__leaf::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(198, 91, 46, 0.6);
  mask: url("../images/common/image-leaf-momiji.svg?v=20260714-2233") no-repeat center/contain;
  -webkit-mask: url("../images/common/image-leaf-momiji.svg?v=20260714-2233") no-repeat center/contain;
  animation: leafSwayX calc(var(--dur, 13s) / 3.2) ease-in-out infinite alternate;
}
.p-hero-circle__leaf:nth-child(4n+3)::before {
  background-color: rgba(183, 40, 46, 0.55);
}
.p-hero-circle__leaf:nth-child(even)::before {
  background-color: rgba(217, 166, 46, 0.65);
  mask-image: url("../images/common/image-leaf-icho.svg?v=20260714-2233");
  -webkit-mask-image: url("../images/common/image-leaf-icho.svg?v=20260714-2233");
}
.p-hero-circle__leaf:nth-child(4n)::before {
  background-color: rgba(194, 161, 70, 0.6);
}
@media (prefers-reduced-motion: reduce) {
  .p-hero-circle__leaf {
    display: none;
  }
}
.p-hero-circle__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.p-hero-circle__window {
  position: absolute;
  top: calc(50% + var(--hero-win-oy, 0px));
  left: calc(50% + var(--hero-win-ox, 0px));
  width: var(--hero-win-d, clamp(340px, 42vw, 700px));
  height: var(--hero-win-d, clamp(340px, 42vw, 700px));
  overflow: hidden;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: width, height;
  animation: blobWobble 9s ease-in-out infinite;
}
@media (max-width: 768px) {
  .p-hero-circle__window {
    top: calc(50% + var(--hero-win-oy, -8svh));
    left: calc(50% + var(--hero-win-ox, -12vw));
    width: var(--hero-win-d, min(70vw, 38svh));
    height: var(--hero-win-d, min(70vw, 38svh));
  }
}
.p-hero-circle__window .p-hero__bg {
  inset: auto;
  top: 50%;
  left: 50%;
  width: var(--hero-img-w, calc(clamp(340px, 42vw, 700px) * 1.5));
  height: var(--hero-img-h, clamp(340px, 42vw, 700px));
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .p-hero-circle__window .p-hero__bg {
    width: var(--hero-img-w, calc(min(70vw, 38svh) * 1.5));
    height: var(--hero-img-h, min(70vw, 38svh));
  }
}
.p-hero-circle__window .p-hero__bg-img {
  transform: scale(1.04) translateX(1.5%);
}
.p-hero-circle__catch-wrap {
  position: absolute;
  top: 128px;
  right: clamp(48px, 6vw, 112px);
  z-index: 2;
  display: flex;
  gap: 24px;
  opacity: var(--hero-fade, 1);
}
@media (max-width: 1024px) {
  .p-hero-circle__catch-wrap {
    right: 32px;
  }
}
@media (max-width: 768px) {
  .p-hero-circle__catch-wrap {
    top: 96px;
    right: 16px;
    gap: 12px;
  }
}
.p-hero-circle__catch {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .p-hero-circle__catch {
    font-size: 1.625rem;
  }
}
@media (max-width: 768px) {
  .p-hero-circle__catch {
    font-size: 1.125rem;
  }
}
.p-hero-circle__catch {
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  color: #212121;
  text-shadow: 0 0 6px white, 0 0 16px rgba(255, 255, 255, 0.95), 0 0 36px rgba(255, 255, 255, 0.75);
}
.p-hero-circle__catch-line {
  display: block;
}
.p-hero-circle__catch-num {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  font-feature-settings: "tnum" 1;
  position: relative;
  top: -3px;
  left: -2px;
}
.p-hero-circle__stamp {
  align-self: flex-start;
  padding: 12px 9px;
  font-family: "YakuHanJPs", "hiragino-kaku-gothic-pron", "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  color: #FFFFFF;
  background-color: var(--theme-primary);
  border-radius: 3px;
}
@media (max-width: 768px) {
  .p-hero-circle__stamp {
    padding: 9px 7px;
    font-size: 0.75rem;
  }
}
.p-hero-circle__info {
  position: absolute;
  bottom: max(15svh, 120px);
  left: clamp(48px, 6vw, 112px);
  z-index: 2;
  opacity: var(--hero-fade, 1);
}
@media (max-width: 1024px) {
  .p-hero-circle__info {
    left: 32px;
  }
}
@media (max-width: 768px) {
  .p-hero-circle__info {
    bottom: 20px;
    left: 40px;
  }
}
.p-hero-circle__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  color: #212121;
  text-shadow: 0 0 6px white, 0 0 16px rgba(255, 255, 255, 0.95), 0 0 36px rgba(255, 255, 255, 0.75);
}
.p-hero-circle__date-group {
  display: flex;
  align-items: baseline;
}
.p-hero-circle__date-num {
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .p-hero-circle__date-num {
    font-size: 1.875rem;
  }
}
.p-hero-circle__date-num {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.p-hero-circle .p-hero-circle__date-group:first-child .p-hero-circle__date-num {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-hero-circle .p-hero-circle__date-group:first-child .p-hero-circle__date-num {
    font-size: 1.5rem;
  }
}
.p-hero-circle__date-unit {
  margin-right: 2px;
  margin-left: 1px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-hero-circle__date-unit {
    font-size: 0.875rem;
  }
}
.p-hero-circle__date-unit {
  color: #666666;
}
.p-hero-circle__date-day {
  margin-left: 2px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-hero-circle__date-day {
    font-size: 0.8125rem;
  }
}
.p-hero-circle__date-day {
  font-weight: 600;
  color: #666666;
}
.p-hero-circle__venue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.p-hero-circle__venue-label {
  padding: 2px 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #212121;
  background-color: #FBC863;
  border-radius: 4px;
}
.p-hero-circle__venue-name {
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-hero-circle__venue-name {
    font-size: 0.8125rem;
  }
}
.p-hero-circle__venue-name {
  font-weight: 600;
  color: #212121;
}
.p-hero-circle__cta {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .p-hero-circle__cta {
    margin-top: 14px;
  }
}
.p-hero-circle__headline {
  width: min(400px, 78vw);
  padding-top: 18px;
  margin-top: 26px;
  border-top: 1px solid rgba(106, 93, 55, 0.25);
}
@media (max-width: 768px) {
  .p-hero-circle__headline {
    padding-top: 8px;
    margin-top: 12px;
  }
}
.p-hero-circle__headline-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-hero-circle__headline-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-label {
    font-size: 0.6875rem;
  }
}
.p-hero-circle__headline-label {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-primary);
}
.p-hero-circle__headline-count {
  margin-left: auto;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-count {
    font-size: 0.6875rem;
  }
}
.p-hero-circle__headline-count {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #666666;
}
.p-hero-circle__headline-count-sep {
  margin-inline: 4px;
  opacity: 0.5;
}
.p-hero-circle__headline-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-nav {
    width: 24px;
  }
}
.p-hero-circle__headline-nav {
  height: 30px;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-nav {
    height: 24px;
  }
}
.p-hero-circle__headline-nav {
  color: #6a5d37;
  background: none;
  border: 1px solid rgba(106, 93, 55, 0.35);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.p-hero-circle__headline-nav:hover:not(:disabled) {
  color: #FFFFFF;
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
}
.p-hero-circle__headline-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.p-hero-circle__headline-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 88px;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-track {
    min-height: 0;
    margin-top: 6px;
  }
}
.p-hero-circle__headline-track.is-switching {
  animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.p-hero-circle__headline-item {
  display: none;
  align-items: center;
  gap: 12px;
}
.p-hero-circle__headline-item.is-active {
  display: flex;
}
.p-hero-circle__headline-item:hover .p-hero-circle__headline-title {
  text-decoration: underline;
}
.p-hero-circle__headline-item--nolink {
  cursor: default;
}
.p-hero-circle__headline-item--nolink:hover .p-hero-circle__headline-title {
  text-decoration: none;
}
.p-hero-circle__headline-date {
  flex-shrink: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-date {
    font-size: 0.6875rem;
  }
}
.p-hero-circle__headline-date {
  color: var(--theme-primary);
}
.p-hero-circle__headline-title {
  overflow: hidden;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .p-hero-circle__headline-title {
    font-size: 0.75rem;
  }
}
.p-hero-circle__headline-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #212121;
}
.p-hero-circle__bigtext {
  position: absolute;
  bottom: 8px;
  left: 50%;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 7.2vw, 148px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: transparent;
  background-color: rgb(from var(--theme-primary-dark) r g b/0.16);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-50%);
  opacity: var(--hero-fade, 1);
}
@media (max-width: 768px) {
  .p-hero-circle__bigtext {
    bottom: 12px;
    left: 6px;
    font-size: 1.375rem;
    writing-mode: vertical-rl;
    transform: none;
  }
}
.p-hero-circle__scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  opacity: var(--hero-fade, 1);
}
@media (max-width: 768px) {
  .p-hero-circle__scroll-hint {
    display: none;
  }
}
.p-hero-circle__scroll-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.45);
}
.p-hero-circle__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.p-message {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.p-message--overlay {
  z-index: 2;
  background: none;
}
.p-message--overlay .p-message__float {
  width: 300px;
  height: 300px;
}
.p-message--overlay .p-message__float--1 {
  top: 16px;
  left: 8%;
  width: 360px;
  height: 360px;
}
.p-message--overlay .p-message__float--2 {
  top: 2%;
  right: 12%;
}
.p-message--overlay .p-message__float--3 {
  bottom: 26%;
  left: 13%;
}
.p-message--overlay .p-message__float--4 {
  right: 10%;
  bottom: 22%;
  width: 360px;
  height: 360px;
}
.p-message--overlay .p-message__subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.p-message--overlay .p-message__subtitle::after {
  background-color: rgba(255, 255, 255, 0.4);
}
.p-message--overlay .p-message__text p {
  color: #FFFFFF;
}
.p-message--overlay .p-message__img-wrap img {
  mix-blend-mode: normal;
  filter: none;
}
.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: 96px;
}
@media (max-width: 1024px) {
  .p-message__stage {
    padding-top: 56px;
  }
}
.p-message__stage {
  padding-bottom: 400px;
}
@media (max-width: 1024px) {
  .p-message__stage {
    padding-bottom: 240px;
  }
}
.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;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
}
.p-message__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) sepia(10%);
  mix-blend-mode: multiply;
}
.p-message__img-wrap--circle {
  aspect-ratio: 1;
  width: auto;
  margin-inline: auto;
  border-radius: 50%;
}
.p-message__content {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 640px;
}
.p-message__subtitle {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-message__subtitle {
    font-size: 1.25rem;
  }
}
.p-message__subtitle {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a5d37;
}
.p-message__subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: rgba(106, 93, 55, 0.3);
}
.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;
  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-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: fadeInUp 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: var(--theme-primary);
}
@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: 600;
}
.p-summary__value-sub {
  font-size: 0.8125rem;
  color: #616161;
}
.p-summary__schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-summary__schedule li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 12px;
  row-gap: 2px;
  font-size: 0.9375rem;
}
.p-summary__schedule li > .p-summary__schedule-note {
  grid-column: 2;
}
.p-summary__schedule li:first-child {
  row-gap: 0;
}
.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-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: var(--theme-primary);
}
.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;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  gap: 0 4px;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  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: 840px;
  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: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 0.4s ease-out;
  will-change: transform;
}
.p-divider--end {
  height: 560px;
}
@media (max-width: 768px) {
  .p-divider--end {
    height: 280px;
  }
}
.p-divider--end {
  border-top: 1px solid var(--theme-primary);
}
.p-divider--end .p-divider__img {
  top: 0;
  height: 100%;
  transform: none;
  transition: none;
}

.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__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: #1a1711;
  background-color: rgba(106, 93, 55, 0.05);
  border: 1px solid rgba(106, 93, 55, 0.15);
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.p-access__map-link:hover {
  color: var(--theme-primary);
  background-color: rgb(from var(--theme-primary) r g b/0.08);
}
.p-access__transit {
  display: flex;
  flex-direction: column;
  gap: 24px;
  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;
  margin-bottom: 24px;
}
.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: var(--theme-primary);
  background-color: rgb(from var(--theme-primary) r g b/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: var(--theme-primary);
}
.p-access__transit-note {
  font-size: 0.875rem;
  color: #6a5d37;
}

.p-sponsor {
  padding: 128px 0;
}
@media (max-width: 768px) {
  .p-sponsor {
    padding: 96px 0;
  }
}
.p-sponsor {
  background-color: #FFFFFF;
}
.p-sponsor__inner {
  max-width: 1208px;
  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:last-child {
  margin-bottom: 0;
}
.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 {
  display: inline-flex;
  transition: all 0.3s ease;
}
.p-sponsor__logo-link:hover {
  opacity: 0.7;
}
.p-sponsor__logo-img {
  width: auto;
  height: 56px;
}
.p-sponsor__logo-img--zipfm {
  width: auto;
  height: 40px;
}
.p-sponsor__logo-img--aichishuzo {
  height: 76px;
}
.p-sponsor__name-text {
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .p-sponsor__name-text {
    font-size: 1.125rem;
  }
}
.p-sponsor__name-text {
  font-weight: 600;
  color: #1a1711;
}

.p-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 56px;
}
@media (max-width: 768px) {
  .p-marquee {
    padding-block: 36px;
  }
}
.p-marquee {
  background-color: #FFFFFF;
}
.p-marquee::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(194, 161, 70, 0.09);
  mask: url("../images/common/pattern-shippo-mask.svg?v=20260714-2233") repeat left top/56px 56px;
  -webkit-mask: url("../images/common/pattern-shippo-mask.svg?v=20260714-2233") repeat left top/56px 56px;
}
.theme-gifu .p-marquee::before {
  mask-image: url("../images/common/pattern-asanoha-mask.svg?v=20260714-2233");
  -webkit-mask-image: url("../images/common/pattern-asanoha-mask.svg?v=20260714-2233");
  mask-size: 64px auto;
  -webkit-mask-size: 64px auto;
}
.p-marquee__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  will-change: transform;
}
.p-marquee__track.is-dragging {
  cursor: grabbing;
}
.p-marquee__item {
  flex: 0 0 auto;
  width: 460px;
}
@media (max-width: 768px) {
  .p-marquee__item {
    width: 280px;
  }
}
.p-marquee__item {
  height: 400px;
}
@media (max-width: 768px) {
  .p-marquee__item {
    height: 250px;
  }
}
.p-marquee__item {
  margin-inline: 28px;
}
@media (max-width: 768px) {
  .p-marquee__item {
    margin-inline: 18px;
  }
}
.p-marquee__item {
  overflow: hidden;
  border-radius: 8px;
  user-select: none;
}
.p-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.p-sakagura {
  position: relative;
}
.p-sakagura__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .p-sakagura__heading {
    gap: 12px;
  }
}
.p-sakagura__heading {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .p-sakagura__heading {
    margin-bottom: 32px;
  }
}
.p-sakagura__heading .c-section-heading {
  margin-bottom: 0;
}
.p-sakagura__heading-desc {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #212121;
}
.p-sakagura__heading-desc span {
  margin-inline: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #212121;
}
.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-sakagura__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 28px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgb(from #1a1711 r g b/0.12);
  border-radius: 8px;
}
.p-sakagura__card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
}
@media (max-width: 768px) {
  .p-sakagura__card-logo {
    width: 160px;
  }
}
.p-sakagura__card-logo {
  height: 180px;
}
@media (max-width: 768px) {
  .p-sakagura__card-logo {
    height: 160px;
  }
}
.p-sakagura__card-logo {
  margin-bottom: 14px;
  padding: 28px;
}
@media (max-width: 768px) {
  .p-sakagura__card-logo {
    padding: 22px;
  }
}
.p-sakagura__card-logo {
  background-color: #FFFFFF;
  border-radius: 8px;
}
.p-sakagura__card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-sakagura__card-location {
  margin-bottom: 14px;
  padding-inline: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6a5d37;
}
.p-sakagura__card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-inline: 24px;
}
.p-sakagura__card-name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-sakagura__card-name {
    font-size: 1.3125rem;
  }
}
.p-sakagura__card-name {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #212121;
}
.p-sakagura__card-brand {
  font-size: 0.875rem;
  color: #6a5d37;
}
.p-sakagura__card-action {
  display: flex;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(106, 93, 55, 0.08);
}
.p-sakagura__card-soon {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  color: #999999;
  cursor: default;
  user-select: none;
}
.p-sakagura__card-soon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  font-size: 0.9375rem;
  color: #999999;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
.p-sakagura__card-soon-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}
.p-sakagura__card-soon-label {
  font-size: 0.875rem;
  font-weight: 700;
}
.p-sakagura__card-soon-badge {
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BDBDBD;
}
.p-sakagura__card-external {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  padding: 16px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6a5d37;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.p-sakagura__card-external::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgb(from #6a5d37 r g b/0.14);
  border-radius: 4px;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.p-sakagura__card-external i {
  font-size: 0.8125rem;
}
.p-sakagura__card-external:hover {
  color: var(--theme-primary);
  background-color: rgba(255, 255, 255, 0.75);
}
.p-sakagura__card-external:hover::after {
  border-color: rgb(from var(--theme-primary) r g b/0.35);
}

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

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

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

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

@media (prefers-reduced-motion: no-preference) {
  .u-fade-in-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .u-fade-in-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.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;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .u-fixed-actions {
    right: 20px;
    bottom: 20px;
  }
}
.u-fixed-actions.is-above-footer {
  opacity: 0;
  pointer-events: none;
}
