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

html {
  font-size: 1vw;
}
@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 3.27vw;
  }
}

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

.bgpnk {
  background-color: #e65397 !important;
  border: none !important;
  position: relative;
}
@media (max-width: 540px) {
  .bgpnk h2 {
    font-size: 1.9rem;
  }
}
.bgpnk .entry-title-container {
  text-align: center;
}
.bgpnk .entry-title {
  position: relative;
  display: inline-block;
}
.bgpnk .entry-img {
  position: absolute;
  top: -2rem;
  right: -11rem;
  width: 8rem;
}
@media (max-width: 540px) {
  .bgpnk .entry-img {
    width: 5.1rem;
    right: -5.2rem;
  }
}

.entry-details-content h4 {
  background-color: white;
  color: #e65397;
  padding: 0.5rem 1rem;
  margin-bottom: 0.6rem;
}

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

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

.kv-flex .kv-item {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.kv-flex .kv-item p {
  margin-left: 1.7rem;
  font-size: 0.9rem;
}
@media (max-width: 540px) {
  .kv-flex .kv-item p {
    font-size: 0.9rem;
  }
}

@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-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; /* 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;
  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-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  line-height: 1.5;
  white-space: nowrap;
}

.news-text {
  font-family: "Noto Sans JP", sans-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 Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

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

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.08rem;
  line-height: 1.5;
  color: white;
}

.section-title.v2 {
  border-bottom: 1px solid #fff;
  padding-bottom: 1.2rem;
}

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

.store-image {
  width: 50rem;
  max-width: 100%;
}

.store-image._v2 {
  width: 30rem;
  max-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;
}
@media (max-width: 540px) {
  .accordion-item {
    margin-bottom: 1rem;
  }
}
.accordion-item:last-of-type {
  margin-bottom: 1rem;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid white;
  background-color: #d7d7d7;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 540px) {
  .accordion-header {
    padding: 1.5rem 1rem;
  }
}

.accordion-header:hover {
  transition: 0.3s;
  background-color: #eaeaea;
}

.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: 2rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  white-space: nowrap;
}

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

.venue-name,
.venue-dates {
  font-family: "Noto Sans JP", sans-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: rgb(0, 0, 0);
}

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

.details-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  color: black;
}
.details-text span {
  font-size: 0.8rem;
}
@media (max-width: 540px) {
  .details-text span {
    font-size: 0.87rem;
  }
}

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

.payment-info {
  font-family: "Noto Sans JP", sans-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: 3.5rem 3.5rem;
  gap: 2rem;
}
@media (max-width: 540px) {
  .entry-card {
    padding: 2.5rem 1.4rem;
  }
}

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

.txts {
  font-size: 1rem;
}

.separator {
  width: 20.875rem;
  height: 1px;
  background-color: white;
  margin: 1.6rem auto 2.4rem;
}
@media (max-width: 540px) {
  .separator {
    margin: 1.4rem auto 2.4rem;
  }
}

@media (max-width: 540px) {
  .separator._v2 {
    background-color: #e65397;
    margin: 1rem auto;
  }
}

.entry-details {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.0225rem;
  line-height: 1.8;
  color: white;
}
@media (max-width: 540px) {
  .entry-details span {
    display: none;
  }
}
.entry-details h3 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 540px) {
  .entry-details h3 {
    font-size: 1.3rem;
  }
}
.entry-details p {
  text-align: left;
  line-height: 1.8;
}
@media (max-width: 540px) {
  .entry-details p {
    line-height: 1.6;
  }
}

.entry-details._v2 {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@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;
}

.border-area {
  border: 1px solid #fff;
  padding: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 540px) {
  .border-area {
    padding: 1.5rem;
  }
}
.border-area p {
  list-style: 1.8;
}

.entry-img {
  margin: 0.7rem auto;
  width: 100%;
  max-width: 100%;
}

.copyright-img {
  line-height: 1.2;
  display: inline-block;
  font-size: 0.2rem;
  position: absolute;
  right: 2rem;
  top: 7.6rem;
}
@media (max-width: 540px) {
  .copyright-img {
    right: 0rem;
    top: 4.9rem;
    width: 20vw;
  }
}

.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 Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

/* 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 Sans JP", sans-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 Sans JP", sans-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;
  color: black;
}
@media (max-width: 540px) {
  .notes-content p {
    font-size: 1.1rem;
  }
}
.notes-content h4 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1rem;
}

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

/* 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 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;
}

/* 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 Sans JP", sans-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 Sans JP", sans-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 Sans JP", sans-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 Sans JP", sans-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 Sans JP", sans-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;
}

@media (max-width: 768px) {
  .container {
    gap: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .location-info {
    flex-direction: column;
    gap: 1rem;
  }
  .city-name {
    font-size: 1.4rem;
  }
  .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: 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 Sans JP", sans-serif;
}
.news-page img {
  width: 700px;
  max-width: 90%;
}
.news-page h2 {
  font-size: 1.7rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
  margin-bottom: 40px;
  font-family: inherit;
  font-family: "Noto Sans JP", sans-serif;
}
.news-page h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.news-page h4 {
  font-family: "Noto Sans JP", sans-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 Sans JP", sans-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;
  }
}

.treca {
  min-height: 60vh;
  width: 1100px;
  margin: 0 auto 10rem;
}
.treca 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 Sans JP", sans-serif;
  text-align: center;
}
.treca p {
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 540px) {
  .treca p {
    font-size: 1.13rem;
  }
}
.treca a {
  color: #31a8dc;
  font-family: "Noto Sans JP", sans-serif;
}
.treca .treca-image {
  margin: 1rem 0;
  width: 100%;
  max-width: 90%;
}
@media (max-width: 540px) {
  .treca .treca-image {
    max-width: 100%;
  }
}
.treca .border-group {
  border: 1px solid #fff;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 540px) {
  .treca .border-group {
    padding: 2rem 1.7rem;
  }
}
.treca .border-group h3 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.primary {
  color: #00a0e9;
}

.border-b {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

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

.font-l {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .font-l {
    font-size: 1.3rem;
  }
}

.font-red {
  font-size: 0.9rem;
  line-height: 1.5;
  color: red;
}
@media (max-width: 540px) {
  .font-red {
    font-size: 0.95rem;
  }
}

.w-fix {
  width: 33rem;
  justify-content: center;
  max-width: 90%;
}
@media (max-width: 540px) {
  .w-fix {
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
}
.w-fix span {
  text-align: center;
  display: inline-block;
}

.online-store-head 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;
  margin-bottom: 0.8rem;
}

.entry-card.v2 {
  border: none !important;
}

.border-wrap {
  border: 1px solid white;
  padding: 2rem 5rem;
}
@media (max-width: 540px) {
  .border-wrap {
    padding: 0rem;
  }
}

.online-store-content {
  text-align: center;
}
.online-store-content .online-store-content-inner {
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}

header {
  margin-top: 0rem;
}
header h1 {
  text-align: center;
  font-size: 3.2rem;
  display: inline-block;
  margin-bottom: 3rem;
}
@media (max-width: 950px) {
  header h1 {
    font-size: 5.2vw;
  }
}
@media (max-width: 540px) {
  header h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
header .title-icon {
  position: absolute;
  right: -10rem;
  top: 0.5rem;
  width: 10rem;
}
@media (max-width: 950px) {
  header .title-icon {
    width: 13vw;
    right: -7vw;
    top: -4vw;
  }
}
@media (max-width: 540px) {
  header .title-icon {
    right: -1.5rem;
    top: 3.5rem;
    width: 6rem;
  }
}
header .header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-head {
  background-color: #fff;
  color: #000;
  padding: 0.7rem;
  margin-bottom: 1rem;
}

.bg-area {
  margin-top: 2rem;
  background-color: #d7d7d7;
  padding: 2rem;
}
.bg-area h4 {
  text-align: center;
  color: #000;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
@media (max-width: 540px) {
  .bg-area h4 {
    font-size: 1.3rem;
  }
}
.bg-area p {
  color: #000000;
  font-size: 1rem;
}

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

.tar {
  text-align: right;
}/*# sourceMappingURL=styles.css.map */