/* デザイン方針：女性らしい優しさと安心感のあるナチュラルスタイル */
    body {
      font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
      background-color: #fcfbf9; /* 優しく温かみのある極薄のベージュホワイト */
      color: #4a423a; /* 硬い黒を避け、優しいダークブラウン寄りの墨色 */
      line-height: 1.95; /* 読みやすさを追求したゆったりめの行間 */
    }

    /* 上品な女性らしさを演出する明朝体（見出し用） */
    .font-serif-custom {
      font-family: 'Georgia', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', serif;
    }
    
    /* コンテンツの最大幅を1100pxに制限（2015年前後の安心感） */
    .container-custom {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    /* 2015年風の、丸みと安心感のある角丸ボタン */
    .btn-custom {
      border-radius: 6px;
      font-weight: bold;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease-in-out;
    }
    
    .btn-primary {
      background-color: #d97d5b; /* 落ち着いたアプリコットコーラル */
      color: #ffffff;
      box-shadow: 0 2px 4px rgba(217, 125, 91, 0.15);
    }
    .btn-primary:hover {
      background-color: #c46847;
      transform: translateY(-1px);
    }
    
    .btn-secondary {
      background-color: #354458; /* 優しいココアネイビー */
      color: #ffffff;
    }
    .btn-secondary:hover {
      background-color: #273444;
      transform: translateY(-1px);
    }
    
    .btn-outline {
      border: 1.5px solid #cfab93; /* ミルクティーベージュの優しい輪郭 */
      color: #b18366;
      background-color: #ffffff;
    }
    .btn-outline:hover {
      background-color: #fcfbf9;
      border-color: #b18366;
    }
    
    /* セクション背景の自然なグラデーション配置 */
    .section-bg-white {
      background-color: #ffffff;
    }
    .section-bg-gray {
      background-color: #f5f4f0; /* 少し温かみのある極薄グレー */
    }
    .section-bg-cream {
      background-color: #f2ede4; /* サクラベージュ */
    }
    
    /* 上品なテーブルスタイル */
    .table-custom {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .table-custom th {
      background-color: #354458;
      color: #ffffff;
      padding: 14px 18px;
      font-weight: bold;
      text-align: left;
      border: 1px solid #e2ded8;
      font-size: 15px;
    }
    .table-custom td {
      padding: 16px 18px;
      border: 1px solid #e2ded8;
      background-color: #ffffff;
      font-size: 15px;
    }
    @media (max-width: 640px) {
      .table-custom th, .table-custom td {
        padding: 10px 12px;
        font-size: 14px;
      }
    }

    /* アコーディオンのシンプルな表示 */
    .faq-item {
      border: 1px solid #e2ded8;
      background-color: #ffffff;
      margin-bottom: 12px;
      border-radius: 6px;
    }
    
    /* 疑似SPAページ遷移用 */
    .page-content {
      display: none;
    }
    .page-content.active {
      display: block;
    }

    /* 見出し前の飾り（女性らしい、繊細で上品な◇マーク） */
    .heading-deco::before {
      content: "◇";
      color: #d97d5b;
      margin-right: 10px;
      font-weight: bold;
    }
    
    /* フォーム入力欄：フォーカス時に優しくアプリコットゴールドが浮き立つように */
    .input-custom {
      width: 100%;
      height: 48px;
      padding: 0 16px;
      border: 1.5px solid #dcdad4;
      border-radius: 6px;
      background-color: #ffffff;
      transition: border-color 0.2s ease;
    }
    .input-custom:focus {
      outline: none;
      border-color: #cfab93;
    }
    .textarea-custom {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #dcdad4;
      border-radius: 6px;
      background-color: #ffffff;
      transition: border-color 0.2s ease;
    }
    .textarea-custom:focus {
      outline: none;
      border-color: #cfab93;
    }

/* お悩みセクション：アイコンカード（均等サイズ） */
.komarigoto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .komarigoto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .komarigoto-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.komarigoto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem 1.375rem;
  background-color: #fcfbf9;
  border: 1px solid #e2ded8;
  border-radius: 10px;
  height: 100%;
}

.komarigoto-card__icon {
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: #f2ede4;
  border: 1px solid #e2ded8;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(53, 68, 88, 0.06);
}

.komarigoto-card__icon img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  display: block;
}

.komarigoto-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.komarigoto-card__label {
  font-size: 0.75rem;
  font-weight: bold;
  color: #b18366;
  line-height: 1.4;
}

.komarigoto-card__text {
  font-size: 0.875rem;
  font-weight: bold;
  color: #4a423a;
  line-height: 1.65;
  margin: 0;
}

/* 暮らしに合わせた清掃サービス — 写真付きカード */
.kurashi-service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kurashi-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e2ded8;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(53, 68, 88, 0.08);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.kurashi-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(53, 68, 88, 0.12);
}

.kurashi-service-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.kurashi-service-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(53, 68, 88, 0.12), transparent);
  pointer-events: none;
}

.kurashi-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kurashi-service-card--housecleaning .kurashi-service-card__media img {
  object-position: center 35%;
}

.kurashi-service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.625rem;
}

@media (min-width: 768px) {
  .kurashi-service-card__body {
    padding: 1.625rem 1.75rem 1.75rem;
  }
}

.kurashi-service-card__desc {
  flex: 1;
  margin-top: 0;
}

.kurashi-service-card__scope {
  margin-top: auto;
}

/* extracted from 01_floral-トップページ.html */
main.page-content, .page-content.flex-grow { display: block !important; }
#navbar, header { font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif; }
