/* ナビゲーション */
.navigation {
    display: flex;
    min-height: 400px;
    background-color: #f8f8f8;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
    gap: 40px;
    padding: 20px 0;
}

/* コンテンツボックスのスタイル設定 */
.navigation > div {
    width: 330px;
    height: 190px;
    background-color: #c4c4c4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 20px;
    font-size: 18px;
    font-weight: normal;
}

/* 動画カテゴリー */
/* コンテナの設定 */
.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* 各アイテムの設定 */
.section-item {
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.section-link {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #ffffff; /* 初期背景 */
    color: inherit;
    padding: 2px 55px;
    border-radius: 5px;
    border: 2px solid transparent; /* デフォルトは透明な枠線 */
    transition: all 0.2s ease;
}

.section-link.active {
    color: #ffffff;
}

.section-link:hover {
    opacity: 0.8;
}

.border-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.border {
    border: 1px solid #4f4f4f;
    width: 80%;
}
