/* ===== Page Hero ===== */
.page-hero__overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Greetings Section ===== */
.greetings {
  padding: 80px 0 100px;
  background: #fff;
}

.greetings__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.greetings__heading {
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  margin-bottom: 48px;
}

.greetings__title-en {
  font-size: var(--font-size-title);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  line-height: 1;
}

.greetings__title-ja {
  font-size: var(--font-size-sub-title);
  color: var(--color-text);
  margin-top: 0.8em;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.greetings__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.greetings__text {
  flex: 1;
}

.greetings__lead {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .greetings__lead {
    font-size: 22px;
  }
}

.greetings__text p {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  margin: 0 0 16px;
}

.greetings__sign {
  text-align: right;
  font-size: 18px;
  color: #333;
  margin-top: 32px;
  line-height: 2;
}

.greetings__image {
  width: 360px;
  flex-shrink: 0;
  background: #222;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.greetings__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .greetings__body {
    flex-direction: column;
  }

  .greetings__image {
    width: 100%;
  }
}

/* ===== Philosophy Section ===== */
.philosophy {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(225deg, rgba(2, 139, 185, 0.1) 30%, rgba(7, 8, 65, 0.1) 100%);
  overflow: hidden;
  border-bottom-right-radius: 200px;
}

.philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.philosophy__heading {
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  margin-bottom: 40px;
}

.philosophy__title-en {
  font-size: var(--font-size-title);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  line-height: 1;
}

.philosophy__title-ja {
  font-size: var(--font-size-sub-title);
  color: var(--color-text);
  margin-top: 0.8em;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.philosophy__text {
  padding-left: 4px;
}

.philosophy__lead {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.8;
}

.philosophy__body {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  line-height: 1.8;
  padding-left: 1em;
}

.philosophy__circle {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .philosophy {
    border-bottom-right-radius: 150px;
  }

  .philosophy__lead {
    font-size: 22px;
  }
}

/* ===== Company Info Section ===== */
.company-info {
  padding: 80px 0 100px;
  background: #fff;
}

.company-info__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.company-info__heading {
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  flex-shrink: 0;
  padding-top: 4px;
}

.company-info__title-en {
  font-size: var(--font-size-title);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  line-height: 1;
}

.company-info__title-ja {
  font-size: var(--font-size-sub-title);
  color: var(--color-text);
  margin-top: 0.8em;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.company-info__table-wrap {
  width: 100%;
  flex: 1;
}

.company-info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.company-info__table tr th {
  border-bottom: 1px solid var(--color-primary);
  font-size: 16px;
  font-weight: 600;
}

.company-info__table tr td {
  border-bottom: 1px solid var(--color-text-muted);
  font-size: 16px;
}

.company-info__table th {
  width: 20%;
  padding: 20px 16px 20px 0;
  color: #333;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  white-space: nowrap;
}

.company-info__table td {
  padding: 20px 0;
  color: #333;
  line-height: 1.8;
  vertical-align: top;
  word-break: break-all;
}

@media (max-width: 768px) {
  .company-info__inner {
    flex-direction: column;
    gap: 40px;
  }

  .company-info__table th {
    width: 20%;
  }
}