:root{
  --bg: #f6f1e8;
  --bg2:#fbf7f0;
  --card:#fffaf2;
  --line:#e7dccb;

  --text:#2b2621;
  --muted:#6a5f55;

  --accent:#b88652;   /* ベージュ系の濃いめ */
  --accent2:#d7b48c;  /* 柔らかい */
  --shadow: 0 14px 40px rgba(43,38,33,.10);

  --radius: 22px;
  --radius2: 28px;

  --container: 1120px;

  --gap: 22px;
  --sectionY: 84px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Segoe UI", sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 70%);
  line-height:1.7;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0; }
ul{ margin:0; padding-left:1.2em; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(246,241,232,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(231,220,203,.7);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 180px;
}
.brand-mark{
  width:124px;height:44px;
  border-radius:14px;
  display:grid;place-items:center;
  color:#2b2621;
  font-weight:800;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:800; letter-spacing:.02em; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:4px; }

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:700;
}
.site-nav a{
  padding:10px 10px;
  border-radius:12px;
  color:#3a332d;
}
.site-nav a:hover{
  background: rgba(215,180,140,.28);
}
.nav-cta{
  background: linear-gradient(180deg, #CCE700, #92AD00);
  color:#FFFFFF!important;
  box-shadow: 0 10px 22px rgba(43,38,33,.12);
}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(231,220,203,.9);
  background: rgba(255,250,242,.9);
  box-shadow: 0 10px 22px rgba(43,38,33,.08);
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:20px;height:2px;
  background:#3a332d;
  margin:5px auto;
  border-radius:999px;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(231,220,203,.8);
}
.hero-bg{
  height: 520px;
  background:
    linear-gradient(90deg, rgba(246,241,232,.92), rgba(246,241,232,.65)),
    url("../img/33995343_m.jpg");
  background-size:cover;
  background-position:center;
}
.hero-inner{
  position:relative;
  margin-top: -220px;
  padding-bottom: 40px;
}
.hero-card{
  background: rgba(255,250,242,.92);
  border:1px solid rgba(231,220,203,.9);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 34px;
}
.eyebrow{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,180,140,.28);
  border:1px solid rgba(231,220,203,.8);
  font-weight:800;
  letter-spacing:.06em;
  font-size: 13px;
}
.hero-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height:1.25;
  letter-spacing:.01em;
}
.hero-lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top: 18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 900;
  border: 1px solid rgba(231,220,203,.95);
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(180deg, #CCE700, #92AD00);
  box-shadow: 0 12px 26px rgba(43,38,33,.14);
  color: #FFFFFF;
}
.btn-ghost{
  background: rgba(255,250,242,.9);
}
.btn-full{ width:100%; }

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.badge{
  background: rgba(255,250,242,.9);
  border:1px solid rgba(231,220,203,.9);
  border-radius: 18px;
  padding: 12px 14px;
}
.badge-k{
  display:block;
  font-size:12px;
  color: var(--muted);
  font-weight:900;
  letter-spacing:.08em;
}
.badge-v{
  display:block;
  font-size:14px;
  font-weight:900;
  margin-top:4px;
}

/* Sections */
.section{
  padding: var(--sectionY) 0;
}
.section.alt{
  background: rgba(255,250,242,.55);
  border-top:1px solid rgba(231,220,203,.8);
  border-bottom:1px solid rgba(231,220,203,.8);
}
.section-head{
  margin-bottom: 26px;
}
.kicker{
  font-weight: 900;
  letter-spacing:.18em;
  color: var(--muted);
  margin-bottom: 6px;
}
.section-title{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height:1.25;
}
.section-lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 80ch;
}

.grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--gap);
  align-items:stretch;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
}

/* Cards */
.card{
  background: rgba(255,250,242,.92);
  border:1px solid rgba(231,220,203,.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(43,38,33,.08);
}
.card-pad{ padding: 26px; }
.card-title{ margin: 0 0 10px; font-size: 18px; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }

.bullets li{ margin: 10px 0; }

/* Media card */
.media-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(231,220,203,.9);
  box-shadow: var(--shadow);
  background: rgba(255,250,242,.92);
}
.media-img{ height: 320px; width:100%; object-fit:cover; }
.media-caption{ padding: 18px 20px; }
.media-title{ font-weight: 900; margin-bottom: 6px; }
.media-text{ color: var(--muted); }

/* Service */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
}
.service-card{
  padding: 26px;
}
.service-card h3{ margin: 10px 0 8px; }
.service-card p{ color: var(--muted); }
.icon{
  width:44px;height:44px;
  border-radius:16px;
  display:grid;place-items:center;
  background: rgba(215,180,140,.28);
  border:1px solid rgba(231,220,203,.85);
  font-size: 20px;
}

/* Timeline */
.timeline{
  display:grid;
  gap: 14px;
}
.step{
  display:grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items:stretch;
  background: rgba(255,250,242,.92);
  border:1px solid rgba(231,220,203,.9);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 10px 26px rgba(43,38,33,.08);
}
.step-no{
  width:64px;height:64px;
  border-radius: 22px;
  display:grid;place-items:center;
  background: linear-gradient(180deg, #CCE700, #92AD00);
  font-weight: 1000;
  font-size: 18px;
  color: #FFFFFF;
}
.step-body h3{ margin: 2px 0 6px; font-size: 20px; }
.step-body p{ color: var(--muted); margin-bottom: 8px; }
.mini{ padding-left: 1.1em; }
.mini li{ margin: 6px 0; color: var(--muted); }

.cta-panel{
  margin-top: 22px;
  display:flex;
  gap: 16px;
  align-items:center;
  justify-content:space-between;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(215,180,140,.28), rgba(215,180,140,.15));
  border:1px solid rgba(231,220,203,.9);
}
.cta-panel h3{ margin:0 0 6px; }
.cta-panel p{ margin:0; color: var(--muted); }

/* Cases */
.cases{
  display:grid;
  gap: var(--gap);
}
.case{
  overflow:hidden;
  display:grid;
  grid-template-columns: 360px 1fr;
  align-items:stretch;
}
.case-img{
  height: 240px;
  width:100%;
  object-fit:cover;
}
.case-body{
  padding: 22px;
}
/* Cases tweaks (more items, readable) */
.case-body h3{
  font-size: 18px;
  line-height: 1.35;
}

.cases{
  gap: 18px; /* 少し詰めて件数が増えても読みやすく */
}

@media (max-width: 980px){
  .case-body{ padding: 18px; }
  .tags{ gap: 6px; }
}

.tags{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.tag{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(215,180,140,.20);
  border:1px solid rgba(231,220,203,.85);
  font-weight: 900;
  font-size: 12px;
  color:#3a332d;
}

/* Accordion */
.accordion{
  display:grid;
  gap: 10px;
}
.acc-item{
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 18px 18px;
  border-radius: var(--radius);
  border:1px solid rgba(231,220,203,.9);
  background: rgba(255,250,242,.92);
  box-shadow: 0 10px 26px rgba(43,38,33,.08);
  cursor:pointer;
  font-weight: 900;
}
.acc-q{ font-size: 16px; }
.acc-ico{
  width:40px;height:40px;
  border-radius: 14px;
  display:grid;place-items:center;
  background: linear-gradient(180deg, #CCE700, #92AD00);
  border:1px solid rgba(231,220,203,.85);
  font-size: 18px;
  color: #FFFFFF;
}
.acc-panel{
  display:none;
  padding: 0 18px 18px;
  margin-top: -6px;
  color: var(--muted);
}

/* Form */
.form .field{ margin-bottom: 14px; }
label{ display:block; font-weight:900; margin-bottom: 6px; }
input, textarea{
  width:100%;
  padding: 14px 14px;
  border-radius: 16px;
  border:1px solid rgba(231,220,203,.95);
  background: rgba(255,250,242,.95);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(184,134,82,.8);
  box-shadow: 0 0 0 4px rgba(184,134,82,.12);
}

/* Footer */
.footer{
  padding: 44px 0 20px;
  background: rgba(246,241,232,.8);
  border-top: 1px solid rgba(231,220,203,.9);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  align-items:center;
}
.footer-brand{ font-weight: 1000; font-size: 16px; }
.footer-meta{ color: var(--muted); font-size: 13px; margin-top: 6px; }
.footer-right{ color: var(--muted); font-weight: 900; display:flex; align-items:center; gap: 10px; }
.dot{ opacity:.7; }
.footer-bottom{
  margin-top: 18px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .case{ grid-template-columns: 1fr; }
  .case-img{ height: 220px; }
  .hero-inner{ margin-top:-180px; }
  .hero-badges{ grid-template-columns: 1fr; }

  .nav-toggle{ display:block; }
  .site-nav{
    position: fixed;
    top: 70px;
    right: 20px;
    left: 20px;
    display:none;
    flex-direction:column;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255,250,242,.96);
    border:1px solid rgba(231,220,203,.95);
    box-shadow: var(--shadow);
  }
  .site-nav a{ padding: 14px 12px; }
  .site-nav.open{ display:flex; }
}





/* Pricing */
.price-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
  align-items:stretch;
}

.price-card{
  padding: 26px;
  position:relative;
  overflow:hidden;
}

.price-top{
  margin-bottom: 10px;
}
.price-name{
  font-weight: 1000;
  font-size: 20px;
  margin: 0;
}
.price-catch{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.price-mid{
  margin: 14px 0 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(215,180,140,.18);
  border:1px solid rgba(231,220,203,.85);
}
.price-amount{
  font-size: 28px;
  font-weight: 1000;
  letter-spacing:.01em;
  margin:0;
}
.price-note{
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.price-list{
  padding-left: 1.1em;
  margin: 0 0 16px;
}
.price-list li{
  margin: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.price-card.is-popular{
  border: 2px solid rgba(184,134,82,.55);
  box-shadow: 0 18px 44px rgba(43,38,33,.14);
  transform: translateY(-4px);
}
.price-badge{
  position:absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #CCE700, #92AD00);
  border: 1px solid rgba(231,220,203,.9);
  font-weight: 1000;
  font-size: 12px;
  color: #FFFFFF;
}

.price-footnote{
  margin-top: 18px;
}

@media (max-width: 980px){
  .price-grid{ grid-template-columns: 1fr; }
  .price-card.is-popular{ transform: none; }
}






/* CTA panel responsive fix */
.cta-panel{
  flex-wrap: wrap;
}

.cta-left{
  min-width: 240px;
  flex: 1 1 420px;
}

.cta-right{
  flex: 0 0 auto;
}

/* mobile */
@media (max-width: 680px){
  .cta-panel{
    padding: 14px;      /* ← 22px だと縦が間延びしやすい */
    gap: 10px;
  }

  .cta-panel h3{
    font-size: 16px;    /* ← スマホでは少し小さく */
    line-height: 1.35;
    margin: 0;          /* ← 見出しの上下余白を消す */
  }

  .cta-panel p{
    margin: 0;          /* ← 段落の上下余白も消す */
    font-size: 13px;
    line-height: 1.6;
  }

  .cta-right .btn{
    padding: 12px 14px; /* ← ボタンも少し薄く */
    border-radius: 14px;
  }
  .cta-right{
    width: 100%;
    display: flex;
    justify-content: center; /* 念のため */
  }

  .cta-right .btn{
    width: 100%;
    max-width: none;      /* 念のため制限解除 */
    text-align: center;
  }
}



.thanks{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.thanks a{
  display: block;
  width: 200px;
  height: 50px;
  margin: 30px auto 0;
  background: linear-gradient(180deg, #CCE700, #92AD00);
  border-radius: 100px;
  line-height: 50px;
  font-weight: bold;
  color: #FFFFFF;
}

.telmail{
  width: 80%;
  margin: 50px auto 0;
}












