/* ===========================
  PROCEDURES
=========================== */
.page-procedures .container{
  width: var(--container);
  margin: 0 auto;
}

/* HERO */
.proc-hero{
  padding: 44px 0 22px;
  background: #f3f6ff;
}
.proc-hero-inner{
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 18px;
  align-items: start;
}
.proc-kicker{ margin: 0 0 6px; letter-spacing: .12em; font-size: 12px; opacity: .7; }
.proc-title{ margin: 0 0 10px; font-size: clamp(22px, 3vw, 34px); font-weight: 900; }
.proc-lead{ margin: 0; color: rgba(15,23,42,.75); line-height: 1.8; }

.proc-hero-cta{ margin-top: 14px; }

.mypage-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.mypage-ic{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
}
.mypage-text{ display: grid; gap: 2px; }
.mypage-top{ font-weight: 900; font-size: 18px; }
.mypage-sub{ font-size: 12px; color: rgba(255,255,255,.75); }
.mypage-arrow{ opacity: .8; }

.proc-hero-mini{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mini-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  font-size: 13px;
}

.hero-note{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 14px;
}
.hero-note-head{ margin-bottom: 8px; }
.hero-badge{
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
}
.hero-note-list{
  margin: 0;
  padding-left: 1.2em;
  color: rgba(15,23,42,.78);
  line-height: 1.9;
}

/* STICKY NAV */
.proc-sticky{
  position: sticky;
  top: var(--header-h-pc, 96px);
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.proc-sticky-inner{
  padding: 10px 0;
  display: flex;
  gap: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.proc-chip{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  text-decoration: none;
  color: inherit;
  font-weight: 900;
  font-size: 13px;
}

/* BODY */
.proc-body{ padding: 24px 0 64px; }

.proc-download .dl-card{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 16px;
  margin-bottom: 18px;
}
.proc-download h2{ margin: 0 0 6px; font-size: 16px; font-weight: 900; }
.proc-download p{ margin: 0; color: rgba(15,23,42,.72); line-height: 1.8; }

/* BLOCK */
.proc-block{ margin: 22px 0; }
.proc-head{ margin-bottom: 12px; }
.proc-h2{ margin: 0 0 6px; font-size: 20px; font-weight: 900; }
.proc-desc{ margin: 0; color: rgba(15,23,42,.72); }

/* SUMMARY */
.proc-summary{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 10px;
}
.sum-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 12px 14px;
}
.sum-label{ display:block; font-size: 12px; opacity: .7; font-weight: 800; }
.sum-val{ display:block; margin-top: 6px; font-weight: 900; }

.badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
}
.badge-warn{ background: #fff7ed; border-color: rgba(251,146,60,.35); }
.badge-danger{ background: #fff1f2; border-color: rgba(244,63,94,.30); }

/* ACCORDION */
.proc-acc{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  overflow: hidden;
}
.proc-acc-summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proc-acc-summary::-webkit-details-marker{ display: none; }
.proc-acc[open] .acc-arrow{ transform: rotate(180deg); }
.acc-arrow{ transition: transform .18s ease; opacity: .7; }

.proc-acc-body{
  padding: 0 16px 16px;
}

/* TABLE (2 columns like reference) */
.proc-table{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
}
.trow{
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid rgba(0,0,0,.08);
}
.trow:first-child{ border-top: 0; }
.th{
  background: #f8fafc;
  padding: 12px 12px;
  font-weight: 900;
  color: rgba(15,23,42,.85);
}
.td{
  padding: 12px 12px;
  color: rgba(15,23,42,.78);
  line-height: 1.8;
}

/* CALLOUT */
.proc-callout{
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid rgba(251,146,60,.35);
}
.proc-callout i{ margin-top: 2px; }
.proc-callout.is-danger{
  background: #fff1f2;
  border-color: rgba(244,63,94,.30);
}
.callout-title{ margin: 0 0 4px; font-weight: 900; }
.callout-text{ margin: 0; color: rgba(15,23,42,.75); line-height: 1.8; }

/* actions */
.proc-actions{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* footer note */
.proc-footnote .footnote-card{
  margin-top: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 16px;
}
.proc-footnote h2{ margin: 0 0 10px; font-size: 18px; font-weight: 900; }
.proc-footnote ul{ margin: 0; padding-left: 1.2em; color: rgba(15,23,42,.78); line-height: 1.9; }

/* responsive */
@media (max-width: 960px){
  .proc-hero-inner{ grid-template-columns: 1fr; }
  .proc-summary{ grid-template-columns: 1fr; }
  .trow{ grid-template-columns: 140px 1fr; }
  .proc-sticky{ top: var(--header-h-sp, 76px); }
}


/* 追加CSS */
/* ===== 窓口CTA（マイページなし版） ===== */
.cta-grid{
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.cta-card{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  text-decoration:none;
  color: inherit;
}

.cta-card--tel{
  border-color: rgba(15,23,42,.18);
}

.cta-card--line{
  border-color: rgba(0,0,0,.10);
}

.cta-ic{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: #f3f6ff;
}

.cta-text{ display:grid; gap:2px; }
.cta-top{ font-weight: 900; font-size: 16px; }
.cta-sub{ font-size: 12px; color: rgba(15,23,42,.70); }
.cta-arrow{ opacity: .7; }

/* 共通案内 */
.proc-common .common-card{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background:#fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 16px;
  margin-bottom: 18px;
}
.common-card h2{ margin: 0 0 6px; font-size: 16px; font-weight: 900; }
.common-card p{ margin: 0; color: rgba(15,23,42,.72); line-height: 1.8; }

.common-tags{ display:flex; gap: 10px; flex-wrap: wrap; }
.tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  font-weight: 900;
  font-size: 13px;
}

.hero-sub{ margin-left: 8px; font-size: 12px; opacity: .75; }
.hero-help{
  margin: 10px 0 0;
  color: rgba(15,23,42,.72);
  line-height: 1.8;
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.hero-help i{ margin-top: 2px; }

@media (max-width: 960px){
  .cta-grid{ grid-template-columns: 1fr; }
}