/* search */


.bread {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.bread a {
    text-decoration: underline;
}

@media screen and (max-width:640px) {
    .bread {
        text-align: left;
        font-size: 1.2rem;
    }
}

.form-search {
    padding: 0 20px;
    max-width: 1240px;
    margin: 30px auto 0;
}

@media screen and (min-width:641px) {
    .form-search {
        padding: 0 20px;
        max-width: 1240px;
        margin: 60px auto 0;
    }

}

.form-search-head {
    padding: 0.5em 1em;
    letter-spacing: 0;
}

.form-search-box {
    position: relative;
}

.form-search-box-in input {
    display: none;
}

.form-search-box-accr {
    padding: 0.5em 0.8em;
    min-width: 150px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: opacity .3s;
}

.form-search-box-accr:hover {
    opacity: 0.7;
}

.form-search-box-accr i {
    position: relative;
    background-color: #F2F2F2;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.form-search-box-accr i::before,
.form-search-box-accr i::after {
    position: absolute;
    display: block;
    content: '';
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-search-box-accr i::before {
    width: 8px;
    height: 1px;
}

.form-search-box-accr i::after {
    width: 1px;
    height: 8px
}


@media screen and (max-width:960px) {
    .form-search-box.active .form-search-box-accr i::after {
        display: none;
    }
}

.form-search-box-in {
    display: none;
    position: absolute;
    z-index: 3;
    background: #fff;
    border: solid 1px #ccc;
    width: 120%;
    padding: 5px;
    letter-spacing: -0.005em;
}

.form-search-box-in li {
    text-align: left;
}

.form-search-box-in li+li {
    border-top: dotted 1px #A5A5A5;
}

.form-search-box-in li label {
    display: block;
    width: 100%;
    padding: 0.8em 0.2em;
    font-size: 1.2rem;
}

.form-search-res li span {
    display: flex;
    padding: 0.5em 1em;
    justify-content: space-between;
}

.res-serch li span i{
    position: relative;
    width: 12px;
    height: 12px;
    display: block;
    content: '';
    cursor: pointer;
}

.res-serch li span i::before,
.res-serch li span i::after{
    position: absolute;
    display: block;
    content: '';
    width: 12px;
    height: 1px;
    top: 6px;
    background-color: #000;
}

.res-serch li span i::before{
    transform: rotate(45deg);
}

.res-serch li span i::after{
    transform: rotate(-45deg);
}


@media screen and (min-width:641px) {

    .form-search form {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .form-search-wrap {
        display: flex;
        align-items: center;
    }

    .form-search-head {
        background: #000000;
        color: #fff;
    }

    .form-search-box+.form-search-box {
        margin-left: 10px;
    }

    .form-search-res {
        margin-top: 10px;
        display: flex;
    }

    .form-search-res li {
        background: #F2F2F2;
        border-radius: 1000px;
    }

    .form-search-res li span {
        background: #F2F2F2;
        border-radius: 1000px;
        gap: 20px;
    }

    .form-search-res li+li {
        margin: 0 5px;
    }
}


@media screen and (min-width:1201px) {

    .form-search form {
        justify-content: space-between;
        flex-direction: row;
    }

}

@media screen and (max-width:960px) {

    .form-search-wrap {
        position: relative;
        padding-top: 40px;
    }

    .form-search-head {
        position: absolute;
        top: 0;
        width: 100%;
        max-width: 240px;
    }

    .form-search-box-accr {
        min-width: 120px;
    }

}


@media screen and (max-width:640px) {

    .form-search-head {
        background: #f2f2f2;
        width: calc(100vw - 40px);
        max-width: 10000px;
    }

    .form-search-block {
        display: flex;
    }

    .form-search-wrap {
        width: 42%;
    }

    .form-search-res {
        margin-top: 40px;
        width: 52%;
    }

    .form-search-box-accr {
        height: 32px;
    }

    .form-search-res li {
        height: 32px;
        text-align: left;
        display: flex;
        align-items: center;
    }
    
    .form-search-res li span{
        width: 100%;
        padding-right: 0;
    }

    .form-search-box-in {
        width: calc(100vw - 40px);
    }

    .form-search-block+.form-search-block {
        margin-top: 20px;
    }

}



/* 共通部分　調整 */

.collectionArea {
    border-top: 0;
}

.collectionArea .MainTitle,
.collectionArea p {
    display: none;
}

.collectionList {
    grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 961px) {
    .collectionArea {
        display: none !important;
    }

    .storeArea {
        margin-bottom: 0 !important;
    }

    .storeBlock {
        width: 100% !important;
        max-width: 10000px !important;
    }

    .fs-l-main {
        margin-bottom: 0 !important;
    }

    .footerArea {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}