@charset "UTF-8";
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #fceabb, #f8b500);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-screen .loading-message {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.loading-screen .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lottie-container {
  width: 120px;
  height: 120px;
  display: block;
}

.hero-section {
  width: 100%;
  height: 90dvh;
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(160deg, #fbe7a0, #f8b500);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-section .hero-inner {
  max-width: 760px;
  width: 100%;
  padding: 1rem;
  z-index: 99;
}
.hero-section .hero-inner .hero-title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #5c4200;
  margin-bottom: 1.2rem;
}
.hero-section .hero-inner .hero-subtitle {
  font-size: 1.2rem;
  color: #6a4e00;
  margin-bottom: 2rem;
}

.hero-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #fff8e1, #ffd241);
}
.hero-section canvas#golden-rain {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.scroll-button {
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}

.hero-cta {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: floatButton 3s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.2) 100%);
  transform: rotate(45deg);
  animation: shine 4s infinite;
}

@keyframes floatButton {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
#main {
  opacity: 0;
  transform: translateY(30px);
}

.countup-stats-section {
  background: #fff8e1;
  padding: 3rem 1.5rem;
  text-align: center;
}
.countup-stats-section .stats-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-rows: 1fr 1fr;
}
.countup-stats-section .stats-inner .row-2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .countup-stats-section .stats-inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.countup-stats-section .stat-item {
  flex: 1;
}
.countup-stats-section .stat-item .count {
  font-size: 2rem;
  font-weight: bold;
  color: #f8b500;
}
.countup-stats-section .stat-item .label {
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
}

.form-area {
  background: linear-gradient(145deg, #fff8e1, #ffe8b3, #fff5cc);
  padding: 24px 16px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}
.form-area h2 {
  display: block;
  text-align: center;
}
.form-area form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-area .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-area .form-group label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.form-area .form-group input[type=text],
.form-area .form-group select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fafafa;
  font-family: inherit;
}
.form-area .form-group input[type=text]::placeholder {
  color: #aaa;
}
.form-area .radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* 非表示の実ラジオボタン */
  /* カスタムラジオスタイル */
}
.form-area .radio-group label {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  user-select: none;
}
.form-area .radio-group input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-area .radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  background-color: #fff;
  box-shadow: inset 0 0 0 4px transparent;
  transition: box-shadow 0.3s ease;
}
.form-area .radio-group input[type=radio]:checked + label::before {
  box-shadow: inset 0 0 0 6px #d4af37;
}
.form-area .birthday-selects {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.form-area .birthday-selects select {
  flex: 1;
}
.form-area .form-submit-btn {
  background: linear-gradient(135deg, #ffd700, #ff9900);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-area .form-submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite ease-in-out;
  z-index: 0;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.form-area .form-submit-btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.fortune-teller-section {
  padding: 48px 16px;
  background: linear-gradient(to bottom, #fffaf0, #fceabb);
  text-align: center;
}
.fortune-teller-section .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #b98c00;
  position: relative;
}
.fortune-teller-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px auto 0;
  background: linear-gradient(to right, #d4af37, #fffbe6, #d4af37);
  border-radius: 2px;
}
.fortune-teller-section .teller-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
  border: 3px solid transparent;
  border-image: linear-gradient(to bottom, #f9d976, #f39f86) 1;
  background: #fffdf7;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.fortune-teller-section .teller-name {
  font-size: 22px;
  font-weight: bold;
  color: #a17800;
  margin-bottom: 12px;
}
.fortune-teller-section .teller-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.fortune-teller-section .teller-meta .meta-item {
  background: #fff4c1;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #6b4f00;
  border: 1px solid #ecd59f;
}
.fortune-teller-section .teller-comment-box {
  background: linear-gradient(to right, #fff8e1, #fff3c4);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: inset 0 0 12px rgba(255, 229, 140, 0.3);
}
.fortune-teller-section .teller-comment-box::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 16px;
  font-size: 60px;
  color: rgba(200, 160, 40, 0.2);
}
.fortune-teller-section .teller-comment {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3d1f;
}

.fortune-teller-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fortune-teller-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.teller-evaluation {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid gold;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: #444444;
  font-family: "Noto Serif JP", serif;
}
.teller-evaluation p {
  margin: 0;
}
.teller-evaluation strong {
  color: #ffd700;
  font-weight: bold;
}

.voice-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fff8f2, #fff);
  max-width: 960px;
  margin: 0 auto;
}
.voice-section h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}
.voice-section .voice-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease-out;
}
.voice-section .voice-card.active {
  opacity: 1;
  transform: translateX(0);
}
.voice-section .voice-card .voice-comment {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}
.voice-section .voice-card .voice-meta {
  font-size: 14px;
  color: #777;
  text-align: right;
}

.intro-section {
  padding: 60px 20px;
  background: #fff8f0;
}
.intro-section .section-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #8a5b00;
}
.intro-section .intro-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.intro-section .intro-card {
  background: linear-gradient(135deg, #fffaf0, #fce9c8);
  border: 2px solid #e0c185;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.intro-section .intro-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.intro-section .intro-card .name {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #7b4500;
}
.intro-section .intro-card .description {
  font-size: 16px;
  color: #4a3a1e;
  line-height: 1.6;
}

.site-footer {
  padding: 32px 16px;
  background: #f7f2e9;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  border-top: 1px solid #d4c6ab;
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  appearance: none;
  border: none;
}
.site-footer .footer-links .footer-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #e0b973, #c8943c);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.site-footer .footer-links .footer-link:active {
  transform: scale(0.95);
}
.site-footer .footer-bottom {
  font-size: 0.85rem;
  color: #777;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-inner {
  width: 100%;
  max-width: 640px;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1rem;
}
.modal-menu .menu-btn {
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  border: none;
  border-radius: 6px;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
}
.modal-menu .menu-btn:hover {
  background-color: #e0e0e0;
}

.modal-content {
  font-size: 0.95rem;
  line-height: 1.6;
}
.modal-content h2 {
  margin-top: 0;
  font-size: 1.2rem;
}
.modal-content p ol,
.modal-content p ul {
  padding-left: 20px;
}
.modal-content dl dt {
  padding: 0.5rem;
  background-color: #eeeeee;
  font-weight: bold;
}
.modal-content dl dd {
  margin: 0;
  padding: 0.5rem;
}
.modal-content .form-group {
  margin-bottom: 1rem;
}
.modal-content .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #444;
}
.modal-content .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.modal-content .form-group textarea {
  height: 150px;
  resize: vertical;
}
.modal-content .form-group input[type=email],
.modal-content .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.modal-content .form-group input[type=submit] {
  background-color: #8e34bd;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
}

.modal {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
}

.hidden {
  display: none !important;
}

.modal-content-ttl3 {
  margin-top: 3rem;
  border-bottom: solid 1px #999;
}

[data-scroll-container] {
  overflow: hidden;
}

[data-scroll-section] {
  position: relative;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  overflow-x: hidden;
}

html.has-scroll-smooth {
  scroll-behavior: auto;
}

html.has-scroll-dragging {
  user-select: none;
}

body {
  overscroll-behavior: none;
  font-family: "Noto Serif JP", serif;
}

.constellation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.constellation-wrapper .constellation-instance {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  color: gold;
}
.constellation-wrapper .constellation-instance svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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