/* ================================================
   TOKYO OFFICE PAGE STYLES
   ================================================ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=M+PLUS+1p:wght@500;700;800&display=swap');

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 1rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000000;
}

.hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #718096;
}

/* ================================================
   Office Section
   ================================================ */

.office-section {
  padding: 5rem 1rem;
  background-color: #f7fafc;
}

.office-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Info Box */
.info-box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.info-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.info-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #718096;
}

.info-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #1a202c;
  line-height: 1.6;
}

/* Map Box */
.map-box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-image {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ================================================
   Tablet Responsive (max-width: 1024px)
   ================================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .info-title {
    font-size: 24px;
  }
}

/* ================================================
   Mobile Responsive (max-width: 767px)
   ================================================ */

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .office-section {
    padding: 3rem 1rem;
  }

  .info-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .info-title {
    font-size: 22px;
    margin-bottom: 1.5rem;
  }

  .info-content {
    gap: 1.25rem;
  }

  .info-label {
    font-size: 13px;
  }

  .info-text {
    font-size: 15px;
  }
}
