/* ============================================================
   stoked life — 
   - @container page → @media に変換（本番に .frame コンテナは無い）
   ============================================================ */
:root {
  --blue: #006dd2;
  --blue-deep: #0059ac;
  --blue-soft: #f0f6fc;
  --cyan: #3faed4;
  --ink: #14202b;
  --ink-soft: #566676;
  --line: #e8edf2;
  --bg: #ffffff;
  --bg-soft: #f7f9fb;
  --panel: #eef2f6;
  --radius: 1.6rem;
  --shadow-sm: 0 1rem 3rem -2rem rgba(20, 32, 43, .3);
  --shadow: 0 2.4rem 6rem -3.4rem rgba(20, 32, 43, .32);
  --maxw: 124rem;
  --jp: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --body: "Noto Sans JP", sans-serif;
  --en: "Outfit", sans-serif;
  --tel: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 10px
}

/* リキッドレイアウト: 1440pxカンプ基準。1441px以上でvw連動拡大、1920px相当でキャップ */
@media (min-width:1441px) {
  html {
    font-size: min(calc(100vw / 144), 13.334px)
  }
}

body {
  background: #fff;
  font-family: var(--body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.95
}

img {
  display: block;
  max-width: 100%
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 4.8rem
}

.sec {
  padding: 10.4rem 0
}

.label {
  font-family: var(--en);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 1.2rem
}

.label::before {
  content: "";
  width: 2.6rem;
  height: 0.1rem;
  background: var(--cyan)
}

.sec-head {
  margin-bottom: 5.4rem
}

.sec-head.center {
  text-align: center
}

.sec-head.center .label {
  justify-content: center
}

.sec-title {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 3.4rem;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-top: 1.8rem
}

.lead {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: .03em
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 999px;
  transition: .24s;
  border: 0.1rem solid transparent;
  white-space: nowrap
}

.btn .arw {
  font-family: var(--en);
  transition: transform .24s
}

.btn:hover .arw {
  transform: translateX(0.5rem)
}

.btn-primary {
  background: var(--blue);
  color: #fff
}

.btn-primary:hover {
  background: var(--blue-deep)
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line)
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue)
}

.btn-light {
  background: #fff;
  color: var(--blue)
}

.btn-light:hover {
  background: var(--blue-soft)
}

.ph {
  position: relative;
  background: linear-gradient(135deg, #e2ebf4 0%, #f1f5fa 55%, #e8eef5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.ph::after {
  content: attr(data-label);
  font-family: var(--en);
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #8aa1ba;
  border: 0.1rem dashed #aebfd2;
  padding: 0.5rem 1.2rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, .55);
  text-align: center;
  max-width: 84%;
  line-height: 1.5
}

.ph.has-img::after {
  display: none
}

.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ===== ① ヘッダー（1行） ===== */
header.site {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 0.1rem solid var(--line)
}

.hdr {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  max-width: 140rem;
  margin: 0 auto;
  padding: 1.8rem 4.8rem
}

.logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center
}

.logo-img {
  height: 4.2rem;
  width: auto;
  display: block
}

.gnav {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin-left: auto
}

.gnav a {
  display: block;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  position: relative;
  transition: .18s;
  white-space: nowrap
}

.gnav a:hover {
  color: var(--blue)
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 0 0 auto
}

.hdr-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  line-height: 1.2
}

.hdr-tel .telico {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--blue);
  flex: 0 0 auto
}

.hdr-tel .lbl {
  font-size: 1rem;
  color: var(--ink-soft);
  letter-spacing: .08em
}

.hdr-tel .num {
  font-family: var(--tel);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: .01em;
  color: var(--blue);
  text-decoration: none
}

.mailbtn {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.3rem;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .22s;
  flex: 0 0 auto
}

.mailbtn:hover {
  background: var(--blue-deep)
}

.mailbtn svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.6rem;
  flex: 0 0 auto
}

.hamburger span {
  width: 2.4rem;
  height: 0.2rem;
  background: var(--ink)
}

/* ===== ② ヒーロー（Figma調整版：大型英字見出し＋リード文＋カード画像＋全幅青帯） ===== */
.hero {
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden
}

.hero-wrap {
  max-width: var(--maxw);
  width: calc(100% - 4.8rem);
  margin: 0 auto
}

.hero .hero-head {
  padding: 7.6rem 0 3.2rem
}

.hero-en {
  display: block;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1.2;
  letter-spacing: .02em;
  color: #d3d3d3;
}

.hero h1 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: .015em;
  margin-top: 1.6rem;
  color: var(--ink)
}

.hero h1 .hl {
  color: var(--blue)
}

.hero-lead {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: .02em;
  margin-top: 1.6rem
}

.sp-br {
  display: none
}

.hero-band {
  position: relative;
  margin: 0;
  padding-bottom: 8rem
}

.hero-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 21rem;
  bottom: 0;
  background: var(--blue)
}

.hero-band .media {
  position: relative;
  overflow: hidden;
  height: 36rem;
  border-radius: 2.4rem;
  background: var(--panel)
}

.hero-band .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* ===== ③ マンスリー誘導（3枚） ===== */
.monthly {
  background: #fff;
  padding: 9.6rem 0 10.4rem
}

.monthly .lead {
  color: var(--blue);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.6;
  margin-top: 1.4rem
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem
}

.mcard {
  background: #fff;
  border: 0.1rem solid var(--line);
  border-radius: 2.2rem;
  padding: 1.4rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: .28s
}

.mcard:hover {
  box-shadow: var(--shadow);
  transform: translateY(-0.5rem);
  border-color: #cfe0f2
}

.mcard .panel {
  background: var(--panel);
  border-radius: 1.4rem;
  overflow: hidden
}

.mcard .panel .ph {
  aspect-ratio: 16/9.5;
  background: linear-gradient(135deg, #dde7f2, #eef3f9)
}

.mcard .meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem 1.2rem 1rem
}

.mcard .meta .lbl {
  font-family: var(--en);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--blue)
}

.mcard .meta h3 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: .03em;
  line-height: 1.3;
  margin-top: 0.8rem
}

.mcard .meta .sub {
  font-family: var(--jp);
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin-top: 0.4rem
}

.mcard .meta .dom {
  font-family: var(--en);
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-top: 0.5rem
}

.mcard .iconbtn {
  flex: 0 0 auto;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.2rem;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .24s
}

.mcard .iconbtn svg {
  width: 1.9rem;
  height: 1.9rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.mcard:hover .iconbtn {
  background: var(--blue-deep);
  transform: translate(0.2rem, -0.2rem)
}

.note {
  font-size: 1.2rem;
  color: #9aabbd;
  margin-top: 2rem;
  letter-spacing: .02em
}

/* ===== ④ 事業内容 ===== */
.biz {
  background: var(--bg-soft)
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem
}

.bcard {
  background: #fff;
  border: 0.1rem solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .28s;
  text-decoration: none;
  color: inherit
}

.bcard:hover {
  border-color: #cfe0f2;
  box-shadow: var(--shadow);
  transform: translateY(-0.4rem)
}

.bcard .ph {
  aspect-ratio: 16/7.5
}

.bcard .body {
  padding: 3.2rem 3.4rem 3.6rem
}

.bcard .tagnum {
  font-family: var(--en);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .12em
}

.bcard h3 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2.3rem;
  letter-spacing: .03em;
  margin: 1rem 0 1.4rem
}

.bcard p {
  font-size: 1.45rem;
  color: var(--ink-soft)
}

.bcard .more {
  margin-top: 2rem;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue);
  display: inline-flex;
  gap: 0.8rem;
  align-items: center
}

.bcard .more .arw {
  font-family: var(--en);
  transition: transform .22s
}

.bcard:hover .more .arw {
  transform: translateX(0.5rem)
}

/* ===== ⑤ 会社情報・アクセス ===== */
.company {
  background: #fff
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 5.6rem;
  align-items: center
}

.company dl {
  display: grid;
  grid-template-columns: 7em 1fr;
  row-gap: 1.6rem;
  margin: 2.8rem 0 3.4rem;
  font-size: 1.5rem
}

.company dt {
  color: var(--ink-soft);
  font-weight: 700
}

.company dd {
  color: var(--ink)
}

.company .map .ph {
  aspect-ratio: 4/3;
  border-radius: var(--radius)
}

.company .map iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: var(--radius);
  display: block
}

/* ===== ⑥ 採用 ===== */
.recruit {
  background: var(--bg-soft)
}

.recruit-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  border: 0.1rem solid var(--line);
  border-radius: 2.2rem;
  overflow: hidden;
  background: #fff
}

.recruit-card .ph {
  min-height: 30rem
}

.recruit-card .txt {
  padding: 5.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.recruit-card h3 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: .03em;
  margin: 1.6rem 0 1.4rem;
  line-height: 1.45
}

.recruit-card p {
  color: var(--ink-soft);
  font-size: 1.5rem;
  margin-bottom: 2.8rem
}

/* ===== ⑦ お問い合わせ（CV） ===== */
.cta {
  background: linear-gradient(120deg, #0a4f93, var(--blue));
  color: #fff;
  text-align: center
}

.cta .label {
  color: #bfe0ff;
  justify-content: center
}

.cta .label::before {
  background: #bfe0ff
}

.cta h3 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: .04em;
  margin-top: 1.8rem
}

.cta>.wrap>p {
  color: #dcebfb;
  margin: 1.8rem auto 0;
  max-width: 34em
}

.cta-box {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  flex-wrap: wrap
}

.cta-tel {
  background: rgba(255, 255, 255, .12);
  border: 0.1rem solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  padding: 2.2rem 4rem;
  text-align: left
}

.cta-tel .lbl {
  font-size: 1.1rem;
  color: #cfe6ff;
  letter-spacing: .06em
}

.cta-tel .num {
  font-family: var(--tel);
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: .01em;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  display: block
}

.cta-tel .hours {
  font-size: 1.2rem;
  color: #cfe6ff
}

/* ===== ⑧ フッター ===== */
footer.site {
  background: #fff;
  border-top: 0.1rem solid var(--line);
  padding: 6.4rem 0 0
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4.8rem;
  padding-bottom: 4.4rem
}

.ft-logo {
  height: 3.8rem;
  margin-bottom: 2rem
}

.ft-grid p {
  font-size: 1.3rem;
  color: var(--ink-soft);
  line-height: 1.95
}

.ft-col h5 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: .08em;
  margin-bottom: 1.6rem
}

.ft-col a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1.3rem;
  padding: 0.6rem 0;
  transition: .15s
}

.ft-col a:hover {
  color: var(--blue)
}

.ft-mrb {
  font-size: 1.1rem !important;
  color: #9aabbd !important
}

.ft-bottom {
  border-top: 0.1rem solid var(--line);
  padding: 2.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.ft-bottom .links {
  display: flex;
  gap: 2rem;
  font-size: 1.2rem
}

.ft-bottom a {
  color: var(--ink-soft);
  text-decoration: none
}

.ft-bottom a:hover {
  color: var(--blue)
}

.ft-bottom .cr {
  font-family: var(--en);
  font-size: 1.1rem;
  color: #9aabbd;
  letter-spacing: .03em
}

/* ===== モバイルナビ（パネル） ===== */
.mnav-panel {
  display: none
}

/* ============================================================
   レスポンシブ（3段階）
   - 〜128rem：PCナビが詰まる中間幅を緩和（横一列を維持）
   - 〜108rem：横一列が収まらないためヘッダーをハンバーガーに切替
   - 〜82rem ：レイアウト（段組み・タイポ）をスマホ化
   ※カンプの @container page は本番のビューポート @media に変換済み
   ============================================================ */

/* 中間幅：間隔・余白を詰め、長いTELラベルを隠して番号だけ残す */
@media (max-width:1280px) {
  .hdr {
    gap: 1.6rem;
    padding: 1.8rem 2.8rem
  }

  .gnav a {
    padding: 1rem 1.1rem;
    letter-spacing: .01em
  }

  .hdr-tel .lbl {
    display: none
  }

  .hdr-tel .num {
    font-size: 2rem
  }
}

/* ヘッダー：108rem以下はハンバーガーに切替 */
@media (max-width:1080px) {

  .gnav,
  .hdr-tel {
    display: none
  }

  .hdr-actions {
    margin-left: auto
  }

  .hamburger {
    display: flex
  }

  .mnav-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 0.1rem solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: 40
  }

  .mnav-panel.open {
    max-height: calc(100vh - 7.8rem);
    max-height: calc(100dvh - 7.8rem);
    overflow-y: auto
  }

  .mnav-panel ul {
    list-style: none;
    padding: 0.8rem 2.2rem 1.8rem
  }

  .mnav-panel>ul>li>a {
    display: block;
    font-family: var(--jp);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--ink);
    text-decoration: none;
    padding: 1.5rem 0;
    border-bottom: 0.1rem solid var(--line)
  }

  .mnav-panel .mtel {
    margin-top: 1.8rem;
    text-align: center;
    background: var(--blue-soft);
    border-radius: 1.2rem;
    padding: 1.6rem
  }

  .mnav-panel .mtel .num {
    font-family: var(--tel);
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: .01em;
    color: var(--blue);
    text-decoration: none
  }
}

/* レイアウト：82rem以下でスマホ表示 */
@media (max-width:820px) {
  .sec {
    padding: 5.8rem 0
  }

  .wrap {
    padding-left: 2.2rem;
    padding-right: 2.2rem
  }

  .hdr {
    padding: 1.4rem 1.8rem;
    gap: 1.2rem
  }

  .logo-img {
    height: 3rem
  }

  .mailbtn {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 1.1rem
  }

  .hero-wrap {
    width: calc(100% - 4.4rem)
  }

  .hero .hero-head {
    padding: 4rem 0 2rem
  }

  .hero-en {
    font-size: 2.2rem
  }

  .sp-br {
    display: inline
  }

  .pc-br {
    display: none
  }

  .hero h1 {
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: .01em;
    margin-top: 1rem
  }

  .hero-lead {
    font-size: 1.4rem;
    margin-top: 1.2rem
  }

  .hero-band {
    padding-bottom: 4rem
  }

  .hero-band::before {
    top: 46%
  }

  .hero-band .media {
    height: clamp(20rem, 34vh, 32rem);
    border-radius: 1.4rem
  }

  .sp-br {
    display: inline
  }

  .pc-br {
    display: none
  }

  .pc-br {
    display: none
  }

  .sec-title {
    font-size: 2.5rem
  }

  .sec-head {
    margin-bottom: 3.2rem
  }

  .monthly {
    padding: 4.8rem 0 5.8rem
  }

  .monthly-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem
  }

  .mcard .meta h3 {
    font-size: 2.2rem
  }

  .biz-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .recruit-card {
    grid-template-columns: 1fr
  }

  .recruit-card .ph {
    min-height: 20rem
  }

  .recruit-card .txt {
    padding: 3.6rem 2.8rem
  }

  .recruit-card h3 {
    font-size: 2.2rem
  }

  .cta h3 {
    font-size: 2.5rem
  }

  .cta-box {
    flex-direction: column;
    gap: 1.6rem
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ============================================================
   下層ページ（賃貸管理／法人／お問い合わせ）共通
   ※カンプの @container page は @media に変換
   ============================================================ */
/* パンくず＋ページヒーロー */
.crumb {
  font-size: 1.2rem;
  color: var(--ink-soft);
  letter-spacing: .03em
}

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

.crumb a:hover {
  color: var(--blue)
}

.pagehero {
  background: var(--bg-soft)
}

.pagehero .wrap {
  padding-top: 6rem;
  padding-bottom: 7.2rem
}

.pagehero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2.6rem
}

.pagehero .badge {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--blue);
  background: #fff;
  border: 0.1rem solid #cfe0f2;
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  font-weight: 700
}

.pagehero h1 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: .03em;
  line-height: 1.45;
  margin-top: 1.6rem
}

.pagehero .lead {
  margin-top: 2rem;
  max-width: 28em
}

.pagehero .lead.lead-wide {
  max-width: none
}

.pagehero .cta-row {
  margin-top: 2.8rem
}

.pagehero .ph {
  aspect-ratio: 4/3.2;
  border-radius: 1.8rem;
  box-shadow: var(--shadow)
}

/* ===== 汎用ページ本文（the_content） ===== */
.wrap.narrow {
  max-width: 88rem
}

/* 会社概要：本文は78.4rem・左寄せ、マップはコンテンツ全幅16:9 */
.company-doc {
  max-width: none
}

.company-doc table {
  width: 100%;
  max-width: 78.4rem
}

.company-doc figure.wp-block-table {
  max-width: 78.4rem
}

.company-map {
  margin-top: 4.8rem;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel)
}

.company-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0
}

.prose {
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 2
}

.prose>*:first-child {
  margin-top: 0
}

.prose h2 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: .02em;
  margin: 4.4rem 0 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid var(--line)
}

.prose h3 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .02em;
  margin: 3.2rem 0 1.2rem
}

.prose h4 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.7rem;
  margin: 2.4rem 0 1rem
}

.prose p {
  margin: 0 0 1.8rem
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2rem
}

.prose ul,
.prose ol {
  margin: 0 0 1.8rem;
  padding-left: 1.4em
}

.prose li {
  margin: 0.7rem 0
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2.4rem;
  font-size: 1.5rem
}

.prose th,
.prose td {
  border: 0.1rem solid var(--line);
  padding: 1.2rem 1.5rem;
  text-align: left;
  vertical-align: top
}

.prose th {
  background: var(--bg-soft);
  white-space: nowrap;
  width: 30%;
  font-weight: 700
}

.prose img {
  border-radius: 1.2rem;
  margin: 1.2rem 0
}

.prose blockquote {
  border-left: 0.3rem solid var(--blue);
  padding: 0.6rem 0 0.6rem 1.8rem;
  color: var(--ink-soft);
  margin: 0 0 1.8rem
}

.prose hr {
  border: 0;
  border-top: 0.1rem solid var(--line);
  margin: 3.4rem 0
}

/* 5つのメリット */
.merit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem
}

.merit {
  background: var(--bg-soft);
  border: 0.1rem solid var(--line);
  border-radius: 1.4rem;
  padding: 2.8rem 1.8rem;
  text-align: center;
  transition: .24s
}

.merit:hover {
  border-color: #cfe0f2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-0.3rem)
}

.merit .n {
  font-family: var(--en);
  font-weight: 700;
  color: var(--blue);
  font-size: 1.3rem;
  letter-spacing: .12em
}

.merit p {
  font-size: 1.35rem;
  margin-top: 1.2rem;
  color: var(--ink);
  line-height: 1.7
}

/* 借上げの強み 01-05 */
.strengths {
  background: var(--bg-soft)
}

.strength {
  display: flex;
  gap: 2.6rem;
  align-items: flex-start;
  padding: 2.8rem 0;
  border-top: 0.1rem solid var(--line)
}

.strength:last-child {
  border-bottom: 0.1rem solid var(--line)
}

.strength .num {
  font-family: var(--en);
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--blue);
  line-height: 1;
  flex: 0 0 auto;
  width: 7rem
}

.strength .c h4 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: .02em
}

.strength .c p {
  color: var(--ink-soft);
  font-size: 1.45rem;
  margin-top: 0.6rem
}

.strength .c p .em {
  color: var(--blue);
  font-weight: 700
}

/* サポート3点 */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem
}

.support {
  background: #fff;
  border: 0.1rem solid var(--line);
  border-radius: 1.6rem;
  padding: 3.8rem 3rem;
  text-align: center;
  transition: .24s
}

.support:hover {
  border-color: #cfe0f2;
  box-shadow: var(--shadow);
  transform: translateY(-0.4rem)
}

.support .ic {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2.2rem
}

.support h4 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem
}

.support p {
  font-size: 1.4rem;
  color: var(--ink-soft)
}

/* 契約の流れ 比較 */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: stretch
}

.flow-card {
  background: #fff;
  border: 0.1rem solid var(--line);
  border-radius: 1.8rem;
  padding: 3.6rem 3.4rem;
  position: relative
}

.flow-card.reco {
  border-color: var(--blue);
  box-shadow: var(--shadow)
}

.flow-card .ctag {
  font-family: var(--jp);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4rem 1.4rem;
  display: inline-block
}

.flow-card .ctag.normal {
  color: var(--ink-soft);
  background: var(--bg-soft)
}

.flow-card .ctag.best {
  color: #fff;
  background: var(--blue)
}

.flow-card h4 {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 2.2rem;
  margin: 1.6rem 0 1.8rem
}

.flow-card ul {
  list-style: none
}

.flow-card li {
  position: relative;
  padding: 0.9rem 0 0.9rem 3rem;
  font-size: 1.45rem;
  color: var(--ink-soft);
  border-bottom: 0.1rem dashed var(--line)
}

.flow-card li:last-child {
  border-bottom: 0
}

.flow-card li::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 1.6rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #c7d2dd
}

.flow-card.reco li::before {
  background: var(--blue)
}

/* お問い合わせ：左情報＋フォーム */
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 4.6rem;
  align-items: start
}

.cinfo .telcard {
  background: var(--blue-soft);
  border: 0.1rem solid #cfe0f2;
  border-radius: 1.6rem;
  padding: 2.6rem 2.8rem
}

.cinfo .telcard .lbl {
  font-size: 1.1rem;
  color: var(--ink-soft);
  letter-spacing: .06em
}

.cinfo .telcard .num {
  font-family: var(--tel);
  font-weight: 700;
  font-size: 3.4rem;
  letter-spacing: .01em;
  color: var(--blue);
  line-height: 1.1;
  margin-top: 0.4rem;
  text-decoration: none;
  display: block
}

.cinfo .telcard .hours {
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-top: 0.6rem
}

.cinfo ul {
  list-style: none;
  margin-top: 2.6rem
}

.cinfo li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.6rem;
  font-size: 1.4rem;
  color: var(--ink-soft)
}

.cinfo li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 1.5rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--blue)
}

.cnote {
  margin-top: 2.6rem;
  font-size: 1.2rem;
  color: #9aabbd;
  line-height: 1.9
}

.form-card {
  background: #fff;
  border: 0.1rem solid var(--line);
  border-radius: 2rem;
  padding: 4.2rem 4.4rem;
  box-shadow: var(--shadow-sm)
}

.field {
  margin-bottom: 2.2rem
}

.field label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--jp);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.9rem
}

.req {
  font-size: 1rem;
  color: #fff;
  background: #dc5640;
  border-radius: 0.4rem;
  padding: 0.2rem 0.7rem;
  font-weight: 700;
  letter-spacing: .04em
}

.opt {
  font-size: 1rem;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 0.1rem solid var(--line);
  border-radius: 0.4rem;
  padding: 0.2rem 0.7rem
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0.1rem solid var(--line);
  border-radius: 1rem;
  padding: 1.3rem 1.5rem;
  font-family: var(--body);
  font-size: 1.5rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: .18s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(0, 109, 210, .12)
}

.field textarea {
  min-height: 14rem;
  resize: vertical;
  line-height: 1.7
}

.consent {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 0.1rem solid var(--line);
  border-radius: 1.2rem;
  padding: 1.6rem 1.8rem;
  font-size: 1.3rem;
  color: var(--ink-soft)
}

.consent input {
  margin-top: 0.3rem;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  accent-color: var(--blue)
}

.consent a {
  color: var(--blue)
}

.submit-row {
  margin-top: 2.6rem;
  text-align: center
}

.submit-row .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.6rem;
  padding: 1.8rem
}

/* Contact Form 7 をデザインに合わせる */
.form-card .wpcf7-form p {
  margin: 0
}

.form-card .wpcf7-form-control-wrap {
  display: block
}

.form-card input.wpcf7-form-control,
.form-card select.wpcf7-form-control,
.form-card textarea.wpcf7-form-control {
  width: 100%;
  border: 0.1rem solid var(--line);
  border-radius: 1rem;
  padding: 1.3rem 1.5rem;
  font-family: var(--body);
  font-size: 1.5rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: .18s
}

.form-card .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 0.3rem rgba(0, 109, 210, .12)
}

.form-card textarea.wpcf7-form-control {
  min-height: 14rem;
  resize: vertical;
  line-height: 1.7
}

.form-card .wpcf7-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.6rem;
  padding: 1.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--jp);
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: .24s
}

.form-card .wpcf7-submit:hover {
  background: var(--blue-deep)
}

.form-card .wpcf7-not-valid-tip {
  color: #dc5640;
  font-size: 1.2rem;
  margin-top: 0.6rem
}

.form-card .wpcf7-response-output {
  margin: 1.8rem 0 0 !important;
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  font-size: 1.3rem
}

.form-card .cf7-fallback {
  border: 0.1rem dashed #aebfd2;
  border-radius: 1.2rem;
  padding: 1.8rem;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: 1.3rem;
  line-height: 1.9
}

/* 下層ページ SP */
@media (max-width:820px) {
  .pagehero .wrap {
    padding-top: 4rem;
    padding-bottom: 4.8rem
  }

  .pagehero-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin-top: 2rem
  }

  .pagehero h1 {
    font-size: 2.7rem
  }

  .prose {
    font-size: 1.55rem;
    line-height: 1.95
  }

  .prose h2 {
    font-size: 2.1rem;
    margin-top: 3.2rem
  }

  .prose th,
  .prose td {
    display: block;
    width: 100%
  }

  .prose th {
    border-bottom: 0
  }

  .merit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
  }

  .strength {
    gap: 1.6rem;
    padding: 2.2rem 0
  }

  .strength .num {
    font-size: 2.8rem;
    width: 5rem
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem
  }

  .form-card {
    padding: 2.8rem 2.2rem
  }
}