:root{
  --green:#58734f;
  --green-dark:#253826;
  --soft-green:#eef3e9;
  --cream:#fbfaf5;
  --cream2:#f3f1e8;
  --line:#dfe4d8;
  --text:#2d312c;
  --muted:#646d60;
  --white:#fff;
  --shadow:0 12px 34px rgba(50,64,45,.08);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
section{scroll-margin-top:92px}
body{
  background:var(--cream);
  color:var(--text);
  font-family:"Zen Kaku Gothic New","Hiragino Sans","Yu Gothic",sans-serif;
  letter-spacing:.04em;
  line-height:1.85;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.site-header{
  height:70px;
  padding:0 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(88,115,79,.10);
  position:sticky;
  top:0;
  z-index:50;
}

.logo{
  font-family:"Noto Serif JP",serif;
  font-size:29px;
  font-weight:600;
  color:var(--green-dark);
  letter-spacing:.01em;
  white-space:nowrap;
}

.nav{
  display:flex;
  gap:28px;
  align-items:center;
  font-size:13px;
  font-weight:700;
}

.nav a{
  padding:8px 0;
  position:relative;
}
.nav a::after{
  content:"";
  width:0;
  height:1px;
  background:var(--green);
  position:absolute;
  left:0;
  bottom:1px;
  transition:.2s;
}
.nav a:hover::after,.nav a.active::after{width:100%}

.line-header{
  display:flex;
  align-items:center;
  gap:7px;
  background:var(--green);
  color:#fff;
  border-radius:999px;
  padding:9px 17px;
  font-weight:700;
  font-size:13px;
  box-shadow:0 10px 22px rgba(88,115,79,.18);
}
.line-icon{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#fff;
  color:#48a948;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:7px;
  font-weight:700;
}

.hero{
  min-height:460px;
  display:grid;
  grid-template-columns:43% 57%;
  background:#fff;
  border-bottom:1px solid rgba(88,115,79,.10);
}

.hero-copy{
  padding:74px 0 48px 62px;
}

.hero h1{
  font-family:"Noto Serif JP",serif;
  color:var(--green-dark);
  font-size:54px;
  line-height:1.52;
  letter-spacing:.08em;
  font-weight:600;
  margin-bottom:26px;
}

.hero-main{
  font-size:18px;
  font-weight:700;
  line-height:1.9;
  margin-bottom:28px;
}

.hero-sub{
  font-family:"Noto Serif JP",serif;
  color:var(--green);
  font-size:17px;
  margin-bottom:22px;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin:0 0 30px;
}
.hero-trust span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:5px 12px;
  border-radius:999px;
  background:var(--soft-green);
  border:1px solid rgba(88,115,79,.16);
  color:var(--green-dark);
  font-size:13px;
  font-weight:700;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  min-width:160px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  transition:.2s;
}
.btn:hover{transform:translateY(-2px);opacity:.92}
.btn-green{
  background:var(--green);
  color:#fff;
  box-shadow:0 8px 18px rgba(88,115,79,.18);
}
.btn-white,.btn-small,.btn-insta{
  background:rgba(255,255,255,.82);
  color:var(--green-dark);
  border:1px solid rgba(88,115,79,.72);
}
.btn-small{min-width:160px;margin-top:16px}

.hero-visual{
  position:relative;
  overflow:hidden;
}

.hero-visual img{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  object-position:center top;
}

.concept{
  display:grid;
  grid-template-columns:46% 54%;
  padding:58px 60px 52px;
  background:#fff;
}

.concept-copy h2,
.section-heading h2,
.flow h2{
  font-family:"Noto Serif JP",serif;
  color:var(--green-dark);
  font-size:26px;
  line-height:1.3;
  display:inline-block;
  position:relative;
  margin-bottom:24px;
  padding-left:14px;
}
.concept-copy h2::before,
.section-heading h2::before,
.flow h2::before{
  content:"";
  width:5px;
  height:1.1em;
  background:var(--green);
  border-radius:999px;
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
}
.concept-text{
  max-width:520px;
}
.concept-text p{
  font-size:16px;
  line-height:2.05;
  color:#3f473d;
  margin-bottom:20px;
}
.concept-text p:last-child{
  margin-bottom:0;
}

.concept-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  align-items:center;
  text-align:center;
}

.point{
  position:relative;
}
.point + .point::before{
  content:"";
  width:1px;
  height:110px;
  background:linear-gradient(var(--line),transparent);
  position:absolute;
  left:-14px;
  top:18px;
}

.point-icon{
  width:104px;
  height:104px;
  border-radius:50%;
  background:linear-gradient(180deg,#eef3ea,#fbfaf5);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-size:42px;
}
.point p{
  font-weight:700;
  font-size:14px;
  line-height:1.65;
}

.service{
  padding:18px 60px 66px;
  background:#fff;
}
.section-heading p{
  margin-top:0;
  font-size:13px;
  color:var(--muted);
  margin-bottom:24px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.service-card{
  background:#fff;
  border:1px solid rgba(88,115,79,.12);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(55,66,49,.05);
  position:relative;
  transition:.2s;
}
.service-card:hover{transform:translateY(-3px)}

.card-img{
  height:138px;
  overflow:hidden;
}
.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  border:4px solid #fff;
  position:absolute;
  left:50%;
  top:116px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
}
.card-icon.line-mini{font-size:9px}

.card-text{
  min-height:188px;
  padding:30px 18px 18px;
}
.card-text h3{
  font-size:15px;
  color:var(--green-dark);
  margin-bottom:9px;
  line-height:1.6;
  font-weight:700;
}
.card-text p{
  font-size:11.7px;
  color:#4c5548;
  line-height:1.95;
  min-height:72px;
}
.card-text span{
  display:block;
  margin-top:12px;
  text-align:center;
  color:var(--green);
  font-size:12px;
  font-weight:700;
}

.sns-section{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
  padding:34px 60px 44px;
  background:linear-gradient(180deg,#f1f0e8,#fbfaf5);
  border-top:1px solid rgba(88,115,79,.08);
  border-bottom:1px solid rgba(88,115,79,.08);
}

.instagram-box,.line-box,.sub-sns-box{
  background:rgba(255,255,255,.76);
  border:1px solid rgba(88,115,79,.16);
  border-radius:9px;
  padding:24px;
}

.instagram-box h2,.line-box h2,.sub-sns-box h2{
  font-family:"Noto Serif JP",serif;
  color:var(--green-dark);
  font-size:22px;
  margin-bottom:5px;
}
.instagram-box p,.line-box p,.sub-sns-box p{
  font-size:12px;
  color:var(--muted);
}

.insta-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:7px;
  margin:20px 0 17px;
}
.insta-row img{
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:5px;
}

.btn-insta{
  min-width:180px;
  height:36px;
  font-size:12px;
}

.line-box h2{
  color:var(--green);
  font-size:18px;
  margin-bottom:16px;
}
.line-box p,.sub-sns-box p{
  margin-bottom:20px;
}
.line-main{
  width:100%;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#33a944;
  color:#fff;
  font-size:13px;
  font-weight:700;
  gap:12px;
}

.flow{
  padding:54px 60px 62px;
  background:#fff;
}
.flow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.flow-grid div{
  background:var(--cream);
  border:1px solid rgba(88,115,79,.13);
  border-radius:14px;
  padding:26px 22px;
  position:relative;
  box-shadow:0 10px 24px rgba(50,64,45,.04);
}
.flow-grid span{
  font-family:"Noto Serif JP",serif;
  color:var(--green);
  font-size:40px;
  line-height:1;
  font-weight:700;
  display:block;
  margin-bottom:12px;
}
.flow-grid h3{
  margin:6px 0;
  font-size:19px;
  color:var(--green-dark);
}
.flow-grid p{
  font-size:14px;
  color:var(--muted);
}

.home-final-cta{
  width:min(980px,calc(100% - 48px));
  margin:0 auto 70px;
  text-align:center;
  background:linear-gradient(180deg,#f7f8f2,#fff);
  border:1px solid rgba(88,115,79,.16);
  border-radius:24px;
  padding:44px 36px;
  box-shadow:0 14px 34px rgba(50,64,45,.06);
}
.home-final-cta .cta-kicker{
  color:var(--green);
  font-weight:700;
  font-size:14px;
  margin-bottom:10px;
}
.home-final-cta h2{
  font-family:"Noto Serif JP",serif;
  color:var(--green-dark);
  font-size:32px;
  line-height:1.6;
  white-space:pre-line;
  margin-bottom:16px;
}
.home-final-cta p:not(.cta-kicker){
  color:#40503e;
  font-size:16px;
  line-height:2;
  margin-bottom:26px;
}
.home-cta-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.home-cta-buttons .line-main{
  width:auto;
  min-width:260px;
  padding:0 24px;
}

.footer{
  display:grid;
  grid-template-columns:1.55fr .75fr .8fr .75fr;
  gap:34px;
  padding:37px 60px;
  background:#f1f5ed;
}
.footer h2{
  font-family:"Noto Serif JP",serif;
  font-size:22px;
  color:var(--green-dark);
  margin-bottom:10px;
}
.footer h3{
  font-size:13px;
  color:var(--green-dark);
  margin-bottom:9px;
}
.footer p,.footer a{
  font-size:12px;
  color:#4f5c4b;
}
.copyright{
  background:var(--green);
  color:#fff;
  text-align:center;
  padding:8px;
  font-size:11px;
}

@media(max-width:1100px){
  .site-header{height:auto;align-items:flex-start;flex-direction:column;padding:18px 5vw;gap:12px}
  .nav{width:100%;overflow-x:auto;white-space:nowrap}
  .line-header{align-self:flex-start}
  .hero{grid-template-columns:1fr}
  .hero-copy{padding:44px 5vw 32px}
  .hero h1{font-size:42px}
  .hero-visual img{min-height:auto}
  .concept{grid-template-columns:1fr;padding:44px 5vw}
  .concept-points{margin-top:30px}
  .service{padding:24px 5vw 50px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .sns-section{grid-template-columns:1fr;padding:34px 5vw}
  .flow{padding:44px 5vw}
  .flow-grid{grid-template-columns:repeat(2,1fr)}
  .footer{grid-template-columns:1fr 1fr;padding:34px 5vw}
}

@media(max-width:640px){
  .logo{font-size:24px}
  .hero-main{font-size:17px}
  .hero-sub{font-size:16px}
  .home-final-cta{width:calc(100% - 32px); padding:32px 20px; margin-bottom:48px}
  .home-final-cta h2{font-size:25px}
  .home-final-cta p:not(.cta-kicker){font-size:15px}
  .home-cta-buttons{display:grid}
  .home-cta-buttons .line-main{width:100%; min-width:0}
  .hero h1{font-size:36px}
  .hero-buttons{display:grid}
  .btn{width:100%}
  .concept-points{grid-template-columns:1fr}
  .point + .point::before{display:none}
  .service-grid{grid-template-columns:1fr}
  .flow-grid{grid-template-columns:1fr}
  .footer{grid-template-columns:1fr}
}

/* Web Design detail page */
.web-page{
  background:linear-gradient(180deg,#fbfaf5 0%,#fff 42%,#fbfaf5 100%);
}
.web-container{
  width:min(1120px,calc(100% - 48px));
  margin:0 auto;
}
.web-hero-fixed{
  background:linear-gradient(90deg,#f7f8f2 0%,#fbfaf5 50%,#f5f0e4 100%);
  border-bottom:1px solid rgba(88,115,79,.10);
}
.web-hero-inner{
  width:min(1200px,calc(100% - 56px));
  min-height:560px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:48px;
  align-items:center;
  padding:72px 0;
}
.web-kicker{
  font-family:"Noto Serif JP",serif;
  color:var(--green);
  font-size:20px;
  letter-spacing:.12em;
  margin-bottom:18px;
}
.web-hero-copy-fixed h1{
  font-family:"Noto Serif JP",serif;
  color:var(--green-dark);
  font-size:48px;
  line-height:1.45;
  letter-spacing:.06em;
  font-weight:700;
  margin-bottom:26px;
}
.web-lead{
  color:#40503e;
  font-size:18px;
  line-height:2;
  font-weight:500;
  margin-bottom:30px;
}
.web-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.web-hero-image-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(88,115,79,.14);
  border-radius:22px;
  padding:16px;
  box-shadow:0 24px 54px rgba(50,64,45,.10);
}
.web-hero-image-card img{
  width:100%;
  border-radius:16px;
  object-fit:cover;
  aspect-ratio:575/395;
}
.web-section{
  padding:68px 0;
}
.web-section h2,
.web-promise h2{
  font-family:"Noto Serif JP",serif;
  color:var(--green-dark);
  font-size:32px;
  line-height:1.4;
  margin-bottom:18px;
  position:relative;
}
.web-section h2::after,
.web-promise h2::after{
  content:"";
  display:block;
  width:40px;
  height:2px;
  background:var(--green);
  margin-top:10px;
}
.web-section-lead{
  color:var(--muted);
  font-size:17px;
  line-height:1.9;
  margin-bottom:28px;
}
.web-chip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.web-chip-grid div{
  background:#fff;
  border:1px solid rgba(88,115,79,.14);
  border-radius:14px;
  padding:20px;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--green-dark);
  font-size:16px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(50,64,45,.04);
}
.web-price-card{
  background:#fff;
  border:1px solid rgba(88,115,79,.16);
  border-radius:18px;
  padding:46px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  box-shadow:0 14px 34px rgba(50,64,45,.06);
}
.web-label{
  display:inline-block;
  background:var(--soft-green);
  color:var(--green);
  border-radius:999px;
  padding:6px 14px;
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
}
.web-price-main h3,
.web-included h3{
  color:var(--green-dark);
  font-size:25px;
  line-height:1.5;
  margin-bottom:12px;
}
.web-price{
  color:var(--green-dark);
  font-size:28px;
  line-height:1.2;
  margin:12px 0 20px;
  border-bottom:1px solid rgba(88,115,79,.22);
  padding-bottom:18px;
}
.web-price span{
  font-family:"Noto Serif JP",serif;
  font-size:70px;
  font-weight:700;
  letter-spacing:.03em;
}
.web-price small{
  font-size:16px;
  color:var(--muted);
}
.web-price-main p:not(.web-label):not(.web-price){
  font-size:18px;
  line-height:1.9;
  color:#40503e;
}
.web-included ul{
  list-style:none;
}
.web-included li{
  position:relative;
  padding-left:34px;
  margin-bottom:13px;
  font-size:17px;
  line-height:1.7;
  font-weight:700;
  color:#344434;
}
.web-included li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:23px;
  height:23px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.web-note{
  margin-top:18px;
  color:#4e5b4b;
  font-size:15px;
}
.web-options-wrap{background:rgba(238,243,233,.35)}
.web-option-grid-fixed{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.web-option-card{
  background:#fff;
  border:1px solid rgba(88,115,79,.15);
  border-radius:16px;
  padding:26px 22px;
  min-height:190px;
  box-shadow:0 10px 24px rgba(50,64,45,.04);
}
.web-option-card h3{
  color:var(--green-dark);
  font-size:20px;
  line-height:1.5;
  margin-bottom:10px;
}
.web-option-card p{
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin-bottom:14px;
}
.web-option-card strong{
  display:block;
  color:var(--green);
  font-size:21px;
  line-height:1.5;
}
.web-two-column{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}
.web-flow-box,.web-cta-box{
  background:#fff;
  border:1px solid rgba(88,115,79,.15);
  border-radius:18px;
  padding:36px;
  box-shadow:0 12px 30px rgba(50,64,45,.05);
}
.web-flow-list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.web-flow-list li{
  background:var(--cream);
  border-radius:14px;
  padding:20px 16px;
}
.web-flow-list span{
  color:var(--green);
  font-family:"Noto Serif JP",serif;
  font-size:22px;
  font-weight:700;
}
.web-flow-list strong{
  display:block;
  color:var(--green-dark);
  font-size:17px;
  margin:6px 0;
}
.web-flow-list p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}
.web-cta-box{
  background:linear-gradient(180deg,#f7f8f2,#fff);
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}
.web-cta-box h2::after{margin-left:auto;margin-right:auto}
.web-cta-box p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:24px;
  color:#40503e;
}
.web-promise{
  padding:42px 0 72px;
}
.web-promise .web-container{
  background:#f4f0e8;
  border:1px solid rgba(88,115,79,.14);
  border-radius:18px;
  padding:28px 34px;
  display:grid;
  grid-template-columns:180px 1fr;
  gap:24px;
  align-items:center;
}
.web-promise h2{margin-bottom:0}
.web-promise p{
  color:#40503e;
  font-size:18px;
  line-height:1.9;
}

@media(max-width:1100px){
  .web-hero-inner{grid-template-columns:1fr;min-height:auto;padding:54px 0;gap:32px}
  .web-hero-copy-fixed h1{font-size:40px}
  .web-chip-grid,.web-option-grid-fixed{grid-template-columns:repeat(2,1fr)}
  .web-price-card,.web-two-column{grid-template-columns:1fr}
  .web-flow-list{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .web-container,.web-hero-inner{width:min(100% - 32px,1120px)}
  .web-hero-inner{padding:42px 0}
  .web-hero-copy-fixed h1{font-size:32px;line-height:1.5}
  .web-kicker{font-size:17px}
  .web-lead{font-size:16px;line-height:1.95}
  .web-section{padding:48px 0}
  .web-section h2,.web-promise h2{font-size:27px}
  .web-chip-grid,.web-option-grid-fixed,.web-flow-list{grid-template-columns:1fr}
  .web-price-card{padding:26px 20px;gap:28px}
  .web-price span{font-size:52px}
  .web-price{font-size:22px}
  .web-included li{font-size:16px}
  .web-two-column{gap:18px}
  .web-flow-box,.web-cta-box{padding:26px 20px}
  .web-promise .web-container{grid-template-columns:1fr;padding:24px 20px}
  .web-promise p{font-size:16px}
}

/* Accessibility and added pages */
body{font-size:17px;}
.nav{font-size:14px;}
.hero-main,.concept-copy p,.section-heading p{font-size:16px;}
.card-icon{display:none;}
.card-text{padding:22px 20px 20px; min-height:190px;}
.card-text h3{font-size:18px;}
.card-text p{font-size:15px; min-height:94px;}
.card-text span{font-size:15px;}
.flow-grid p,.footer p,.footer a,.instagram-box p,.line-box p,.sub-sns-box p{font-size:15px;}
.btn,.line-header,.line-main{font-size:15px; min-height:46px;}

.detail-page{background:linear-gradient(180deg,#fbfaf5 0%,#fff 45%,#fbfaf5 100%);}
.detail-hero{width:min(1200px,calc(100% - 56px)); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; padding:74px 0 68px;}
.detail-hero-copy h1{font-family:"Noto Serif JP",serif; color:var(--green-dark); font-size:48px; line-height:1.45; letter-spacing:.06em; margin-bottom:24px; white-space:pre-line;}
.detail-hero-copy p:not(.web-kicker){font-size:19px; line-height:2; color:#40503e; margin-bottom:28px;}
.detail-hero-image{background:rgba(255,255,255,.72); border:1px solid rgba(88,115,79,.14); border-radius:22px; padding:16px; box-shadow:0 24px 54px rgba(50,64,45,.10);}
.detail-hero-image img{width:100%; border-radius:16px; aspect-ratio: 4/3; object-fit:cover;}
.detail-section{padding:66px 0; background:#fff;}
.detail-section.soft{background:rgba(238,243,233,.36);}
.detail-section h2,.detail-cta h2{font-family:"Noto Serif JP",serif; color:var(--green-dark); font-size:33px; line-height:1.45; margin-bottom:18px;}
.detail-card-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
.detail-card{background:#fff; border:1px solid rgba(88,115,79,.15); border-radius:16px; padding:26px 22px; box-shadow:0 10px 24px rgba(50,64,45,.04);}
.detail-card.price-featured{border:2px solid var(--green); background:linear-gradient(180deg,#fff,#f7faf4); position:relative; transform:translateY(-4px);}
.price-badge{display:inline-block; background:var(--green); color:#fff; border-radius:999px; padding:4px 12px; font-size:13px; font-weight:700; margin-bottom:12px;}
.detail-card h3{color:var(--green-dark); font-size:21px; line-height:1.5; margin-bottom:10px;}
.detail-card p{font-size:17px; line-height:1.85; color:#485346;}
.detail-card.price-featured p{font-size:30px; font-weight:700; color:var(--green-dark); line-height:1.35;}
.detail-card small{display:block; margin-top:10px; color:var(--muted); font-size:13px; line-height:1.7;}
.detail-cta{width:min(920px,calc(100% - 48px)); margin:70px auto; text-align:center; background:linear-gradient(180deg,#f7f8f2,#fff); border:1px solid rgba(88,115,79,.16); border-radius:22px; padding:40px; box-shadow:0 12px 30px rgba(50,64,45,.05);}
.detail-cta p{font-size:18px; line-height:1.9; color:#40503e; margin-bottom:24px;}
.faq-list{display:grid; gap:16px;}
.faq-list div{background:#fff; border:1px solid rgba(88,115,79,.15); border-radius:16px; padding:24px;}
.faq-list h3{font-size:21px; color:var(--green-dark); margin-bottom:8px;}
.faq-list p,.policy-text p{font-size:17px; line-height:1.95; color:#40503e; margin-bottom:20px;}
.policy-text h3{font-size:22px; color:var(--green-dark); margin:28px 0 8px;}
.legal-table{width:100%; border-collapse:collapse; background:#fff; border:1px solid rgba(88,115,79,.16); border-radius:14px; overflow:hidden;}
.legal-table th,.legal-table td{border-bottom:1px solid rgba(88,115,79,.13); padding:18px; text-align:left; font-size:16px; line-height:1.8;}
.legal-table th{width:230px; background:var(--soft-green); color:var(--green-dark);}
.contact-buttons{display:flex; gap:16px; flex-wrap:wrap; align-items:center; margin-top:26px;}
.contact-buttons .line-main{width:auto; padding:0 30px;}
.footer a:hover,.nav a:hover,.service-card:hover span{text-decoration:underline;}

@media(max-width:1100px){.detail-hero{grid-template-columns:1fr; padding:54px 0}.detail-card-grid{grid-template-columns:repeat(2,1fr)}.detail-hero-copy h1{font-size:40px}.service-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){body{font-size:16px}.detail-hero{width:min(100% - 32px,1120px); padding:42px 0}.detail-hero-copy h1{font-size:32px}.detail-hero-copy p:not(.web-kicker){font-size:16px}.detail-card-grid{grid-template-columns:1fr}.detail-section h2,.detail-cta h2{font-size:27px}.detail-card p,.faq-list p,.policy-text p{font-size:16px}.legal-table th,.legal-table td{display:block;width:100%}.contact-buttons{display:grid}.contact-buttons .line-main{width:100%}.nav{font-size:14px}}

/* 制作サンプル：スクリーンショット風カード */
.section-lead{
  max-width:760px;
  color:var(--muted);
  font-size:17px;
  line-height:1.9;
  margin:0 0 30px;
}
.sample-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px;
}
.sample-card{
  background:#fff;
  border:1px solid rgba(88,115,79,.16);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(50,64,45,.06);
}
.sample-image{
  background:#fbfaf5;
  border-bottom:1px solid rgba(88,115,79,.14);
  padding:18px;
}
.sample-image img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(88,115,79,.14);
}
.sample-text{
  padding:26px 28px 30px;
}
.sample-text h3{
  color:var(--green-dark);
  font-size:23px;
  line-height:1.55;
  margin-bottom:12px;
}
.sample-text p{
  color:#485346;
  font-size:16px;
  line-height:1.9;
  margin-bottom:18px;
}
.sample-text span{
  display:inline-block;
  color:var(--green);
  background:#eef3e9;
  border:1px solid #d7e1d0;
  border-radius:999px;
  padding:8px 16px;
  font-weight:700;
  font-size:14px;
}
.sample-bike .sample-text span{background:#e9f1f0; border-color:#cfdfdc; color:#39655e;}
.sample-cafe .sample-text span{background:#f4ece1; border-color:#e5d4bd; color:#8b5c39;}
.sample-seitai .sample-text span{background:#edf4ea; border-color:#d4e2cf; color:#547d59;}
@media(max-width:900px){.sample-card-grid{grid-template-columns:1fr}.sample-text h3{font-size:21px}}
@media(max-width:640px){.sample-section .web-container{width:min(100% - 32px,1120px)}.sample-image{padding:12px}.sample-text{padding:22px 20px 24px}.section-lead{font-size:16px}}
