/* ===== リセット & ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #2d3748;
  line-height: 1.75;
  font-size: 16px;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-green         { background: #27a96a; color: #fff; box-shadow: 0 3px 10px rgba(39,169,106,0.3); }
.btn-green:hover   { background: #1f9059; }
.btn-white         { background: #fff; color: #27a96a; box-shadow: 0 3px 10px rgba(0,0,0,0.12); }
.btn-line          { background: #06C755; color: #fff; box-shadow: 0 3px 10px rgba(6,199,85,0.3); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-full          { width: 100%; padding: 16px; font-size: 1rem; }
.mt-16 { margin-top: 16px; }

/* ===== ナビゲーション ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 66px;
  padding: 0 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #27a96a;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-menu a:hover { color: #27a96a; background: #f0faf4; }

.nav-tel {
  background: #27a96a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(39,169,106,0.28);
}
.nav-tel:hover { background: #1f9059; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #444;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 28px 90px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(15,72,45,0.82) 0%, rgba(30,100,65,0.75) 100%),
    url('hero-bg.jpg') center/cover no-repeat;
  background-color: #14532d;
}

/* 背景の装飾的な円 */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -150px; right: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -100px; left: -80px;
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== 特徴バー ===== */
.features {
  background: #fff;
  border-bottom: 1px solid #edf2f7;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  border-right: 1px solid #edf2f7;
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: #f9fffc; }
.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0faf5;
  border-radius: 10px;
}
.feature-text { display: flex; flex-direction: column; gap: 3px; }
.feature-text strong { font-size: 0.92rem; font-weight: 800; color: #1a2e20; }
.feature-text span  { font-size: 0.76rem; color: #6b7280; line-height: 1.45; }

/* ===== セクション共通 ===== */
.section { padding: 88px 0; }
.section-gray { background: #f7faf8; }

.section-tag {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #27a96a;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  color: #1a2e20;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* タイトル下の緑のアクセントライン */
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #27a96a;
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-sub {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 16px;
  margin-bottom: 52px;
}

/* ===== サービス ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8f0eb;
  transition: all 0.25s ease;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(39,169,106,0.12);
  transform: translateY(-5px);
  border-color: #b2dfc4;
}

.service-img {
  height: 120px;
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.06));
}

.cleaning { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.labor    { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.garden   { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); }
.errand   { background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%); }
.other    { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }
.business { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }

/* カード内の絵文字アイコン */
.service-img-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.6rem;
  z-index: 1;
}

.service-body { padding: 20px 22px 22px; }
.service-body h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: #1a2e20;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8f0eb;
}
.service-body ul li {
  font-size: 0.84rem;
  color: #4b5563;
  padding: 4px 0 4px 16px;
  position: relative;
}
.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #27a96a;
  border-radius: 50%;
}

/* ===== CTA バナー ===== */
.cta-banner {
  background: linear-gradient(135deg, #1f9059 0%, #27a96a 60%, #34d399 100%);
  padding: 56px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px; right: 5%;
  pointer-events: none;
}
.cta-text {
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 26px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== 料金 ===== */
.price-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 36px;
}

.price-main-card {
  background: linear-gradient(135deg, #1f9059 0%, #27a96a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(39,169,106,0.25);
}
.price-label {
  font-size: 0.8rem;
  opacity: 0.82;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.price-big { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.price-big span   { font-size: 0.9rem; opacity: 0.88; }
.price-big strong { font-size: 2.4rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.price-night {
  font-size: 0.78rem;
  background: rgba(0,0,0,0.18);
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.price-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8f0eb;
  display: flex;
  flex-direction: column;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  flex: 1;
  border-bottom: 1px solid #f0f7f3;
  transition: background 0.2s;
}
.price-row:hover { background: #f7fdf9; }
.price-row:last-child { border-bottom: none; }
.price-h { font-size: 0.97rem; font-weight: 700; color: #374151; }
.price-v { font-size: 1.35rem; font-weight: 900; color: #27a96a; }

.notice-box {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 680px;
  margin: 0 auto;
}
.notice-box h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 12px;
}
.notice-box ul li {
  font-size: 0.87rem;
  color: #78350f;
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.65;
}
.notice-box ul li::before {
  content: '！';
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== 自己紹介 ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 52px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #d1fae5 0%, #a7f3d0 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.82rem;
  text-align: center;
  gap: 8px;
  border: 2px dashed #6ee7b7;
}
.about-photo-placeholder::before {
  content: '👤';
  font-size: 2.5rem;
}

.about-name {
  font-size: 1.7rem;
  font-weight: 900;
  color: #1a2e20;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.about-meta {
  font-size: 0.84rem;
  color: #6b7280;
  margin-bottom: 14px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8f0eb;
}
.about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #f0faf5;
  color: #1f9059;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid #c6e9d7;
}

.about-text p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.85;
}
.about-text strong { color: #27a96a; font-weight: 800; }

/* ===== お問い合わせ ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e8f0eb;
  transition: all 0.22s ease;
  gap: 5px;
}
.contact-card:hover {
  box-shadow: 0 8px 24px rgba(39,169,106,0.12);
  transform: translateY(-3px);
  border-color: #b2dfc4;
}
.contact-icon { font-size: 1.7rem; margin-bottom: 2px; }
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
  text-transform: uppercase;
}
.contact-val { font-size: 0.97rem; font-weight: 800; color: #1a2e20; word-break: break-all; }
.contact-note { font-size: 0.72rem; color: #27a96a; font-weight: 600; }

.contact-card-line { cursor: default; }
.line-qr { width: 110px; height: 110px; margin: 8px 0; }
.line-qr img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.line-qr-placeholder {
  width: 110px; height: 110px;
  border: 2px dashed #b2dfc4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.6;
  background: #f7fdf9;
}

/* フォーム */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 34px;
  border: 1px solid #e8f0eb;
}
.form-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a2e20;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8f0eb;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 7px;
}
.required {
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
  color: #1a202c;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #27a96a;
  box-shadow: 0 0 0 3px rgba(39,169,106,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; }

/* ===== フッター ===== */
.footer {
  background: #0f2318;
  color: #9ca3af;
  text-align: center;
  padding: 52px 28px;
}
.footer-logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.footer-area { font-size: 0.83rem; margin-bottom: 22px; color: #6b7280; }
.footer-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 0.82rem;
  color: #6b7280;
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s;
}
.footer-links a:hover { color: #34d399; background: rgba(52,211,153,0.08); }
.footer-copy { font-size: 0.76rem; color: #4b5563; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    border-top: 1px solid #eee;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 15px 24px; border-bottom: 1px solid #f3f4f6; }
  .nav-hamburger { display: flex; }
  .nav-tel { font-size: 0.78rem; padding: 8px 12px; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid #edf2f7; padding: 18px 16px; }
  .feature-item:nth-child(odd) { border-right: 1px solid #edf2f7; }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }

  .service-grid { grid-template-columns: 1fr 1fr; }

  .price-wrap { grid-template-columns: 1fr; }

  .about-wrap { grid-template-columns: 1fr; }
  .about-photo-placeholder { max-width: 180px; margin: 0 auto; }

  .contact-wrap { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: row; flex-wrap: wrap; }
  .contact-card { flex: 1; min-width: 140px; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: column; }
  .hero { min-height: 85vh; }
  .hero-title { font-size: 1.75rem; }
  .section { padding: 64px 0; }
  .contact-form-wrap { padding: 24px 20px; }
}
