/*
Theme Name: Lightning Child 
Theme URI: ★ テーマの公式サイトなどのURL（空欄でも可） ★
Template: lightning
Description: ★ テーマの説明（空欄でも可） ★
Author: ★ テーマ作成者の名前（空欄でも可） ★
Tags: 
Version: 0.5.1
*/



.jp-area-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.area-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.jp-area-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ★ ここで「2列」に固定してる */
.jp-area-flex .jp-card {
  box-sizing: border-box;
  flex: 0 0 calc(50% - 10px); /* 画面幅のちょうど半分ずつ */
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-left: 5px solid #2db300;
  transition: 0.2s;
}

.jp-area-flex .jp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.jp-area-flex .jp-card h3 {
  font-size: 18px;
  color: #2db300;
  margin-bottom: 8px;
}

.jp-area-flex .jp-card p {
  line-height: 1.8;
  margin: 0;
}

.jp-area-flex .jp-card a {
  text-decoration: none;
  color: #333;
  padding: 3px 4px;
  border-radius: 4px;
}

.jp-area-flex .jp-card a:hover {
  background: #2db300;
  color: #fff;
}

/* スマホは1列でOK */
@media (max-width: 768px) {
  .jp-area-flex .jp-card {
    flex: 0 0 100%;
  }
}


/* 都道府県の部分を3列にする（フッター全体はそのまま） */
.footer-pref-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ★3列にする */
    gap: 10px 25px;
    max-width: 900px;
    margin: 0 auto;
}

/* 県リンクの見た目を整える */
.footer-pref-area a {
    display: inline-block;
    margin-bottom: 5px;
    text-decoration: none;
    color: #333;
}

.footer-pref-area a:hover {
    color: #2db300; /* ジョブコン風の緑 */
    text-decoration: underline;
}

/* スマホは1列に */
@media (max-width: 768px) {
    .footer-pref-area {
        grid-template-columns: 1fr;
    }
}

.simple-search-wrap {
    background: #eefcff;
    padding: 25px;
    border-radius: 10px;
    max-width: 900px;
    margin: 30px auto;
}

.search-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.input-wrap {
    position: relative;
    flex: 1;
}

.input-wrap .icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #25a3c4;
    font-size: 18px;
}

.input-wrap input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 15px;
    background: #ffffff;
}

.simple-search-btn {
    background: #ff8a1e;
    color: #fff;
    border: none;
    padding: 0 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.simple-search-btn:hover {
    background: #ff7a00;
}

/* スマホ対応 */
@media(max-width: 768px){
    .search-row {
        flex-direction: column;
    }
    .simple-search-btn {
        width: 100%;
        padding: 12px;
    }
}
