/* ================================================
   ABOUT 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 (Common for all about pages)
   ================================================ */

.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;
  margin-bottom: 0;
}

.hero-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-top: 1.5rem;
  max-width: 48rem;
}

/* ================================================
   About Page - Introduction Section
   ================================================ */

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

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

.intro-content {
  margin-bottom: 5rem;
  max-width: 48rem;
}

.intro-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--wedo-vibrant-blue);
}

.intro-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.intro-text:last-child {
  margin-bottom: 0;
}

/* Sub Navigation Cards */
.subnav-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.subnav-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  border-left: 4px solid var(--wedo-vibrant-blue);
  display: flex;
  flex-direction: column;
}

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

.subnav-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.subnav-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid var(--wedo-vibrant-blue);
  color: var(--wedo-vibrant-blue);
  border-radius: 9999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.subnav-card-link:hover {
  background-color: var(--wedo-vibrant-blue);
  color: #ffffff;
}

/* ================================================
   Message Page - Main Content
   ================================================ */

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

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

.message-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.message-text-column {
  /* Text column */
}

.message-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--wedo-vibrant-blue);
}

.message-paragraph {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

.message-paragraph:last-child {
  margin-bottom: 0;
}

.message-image-column {
  /* Image column */
}

.message-image-placeholder {
  /* background-color: #e2e8f0; */
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  font-size: 14px;
  height: 24rem;
}

.message-additional {
  max-width: 1200px;
}

.message-paragraph-wide {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

.message-quote-box {
  background-color: var(--wedo-vibrant-blue);
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.quote-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.message-signature {
  text-align: right;
  margin-top: 3rem;
  padding-top: 2rem;
}

.signature-line {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #4a5568;
  margin: 0.5rem 0;
}

/* ================================================
   Company Page - Company Info
   ================================================ */

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

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

.company-info-table {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.info-row:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

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

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

.business-list {
  list-style: disc;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.business-list li {
  margin-bottom: 0.25rem;
}

.business-list li a.underline{
  text-decoration:underline;
}

.business-list li:last-child {
  margin-bottom: 0;
}

.officer-list div {
  margin-bottom: 0.25rem;
}

.officer-list div:last-child {
  margin-bottom: 0;
}

/* Offices Section */
.offices-section {
  margin-top: 5rem;
}

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

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.office-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
}

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

.office-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.office-phone {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.office-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid var(--wedo-vibrant-blue);
  color: var(--wedo-vibrant-blue);
  border-radius: 9999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.office-link:hover {
  background-color: var(--wedo-vibrant-blue);
  color: #ffffff;
}

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

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

  .intro-title {
    font-size: 36px;
  }

  .message-title {
    font-size: 36px;
  }

  .subnav-cards {
    gap: 1.5rem;
  }

  .message-grid {
    gap: 2rem;
  }
}

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

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

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

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

  .hero-description {
    font-size: 15px;
  }

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

  .intro-content {
    margin-bottom: 3rem;
  }

  .intro-title {
    font-size: 28px;
  }

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

  .intro-text br {
    display: none;
  }

  .subnav-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .subnav-card {
    padding: 2rem;
  }

  .subnav-card-title {
    font-size: 24px;
  }

  .subnav-card-text {
    font-size: 15px;
  }

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

  .message-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .message-title {
    font-size: 28px;
  }

  .message-paragraph {
    font-size: 15px;
  }

  .message-paragraph-wide {
    font-size: 15px;
  }

  .message-quote-box {
    padding: 2rem;
  }

  .quote-heading {
    font-size: 16px;
  }

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

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

  .info-row {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }

  .info-label {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

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

  .offices-section {
    margin-top: 3rem;
  }

  .offices-title {
    font-size: 28px;
    margin-bottom: 2rem;
  }

  .offices-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .office-card {
    padding: 1.5rem;
  }

  .office-name {
    font-size: 20px;
  }

  .office-address,
  .office-phone {
    font-size: 15px;
  }
}

/* ================================================
   Desktop Responsive (min-width: 768px)
   ================================================ */

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .intro-title {
    font-size: 42px;
  }

  .message-title {
    font-size: 42px;
  }
}
