/* ==============================================
   Reset & Base
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f3f7ff;
  color: #14263f;
  font-family: 'Ryo Gothic PlusN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
    'メイリオ', Meiryo, 'MS PGothic', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ==============================================
   Hero Section — PC
   ============================================== */
.hero {
  background: #f3f7ff;
  margin-block: 160px 80px;
}

/* Relative container; height matches the Figma hero area (963 - 167px header ≈ 796px) */
.hero__inner {
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

/* Building image — right side, full hero height */
.hero__image-wrap {
  width: min(48%, 560px);

  .hero__image {
    width: 100%;
    aspect-ratio: 13/21;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* Text content — left side, lower than image start */
.hero__content {

  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Page Title block */
.page-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-title__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.dot {
  display: block;
  width: 12px;
  height: 12px;
}

.dot--green {
  background: #9fc707;
}

.dot--blue {
  background: #0798ed;
}

.page-title__ja {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 4px;
  color: #14263f;
  white-space: nowrap;
}

/* "Contact" — indented to align with h1 text (after dots) */
.page-title__en {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.8px;
  color: #14263f;
  padding-left: 24px;
}

/* Description — indented same as Contact */
.hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.6px;
  color: #14263f;
  padding-left: 24px;
}

/* ============= Breadcrumb ============= */
.breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: min(94%, 1360px);
  padding: 24px 20px;
  margin-inline: auto;
}

.breadcrumb__link {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1.2px;
  color: #14263f;
}

.breadcrumb__dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #9fc707;
  border-radius: 50%;
  flex-shrink: 0;
}

.breadcrumb__current {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1.2px;
  color: #14263f;
  opacity: 0.64;
}

@media screen and (max-width:1280px) {
  .page-title__ja {
    font-size: 32px;
  }

  .page-title__en {
    font-size: 16px;
    padding-left: 20px;
  }

  .hero__desc {
    font-size: 1.4rem;
  }

  .hero__image-wrap {

    .hero__image {
      aspect-ratio: 4/5;
    }
  }

  .dot {
    display: block;
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width:960px) {
  .hero__inner {
    flex-direction: column;
  }

  .hero__content {
    width: 100%;
  }

  .hero__image-wrap {
    width: 100%;

    .hero__image {
      aspect-ratio: 4/3;
      border-radius: 6px;
    }
  }

  .hero__inner {
    padding: 0 16px;
  }

  .breadcrumb {
    padding: 16px 8px;
    gap: 8px;
  }

  .breadcrumb__dot {
    width: 5px;
    height: 5px;
  }

}

@media screen and (max-width:640px) {
  .page-title__ja {
    font-size: 24px;
  }

  .page-title__en {
    font-size: 10px;
    padding-left: 16px;
  }

  .hero__content {
    gap: 24px;
  }

  .hero__desc {
    font-size: 1.2rem;

    br {
      display: none;
    }
  }

  .dot {
    display: block;
    width: 8px;
    height: 8px;
  }

  .hero__image-wrap {

    .hero__image {
      border-radius: 4px;
    }
  }

  .hero__inner {
    padding: 0 12px;
  }

  .breadcrumb__link,
  .breadcrumb__current {
    font-size: 10px;
  }

}