:root{
  --bg: #ffffff;
  --soft: #f3f7ff;
  --text: #1b2430;
  --muted: #5a6b7d;

  --blue: #1E6FD9;       /* ベース */
  --blue-2:#0F4EA7;      /* 見出し */
  --line: #e6edf5;

  --accent: #F39C12;     /* CTAのみ */
  --accent-2:#d98400;

  --radius: 16px;
  --shadow: 0 10px 24px rgba(16, 24, 40, .10);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand{
  font-weight: 800;
  color: var(--blue-2);
  letter-spacing: .02em;
}
.header-nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.header-nav a{
  font-weight: 600;
  color: var(--muted);
}
.header-nav a:hover{ color: var(--blue-2); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: .2s ease;
  white-space: nowrap;
}
.btn-sm{ padding: 10px 14px; font-weight: 800; }
.btn-sub{ font-weight: 800; opacity: .9; }
.btn-accent{
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover{ background: var(--accent-2); }

.btn-outline{
  background: #fff;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover{
  background: var(--blue);
  color: #fff;
}
.btn-more{
  padding: 10px 16px;
  font-weight: 800;
}

/* Sections */
.section{ padding: 56px 0; }
.section-soft{ background: var(--soft); }
.section-head{ text-align:center; margin-bottom: 24px; }
.section-title{
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--blue-2);
  letter-spacing: .02em;
}
.section-desc{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

/* =========================================================
   Hero (Main Visual) - MV style
   ========================================================= */
/* ===== Hero Full Width ===== */

.mv{
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background: #eef5ff;
  overflow: hidden;
}

.mv__inner{
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}

.mv__left{
  padding: 60px 40px;
  padding-left: calc((100vw - 1200px) / 2 + 40px);
  /*max-width: 620px;*/
  position: relative;
  z-index: 1;

  /* 兵庫県背景 */
  background: url("../images/mv_hyogo.png") no-repeat center 40px;
  background-size: 580px;

}
.mv__left::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/mv_hyogo.png") no-repeat center 40px;
  background-size: 580px;
  opacity: 0.2;        /* ←透過度ここで調整 */
  z-index: 0;
  pointer-events: none;
}


/* 文字を前面に */
.mv__eyebrow,
.mv__title,
.mv__lead,
.mv__cta{
  position: relative;
  z-index: 2;
}

.mv__title{
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  color: #2f5fa6;
  margin-bottom: 18px;
}

.mv__lead{
  font-size: 15px;
  line-height: 1.9;
  color: #2a3b4f;
  margin-bottom: 24px;
}

.mv__cta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 右画像はフル幅端まで */
.mv__right{
  width: 100%;
  height: 100%;
}

.mv__photo{
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: 85% center;
  border-radius: 42px 0 0 42px;
}

/* ボタン */
.mvbtn{
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.mvbtn--tel{
  background: #F39C12;
  color: #fff;
}

.mvbtn--tel:hover{
  background: #d98400;
}

.mvbtn--mail{
  background: #fff;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.mvbtn--mail:hover{
  background: rgba(243,156,18,.1);
}

/* レスポンシブ */
@media (max-width: 980px){
  .mv__inner{
    grid-template-columns: 1fr;
  }

  .mv__left{
    padding-left: 24px;
  }

  .mv__photo{
    border-radius: 20px;
  }
}



/* =========================
   Reasons (選ばれる理由)
========================= */

.reasons{
  padding: 56px 0 70px;
  background: #fff;
}

.reasons__title{
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.25;
  letter-spacing: .04em;
  color: #2f5fa6; /* ネイビー寄りブルー */
  margin: 0 0 34px;
}

.reasons__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.reason{
  border: 3px solid #2f5fa6;
  background: #fff;
  padding: 26px 22px 22px;
  min-height: 420px; /* 高さを揃えて“図っぽく” */
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 0;  /* 角はカチッと */
}

.reason__head{
  margin: 0;
  text-align: center;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .03em;
  color: #F39C12;    /* オレンジ差し色 */
  font-size: 26px;
}

.reason__icon{
  display: grid;
  place-items: center;
  padding: 22px 0 10px;
}

.reason__icon img{
  width: 120px;      /* 添付のサイズ感に合わせ */
  height: auto;
  display: block;
}

.reason__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #243449;
}

/* レスポンシブ */
@media (max-width: 1100px){
  .reasons__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reason{ min-height: 380px; }
}

@media (max-width: 560px){
  .reasons{ padding: 44px 0 56px; }
  .reasons__grid{ grid-template-columns: 1fr; gap: 18px; }
  .reason{ min-height: auto; }
  .reason__head{ font-size: 24px; }
  .reason__icon img{ width: 110px; }
}

/* Blocks */
.block{
  margin-top: 22px;
  padding: 18px;
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(16,24,40,.06);
}
.block-head{ margin-bottom: 10px; }
.block-title{
  margin: 0;
  color: var(--blue-2);
  font-size: 18px;
}
.block-desc{
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}


/* =========================
   生前整理・遺品整理 対応ブロック
========================= */
.reason-support{
  margin-top: clamp(28px, 4vw, 52px);
}

.reason-support__inner{
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);

  padding: clamp(24px, 3vw, 38px);
  border-radius: 28px;

  background:
    radial-gradient(circle at 12% 18%, rgba(246, 196, 123, 0.18) 0%, rgba(246, 196, 123, 0.08) 22%, rgba(255,255,255,0) 50%),
    radial-gradient(circle at 88% 80%, rgba(246, 196, 123, 0.14) 0%, rgba(246, 196, 123, 0.05) 20%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.82) 100%);

  border: 1px solid rgba(231, 182, 120, 0.42);
  box-shadow:
    0 14px 34px rgba(66, 94, 140, 0.10),
    inset 0 0 0 2px rgba(255,255,255,0.55);
  overflow: hidden;
}

/* うっすらキラキラ感 */
.reason-support__inner::before,
.reason-support__inner::after{
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .45;
}

.reason-support__inner::before{
  width: 180px;
  height: 180px;
  top: -40px;
  left: -30px;
  background: radial-gradient(circle, rgba(255,214,154,.55) 0%, rgba(255,214,154,0) 68%);
}

.reason-support__inner::after{
  width: 200px;
  height: 200px;
  right: -40px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(255,214,154,.42) 0%, rgba(255,214,154,0) 68%);
}

.reason-support__media{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason-support__img{
  width: min(100%, 230px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(90, 72, 45, 0.10));
}

.reason-support__body{
  position: relative;
  z-index: 1;
}

.reason-support__title{
  margin: 0;
  color: #4a2d1d;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .02em;
  font-size: clamp(22px, 2.5vw, 40px);
}

.reason-support__line{
  width: 100%;
  max-width: 640px;
  height: 1px;
  margin: 18px 0 18px;
  background: linear-gradient(
    90deg,
    rgba(232, 205, 176, 0),
    rgba(232, 205, 176, .95),
    rgba(232, 205, 176, 0)
  );
}

.reason-support__text{
  margin: 0;
  color: #2d2d2d;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .02em;
  font-size: clamp(15px, 1.4vw, 19px);
}

/* タブレット */
@media (max-width: 900px){
  .reason-support__inner{
    grid-template-columns: 200px 1fr;
    gap: 20px;
    border-radius: 24px;
  }

  .reason-support__img{
    width: min(100%, 180px);
  }

  .reason-support__title{
    font-size: clamp(20px, 3vw, 30px);
  }
}

/* スマホ */
@media (max-width: 680px){
  .reason-support__inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 22px 18px 24px;
    border-radius: 22px;
  }

  .reason-support__media{
    order: 1;
  }

  .reason-support__body{
    order: 2;
  }

  .reason-support__img{
    width: min(100%, 180px);
  }

  .reason-support__line{
    margin: 14px auto 14px;
    max-width: 260px;
  }

  .reason-support__text{
    font-size: 15px;
    line-height: 1.85;
  }
}

/* Price */
/* =============================
   Service Section
============================= */

.service{
  padding: 80px 0;
  background: #fff;
}

.service-block{
  margin-top: 60px;
}

/* =============================
   Price Pack
============================= */

.pricepack{
  padding: 40px 0 20px;
}

.pricepack__head{
  text-align: center;
}

.pricepack__title{
  font-size: 30px;
  font-weight: 900;
  color: #2f5fa6;
  margin: 0;
}

.pricepack__sub{
  margin-top: 8px;
  font-weight: 600;
  color: #243449;
}

.pricepack__rule{
  width: 60%;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, rgba(47,95,166,.3), transparent);
}

/* grid */
.pricepack__grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* card */
.ppcard{
  padding: 0;                 /* 内側はtop/bottomで管理 */
  overflow: hidden;
}
.ppcard::after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: 12px;
  /*border: 1px solid rgba(47,95,166,.12);*/
  pointer-events:none;
}

.ppcard__top{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(47,95,166,.12);
  background: linear-gradient(180deg, rgba(47,95,166,.06), rgba(47,95,166,0));
}

/* バッジは“左上の帯”っぽく */
.ppcard__badge{
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  background: linear-gradient(#3a86d1,#2f5fa6);
  color: #fff;
  box-shadow: 0 10px 18px rgba(47,95,166,.18);
  min-width: 96px;
  text-align: center;
}

/* 部屋名はヘッダー行右側 */
.ppcard__room{
  font-weight: 900;
  font-size: 18px;
  color: #243449;
}

.ppcard__bottom{
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 18px 20px;
}

.ppcard__icon{
  display: grid;
  place-items: center;
}

.ppcard__icon img{
  width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(31,53,86,.10));
}

/* 価格は右側に大きく */
.ppcard__price{
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
  color: #d96b00;
}

.ppcard__yen{
  font-size: clamp(36px, 3.2vw, 46px);
  letter-spacing: .02em;
}

.ppcard__unit{
  font-size: 18px;
}

/* SP */
@media (max-width: 420px){
  .ppcard__room{ font-size: 16px; }
  .ppcard__bottom{ grid-template-columns: 100px 1fr; }
  .ppcard__icon img{ width: 100px; }
}

/* notes */
.pricepack__notes{
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.8;
  color: #243449;
  list-style: none;
  padding: 0;
}

/* responsive */
@media(max-width:900px){
  .pricepack__grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   回収可能品目（service）
========================= */
.svc-items{
  --blue:#2f79bf;
  --blue2:#3b8ad6;
  --bg:#f4f8ff;
  --card:#ffffff;
  --text:#0f1b2d;
  --muted:#5b6b84;
  --shadow: 0 10px 30px rgba(20,60,120,.12);
  --shadow2: 0 8px 18px rgba(20,60,120,.10);
  --radius:16px;

  padding: clamp(28px, 4vw, 56px) 0;
  background: radial-gradient(1200px 420px at 50% 0%, rgba(47,121,191,.10), transparent 60%), var(--bg);
}

.svc-items__inner{
  width: min(1020px, 92vw);
  margin: 0 auto;
}

.svc-items__head{
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow2);
}

.svc-items__title{
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(20px, 2.2vw, 30px);
}

/* grid */
.svc-items__grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* item card */
.svc-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: var(--card);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(47,121,191,.14);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.svc-item:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(47,121,191,.28);
}

.svc-item__icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(47,121,191,.08), rgba(47,121,191,.03));
  border: 1px solid rgba(47,121,191,.14);
}

.svc-svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-item__label{
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
}

/* note */
.svc-items__note{
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(47,121,191,.08);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid rgba(47,121,191,.12);
}

/* more btn */
.svc-items__more{
  margin-top: 22px;
  display: grid;
  place-items: center;
}

.svc-morebtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid rgba(47,121,191,.45);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.svc-morebtn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(47,121,191,.75);
}

.svc-morebtn__arrow{
  font-size: 18px;
  transform: translateY(1px);
}

/* responsive */
@media (max-width: 920px){
  .svc-items__grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px){
  .svc-items__grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-item{ padding: 14px 12px; }
  .svc-item__icon{ width: 52px; height: 52px; }
  .svc-svg{ width: 34px; height: 34px; }
  .svc-item__label{ font-size: 15px; }
}





/* =========================
   作業事例
========================= */
.workcase{
  --bg:#f4f8ff;
  --card:#ffffff;
  --text:#0f1b2d;
  --muted:#4f607a;
  --blue:#2f79bf;
  --green:#35a880;
  --orange:#e58b2c;
  --line: rgba(20,60,120,.12);
  --shadow: 0 14px 40px rgba(20,60,120,.14);
  --shadow2: 0 10px 24px rgba(20,60,120,.12);
  --r: 22px;

  padding: clamp(34px, 4.2vw, 70px) 0;
  background:
    radial-gradient(1100px 460px at 50% 0%, rgba(47,121,191,.12), transparent 65%),
    var(--bg);
}

.workcase__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.workcase__head{
  text-align: center;
  margin-bottom: 18px;
}

.workcase__title{
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: .02em;
  font-weight: 900;
  color: #22314a;
}

.workcase__lead{
  display: inline-block;
  margin: 10px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

/* card */
.workcase__card{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(20,60,120,.12);
  border-radius: var(--r);
  padding: clamp(14px, 2.2vw, 22px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

/* Before/After area */
.ba{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(10px, 1.6vw, 18px);
  align-items: center;
}

.ba__box{
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #e9eef7;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

.ba__img{
  width: 100%;
  height: clamp(190px, 25vw, 280px);
  object-fit: cover;
  display: block;
}

/* tags */
.ba__tag{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,.14);
}

.ba__tag--before{ background: linear-gradient(90deg, #2f79bf, #3b8ad6); }
.ba__tag--after{  background: linear-gradient(90deg, #2ea77d, #43c39a); }

/* arrow */
.ba__arrow{
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  display: grid;
  place-items: center;
}

.ba__arrowShape{
  width: 54%;
  height: 54%;
  background: var(--orange);
  clip-path: polygon(0 20%, 55% 20%, 55% 0, 100% 50%, 55% 100%, 55% 80%, 0 80%);
  filter: drop-shadow(0 10px 18px rgba(229,139,44,.28));
  border-radius: 6px;
}

/* meta bar */
.workcase__meta{
  margin-top: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.workcase__place{
  padding: 12px 16px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(90deg, rgba(53,168,128,.95), rgba(53,168,128,.75));
}

.workcase__facts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.fact{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #22314a;
  font-weight: 800;
}

.fact + .fact{
  border-left: 1px solid var(--line);
}

.fact__icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(47,121,191,.08);
  border: 1px solid rgba(47,121,191,.14);
}

.fact__svg{
  width: 20px;
  height: 20px;
  stroke: rgba(34,49,74,.9);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact__text{
  font-size: 15px;
}

/* bottom row */
.workcase__bottom{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.workcase__desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 700;
}

.workcase__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-width: 220px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0a14b, #e68a2b);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(230,138,43,.24);
  border: 1px solid rgba(160,85,10,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.workcase__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(230,138,43,.30);
}

.workcase__btnArrow{
  font-size: 18px;
  transform: translateY(1px);
}

/* responsive */
@media (max-width: 920px){
  .ba{
    grid-template-columns: 1fr;
  }
  .ba__arrow{
    height: 22px;
    width: 100%;
  }
  .ba__arrowShape{
    width: 46px;
    height: 46px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .workcase__facts{
    grid-template-columns: 1fr;
  }
  .fact + .fact{
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .workcase__bottom{
    grid-template-columns: 1fr;
  }
  .workcase__btn{
    width: 100%;
    min-width: 0;
  }
}
/* =========================
   お客様の声
========================= */
.voice{
  --bg:#f4f8ff;
  --card: rgba(255,255,255,.64);
  --line: rgba(20,60,120,.12);
  --shadow: 0 14px 40px rgba(20,60,120,.14);
  --shadow2: 0 10px 22px rgba(20,60,120,.10);
  --text:#22314a;
  --muted:#4f607a;
  --accent:#2f79bf;
  --mint:#2ea77d;
  --orange:#e68a2b;
  --r: 22px;

  padding: clamp(34px, 4.2vw, 70px) 0;
  background:
    radial-gradient(1100px 460px at 50% 0%, rgba(47,121,191,.12), transparent 65%),
    var(--bg);
}

.voice__inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.voice__head{
  text-align: center;
  margin-bottom: 18px;
}

.voice__titleRow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.voice__bubbleIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47,121,191,.10);
  border: 1px solid rgba(47,121,191,.14);
}

.voice__bubbleSvg{
  width: 26px;
  height: 26px;
  stroke: rgba(34,49,74,.9);
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voice__title{
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: .02em;
}

.voice__lead{
  display: inline-block;
  margin: 10px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

/* big card */
.voice__card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(14px, 2.2vw, 22px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

/* list */
.voice__list{
  display: grid;
  gap: 16px;
}

/* item */
.voiceItem{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
}

.voiceItem__avatar{
  width: 78px;
  height: 78px;
  /*border-radius: 999px;*/
  overflow: hidden;
  /*background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);*/
  display: grid;
  place-items: center;
  margin-top: 6px;
}

.voiceItem__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* balloon */
.voiceItem__balloon{
  position: relative;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px 14px;
  box-shadow: var(--shadow2);
}

/* left pointer */
.voiceItem__balloon::before{
  content:"";
  position:absolute;
  left: -10px;
  top: 22px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,.72);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
  border-bottom-left-radius: 3px;
}

.voiceItem__name{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #1f2e46;
}

.voiceItem__text{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

/* more (right bottom) */
.voiceItem__more{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  text-decoration: none;
  font-weight: 900;
  justify-self: end;
  float: right;
}

.voiceItem__moreDot{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(46,167,125,.12);
  border: 1px solid rgba(46,167,125,.22);
  line-height: 1;
  transform: translateY(1px);
}

/* bottom cta */
.voice__cta{
  margin-top: 18px;
  display: grid;
  place-items: center;
}

.voice__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  width: min(520px, 100%);
  border-radius: 14px;
  background: linear-gradient(180deg, #f0a14b, #e68a2b);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 26px rgba(230,138,43,.24);
  border: 1px solid rgba(160,85,10,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.voice__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(230,138,43,.30);
}

.voice__btnArrow{
  font-size: 18px;
  transform: translateY(1px);
}

/* responsive */
@media (max-width: 720px){
  .voiceItem{
    grid-template-columns: 70px 1fr;
  }
  .voiceItem__avatar{
    width: 62px;
    height: 62px;
  }
  .voiceItem__balloon{
    padding: 14px 14px 12px;
  }
  .voiceItem__name{
    font-size: 16px;
  }
}



/* =========================
   作業の流れ（1段固定 / 矢印重ね / 横スクロール対応）
========================= */
.flow{
  --bg:#f4f8ff;
  --text:#22314a;
  --muted:#4f607a;
  --line: rgba(20,60,120,.14);
  --shadow: 0 16px 44px rgba(20,60,120,.16);
  --shadow2: 0 10px 22px rgba(20,60,120,.12);
  --r: 22px;

  padding: clamp(34px, 4.2vw, 70px) 0;
  background:
    radial-gradient(1100px 460px at 50% 0%, rgba(47,121,191,.12), transparent 65%),
    var(--bg);
}

.flow__inner{
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* title */
.flow__head{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.flow__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--text);
  font-size: clamp(28px, 3.2vw, 44px);
}

.flow__titleLine{
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47,121,191,.25), transparent);
}

/* panel */
.flow__panel{
  border-radius: calc(var(--r) + 8px);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(20,60,120,.12);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 28px);
  backdrop-filter: blur(8px);
}

/* =========================
   1段固定レイアウト（折り返し禁止）
   - 画面が狭い時は横スクロール
   - PCで4枚が入る幅ならスクロール解除
========================= */
.flow__grid{
  display: flex;
  flex-wrap: nowrap;               /* 折り返し禁止＝絶対1段 */
  gap: 22px;
  align-items: stretch;

  overflow-x: auto;                /* 狭い画面は横スクロール */
  overflow-y: hidden;
  padding: 10px 6px 16px;          /* スクロールバー分の余白 */

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* スクロールバー（不要なら丸ごと消してOK） */
.flow__grid::-webkit-scrollbar{ height: 10px; }
.flow__grid::-webkit-scrollbar-thumb{
  background: rgba(20,60,120,.18);
  border-radius: 999px;
}
.flow__grid::-webkit-scrollbar-track{
  background: rgba(255,255,255,.35);
  border-radius: 999px;
}

/* カードの基本幅（スマホ/タブレットは固定幅で横スクロール） */
.flowCard{
  flex: 0 0 250px;                 /* ここが肝：1枚の幅固定 */
  scroll-snap-align: start;

  position: relative;
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  padding: 22px 18px 16px;
  text-align: center;
  min-height: 280px;
}

/* PCで全部入るなら、横スクロールを解除して4枚均等に */
@media (min-width: 1100px){
  .flow__grid{
    overflow: visible;
    padding-bottom: 0;
  }
  .flowCard{
    flex: 1 1 0;                   /* 4枚均等 */
  }
}

/* =========================
   矢印（カードに重ねる）
========================= */
.flowCard:not(:last-child)::after{
  content:"";
  position: absolute;
  top: 56%;                        /* 位置調整：必要なら 52%〜60% */
  right: -28px;                    /* 右にはみ出して重ねる */
  transform: translateY(-50%);
  width: 46px;
  height: 46px;

  background: #f0a14b;
  border-radius: 12px;
  box-shadow: 0 12px 22px rgba(230,138,43,.22);

  clip-path: polygon(0 24%, 56% 24%, 56% 6%, 100% 50%, 56% 94%, 56% 76%, 0 76%);
  z-index: 3;
}

/* =========================
   カラー別の淡い縁（添付の雰囲気）
========================= */
.flowCard--blue   { box-shadow: var(--shadow2), 0 0 0 4px rgba(59,138,214,.10) inset; }
.flowCard--green  { box-shadow: var(--shadow2), 0 0 0 4px rgba(46,167,125,.10) inset; }
.flowCard--yellow { box-shadow: var(--shadow2), 0 0 0 4px rgba(240,161,75,.10) inset; }
.flowCard--orange { box-shadow: var(--shadow2), 0 0 0 4px rgba(230,138,43,.10) inset; }

/* =========================
   番号バッジ（丸＋しっぽ）
========================= */
.flowCard__badge{
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(20,60,120,.16);
  border: 6px solid rgba(255,255,255,.75);
  z-index: 4; /* 矢印より前に出す */
}

.flowCard--blue   .flowCard__badge{ background: linear-gradient(180deg, #3b8ad6, #2f79bf); }
.flowCard--green  .flowCard__badge{ background: linear-gradient(180deg, #43c39a, #2ea77d); }
.flowCard--yellow .flowCard__badge{ background: linear-gradient(180deg, #f5b45f, #f0a14b); }
.flowCard--orange .flowCard__badge{ background: linear-gradient(180deg, #f0a14b, #e68a2b); }

.flowCard__badge::after{
  content:"";
  position:absolute;
  bottom:-10px;
  left:50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  background: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 6px 10px rgba(20,60,120,.12));
  border-radius: 0 0 6px 6px;
}

.flowCard__badgeNum{
  color:#fff;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: .02em;
}

/* =========================
   タイトル・区切り線・アイコン枠
========================= */
.flowCard__ttl{
  margin: 20px 0 10px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .02em;
  font-size: 30px;
}

.flowCard__hr{
  width: 70%;
  height: 2px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47,121,191,.25), transparent);
}

/* アイコンの楕円背景 */
.flowCard__illus{
  width: min(180px, 86%);
  height: 100px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: radial-gradient(110px 60px at 50% 50%, rgba(47,121,191,.12), rgba(255,255,255,0) 70%);
  display: grid;
  place-items: center;
}

/* SVGアイコン（仮） */
.flowIco{
  width: 72px;
  height: 72px;
  stroke: rgba(34,49,74,.9);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}

.flowCard__txt{
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
  font-size: 16px;
}

/* =========================
   ちょい演出（任意：いらなければ消してOK）
========================= */
.flowCard{
  transition: transform .18s ease, box-shadow .18s ease;
}
.flowCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(20,60,120,.16);
}

/* =========================
   小さめ画面の調整
========================= */
@media (max-width: 520px){
  .flow__head{ gap: 12px; }
  .flowCard{ flex-basis: 220px; min-height: 268px; }

  .flowCard__ttl{ font-size: 26px; }
  .flowIco{ width: 66px; height: 66px; }

  .flowCard:not(:last-child)::after{
    width: 40px;
    height: 40px;
    right: -24px;
  }
}

/* PNG画像用 */
.flowCard__illus{
  width: 100%;
  height: 120px;              /* ←ここで高さ固定 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.flowImg{
  max-width: 110px;           /* ←PNGの最大サイズ */
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Retina対策しやすいように余白安定 */
.flowCard__illus::before{
  content: "";
  position: absolute;
}



/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  background: #0f2340;
  color: #d8e6ff;
  padding: 26px 0;
}
.footer-inner{
  display:grid;
  gap: 12px;
  text-align:center;
}
.footer-brand{
  font-weight: 900;
  letter-spacing: .02em;
}
.footer-nav{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}
.footer-nav a{ color: #d8e6ff; font-weight: 700; }
.footer-nav a:hover{ color: #ffffff; }
.footer-copy{ color: rgba(216,230,255,.75); }

/* Responsive */
@media (max-width: 980px){
  .reasons-grid{ grid-template-columns: repeat(2, 1fr); }
  .price-grid{ grid-template-columns: repeat(2, 1fr); }
  .items-grid{ grid-template-columns: repeat(3, 1fr); }
  .voice-grid{ grid-template-columns: 1fr; }
  .works-card{ grid-template-columns: 1fr; }
  .hero-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .items-grid{ grid-template-columns: repeat(2, 1fr); }
}


