@charset "UTF-8";
/* ===== Shared Components ===== */
/* ── Shared Page Hero (ph) ── */
.ph {
  position: relative;
  height: 460px;
  overflow: hidden;
  background-repeat: no-repeat;
  /* Default background setup - override background-image in specific page css */
  background-size: auto 100%, auto 150%;
  background-position: center, calc(50% - 739px) calc(50% - 173px);
}

.ph__inner {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  max-width: 1024px;
  transform-origin: center top;
  transform: scale(var(--ph-fv-scale, 1));
}

.ph__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 160px;
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--c-text);
}

.ph__breadcrumb a {
  color: var(--c-text);
  text-decoration: none;
}

.ph__breadcrumb span[aria-hidden] {
  font-size: 10px;
}

.ph__title {
  margin: 0;
  padding-top: 70px;
  font-family: var(--ff-title);
  font-size: 58px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-title);
}

@media screen and (min-width: 768px) {
  .ph.ph--fv-scaled {
    height: var(--ph-fv-height, 460px);
  }
}
@media screen and (max-width: 1280px) {
  .ph {
    background-position: center, -80% 120%;
  }
}
@media screen and ( max-width: 767px ) {
  .ph {
    height: 88vw;
    margin-top: 140px;
    /* Default background setup - override background-image in specific page css */
    background-size: 100% auto;
    background-position: center bottom;
  }
  .ph__breadcrumb {
    display: none;
  }
  .ph__title {
    padding-top: 9.3vw;
    font-size: 8vw;
  }
}
/* ── Global typography ── */
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--c-text);
}

/* ── section scale ── */
.scale-inner {
  zoom: var(--sec-scale, 1);
}

/* ── Shared CTA link component ── */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .cta-link:hover .cta-link__circle {
    transform: translateX(6px);
  }
}
.cta-link__text {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

/* frame: top_PC — 円形 36px、黒枠；矢印 64px；hover 白背景、全体的に右へ */
.cta-link__circle {
  display: block;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cta-link__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(30%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary);
  border: 1px solid #000;
  transition: background 0.2s ease;
}

@media (hover: hover) {
  .cta-link:hover .cta-link__circle::before {
    background: #fff;
  }
}
.cta-link__circle img {
  width: 64px;
  height: auto;
  display: block;
  transition: filter 0.2s ease;
  position: relative;
  z-index: 1;
}

.cta-link__circle--sm {
  width: 36px;
  height: 36px;
}