/* =========================================================
  FOUNDATION (shared)
  Scope: .outline_page_scope
========================================================= */

/* F-0) Scope variables */
.outline_page_scope{
  --sp-s:  40px;
  --sp-m:  72px;
  --sp-l: 120px;
  --sp-xl:160px;

  --readable:   860px;
  --readable-n: 760px;

  --ns-ink:   #334955;
  --ns-sub:   #6f8593;
  --ns-line:  #d6dde1;
  --ns-soft:  #f5f7f8;

  --panel-bg:   #ffffff;
  --panel-line: #d9e2e7;
  --head-bg:    #eef3f6;
  --text-main:  #1f2d3a;
  --text-sub:   #6f8593;
}

/* F-1) Page frame */
.outline_page_scope .page_frame{
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;

  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: var(--sp-l);

  box-sizing: border-box;
}

/* F-2) Spacing utilities */
.outline_page_scope .sp_s  { margin-bottom: var(--sp-s)  !important; }
.outline_page_scope .sp_m  { margin-bottom: var(--sp-m)  !important; }
.outline_page_scope .sp_l  { margin-bottom: var(--sp-l)  !important; }
.outline_page_scope .sp_xl { margin-bottom: var(--sp-xl) !important; }

/* F-3) Readable */
.outline_page_scope .readable{
  max-width: var(--readable);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px){
  .outline_page_scope .readable{ max-width: 100%; }
}

/* F-4) section_ttl spacing */
.outline_page_scope .section_ttl{
  margin-bottom: var(--sp-m) !important;
}

/* F-5) CTA button */
.outline_page_scope a.cta_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 260px;
  padding: 14px 22px;

  border: 1px solid rgba(148,171,180,.85);
  border-radius: 10px;

  background: #fff;
  color: #5A6A85;
  text-decoration: none;

  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.2;

  transition:
    transform .12s ease,
    box-shadow .12s ease,
    border-color .12s ease;
}
.outline_page_scope a.cta_btn::after{
  content: "→";
  font-weight: 700;
  color: #94abb4;
}
@media (hover:hover){
  .outline_page_scope a.cta_btn:hover{
    border-color: rgba(54,177,167,.6);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    transform: translateY(-1px);
  }
}
@media (max-width: 767.98px){
  .outline_page_scope a.cta_btn{
    width: 100%;
    min-width: 0;
  }
}