

/* ===============================
   THEME TUNING
=============================== */
:root{
  --bg-main:#050505;
  --bg-sub:#0b0b0d;
  --bg-card:#121214;

  --text-main:#f5f5f7;
  --text-sub:#b3b3b8;
  --text-mute:#8a8a90;

  --accent:#ff7f00;
  --accent-soft:rgba(255,127,0,.12);
  --accent-line:rgba(255,127,0,.35);

  --border:rgba(255,255,255,.08);
  --border-soft:rgba(255,255,255,.05);

  --radius-lg:22px;
  --radius-md:16px;

  --shadow-lg:0 30px 80px rgba(0,0,0,.65);
  --shadow-md:0 14px 40px rgba(0,0,0,.45);
}

/* ===============================
   BASE
=============================== */
body{
  background:var(--bg-main);
  color:var(--text-main);
}

/* ===============================
   SECTION BASE
=============================== */
.section{
  position:relative;
}

.section:not(:first-of-type)::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(1100px, calc(100% - 48px));
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.12),
    transparent
  );
}

/* ===============================
   SECTION HEADER
=============================== */
.section-header{
  margin-bottom:56px;
}

.headline-sm{
  font-size:clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight:700;
  letter-spacing:-0.02em;
  position:relative;
}

.headline-sm::after{
  content:"";
  display:block;
  width:64px;
  height:2px;
  margin-top:14px;
  background:linear-gradient(
    90deg,
    var(--accent),
    transparent
  );
}

.sub-headline{
  color:var(--text-sub);
  font-size:.95rem;
  margin-top:10px;
  line-height:1.8;
}

/* ===============================
   HERO
=============================== */
.about-hero{
  background:radial-gradient(
    1200px 600px at 70% 20%,
    rgba(255,127,0,.08),
    transparent 60%
  );
}

.about-title{
  font-size:clamp(1.7rem, 3vw, 2.2rem);
  line-height:1.05;
}

.about-title .accent{
  color:var(--accent);
  text-shadow:0 0 40px rgba(255,127,0,.25);
}

.about-lead{
  margin-top:20px;
  color:var(--text-sub);
  max-width:64ch;
}

/* ===============================
   CARD / BLOCK
=============================== */
.about-card,
.about-split__text,
.service-block,
.about-price__text,
.about-owner__text,
.review-card,
.about-contact__card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
}

/* 左アクセントライン（主張しすぎない） */
.about-split__text::before,
.about-owner__text::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:2px;
  background:linear-gradient(
    to bottom,
    transparent,
    var(--accent-line),
    transparent
  );
}

/* ===============================
   TEXT
=============================== */
.about-h3{
  font-size:1.25rem;
  font-weight:600;
  margin-bottom:12px;
}

.about-p{
  color:var(--text-sub);
  line-height:2;
  font-size:.95rem;
}

/* ===============================
   IMAGE
=============================== */
img{
  filter:grayscale(.15) contrast(1.08) brightness(.9);
  transition:filter .6s ease, transform .6s ease;
}

figure:hover img{
  filter:grayscale(0) contrast(1.12) brightness(1);
  transform:scale(1.02);
}

/* ===============================
   IMAGE BAND
=============================== */
.about-imageband__inner img{
  filter:grayscale(.35) brightness(.7);
}

.about-imageband__inner img:hover{
  filter:grayscale(0) brightness(.9);
}

/* ===============================
   LIST / TAG
=============================== */
.about-list li{
  border-top:1px solid var(--border-soft);
  padding:14px 0;
  line-height:1.9;
}

.about-list strong{
  color:var(--text-main);
}

.service-tags li{
  background:#0a0a0c;
  border:1px solid var(--border);
  color:var(--text-sub);
}

/* ===============================
   REVIEW
=============================== */
.review-card{
  position:relative;
}

.review-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--accent-line),
    transparent
  );
}

.review-quote{
  font-size:.95rem;
  line-height:1.9;
}

.review-meta{
  margin-top:12px;
  color:var(--text-mute);
  font-size:.85rem;
}

/* ===============================
   IG TEASER
=============================== */
.ig-teaser{
  background:
    radial-gradient(
      600px 300px at 20% 0%,
      rgba(255,127,0,.15),
      transparent 70%
    ),
    var(--bg-card);
  border:1px solid var(--border);
}

.ig-teaser h3{
  font-size:1.2rem;
}

/* ===============================
   CONTACT
=============================== */
.check-list li{
  border-top:1px solid var(--border-soft);
  color:var(--text-sub);
}

.check-list span{
  color:var(--accent);
}

/* ===============================
   FOOTER ADJUST
=============================== */
.footer{
  background:#040404;
  border-top:1px solid var(--border);
}

/* ===============================
   MOBILE
=============================== */
@media (max-width:768px){
  .section-header{
    margin-bottom:36px;
  }

  .headline-sm{
    font-size:2.1rem;
  }

  .about-title{
    margin: 20px 0;
    font-size:1.6rem;
  }

  .about-lead{
    font-size:.95rem;
  }
  
  .btn-primary  {
    margin: 20px auto;
    
  }
}