/* =============================================
   TOTAL PAINTING 株式会社 — Corporate Site CSS
   Color: Navy #0e2d5e | Orange #e8751a | BG #f7f6f1
   Font: Noto Sans JP
============================================= */

:root {
  --navy:        #0e2d5e;
  --navy-dark:   #07192f;
  --navy-mid:    #1a4080;
  --orange:      #e8751a;
  --orange-lt:   #f59040;
  --yellow:      #f5c442;
  --bg:          #f7f6f1;
  --bg-alt:      #eeeae2;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #666666;
  --text-light:  #999999;
  --border:      #ddd8cc;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:   0 14px 44px rgba(0,0,0,0.14);
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        24px;
  --max:         1200px;
  --hh:          80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* === Section Heading === */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .en {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.sec-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
}
.sec-head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.sec-head .lead {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,117,26,0.35); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* === Img Placeholder === */
.img-ph {
  width: 100%;
  background: #b8c8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 8px,
    rgba(255,255,255,0.14) 8px, rgba(255,255,255,0.14) 16px
  );
}
.img-ph span {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  padding: 6px 12px;
  background: rgba(0,0,0,0.22);
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* =============================================
   HEADER
============================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.12); }
.header-inner {
  display: flex;
  align-items: center;
  height: var(--hh);
  gap: 12px;
}
.logo { display: flex; flex-direction: column; line-height: 1.15; flex-shrink: 0; }
.logo-en {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.logo-en span { color: var(--orange); }
.logo-jp { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 2px; }

.header-nav { flex: 1; overflow: hidden; display: flex; justify-content: center; }
.header-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav ul::-webkit-scrollbar { display: none; }
.header-nav ul li a {
  display: block;
  padding: 6px 7px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.2s;
}
.header-nav ul li a:hover { color: var(--orange); }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.header-tel svg { width: 16px; height: 16px; stroke: var(--orange); stroke-width: 2.5; fill: none; }
.header-hours { font-size: 0.62rem; color: var(--text-light); }
.header-cta-btn { padding: 7px 14px; font-size: 0.75rem; }

.btn-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  flex-shrink: 0;
}
.btn-ham span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.btn-ham.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-ham.active span:nth-child(2) { opacity: 0; }
.btn-ham.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--hh);
  background: #fff;
  z-index: 990;
  padding: 16px 24px 100px;
  overflow-y: auto;
}
#mobile-menu.open { display: block; }
#mobile-menu ul { list-style: none; }
#mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
}
#mobile-menu ul li a::before { content: '›'; color: var(--orange); font-size: 1.2rem; }
.mob-contact {
  margin-top: 24px;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
}
.mob-contact .tel { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.mob-contact .hours { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }

/* =============================================
   HERO
============================================= */
#hero {
  margin-top: var(--hh);
  position: relative;
  height: calc(100svh - var(--hh));
  min-height: 540px;
  max-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
/* Hero 背景：全幅1枚画像 */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../hero-bg.png");
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  /* 文字可読性のためのオーバーレイ
     左側を強めに、右側をやや透過させて画像を活かす */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      rgba(7,25,47,0.92) 0%,
      rgba(14,45,94,0.78) 35%,
      rgba(21,74,138,0.45) 65%,
      rgba(21,74,138,0.20) 100%
    );
}
.hero-photo {
  /* 旧・右側写真エリアは非表示（全幅背景画像に統合済） */
  display: none;
}
.hero-photo .img-ph,
.hero-photo .img-ph::before,
.hero-photo .img-ph span {
  display: none !important;
}
.hero-body {
  position: relative;
  z-index: 10;
  padding: 0 0 0 60px;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.hero-catch {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-catch em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.hero-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--orange) 0%, var(--yellow) 50%, var(--orange) 100%);
}

/* =============================================
   REASONS
============================================= */
#reasons { padding: 88px 0; background: var(--white); }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason-card {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.28s ease;
  overflow: hidden;
}
.reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.reason-card:hover::before { transform: scaleX(1); }
.reason-num-bg {
  position: absolute;
  top: 8px; right: 12px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(14,45,94,0.07);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  user-select: none;
}
.reason-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.reason-icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; }
.reason-img {
  width: calc(100% + 48px);
  margin: -28px -24px 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f5f8;
}
.reason-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.reason-card:hover .reason-img img { transform: scale(1.04); }
.reason-card.has-img { padding-top: 0; }
.reason-card.has-img .reason-num-bg { top: auto; bottom: 8px; right: 12px; opacity: 0.55; }
.reason-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.reason-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   PRICES
============================================= */
#prices { padding: 88px 0; background: var(--bg); }
.prices-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.price-block {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-head {
  background: var(--navy);
  color: #fff;
  padding: 22px 28px;
}
.price-head h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.price-head p { font-size: 0.78rem; opacity: 0.75; }
table.ptbl { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
table.ptbl th {
  background: #eef2fa;
  color: var(--navy);
  font-weight: 700;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid #dce6f5;
  font-size: 0.78rem;
}
table.ptbl th:first-child { text-align: left; padding-left: 16px; width: 36%; }
table.ptbl td { padding: 10px 6px; text-align: center; border: 1px solid #eee; }
table.ptbl td:first-child { text-align: left; padding-left: 16px; font-weight: 600; color: var(--navy); }
table.ptbl tr:nth-child(even) td { background: #fafbff; }
.price-pack {
  padding: 14px 20px;
  background: #f4f6fb;
  border-top: 1px solid #dce6f5;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.price-pack strong { color: var(--navy); }

/* =============================================
   SERVICES
============================================= */
#services { padding: 88px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--bg);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-img { height: 200px; }
.service-body { padding: 24px; }
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-body h3 svg { width: 20px; height: 20px; stroke: var(--orange); stroke-width: 2; fill: none; flex-shrink: 0; }
.service-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }

/* =============================================
   WORKS
============================================= */
#works { padding: 88px 0; background: var(--bg); }
.works-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.wtab {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  color: var(--text-muted);
}
.wtab.active, .wtab:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.work-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s ease;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.work-img { height: 175px; }
.work-body { padding: 16px; }
.work-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: #e6edf8;
  color: var(--navy);
  margin-bottom: 8px;
}
.work-body h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.work-body p { font-size: 0.78rem; color: var(--text-muted); }
.works-more { text-align: center; }

/* =============================================
   FLOW
============================================= */
#flow {
  padding: 88px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -50deg, transparent, transparent 50px,
    rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 100px
  );
}
#flow .sec-head h2 { color: #fff; }
#flow .sec-head .en { color: var(--orange-lt); }
#flow .sec-head .lead { color: rgba(255,255,255,0.6); }
.flow-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.flow-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 4px;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '›';
  position: absolute;
  top: 26px;
  right: -6px;
  font-size: 1.4rem;
  color: var(--orange);
  z-index: 2;
}
.fstep-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  gap: 2px;
  transition: all 0.2s;
}
.fstep-circle:hover { background: rgba(232,117,26,0.3); border-color: var(--orange); }
.fstep-circle svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 1.8; fill: none; }
.fstep-n { font-size: 0.6rem; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 0.05em; }
.fstep-label { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.4; }

/* =============================================
   REVIEWS
============================================= */
#reviews { padding: 88px 0; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 6px; left: 16px;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-stars svg { width: 16px; height: 16px; fill: var(--orange); stroke: none; }
.review-text { font-size: 0.87rem; line-height: 1.85; margin-bottom: 18px; color: var(--text); }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-info .rname { font-size: 0.88rem; font-weight: 700; }
.review-info .rdetail { font-size: 0.76rem; color: var(--text-muted); }

/* =============================================
   STAFF
============================================= */
#staff { padding: 88px 0; background: var(--bg); }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.staff-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.28s, box-shadow 0.28s;
}
.staff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.staff-photo { height: 230px; background: #9aaec8; }
.staff-body { padding: 24px; }
.staff-role {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.staff-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.staff-name-kana { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 12px; letter-spacing: 0.1em; }
.staff-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 2;
  text-align: left;
}
.staff-info dt { float: left; font-weight: 600; color: var(--navy); min-width: 64px; }
.staff-info dd { margin-left: 72px; }

/* =============================================
   FAQ
============================================= */
#faq { padding: 88px 0; background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover .faq-qtext { color: var(--navy); }
.faq-qlabel {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-qtext {
  flex: 1;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.28s;
}
.faq-icon::before { top: 50%; left: 6px; right: 6px; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 6px; bottom: 6px; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 4px 0 44px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 4px 20px 44px; }
.faq-a p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.85; }

/* =============================================
   CONTACT CTA
============================================= */
#contact { padding: 88px 0; background: var(--bg); }
.contact-wrap {
  background: var(--navy);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-left {
  padding: 56px 48px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-40deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 60px);
}
.contact-left > * { position: relative; }
.contact-left h3 { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.5; margin-bottom: 12px; }
.contact-left p { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.contact-tel-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.contact-tel-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-tel-icon svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 2; fill: none; }
.contact-telnum { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: 0.04em; }
.contact-hours { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; margin-left: 64px; }
.contact-right {
  padding: 48px 40px;
  background: rgba(255,255,255,0.06);
}
.contact-right h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 22px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-bottom: 5px; font-weight: 600; }
.fg label .req { color: var(--orange); margin-left: 4px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  transition: border-color 0.2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.35); }
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--orange); }
.fg textarea { height: 90px; resize: vertical; }
.fg select option { background: var(--navy); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-en { font-size: 1.2rem; font-weight: 900; color: #fff; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-logo-en span { color: var(--orange); }
.footer-logo-jp { font-size: 0.65rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-info { font-size: 0.8rem; line-height: 2.1; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--orange); }
.footer-col ul li a:hover { color: var(--orange-lt); }
.footer-area { font-size: 0.8rem; line-height: 2; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange-lt); }
.footer-links { display: flex; gap: 20px; }

/* =============================================
   MOBILE FIXED CTA
============================================= */
.mob-fixed {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 980;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 10px 12px;
  gap: 8px;
}
.mob-fixed a.mf-tel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 12px 8px;
  font-size: 0.85rem;
  font-weight: 700;
}
.mob-fixed a.mf-tel svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.5; fill: none; }
.mob-fixed a.mf-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 12px 8px;
  font-size: 0.85rem;
  font-weight: 700;
}
.mob-fixed a.mf-contact svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2; fill: none; }

/* =============================================
   SCROLL FADE
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.vis { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 1080px) {
  .header-nav { display: none; }
  .header-right { display: none; }
  .btn-ham { display: flex; }
  
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .flow-row { flex-wrap: wrap; gap: 16px; }
  .flow-row::before { display: none; }
  .flow-step { width: calc(25% - 12px); flex: none; }
  .flow-step:not(:last-child)::after { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 768px) {
  :root { --hh: 60px; }
  .container { padding: 0 16px; }
  body { padding-bottom: 76px; }
  
  .hero-photo { display: none; }
  .hero-body { padding: 0 20px; max-width: 100%; }
  /* モバイルでは画像を右寄せにして職人の顔を表示 */
  .hero-bg {
    background-position: 75% center;
  }
  .hero-bg::after {
    /* モバイル用：縦グラデーションで上部の文字可読性を確保 */
    background:
      linear-gradient(180deg,
        rgba(7,25,47,0.88) 0%,
        rgba(14,45,94,0.75) 40%,
        rgba(21,74,138,0.40) 75%,
        rgba(21,74,138,0.20) 100%
      );
  }
  
  .reasons-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  
  .flow-step { width: calc(50% - 8px); }
  
  #reasons, #prices, #services, #works, #flow, #reviews, #staff, #faq, #contact { padding: 64px 0; }
  
  .sec-head { margin-bottom: 40px; }
  
  .contact-left { padding: 36px 24px; }
  .contact-right { padding: 32px 24px; }
  .contact-telnum { font-size: 1.5rem; }
  
  .mob-fixed { display: flex; }
}
@media (max-width: 480px) {
  .works-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
}
