/* ============================================================
   Base — Section Rule / FP Section Titles / Badge / Site Main
   ============================================================ */

/* Section Rule — dot + label + fading line */
.sec-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 5rem 0 0;
  overflow: hidden;
}

.sec-rule__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
}

.sec-rule__label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  flex-shrink: 0;
}

.sec-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e2e2e2 50%, transparent);
}

/* Front-page section titles */
.fp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 2rem;
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* Badge — 準備中 */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2em .7em;
  border-radius: 999px;
  font-size: .65em;
  font-weight: 700;
  letter-spacing: .04em;
  vertical-align: middle;
  line-height: 1.6;
}

.badge--coming-soon {
  background: #ebebeb;
  color: #555555;
  border: 1px solid #d0d0d0;
}

.service-detail--coming-soon {
  opacity: .6;
  pointer-events: none;
  position: relative;
}

.service-detail--coming-soon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 6px,
    rgba(0,0,0,.02) 6px,
    rgba(0,0,0,.02) 12px
  );
  pointer-events: none;
}

/* Site main padding (for fixed header) */
.site-main {
}

.is-front .site-main {
  padding-top: 0;
}
