/* ベーススタイルとリセット */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* 文字色を濃いグレーに */
    background-color: #f4f7f6; /* 背景色を薄いグレーに */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    flex-grow: 1;
}

a {
    color: #007bff; /* リンク色を青に */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ヘッダー */
.site-header {
    background-color: #1a237e; /* 濃いブルーを基調に */
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 15px;
    padding: 0 20px;
}

.company-logo {
    max-height: 80px;
}

.contact-info {
    font-size: 1.1em;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mail-icon {
    vertical-align: middle;
    margin: 0 5px;
}

/* セクション共通 */
.section {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #1a237e;
    font-size: 2em;
    margin-bottom: 25px;
    border-bottom: 3px solid #f9a825; /* アクセントカラーのアンダーライン */
    padding-bottom: 10px;
}

h2 .icon {
    margin-right: 10px;
    color: #f9a825;
}

/* 業務概要のカードレイアウト */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: #1a237e;
    font-size: 1.25em;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
    margin-top: 0;
}

.language-tags span {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1a237e;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
}

.button-link {
    display: inline-block;
    background-color: #f9a825;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.button-link:hover {
    background-color: #f57f17;
    text-decoration: none;
}

/* 経歴のセクション */
.dark-section {
    background-color: #e8eaf6; /* 薄いグレーの背景で区別 */
}

.experience-list, .qualification-list, .bank-list, .link-list {
    list-style: none;
    padding-left: 0;
}

.experience-list li {
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
}

.experience-list li:last-child {
    border-bottom: none;
}

/* その他の活動（コールアウト） */
.callout-section {
    background-color: #fffde7; /* 目を引く薄い黄色 */
    text-align: center;
    border: 2px solid #f9a825;
}

.callout-box {
    padding: 20px;
}

.activity-highlight {
    font-size: 1.5em;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 15px;
}

.ngo-link {
    font-weight: bold;
    color: #f57f17;
    font-size: 1.1em;
}

/* フッター */
.site-footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.site-footer h3 {
    color: #f9a825;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.bank-list li {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.copyright {
    margin-top: 20px;
    font-size: 0.85em;
    color: #bbb;
}

/* レスポンシブ対応（簡易版） */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    .header-content {
        flex-direction: column;
    }
    .media-area {
        display: none; /* スマホでは動画/画像を非表示にしてシンプルに */
    }
    .section {
        padding: 20px;
    }
    h2 {
        font-size: 1.5em;
    }
}