/* ============================================================
   不動産会社向けHP制作 LP — スタイルシート
   カラー: ネイビー #0B2A4A / オレンジ #F58220 /
           ホワイト #FFFFFF / ライトグレー #F5F7FA
   ============================================================ */

/* ---------- リセット & ベース ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #0B2A4A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: #F58220; text-decoration: none; }
a:hover { color: #d96f13; }
::selection { background: #F58220; color: #fff; }

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

.serif { font-family: 'Noto Serif JP', serif; }

@keyframes floatUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* セクション共通の見出し */
.section { padding: 96px 32px; }
.section-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
  color: #F58220; font-weight: 700; font-size: 15px;
  letter-spacing: .08em; margin-bottom: 12px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 38px; font-weight: 700; line-height: 1.4;
}
.section-lead { font-size: 16px; margin-top: 16px; }

/* ---------- 追従 CTA ---------- */
.side-cta {
  position: fixed; top: 50%; right: 0; transform: translateY(-50%);
  z-index: 60; writing-mode: vertical-rl;
  background: #F58220; color: #fff; font-weight: 700; font-size: 16px;
  letter-spacing: .18em; padding: 26px 15px; border-radius: 12px 0 0 12px;
  box-shadow: -4px 6px 22px rgba(245,130,32,.45);
  display: flex; align-items: center; gap: 14px;
}
.side-cta:hover { background: #d96f13; color: #fff; }
.side-cta .icon { writing-mode: horizontal-tb; font-size: 22px; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #E4E9F0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; color: #0B2A4A; }
.logo-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
.logo-text { font-weight: 900; font-size: 22px; letter-spacing: .01em; color: #0B2A4A; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: #0B2A4A; font-weight: 700; font-size: 15px; }
.nav a:hover { color: #F58220; }

.btn-primary {
  background: #F58220; color: #fff; font-weight: 900; font-size: 16px;
  padding: 13px 26px; border-radius: 8px; box-shadow: 0 4px 14px rgba(245,130,32,.35);
}
.btn-primary:hover { background: #d96f13; color: #fff; }

/* ---------- ヒーロー ---------- */
.hero { position: relative; background: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob-1 {
  position: absolute; right: -8%; bottom: -20%; width: 70%; height: 120%;
  background: linear-gradient(135deg,#FBF4EA 0%,#F6EEE0 100%);
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%; opacity: .9;
}
.hero-blob-2 {
  position: absolute; right: 12%; bottom: -30%; width: 55%; height: 120%;
  background: linear-gradient(135deg,#F5F7FA 0%,#EDF1F6 100%);
  border-radius: 52% 48% 45% 55% / 50% 55% 45% 50%; opacity: .7;
}
.hero-dots {
  position: absolute; left: 24px; bottom: 28px;
  display: grid; grid-template-columns: repeat(5,7px); gap: 9px;
}
.hero-dots span { width: 7px; height: 7px; border-radius: 50%; background: #E4E9F0; }

.hero-inner {
  position: relative; max-width: 1240px; margin: 0 auto;
  padding: 72px 32px 88px;
  display: grid; grid-template-columns: 1fr 1.08fr; gap: 40px; align-items: center;
}
.hero-copy { animation: floatUp .8s ease both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #EAD9C4; color: #0B2A4A;
  font-size: 14px; font-weight: 700; padding: 8px 18px; border-radius: 999px;
  margin-bottom: 28px; box-shadow: 0 2px 8px rgba(11,42,74,.05);
}
.hero-badge .pin { color: #F58220; font-size: 15px; }

.hero-title {
  font-weight: 900; font-size: 54px; line-height: 1.34;
  letter-spacing: .005em; color: #0B2A4A; margin-bottom: 28px;
}
.hero-title .underline { position: relative; display: inline-block; }
.hero-title .underline::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 2px;
  height: 14px; background: #F58220; border-radius: 8px; opacity: .85; z-index: -1;
}

.hero-subtitle { font-size: 23px; font-weight: 700; line-height: 1.7; color: #0B2A4A; margin-bottom: 20px; }
.hero-text { font-size: 16px; line-height: 1.95; color: #5B6B7E; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: #F58220; color: #fff; font-weight: 900; font-size: 19px;
  padding: 20px 38px; border-radius: 12px; box-shadow: 0 10px 26px rgba(245,130,32,.4);
}
.btn-hero-primary:hover { background: #d96f13; color: #fff; }
.btn-hero-primary .arrow { opacity: .85; }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: #0B2A4A; font-weight: 900; font-size: 19px;
  padding: 20px 38px; border-radius: 12px; border: 1.5px solid #0B2A4A;
}
.btn-hero-outline:hover { background: #F5F7FA; color: #0B2A4A; }
.btn-hero-outline .arrow { opacity: .6; }

.hero-chips { display: flex; gap: 14px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #E4E9F0; border-radius: 12px;
  padding: 14px 22px; box-shadow: 0 3px 10px rgba(11,42,74,.05);
}
.chip .chip-icon { font-size: 19px; }
.chip .chip-label { font-size: 15px; font-weight: 700; color: #0B2A4A; }

/* ---------- ヒーロー: モックアップ ---------- */
.hero-mockups { position: relative; animation: floatUp 1s ease .15s both; min-height: 540px; }

.mk-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#DCE4EC 0%,#C6D2DE 100%);
}

/* Before */
.mk-before { position: absolute; left: 0; top: 118px; width: 200px; z-index: 3; }
.mk-before-badge {
  position: absolute; left: 38px; top: -46px; width: 58px; height: 58px;
  border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(11,42,74,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #8494A6;
}
.mk-before-card {
  border-radius: 10px; overflow: hidden; box-shadow: 0 14px 30px rgba(11,42,74,.15);
  filter: grayscale(.5); opacity: .92; transform: rotate(-1.5deg);
}
.mk-before-bar { height: 22px; background: #C9D2DC; display: flex; align-items: center; gap: 4px; padding: 0 10px; }
.mk-before-bar span { width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: .6; }
.mk-before-body { background: #EDEDED; padding: 14px 12px; }
.mk-before-body .line { height: 9px; width: 70%; background: #C4C4C4; border-radius: 2px; margin-bottom: 10px; }
.mk-before-body .row { display: flex; gap: 6px; margin-bottom: 12px; }
.mk-before-body .row div { height: 6px; flex: 1; background: #D4D4D4; border-radius: 2px; }
.mk-before-body .banner { height: 46px; background: #D8D8D8; border-radius: 3px; margin-bottom: 10px; }
.mk-before-body .grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; }
.mk-before-body .grid3 div { height: 30px; background: #DCDCDC; border-radius: 3px; }
.mk-before-caption { text-align: center; font-size: 12px; color: #8494A6; font-weight: 700; margin-top: 10px; }

/* 矢印 */
.mk-arrow { position: absolute; left: 212px; top: 200px; z-index: 4; color: #0B2A4A; font-size: 26px; font-weight: 900; }

/* After ブラウザ */
.mk-after {
  position: absolute; left: 248px; right: 0; top: 0; z-index: 2;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(11,42,74,.28); border: 1px solid #E4E9F0;
}
.mk-after-bar {
  height: 34px; background: #F0F2F5; display: flex; align-items: center; gap: 7px;
  padding: 0 14px; border-bottom: 1px solid #E4E9F0;
}
.mk-after-bar span { width: 11px; height: 11px; border-radius: 50%; }
.mk-after-bar .d1 { background: #F58220; }
.mk-after-bar .d2 { background: #F5C77E; }
.mk-after-bar .d3 { background: #9FB2C7; }
.mk-site { background: #fff; }
.mk-site-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; border-bottom: 1px solid #EDF1F6;
}
.mk-site-brand { display: flex; align-items: center; gap: 6px; }
.mk-site-brand .mark { width: 16px; height: 16px; border-radius: 3px; background: #0B2A4A; display: inline-block; }
.mk-site-brand .name { font-size: 10px; font-weight: 700; color: #0B2A4A; }
.mk-site-nav { display: flex; align-items: center; gap: 9px; font-size: 8px; color: #5B6B7E; font-weight: 500; }
.mk-site-nav .cta { background: #0B2A4A; color: #fff; padding: 5px 9px; border-radius: 4px; }
.mk-site-hero { position: relative; height: 150px; }
.mk-site-hero .overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(11,42,74,.82) 0%,rgba(11,42,74,.35) 65%,transparent 100%); }
.mk-site-hero .text { position: absolute; left: 20px; top: 26px; color: #fff; }
.mk-site-hero .text h4 { font-size: 16px; font-weight: 900; line-height: 1.5; }
.mk-site-hero .text .btn { display: inline-block; margin-top: 12px; background: #12406B; color: #fff; font-size: 8px; font-weight: 700; padding: 6px 12px; border-radius: 4px; }
.mk-site-body { padding: 16px; }
.mk-site-body .label { font-size: 11px; font-weight: 700; color: #0B2A4A; margin-bottom: 12px; }
.mk-service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.mk-service {
  border: 1px solid #EDF1F6; border-radius: 6px; padding: 12px 8px; text-align: center;
}
.mk-service .ic { font-size: 18px; margin-bottom: 6px; }
.mk-service .t { font-size: 9px; font-weight: 700; color: #0B2A4A; margin-bottom: 4px; }
.mk-service .b { font-size: 7px; color: #8494A6; line-height: 1.5; }
.mk-area-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.mk-area .thumb { height: 52px; border-radius: 6px; overflow: hidden; background: #E4E9F0; margin-bottom: 5px; }
.mk-area .name { font-size: 8px; font-weight: 700; color: #0B2A4A; text-align: center; }

/* スマホ */
.mk-phone { position: absolute; right: -6px; bottom: -18px; width: 150px; z-index: 5; }
.mk-phone-body { border-radius: 22px; overflow: hidden; border: 5px solid #1A1A1A; box-shadow: 0 22px 44px rgba(11,42,74,.32); background: #fff; }
.mk-phone-inner { position: relative; background: #fff; }
.mk-phone-notch { position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 44px; height: 11px; background: #1A1A1A; border-radius: 0 0 8px 8px; z-index: 2; }
.mk-phone-head { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px 6px; border-bottom: 1px solid #EDF1F6; }
.mk-phone-head .name { font-size: 7px; font-weight: 700; color: #0B2A4A; }
.mk-phone-head .menu { font-size: 9px; color: #0B2A4A; }
.mk-phone-hero { position: relative; height: 96px; }
.mk-phone-hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(11,42,74,.7) 0%,rgba(11,42,74,.25) 100%); }
.mk-phone-hero .text { position: absolute; left: 10px; top: 14px; color: #fff; }
.mk-phone-hero .text h4 { font-size: 10px; font-weight: 900; line-height: 1.5; }
.mk-phone-hero .text .btn { display: inline-block; margin-top: 8px; background: #12406B; color: #fff; font-size: 6px; font-weight: 700; padding: 4px 8px; border-radius: 3px; }
.mk-phone-body-sec { padding: 10px; }
.mk-phone-body-sec .label { font-size: 8px; font-weight: 700; color: #0B2A4A; margin-bottom: 7px; }
.mk-phone-card { display: flex; align-items: center; gap: 8px; border: 1px solid #EDF1F6; border-radius: 5px; padding: 8px; }
.mk-phone-card .ic { font-size: 14px; }
.mk-phone-card .t { font-size: 8px; font-weight: 700; color: #0B2A4A; }
.mk-phone-card .b { font-size: 6px; color: #8494A6; }

/* ---------- お悩み ---------- */
.worries { background: #F5F7FA; padding: 88px 32px; }
.worries-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.worries-title { font-family: 'Noto Serif JP', serif; font-size: 38px; font-weight: 700; line-height: 1.5; margin-bottom: 48px; }
.worries-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; text-align: left; }
.worry {
  background: #fff; border-radius: 14px; padding: 26px 28px;
  display: flex; align-items: center; gap: 20px; box-shadow: 0 4px 18px rgba(11,42,74,.06);
}
.worry .q {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: #0B2A4A; color: #F58220;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 22px;
}
.worry p { font-size: 17px; font-weight: 500; line-height: 1.65; color: #0B2A4A; }
.worries-cta { margin-top: 44px; font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 600; line-height: 1.7; }
.worries-cta span { color: #F58220; }

/* ---------- 選ばれる理由 ---------- */
.reasons { background: #fff; }
.reasons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.reason {
  border: 1px solid #E4E9F0; border-radius: 18px; padding: 40px 32px; background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.reason:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(11,42,74,.12); }
.reason .no { font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 700; color: #F58220; letter-spacing: .1em; }
.reason .ic { font-size: 44px; margin: 16px 0 20px; }
.reason h3 { font-family: 'Noto Serif JP', serif; font-size: 23px; font-weight: 700; line-height: 1.5; margin-bottom: 16px; color: #0B2A4A; }
.reason p { font-size: 15px; line-height: 1.9; color: #5B6B7E; }

/* ---------- デザイン例 ---------- */
.examples { background: #0B2A4A; color: #fff; }
.examples .section-lead { color: #B7C6D8; }
.examples-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.example { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; }
.example-shot { border-radius: 12px; overflow: hidden; margin: 16px 16px 0; box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.example-shot .bar { height: 34px; background: #071D33; display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.example-shot .bar span { width: 9px; height: 9px; border-radius: 50%; }
.example-shot .bar .d1 { background: #F58220; }
.example-shot .bar .d2, .example-shot .bar .d3 { background: rgba(255,255,255,.3); }
.example-shot .img { height: 200px; background: #E4E9F0; }
.example-body { padding: 22px 24px 26px; }
.example-body .tag { font-size: 12px; color: #F58220; font-weight: 700; letter-spacing: .05em; margin-bottom: 8px; }
.example-body h3 { font-family: 'Noto Serif JP', serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.example-body p { font-size: 14px; line-height: 1.8; color: #B7C6D8; }

/* ---------- 制作スタイル ---------- */
.styles { background: #F5F7FA; }
.styles-inner { max-width: 1080px; margin: 0 auto; }
.styles-list { display: flex; flex-direction: column; gap: 28px; }
.style-card {
  display: grid; grid-template-columns: 300px 1fr; border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(11,42,74,.08); border: 1px solid #E4E9F0;
}
.style-card.recommended { border: 2px solid #F58220; }
.style-head { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.style-head.light { background: #F5F7FA; color: #0B2A4A; }
.style-head.dark  { background: #0B2A4A; color: #fff; }
.style-head .ribbon { position: absolute; top: 20px; right: 20px; background: #F58220; color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.style-head .no { font-family: 'Noto Serif JP', serif; font-size: 14px; font-weight: 700; letter-spacing: .12em; opacity: .65; }
.style-head h3 { font-family: 'Noto Serif JP', serif; font-size: 28px; font-weight: 700; margin: 10px 0 20px; line-height: 1.4; }
.style-head .price-label { font-size: 14px; opacity: .75; }
.style-head .price { font-family: 'Noto Serif JP', serif; font-size: 40px; font-weight: 700; }
.style-head .price.navy { color: #0B2A4A; }
.style-head .price.orange { color: #F58220; }
.style-head .price-unit { font-size: 15px; opacity: .8; }
.style-body { background: #fff; padding: 36px 40px; }
.style-target { display: inline-block; background: #F5F7FA; color: #0B2A4A; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 8px; margin-bottom: 16px; }
.style-desc { font-size: 15px; line-height: 1.9; color: #5B6B7E; margin-bottom: 24px; }
.style-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-bottom: 28px; }
.style-features .feat { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: #0B2A4A; }
.style-features .feat .check { color: #F58220; font-weight: 700; flex: none; }
.style-btn { display: inline-block; font-weight: 700; font-size: 15px; padding: 13px 32px; border-radius: 9px; }
.style-btn.outline { background: #fff; color: #0B2A4A; border: 1px solid #0B2A4A; }
.style-btn.solid { background: #F58220; color: #fff; border: none; }
.styles-note { text-align: center; font-size: 13px; color: #8494A6; margin-top: 28px; }

/* ---------- 制作の流れ ---------- */
.flow { background: #fff; }
.flow-inner { max-width: 1080px; margin: 0 auto; }
.flow-list { display: flex; flex-direction: column; }
.flow-step { display: flex; gap: 28px; align-items: flex-start; }
.flow-step .num {
  flex: none; width: 64px; height: 64px; border-radius: 50%; background: #0B2A4A; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(11,42,74,.25);
}
.flow-step .body { padding-top: 6px; border-bottom: 1px solid #E4E9F0; padding-bottom: 32px; margin-bottom: 32px; flex: 1; }
.flow-step .body h3 { font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 700; color: #0B2A4A; margin-bottom: 8px; }
.flow-step .body p { font-size: 15px; line-height: 1.9; color: #5B6B7E; }

/* ---------- FAQ ---------- */
.faq { background: #F5F7FA; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 12px rgba(11,42,74,.05); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit;
}
.faq-q .q-left { display: flex; align-items: center; gap: 14px; }
.faq-q .q-mark { font-family: 'Noto Serif JP', serif; color: #F58220; font-weight: 900; font-size: 20px; }
.faq-q .q-text { font-size: 17px; font-weight: 700; color: #0B2A4A; line-height: 1.5; }
.faq-q .toggle { flex: none; color: #0B2A4A; font-size: 22px; transition: transform .25s; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 28px 26px 66px; font-size: 15px; line-height: 1.9; color: #5B6B7E; }

/* ---------- CTA / 問い合わせ ---------- */
.contact { padding: 96px 32px; background: linear-gradient(180deg,#0B2A4A 0%,#0E3358 100%); color: #fff; }
.contact-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.contact h2 { font-family: 'Noto Serif JP', serif; font-size: 40px; font-weight: 700; line-height: 1.5; margin-bottom: 20px; }
.contact-lead { font-size: 17px; line-height: 2; color: #C9D6E4; margin: 0 auto 44px; max-width: 640px; }
.form-card { background: #fff; border-radius: 20px; padding: 44px 48px; text-align: left; color: #0B2A4A; box-shadow: 0 30px 60px rgba(0,0,0,.3); max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field label { font-size: 13px; font-weight: 700; color: #0B2A4A; display: block; margin-bottom: 8px; }
.form-field label span { color: #F58220; }
.form-field input,
.form-field textarea,
.form-full textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #D5DEE8; border-radius: 9px;
  font-size: 15px; font-family: inherit;
}
.form-full { margin-bottom: 28px; }
.form-full label { font-size: 13px; font-weight: 700; color: #0B2A4A; display: block; margin-bottom: 8px; }
.form-full textarea { resize: vertical; }
.form-submit {
  width: 100%; background: #F58220; color: #fff; font-weight: 700; font-size: 18px;
  padding: 18px; border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 8px 24px rgba(245,130,32,.4);
}
.form-submit:hover { background: #d96f13; }
.form-note { text-align: center; font-size: 13px; color: #8494A6; margin-top: 16px; }
.form-note a { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 18px; color: #0B2A4A; }

/* ---------- フッター ---------- */
.footer { background: #071D33; color: #8FA3B8; padding: 56px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 340px; }
.footer-brand .row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .mark {
  display: inline-flex; width: 38px; height: 38px; border-radius: 8px; background: #F58220;
  align-items: center; justify-content: center; color: #0B2A4A;
  font-family: 'Noto Serif JP', serif; font-weight: 900; font-size: 20px;
}
.footer-brand .name { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 19px; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.9; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col .head { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.footer-col .links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col .links a { color: #8FA3B8; }
.footer-col .links a:hover { color: #F58220; }
.footer-copy { padding-top: 24px; font-size: 13px; color: #5E7189; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .header-inner { padding: 0 20px; }
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 48px 24px 64px; }
  .hero-title { font-size: 42px; }
  .hero-mockups { min-height: 480px; margin: 0 auto; }
  .reasons-grid, .examples-grid { grid-template-columns: 1fr; }
  .worries-grid { grid-template-columns: 1fr; }
  .style-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 24px; }
  .section-title { font-size: 30px; }
}

@media (max-width: 520px) {
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 19px; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
  .side-cta { font-size: 14px; padding: 20px 12px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 36px; }
}
