/* ==============================
   リセット / ベース
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: #0078d7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==============================
   ヘッダー
============================== */
.site-header {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.site-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.site-header .catchcopy {
  font-size: 1rem;
  color: #555;
}

/* ==============================
   ヒーロー
============================== */
.hero {
  background-color: #0078d7;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff9800;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #e68900;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #555;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background-color: #333;
}

.btn-line {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00c300;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-line:hover {
  background-color: #009900;
}

/* ==============================
   対応エリア
============================== */
.area {
  padding: 50px 0;
  background-color: #f1f1f1;
  text-align: center;
}

.area h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.area p {
  margin-bottom: 20px;
}

.area-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.area-links li {
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ==============================
   サービス / TIPS / 料金
============================== */
.service, .tips, .price, .flow, .faq {
  padding: 50px 0;
}

.service h2, .tips h2, .price h2, .flow h2, .faq h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: left;
}

.price-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
}

.price-table th, .price-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.price-table th {
  background-color: #f8f8f8;
}

.price .note {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

.tips-list {
  list-style: none;
  text-align: center;
}

.tips-list li {
  margin-bottom: 10px;
}

/* ==============================
   流れ（flow）
============================== */
.flow-steps {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.flow-steps li {
  background-color: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #ff9800;
  border-radius: 4px;
}

/* ==============================
   FAQ
============================== */
.faq-item {
  max-width: 700px;
  margin: 0 auto 15px auto;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* ==============================
   お問い合わせ
============================== */
.contact {
  background-color: #f1f1f1;
  padding: 50px 0;
  text-align: center;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.contact .small {
  font-size: 0.85rem;
  color: #666;
  margin-top: 15px;
}

/* ==============================
   フッター
============================== */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

.site-footer nav a {
  color: #fff;
  margin: 0 10px;
  font-size: 0.9rem;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

/* ==============================
   レスポンシブ
============================== */
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    align-items: center;
  }
  .area-links {
    flex-direction: column;
    gap: 10px;
  }
  .flow-steps li {
    font-size: 0.95rem;
  }
}

/* === 対応エリアセクション === */
.area-detail {
  background-color: #f9fafb;
  text-align: center;
  padding: 60px 20px;
}

.area-detail h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.area-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.area-list-wrapper {
  display: flex;
  justify-content: center;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 600px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.area-list li {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  color: #333;
  transition: 0.3s ease;
}

.area-list li:hover {
  background-color: #eef6ff;
  border-color: #b8d4ff;
}

.area-note {
  margin-top: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}
