@charset "utf-8";

/**
 * スマホ用設定
 */
@media ( max-width: 768px ) {

    html {
        scroll-padding-top: 120px;
    }

    #ws-rental-archive {
        margin: 0 auto;
        padding: 0 0 12.0vw;
        width: 90%;
    }
    #ws-rental-archive h1 {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0 0.5em;
        align-items: center;
        justify-content: flex-start;
        font-weight: 700;
        text-align: left;
    }
    #ws-rental-archive h1 span:nth-child(1){
        color: #0095e2;
        font-size: 6.0vw;
    }
    #ws-rental-archive h1 span:nth-child(2) {
        color: #222;
        font-size: 4.0vw;
    }
    #ws-rental-archive h2 {
        position: relative;
        margin: 8.0vw auto 4.0vw;
        padding: 0 0 0 1.5em;;
        width: 100%;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: left;
    }
    #ws-rental-archive h2::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        left: 0;
        display: block;
        margin: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        border: 1px solid #0095e2;
        border-radius: 100%;
    }
    #ws-rental-archive h2::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        left: 0;
        display: block;
        margin: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #0095e2;
        border: 1px solid #0095e2;
        border-radius: 100%;
        transform-origin: center;
        transform: scale( 0.5, 0.5 );
    }

    .archive-wrap {
        display: flex;
        flex-direction: column;
    }

    .ws-sp-btns {
        margin: 6.0vw auto;
        padding: 0;
        width: 100%;
    }
    .ws-sp-btns .ws-sp-btn {
        margin: -1px auto 0;
        padding: 10px;
        border: 1px solid #eaeaea;
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .ws-sp-btns .ws-sp-btn span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #000;
        font-size: 3.2vw;
        font-weight: 400;
        text-decoration: none;
        gap: 0 10px;
    }
    .ws-sp-btns .ws-sp-btn span:nth-child(1)::before {
        content: "";
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .ws-sp-btns .ws-sp-btn:nth-child(1) span:nth-child(1)::before {
        background: url(../images/icon-snow.svg) no-repeat center / contain;
    }
    .ws-sp-btns .ws-sp-btn:nth-child(2) span:nth-child(1)::before {
        background: url(../images/icon-flag.svg) no-repeat center / contain;
    }
    .ws-sp-btns .ws-sp-btn:nth-child(3) span:nth-child(1)::before {
        background: url(../images/icon-gear.svg) no-repeat center / contain;
    }
    .ws-sp-btns .ws-sp-btn span:nth-child(2) {
        color: #0095e2;
    }
    .ws-sp-btns .ws-sp-btn span:nth-child(2)::after {
        content: "";
        width: 0.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 1px solid #0095e2;
        border-bottom: 1px solid #0095e2;
        rotate: -45deg;
    }

    .ws-form {
        margin: 0 auto;
        border-top: 1px solid #ccc;
        padding: 4.0vw 0 0;
        order: 3;
    }

    #ws-form {
        margin: 0 auto;
        padding: 0 0 4.0vw;
        width: 100%;
    }

    #ws-form .ws-rental-archive-series-flex {
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2.0vw 3.0vw;
    }
    #ws-form .ws-rental-archive-series-item {
        position: relative;
        width: calc( 50% - 1.8vw );
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"] ~ .ws-rental-archive-series-label {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        height: 100%;
        font-size: 3.6vw;
        font-family: inherit;
        background: #fff;
        border: 2px solid #dcdcdc;
        border-radius: 3px;
        cursor: pointer;
        transition: bakcground 0.3s ease-out, border 0.3s ease-out;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"]:checked ~ .ws-rental-archive-series-label {
        background: #ffe;
        border: 2px solid #0095e2;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        position: absolute;
        content: "";
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: calc( 100% - 2.0em );
    }
    #ws-form .ws-rental-archive-series-item:nth-child(1) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series01.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(2) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series02.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(3) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series03.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(4) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series04.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(5) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series05.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(6) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series06.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-scene-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.0vw 2.0vw;
    }
    #ws-form .ws-rental-archive-scene-item {
        position: relative;
        width: max-content;
        height: auto;
    }
    #ws-form .ws-rental-archive-scene-item input[type="checkbox"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #ws-form .ws-rental-archive-scene-item input[type="checkbox"] ~ .ws-rental-archive-scene-label {
        position: relative;
        display: block;
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        height: auto;
        font-size: 3.6vw;
        font-family: inherit;
        line-height: 1.0;
        background: #fff;
        border: 2px solid #dcdcdc;
        border-radius: 3px;
        cursor: pointer;
        transition: bakcground 0.3s ease-out, border 0.3s ease-out;
    }
    #ws-form .ws-rental-archive-scene-item input[type="checkbox"]:checked ~ .ws-rental-archive-scene-label {
        background: #ffe;
        border: 2px solid #0095e2;
    }

    #ws-form .ws-rental-archive-kodawari-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4.0vw 0;
    }
    #ws-form .ws-rental-archive-kodawari-item {
        position: relative;
        margin: 0;
        padding: 0;
        width: max-content;
        height: auto;
    }
    #ws-form .ws-rental-archive-kodawari-item:nth-child(1) {
        width: 100%;
    }
    #ws-form .ws-rental-archive-kodawari-item:nth-child(2) {
        padding-right: 4.0vw;
    }
    #ws-form .ws-rental-archive-kodawari-item:nth-child(3) {
        border-left: 1px solid #dcdcdc;
        padding-left: 4.0vw;
    }
    #ws-form .ws-rental-archive-kodawari-item label {
        display: block;
        margin: 0 0 0.5rem;
        font-size: 3.6vw;
        font-weight: 700;
    }
    #ws-form .ws-rental-archive-memo {
        display: block;
        margin: 0 0 0.5rem;
        padding: 0.5em;
        font-size: 3.6vw;
        font-weight: 400;
        background: #eff2f4;
    }
    #ws-form :is(input[type="number"],select) {
        display: inline-block;
        margin: 0;
        padding: 0.2em 0.5em;
        font-size: 3.6vw;
        font-family: inherit;
        background: #fff;
        border: 1px solid #dcdcdc;
        border-radius: 1.0vw;
        box-shadow: 1px 1px 2px rgba( 0, 0, 0, 0.4 );
        cursor: pointer;
    }
    #ws-form input[type="number"] {
        width: 8.0em;
    }

    #ws-rental-archive .ws-archive-btns {
        margin: 8.0vw 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
    }
    #ws-rental-archive .ws-archive-btns button[type="submit"] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0em;
        margin: 0;
        padding: 0.5em 2.0em;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        font-family: inherit;
        background: #2996d9;
        border: 1px solid #2996d9;
        border-radius: 4.0em;
        cursor: pointer;
    }
    #ws-rental-archive .ws-archive-btns button[type="submit"]::before {
        display: block;
        content: "";
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-search.svg) no-repeat center / contain;
    }
    #ws-rental-archive .ws-archive-btns button[type="button"],
    #ws-rental-archive .ws-archive-btns button[type="reset"] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0em;
        margin: 0;
        padding: 0.5em 2.0em;
        color: #2996d9;
        font-size: 3.6vw;
        font-weight: 500;
        font-family: inherit;
        background: #fff;
        border: 1px solid #2996d9;
        border-radius: 4.0em;
        cursor: pointer;
    }
    #ws-rental-archive .ws-archive-btns button[type="button"]::after,
    #ws-rental-archive .ws-archive-btns button[type="reset"]::after {
        display: block;
        content: "";
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #2996d9;
        clip-path: polygon( 5% 0%, 50% 45%, 95% 0, 100% 5%, 55% 50%, 100% 95%, 95% 100%, 50% 55%, 5% 100%, 0 95%, 45% 50%, 0% 5% );
    }

    .archive-flex {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        order: 2;
    }
    .archive-contents {
        margin: 0 auto;
        padding: 4.0vw 0 0;
        width: 100%;
    }
    .ws-sidebar {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .archive-box {
        margin: 0 auto;
        padding: 4.0vw 5%;
        width: 100%;
    }
    .archive-box + .archive-box {
        border-top: 1px solid #ccc;
    }
    .archive-box .date {
        margin: 0 auto;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
    }
    .archive-box .title {
        display: block;
        margin: 1.0em auto 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
    }

    #ws-archive-list {
        margin: 0 auto;
        padding: 4.0vw 0;
        width: 100%;
        border-top: 1px solid #dcdcdc;
    }

    .ws-rental-archive-max-count {
        margin: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: left;
    }

    .page-info {
        margin: 8.0vw auto 0;
        width: 90%;
        padding: 0;
        display: grid;
        align-items: center;
        grid-template-columns: 1fr;
    }
    .page-info .page-pos {
        margin: 0;
        width: 100%;
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
    }
    .page-info .page-numbers {
        margin: 0;
        padding: 4.0vw 0 8.0vw;
        width: 100%;
        list-style: none;
        border: 0;
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 1.0vw;
    }
    .page-info ul.page-numbers li {
        margin: 0;
        padding: 0;
        width: 2.0em;
        height: 2.0em;
        font-size: 3.6vw;
        list-style: none;
    }
    .page-info ul.page-numbers li .page-numbers {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        list-style: none;
        color: #222;
        font-size: 3.6vw;
        font-weight: 500;
        line-height: 1.0;
        background: #eff2f4;
        border-radius: 1.0vw;
        display: grid;
        place-items: center;
        text-decoration: none;
        overflow: hidden;
    }
    .page-info ul.page-numbers li .page-numbers.current {
        color: #fff;
        background: #0095e2;
    }
    .page-info ul.page-numbers li .page-numbers.next {
        width: 2.0em;
        background: transparent;
    }
    .page-info ul.page-numbers li .page-numbers.prev {
        width: 2.0em;
        background: transparent;
    }
    .page-info ul.page-numbers li .page-numbers.dots {
        width: 2.0em;
        background: transparent;
    }

    .custom-post-conditions {
        margin: 2.0vw 0 0;
        padding: 2.0vw 4.0vw;
        width: 100%;
        background: #eff2f4;
        border-top: 1px solid #dcdcdc;
    }
    .custom-post-conditions .custom-post-conditions-head {
        font-size: 3.2vw;
        font-weight: 500;
        line-height: 1.0;
    }
    .custom-post-conditions .custom-post-conditions-flex {
        margin: 2.0vw 0 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 2.0vw 2.0vw;
    }
    .custom-post-conditions .custom-post-conditions-cond {
        display: block;
        margin: 0;
        padding: 1.0vw 2.0vw 1.0vw 4.0vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
        background: #fff;
        border: 1px solid #dcdcdc;
        border-radius: 2px;
    }
    .custom-post-conditions .custom-post-conditions-cond::after {
        content: "";
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #8c8c8c;
        clip-path: polygon( 5% 0%, 50% 45%, 95% 0, 100% 5%, 55% 50%, 100% 95%, 95% 100%, 50% 55%, 5% 100%, 0 95%, 45% 50%, 0% 5% );
    }
    .custom-post-conditions .custom-post-conditions-cond span:nth-child(1) {
        color: #8c8c8c;
        font-size: 2.6vw;
        font-weight: 500;
    }
    .custom-post-conditions .custom-post-conditions-cond span:nth-child(2) {
        color: #3e3e3e;
        font-size: 2.8vw;
        font-weight: 500;
    }

    .custom-post-list {
        margin: 4.0vw auto 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.0vw 2.0vw;
    }
    .custom-post-list .rental-item {
        display: block;
        width: 100%;
        color: #333;
        text-decoration: none;
        border: 1px solid #dcdcdc;
        border-radius: 1.0vw;
    }
    .custom-post-list .rental-item .rental-pic {
        margin: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 380 / 280;
    }
    .custom-post-list .rental-item .rental-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .custom-post-list .rental-item .rental-pic:empty {
        background: #ccc;
    }
    .custom-post-list .rental-item .tags {
        margin: 1.0vw 0 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 1.0vw 1.0vw;
    }
    .custom-post-list .rental-item .tags > a {
        margin: 0;
        padding: 0.6em 0.8em;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 400;
        line-height: 1.0;
    }
    .custom-post-list .rental-item .rental-info {
        padding: 2.0vw;
        background: #eff2f4;
        border-radius: 0 0 1.0vw 1.0vw;
    }
    .custom-post-list .rental-item .title {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 2.8vw;
        font-weight: 600;
        text-decoration: none;
    }
    .custom-post-list .rental-item .lineup {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 2.4vw;
        font-weight: 400;
        text-decoration: none;
    }
    .custom-post-list .rental-item .detail {
        position: relative;
        margin: 2.0vw 0 0;
        padding: 2.0vw 0 0;
        width: 100%;
        font-size: 2.4vw;
        font-weight: 400;
        text-decoration: none;
        border-top: 1px solid #dcdcdc;
    }
    .custom-post-list .rental-item .detail::before {
        position: absolute;
        content: "";
        top: calc( 50% + 1.0vw - 0.75em );
        left: calc( 5.5em + 1.0vw );
        width: 1.5em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    .custom-post-list .rental-item .detail::after {
        position: absolute;
        content: "";
        top: calc( 50% + 0.9vw - 0.3em );
        left: calc( 5.5em + 1.0vw + 0.3em );
        width: 0.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 1px solid #0095e2;
        border-bottom: 1px solid #0095e2;
        rotate: -45deg;
    }
    .custom-post-list .rental-item .info {
        display: inline-block;
        margin: 0 1.0em 0 0;
        padding: 0;
        font-size: 2.8vw;
        font-weight: 400;
    }

    #rental-basket-goto {
        position: fixed;
        right: 2.0vw;
        bottom: 2.0vw;
        margin: 0;
        padding: 2.0vw 4.0vw;
        width: max-content;
        background: linear-gradient( to right, #4aa0df, #204e9f );
        box-shadow: 0 0 2.0vw #0008;
        border-radius: 10.0rem;
        z-index: 10;
    }
    #rental-basket-goto > a {
        display: block;
        color: #fff;
        font-size: 3.2vw;
        text-align: center;
        text-decoration: none;
    }

}


/**
 * PC用設定
 */
@media ( min-width: 768.01px ) {

    #ws-rental-archive {
        margin: 0 auto;
        padding: 0 0 80px;
        width: 90%;
        max-width: 1200px;
    }
    #ws-rental-archive h1 {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0 0.5em;
        align-items: center;
        justify-content: flex-start;
        font-weight: 700;
        text-align: left;
    }
    #ws-rental-archive h1 span:nth-child(1){
        color: #0095e2;
        font-size: 36px;
    }
    #ws-rental-archive h1 span:nth-child(2) {
        color: #222;
        font-size: 24px;
    }
    #ws-rental-archive h2 {
        position: relative;
        margin: 30px auto 15px;
        padding: 0 0 0 1.5em;;
        width: 100%;
        font-size: 20px;
        font-weight: 700;
        text-align: left;
    }
    #ws-rental-archive h2::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        left: 0;
        display: block;
        margin: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        border: 1px solid #0095e2;
        border-radius: 100%;
    }
    #ws-rental-archive h2::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        left: 0;
        display: block;
        margin: 0;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #0095e2;
        border: 1px solid #0095e2;
        border-radius: 100%;
        transform-origin: center;
        transform: scale( 0.5, 0.5 );
    }

    .archive-wrap {
    }

    .ws-sp-btns {
        display: none;
    }

    #ws-form {
        margin: 0 auto;
        padding: 0 0 40px;
        width: 100%;
    }
    #ws-form .ws-rental-archive-series-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 20px 20px;
    }
    #ws-form .ws-rental-archive-series-item {
        position: relative;
        width: calc( ( 100% - 20px * 5 - 2px * 6 ) / 6 );
        height: auto;
        aspect-ratio: 1 / 1;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"] ~ .ws-rental-archive-series-label {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        height: 100%;
        font-size: 16px;
        font-family: inherit;
        background: #fff;
        border: 2px solid #dcdcdc;
        border-radius: 3px;
        cursor: pointer;
        transition: bakcground 0.3s ease-out, border 0.3s ease-out;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"]:checked ~ .ws-rental-archive-series-label {
        background: #ffe;
        border: 2px solid #0095e2;
    }
    #ws-form .ws-rental-archive-series-item input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        position: absolute;
        content: "";
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: calc( 100% - 2.0em );
    }
    #ws-form .ws-rental-archive-series-item:nth-child(1) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series01.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(2) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series02.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(3) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series03.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(4) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series04.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(5) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series05.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-series-item:nth-child(6) input[type="checkbox"] ~ .ws-rental-archive-series-label::before {
        background: url(../images/archive-rental-series06.png) no-repeat center / contain;
    }
    #ws-form .ws-rental-archive-scene-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px 15px;
    }
    #ws-form .ws-rental-archive-scene-item {
        position: relative;
        width: max-content;
        height: auto;
    }
    #ws-form .ws-rental-archive-scene-item input[type="checkbox"] {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    #ws-form .ws-rental-archive-scene-item input[type="checkbox"] ~ .ws-rental-archive-scene-label {
        position: relative;
        display: block;
        margin: 0;
        padding: 0.5em 1.0em;
        width: 100%;
        height: auto;
        font-size: 16px;
        font-family: inherit;
        line-height: 1.0;
        background: #fff;
        border: 2px solid #dcdcdc;
        border-radius: 3px;
        cursor: pointer;
        transition: bakcground 0.3s ease-out, border 0.3s ease-out;
    }
    #ws-form .ws-rental-archive-scene-item input[type="checkbox"]:checked ~ .ws-rental-archive-scene-label {
        background: #ffe;
        border: 2px solid #0095e2;
    }

    #ws-form .ws-rental-archive-kodawari-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 20px 0;
    }
    #ws-form .ws-rental-archive-kodawari-item {
        position: relative;
        margin: 0;
        padding: 0 20px;
        width: max-content;
        height: auto;
    }
    #ws-form .ws-rental-archive-kodawari-item:nth-child(1) {
        padding-left: 0;
    }
    #ws-form .ws-rental-archive-kodawari-item label {
        display: block;
        margin: 0 0 0.5rem;
        font-size: 16px;
        font-weight: 700;
    }
    #ws-form .ws-rental-archive-memo {
        display: block;
        margin: 0 0 0.5rem 1.0rem;
        padding: 0.5em;
        font-size: 16px;
        font-weight: 400;
        background: #eff2f4;
    }
    #ws-form :is(input[type="number"],select) {
        display: inline-block;
        margin: 0;
        padding: 0.2em 0.5em;
        font-size: 16px;
        font-family: inherit;
        background: #fff;
        border: 1px solid #dcdcdc;
        border-radius: 3px;
        box-shadow: 1px 1px 2px rgba( 0, 0, 0, 0.4 );
        cursor: pointer;
    }
    #ws-form input[type="number"] {
        width: 8.0em;
    }

    #ws-rental-archive .ws-archive-btns {
        margin: 30px 0 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 30px;
    }
    #ws-rental-archive .ws-archive-btns button[type="submit"] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0em;
        margin: 0;
        padding: 0.5em 2.0em;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        background: #2996d9;
        border: 1px solid #2996d9;
        border-radius: 4.0em;
        cursor: pointer;
    }
    #ws-rental-archive .ws-archive-btns button[type="submit"]::before {
        display: block;
        content: "";
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-search-white.svg) no-repeat center / contain;
    }
    #ws-rental-archive .ws-archive-btns button[type="button"],
    #ws-rental-archive .ws-archive-btns button[type="reset"] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0em;
        margin: 0;
        padding: 0.5em 2.0em;
        color: #2996d9;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        background: #fff;
        border: 1px solid #2996d9;
        border-radius: 4.0em;
        cursor: pointer;
    }
    #ws-rental-archive .ws-archive-btns button[type="button"]::after,
    #ws-rental-archive .ws-archive-btns button[type="reset"]::after {
        display: block;
        content: "";
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #2996d9;
        clip-path: polygon( 5% 0%, 50% 45%, 95% 0, 100% 5%, 55% 50%, 100% 95%, 95% 100%, 50% 55%, 5% 100%, 0 95%, 45% 50%, 0% 5% );
    }

    #ws-rental-archive .archive-flex {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .archive-contents {
        margin: 0 auto;
        padding: 40px 0 0;
        width: 100%;
    }
    .ws-sidebar {
        margin: 0;
        padding: 0;
    }

    .archive-box {
        margin: 0 auto;
        padding: 20px 5%;
        width: 100%;
    }
    .archive-box + .archive-box {
        border-top: 1px solid #ccc;
    }
    .archive-box .date {
        margin: 0 auto;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
    }
    .archive-box .title {
        display: block;
        margin: 1.0em auto 0;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
    }

    #ws-archive-list {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
        border-top: 1px solid #dcdcdc;
    }

    .ws-rental-archive-max-count {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        text-align: left;
    }

    .page-info {
        margin: 40px auto 0;
        width: 90%;
        max-width: 1200px;
        padding: 0;
        display: grid;
        align-items: center;
        grid-template-columns: 1fr;
    }
    .page-info .page-pos {
        margin: 0;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
    }
    .page-info .page-numbers {
        margin: 0;
        padding: 40px 0 80px;
        width: 100%;
        list-style: none;
        border: 0;
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 5px;
    }
    .page-info ul.page-numbers li {
        margin: 0;
        padding: 0;
        width: 2.0em;
        height: 2.0em;
        font-size: 18px;
        list-style: none;
    }
    .page-info ul.page-numbers li .page-numbers {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        list-style: none;
        color: #222;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.0;
        background: #eff2f4;
        border-radius: 2px;
        display: grid;
        place-items: center;
        text-decoration: none;
        overflow: hidden;
    }
    .page-info ul.page-numbers li .page-numbers.current {
        color: #fff;
        background: #0095e2;
    }
    .page-info ul.page-numbers li .page-numbers.next {
        width: 2.0em;
        background: transparent;
    }
    .page-info ul.page-numbers li .page-numbers.prev {
        width: 2.0em;
        background: transparent;
    }
    .page-info ul.page-numbers li .page-numbers.dots {
        width: 2.0em;
        background: transparent;
    }

    .custom-post-conditions {
        margin: 10px 0 0;
        padding: 10px 20px;
        width: 100%;
        background: #eff2f4;
        border-top: 1px solid #dcdcdc;
    }
    .custom-post-conditions .custom-post-conditions-head {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.0;
    }
    .custom-post-conditions .custom-post-conditions-flex {
        margin: 10px 0 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 10px 10px;
    }
    .custom-post-conditions .custom-post-conditions-cond {
        display: block;
        margin: 0;
        padding: 5px 10px 5px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 10px;
        background: #fff;
        border: 1px solid #dcdcdc;
        border-radius: 2px;
    }
    .custom-post-conditions .custom-post-conditions-cond::after {
        content: "";
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #8c8c8c;
        clip-path: polygon( 5% 0%, 50% 45%, 95% 0, 100% 5%, 55% 50%, 100% 95%, 95% 100%, 50% 55%, 5% 100%, 0 95%, 45% 50%, 0% 5% );
    }
    .custom-post-conditions .custom-post-conditions-cond span:nth-child(1) {
        color: #8c8c8c;
        font-size: 12px;
        font-weight: 500;
    }
    .custom-post-conditions .custom-post-conditions-cond span:nth-child(2) {
        color: #3e3e3e;
        font-size: 14px;
        font-weight: 500;
    }

    .custom-post-list {
        margin: 40px auto 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 40px 30px;
    }
    .custom-post-list .rental-item {
        display: block;
        width: 100%;
        color: #333;
        text-decoration: none;
        border: 1px solid #dcdcdc;
        border-radius: 5px;
    }
    .custom-post-list .rental-item .rental-pic {
        margin: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 380 / 280;
    }
    .custom-post-list .rental-item .rental-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .custom-post-list .rental-item .rental-pic:empty {
        background: #ccc;
    }
    .custom-post-list .rental-item .tags {
        margin: 12px 0 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px 8px;
    }
    .custom-post-list .rental-item .tags > a {
        margin: 0;
        padding: 0.6em 0.8em;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.0;
    }
    .custom-post-list .rental-item .rental-info {
        padding: 10px;
        background: #eff2f4;
        border-radius: 0 0 5px 5px;
    }
    .custom-post-list .rental-item .title {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
    }
    .custom-post-list .rental-item .lineup {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 12px;
        font-weight: 400;
        text-decoration: none;
    }
    .custom-post-list .rental-item .detail {
        position: relative;
        margin: 10px 0 0;
        padding: 10px 0 0;
        width: 100%;
        font-size: 12px;
        font-weight: 400;
        text-decoration: none;
        border-top: 1px solid #dcdcdc;
    }
    .custom-post-list .rental-item .detail::before {
        position: absolute;
        content: "";
        top: calc( 50% + 6px - 0.75em );
        left: calc( 5.5em + 10px );
        width: 1.5em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    .custom-post-list .rental-item .detail::after {
        position: absolute;
        content: "";
        top: calc( 50% + 5.5px - 0.3em );
        left: calc( 5.5em + 9px + 0.45em );
        width: 0.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 1px solid #0095e2;
        border-bottom: 1px solid #0095e2;
        rotate: -45deg;
    }
    .custom-post-list .rental-item .info {
        display: inline-block;
        margin: 0 1.0em 0 0;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
    }

    #rental-basket-goto {
        position: fixed;
        right: 8px;
        bottom: 8px;
        margin: 0;
        padding: 10px 20px;
        width: max-content;
        background: linear-gradient( to right, #4aa0df, #204e9f );
        box-shadow: 0 0 8px #0008;
        border-radius: 10.0rem;
        z-index: 10;
    }
    #rental-basket-goto > a {
        display: block;
        color: #fff;
        font-size: 16px;
        text-align: center;
        text-decoration: none;
    }

}


/**
 * 最大設定
 */
@media ( min-width: 1200px ) {
    .custom-post-list {
        grid-template-columns: repeat( 4, 1fr );
    }
}
