html, body { height: 100%; margin: 0; box-sizing: border-box; }
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 16px 48px;
  padding-top: 72px;
  min-height: 100%;
  background: #e8f5e9;
  color: #111;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN",
               "Yu Gothic", "Meiryo", sans-serif;
}

/* フローティングヘッダー（2カラム：左タイトル・右LINE問い合わせ） */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.floating-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 20px;
  gap: 16px;
}
.floating-title {
  font-weight: 800;
  font-size: clamp(1rem, 4vw, 1.35rem);
  letter-spacing: 0.02em;
}
.floating-line {
  flex-shrink: 0;
}
.line-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #06c755;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.4);
  transition: background 0.2s, transform 0.15s;
}
.line-btn:hover {
  background: #05b04c;
  transform: translateY(-1px);
}
.line-btn:active {
  transform: translateY(0);
}
.text{
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  padding: 16px;
  font-size: clamp(32px, 8vw, 96px);
}
.price-section {
  width: 100%;
  max-width: 720px;
  margin-top: 48px;
}
.price-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.price-table th {
  background: #333;
  color: #fff;
  font-weight: 600;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:nth-child(even) {
  background: #f9f9f9;
}
.price-table .price {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
.price-table .price-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 8px;
}
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}
.two-col .col-img {
  flex: 0 1 380px;
  min-width: 260px;
}
.two-col .col-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.two-col .col-text {
  flex: 1 1 380px;
  min-width: 260px;
}
.two-col .col-text h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 700;
}
.two-col .col-text p {
  margin: 0 0 1em;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #333;
}
.two-col .col-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .two-col { flex-direction: column; }
  .two-col .col-img { max-width: 100%; }
}
