@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  /*font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;*/
  color: #333;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1.3rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: inherit;
  transition: all 0.3s ease;
  padding: 0 1px 0;
  text-decoration: none;
  border-bottom: .8px dotted#945131;
  color: #945131;
}

a:hover {
  opacity: 0.5;
}

.bold {
  font-weight: 600;
}

.c-red {
  color: #d80000;
}

.fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/topview.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
}

h2 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin: 0 auto 4rem;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  font-weight: 300;
}

h2 span {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  display: block;
  margin: 1.2rem 0 0.3rem;
}

h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.8rem;
  background-image: url(../images/ringologo_yingyang.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

h3 {
  font-size: 1.4rem;
  margin: 3.8rem 0 1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #945131;
}

h5 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0;
  letter-spacing: 0.05em;
  font-weight: 300;
  padding: 0 15px;
}

h5 span {
  display: inline;
  font-size: 0.8rem;
}


/* ===== Layout ===== */
.container {
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 58rem;
}

.container .note {
  font-size: 0.78rem;
  display: inline-block;
  margin: 0.2rem 0 0;
  color: #6a6a6a;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}


#about,
#ticket {
  background-color: rgba(255, 255, 255, 1);
}

#schedule,
#contact {
  background-color: rgba(242, 242, 242, .3);
}

.content-wrap {
  margin: 0 auto 2rem;
  padding: clamp(2rem, 4vw, 2.5rem);
  border: 1px solid rgba(148, 81, 49, 0.3);
  border-radius: 4px;
}

.content-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-wrap p {
  font-size: 0.88rem;
  line-height: 2;
  color: #6a6a6a;
  margin-bottom: 1rem;
}

.content-wrap a {
  color: #1a1a1a;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  color: #ffffff;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  margin: 0 auto 1.5rem;
  text-align: center;
  width: 55%;
  background-color: #945131;
  position: relative;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: .8rem;
  left: 2.5rem;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.btn:hover::after {
  width: calc(100% - 5rem);
}

.btn a {
  border: none;
  color: #fff;
  opacity: 1;
}


/* ===== Fixed Menu ===== */
.fixed-menu {
  position: fixed;
  left: 2rem;
  top: 1rem;
  z-index: 50;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-menu.hidden {
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
}

.fixed-menu nav {
  font-size: 0.7rem;
  display: flex;
  gap: 2rem;
}

.fixed-menu a {
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  border: none;
}

.fixed-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

.fixed-menu a:hover::after {
  width: 100%;
}

/* ===== Vertical Text ===== */
.vertical-text {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.vertical-line {
  width: 1px;
  height: 4rem;
  background: #000000;
  transition: background 0.1s ease;
  transform-origin: bottom;
  animation: growUp 1s ease-out forwards;
}

.vertical-text p {
  font-size: 0.65rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  color: #000000;
  transition: color 0.1s ease;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.1s forwards;
}

/* ===== Hamburger Menu ===== */
.circular-badge {
  position: fixed;
  top: -2rem;
  right: -2rem;
  width: 11rem;
  height: 11rem;
  z-index: 999999;
}

/*.circular-badge.scrolled text {
  fill: rgba(137, 121, 128, 0.3) !important;
  transition: fill 0.5s ease;
}*/

.circular-text {
  fill: rgba(137, 121, 128, 0.3);
  font-size: 13.8px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.rotating-text {
  width: 100%;
  height: 100%;
  animation: spin-slow 10s linear infinite;
}

.menu-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: none;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.menu-button.active .menu-logo {
  opacity: 0;
}

.menu-button.active .menu-line {
  opacity: 1;
}

.menu-button.active .menu-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button.active .menu-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-logo {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  transition: opacity 0.3s;
}

.menu-line {
  width: 1.75rem;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(24rem, 85vw);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.menu-panel.open {
  transform: translateX(0);
}

.menu-panel.open .menu-nav a:nth-child(1) {
  animation: slideInRight 0.5s ease 0.2s forwards;
}

.menu-panel.open .menu-nav a:nth-child(2) {
  animation: slideInRight 0.5s ease 0.3s forwards;
}

.menu-panel.open .menu-nav a:nth-child(3) {
  animation: slideInRight 0.5s ease 0.4s forwards;
}

.menu-panel.open .menu-nav a:nth-child(4) {
  animation: slideInRight 0.5s ease 0.5s forwards;
}

.menu-panel.open .menu-nav a:nth-child(5) {
  animation: slideInRight 0.5s ease 0.6s forwards;
}

.menu-panel.open .menu-nav a:nth-child(6) {
  animation: slideInRight 0.5s ease 0.7s forwards;
}

.menu-content {
  padding: 4rem 2.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-nav a {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.15em;
  font-weight: 300;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
}

.menu-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #945131);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-nav a:hover {
  color: #ffffff;
  padding-left: 1rem;
  opacity: 1;
}

.menu-nav a:hover::before {
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  color: #ffffff;
  background-color: #fff;
}

/*.hero h1 {
  font-size: 5rem;
  font-weight: 300;
  display: block;
  line-height: 0;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0;
  animation: heroFade 1s ease-out 1.8s forwards;
}

.hero h1 img {
  width: 70%;
  display: block;
  margin: 0 auto;
}


.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.heading {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 1rem;
  display: block;
  line-height: 1.4em;
  letter-spacing: 0.5em;
  opacity: 0;
  animation: heroFade 1s ease-out 1.6s forwards;
}*/

#logo-container {
  width: 42vw;
  margin: auto;
}

#logo-container svg path,
#logo-container svg polygon,
#logo-container svg polyline,
#logo-container svg line,
#logo-container svg circle,
#logo-container svg rect,
#logo-container svg ellipse {
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 2;
}

svg {
  width: 85%;
  height: auto;
}

/* ===== ABOUT ===== */

/*#about h2 {
  margin: 4vw 0 3.5vw;
}*/


.about-content .lead {
  margin: 3rem auto 6rem;
  line-height: 1.7;
}

.about-content .lead p {
  font-size: 0.95rem;
  line-height: 2em;
  padding: 30px;
  color: #897970;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease-out 0.9s,
    transform 1s ease-out 0.9s,
    filter 1s ease-out 0.9s;
}

.about-content .lead.visible p {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-content .border {
  position: relative;
  width: 100%;
}

.about-content .border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #945131;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease-out;
}

.about-content .lead.visible .border::after {
  transform: scaleX(1);
}

.about-content .border::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #945131;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out 0.8s;
}

.about-content .lead.visible .border::before {
  opacity: 1;
}

.about-content .border span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-content .border span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -5px;
  width: 10px;
  height: 10px;
  background-color: #945131;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out 0.8s;
}

.about-content .lead.visible .border span::after {
  opacity: 1;
}


.about-information p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== Accordion ===== */
.summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1em;
  align-items: center;
  padding: 16px 24px;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(148, 81, 49, 0.95);
}

.summary::-webkit-details-marker {
  display: none;
}

.icon {
  position: relative;
  display: inline-block;
  inline-size: 1em;
  aspect-ratio: 1;
}

.icon::before,
.icon::after {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 1px;
  margin: auto;
  content: "";
  background-color: currentcolor;
}

.icon::after {
  transition: opacity 0.3s;
  rotate: 90deg;
}

.icon:where(.accordion[open] *)::after {
  opacity: 0;
}

.precautions {
  display: grid;
  transition: grid-template-rows 0.4s;
  border: 1px solid rgba(148, 81, 49, 0.95);
  padding: 30px;
}

.precautions h3:first-of-type {
  margin: 0 0 1rem;
}

.precautions h3 {
  color: rgba(148, 81, 49, 0.95);
}

.precautions p {
  margin: 20px 0;
  line-height: 1.7;
  color: #2d2d2d !important;
}

.precautions a {
  color: #1a1a1a;
  border-bottom: .8px dotted #1a1a1a;
}

.inner {
  overflow: hidden;
}

.accordion-wrap {
  color: #000000;
  padding: 1px 20px;
  background-color: rgba(137, 121, 128, 0.06);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.accordion-wrap span {
  display: block;
  font-size: 0.75rem;
  color: #999999;
  margin: 0 0 5px 10px;
}

/* ===== SCHEDULE ===== */
#schedule .container {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 64rem;
}

.schedule-cards {
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.schedule-cards.visible {
  opacity: 1;
  transform: translateY(0);
}

.schedule-header {
  font-size: 0.75rem;
  display: grid;
  grid-template-columns: 150px 150px 120px 1fr;
  gap: 3rem;
  padding: 0.75rem 3rem 0.75rem;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 300;
}

.schedule-header>div {
  font-weight: 300;
  letter-spacing: 0.15em;
  text-align: center;
}

.schedule-card {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.75rem 3rem;
  display: grid;
  grid-template-columns: 150px 150px 150px 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, background-color 0.3s ease;
  background-color: rgba(250, 250, 250, 0.35);
}

.schedule-card:nth-child(2) {
  transition-delay: 0.1s;
}

.schedule-card:nth-child(3) {
  transition-delay: 0.25s;
}

.schedule-card:nth-child(4) {
  transition-delay: 0.4s;
}

.schedule-card:nth-child(5) {
  transition-delay: 0.55s;
}

.schedule-card:nth-child(6) {
  transition-delay: 0.7s;
}

.schedule-card:nth-child(7) {
  transition-delay: 0.85s;
}

.schedule-card:nth-child(8) {
  transition-delay: 1s;
}

.schedule-card:nth-child(9) {
  transition-delay: 1.15s;
}

.schedule-card:nth-child(10) {
  transition-delay: 1.3s;
}

.schedule-card:nth-child(11) {
  transition-delay: 1.45s;
}

.schedule-card:nth-child(12) {
  transition-delay: 1.6s;
}

.schedule-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.schedule-card:hover {
  background-color: rgba(129, 18, 27, 0.05);
}

.date-main {
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  font-family: "Courier New", monospace;
}

.date-day {
  font-size: 0.75rem;
  color: #999999;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.schedule-location {
  font-size: 0.98rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.15em;
  text-align: center;
  color: #945131;
}

.schedule-time {
  font-size: 0.85rem;
  color: #6a6a6a;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.05em;
  font-family: "Courier New", monospace;
}

.schedule-venue {
  display: flex;
  align-items: center;
}

.schedule-venue .venue-name {
  font-size: 1.05rem;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

/* ===== TICKET ===== */
.ticket-content {
  margin: 0 auto;
  padding: 0;
}

/*.ticket-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 4rem 0 1.5rem;
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid rgba(148, 81, 49, 0.7);
}*/

.ticket-content h3 {
  position: relative;
  padding-bottom: 15px;
  padding-left: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.ticket-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #945131;
}

.ticket-content h3::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #945131;
  border-radius: 50%;
  z-index: 1;
}

.ticket-content h3 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -5px;
  width: 10px;
  height: 10px;
  background-color: #945131;
  border-radius: 50%;
  z-index: 1;
}


.ticket-content h3:first-of-type {
  margin-top: 0;
}

.ticket-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #6a6a6a;
  margin: 0.6rem 0;
  padding: 0 15px;
  letter-spacing: 0.02em;
}

.ticket-content p.announce {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 1.5rem 0;
  letter-spacing: 0.05em;
}

.ticket-grid {
  padding: 1.5rem 2rem 1rem;
  border: 1px solid rgba(148, 81, 49, 0.3);
  border-radius: 4px;
  margin: 1.2rem 0.8rem;
  text-align: left;
}

.ticket-grid:first-of-type {
  margin: 1.5rem 0.8rem 0;
}

.ticket-grid h4 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 81, 49, 0.3);
  font-weight: 500;
  color: #1a1a1a;
}

.ticket-grid h4.ringohan::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url(../images/logo_ringohan.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ticket-grid h4.pocket::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url(../images/logo_pocket.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.device-icons {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-left: auto;
}

.device-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.3rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  color: #6a6a6a;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.device-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.device-icon:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.device-icon:active {
  transform: translateY(0);
}

.ticket-details p {
  font-size: 0.8rem;
  color: #6a6a6a;
  margin: 1rem 0;
}

.ticket-label {
  font-size: 0.7rem;
  display: inline-block;
  background-color: rgba(148, 81, 49, 0.1);
  color: #1a1a1a;
  padding: 0.25rem 0.75rem;
  margin-right: 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  width: 20%;
  text-align: center;
}

/* ===== CONTACT ===== */
.pia_info {
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.01);
  color: #1a1a1a;
  padding: 20px;
  background-color: rgba(148, 81, 49, 0.05);
  margin-bottom: 1rem;
}

.pia_info a {
  color: #945131;
}

.promoter_wrap {
  display: flex;
  flex-wrap: wrap;
}

.promoter_info {
  font-size: 0.9rem;
  width: 48%;
  border: 1px solid rgba(0, 0, 0, 0.01);
  color: #000000;
  padding: 15px 20px;
  background-color: rgba(148, 81, 49, 0.05);
  margin: 0 1rem 1rem 0;
}

.promoter_info:nth-of-type(even) {
  margin-right: 0;
}

.promoter_info h4 {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  padding-left: 1.5em;
}

.promoter_info h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1px;
  background-color: #1a1a1a;
}

.promoter_info p {
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.external-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s ease;
  border: none;
}

.external-link::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.external-link:hover {
  opacity: 0.5;
}

.external-icon {
  width: 0.9em;
  height: 0.9em;
  stroke-width: 2;
}

.promoter_info .contact {
  font-size: 0.8rem;
  margin: 0.2rem 0 0;
  line-height: 1.5em;
  color: #945131;
}

.promoter_info .contact a {
  color: #945131;
}

.promoter_info .contact span {
  display: block;
  font-size: 0.7rem;
  color: #999999;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  text-align: center;
  background-color: #ffffff;
}

.footer-copyright {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ===== Animations ===== */
@keyframes growUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blurToFocus {
  0% {
    filter: blur(20px);
    opacity: 0.6;
  }

  100% {
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Scroll Animation Base ===== */
.scroll-animated {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animated.visible {
  opacity: 1;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* 下からフェードイン */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 上からフェードイン */
.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-down.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 左からスライドイン */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 右からスライドイン */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* スケールアップ */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ズームインブラー */
.zoom-blur {
  opacity: 0;
  transform: scale(1.05);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-blur.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* 回転フェードイン */
.rotate-in {
  opacity: 0;
  transform: rotate(-5deg) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-in.visible {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* 遅延付きアニメーション */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
}


/* ===== Media Queries ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== レスポンシブ表示設定 ===== */
.pc {
  display: block;
}

.sp {
  display: none;
}

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