body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  background: #f5f5f5;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #555;
}

.strength ul {
  list-style: none;
  padding: 0;
}

.strength li {
  margin-bottom: 15px;
  font-size: 18px;
}

.hero {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 160px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
}

/* --- base --- */
* { box-sizing: border-box; }
a { color: inherit; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: #f7f7f7; }
.section-title { font-size: 28px; margin: 0 0 10px; }
.section-lead { color: #666; margin: 0 0 30px; }
.note { color: #666; font-size: 14px; margin-top: 12px; }

/* --- hero --- */
.hero {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  position: relative;
}
.hero::before { content:""; position:absolute; inset:0; background: rgba(0,0,0,0.55); }
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: 44px; margin: 0 0 16px; letter-spacing: .03em; }
.hero p { font-size: 18px; margin: 0 0 28px; color: rgba(255,255,255,.9); }
.hero-actions { display: grid; gap: 14px; justify-content: center; }

/* --- buttons --- */
.cta-button {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
}
.cta-button:hover { opacity: .92; }
.cta-sub { display: inline-block; color: rgba(255,255,255,.95); text-decoration: underline; }
.section .cta-sub { color: #111; }

/* --- cards --- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.card { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.card h3 { margin: 0 0 10px; font-size: 18px; }
.card p { margin: 0; color: #555; }

/* --- works --- */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.work { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.work img { width: 100%; height: 220px; object-fit: cover; display: block; }
.work-body { padding: 16px; }
.work-body h3 { margin: 0 0 6px; font-size: 18px; }
.work-body p { margin: 0; color: #555; }

/* --- price --- */
.price-box { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 14px; border-bottom: 1px solid #eee; text-align: left; }
.price-table th { background: #fafafa; }

/* --- price grid --- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.price-box { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.price-category { margin: 0 0 14px; font-size: 18px; border-left: 4px solid #ff6600; padding-left: 10px; }
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* --- flow --- */
.flow { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.flow li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; background: #fff; border-radius: 12px; padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.flow li span { width: 40px; height: 40px; border-radius: 999px; background: #111; color: #fff; display: grid; place-items: center; font-weight: 700; }
.flow h3 { margin: 0 0 6px; font-size: 18px; }
.flow p { margin: 0; color: #555; }

/* --- cta section --- */
.cta { padding: 80px 0; background: #111; color: #fff; text-align: center; }
.cta-inner h2 { margin: 0 0 10px; font-size: 28px; }
.cta-inner p { margin: 0 0 22px; color: rgba(255,255,255,.85); }
.cta-actions { display: grid; gap: 14px; justify-content: center; }

/* --- footer --- */
.footer { padding: 40px 0; background: #0b0b0b; color: rgba(255,255,255,.85); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; }
.footer-title { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.footer-text { font-size: 14px; color: rgba(255,255,255,.75); }
.footer-text.small { font-size: 12px; opacity: .7; }

/* --- back link bar --- */
.back-link-bar { background: #f7f7f7; border-bottom: 1px solid #e5e5e5; padding: 12px 0; }
.back-link { font-size: 14px; color: #555; text-decoration: none; }
.back-link:hover { color: #ff6600; }

/* --- contact page --- */
.contact-page { max-width: 680px; }
.contact-form-wrap { margin-top: 32px; }
.contact-form-wrap .wpcf7-form label { display: block; font-weight: 700; margin-bottom: 16px; }
.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}
.contact-form-wrap .wpcf7-form textarea { height: 160px; resize: vertical; }
.contact-form-wrap .wpcf7-form input[type="submit"] {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}
.contact-form-wrap .wpcf7-form input[type="submit"]:hover { opacity: .88; }
.contact-tel { margin-top: 32px; color: #555; }
.contact-tel a { color: #ff6600; font-weight: 700; text-decoration: none; }

/* --- responsive --- */
@media (max-width: 900px) {
  .cards, .works-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 20px; }
  .hero h1 { font-size: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}