@charset "UTF-8";

:root{
    --header-top-height: 48px;
}

@media screen and (min-width: 480px) {
    :root{
        --header-top-height: 64px;
    }
}

@media screen and (min-width: 1280px) {
    :root{
        --header-top-height: 76px;
    }
}

/* base.css上書き */
.header-top {
    margin: 0 auto;
    padding: 10px 20px;
    justify-content: space-between;
}

@media screen and (min-width: 480px) {
    .header-top {
        padding: 10px 32px;;
    }
}

@media screen and (min-width: 1280px) {
    .header-top {
        padding: 10px 50px;
    }
}
/* base.css上書き終了 */

.header-text {
    padding: 4px 12px;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 5px;
}

.previous, .next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10vw;
    color: #fff;
    text-decoration: none;
    vertical-align: middle;
    background-color: var(--theme-color);
    border-radius: 5px;
}

.element-top img {
    width: 14vw;
    height: auto;
}

@media screen and (min-width: 480px) {
    .element-top img {
        width: 7vw;
        height: auto;
    }
}

@media screen and (min-width: 1280px) {
    .element-top img {
        width: 5vw;
        height: auto;
    }
}

.element-top-text {
    margin-right: 10px;
}

.hidden {
    display: none;
}