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

.kv-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding-top: 5rem;
}
@media (max-width: 540px) {
  .kv-item {
    padding-top: 4rem;
  }
}

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

.section {
  width: 67.5vw;
  max-width: 90%;
  padding: 5rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .section {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .section {
    margin: 0 auto;
    padding: 3.5rem 0;
    width: 100%;
    max-width: 90%;
  }
}

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

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

.section-title {
  font-family: "Abril Fatface", cursive;
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: 0.4rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media (max-width: 540px) {
  .section-title {
    font-size: 2.9rem;
    padding-bottom: 0.8rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1.6rem;
  }
}

/* Container */
.container {
  width: 100vw;
  min-height: 100vh;
  padding: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
}
.container.fade-in {
  opacity: 1;
}

.intro {
  width: 100%;
  padding-top: 7rem;
  background-color: #000000;
}
@media (max-width: 540px) {
  .intro {
    padding-top: 4rem;
  }
}
.intro .intro-content {
  margin: 0rem auto;
}
@media (max-width: 540px) {
  .intro .intro-content {
    margin-top: 0;
  }
}
.intro .intro-inner {
  padding: 0rem 0 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/intro_bg.webp);
}
@media (max-width: 540px) {
  .intro .intro-inner {
    padding: 1rem 0;
  }
}
.intro .intro-title {
  border-bottom: 1px solid white;
  margin-bottom: 3rem;
}
@media (max-width: 540px) {
  .intro .intro-title {
    margin-bottom: 2rem;
  }
}
.intro .intro-subtitle {
  text-align: center;
}
.intro .intro-subtitle h3 {
  line-height: 1.4;
  font-size: 2rem;
}
@media (max-width: 540px) {
  .intro .intro-subtitle h3 {
    line-height: 1.6;
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
}
.intro .intro-subtitle h3 span {
  font-size: 4rem;
}
@media (max-width: 540px) {
  .intro .intro-subtitle h3 span {
    font-size: 2.8rem;
  }
}
.intro .intro-subtitle h3 .txtm {
  font-size: 1.6rem;
}
@media (max-width: 540px) {
  .intro .intro-subtitle h3 .txtm {
    font-size: 1.4rem;
  }
}
.intro .intro-text {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 1rem;
}
@media (max-width: 540px) {
  .intro .intro-text {
    font-size: 1.25rem;
  }
}

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

.news-section {
  width: 67.5vw;
  max-width: 100%;
  margin-bottom: 2rem;
  gap: 2rem;
  padding: 2rem;
  border-top: 1px solid white;
}
.news-section:last-of-type {
  border-bottom: 1px solid white;
}
@media (max-width: 1200px) {
  .news-section {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .news-section {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
    max-width: 100%;
    padding: 1.5rem;
  }
}

.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;
  align-items: flex-start;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .news-item {
    flex-direction: column;
    justify-content: baseline;
    align-items: initial;
  }
}

.news-date {
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  white-space: nowrap;
}

.news-text {
  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: #19425c;
  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-weight: 600;
  font-size: 1rem;
}

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

.store-location-section {
  width: 67.5vw;
  max-width: 90%;
  margin: 0rem auto !important;
  padding-top: 8rem;
}
@media (max-width: 1200px) {
  .store-location-section {
    width: 100%;
    margin: 0 auto !important;
    padding: 5rem 0;
  }
}

.accordion {
  width: 100%;
}

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

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: url(../images/schedule.webp) no-repeat center center;
  background-size: cover;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 540px) {
  .accordion-header {
    padding: 1rem 1.5rem;
  }
}

.accordion-header:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}
@media (max-width: 540px) {
  .location-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }
}

.city-name {
  font-family: "Source Serif 4", serif;
  font-size: 2.5rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  color: white;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .city-name {
    font-size: 2rem;
  }
}

.venue-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-name,
.venue-dates {
  font-size: 1.575rem;
  letter-spacing: 0.0275rem;
  line-height: 1.5;
  color: white;
}
@media (max-width: 540px) {
  .venue-name,
  .venue-dates {
    font-size: 1.15rem;
  }
}

.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-top: none;
  background-color: white;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.accordion-content iframe {
  width: 100%;
  height: 15rem;
}

.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;
}
@media (max-width: 540px) {
  .location-details {
    gap: 1rem;
  }
}

.details-text {
  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-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.5;
  color: black;
}

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

.mb-3 {
  margin-bottom: 3rem;
}
/* How to Enter Section */
.how-to-enter-section {
  width: 100%;
  padding: 5rem 0;
  position: relative;
}
@media (max-width: 540px) {
  .how-to-enter-section {
    padding: 2rem 0;
  }
}
.how-to-enter-section::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("https://dyvx7gvcyc9io.cloudfront.net/ado/exhibition-adotomy/ticket_bg.webp");
  background-size: cover;
  background-position: 0 -4rem;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 1200px) {
  .how-to-enter-section::before {
    width: 100%;
    background-position: 0 0rem;
  }
}
@media (max-width: 540px) {
  .how-to-enter-section::before {
    background-position: center center;
    padding: 4rem 0 5rem;
  }
}

.how-to-enter-inner {
  margin: 0 auto;
}

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

.entry-card {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3.5rem 8%;
}
@media (max-width: 540px) {
  .entry-card {
    padding: 2.5rem 1.4rem;
  }
}

.entry-title {
  font-weight: 600;
  font-size: 2rem;
  background: url(../images/ticket_title.webp) no-repeat center center;
  background-size: cover;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  color: white;
  display: inline-block;
  width: 100%;
  padding: 0.3rem 0 0.3rem 2.4rem;
  margin-bottom: 1.7rem;
}
@media (max-width: 540px) {
  .entry-title {
    font-size: 1.35rem;
    padding: 0.5rem 1rem;
  }
}

.entry-details {
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.5;
  color: #24346a;
}
.entry-details h4 {
  font-size: 1.6rem;
  border-bottom: 1px solid #320076;
  margin-bottom: 0.7rem;
}
@media (max-width: 540px) {
  .entry-details h4 {
    font-size: 1.2rem;
  }
}

.entry-details-text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media (max-width: 540px) {
  .entry-details-text {
    font-size: 1.125rem;
  }
}

.entry-image {
  margin: 1rem 0;
}

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

.button {
  text-align: center;
}

.button2 a {
  font-size: 1.2rem;
  text-align: center;
  padding: 0.9rem 0.6rem;
  width: 22rem;
  margin-top: 0.5rem;
}

.entry-button {
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition: 0.3s;
  text-decoration: none;
  width: 17rem;
  padding: 0.9rem 0;
  margin: 0 auto;
  background: url(../images/button_bg.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  font-family: "hiragino-mincho-pron", sans-serif !important;
  font-size: 1.5rem;
  display: inline-block;
  font-weight: bold;
}
@media (max-width: 540px) {
  .entry-button {
    width: 13rem;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
}

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

.modal-button {
  text-align: center;
}

.entry-button:hover {
  scale: 1.05;
  transition: 0.3s;
}

.entry-button span {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Goods Section */
.goods-section {
  background-color: #1c3654;
  padding: 1rem 0;
}
@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;
}
@media (max-width: 540px) {
  .goods-grid {
    gap: 1rem;
  }
}
.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%;
  }
}

/* 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: #000000;
  text-align: center;
}
@media (max-width: 1200px) {
  .contact-section {
    width: 100%;
  }
}

.contact-subtitle {
  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-weight: 600;
  font-size: 1.125rem;
  color: black;
}

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

.contact-note {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

/* Entry Modal */
.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: 87vh;
    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 20px 40px;
}
@media (max-width: 540px) {
  .entry-modal-body {
    padding: 50px 1.5rem 24px;
  }
}

.entry-modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0rem;
  text-align: center;
  color: #ffffff;
  padding: 0.8rem 0.6rem;
  background: url(../images/ticket_title.webp) no-repeat center center;
  margin-bottom: 2rem;
}
@media (max-width: 540px) {
  .entry-modal-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
}

.entry-modal-content-inner {
  line-height: 1.8;
  color: #1e3c69;
}
.entry-modal-content-inner h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e3c69;
  margin: 0.4rem 0 0.4rem;
  margin-top: 4rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #005a80;
  text-align: center;
}
@media (max-width: 540px) {
  .entry-modal-content-inner h3 {
    font-size: 1.3rem;
    margin: 3rem 0 0.4rem;
    padding: 0.5rem 0rem;
  }
}
.entry-modal-content-inner p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
@media (max-width: 540px) {
  .entry-modal-content-inner p {
    font-size: 1rem;
  }
}
.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;
}

.coming-soon {
  background-color: white;
  color: #24346a;
  text-align: center;
  padding: 6rem 0;
  font-size: 1.8rem;
}/*# sourceMappingURL=styles.css.map */