@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --w-wrap: min(1120px, 100% - 32px);
}

.main_sitter {
  line-height: 1.7;
}

/* アクセシビリティ */
.u-nowrap {
  white-space: nowrap;
}

/* 共通 */
.section__head {
  width: var(--w-wrap);
  margin-inline: auto;
  padding: 32px 0 12px;
}
.section__head h2 {
  margin: 0 0 4px;
  font-size: clamp(22px, 4vw, 32px);
}
.section__head p {
  margin: 0;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
}
.btn--primary {
  background: #f7941d;
  color: #fff;
}
.btn--primary:hover {
  filter: brightness(0.95);
}
.btn--lg {
  padding: 1.1rem 1.6rem;
  font-size: 1.1rem;
  margin-top: 20px;
}

.table-wrap {
  width: var(--w-wrap);
  margin: 24px auto 0;
}
.table-wrap__caption {
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 20px;
}

/* アクセシビリティ：画面に出さず音声だけに伝える */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* テーブル本体 */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
  background: #fff;
  /* 左列（行見出し）を固定 */
  /* 左上の角セル（上＆左の両固定） */
}
.table-scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: block;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #fafafa;
}
.table th[scope=row] {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.table .table__corner {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 4;
  background: #fafafa;
}
.table th,
.table td {
  border: 1px solid #ececec;
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}
.table th strong,
.table td strong {
  color: #f7941d;
}

/* トップ */
.sitter-top {
  background: linear-gradient(180deg, #fff, #fff3e8);
  padding-top: 15px;
}
.sitter-top__inner {
  width: var(--w-wrap);
  margin-inline: auto;
  padding: 40px 0 16px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
@media (max-width: 600px) {
  .sitter-top__inner {
    padding-top: 20px;
    grid-template-columns: 1fr;
    /* 1列にする */
    grid-template-rows: auto auto;
    /* 縦並び */
  }
}
.sitter-top__title {
  margin: 12px 0 0;
  font-size: clamp(26px, 5.2vw, 40px);
  line-height: 1.25;
}
@media (max-width: 950px) {
  .sitter-top__title {
    font-size: 24px;
  }
}
.sitter-top__lead {
  margin: 8px 0 0;
  color: #666;
  font-size: clamp(15px, 3.5vw, 18px);
}
.sitter-top__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.sitter-top__media {
  margin: 8px 0 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 300px;
}
.sitter-top__media img {
  width: 100%;
  height: auto;
  display: block;
}

.sitter-solution {
  background: #f9fafb;
  padding: 4rem 1.5rem;
  text-align: center;
}
.sitter-solution__inner {
  max-width: 960px;
  margin: 0 auto;
}
.sitter-solution__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sitter-solution__title {
    font-size: 1.5rem;
  }
}
.sitter-solution__lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}
.sitter-solution__lead strong {
  color: #f97316;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sitter-solution__lead {
    font-size: 1rem;
  }
}

/* 理由 */
.reasons {
  padding: 12px 0 8px;
}
.reasons__grid {
  width: var(--w-wrap);
  margin-inline: auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.reasons-card {
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 補助機能 */
.features {
  padding: 24px 0;
  background: #fff;
}
.features__grid {
  width: var(--w-wrap);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.feature {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 16px;
}
.feature__title {
  margin: 0 0 4px;
  font-size: 18px;
}
.feature img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-top: 20px;
}

.guide {
  padding: 60px 20px;
  text-align: center;
  /* ✅ レスポンシブ調整 */
}
.guide__nav {
  display: flex;
  justify-content: center;
}
.guide__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.guide__list li {
  list-style: none;
}
.guide__list .btn {
  display: inline-block;
  padding: 15px 24px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  background: #fff;
  color: #f7941d;
  border: 1px solid #f7941d;
  transition: all 0.3s;
}
.guide__list .btn:hover, .guide__list .btn:focus {
  background: #f7941d;
  color: #fff;
}
@media (max-width: 750px) {
  .guide {
    padding: 40px 16px;
  }
  .guide .section__head h2 {
    font-size: 1.5rem;
  }
  .guide .guide__list {
    flex-direction: column;
    gap: 12px;
  }
  .guide .guide__list .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .guide {
    padding: 0px 20px 40px;
  }
}

/* ===========================
   レスポンシブ
=========================== */
@media (min-width: 600px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 950px) {
  .reasons__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* モバイル最適化：少しだけ行高と余白を詰める */
@media (max-width: 600px) {
  .table {
    min-width: 560px;
  }
  .table th,
  .table td {
    padding: 10px;
  }
  .table thead th,
  .table .table__corner {
    font-size: 0.95rem;
  }
  .table th[scope=row] {
    font-size: 0.95rem;
  }
}
/* ちょい演出（安全な範囲） */
.reasons-card,
.feature {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reasons-card:hover,
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}/*# sourceMappingURL=sitter.css.map */