/* =========================
   CTIC LP - style.css
   Main: #F9AA19
   Accent: #468C8A
   Background: #FFFFFF
========================= */

:root{
  --main:#F9AA19;
  --accent:#468C8A;

  --bg:#ffffff;
  --alt:#f7faf9;

  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;

  --shadow: 0 10px 25px rgba(15, 23, 42, .08);
  --radius: 16px;

  --container: 1280px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}

img{ max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

.muted{ color:var(--muted); }

.br-md{ display:none; }
@media (min-width: 768px){
  .br-md{ display:inline; }
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(229,231,235,.8);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.02em;
}
.brand__mark{
  width:34px;
  height:34px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--main), #ffd37a);
  box-shadow: 0 8px 16px rgba(249,170,25,.25);
}
.brand__name{ font-size:14px; }
@media (min-width: 768px){
  .brand__name{ font-size:16px; }
}
.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  font-size:14px;
  color:#0b1220;
  opacity:.9;
}
.nav a:hover{ opacity:1; }
@media (max-width: 860px){
  .nav a:not(.btn){ display:none; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  line-height:1;
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease;
  gap:10px;
}
.btn:active{ transform: translateY(1px); }
.btn--sm{ padding:10px 14px; font-size:13px; }

.btn--primary{
  background:var(--main);
  color:#111827;
  box-shadow: 0 12px 24px rgba(249,170,25,.28);
}
.btn--primary:hover{ box-shadow: 0 16px 30px rgba(249,170,25,.35); }

.btn--ghost{
  border-color: rgba(70,140,138,.35);
  background: rgba(70,140,138,.06);
  color: #0b3f3d;
}
.btn--ghost:hover{
  background: rgba(70,140,138,.10);
}

.btn--onDark{
  background:var(--main);
  color:#111827;
}

.btn--ghostOnDark{
  border-color:var(--main);
  color:#7a4a00;
  background:#fff;
}

/* Hero */
.hero{
  padding:56px 0 28px;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(249,170,25,.22), transparent 60%),
    radial-gradient(900px 420px at 90% 20%, rgba(70,140,138,.18), transparent 55%),
    linear-gradient(#ffffff, #ffffff);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:26px;
  align-items:stretch;
}


.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(70,140,138,.10);
  border: 1px solid rgba(70,140,138,.24);
  color:#0b3f3d;
  font-weight:700;
  font-size:13px;
  margin:0 0 10px;
}

.hero__title{
  margin:8px 0 10px;
  font-size:34px;
  line-height:1.2;
  letter-spacing:-.02em;
}
@media (min-width: 768px){
  .hero__title{ font-size:44px; }
}
.underline{
  background: linear-gradient(transparent 65%, rgba(249,170,25,.45) 0);
}

.hero__lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:15px;
}
@media (min-width: 768px){
  .hero__lead{ font-size:16px; }
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 14px 0 14px;
}

.hero__points{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}
.hero__points li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#0b1220;
  font-weight:650;
  font-size:14px;
}
.icon{
  width:22px;
  height:22px;
  border-radius:8px;
  background: rgba(249,170,25,.16);
  border:1px solid rgba(249,170,25,.30);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  margin-top:2px;
}
.icon svg{
  width:14px; height:14px;
  fill:none;
  stroke:#7a4a00;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Hero panel */
.hero__panel{
  display:grid;
  gap:14px;
}
.hero__card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero__cardTitle{
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom:10px;
}
.miniFlow{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.miniFlow li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:700;
}
.miniFlow span{
  width:32px;
  height:26px;
  border-radius:999px;
  background: rgba(70,140,138,.10);
  border: 1px solid rgba(70,140,138,.25);
  color:#0b3f3d;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  flex:0 0 auto;
}
.hero__note{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
}
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  border-radius: 14px;
  border:1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.70);
  padding:12px 12px 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}
.stat__k{
  font-size:12px;
  font-weight:800;
  color:#0b3f3d;
  opacity:.9;
}
.stat__v{
  font-size:13px;
  font-weight:900;
  margin-top:2px;
}

/* Sections */
.section{
  padding:56px 0;
}
.section--alt{
  background: var(--alt);
  border-top: 1px solid rgba(229,231,235,.7);
  border-bottom: 1px solid rgba(229,231,235,.7);
}
.section__head{
  margin-bottom:22px;
}
.kicker{
  margin:0 0 6px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(70,140,138,.9);
}
.section__head h2{
  margin:0 0 8px;
  font-size:26px;
  line-height:1.25;
}
@media (min-width: 768px){
  .section__head h2{ font-size:32px; }
}
.section__subhead{
  margin:26px 0 14px;
}
.section__subhead h3{
  margin:0 0 6px;
  font-size:20px;
}
.section__subhead p{ margin:0; }

.grid{
  display:grid;
  gap:14px;
}
.grid--2{ grid-template-columns: 1fr; }
.grid--3{ grid-template-columns: 1fr; }
.grid--4{ grid-template-columns: 1fr; }

@media (min-width: 768px){
  .grid--2{ grid-template-columns: repeat(2, 1fr); gap:16px; }
  .grid--3{ grid-template-columns: repeat(3, 1fr); gap:16px; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); gap:16px; }
}
@media (min-width: 1100px){
  .grid--4{ grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.card{
  border-radius: var(--radius);
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  padding:18px;
}
.card h3{ margin:0 0 6px; font-size:18px; }
.card h4{ margin:0 0 6px; font-size:16px; }
.card p{ margin:0; color:var(--muted); font-size:14px; }

.card__icon{
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(249,170,25,.18);
  border: 1px solid rgba(249,170,25,.30);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.card__icon svg{
  width:22px; height:22px;
  fill:none;
  stroke:#7a4a00;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.card--tight{ padding:16px; }

/* Callout */
.callout{
  margin-top:18px;
  border-radius: var(--radius);
  border: 1px solid rgba(70,140,138,.28);
  background: rgba(70,140,138,.06);
  overflow:hidden;
}
.callout__title{
  padding:12px 16px;
  font-weight:900;
  background: rgba(70,140,138,.10);
  color:#0b3f3d;
}
.callout__body{ padding:14px 16px; }
.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}
.bullets li{ margin:6px 0; }
.bullets strong{ color:#0b3f3d; }

/* Steps */
.steps{
  display:grid;
  gap:14px;
}
@media (min-width: 980px){
  .steps{ grid-template-columns: repeat(3, 1fr); gap:16px; }
}
.step{
  border-radius: var(--radius);
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  padding:18px;
}
.step__head{ margin-bottom:10px; }
.step__no{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:26px;
  padding:0 12px;
  border-radius:999px;
  background: rgba(70,140,138,.10);
  border: 1px solid rgba(70,140,138,.25);
  color:#0b3f3d;
  font-weight:900;
  font-size:12px;
}
.step h3{ margin:8px 0 0; font-size:18px; }
.step--focus{
  background: linear-gradient(180deg, rgba(249,170,25,.22), rgba(255,255,255,1) 70%);
  border-color: rgba(249,170,25,.35);
}
.check{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:grid;
  gap:8px;
}
.check li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
}
.check li::before{
  content:"✓";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:8px;
  background: rgba(70,140,138,.10);
  border: 1px solid rgba(70,140,138,.25);
  color:#0b3f3d;
  font-weight:900;
  flex:0 0 auto;
  margin-top:1px;
}

/* Timeline */
.timeline{
  display:grid;
  gap:12px;
}
@media (min-width: 860px){
  .timeline{
    grid-template-columns: repeat(5, 1fr);
    align-items:stretch;
  }
}
.tItem{
  border-radius: var(--radius);
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  padding:16px;
  position:relative;
}
.tBadge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background: rgba(249,170,25,.18);
  border: 1px solid rgba(249,170,25,.32);
  color:#7a4a00;
}
.tItem h3{ margin:10px 0 6px; font-size:16px; }
.tItem p{ margin:0; color:var(--muted); font-size:13px; }

/* Tags */
.tag{
  display:inline-flex;
  margin-top:12px;
  padding:7px 10px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  border:1px solid transparent;
}
.tag--main{
  background: rgba(249,170,25,.18);
  border-color: rgba(249,170,25,.30);
  color:#7a4a00;
}
.tag--accent{
  background: rgba(70,140,138,.10);
  border-color: rgba(70,140,138,.25);
  color:#0b3f3d;
}

/* Pricing */
.pricing{
  display:grid;
  gap:14px;
}
@media (min-width: 980px){
  .pricing{ grid-template-columns: 1fr 1fr; gap:16px; }
}
.priceCard{
  border-radius: calc(var(--radius) + 2px);
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px;
}
.priceCard--accent{
  border-color: rgba(70,140,138,.30);
  background: linear-gradient(180deg, rgba(70,140,138,.10), #ffffff 65%);
}
.priceCard__head{
  padding-bottom:12px;
  border-bottom:1px solid rgba(229,231,235,.7);
  margin-bottom:12px;
}
.priceCard h3{ margin:0 0 8px; font-size:18px; }
.price{
  margin:0 0 2px;
  display:flex;
  align-items:flex-end;
  gap:6px;
}
.price__num{
  font-size:42px;
  font-weight:950;
  letter-spacing:-.02em;
  line-height:1;
}
.price__unit{ font-weight:900; padding-bottom:5px; }
.price__tax{ color:var(--muted); font-size:12px; padding-bottom:6px; }

/* Company */
.company{
  display:grid;
  gap:14px;
}
@media (min-width: 980px){
  .company{ grid-template-columns: 1.1fr .9fr; gap:16px; }
}
.company__box{
  border-radius: var(--radius);
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
  padding:18px;
}
.company__box--note{
  border-color: rgba(249,170,25,.35);
  background: linear-gradient(180deg, rgba(249,170,25,.20), #ffffff 65%);
}
.dl{
  margin:0;
  display:grid;
  gap:10px;
}
.dl > div{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(229,231,235,.7);
}
.dl > div:last-child{ border-bottom:none; }
dt{
  font-weight:900;
  color:#0b1220;
  font-size:13px;
}
dd{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

/* CTA */
.cta{
  padding:60px 0;
  background:
    radial-gradient(700px 380px at 15% 15%, rgba(249,170,25,.35), transparent 60%),
    radial-gradient(700px 380px at 85% 10%, rgba(249,170,25,.25), transparent 60%),
    linear-gradient(135deg, #fff7e6, #ffffff);
  color:#0f172a;
}
.kicker--onDark{
  color:#b45309;
}
.cta__inner{
  display:grid;
  gap:16px;
  align-items:stretch;
}
@media (min-width: 980px){
  .cta__inner{ grid-template-columns: 1.1fr .9fr; gap:18px; }
}
.cta__copy h2{
  margin:6px 0 10px;
  font-size:28px;
  line-height:1.25;
}
.cta__copy p{ margin:0; color: rgba(255,255,255,.85); }
.cta__actions{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.panel{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  padding:16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.panel__title{
  font-weight:900;
  margin-bottom:10px;
}
.panel__pre{
  margin:0;
  padding:12px;
  border-radius:14px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  overflow:auto;
  font-size:12px;
  line-height:1.6;
}
.panel__hint{
  margin-top:10px;
  font-size:12px;
  color: rgba(255,255,255,.78);
}

/* Footer */
.footer{
  padding:22px 0 16px;
  border-top:1px solid rgba(229,231,235,.9);
  background:#fff;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
}
.brand--footer .brand__mark{
  width:28px; height:28px; border-radius:10px;
}
.footer__small{
  margin:8px 0 0;
  color:var(--muted);
  font-size:12px;
}
.footer__right{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
}
.footer__sep{ opacity:.5; }
.footer__copy{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
}
.smallKicker{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background: rgba(70,140,138,.10);
  border: 1px solid rgba(70,140,138,.25);
  color:#0b3f3d;
}
.miniMeta{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}

.brand__mark{
  display:none;
}

/* 四角が消えた分の余白を詰める */
.brand{
  gap:0;
}


.brand--footer .brand__mark{
  display:none;
}
.brand--footer{
  gap:0;
}

.cta .kicker--onDark{
  color:#b45309 !important;
}

.price__num--text{
  font-size:28px;
  font-weight:800;
}



#company .dl > div{
  display:block;
  padding:12px 0;
  border-bottom:1px solid rgba(229,231,235,.7);
}

#company .dl > div:last-child{
  border-bottom:none;
}

#company dt{
  display:block;
  margin:0 0 6px;
  font-size:12px;
  font-weight:900;
  color:#0b1220;
}

#company dd{
  display:block;
  margin:0;
  font-size:14px;
  color:var(--muted);
}

/* ===== 所在地：PC幅ではなるべく1行（十分広い時は改行させない） ===== */
@media (min-width: 980px){
  #company .dl > div:last-child dd{
    white-space: nowrap;
  }