/* ===================== Base ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

body {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #363636;
  background: #f0f0f1;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================== Common ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: #C46B7C;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C46B7C;
  display: inline-block;
}

.eyebrow-light { color: #f9f7f7; }
.eyebrow-light .eyebrow-dot { background: #f9f7f7; }

.section-title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #363636;
  line-height: 1.55;
  margin: 0;
  word-break: auto-phrase;
}

.section-title-light { color: #f9f7f7; }

.title-accent { color: #C46B7C; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
}

.section-head-text { max-width: 760px; }

.section-head-center {
  display: block;
  text-align: center;
  margin-bottom: 64px;
}

.section-head-center .section-head-text {
  max-width: none;
  margin: 0 auto;
}

.section-foot {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.section-lead {
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #7c7c7c;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e2e2;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #363636;
  letter-spacing: 0.2em;
}

.logo-sub {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: #7c7c7c;
  margin-top: 3px;
}

.global-nav ul {
  display: flex;
  gap: 30px;
}

.global-nav a {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #363636;
  transition: color 0.2s;
}

.global-nav a:hover { color: #C46B7C; }

.header-ctas {
  display: flex;
  gap: 10px;
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #06C755;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: opacity 0.2s;
}

.btn-mini:hover { opacity: 0.85; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 90px;
  color: #363636;
  overflow: hidden;
  background: url("img/mv.jpg") center / cover no-repeat, #e6e6e6;
}

.hero-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  text-align: center;
  padding: 56px clamp(28px, 5vw, 72px) 52px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-catch {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  color: #C46B7C;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero-logo {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  color: #363636;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
}

.hero-br { display: none; }

.hero-label {
  display: inline-block;
  margin: 30px 0 34px;
  padding: 12px 26px;
  border: 1px solid #d8d8d8;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #555555;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 36px;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: #ffffff;
  border: 1px solid #e7cdd3;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #363636;
}

.hero-badges em {
  font-style: normal;
  font-weight: 700;
  color: #C46B7C;
  margin: 0 3px;
}

.hero-badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #C46B7C;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 300px;
  padding: 18px 36px;
  background: #06C755;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: opacity 0.25s, transform 0.25s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-arrow svg { margin-left: 1px; }

.hero-micro {
  margin-top: 20px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #9a9a9a;
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 32px;
  z-index: 2;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.9);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.7);
  margin: 12px auto 0;
}

/* ===================== SERVICE ===================== */
.service {
  background: #f6f6f7;
  padding: 140px 0 150px;
}

.service-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 40px;
}

/* 「+」で各カードを連結 */
.service-card:not(:nth-child(3n))::after,
.service-card:nth-child(-n+3)::before {
  content: "+";
  position: absolute;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #C46B7C;
  pointer-events: none;
}

/* 横方向（列間） */
.service-card:not(:nth-child(3n))::after {
  top: 50%;
  left: 100%;
  margin-left: 20px;
  transform: translate(-50%, -50%);
}

/* 縦方向（行間） */
.service-card:nth-child(-n+3)::before {
  left: 50%;
  top: 100%;
  margin-top: 23px;
  transform: translate(-50%, -50%);
}

.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 38px 34px 36px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #C46B7C;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.07);
}

.service-card-title {
  position: relative;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #363636;
  margin: 0 0 16px;
  padding-left: 16px;
}

.service-card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: #C46B7C;
  border-radius: 2px;
}

.service-card-text {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: #5b5b5b;
}

/* ===== 具体的にやること（表） ===== */
.service-detail {
  margin-top: 64px;
}

.service-detail-title {
  text-align: center;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #363636;
  margin-bottom: 28px;
}

.service-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 20px 26px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ededed;
  line-height: 1.8;
}

.service-table tr:last-child th,
.service-table tr:last-child td { border-bottom: none; }

.service-table th {
  width: 34%;
  background: #faf6f7;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #a95257;
  border-right: 1px solid #ededed;
}

.service-table td {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #5b5b5b;
}

.service-note {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #4f4f4f;
}

.service-note em {
  font-style: normal;
  font-weight: 500;
  color: #C46B7C;
}

/* ===================== POINT / REASON ===================== */
.reason {
  background: #ffffff;
  padding: 140px 0 150px;
}

.reason-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.reason-item {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.reason-item-reverse .reason-text { order: 2; }
.reason-item-reverse .reason-photo { order: 1; }

.reason-text { padding: 8px 0; }

.point-label {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b59ca0;
  margin-bottom: 18px;
}

.point-num {
  font-size: 15px;
  font-weight: 500;
  margin-left: 4px;
  line-height: 1;
}

.reason-title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #363636;
  margin-bottom: 28px;
  word-break: auto-phrase;
}

.reason-body-text {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #5b5b5b;
}

.reason-body-text em {
  font-style: normal;
  font-weight: 500;
  color: #C46B7C;
}

.reason-caption {
  margin-top: 22px;
  padding: 16px 20px;
  background: #f5f5f5;
  border-left: 3px solid #C46B7C;
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #7c7c7c;
}

.reason-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #ffffff center / contain no-repeat;
}

.reason-photo-1 { background-image: url("img/point-performance.jpg"); }
.reason-photo-2 { background-image: url("img/point-omnichannel.jpg"); }
.reason-photo-3 { background-image: url("img/point-results.jpg"); }

.reason-photo-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.reason-photo-stat {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #C46B7C;
}

.reason-photo-stat strong {
  font-size: 52px;
  font-weight: 700;
}

.reason-photo-stat small {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 18px;
  margin-left: 5px;
}

.reason-photo-stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #6f6f6f;
}

.reason-photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reason-photo-tags span {
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #C46B7C;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #C46B7C;
}

.reason-foot {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

/* ===================== PILL BUTTON ===================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 320px;
  padding: 16px 32px;
  border: 1px solid #06C755;
  color: #fff;
  background: #06C755;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-pill:hover {
  background: #05a847;
  border-color: #05a847;
  color: #fff;
  transform: translateY(-2px);
}

.btn-pill-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

/* ===================== COMPARE ===================== */
.compare {
  padding: 0 0 150px;
}

.compare-banner {
  position: relative;
  padding: 130px 36px 210px;
  background:
    linear-gradient(rgba(28,28,28,0.62), rgba(28,28,28,0.62)),
    url("img/compare-crowd.jpg") center / cover no-repeat,
    #2b2b2b;
  text-align: center;
}

.compare-banner-inner {
  position: relative;
  z-index: 1;
}

.compare-banner .section-title { font-size: 34px; }

.compare-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: -150px auto 0;
  padding: 0 36px;
}

.compare-table-wrap {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(60, 40, 45, 0.18);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 20px 18px;
  text-align: center;
  border-bottom: 1px solid #ececec;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.compare-table thead th {
  background: #f5f5f5;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5b5b5b;
  border-bottom: 1px solid #e5e5e5;
}

.compare-th-label { width: 18%; }

.compare-table thead .compare-th-us {
  background: #C46B7C;
  color: #fff;
  font-size: 16px;
}

.compare-th-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 4px;
}

.compare-table tbody th {
  background: #fafafa;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #4f4f4f;
  text-align: center;
  font-size: 13.5px;
}

.compare-table td {
  color: #6f6f6f;
}

.compare-table td.is-us {
  background: rgba(196, 107, 124, 0.08);
  color: #363636;
}

.compare-table td.is-us strong {
  font-weight: 600;
  color: #a95257;
  font-size: 15px;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-hint { display: none; }

.compare-note {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #9a8e8a;
  text-align: center;
}

/* ===================== PRICE ===================== */
.price {
  background: #f6f6f7;
  padding: 140px 0 150px;
}

.price-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 36px;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 44px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.07);
}

.price-card-tag {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #C46B7C;
  padding: 5px 16px;
  border: 1px solid #C46B7C;
  border-radius: 999px;
}

.price-card-title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #363636;
}

.price-card-amount {
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #5b5b5b;
}

.price-card-amount strong {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #C46B7C;
  margin: 0 4px;
}

.price-card-or {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #9a8e8a;
}

.price-notes {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-notes li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #5b5b5b;
}

.price-notes li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C46B7C;
}

.price-notes em {
  font-style: normal;
  font-weight: 600;
  color: #a95257;
}

.price-foot {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ===================== FAQ ===================== */
.faq {
  background: #ffffff;
  padding: 140px 0 150px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fafafa;
  overflow: hidden;
}

.faq-item[open] {
  border-color: #C46B7C;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { background: #f3f3f3; }

.faq-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #C46B7C;
  flex-shrink: 0;
}

.faq-question {
  flex: 1;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #363636;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #C46B7C;
  transition: transform 0.25s;
}

.faq-icon::before {
  top: 7px; left: 0;
  width: 16px; height: 2px;
}

.faq-icon::after {
  left: 7px; top: 0;
  width: 2px; height: 16px;
}

.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  display: flex;
  gap: 18px;
  padding: 4px 28px 28px;
}

.faq-a {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #c9a3ab;
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 14.5px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: #5b5b5b;
}

/* ===================== CONTACT ===================== */
.contact {
  position: relative;
  background:
    linear-gradient(rgba(28,28,28,0.66), rgba(28,28,28,0.66)),
    url("img/contact-phone.jpg") center / cover no-repeat,
    #2b2b2b;
  color: #f9f7f7;
  padding: 120px 0 130px;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 36px;
  text-align: center;
}

.contact .section-title { font-size: 34px; }

.contact-lead {
  margin: 26px auto 50px;
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: 0.08em;
  color: rgba(249, 247, 247, 0.95);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 440px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  background: #06C755;
  color: #ffffff;
  transition: opacity 0.25s, transform 0.25s;
}

.contact-card:nth-child(2) { background: #06C755; }

.contact-card:hover {
  opacity: 0.92;
  transform: translateY(-3px);
}

.contact-card-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.36em;
  color: rgba(249, 247, 247, 0.7);
}

.contact-card-title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #f9f7f7;
}

.contact-card-sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(249, 247, 247, 0.78);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #363636;
  color: #c2c2c2;
  padding: 70px 0 28px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  border-bottom: 1px solid rgba(249, 247, 247, 0.16);
}

.footer-logo {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #f9f7f7;
  display: block;
  line-height: 1;
}

.footer-tagline {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(249, 247, 247, 0.82);
}

.footer-address {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(249, 247, 247, 0.6);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  justify-self: end;
}

.footer-nav a {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(249, 247, 247, 0.82);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #C46B7C; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 26px;
}

.footer-legal a {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(249, 247, 247, 0.78);
  transition: color 0.2s;
}

.footer-legal a:hover { color: #C46B7C; }

.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(249, 247, 247, 0.45);
}

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .section-title {
    font-size: 22px;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }

  .section-head { gap: 16px; margin-bottom: 28px; }
  .section-head-center { margin-bottom: 32px; }
  .section-lead { margin-top: 12px; font-size: 13.5px; }

  .global-nav { display: none; }

  .header-inner { padding: 11px 18px; }
  .logo-mark { font-size: 22px; }

  /* ===== HERO ===== */
  .hero {
    min-height: auto;
    padding: 92px 16px 56px;
  }

  .hero-box { padding: 34px 20px 32px; border-radius: 8px; }
  .hero-catch { font-size: clamp(15px, 4.4vw, 18px); margin-bottom: 10px; }
  .hero-logo { font-size: clamp(26px, 7.4vw, 34px); }
  .hero-br { display: inline; }

  .hero-badges { gap: 8px; margin: 20px auto 24px; }
  .hero-badges li { font-size: 13.5px; padding: 9px 16px; }
  .hero-micro { font-size: 11.5px; margin-top: 14px; line-height: 1.7; }

  .btn-primary {
    min-width: 100%;
    padding: 15px 22px;
    font-size: 15px;
  }

  /* ===== SECTION SPACING ===== */
  .service,
  .reason,
  .price,
  .faq { padding: 56px 0 60px; }
  .contact { padding: 56px 0 60px; }

  .service-inner,
  .reason-inner,
  .price-inner,
  .faq-inner { padding: 0 20px; }

  /* ===== SERVICE（1列・コンパクト） ===== */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card { padding: 16px 18px; }
  .service-card-title { font-size: 15.5px; margin-bottom: 6px; padding-left: 12px; }
  .service-card-text { font-size: 13px; line-height: 1.7; }

  /* スマホは + 連結を省いてコンパクトに */
  .service-grid .service-card::after,
  .service-grid .service-card::before { content: ""; display: none; }

  .service-detail { margin-top: 44px; }
  .service-detail-title { font-size: 17px; margin-bottom: 18px; }
  .service-table th,
  .service-table td { display: block; width: 100%; padding: 12px 16px; }
  .service-table th {
    border-right: none;
    border-bottom: none;
    padding-bottom: 4px;
    font-size: 14px;
  }
  .service-table td { padding-top: 2px; font-size: 13px; }
  .service-note { margin-top: 36px; }

  /* ===== POINT ===== */
  .reason-list { gap: 40px; }

  .reason-item,
  .reason-item-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* スマホは全て 写真 → テキスト の順 */
  .reason-item .reason-text,
  .reason-item-reverse .reason-text { order: 2; }
  .reason-item .reason-photo,
  .reason-item-reverse .reason-photo { order: 1; }

  .point-label { margin-bottom: 12px; }
  .reason-title { font-size: 20px; margin-bottom: 16px; }
  .reason-body-text { font-size: 14px; line-height: 1.95; }

  .reason-photo { aspect-ratio: 4 / 3; }
  .reason-photo-badge { left: 16px; right: 16px; bottom: 16px; padding: 16px 18px; }
  .reason-photo-stat strong { font-size: 44px; }
  .reason-photo-tags span { font-size: 12px; padding: 5px 12px; }

  .reason-foot { margin-top: 36px; }

  .btn-pill {
    min-width: 100%;
    padding: 15px 22px;
  }

  .section-foot { margin-top: 40px; }

  /* ===== COMPARE ===== */
  .compare { padding: 0 0 60px; }
  .compare-banner { padding: 60px 20px 120px; }
  .compare-banner .section-title { font-size: 20px; }
  .compare-inner { margin-top: -100px; padding: 0 14px; }

  /* 横スクロールで読める比較表に */
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }
  .compare-table { min-width: 600px; font-size: 13px; }
  .compare-table th,
  .compare-table td { padding: 14px 12px; white-space: normal; }
  .compare-table thead .compare-th-us { font-size: 14px; }
  .compare-th-label { width: 92px; }
  .compare-note { font-size: 11px; }

  .compare-hint {
    display: block;
    text-align: center;
    margin-bottom: 12px;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: #9a8e8a;
  }

  /* ===== PRICE ===== */
  .price-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-card { padding: 30px 24px; gap: 10px; }
  .price-card-amount strong { font-size: 36px; }
  .price-notes { margin-top: 32px; }
  .price-notes li { font-size: 13.5px; }
  .price-foot { margin-top: 36px; }

  /* ===== FAQ ===== */
  .faq-item summary { padding: 16px 18px; gap: 12px; }
  .faq-q, .faq-a { font-size: 22px; }
  .faq-question { font-size: 14.5px; }
  .faq-answer { padding: 0 18px 20px; gap: 12px; }
  .faq-answer p { font-size: 13.5px; }

  /* ===== CONTACT / FOOTER ===== */
  .contact-inner { padding: 0 20px; }
  .contact .section-title { font-size: 20px; }
  .contact-lead { margin: 18px auto 32px; font-size: 13.5px; }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card { padding: 26px 20px; }

  .site-footer { padding: 48px 0 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 28px;
  }

  .footer-nav { justify-self: start; }
}
