.list__active {
    color: var(--color-main) !important;
}

/* 20231102 追加divに対するstyle */
.header__nav__list__item a {
    padding: 0px 0;
}

/* /20231102 追加divに対するstyle */

.languages_btn {
    background-color: var(--color-red1);
    margin-right: 10px;
    transition: 0.3s;
}

.languages_btn:hover {
    background-color: var(--color-main);
    transition: 0.3s;
}

.languages_btn a {
    color: white !important;
}

.lang_zone {
    position: fixed;
    right: 0;
    padding-top: 100px;
    background-color: var(--color-main);
    text-align: center;
    z-index: 998;
    transition: 0.3s;
    max-width: 300px;
    width: 100%;
}

.lang_zone ul {
    width: 100%;
}

.lang_zone li {
    display: block;
    color: #fff;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    transition: 0.3s;
    width: 100%;
}

.lang_zone li a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
    display: inline-block;
}

.lang_zone li a:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.batsu {
    position: absolute;
    top: 100px;
    left: 5px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .lang_zone {
        padding-top: 80px;
    }

    .batsu {
        top: 80px;
    }
}

@media screen and (min-width: 991px) {
    .pc_none {
        display: none;
    }
}

/* ===============================================
# ここから
=============================================== */
.custom-select {
    position: relative;
    padding: 5px 10px !important;
    background-color: var(--color-red1);
    border: none;
    cursor: pointer;
    margin-right: 25px;
    margin-bottom: 10px;
    width: fit-content;
    margin-left: auto;
    margin: auto 30px;
}

@media screen and (max-width: 1600px) {
    .custom-select {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1366px) {
    .custom-select {
        margin-right: 12px;
    }
}

@media screen and (max-width: 1150px) {
    .custom-select {
        margin-right: 10px;
    }
}

.selected-value {
    color: #fff;
}

.selected-value-container {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: space-between;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
}

.options-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
}

.option {
    padding: 10px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.option:hover {
    background-color: #f2f2f2;
}

/* ===============================================
    #
    =============================================== */
#header {
    height: auto;
    padding: 10px 0;
}

.headerLeft {
    align-items: center;
}

@media screen and (max-width: 990px) {
    #header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-lang {
        flex: 1;
        justify-content: flex-end;
        padding-right: 70px;
    }

    .header-lang .selected-value {
        white-space: nowrap;
    }

    .header-lang .options-container {
        background: #fff;
        padding: 5px;
    }
}
