/* ===========================
   Font Family Imports
   =========================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Old+Standard+TT:wght@400;700&display=swap");

/* ===========================
   CSS Variables
   =========================== */
:root {
  --color-base: #ffffff;
  --color-text-dark: #2d1e16;
  --color-accent: #9e1b1b;
  --color-text-light: #dfdfdf;
  --font-serif: "Noto Serif JP", serif;
  --font-serif-old: "Old Standard TT", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-bottom: 0;
}
.fadeIn{
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.fadeIn.visible {
    opacity: 1;
}
a{
    text-decoration: none;
}
/* ===========================
   Hero Section
   =========================== */
.hero-section {
  width: 100%;
  height: 949px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  position: relative;
  overflow: visible;
}
.hero-section:after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 3;
}

.hero-wrapper {
  display: flex;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  background: url("./assets/kv.png") center right/50% auto no-repeat;
  box-sizing: content-box;
}
.hero-sp {
  display: none;
}
.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 610px;
  margin: 0 auto;
}

.hero-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 12px;
}

.one-piece-logo {
  height: 82px;
  width: 224px;
  object-fit: contain;
}

.aquacity-logo {
  height: 68px;
  width: 217px;
  object-fit: contain;
}

.separator {
  font-family: var(--font-serif);
  font-size: 50.094px;
  line-height: 1.2;
  color: var(--color-text-light);
  font-weight: 900;
  letter-spacing: 2.5px;
  height: 68px;
  display: flex;
  align-items: center;
}

.netflix-title {
  font-size: 28.726px;
  line-height: 1.3;
  text-align: center;
  color: white;
  font-weight: 700;
  width: 100%;
}

.popup-location {
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  color: white;
  font-weight: 700;
  width: 100%;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  text-align: center;
  color: white;
  line-height: 1.6;
}

.release-date {
  font-family: var(--font-serif-old);
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  height: 84px;
}

.hero-description {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 1.1px;
  font-weight: 700;
}

.hero-description p {
  margin-bottom: 0;
}

/* ===========================
   Main Content Section
   =========================== */
.main-content {
  width: 100%;
  min-height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("./assets/main-bg.png");
}

.content-wrapper {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 95px;
  align-items: center;
  margin: 0 auto;
}

/* ===========================
   Content Blocks
   =========================== */
.content-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.goods-block,
.novelty-block,
.event-block,
.installation-block {
  width: 933px;
  margin: 0 auto;
}
.installation-block {
  padding-bottom: 80px;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.section-title {
  font-size: 90px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 4.5px;
  color: var(--color-text-dark);
  text-shadow: 0px 9.572px 9.572px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.section-subtitle {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 2.25px;
  color: var(--color-text-dark);
  text-shadow: 0px 9.572px 9.572px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.section-subtitleem {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 2.25px;
  text-align: center;
  color: var(--color-text-dark);
  text-shadow: 0px 9.572px 9.572px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.section-description {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  font-weight: 900;
  color: var(--color-text-dark);
  text-align: center;
}

.section-description-box {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--color-text-dark);
  text-align: center;
  width: 875.3px;
  max-width: 100%;
}

/* ===========================
   Image Placeholders
   =========================== */
.image-placeholder {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 497.77px;
  height: 255.103px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-text {
  font-family: var(--font-serif);
  font-size: 91.358px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: var(--color-text-dark);
  text-shadow: 0px 8.825px 8.825px rgba(0, 0, 0, 0.25);
  transform: rotate(-5deg);
  letter-spacing: 0;
}

/* ===========================
   Popup Shop Section
   =========================== */
.popup-shop-header {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0;
}

.date-info,.event-content .date-info {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 2.25px;
  color: var(--color-text-dark);
  text-shadow: 0px 9.572px 9.572px rgba(0, 0, 0, 0.25);
  height: 73.969px;
  margin: 0;
}

/* ===========================
   Island Experiences
   =========================== */
.island-experiences {
  width: 1100px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.island-row {
  display: flex;
  gap: 29.724px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.island-image {
  position: relative;
  width: 509.922px;
  height: 339.948px;
  overflow: hidden;
  flex-shrink: 0;
}

.island-image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.location-label {
  position: absolute;
  display: flex;
  gap: 10px;
  right: 0;
  height: 100%;
  align-items: center;
}

.location-bar {
  width: 52.843px;
  height: 100%;
  background-color: var(--color-accent);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.location-name {
  font-family: var(--font-serif);
  font-size: 43.092px;
  font-weight: 900;
  line-height: 1;
  color: white;
  text-align: center;
  width: 53.986px;
  position: relative;
  z-index: 1;
  margin-right: 10px;
}

.location-name.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.island-description {
  width: 560.276px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.island-description h3 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1.9px;
  color: var(--color-text-dark);
  margin: 0;
}

.island-description p {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: var(--color-text-dark);
}

/* ===========================
   Event Content
   =========================== */
.event-content {
  width: 875.3px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 37px;
  align-items: center;
  text-align: center;
}

.event-content h3, .section-description h3 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1.9px;
  color: var(--color-text-dark);
  margin: 0;
}
 .section-description h3{
  margin-bottom: 50px;
 }

.event-content p {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: var(--color-text-dark);
}

/* ===========================
   Installation Content
   =========================== */
.installation-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: center;
  text-align: center;
}

.installation-content h3 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1.9px;
  color: var(--color-text-dark);
  margin: 0;
}

.installation-content p {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  font-weight: 900;
  color: var(--color-text-dark);
}

/* ===========================
   Footer Section
   =========================== */
.footer-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 107px;
  align-items: center;
  background-color: #000;
  padding: 160px 90px 0;
  position: relative;
}
.footer-section:before {
  content: "";
  position: absolute;
  top: -7%;
  left: 0;
  width: 100%;
  height: 7%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
}

.footer-block {
  width: 100%;
  max-width: 933px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.footer-header {
  gap: 17px;
}

.footer-header .section-title {
  color: white;
}

.footer-header .section-subtitle {
  color: white;
}

/* ===========================
   Attention Section
   =========================== */
.attention-content {
  width: 831.169px;
  max-width: 100%;
  font-family: "Source Han Serif", serif;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 5px;
  color: white;
  font-weight: 400;
}

/* ===========================
   Information Section
   =========================== */
.information-content {
  width: 923px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 66px;
  align-items: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  text-align: center;
  color: white;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item p:first-child {
  margin-bottom: 10px;
}

.map-placeholder {
  width: 100vw;
  height: 610px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 107px;
  align-items: center;
  background-color: #000;
  padding: 50px 0 5px;
}
.footer-wrapper {
  width: 100%;
  text-align: center;
}
.footer-wrapper p {
  color: #fff;
}
.footer-txt {
  font-size: 36px;
  margin-bottom: 42px;
}
.footer-wrapper a {
  width: 590px;
  background-color: #9e1b1b;
  display: flex;
  justify-content: center;
  font-size: 50px;
  padding: 30px 50px;
  border-radius: 10px;
  margin: 0 auto;
  gap: 5%;
}
.footer-wrapper a img {
  width: 63px;
  height: auto;
}
.copyright {
  font-size: 18px;
  font-weight: 200;
  color: #fff;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1280px) {
  .hero-section {
    height:auto
  }
  .hero-left{
    aspect-ratio: 641 /950;
  }
  .hero-wrapper {
    max-width: 100%;
    background-position:top right;
  }
  .netflix-title {
    font-size: 24px;
  }
.popup-location {
    font-size: 24px;
  }
  .hero-content {
    width: 100%;
  }
  .hero-description p{
    font-size: 18px;
  }

  .main-content {
    padding: 80px 20px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .goods-block,
  .novelty-block,
  .event-block,
  .installation-block,
  .island-experiences {
    width: 100%;
  }

  .island-row {
    width: 90%;
    gap: 20px;
  }
  .island-image{
    width: 50%;
  }

  .section-title {
    font-size: 50px;
  }

  .section-subtitle {
    font-size: 30px;
  }

  .footer-section {
    padding: 80px 20px;
  }
}
@media (max-width: 980px) {
  .hero-section {
    height: auto;
  }
  .hero-wrapper {
    flex-direction: column;
    background: none;
    justify-content: center;
  }
  .hero-sp {
    display: block;
    width: 100%;
    margin: 0;
  }
  .hero-left {
    width: 100%;
    height: auto;
    background: none;
    padding: 40px 20px;
    aspect-ratio:auto;
  }
  .hero-section:after {
    bottom: -5%;
    height: 5%;
  }
  .island-row {
    flex-direction: column !important;
    gap: 20px;
  }
  .island-row:nth-of-type(2) {
    flex-direction: column-reverse !important;
  }
  .island-image {
    width: 90%;
    height: auto;
  }
  .island-description {
    width: 100%;
  }
  .footer-section:before {
    top: -3%;
    height: 3%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 22px;
    letter-spacing: 1px;
  }
.section-header{
    gap: 20px;
} 
  .section-description,
  .event-content p,
  .island-description p {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .hero-header .section-title {
    font-size: 24px;
  }

  .coming-soon-text {
    font-size: 50px;
  }

  .logo-section {
    gap: 10px;
  }

  .one-piece-logo {
    height: 50px;
    width: 130px;
  }

  .aquacity-logo {
    height: 40px;
    width: 130px;
  }

  .separator {
    font-size: 30px;
  }

  .netflix-title {
    font-size: 18px;
  }

  .popup-location {
    font-size: 18px;
  }

  .release-date {
    font-size: 36px;
  }
.island-description h3,.event-content h3,.installation-content h3,.section-description h3{
    font-size: 24px;
  }
  .hero-description {
    font-size: 14px;
  }
  .installation-content p{
    font-size: 16px;
  }
  .date-info ,.event-content .date-info{
    font-size: 22px;
    height: auto;
  }
  
  .section-description h3{
    margin-bottom: 20px;
  }
  .event-content{
    gap: 20px;
  }
  .attention-content {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .information-content {
    gap: 30px;
  }
  .info-item p {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .footer-section {
    padding: 40px 5%;
  }
  .footer-txt {
    font-size: 18px;
  }
  .footer-wrapper a {
    width: 80%;
    font-size: 24px;
    padding: 20px;
  }
  .footer-wrapper a img {
    width: 10%;
  }
  .copyright {
    font-size: 12px;
  }
}
