<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.img-switching-nav {
    display: flex;
    margin-top: 20px;
    background: #f5f5f5;
    align-items: flex-end;
}

.img-switching-nav .img-switching-nav-heading {
    margin: 0;
    padding: 10px;
    border: 0;
    font-size: 1rem;
    flex-basis: 15em;
}

.img-switching-nav .img-switching-nav-heading img {
    width: 300px;
    height: 130px;
    margin: 10px 0 0 0;
}

.img-switching-nav .img-switching-nav-button {
    display: none;
}

.image-anchor-list {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    padding: 0 10px 0 0;
}

.image-anchor-list li {
    margin: 10px;
    flex-basis: 25%;
}

.image-anchor-list li &gt; a,
.image-anchor-list li &gt; a:hover,
.image-anchor-list li &gt; a:visited,
.image-anchor-list li &gt; a:active {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 6px;
    align-items: center;
    text-decoration: none;
    align-items: center;
}

.image-anchor-list li &gt; a &gt; img {
    width: 80px;
    margin: 10px 0 0 0;
}

.image-anchor-list li &gt; a &gt; span {
    height: 2.6em;
    line-height: 2.6em;
    font-weight: bold;
    color: #333333;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.image-anchor-list li &gt; a.current,
.image-anchor-list li &gt; a:hover {
    border: 2px solid #F26289;
}

.image-anchor-list li &gt; a.current {
    pointer-events: none;
}

.image-anchor-list li &gt; a.current::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top-color: #F26289;
}

.image-anchor-list li &gt; a.current::after {
    content: "ただいま表示中";
    position: absolute;
    top: 0;
    left: 50%;
    display: inline-block;
    padding: 0.8em 1em;
    border-radius: 4px;
    background: #F26289;
    color: #fff;
    font-size: 0.8rem;
    white-space: nowrap;
    transform: translate(-50%, calc(-100% - 8px));
}

.image-anchor-list li &gt; a &gt; span i {
    margin-right: 0.5em;
}

.flex {
    display: flex;
}

.flex &gt; div + div {
    margin-left: 20px;
}

.flex-2-8 &gt; div:first-child {
    max-width: 20%;
}

.flex-3-7 &gt; div:first-child {
    max-width: 30%;
}

.flex-5-5 &gt; div:first-child {
    max-width: 50%;
}

.flex &gt; div &gt; img {
    display: block;
    width: 100%;
}

.flex.align-items-center {
    align-items: center;
}

@media screen and (max-width: 480px) {

    .img-switching-nav {
        display: block;
        margin: 20px 10px;
        border: 2px solid #4177DB;
    }

    .img-switching-nav.open {
        border: 0;
        border: 2px solid #f5f5f5;
    }

    .img-switching-nav .img-switching-nav-heading img {
        display: block;
        width: 100%;
    }

    .image-anchor-list {
        display: flex;
        flex-wrap: wrap;
        height: 0;
        padding: 0 5px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s 0s ease-out;
    }

    .img-switching-nav.open .image-anchor-list {
        opacity: 1;
        height: auto;
        max-height: none;
        overflow: visible;
        padding: 5px;
    }

    .image-anchor-list &gt; li {
        flex-basis: calc(50% - 20px);
    }

    .img-switching-nav .img-switching-nav-button {
        display: block;
        padding: 0.5em;
        background: #4177DB;
        color: #fff;
        text-align: center;
        font-size: 0.9rem;
    }

    .img-switching-nav.open .img-switching-nav-button {
        display: none;
    }

    .img-switching-nav-button i {
        margin: 0 0.5em;
    }

    .sp-flex-reject {
        display: block;
    }

    .flex.sp-flex-reject &gt; div {
        max-width: none;
        margin: 10px;
        padding: 0;
    }
}</pre></body></html>