@import "https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Raleway:wght@300;400;600&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --color-bg-primary: #f0f9ff;
  --color-bg-secondary: #e0f2fe;
  --color-bg-card: #fff;
  --color-bg-glass: #38bdf80f;
  --color-accent-gold: #0ea5e9;
  --color-accent-gold-light: #38bdf8;
  --color-accent-red: #0284c7;
  --color-accent-red-light: #38bdf8;
  --color-accent-purple: #bae6fd;
  --color-text-primary: #0f172a;
  --color-text-secondary: #334155;
  --color-text-muted: #64748b;
  --color-border: #0ea5e926;
  --color-border-hover: #0ea5e966;
  --font-display: "Cinzel", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-sub: "Raleway", sans-serif;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --transition-fast: .15s ease;
  --transition-normal: .3s ease;
  --transition-slow: .6s ease;
  --shadow-gold: 0 4px 24px #0ea5e91f;
  --shadow-glow: 0 8px 40px #0ea5e914;
  --shadow-card: 0 2px 16px #0f172a14;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(at 15% 20%, #38bdf81f 0%, #0000 50%), radial-gradient(at 85% 10%, #bae6fd2e 0%, #0000 50%), radial-gradient(at 50% 90%, #e0f2fe33 0%, #0000 60%), radial-gradient(at 70%, #0ea5e90d 0%, #0000 40%);
  position: fixed;
  inset: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: .08em;
  line-height: 1.3;
}

p {
  font-family: var(--font-body);
}

a {
  color: var(--color-accent-gold);
  transition: color var(--transition-fast);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-red);
}

.container {
  max-width: 1100px;
  padding: 0 var(--space-md);
  margin: 0 auto;
}

.section {
  padding: var(--space-xl) 0;
  z-index: 1;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  text-align: center;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  display: flex;
}

.section-title:before, .section-title:after {
  content: "";
  background: linear-gradient(to right, transparent, var(--color-accent-gold));
  flex: 1;
  max-width: 120px;
  height: 1px;
}

.section-title:after {
  background: linear-gradient(to left, transparent, var(--color-accent-gold));
}

.section-subtitle {
  font-family: var(--font-body);
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  letter-spacing: .1em;
  font-size: .95rem;
}

.btn {
  font-family: var(--font-body);
  letter-spacing: .06em;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 4px 16px #0ea5e94d;
}

.btn-primary:before {
  content: "";
  opacity: 0;
  transition: opacity var(--transition-normal);
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border-radius: 8px;
  position: absolute;
  inset: 0;
}

.btn-primary:hover:before {
  opacity: 1;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #0ea5e966;
}

.btn-outline {
  color: var(--color-accent-gold);
  border: 1.5px solid var(--color-border-hover);
  background: none;
  border-radius: 8px;
}

.btn-outline:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-red);
  background: #0ea5e90f;
  transform: translateY(-2px);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  position: relative;
}

.card:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, #38bdf808 0%, #0000 60%);
  border-radius: 12px;
  position: absolute;
  inset: 0;
}

.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

input, select, textarea {
  font-family: var(--font-body);
}

@keyframes float-particle {
  0%, 100% {
    opacity: .3;
    transform: translateY(0)translateX(0);
  }

  50% {
    opacity: .8;
    transform: translateY(-20px)translateX(10px);
  }
}

@keyframes wave-pulse {
  0%, 100% {
    opacity: .3;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(1.05);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200%;
  }

  100% {
    background-position: 200%;
  }
}

@keyframes pulse-border {
  0%, 100% {
    border-color: #0ea5e926;
  }

  50% {
    border-color: #0ea5e966;
  }
}

@keyframes candle-flicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px #0ea5e9cc, 0 0 30px #0ea5e966;
  }

  25% {
    opacity: .9;
    text-shadow: 0 0 8px #0ea5e999, 0 0 20px #0ea5e933;
  }

  75% {
    opacity: .95;
    text-shadow: 0 0 15px #0ea5e9e6, 0 0 40px #0ea5e980;
  }
}

.animate-fade-up {
  animation: .8s forwards fade-up;
}

.animate-fade-in {
  animation: 1s forwards fade-in;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-red);
}

::selection {
  color: var(--color-text-primary);
  background: #0ea5e933;
}

/* [project]/src/components/Header.module.css [app-client] (css) */
.Header-module__hBw1pG__header {
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  background: #f0f9ffb3;
  border-bottom: 1px solid #0000;
  padding: 1rem 0;
  transition: all .4s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Header-module__hBw1pG__header.Header-module__hBw1pG__scrolled {
  -webkit-backdrop-filter: blur(20px);
  background: #fffffff2;
  border-bottom-color: #0ea5e926;
  padding: .7rem 0;
  box-shadow: 0 2px 20px #0ea5e91a;
}

.Header-module__hBw1pG__inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
}

.Header-module__hBw1pG__logo {
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  display: flex;
}

.Header-module__hBw1pG__logoIcon {
  object-fit: cover;
  border-radius: 50%;
}

.Header-module__hBw1pG__logoText {
  color: var(--color-accent-gold);
  letter-spacing: .05em;
  white-space: nowrap;
  font-family: Cinzel, serif;
  font-size: .95rem;
  font-weight: 700;
}

.Header-module__hBw1pG__nav {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.Header-module__hBw1pG__navLink {
  color: var(--color-text-secondary);
  letter-spacing: .04em;
  font-family: Noto Sans JP, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.Header-module__hBw1pG__navLink:after {
  content: "";
  background: var(--color-accent-gold);
  border-radius: 2px;
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.Header-module__hBw1pG__navLink:hover {
  color: var(--color-accent-gold);
}

.Header-module__hBw1pG__navLink:hover:after {
  width: 100%;
}

.Header-module__hBw1pG__navGroup {
  position: relative;
}

.Header-module__hBw1pG__navGroupLabel {
  color: var(--color-text-secondary);
  letter-spacing: .04em;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background: none;
  border: none;
  align-items: center;
  gap: .25rem;
  padding: 0;
  font-family: Noto Sans JP, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  transition: color .3s;
  display: inline-flex;
  position: relative;
}

.Header-module__hBw1pG__navGroupLabel:after {
  content: "";
  background: var(--color-accent-gold);
  border-radius: 2px;
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.Header-module__hBw1pG__navGroupLabel:hover, .Header-module__hBw1pG__navGroupOpen {
  color: var(--color-accent-gold);
}

.Header-module__hBw1pG__navGroupLabel:hover:after, .Header-module__hBw1pG__navGroupOpen:after {
  width: 100%;
}

.Header-module__hBw1pG__chevron {
  color: currentColor;
  flex-shrink: 0;
  transition: transform .2s;
}

.Header-module__hBw1pG__navGroupOpen .Header-module__hBw1pG__chevron {
  transform: rotate(180deg);
}

.Header-module__hBw1pG__dropdown {
  border: 1px solid var(--color-border);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  white-space: nowrap;
  background: #fffffffa;
  border-radius: 10px;
  flex-direction: column;
  min-width: 160px;
  padding: .4rem 0;
  transition: opacity .2s, transform .2s;
  display: flex;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%)translateY(-6px);
  box-shadow: 0 8px 24px #0ea5e91f;
}

.Header-module__hBw1pG__dropdownOpen {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%)translateY(0);
}

.Header-module__hBw1pG__dropdownLink {
  color: var(--color-text-secondary);
  padding: .55rem 1.1rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.Header-module__hBw1pG__dropdownLink:hover {
  color: var(--color-accent-gold);
  background: #0ea5e90f;
}

.Header-module__hBw1pG__navButton {
  color: var(--color-accent-gold);
  letter-spacing: .04em;
  border: 1.5px solid #0ea5e959;
  border-radius: 20px;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.Header-module__hBw1pG__navButton:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-red);
  background: #0ea5e914;
}

.Header-module__hBw1pG__avatarIcon {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.Header-module__hBw1pG__adminButton {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 6px;
  align-items: center;
  gap: .3rem;
  padding: .4rem .9rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 2px 8px #0ea5e940;
}

.Header-module__hBw1pG__adminButton:hover {
  color: #fff;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #0ea5e966;
}

.Header-module__hBw1pG__logoutButton {
  color: var(--color-text-muted);
  cursor: pointer;
  letter-spacing: .03em;
  background: none;
  border: 1px solid #64748b40;
  border-radius: 6px;
  padding: .4rem .9rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .78rem;
  transition: all .2s;
}

.Header-module__hBw1pG__logoutButton:hover {
  color: #ef4444;
  background: #ef44440d;
  border-color: #ef444459;
}

.Header-module__hBw1pG__mobileLogoutButton {
  color: #ef4444;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #0ea5e914;
  width: 100%;
  padding: 1rem 2rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .9rem;
  transition: all .2s;
}

.Header-module__hBw1pG__mobileLogoutButton:hover {
  background: #ef44440d;
  padding-left: 2.5rem;
}

.Header-module__hBw1pG__hamburger {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  display: none;
}

.Header-module__hBw1pG__hamburger span {
  background: var(--color-accent-gold);
  transform-origin: center;
  border-radius: 2px;
  width: 24px;
  height: 2px;
  transition: all .3s;
  display: block;
}

.Header-module__hBw1pG__hamburger.Header-module__hBw1pG__open span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.Header-module__hBw1pG__hamburger.Header-module__hBw1pG__open span:nth-child(2) {
  opacity: 0;
}

.Header-module__hBw1pG__hamburger.Header-module__hBw1pG__open span:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

.Header-module__hBw1pG__mobileMenu {
  background: #fffffffa;
  border-top: 1px solid #0ea5e91f;
  flex-direction: column;
  max-height: 0;
  transition: max-height .4s;
  display: none;
  overflow: hidden;
}

.Header-module__hBw1pG__mobileMenuOpen {
  max-height: 500px;
}

.Header-module__hBw1pG__mobileNavLink {
  color: var(--color-text-secondary);
  border-bottom: 1px solid #0ea5e914;
  padding: 1rem 2rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.Header-module__hBw1pG__mobileNavLink:hover {
  color: var(--color-accent-gold);
  background: #0ea5e90a;
  padding-left: 2.5rem;
}

.Header-module__hBw1pG__mobileGroupLabel {
  color: var(--color-text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid #0ea5e914;
  padding: .7rem 2rem .3rem;
  font-family: Noto Serif JP, serif;
  font-size: .72rem;
  font-weight: 700;
}

.Header-module__hBw1pG__mobileNavLinkIndent {
  color: var(--color-text-secondary);
  border-bottom: 1px solid #0ea5e90f;
  padding: .75rem 2rem .75rem 3rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.Header-module__hBw1pG__mobileNavLinkIndent:hover {
  color: var(--color-accent-gold);
  background: #0ea5e90a;
}

.Header-module__hBw1pG__mobileLogoutButton {
  color: #e57373;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid #0ea5e914;
  width: 100%;
  padding: 1rem 2rem;
  font-family: Noto Sans JP, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
  display: block;
}

.Header-module__hBw1pG__mobileLogoutButton:hover {
  color: #c62828;
  background: #e573730f;
  padding-left: 2.5rem;
}

@media (max-width: 900px) {
  .Header-module__hBw1pG__nav {
    display: none;
  }

  .Header-module__hBw1pG__hamburger, .Header-module__hBw1pG__mobileMenu {
    display: flex;
  }
}

/* [project]/src/components/Footer.module.css [app-client] (css) */
.Footer-module__S6Hkya__footer {
  z-index: 1;
  background: linear-gradient(to top, #e0f2fef2, #f0f9ff99);
  border-top: 1px solid #0ea5e933;
  padding: 3rem 0 2rem;
  position: relative;
}

.Footer-module__S6Hkya__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.Footer-module__S6Hkya__top {
  text-align: center;
  margin-bottom: 1.5rem;
}

.Footer-module__S6Hkya__brand {
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
  display: inline-flex;
}

.Footer-module__S6Hkya__brandIcon {
  object-fit: cover;
  border-radius: 50%;
}

.Footer-module__S6Hkya__brandName {
  color: var(--color-accent-gold);
  letter-spacing: .05em;
  font-family: Cinzel, serif;
  font-size: 1rem;
}

.Footer-module__S6Hkya__tagline {
  color: var(--color-text-muted);
  letter-spacing: .12em;
  font-family: Noto Serif JP, serif;
  font-size: .8rem;
}

.Footer-module__S6Hkya__divider {
  background: linear-gradient(to right, #0000, #0ea5e933, #0000);
  height: 1px;
  margin-bottom: 1.5rem;
}

.Footer-module__S6Hkya__bottom {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Footer-module__S6Hkya__socials {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  display: flex;
}

.Footer-module__S6Hkya__socialLink {
  color: var(--color-text-secondary);
  align-items: center;
  gap: .4rem;
  font-family: Noto Serif JP, serif;
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.Footer-module__S6Hkya__socialLink:hover {
  color: var(--color-accent-gold);
}

.Footer-module__S6Hkya__legalLinks {
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: .5rem;
  display: flex;
}

.Footer-module__S6Hkya__legalLink {
  color: var(--color-text-muted);
  font-family: Noto Sans JP, sans-serif;
  font-size: .75rem;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__S6Hkya__legalLink:hover {
  color: var(--color-accent-gold);
}

.Footer-module__S6Hkya__copy {
  color: var(--color-text-muted);
  letter-spacing: .05em;
  font-family: Raleway, sans-serif;
  font-size: .75rem;
}

/*# sourceMappingURL=src_82b59ef7._.css.map*/