:root {
 --blue-royal: #4f9657;
 --blue-deep: #3f7e48;
 --blue-darker: #2f5c38;
 --blue-light: #7ab07f;
 --blue-bg: #edf6ec;
 --gray-bg: #f7f7f5;
 --ink: #1e2228;
 --ink-soft: #5b6168;
 --line: #e3e3e0;
 --white: #ffffff;
 --amber: #d98e3d;
 --sans: "Noto Sans JP", sans-serif;
 --serif: "Noto Serif JP", serif;
}
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
body {
 font-family: var(--sans);
 color: var(--ink);
 background: var(--white);
 line-height: 1.85;
 font-size: 16px;
 -webkit-font-smoothing: antialiased;
}
img {
 display: block;
 max-width: 100%;
}
a {
 color: inherit;
 text-decoration: none;
}
a:focus-visible,
button:focus-visible {
 outline: 3px solid var(--blue-royal);
 outline-offset: 2px;
}
ul {
 list-style: none;
}
.wrap {
 max-width: 1140px;
 margin: 0 auto;
 padding: 0 24px;
}

.ph-img {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
}

/* ===== Header (shared) ===== */
header {
 background: var(--white);
 border-bottom: 1px solid var(--line);
 position: sticky;
 top: 0;
 z-index: 50;
}
.header-inner {
 max-width: 1140px;
 margin: 0 auto;
 padding: 0 24px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 84px;
}
.brand {
 display: flex;
 align-items: center;
 gap: 12px;
}
.brand-logo {
 position: relative;
 width: 46px;
 height: 46px;
 border-radius: 8px;
 overflow: hidden;

 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-family: var(--serif);
 font-weight: 700;
 font-size: 20px;
 flex-shrink: 0;
}
.brand-text {
 font-size: 17.5px;
 font-weight: 700;
 color: var(--ink);
}
.brand-text small {
 display: block;
 font-size: 11px;
 font-weight: 400;
 color: var(--ink-soft);
 margin-top: 2px;
 letter-spacing: 0.02em;
}
nav {
 display: flex;
 align-items: center;
 gap: 32px;
}
.nav-links {
 display: flex;
 gap: 30px;
 font-size: 14.5px;
}
.nav-links a {
 padding: 8px 0;
 border-bottom: 2px solid transparent;
 transition:
  border-color 0.2s ease,
  color 0.2s ease;
}
.nav-links a:hover {
 border-color: var(--blue-royal);
 color: var(--blue-royal);
}
.nav-links a.current {
 color: var(--blue-royal);
 border-color: var(--blue-royal);
}
.header-cta {
 display: flex;
 align-items: center;
 gap: 14px;
}
.header-tel {
 text-align: right;
}
.header-tel .label {
 font-size: 10.5px;
 color: var(--ink-soft);
}
.header-tel .num {
 font-size: 18px;
 font-weight: 700;
 color: var(--blue-royal);
}
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 13px 26px;
 font-size: 14.5px;
 font-weight: 700;
 letter-spacing: 0.02em;
 border-radius: 7px;
 transition: all 0.2s ease;
}
.btn-primary {
 background: var(--blue-royal);
 color: #fff;
}
.btn-primary:hover {
 background: var(--blue-deep);
}
.btn-outline {
 border: 1.5px solid var(--white);
 color: var(--white);
}
.btn-outline:hover {
 background: rgba(255, 255, 255, 0.12);
}
.btn-outline.dark {
 border-color: var(--blue-royal);
 color: var(--blue-royal);
}
.btn-outline.dark:hover {
 background: var(--blue-bg);
}

/* ===== Page hero (simplified) ===== */
.page-hero {
 position: relative;
 min-height: 350px;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: #33414f;
}
.page-hero-img {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
}
.page-hero-bg {
 position: absolute;
 inset: 0;
 z-index: 1;
 background:
  linear-gradient(
   100deg,
   rgba(47, 92, 56, 0.88) 0%,
   rgba(47, 92, 56, 0.62) 42%,
   rgba(47, 92, 56, 0.28) 70%,
   rgba(47, 92, 56, 0.1) 100%
  ),
  linear-gradient(180deg, #6f8870 0%, #547359 30%, #3f5d44 55%, #283a2b 100%);
}
.page-hero-content {
 position: relative;
 z-index: 2;
 max-width: 1140px;
 margin: 0 auto;
 padding: 0 24px;
 width: 100%;
}
.ph-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 font-size: 13px;
 color: #d7e3d5;
 font-weight: 600;
 margin-bottom: 18px;
 letter-spacing: 0.06em;
}
.ph-eyebrow::before {
 content: "";
 width: 28px;
 height: 2px;
 background: var(--amber);
}
.page-hero h1 {
 font-family: var(--serif);
 font-weight: 700;
 font-size: clamp(28px, 3.6vw, 42px);
 line-height: 1.5;
 color: #fff;
 margin-bottom: 16px;
}
.page-hero p {
 font-size: 15.5px;
 color: rgba(255, 255, 255, 0.88);
 max-width: 610px;
 text-shadow: 1px 1px 2px black;
}
.crumbs {
 position: absolute;
 top: 20px;
 left: 0;
 right: 0;
 z-index: 2;
 max-width: 1140px;
 margin: 0 auto;
 padding: 0 24px;
 font-size: 12px;
 color: rgba(255, 255, 255, 0.7);
}
.crumbs a:hover {
 color: #fff;
}

/* ===== Section scaffolding (shared) ===== */
.section {
 padding: 96px 0;
}
.section-alt {
 background: var(--gray-bg);
}
.sec-head {
 max-width: 680px;
 margin: 0 auto 56px;
 text-align: center;
}
.sec-eyebrow {
 font-size: 13px;
 font-weight: 700;
 color: var(--blue-royal);
 letter-spacing: 0.08em;
 margin-bottom: 12px;
}
.sec-head h2 {
 font-family: var(--serif);
 font-weight: 700;
 font-size: clamp(24px, 2.8vw, 32px);
 color: var(--ink);
 margin-bottom: 14px;
}
.sec-head p {
 font-size: 15px;
 color: var(--ink-soft);
}

/* ===== Work types — alternating text + photo ===== */
.worktype-list {
 display: flex;
 flex-direction: column;
 gap: 80px;
}
.worktype {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 56px;
 align-items: center;
}
.worktype.rev .wt-photo {
 order: 2;
}
.wt-photo {
 position: relative;
 aspect-ratio: 4/3;
 border-radius: 12px;
 overflow: hidden;
}
.wt-photo::after {
 content: "";
 position: absolute;
 inset: 0;
 z-index: 2;
 box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
 border-radius: 12px;
}
.wt-num {
 font-family: var(--serif);
 font-weight: 700;
 font-size: 14px;
 color: var(--blue-royal);
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 16px;
}
.wt-num::after {
 content: "";
 flex: 1;
 height: 1px;
 background: var(--line);
}
.wt-body h3 {
 font-family: var(--serif);
 font-size: 25px;
 font-weight: 700;
 color: var(--ink);
 margin-bottom: 14px;
}
.wt-desc {
 font-size: 14.5px;
 color: var(--ink-soft);
 margin-bottom: 24px;
}
.wt-tag {
 font-size: 11.5px;
 font-weight: 700;
 color: var(--blue-deep);
 background: var(--blue-bg);
 border-radius: 999px;
 padding: 5px 14px;
 display: inline-block;
 margin-bottom: 16px;
}
.wt-list {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 10px 24px;
}
.wt-list li {
 position: relative;
 padding-left: 24px;
 font-size: 13.8px;
 color: var(--ink);
}
.wt-list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 9px;
 width: 13px;
 height: 13px;
 border-radius: 50%;
 background: var(--blue-bg);
 box-shadow: inset 0 0 0 2px var(--blue-royal);
}
.wt-list li::after {
 content: "";
 position: absolute;
 left: 4px;
 top: 13px;
 width: 5px;
 height: 5px;
 border-radius: 50%;
 background: var(--blue-royal);
}

/* ===== Strengths grid (shared style) ===== */
.strength-list {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 0;
 border-top: 1px solid var(--line);
}
.strength-item {
 padding: 40px 28px 8px;
 border-right: 1px solid var(--line);
}
.strength-item:last-child {
 border-right: none;
}
.strength-num {
 font-family: var(--serif);
 font-weight: 700;
 font-size: 15px;
 color: var(--blue-royal);
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 22px;
}
.strength-num::after {
 content: "";
 flex: 1;
 height: 1px;
 background: var(--line);
}
.strength-item h3 {
 font-size: 18px;
 font-weight: 700;
 color: var(--ink);
 margin-bottom: 14px;
 line-height: 1.5;
}
.strength-item p {
 font-size: 14px;
 color: var(--ink-soft);
}

/* ===== Equipment cards ===== */
.equip-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.equip-card {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: 12px;
 overflow: hidden;
 transition:
  box-shadow 0.2s ease,
  transform 0.2s ease;
}
.equip-card:hover {
 box-shadow: 0 12px 28px rgba(47, 92, 56, 0.12);
 transform: translateY(-3px);
}
.equip-photo {
 position: relative;
 aspect-ratio: 4/3;
 overflow: hidden;
}
.equip-body {
 padding: 20px 22px 24px;
}
.equip-body .ec-cat {
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.06em;
 color: var(--blue-royal);
 margin-bottom: 8px;
}
.equip-body h4 {
 font-size: 16.5px;
 font-weight: 700;
 color: var(--ink);
 margin-bottom: 8px;
}
.equip-body p {
 font-size: 13.3px;
 color: var(--ink-soft);
}

/* ===== Gallery (shared style) ===== */
.gallery-grid {
 display: grid;
 grid-template-columns: 1.4fr 1fr 1fr;
 grid-template-rows: 240px 240px;
 gap: 14px;
}
.gphoto {
 position: relative;
 border-radius: 10px;
 overflow: hidden;
 display: flex;
 align-items: flex-end;
}
.gphoto .gcap {
 position: relative;
 z-index: 3;
 color: #fff;
 font-size: 13px;
 padding: 16px 18px;
 font-weight: 600;
 letter-spacing: 0.02em;
}
.gphoto .gcap small {
 display: block;
 font-weight: 400;
 font-size: 11.5px;
 color: rgba(255, 255, 255, 0.78);
 margin-top: 2px;
}
.gphoto::before {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.6) 100%);
 z-index: 2;
}
.gphoto.g1 {
 grid-row: 1 / 3;
 background: linear-gradient(
  150deg,
  #869186 0%,
  #5f6c60 35%,
  #3e473d 70%,
  #262e25 100%
 );
}
.gphoto.g2 {
 background: linear-gradient(150deg, #94957f 0%, #6e7060 45%, #4d4f42 100%);
}
.gphoto.g3 {
 background: linear-gradient(150deg, #a8b3a6 0%, #82967f 40%, #566e54 100%);
}
.gphoto.g4 {
 background: linear-gradient(150deg, #8d9398 0%, #646b70 45%, #3d4347 100%);
}
.gphoto.g5 {
 background: linear-gradient(150deg, #b0a489 0%, #8d7f61 45%, #5e5340 100%);
}

/* gradients for worktype + equipment placeholders */
.grad-a {
 background: linear-gradient(
  150deg,
  #869186 0%,
  #5f6c60 38%,
  #3e473d 72%,
  #262e25 100%
 );
}
.grad-b {
 background: linear-gradient(150deg, #94957f 0%, #6e7060 45%, #4d4f42 100%);
}
.grad-c {
 background: linear-gradient(150deg, #a8b3a6 0%, #82967f 42%, #566e54 100%);
}
.grad-d {
 background: linear-gradient(150deg, #8d9398 0%, #646b70 45%, #3d4347 100%);
}
.grad-e {
 background: linear-gradient(150deg, #b0a489 0%, #8d7f61 45%, #5e5340 100%);
}
.grad-f {
 background: linear-gradient(
  150deg,
  #9aa39a 0%,
  #71807a 38%,
  #4d5c52 70%,
  #2f3a32 100%
 );
}

/* ===== CTA band ===== */
.cta-band {
 background: var(--blue-darker);
 padding: 64px 0;
 text-align: center;
 color: #fff;
}
.cta-band h2 {
 font-family: var(--serif);
 font-size: clamp(22px, 2.6vw, 30px);
 font-weight: 700;
 margin-bottom: 14px;
}
.cta-band p {
 font-size: 15px;
 color: rgba(255, 255, 255, 0.82);
 margin-bottom: 30px;
}
.cta-band .tel {
 font-family: var(--serif);
 font-size: 30px;
 font-weight: 700;
 color: #fff;
 margin-bottom: 6px;
}
.cta-band .tel-label {
 font-size: 12.5px;
 color: rgba(255, 255, 255, 0.7);
 margin-bottom: 24px;
}
.cta-actions {
 display: flex;
 gap: 14px;
 justify-content: center;
 flex-wrap: wrap;
}

/* ===== Footer (shared) ===== */
footer {
 background: var(--blue-darker);
 color: rgba(255, 255, 255, 0.82);
 padding: 52px 0 26px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 1.3fr 1fr 1fr;
 gap: 40px;
 padding-bottom: 32px;
 border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-brand .fb-name {
 font-size: 17.5px;
 font-weight: 700;
 color: #fff;
 margin-bottom: 14px;
}
.footer-brand p {
 font-size: 13.3px;
 color: rgba(255, 255, 255, 0.6);
 max-width: 300px;
}
.footer-col h6 {
 font-size: 12px;
 letter-spacing: 0.08em;
 color: rgba(255, 255, 255, 0.5);
 margin-bottom: 14px;
}
.footer-col ul {
 display: flex;
 flex-direction: column;
 gap: 9px;
 font-size: 13.3px;
}
.footer-col a:hover {
 color: #fff;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 padding-top: 20px;
 font-size: 11.5px;
 color: rgba(255, 255, 255, 0.45);
 flex-wrap: wrap;
 gap: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
 .nav-links {
  display: none;
 }
 .worktype {
  grid-template-columns: 1fr;
  gap: 28px;
 }
 .worktype.rev .wt-photo {
  order: 0;
 }
 .wt-photo {
  max-width: 560px;
 }
 .strength-list {
  grid-template-columns: 1fr 1fr;
 }
 .strength-item:nth-child(2) {
  border-right: none;
 }
 .strength-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  margin-bottom: 0;
 }
 .equip-grid {
  grid-template-columns: 1fr 1fr;
 }
 .gallery-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
 }
 .gphoto.g1 {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
 }
 .footer-grid {
  grid-template-columns: 1fr;
  gap: 26px;
 }
}
@media (max-width: 640px) {
 .header-inner {
  height: auto;
  min-height: 72px;
  padding: 14px 18px;
  flex-wrap: wrap;
  row-gap: 10px;
 }
 .brand-text {
  font-size: 14.5px;
 }
 .brand-text small {
  display: none;
 }
 .header-cta {
  width: 100%;
  justify-content: space-between;
 }
 .header-tel .label {
  display: none;
 }
 .header-tel .num {
  font-size: 15px;
 }
 .btn-primary {
  padding: 10px 18px;
  font-size: 13.5px;
 }
 .section {
  padding: 64px 0;
 }
 .wt-list {
  grid-template-columns: 1fr;
 }
 .strength-list {
  grid-template-columns: 1fr;
 }
 .strength-item {
  border-right: none;
 }
 .equip-grid {
  grid-template-columns: 1fr;
 }
 .gallery-grid {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 180px);
 }
 .gphoto.g1 {
  grid-column: 1;
  grid-row: 1;
 }
}
@media (prefers-reduced-motion: reduce) {
 html {
  scroll-behavior: auto;
 }
 * {
  transition: none !important;
 }
}
/* ============================================================
  SERVICE - NOTE BOX
============================================================ */
.service-note-box {
 margin-top: 48px;
 padding: 28px 32px;
 border: 1px solid rgba(28, 24, 16, 0.14);
 border-radius: 18px;
 background: rgba(255, 255, 255, 0.72);
}

.service-note-box h3 {
 margin: 0 0 10px;
 font-size: 1.125rem;
 line-height: 1.5;
}

.service-note-box p {
 margin: 0;
 line-height: 1.9;
}

@media (max-width: 767px) {
 .service-note-box {
  margin-top: 32px;
  padding: 22px 20px;
  border-radius: 14px;
 }
}
