/* === Area Section (対応エリア) === */
.area-section{
  background:#e8f3e6;
  padding:44px 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

.area-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.area-kicker{
  width: fit-content;
  margin: 0 auto 30px;
  padding: 10px 26px;
  background:#ffffff;
  color:#1b7f2a;
  font-size: 30px;
  border-radius: 50px;
  font-weight: 1000;
  letter-spacing: .02em;
  text-align:center;
}

.area-card{
  background:#ffffff;
  border-radius: 18px;
  padding: 22px 22px;
  display:flex;
  align-items:center;
  gap: 26px;
  box-shadow: 0 2px 0 rgba(0,0,0,.06);
}

.area-map{
  flex: 0 0 260px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.area-map img{
  width: 100%;
  height: auto;
  display:block;
}

.area-content{
  flex: 1;
  min-width: 0;
  text-align:center;
}

.area-title{
  margin: 0 0 10px;
  color:#0f6f22;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: .02em;
}

.area-text{
  margin: 0 0 18px;
  color:#555;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}

.area-btn{
  display:inline-block;
  margin-top: 5px;
  padding: 14px 44px;
  background:#f26f62;
  color:#fff;
  border-radius: 999px;
  font-weight: 1200;
  letter-spacing:.02em;
  text-decoration:none;
  font-size: 30px;
}

.area-btn:hover{
  filter: brightness(0.95);
}

/* SP調整 */
@media (max-width: 640px){
   .area-kicker{
    border-radius: 20px;
   }

  .area-card{
    flex-direction: column;
    padding: 18px 16px;
  }

  .area-map{
    display: none;
  }

  .area-title{
    font-size: 24px;
  }

  .area-btn{
    width: 100%;
    text-align:center;
    padding: 14px 0;
  }
}