@charset "UTF-8";

/* ================================================
   Access Job 九州版 - パターンA 2カラム版
   デザイン方針: クリーン・見やすさ重視 + 2カラムレイアウト
   カラー: Primary #2a7f9e（ティール）、Accent #e8873a（オレンジ）
   ================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Hiragino Sans", "Hiragino Kaku Gothic ProN",
        "Yu Gothic", "YuGothic",
        "Meiryo", sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #333;
    background-color: #f3f5f7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #2a7f9e;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.75;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

/* ---- Utility ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ================================================
   Header
   ================================================ */
.header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 64px;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
}

.header-logo .logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-sub {
    font-size: 13px;
    font-weight: 600;
    color: #e8873a;
    background-color: #fef3e2;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Nav tabs */
.header-nav {
    margin-left: 40px;
}

.pref-tabs {
    display: flex;
    gap: 4px;
}

.pref-tabs li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.pref-tabs li a:hover {
    background-color: #f5f5f5;
    color: #333;
    opacity: 1;
}

.pref-tabs li.active a {
    background-color: #2a7f9e;
    color: #fff;
}

/* Header right */
.header-right {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-login {
    color: #2a7f9e;
    border: 1px solid #2a7f9e;
    background: #fff;
}

.btn-login:hover {
    background-color: #f0f8fb;
    opacity: 1;
}

.btn-register {
    color: #fff;
    background-color: #e8873a;
    border: 1px solid #e8873a;
}

.btn-register:hover {
    background-color: #d6772e;
    opacity: 1;
}

/* SP menu button */
.sp-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-left: auto;
}

.sp-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.sp-menu-btn span:nth-child(1) { top: 0; }
.sp-menu-btn span:nth-child(2) { top: 9px; }
.sp-menu-btn span:nth-child(3) { top: 18px; }

.sp-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.sp-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.sp-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}


/* ================================================
   Hero / Main Visual
   ================================================ */
.hero {
    background-image: url(images/mv.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 48px 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(42, 127, 158, 0.85);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-sub {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Search form (hero内 - 1行横並び) */
.hero-search {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.search-form-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 4px;
}

.search-field select,
.search-field input[type="text"] {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f7f7f7;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    appearance: auto;
}

.search-field select:focus,
.search-field input[type="text"]:focus {
    border-color: #2a7f9e;
    background-color: #fff;
}

.search-field-kw {
    flex: 1.2;
}

.btn-search {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #2a7f9e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-search:hover {
    background-color: #236b85;
}

.btn-search i {
    margin-right: 6px;
}


/* ================================================
   2カラムレイアウト
   ================================================ */
.two-col {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.col-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.col-side {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 84px;
}


/* ================================================
   Side - 共通カードスタイル
   ================================================ */
.side-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.side-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2a7f9e;
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-card-title i {
    color: #2a7f9e;
}


/* ================================================
   Side - エリアリンク
   ================================================ */
.side-area-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.side-area-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background-color: #f7f7f7;
    transition: all 0.2s;
}

.side-area-link:hover {
    background-color: #f0f8fb;
    color: #2a7f9e;
    opacity: 1;
}

.side-area-link .count {
    font-size: 12px;
    font-weight: 600;
    color: #2a7f9e;
}


/* ================================================
   Side - 職種リンク
   ================================================ */
.side-job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.side-job-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: all 0.2s;
}

.side-job-link:hover {
    background-color: #2a7f9e;
    color: #fff;
    opacity: 1;
}

.side-job-link i {
    font-size: 10px;
}


/* ================================================
   Side - ニュース
   ================================================ */
.side-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-news-item {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.2s;
}

.side-news-item:hover {
    color: #2a7f9e;
    opacity: 1;
}

.side-news-date {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    margin-bottom: 2px;
}

.side-news-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background-color: #2a7f9e;
    padding: 1px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.side-news-label-campaign {
    background-color: #e8873a;
}


/* ================================================
   Side - 企業バナー
   ================================================ */
.side-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.side-banner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 6px 10px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s;
}

.side-banner-item:hover {
    border-color: #2a7f9e;
    opacity: 1;
}

.side-banner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ================================================
   Main - セクション共通
   ================================================ */
.main-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a7f9e;
    display: inline-block;
}

.main-section-sub {
    font-size: 13px;
    color: #666;
    margin-top: -10px;
    margin-bottom: 16px;
}

.section-more {
    text-align: center;
    margin-top: 20px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    color: #2a7f9e;
    background-color: #fff;
    border: 2px solid #2a7f9e;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-more:hover {
    background-color: #2a7f9e;
    color: #fff;
    opacity: 1;
}


/* ================================================
   Main - エリアカード（九州トップ用）
   ================================================ */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.2s;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.area-card:hover {
    border-color: #2a7f9e;
    box-shadow: 0 4px 12px rgba(42, 127, 158, 0.1);
    opacity: 1;
}

.area-card-icon img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.area-card-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
}

.area-count {
    font-size: 12px;
    color: #666;
}

.area-count strong {
    font-size: 16px;
    font-weight: 700;
    color: #2a7f9e;
}

.area-card-arrow {
    margin-left: auto;
    color: #999;
    font-size: 12px;
}

/* Coming Soon */
.area-card-soon {
    opacity: 0.5;
    cursor: default;
}

.area-card-soon:hover {
    border-color: #ddd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.area-coming {
    font-size: 11px;
    color: #bbb;
    font-style: italic;
}


/* ================================================
   Main - 特集 (2x2グリッド)
   ================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #2a7f9e;
    opacity: 1;
}

.feature-card-img {
    position: relative;
    width: 100%;
    padding-top: 56%;
    overflow: hidden;
}

.feature-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature-card:hover .feature-card-img img {
    transform: scale(1.04);
}

.feature-card-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1.4;
}

.feature-card-body p {
    font-size: 12px;
    color: #666;
}


/* ================================================
   Main - ピックアップ求人
   ================================================ */
.pickup-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pickup-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pickup-card:hover {
    border-color: #2a7f9e;
    box-shadow: 0 4px 12px rgba(42, 127, 158, 0.08);
    opacity: 1;
}

.pickup-card-img {
    position: relative;
    width: 160px;
    flex-shrink: 0;
}

.pickup-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background-color: #2a7f9e;
    border-radius: 4px;
}

.pickup-card-body {
    padding: 14px 16px;
    flex: 1;
    min-width: 0;
}

.pickup-company {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    margin-bottom: 3px;
}

.pickup-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pickup-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    margin-bottom: 8px;
}

.pickup-meta span {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.pickup-meta i {
    color: #2a7f9e;
    width: 14px;
    text-align: center;
    margin-right: 3px;
}

.pickup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    display: inline-block;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #1e6b84;
    background-color: #e4f2f7;
    border-radius: 20px;
}

.tag-accent {
    background-color: #fef3e2;
    color: #c67a2e;
}


/* ================================================
   Main - 注目企業
   ================================================ */
.company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.company-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #333;
    transition: all 0.2s;
}

.company-card:hover {
    border-color: #2a7f9e;
    box-shadow: 0 4px 12px rgba(42, 127, 158, 0.08);
    opacity: 1;
}

.company-card-logo {
    width: 64px;
    height: 32px;
    flex-shrink: 0;
}

.company-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-card-info h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1px;
}

.company-card-info p {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.company-count {
    font-size: 11px;
    font-weight: 600;
    color: #2a7f9e;
}


/* ================================================
   Main - 市区町村（県別ページ用）
   ================================================ */
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.city-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.city-card:hover {
    border-color: #2a7f9e;
    color: #2a7f9e;
    opacity: 1;
}

.city-count {
    font-size: 11px;
    font-weight: 600;
    color: #2a7f9e;
    background-color: #f0f8fb;
    padding: 1px 8px;
    border-radius: 10px;
}

/* Job card count */
.job-card-count {
    font-size: 11px;
    font-weight: 600;
    color: #2a7f9e;
    margin-left: 4px;
}


/* ================================================
   Footer - 採用バナー
   ================================================ */
.footer-recruit-banner {
    background-color: #eef0f2;
    padding: 32px 0;
}

.recruit-banner-link {
    display: block;
    width: 350px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recruit-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.recruit-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .recruit-banner-link {
        width: 300px;
    }
}

/* Footer main */
.footer-main {
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 32px 0 24px;
    padding-bottom: 80px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.footer-links a:hover {
    color: #2a7f9e;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}



.footer-logo .logo-sub {
    font-size: 11px;
}

.copyright {
    font-size: 11px;
    color: #777;
}


/* ================================================
   Side - 自社求人バナー
   ================================================ */
.side-recruit-banner {
    padding: 0;
    overflow: hidden;
    border: 2px solid #e8873a;
}

.recruit-banner-link {
    display: block;
    color: #333;
}

.recruit-banner-link:hover {
    opacity: 1;
}

.recruit-banner-inner {
    background: linear-gradient(135deg, #fff5eb 0%, #ffecd2 100%);
    padding: 24px 18px;
    text-align: center;
    transition: background 0.3s;
}

.recruit-banner-link:hover .recruit-banner-inner {
    background: linear-gradient(135deg, #ffecd2 0%, #ffd9b3 100%);
}

.recruit-banner-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    background-color: #e8873a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-banner-icon i {
    font-size: 20px;
    color: #fff;
}

.recruit-banner-title {
    font-size: 16px;
    font-weight: 800;
    color: #c46b1e;
    line-height: 1.5;
    margin-bottom: 4px;
}

.recruit-banner-sub {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin-bottom: 12px;
}

.recruit-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: #e8873a;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.recruit-banner-link:hover .recruit-banner-btn {
    background-color: #d6772e;
}


/* ================================================
   Full-width セクション共通
   ================================================ */
.fw-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
}

.fw-section-sub {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
}


/* ================================================
   数字で見る実績
   ================================================ */
.section-numbers {
    background: linear-gradient(135deg, #2a7f9e 0%, #1a5f7a 100%);
    padding: 48px 0;
}

.section-numbers-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.number-item {
    text-align: center;
    padding: 20px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.number-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-icon i {
    font-size: 18px;
    color: #fff;
}

.number-value {
    margin-bottom: 4px;
}

.number-count {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.number-unit {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.number-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}


/* ================================================
   Access Jobの強み
   ================================================ */
.section-strength {
    background-color: #fff;
    padding: 56px 0;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.strength-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}

.strength-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.strength-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-body {
    padding: 20px;
}

.strength-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.strength-item h3 i {
    color: #2a7f9e;
    margin-right: 6px;
}

.strength-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}


/* ================================================
   利用の流れ
   ================================================ */
.section-flow {
    background-color: #f3f5f7;
    padding: 56px 0;
}

.flow-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.flow-item {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 16px;
}

.flow-step {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: #2a7f9e;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background-color: #fff;
    border: 2px solid #2a7f9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(42, 127, 158, 0.12);
}

.flow-icon i {
    font-size: 32px;
    color: #2a7f9e;
}

.flow-body {
    display: block;
}

.flow-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.flow-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.flow-arrow {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: #bbb;
    font-size: 16px;
}


/* ================================================
   利用者の声
   ================================================ */
.section-voice {
    background-color: #fff;
    padding: 56px 0;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.voice-item {
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fafafa;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.voice-avatar {
    width: 44px;
    height: 44px;
    background-color: #e8f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voice-avatar i {
    font-size: 18px;
    color: #2a7f9e;
}

.voice-avatar-corp {
    background-color: #fef3e2;
}

.voice-avatar-corp i {
    color: #e8873a;
}

.voice-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.voice-job {
    font-size: 11px;
    color: #999;
    font-weight: 600;
}

.voice-stars {
    margin-bottom: 10px;
}

.voice-stars i {
    font-size: 13px;
    color: #f5a623;
}

.voice-text {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}


/* ================================================
   Prefecture Page (県別ページ固有)
   ================================================ */
.hero-fukuoka {
    background-image: url(images/mv2.jpg);
}

.hero-oita {
    background-image: url(images/mv.jpg);
}

.hero-pref .hero-text {
    margin-bottom: 24px;
}

.hero-pref-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-pref .hero-title {
    font-size: 32px;
}

.hero-pref .hero-sub strong {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}


/* ================================================
   Responsive - Tablet (1024px)
   ================================================ */
@media screen and (max-width: 1024px) {
    .two-col {
        flex-direction: column;
    }

    .col-side {
        width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .col-side .side-card {
        flex: 1;
        min-width: 240px;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero search - tablet */
    .search-form-row {
        flex-wrap: wrap;
    }

    .search-field {
        flex: 1 1 45%;
        min-width: 140px;
    }

    .search-field-kw {
        flex: 1 1 100%;
    }

    .btn-search {
        flex: 1 1 100%;
    }
}


/* ================================================
   Responsive - SP (767px)
   ================================================ */
@media screen and (max-width: 767px) {

    /* Header */
    .header-inner {
        height: auto;
        min-height: 56px;
        flex-wrap: wrap;
    }

    .header-logo {
        height: 56px;
        display: flex;
        align-items: center;
    }

    .header-nav,
    .header-right {
        display: none;
        width: 100%;
        order: 10;
        border-top: 1px solid #eee;
    }

    .header-nav.open {
        display: block;
    }

    .header-right.open {
        display: flex;
    }

    .header-nav {
        margin-left: 0;
        padding: 8px 16px;
    }

    .header-right {
        padding: 8px 16px;
        flex-direction: column;
        gap: 8px;
    }

    .pref-tabs {
        flex-direction: column;
        gap: 4px;
    }

    .pref-tabs li a {
        padding: 10px 16px;
    }

    .sp-menu-btn {
        display: block;
        margin-left: auto;
    }

    .header-logo .logo-img {
        height: 26px;
    }

    /* Hero */
    .hero {
        padding: 24px 0 28px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .search-form {
        padding: 14px 12px;
    }

    .search-form-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-field {
        flex: 1 1 40%;
        min-width: 0;
    }

    .search-field-kw {
        flex: 1 1 100%;
    }

    .btn-search {
        width: 100%;
        height: 48px;
        font-size: 15px;
    }

    /* Two col → single col */
    .two-col {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }

    .col-side {
        width: 100%;
        position: static;
        flex-direction: column;
    }

    /* Main section */
    .main-section {
        padding: 18px 16px;
    }

    .main-section-title {
        font-size: 16px;
    }

    /* Area */
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Feature */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pickup */
    .pickup-card {
        flex-direction: column;
    }

    .pickup-card-img {
        width: 100%;
        height: 140px;
    }

    /* Company */
    .company-grid {
        grid-template-columns: 1fr;
    }

    /* City */
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-card {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Side banner */
    .side-banner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-links {
        gap: 4px 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-banner-item {
        width: 100px;
        height: 40px;
    }

    /* Pref hero (SP) */
    .hero-pref .hero-title {
        font-size: 22px;
    }

    .hero-pref .hero-sub strong {
        font-size: 20px;
    }

    /* 数字で見る実績 */
    .section-numbers {
        padding: 32px 0;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .number-count {
        font-size: 28px;
    }

    /* 強み */
    .section-strength {
        padding: 36px 0;
    }

    .strength-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .strength-item {
        display: flex;
        flex-direction: row;
    }

    .strength-img {
        width: 140px;
        height: auto;
        flex-shrink: 0;
    }

    .strength-body {
        padding: 16px;
    }

    .strength-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .strength-item p {
        font-size: 12px;
    }

    /* 利用の流れ */
    .section-flow {
        padding: 36px 0;
    }

    .flow-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 16px;
    }

    .flow-item {
        max-width: 100%;
        padding: 16px 0;
    }

    .flow-step {
        margin-bottom: 12px;
    }

    .flow-body {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .flow-icon {
        width: 56px;
        height: 56px;
        margin: 0;
        flex-shrink: 0;
    }

    .flow-icon i {
        font-size: 22px;
    }

    .flow-text {
        flex: 1;
        text-align: left;
    }

    .flow-item h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .flow-item p {
        font-size: 13px;
    }

    .flow-arrow {
        padding-top: 0;
        font-size: 14px;
        padding: 4px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .flow-arrow i::before {
        content: "\f078";
    }

    /* 利用者の声 */
    .section-voice {
        padding: 36px 0;
    }

    .voice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Full-width section titles */
    .fw-section-title {
        font-size: 18px;
    }

    .fw-section-sub {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .section-numbers-title {
        font-size: 18px;
    }
}
