/* ========================================
LAYOUT
レイアウト・構造
======================================== */

/* inner
======================================== */
.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.inner.narrow {
  width: min(880px, calc(100% - 40px));
}

/* section
======================================== */
.section {
  padding: 80px 0;
}

.section-bg {
  background: #f8fbf9;
}

/* section heading
======================================== */
.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.section-heading-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #4d7c6f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.4;
  color: #1f2d2a;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.4;
  color: #1f2d2a;
}

.section-text,
.section-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #555555;
}

.page-paragraph {
  font-size: 16px;
  line-height: 2;
  color: #444444;
}

/* page hero
======================================== */
.page-hero {
  padding: 56px 0 64px;
}

.page-hero .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero-content {
  max-width: 820px;
}

.page-hero-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #4d7c6f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.3;
  color: #1f2d2a;
}

.page-hero-text {
  margin: 0;
  font-size: 17px;
  line-height: 2;
  color: #4a4a4a;
}

/* breadcrumb
======================================== */
.breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  font-size: 14px;
  color: #666666;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #999999;
}

.breadcrumb a {
  color: #4d7c6f;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* responsive
======================================== */
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .inner,
  .inner.narrow {
    width: min(100%, calc(100% - 32px));
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-title,
  .section-heading h2 {
    font-size: 26px;
  }

  .section-text,
  .section-heading p,
  .page-paragraph {
    font-size: 15px;
  }

  .page-hero {
    padding: 42px 0 52px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero-text {
    font-size: 15px;
    line-height: 1.9;
  }
}

@media (max-width: 480px) {
  .section-label,
  .page-hero-label {
    font-size: 12px;
  }

  .section-title,
  .section-heading h2 {
    font-size: 23px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .breadcrumb {
    margin-bottom: 16px;
  }

  .breadcrumb li {
    font-size: 12px;
  }
}
