/* --- 会社案内ページ専用スタイル --- */

/* ヒーローエリアのテクスチャ */
.about-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                url('../img/about.png') no-repeat center center / cover;
}

/* ビジョンセクション */
.sub-title {
    display: block;
    color: var(--sub-blue);
    font-weight: bold;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* 管理者メッセージ：グリッドレイアウト */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.admin-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 30px 30px 0 rgba(0, 51, 102, 0.05); /* 後ろにずらした装飾 */
    object-fit: cover;
}

.admin-content .tag {
    display: inline-block;
    background: var(--primary-navy);
    color: #fff;
    padding: 4px 15px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    border-radius: 4px;
}

.admin-content h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 25px;
}

.admin-content p {
    margin-bottom: 20px;
    color: #555;
}

.signature {
    margin-top: 40px;
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 15px;
}

.signature span {
    font-size: 1.8rem;
    font-family: "Hiragino Mincho ProN", serif; /* 名前だけ明朝体で上品に */
}

/* ステーション概要：プロフェッショナルなテーブル */
.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.profile-table th {
    width: 25%;
    padding: 25px 30px;
    background: #f8faff;
    color: var(--primary-navy);
    text-align: left;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}

.profile-table td {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    color: #333;
    line-height: 1.8;
}
.profile-table .service-title{margin:1rem 0;}
.profile-table .service-list{
	display: grid;margin-left: 1vw;
	grid-template-columns: repeat(auto-fit, minmax(min(10em, 100%), 1fr));gap:1vw;
}
.profile-table .service-list span {
    border: 1px solid #ccc;color: #555;line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.profile-table .service-list span:hover {
    transform: translateY(-5px);
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
    border-bottom: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .admin-image {
        order: 2;
    }
    .admin-content {
        order: 1;
    }
    .profile-table th {
        width: 100%;
        display: block;
        padding: 15px 20px 5px;
    }
    .profile-table td {
        width: 100%;
        display: block;
        padding: 5px 20px 20px;
    }
}
@media (max-width: 500px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* スタッフ紹介のグリッド */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 30px;
}

.staff-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.staff-card:hover {
    transform: translateY(-10px);
}

.staff-img {
    height: 250px;
    overflow: hidden;
}

.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-card:hover .staff-img img {
    transform: scale(1.1);
}

.staff-info {
    padding: 25px;
}

.staff-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--accent-green); /* 以前定義した求職者向けカラー */
    border: 1px solid var(--accent-green);
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.staff-info h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.staff-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

