:root{
  --green:#123c2b;
  --green-2:#1f6b48;
  --green-3:#eaf3eb;
  --red:#9a2632;
  --gold:#b08a3c;
  --ink:#1f2a24;
  --muted:#617168;
  --line:#e3dccf;
  --paper:#f7f2e8;
  --white:#fffdf8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Noto Sans JP","Yu Gothic",Meiryo,sans-serif;
  line-height:1.9;
  letter-spacing:0;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(247,242,232,.96);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:1180px;
  margin:auto;
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  text-decoration:none;
  color:var(--green);
  font-weight:900;
  font-size:20px;
  line-height:1.15;
}
.brand span{
  display:block;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.08em;
  margin-top:3px;
}
.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
  font-size:13px;
  font-weight:800;
}
.nav a{
  color:var(--green);
  text-decoration:none;
  padding:8px 0;
}
.nav a:hover{text-decoration:underline;text-underline-offset:4px}
.hero{
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#fffdf8 0%,#f1e8d8 100%);
}
.hero-inner{
  max-width:1180px;
  margin:auto;
  padding:70px 22px 56px;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);
  gap:44px;
  align-items:center;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--red);
  font-weight:900;
  font-size:13px;
  letter-spacing:.1em;
}
h1{
  margin:0;
  color:var(--green);
  font-family:"Noto Serif JP","Yu Mincho",serif;
  font-size:clamp(32px,5.2vw,58px);
  line-height:1.32;
  letter-spacing:0;
}
.lead{
  max-width:760px;
  margin:22px 0 0;
  color:#34483e;
  font-size:18px;
}
.hero-media{
  border-radius:8px;
  overflow:hidden;
  min-height:300px;
  background:var(--green);
  box-shadow:0 20px 44px rgba(18,60,43,.16);
}
.hero-media img{
  width:100%;
  height:100%;
  min-height:300px;
  object-fit:cover;
}
.hero-panel{
  background:var(--green);
  color:white;
  border-radius:8px;
  padding:26px;
  box-shadow:0 20px 44px rgba(18,60,43,.16);
}
.hero-panel strong{display:block;font-size:28px;line-height:1.35}
.hero-panel span{display:block;margin-top:10px;color:rgba(255,255,255,.82)}
.wrap{
  max-width:1180px;
  margin:auto;
  padding:54px 22px 80px;
}
.section{margin:0 0 62px}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.section h2{
  margin:0;
  color:var(--green);
  font-family:"Noto Serif JP","Yu Mincho",serif;
  font-size:clamp(26px,4vw,40px);
  line-height:1.45;
}
.section-kicker{
  margin:0 0 6px;
  color:var(--red);
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
}
.intro{
  max-width:880px;
  font-size:17px;
  color:#34483e;
}
.grid{display:grid;gap:18px}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  padding:24px;
}
.card h3{
  margin:0 0 10px;
  color:var(--green);
  font-size:20px;
  line-height:1.5;
}
.card p{margin:0;color:#3f5047}
.image-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  text-decoration:none;
}
.image-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.image-card-body{padding:18px}
.image-card h3{margin:0 0 8px;color:var(--green);font-size:20px;line-height:1.45}
.image-card p{margin:0;color:#3f5047}
.product-card{
  display:flex;
  flex-direction:column;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  text-decoration:none;
  min-height:100%;
}
.product-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:white;
}
.product-card-body{padding:16px}
.product-card h3{margin:0 0 6px;color:var(--green);font-size:18px;line-height:1.45}
.product-card p{margin:0;color:#3f5047;font-size:14px}
.badge{
  display:inline-block;
  margin-bottom:9px;
  color:var(--red);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}
.note{
  background:#fff7e7;
  border-left:5px solid var(--gold);
  border-radius:6px;
  padding:16px 18px;
  margin:22px 0;
}
.cta{
  background:var(--green);
  color:white;
  border-radius:8px;
  padding:30px;
}
.cta h2{color:white;margin:0 0 10px;font-size:30px}
.cta p{margin:0;color:rgba(255,255,255,.86)}
.buttons{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 18px;
  border-radius:6px;
  background:var(--green);
  color:white;
  text-decoration:none;
  font-weight:900;
}
.btn.light{background:white;color:var(--green)}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,.4)}
table{
  width:100%;
  border-collapse:collapse;
  background:var(--white);
  border:1px solid var(--line);
}
th,td{border:1px solid var(--line);padding:13px;text-align:left;vertical-align:top}
th{background:var(--green-3);color:var(--green)}
.breadcrumb{
  margin:0 0 24px;
  color:var(--muted);
  font-size:13px;
}
.breadcrumb a{color:var(--green)}
.site-footer{
  background:var(--green);
  color:white;
  padding:36px 22px;
}
.footer-inner{
  max-width:1180px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{color:white;text-decoration:none}
@media(max-width:880px){
  .header-inner{display:block}
  .nav{justify-content:flex-start;margin-top:10px;gap:10px;font-size:12px}
  .hero-inner{grid-template-columns:1fr;padding:44px 18px}
  .wrap{padding:38px 16px 62px}
  .section-head{display:block}
  .grid.two,.grid.three,.grid.four{grid-template-columns:1fr}
  .lead,.intro{font-size:16px}
  .hero-media img,.hero-media{min-height:230px}
}
/* HIDEGEN final dark header/footer override */
.site-header,
header.site-header,
.site-header .header-inner,
header.site-header .header-inner {
  background: #0e3d2b !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.site-header .brand,
.site-header .brand:visited,
.site-header .brand span,
.site-header .nav a,
.site-header .nav a:visited,
.site-header nav a,
.site-header nav a:visited {
  color: #ffffff !important;
  background: transparent !important;
  text-decoration: none !important;
}
.site-header .brand span,
.site-header .text-logo-sub {
  color: rgba(255,255,255,.72) !important;
}
.site-footer,
footer.site-footer,
.site-footer .footer-inner,
footer.site-footer .footer-inner {
  background: #0e3d2b !important;
  color: #ffffff !important;
  border-top: 0 !important;
}
.site-footer *,
footer.site-footer *,
.site-footer a,
footer.site-footer a {
  color: #ffffff !important;
  text-decoration: none !important;
}
.site-footer .footer-brand span,
footer.site-footer .footer-brand span {
  color: rgba(255,255,255,.72) !important;
}
/* HIDEGEN final Japanese readability fix: natural wrapping without forced phrase breaks */
p, li, dd, td, th, .lead, .page-lead, .sales-lead, .home-about-panel p, .section-block p, .main-content p, .main-content li, .article p, .article li, .cta p, .problem-card p, .guide-link p, .usecase-card p {
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: strict !important;
}
.home-about-panel p, .home-visual-hero p, .site-intro p {
  max-width: 980px !important;
}
.shop-grid .card, .final-offer h2, body .site-intro.home-visual-hero h1, body .site-intro.home-visual-hero p {
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: strict !important;
}
.nowrap-term { white-space: nowrap !important; }
/* HIDEGEN final readable layout: keep text areas wide, then let the browser wrap naturally. */
html body main.page-wrap,
html body main.clean-page,
html body main.product-clean-page,
html body .page-wrap,
html body .clean-page,
html body .product-clean-page,
html body .wrap,
html body .main-content,
html body .article,
html body .blog_body {
  width: min(100% - 32px, 1180px) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
html body .sales-section,
html body .section,
html body section,
html body .section-block,
html body .sales-title,
html body .home-about-panel,
html body .site-intro,
html body .home-visual-hero,
html body .product-clean-page .section {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
html body .page-lead,
html body .lead,
html body .intro,
html body .section-desc,
html body .section-text,
html body .sales-title p,
html body .site-intro p,
html body .home-visual-hero p,
html body .home-about-panel p,
html body .sales-lead,
html body .article p,
html body .article li,
html body .blog_body p,
html body .blog_body li,
html body .main-content p,
html body .main-content li,
html body .section-block p,
html body .cta p,
html body .problem-card p,
html body .guide-link p,
html body .usecase-card p,
html body .product-clean-page .section-desc,
html body .product-clean-page .section-text {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-break: strict !important;
  text-wrap: pretty;
}
html body .sales-title p,
html body .page-lead,
html body .section-desc,
html body .home-about-panel p {
  font-size: clamp(15px, 1.45vw, 17px) !important;
  line-height: 2 !important;
}
@media (max-width: 760px) {
  html body main.page-wrap,
  html body main.clean-page,
  html body main.product-clean-page,
  html body .page-wrap,
  html body .clean-page,
  html body .product-clean-page,
  html body .wrap,
  html body .main-content,
  html body .article,
  html body .blog_body {
    width: min(100% - 24px, 1180px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}