@charset "utf-8";


.readWr {
    padding: 13rem 0 0;
}

.readAr {
    width: 100%;
    max-width: 84rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.readTxt {
    font-size: 1.8rem;
    line-height: 2.22;
    letter-spacing: 0.05em;
    text-align: center;
}

.readTxt:nth-of-type(n + 2) {
    margin: 3rem 0 0;
}

.voWr {
    padding: 10rem 0 17rem;
}

.voAr {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
    padding: 0 2rem;
}

#post {
    pointer-events: none;
    margin: -10rem 0 0;
    padding: 10rem 0 0;
}

.voCateBx {
    display: flex;
    justify-content: center;
    gap: 4rem 6.5rem;
    flex-wrap: wrap;
}

.voCateBx .link a {
    width: 30rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    border-radius: 100vmax;
    border: 1px solid var(--primary);
    background: var(--base-bg-color);
    color: var(--primary);
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.voCateBx .link a:hover,
.voCateBx .link.active a {
    background: var(--primary);
    color: var(--base-bg-color);
}


.voBx {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 4rem 2rem;
    margin: 10rem 0 0;
    min-width: 0;
}

.voItem {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 45rem;
}

.voImg {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.voImg>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voImg>img+.noImg {
    display: none;
}

.voTit {
    margin: 2rem 0 0;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
}

.voTxt {
    margin: 2rem 0 0;
    font-size: 1.8rem;
    line-height: 1.67;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    /* ここに表示したい行数を指定（4 または 5） */
    overflow: hidden;
}

.voBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0 auto;
    width: 100%;
    max-width: 12rem;
    height: 2.7rem;
    border-radius: 100vmax;
    border: 1px solid var(--primary);
    background: var(--primary);
    transition: all .3s;
}

.voItemBx:hover .voBtn {
    background: var(--base-bg-color);
}

.voItemBx:hover .voBtn>p {
    color: var(--primary);
}


.voBtn p {
    color: var(--base-bg-color);
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all .3s;
}

.voBtn:hover p {
    color: var(--primary);
}

.resultsZero {
    margin: 4rem auto 0;
    text-align: center;
}

/* ------------------------詳細ページ------------------------ */

.voDtlTit {
    padding: 0 0 2.5rem 0;
    border-bottom: 1px solid var(--base-font-color);
    font-size: 3.5rem;
    color: var(--primary);
    font-family: var(--font-family01);
    letter-spacing: 0.1em;
    line-height: 1.57;
    font-weight: 400;
}

.voDtlSliderBx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 88rem;
    margin: 3rem auto 0;
}

.voDtlSliderBxIn {
    width: calc(100% - 9.6rem);
    max-width: min(100%, 80rem);
    margin: 0 auto;
}

.voDtlSliderItemMain img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.voDtlSliderBx .swiper-button-next,
.voDtlSliderBx .swiper-button-prev {
    position: static;
    width: 2rem;
    margin: -25rem 0 0;
    color: var(--primary);
    transition: all .3s;
}


.swiper-button-next:hover,
.swiper-button-prev:hover {
    filter: brightness(1.15);
}

.voDtlSliderBx .swiper-button-next:after,
.voDtlSliderBx .swiper-button-prev:after {
    font-size: 3rem;
}

.thumbnail {
    margin: 2rem 0 0;
}

.voDtlSliderItem {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.thumbnail .voDtlSliderItem {
    cursor: pointer;
    transition: all .3s;
}

.thumbnail .voDtlSliderItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail .voDtlSliderItem:hover {
    filter: brightness(.8);
}

.thumbnail .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .8rem;
}

.voDtlTxt {
    margin: 4rem 0 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.voDtlBtnBx {
    margin: 5rem auto 0;
}

.voDtlBtnBx a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 30rem;
    height: 6rem;
    margin: 0 auto;
    border-radius: 100vmax;
    background: var(--primary);
    color: var(--base-bg-color);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.45;
    border: 1px solid var(--primary);
    transition: all .3s;
}

.voDtlBtnBx a:hover {
    background: var(--base-bg-color);
    color: var(--primary);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1200px) {

    .voBx {
        gap: 8rem 16rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1024px) {

    .voBx {
        gap: 6rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=768px) {

    .readWr {
        padding: 8rem 0 0;
    }

    .voWr {
        padding: 6rem 0 8rem;
    }

    .voCateBx {
        gap: 2rem;
    }

    .voCateBx .link a {
        width: 26rem;
        height: 5rem;
        font-size: 1.8rem;
    }

    .voTit {
        margin: 1.5rem 0 0;
        font-size: 1.8rem;
    }

    .voTxt {
        margin: 1.5rem 0 0;
        font-size: 1.6rem;
    }

    .voBtn {
        margin: 1.5rem 0 0 auto;
    }

    .voBx {
        margin: 5rem 0 0;
    }

    .readTxt {
        font-size: 1.6rem;
        text-align: left;
    }

    .readTxt:nth-of-type(n + 2) {
        margin: 2rem 0 0;
    }

    /* ------------------------詳細ページ------------------------ */

    .voDtlTit {
        padding: 0 0 2rem 0;
        font-size: 2.4rem;
    }

    .voDtlSliderBx {
        margin: 2rem auto 0;
    }

    .voDtlTxt {
        margin: 2rem 0 0;
        font-size: 1.6rem;
    }

    .voDtlSliderBx .swiper-button-next,
    .voDtlSliderBx .swiper-button-prev {
        margin: -20rem 0 0;
    }

    .voDtlBtnBx {
        margin: 3rem auto 0;
    }

    .voDtlBtnBx a {
        max-width: 28rem;
        height: 5.2rem;
        font-size: 1.8rem;
    }

    .readWr {
        padding: 8rem 0 0;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=576px) {

    .voCateBx {
        gap: 10px 0;
        justify-content: space-around;
    }

    .voCateBx .link {
        width: 48%;
    }

    .voCateBx .link a {
        width: 100%;
        font-size: 1.5rem;
    }

    .voBx {
        gap: 3rem 1.5rem;
    }

    .voDtlSliderBx .swiper-button-next,
    .voDtlSliderBx .swiper-button-prev {
        width: 2rem;
        margin: -10rem 0 0;
    }

    .voDtlSliderBx .swiper-button-next:after,
    .voDtlSliderBx .swiper-button-prev:after {
        font-size: 2rem;
    }


    .voDtlSliderBxIn {
        width: calc(100% - 5.5rem);
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */