.content-page {
  background: #fff;
}

.content-main {
  color: #202020;
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.content-main *,
.content-main *::before,
.content-main *::after {
  box-sizing: border-box;
}

.content-main img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.content-page-title {
  padding: 16px 20px;
  background: var(--meets-pale-blue);
}

.content-page-title h1 {
  margin: 0;
  color: var(--meets-deep-green);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.content-breadcrumb {
  display: flex;
  gap: 9px;
  padding-top: 10px;
  padding-bottom: 35px;
  color: #202020;
  font-size: 14px;
}

.content-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

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

.content-section {
  padding: 40px 0 60px;
}

.content-section--white {
  background: #fff;
}

.content-section--cream {
  background: #fcfbf5;
}

.content-back-button {
  display: flex;
  padding: 20px 20px 60px;
  justify-content: center;
}

.content-back-button a {
  display: inline-flex;
  min-width: 230px;
  height: 60px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--meets-green);
  box-shadow: 0 7px 18px rgba(34, 147, 94, .18);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.content-back-button a::after {
  content: "▶";
  font-size: 14px;
}

.content-back-button a:hover {
  opacity: .88;
  transform: translateY(-2px);
}

@media (max-width: 750px) {
  .content-page-title {
    padding: 12px 20px;
  }

  .content-page-title h1 {
    font-size: 24px;
    letter-spacing: .02em;
  }

  .content-breadcrumb {
    padding-top: 8px;
    padding-bottom: 15px;
    font-size: 12px;
  }

  .content-section {
    padding: 30px 0 45px;
  }

  .content-back-button {
    padding: 10px 20px 40px;
  }

  .content-back-button a {
    min-width: 210px;
    height: 54px;
    border-radius: 17px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-back-button a {
    transition: none;
  }
}
