/* experience_programs.css */

/* プログラムナビゲーション */
.program-nav {
    background-color: #f0f5ed;
    border: 2px solid #4c7437;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-nav-title {
    color: #4c7437;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #4c7437;
    padding-bottom: 10px;
}

.program-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-nav-list li {
    margin: 10px;
}

.program-nav-list a {
    display: block;
    color: #4c7437;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #4c7437;
    font-weight: bold;
}

.program-nav-list a:hover {
    background-color: #4c7437;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* プログラムテーブル */
.program-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #ffffff;
}

.program-table th,
.program-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.program-table th {
    background-color: #4c7437;
    color: #fff;
}

.program-table a {
    color: #4c7437;
    text-decoration: none;
}

.program-table a:hover {
    text-decoration: underline;
}

/* プログラムイメージ */
.program-image {
    text-align: center;
    margin-bottom: 20px;
}

.program-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .program-nav-list {
        flex-direction: column;
    }

    .program-nav-list li {
        margin: 5px 0;
    }

    .program-table {
        font-size: 14px;
    }

    .program-table th,
    .program-table td {
        padding: 5px;
    }
}