/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
}

/* News "More" button styles */
.news-more-container {
  display: none;
  text-align: center;
  margin-top: -2rem;
}
.news-more-container .news-more-button {
  background: linear-gradient(135deg, #000000, #000000);
  color: white;
  border: none;
  padding: 0.7rem 1.8rem;
  border: 1px solid #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.news-more-container .news-more-button:hover {
  background: linear-gradient(135deg, #000000, #000000);
  transform: translateY(-2px);
}
.news-more-container .news-more-button:active {
  transform: translateY(0);
}
.news-more-container .news-more-button span {
  white-space: nowrap;
}
.news-more-container .news-more-button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.news-more-container .news-more-button:hover svg {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .news-more-container {
    margin-top: 20px;
  }
  .news-more-container .news-more-button {
    font-size: 14px;
    padding: 10px 25px;
  }
}

/* Entry Modal Styles */
.entry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
}
.entry-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.entry-modal-content {
  position: relative;
  background: white;
  max-width: 90%;
  padding: 0 3rem;
  width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1102;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 540px) {
  .entry-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
    padding: 0rem;
  }
}

.entry-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1103;
  transition: background 0.3s ease;
}
.entry-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.entry-modal-close svg {
  width: 40px;
  height: 40px;
  color: #333;
}
@media (max-width: 540px) {
  .entry-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}

.entry-modal-body {
  padding: 60px 40px 40px;
}
@media (max-width: 540px) {
  .entry-modal-body {
    padding: 50px 24px 24px;
  }
}

.entry-modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0rem;
  text-align: center;
  color: #006896;
  padding-bottom: 1rem;
}
@media (max-width: 540px) {
  .entry-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.entry-modal-content-inner {
  line-height: 1.8;
  color: #000000;
}
.entry-modal-content-inner h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #006896;
  margin: 0.4rem 0 0.4rem;
  border: 1px solid #006896;
  padding: 0.5rem 1rem;
}
@media (max-width: 540px) {
  .entry-modal-content-inner h3 {
    font-size: 1.1rem;
    margin: 1.7rem 0 0.4rem;
  }
}
.entry-modal-content-inner p {
  margin-bottom: 1.5rem;
}
.entry-modal-content-inner .info-section {
  padding: 0rem;
  border-radius: 12px;
  margin: 0rem 0;
}
.entry-modal-content-inner .notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}
.entry-modal-content-inner .notice .notice-title {
  font-weight: 600;
  color: #856404;
  margin-bottom: 0.5rem;
}

a {
  color: #31a8dc;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.nav-logo {
  width: 15rem;
  margin: 0 auto 2rem;
}
@media (max-width: 540px) {
  .nav-logo {
    width: 10rem;
  }
}
.nav-logo img {
  width: 100%;
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 2rem;
  margin-top: 1rem;
  z-index: 1000;
  transition: all 0.3s ease;
}
@media (max-width: 540px) {
  .hamburger {
    margin-right: 0rem;
  }
}

.hamburger-line {
  width: 50px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  border-radius: 1px;
  display: block;
  transform: translateZ(0);
  will-change: transform, opacity;
}
@media (max-width: 540px) {
  .hamburger-line {
    width: 3rem;
    background-color: rgb(132, 132, 132);
  }
}

@media (max-width: 540px) {
  .hamburger.active .hamburger-line {
    background-color: white;
  }
}

/* Hamburger Animation */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 50%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 540px) {
  .nav-menu {
    max-width: 100%;
  }
}

.nav-menu.active {
  right: 0;
}

.nav-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}
@media (max-width: 540px) {
  .nav-menu-inner {
    justify-content: flex-start;
    margin-top: 7rem;
  }
}

.nav-list {
  list-style: none;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
}

.nav-item {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.nav-menu.active .nav-item {
  opacity: 1;
  transform: translateX(0);
}
.nav-menu.active .nav-item a {
  padding: 0.5rem 0;
}

.nav-menu.active .nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-menu.active .nav-item:nth-child(2) {
  transition-delay: 0.15s;
}

.nav-menu.active .nav-item:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-menu.active .nav-item:nth-child(4) {
  transition-delay: 0.25s;
}

.nav-menu.active .nav-item:nth-child(5) {
  transition-delay: 0.3s;
}

.nav-menu.active .nav-item:nth-child(6) {
  transition-delay: 0.35s;
}

.nav-menu.active .nav-item:nth-child(7) {
  transition-delay: 0.4s;
}

.nav-link {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  width: 15rem;
  margin: 0 auto;
  font-weight: 600;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 540px) {
  .nav-link {
    font-size: 1.5rem;
    width: 18rem;
  }
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-link:hover::before {
  left: 100%;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

html {
  font-size: 1vw; /* Responsive base font size - all rem units will scale with viewport */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: black;
  color: white;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
}

.pc {
  width: 100%;
}

@media (max-width: 540px) {
  .pc {
    display: none;
  }
}
.sp {
  width: 100%;
  display: none;
}

@media (max-width: 540px) {
  .sp {
    display: block;
  }
}
/* Container */
.container {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  padding: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
}
.container.fade-in {
  opacity: 1;
}

/* Header Image */
.header-image {
  width: 100%;
  height: auto;
}

.kv-flex {
  display: flex;
  width: 100%;
}

.kv-flex .kv-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 540px) {
  .kv-flex .kv-item {
    width: 100%;
  }
}
.kv-flex .kv-item .logo {
  width: 30vw;
}

/* News Section */
.news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
}

.news-section {
  width: 67.5vw; /* 1080px at 1600px viewport */
  max-width: 100%;
  margin-bottom: 2rem;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid white;
}
@media (max-width: 1200px) {
  .news-section {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .news-section {
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    padding: 2rem;
  }
}

.news-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}
@media (max-width: 540px) {
  .news-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.news-item {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .news-item {
    flex-direction: column;
    justify-content: baseline;
  }
}

.news-date {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  white-space: nowrap;
}

.news-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.5;
  flex: 1;
}

.news-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3.5rem;
  background-color: #006896;
  color: white;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
  transition: 0.3s;
}
@media (max-width: 540px) {
  .news-button {
    width: 14rem;
    text-align: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    margin: 0 auto;
  }
}

.news-button:hover {
  background-color: #005a80;
  transition: 0.3s;
}

.news-button span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1rem;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
}

/* Section Titles */
.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.08rem;
  line-height: 1.5;
  color: white;
}

/* Store Location Section */
.store-location-section {
  width: 67.5vw;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 1200px) {
  .store-location-section {
    width: 100%;
  }
}

.section {
  width: 67.5vw;
  max-width: 90%;
}
@media (max-width: 1200px) {
  .section {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .section {
    gap: 2rem !important;
  }
}

.section._v2 {
  width: 100%;
  max-width: 100%;
}

.section._v2 .section_inner {
  width: 67.5vw;
}
@media (max-width: 1200px) {
  .section._v2 .section_inner {
    width: 100%;
  }
}

.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 2rem;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid white;
  background: linear-gradient(90deg, rgb(0, 104, 150) 0%, rgb(0, 0, 0) 100%);
  cursor: pointer;
  transition: 0.3s;
}

.accordion-header:hover {
  background: linear-gradient(90deg, rgba(0, 104, 150, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  transition: 0.3s;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

@media (max-width: 768px) {
  .location-info {
    align-items: flex-start;
  }
}
.city-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  color: white;
  white-space: nowrap;
}

/* @media (max-width: 768px) {
  .city-name {
    text-align: left;
  }
} */
.venue-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-name,
.venue-dates {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: 0.0275rem;
  line-height: 1.5;
  color: white;
}

.accordion-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

.accordion-item:not(.active) .minus-icon {
  display: none;
}

.accordion-item.active .plus-icon {
  display: none;
}

.accordion-content {
  border: 1px solid white;
  border-top: none;
  background-color: white;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 69rem;
}
@media (max-width: 540px) {
  .accordion-item.active .accordion-content {
    max-height: 63rem;
  }
}

.location-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.details-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.5;
  color: black;
}

.map-image {
  width: 100%;
  max-width: 51.6875rem;
  height: 17.1875rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.payment-info {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.5;
  color: black;
}

.payment-info a {
  color: black;
  text-decoration: underline;
}

/* How to Enter Section */
.how-to-enter-section {
  width: 67.5vw;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 1200px) {
  .how-to-enter-section {
    width: 100%;
  }
}

.entry-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.entry-card {
  border: 1px solid white;
  background: transparent;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 540px) {
  .entry-card {
    padding: 2.5rem 1.6rem;
  }
}

.entry-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}
@media (max-width: 540px) {
  .entry-title {
    font-size: 1.8rem;
  }
}

.separator {
  width: 20.875rem;
  height: 1px;
  background-color: white;
}

.entry-details {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}
@media (max-width: 540px) {
  .entry-details span {
    display: none;
  }
}

.entry-details._v2 {
  text-align: left;
  width: 100%;
  max-width: 80%;
}
@media (max-width: 540px) {
  .entry-details._v2 {
    max-width: 100%;
  }
}
.entry-details._v2 span {
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 0.6rem;
  margin-top: 1rem;
}

.entry-details-location {
  margin-bottom: 3rem;
}
.entry-details-location h4 {
  margin-top: 1.5rem;
  background-color: white;
  color: black;
  font-size: 1.2rem;
  padding: 0.1rem 0.9rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.entry-details-location span {
  margin: 0.2rem 0 !important;
  font-size: 0.95rem !important;
}
@media (max-width: 540px) {
  .entry-details-location span {
    font-size: 1rem !important;
  }
}
.entry-details-location p {
  font-size: 1.3rem;
}
.entry-details-location .entry-details-location-item-content {
  border-bottom: 1px solid white;
}
.entry-details-location .entry-details-location-item-date {
  margin-bottom: 1.5rem;
}

.tac {
  text-align: center !important;
}

.entry-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3.5rem;
  background-color: #006896;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition: 0.3s;
  text-decoration: none;
}

.entry-button._v2 {
  display: inline-block;
  text-decoration: none;
  margin-top: 0.5rem;
  padding: 0.8rem 2rem;
  color: #fff;
}
@media (max-width: 540px) {
  .entry-button._v2 {
    margin-top: 0.8rem;
    padding: 0.8rem 1.5rem;
  }
}

.entry-button:hover {
  background-color: #005a80;
  transition: 0.3s;
}

.entry-button span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Goods Section */
.goods-section {
  width: 67.5vw;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
@media (max-width: 1200px) {
  .goods-section {
    width: 100%;
  }
}

.goods-link {
  cursor: pointer;
}

.goods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}
.goods-grid::after {
  width: 21.166875rem;
  content: "";
}
@media (max-width: 1200px) {
  .goods-grid::after {
    width: 47%;
  }
}

.goods-item {
  width: 21.166875rem;
}
@media (max-width: 1200px) {
  .goods-item {
    width: 47%;
  }
}

/* Store Limited Goods Section */
.store-limited-goods-section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.store-cards {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

.store-card {
  width: 100%;
  background: linear-gradient(180deg, rgb(0, 104, 150) 0%, rgb(0, 0, 0) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.store-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.06rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.store-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}

.store-item {
  width: 21.166875rem;
  background: transparent;
}

/* Contact Section */
.contact-section {
  width: 67.5vw;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background-color: #404040;
  text-align: center;
}
@media (max-width: 1200px) {
  .contact-section {
    width: 100%;
  }
}

.contact-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.contact-button-container {
  justify-content: center;
  display: flex;
  margin: 2rem 0;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 3.5rem;
  background-color: white;
  color: black;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition: 0.3s;
}

.contact-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

.contact-button span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: black;
}

.contact-button .arrow-icon {
  color: black;
}

.contact-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

/* Notes Section */
.notes-section {
  width: 67.5vw;
  max-width: 90%;
  border: 1px solid black;
  background-color: #d6d6d6;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .notes-section {
    width: 100%;
    padding: 2.5rem 1.5rem;
  }
}

.notes-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.08rem;
  line-height: 1.5;
  color: black;
  text-align: center;
}
@media (max-width: 540px) {
  .notes-title {
    font-size: 3rem;
  }
}

.notes-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  color: black;
}
@media (max-width: 540px) {
  .notes-content p {
    font-size: 1.1rem;
  }
}

.notes-content p {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  margin-top: -3rem;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}
@media (max-width: 540px) {
  .footer {
    gap: 2rem;
  }
}

.footer-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.social-icons {
  height: auto;
}

.share-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}
@media (max-width: 540px) {
  .share-title {
    margin-top: 2rem;
  }
}

.share-buttons {
  display: flex;
  gap: 2rem;
  margin-top: -1.5rem;
}
@media (max-width: 540px) {
  .share-buttons {
    margin-top: -0.6rem;
  }
}

.share-button {
  width: 11.25rem;
  background: linear-gradient(90deg, rgb(3, 29, 41) 0%, rgb(11, 100, 143) 50%, rgb(3, 29, 41) 100%);
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  transition: 0.3s;
}

.share-button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.share-button img {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button span {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.025rem;
  line-height: 1.5;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 540px) {
  .footer-links {
    margin-top: 2rem;
  }
}

.footer-links a {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.0175rem;
  line-height: 1.5;
  color: white;
  text-decoration: underline;
  text-align: center;
}

.copyright {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.015rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

/* Bottom Images */
.bottom-image {
  width: 70vw;
  max-width: 58vw;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.bottom-image:last-child {
  max-width: 90.6875vw; /* 1451px at 1600px viewport */
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .container {
    gap: 5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .location-info {
    flex-direction: column;
    gap: 1rem;
  }
  .city-name {
    font-size: 2rem;
  }
  .venue-name,
  .venue-dates {
    font-size: 1rem;
  }
  .goods-grid {
    gap: 1rem;
  }
  .goods-item,
  .store-item {
    width: 48%;
  }
  .share-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 12.5px;
  }
}
@media (max-width: 540px) {
  .section {
    width: 100%;
    max-width: 90%;
  }
} 
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: -1.5rem;
}
@media (max-width: 540px) {
  .footer-sns {
    margin-top: -0.6rem;
  }
}
.footer-sns .footer-sns-item {
  cursor: pointer;
  width: auto;
  height: 2rem;
  transition: 0.3s;
}
.footer-sns .footer-sns-item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.footer-sns .footer-sns-item img {
  height: 100%;
  width: auto;
}

.news-page {
  min-height: 60vh;
  width: 1100px;
  margin: 0 auto 10rem;
}
.news-page a {
  color: #31a8dc;
  font-family: "Noto Serif JP", serif;
}
.news-page img {
  width: 700px;
  max-width: 90%;
}
.news-page h2 {
  font-size: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
  margin-bottom: 40px;
  font-family: inherit;
  font-family: "Noto Serif JP", serif;
}
.news-page h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  font-family: "Noto Serif JP", serif;
}
.news-page h4 {
  font-family: "Noto Serif JP", serif;
}

.news-page-inner {
  margin-top: 5rem;
}
@media (max-width: 540px) {
  .news-page-inner .news-title {
    font-size: 1.7rem;
  }
}
.news-page-inner p {
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 540px) {
  .news-page-inner p {
    font-size: 1.13rem;
  }
}

.news-page-content-img {
  width: 500px;
  max-width: 90%;
  margin-bottom: 1rem;
}

iframe {
  width: 100%;
  max-width: 100%;
  margin-top: -1.5rem;
}
@media (max-width: 540px) {
  iframe {
    height: 20rem;
  }
}

#preview-wovn-translate-widget[wovn].type-default.wovn--position-top,
#wovn-translate-widget[wovn].type-default.wovn--position-top {
  top: 1rem !important;
  right: 9rem !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector .wovn-lang-selector-links .wovn-current-lang,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector .wovn-lang-selector-links .wovn-current-lang {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: none !important;
  color: #006896 !important;
  border-radius: 999px;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector {
  background-color: transparent !important;
  box-shadow: none !important;
}

#preview-wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet,
#wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet {
  display: none !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-selector {
  background-color: none !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li {
  color: #006896 !important;
}

#preview-wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet + .wovn-current-lang,
#wovn-translate-widget[wovn].type-default .wovn-lang-selector .wovn-lang-selector-links #wovn-logo-planet + .wovn-current-lang {
  padding: 0.5rem 1rem 0.5rem 1.5rem !important;
}

#preview-wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li.selected:before,
#wovn-translate-widget[wovn].type-default.wovn--color-default .wovn-lang-container .wovn-lang-list li.selected:before {
  background-color: #006896 !important;
}/*# sourceMappingURL=styles.css.map */