/*!
 * 東京外国人ビザ・求人サポートセンター専用CSS
 * Version: 1.0.0
 */

/* ==========================================================================
   リセット・基本設定
========================================================================== */

.tl-visa-body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* 背景を少しグレーに */
}

.tl-visa-body * {
    box-sizing: border-box;
}

.tl-visa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ラッパー構造
========================================================================== */
.tl-visa-wrapper {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.tl-visa-main-content {
    flex-grow: 1; /* メインコンテンツが残りのスペースを全て使う */
    width: 100%;
}

/* ==========================================================================
   ヘッダー
========================================================================== */

.tl-visa-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tl-visa-header .tl-visa-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tl-visa-logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #2c5282;
}

.tl-visa-logo h1 a {
    text-decoration: none;
    color: inherit;
}

.tl-visa-logo p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.tl-visa-header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tl-visa-header-contact a {
    text-decoration: none;
    color: #2c5282;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tl-visa-header-contact a:hover {
    border-color: #2c5282;
    background: #f8f9fa;
}

/* ==========================================================================
   サイドバー
========================================================================== */

.tl-visa-sidebar {
    width: 280px;
    flex-shrink: 0; /* サイドバーが縮まないようにする */
}

.tl-visa-sidebar-widget {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tl-visa-sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c5282;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.tl-visa-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tl-visa-sidebar-list ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
}

.tl-visa-sidebar-list > li {
    margin-bottom: 10px;
}

.tl-visa-sidebar-list li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.tl-visa-sidebar-list li a:hover {
    background-color: #e2e8f0;
    color: #2c5282;
}
.tl-visa-sidebar-list li strong {
    font-weight: 600;
    display: block;
    padding: 8px;
}


/* ==========================================================================
   フッター
========================================================================== */

.tl-visa-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 30px 0;
    font-size: 0.9rem;
}

.tl-visa-footer-bottom {
    text-align: center;
}

.tl-visa-footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   ヒーローセクション（トップページ専用）
========================================================================== */
.first-view {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 50px;
    border-radius: 10px;
}
.hero-overlay h2 { font-size: 2.5em; margin-bottom: 10px; color: #fff; }
.hero-overlay p { font-size: 1.2em; }


/* ==========================================================================
   コンテンツエリア
========================================================================== */
.vsc-content-area {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.entry-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5282;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.3;
}
.entry-content {
    line-height: 1.8;
}

/* ==========================================================================
   レスポンシブ
========================================================================== */
@media (max-width: 768px) {
    .tl-visa-wrapper {
        flex-direction: column;
    }
    .tl-visa-sidebar {
        width: 100%;
    }
}

code
Css
/* 最新のお知らせ（メインコンテンツ） */
.latest-news-section { margin: 50px auto; padding-top: 30px; border-top: 1px solid #e2e8f0;}
.latest-news-section h2 { font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 30px; color: #2c5282; }
.tl-visa-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.news-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.news-card a { display: block; text-decoration: none; color: inherit; }
.news-card-img { width: 100%; height: 180px; background-color:#f0f0f0; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-content { padding: 20px; }
.news-card-category { display: inline-block; background-color: #3b82f6; color: white; font-size: 0.75rem; padding: 4px 10px; border-radius: 15px; margin-bottom: 10px; font-weight: 600; }
.news-card-title { font-size: 1.1rem; font-weight: 600; margin: 0 0 10px 0; line-height: 1.5; }
.news-card-date { font-size: 0.85rem; color: #666; }

/* 最新のお知らせ（サイドバー） */
.tl-visa-news-list-sidebar { list-style: none; padding: 0; margin: 0; }
.tl-visa-news-list-sidebar li { margin-bottom: 15px; }
.tl-visa-news-list-sidebar a { display: flex; gap: 10px; align-items: center; text-decoration: none; color: #333; }
.tl-visa-news-list-sidebar a:hover .news-title { color: #2c5282; }
.tl-visa-news-list-sidebar img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.tl-visa-news-list-sidebar .news-title { font-size: 0.9rem; font-weight: 500; line-height: 1.4; transition: color 0.2s ease; }
.tl-visa-news-list-sidebar .news-date { font-size: 0.8rem; color: #888; display: block; text-align: right; margin-top: 5px; }

/* 記事タイトル下のカテゴリーバッジ */
.vsc-post-categories {
    margin-top: -15px; /* タイトルとの間隔調整 */
    margin-bottom: 25px;
}
.vsc-post-category-badge {
    display: inline-block;
    background-color: #3b82f6;
    color: #fff !important;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}
.vsc-post-category-badge:hover {
    background-color: #2563eb;
}

/* サイドバーお知らせリストのカテゴリー */
.news-list-categories { margin-bottom: 8px; }
.news-list-categories a { text-decoration: none; }
.news-list-category {
    display: inline-block;
    background-color: #f1f5f9;
    color: #475569;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 5px;
    font-weight: 500;
    transition: background-color 0.2s;
}
.news-list-categories a:hover .news-list-category { background-color: #e2e8f0; }
.tl-visa-news-list-sidebar .news-list-link { display: flex; gap: 10px; align-items: center; text-decoration: none; color: #333; }
.tl-visa-news-list-sidebar .news-list-link:hover .news-title { color: #2c5282; }

/* --- visa-style.css に追記するコード --- */

/* === 新トップページコンテンツ用CSS === */

/* セクション基本設定 */
.vsc-section { padding: 40px 0; }
.vsc-section-title { font-size: 1.8rem; text-align: center; font-weight: 700; color: #1a3a64; margin: 0 0 30px 0; }
.vsc-bg-light { background-color: #f7f9fc; padding: 40px 20px; margin: 0 -20px; /* mainのpaddingを考慮 */ }
.vsc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vsc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* 1. トップビュー */
.vsc-section-top {
    margin: -30px -30px 30px -30px; /* mainのpaddingを打ち消す */
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 8px 8px 0 0;
}
.vsc-hero-overlay { background-color: rgba(67, 56, 202, 0.8); padding: 30px; border-radius: 12px; }
.vsc-hero-overlay h1 { font-size: 2.2rem; font-weight: 700; color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); }
.vsc-hero-overlay p { font-size: 1rem; margin-bottom: 20px; }
.vsc-hero-stats { display: flex; justify-content: space-around; text-align: center; border-top: 1px solid rgba(255,255,255,0.5); padding-top: 20px; margin-bottom: 20px; }
.vsc-hero-stats strong { font-size: 2rem; display: block; }
.vsc-hero-stats span { font-size: 0.8rem; }
.vsc-hero-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.vsc-hero-btn-group { background: #fff; border-radius: 8px; padding: 15px; color: #333; text-align: center; }
.vsc-hero-btn-group p { font-size: 0.8rem; line-height: 1.5; margin: 0 0 10px 0; }
.vsc-hero-btn-group strong { font-size: 1rem; color: #1a3a64; }

/* 2. お悩みセクション */
.vsc-worries-box { background: #fff7f7; border: 1px solid #ffebeb; padding: 20px; border-radius: 8px; }
.vsc-worries-box h3 { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; margin: 0 0 15px 0; }
.vsc-worries-box ul { list-style: none; padding-left: 0; margin: 0; }
.vsc-worries-box li { padding-left: 25px; position: relative; margin-bottom: 10px; }
.vsc-worries-box li::before { content: '▲'; color: #ef4444; position: absolute; left: 0; font-size: 0.8em; transform: rotate(180deg); }
.vsc-worries-box:last-child { background: #f7f9fc; border-color: #eef2f8; }
.vsc-worries-box:last-child li::before { content: '●'; color: #6b7280; transform: none; }
.vsc-solution-link { text-align: center; font-weight: 700; font-size: 1.2rem; margin-top: 20px; }

/* 3. 選ばれる理由 */
.vsc-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); text-align: center; }
.vsc-card-icon { margin-bottom: 15px; /* アイコン画像を設定してください */ }
.vsc-card h4 { font-size: 1.1rem; margin: 0 0 10px 0; }
.vsc-card p { font-size: 0.9rem; margin: 0; }

/* 4. サービス内容 */
.vsc-service-card { border: 1px solid #eef2f8; padding: 25px; border-radius: 12px; }
.vsc-service-card h3 { font-size: 1.3rem; margin: 0 0 15px 0; }
.vsc-service-card h4 { font-size: 1rem; border-bottom: 2px solid #3b82f6; padding-bottom: 5px; margin-top: 20px; }
.vsc-service-card ul { list-style: '✓ '; padding-left: 20px; }
.vsc-service-card li { margin-bottom: 5px; }

/* 5. 料金プラン */
.vsc-pricing-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.vsc-pricing-subtitle { text-align: center; margin: -10px 0 25px 0; }
.vsc-pricing-col h4 { font-size: 1rem; color: #3b82f6; border-bottom: 1px solid #ddd; padding-bottom: 8px; margin-bottom: 15px; }
.vsc-pricing-col:last-child h4 { color: #10b981; }
.vsc-pricing-col dl { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; }
.vsc-pricing-col dt { font-weight: normal; }
.vsc-pricing-col dd { font-weight: bold; }
.vsc-pricing-footer { background: #fffbeb; border-radius: 8px; text-align: center; padding: 15px; margin-top: 20px; font-weight: 500; }

/* 6. お問い合わせ */
.vsc-contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
.vsc-contact-card { display: block; background: #f7f9fc; border: 1px solid #eef2f8; padding: 20px; border-radius: 8px; text-align: center; text-decoration: none; color: inherit; transition: .3s; }
.vsc-contact-card:hover { transform: translateY(-5px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.vsc-contact-card strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
.vsc-contact-card span { font-size: 1.2rem; font-weight: 700; color: #3b82f6; }
.vsc-contact-card small { display: block; font-size: 0.8rem; margin-top: 5px; }
.vsc-form-wrapper { margin: 30px 0; }
.vsc-final-buttons { display: flex; justify-content: center; gap: 20px; }

/* 汎用ボタン */
.vsc-btn { text-decoration: none; padding: 12px 20px; border-radius: 8px; font-weight: 700; text-align: center; display: inline-block; transition: .3s; }
.vsc-btn-yellow { background: #f59e0b; color: #fff; }
.vsc-btn-grey { background: #6b7280; color: #fff; }
.vsc-btn-blue { background: #3b82f6; color: #fff; }
.vsc-btn-green { background: #10b981; color: #fff; }
.vsc-btn-dark { background: #334155; color: #fff; }
.vsc-btn-full { display: block; width: 100%; margin-top: 20px; }
.vsc-btn:hover { opacity: 0.85; }

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .vsc-grid-3, .vsc-contact-methods { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .vsc-grid-2, .vsc-hero-buttons { grid-template-columns: 1fr; }
    .vsc-section-title { font-size: 1.5rem; }
    .vsc-hero-overlay h1 { font-size: 1.8rem; }
}