/*ローディング関連*/        
#loading-screen {
    /*position: absolute;
    top: 0%;
    left: 0%;*/
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 9999;
}

.container.hidden {
    opacity: 0;
}

.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: solid 8px;
    border-color: #000000 #00000010 #00000010;
    position: relative;
top: 20px;
left: 450px;
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 768px) and (max-width: 1030px) {
    #loading-screen {
        height: auto;
    }
    .loader {       
        top: -3vh;
        left: 40vw;
    }
}

@media screen and (max-width: 767px) {
    #loading-screen {
        height: auto;
    }
    .loader {       
        top: -3vh;
        left: 2vw;
    }
}


/*メインbody*/
body {
    background: none;
}

.container {
    width: 1140px;
    margin: auto;
}

.service__bg--white {
    background-color: #fff;
    padding-top: 20px;
}


div.list-page img {
    display: none;
}

.p-product .product-panel.is-top {
    margin-top: -66px;
}

.p-product__panel.product-panel.js-product-panel.is-btm {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 40px auto;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #f0f0f0;
    overflow: hidden;
}

p.product-results__num {
    width: 100%;
    text-align: right;
    margin-bottom: 30px;
}

ul.body-item__brandlist {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px #ccc solid;
    padding-bottom: 20px;
}

li.brand-item {
    width: 18%;
    margin: 10px 15px 10px 5px;
    border-right: 1px #ccc solid;
}

li.brand-item:nth-of-type(5n) {
    border-right: 0;
}

li.brand-item a {
    width: 100%;
    display: flex;
    align-items: center;
    color: #1A1311;
    font-weight: bold;
}

li.brand-item:hover a {
    color: #f66;
}

li.brand-item a img {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

p.body-item__ttl--text {
    font-weight: bold;
    margin: 10px 0;
}

div.panel-tab {
    width: 100%;
    display: flex;
}

.c-search_input {
    width: 66%;
    height: 80px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    background-color: #D9D9D9;
    border-radius: 10px 0 0 10px;
}

.c-search_input .is_open {
    border-radius: 10px 0 0 0;
}

p.c-search_input__ttl {
    margin-right: 15px;
    color: #222;
    letter-spacing: 0.05em;
    font-weight: bold;
}

form#search-form,
form#search-form_footer {
    width: 60%;
    display: flex;
}

input.c-search_input__form--input {
    padding: 7px 16px;
    width: calc(100% - 35px);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background-color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    line-height: 1;
    border: none;
}

div.c-search_input .form-btn {
    position: relative;
    width: 35px;
    min-width: 35px;
    padding: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #757171;
    transition: all 0.2s linear;
    border: none;
}

div.c-search_input .form-btn__ico {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 13px;
    height: 13px;
    margin: auto;
}

div.c-search_class {
    width: 390px;
    cursor: pointer;
    color: inherit;
    border-radius: 0 10px 10px 0;
}

div.c-search_class:hover {
    color: #f66;
}

.bk_col,
div.c-search_class.locked .bk_col {
    width: 100%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    background-color: #d9d9d9;
    animation: 1s linear 1s;
}

div.c-search_class.locked {
    width: 390px;
    cursor: pointer;
    color: inherit;
}

p.c-search_class__body {
    position: relative;
    top: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px 50px;
    width: 100%;
    height: 60px;
    border-left: 1px solid #757171;
}

p.c-search_class__bodylocked {
    position: relative;
    top: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px 50px;
    width: 100%;
    height: 60px;
    border: none;
}

p.c-search_class__body .is_open {
    border: none;
    cursor: pointer;
}

svg#ico-panel\.svg {
    width: 20px;
    margin-left: 10px;
}

div.panel-window__close {
    padding: 20px;
    color: #1A1311;
    font-weight: bold;
    width: 100%;
    margin: 0 auto;
    border-top: 1px #ccc solid;
    cursor: pointer;
}

div.panel-window__close:hover {
    color: #f66;
}


p.panel-window__close--text {
    text-align: center;
}

.body-item.category {
    padding: 20px 30px;
}

.body-item.use {
    margin: 0 30px 30px;
}

div.list-page .breadcrumb {
    margin-bottom: 60px;
    margin-top: 20px;
    max-width: 1140px;
    margin: auto;
}

div.p-product__main .c-search_input__ttl {
    margin-right: 15px;
    color: #222;
    letter-spacing: 0.05em;
}

div.p-product__main .c-search_input__form {
    width: 60%;
}

div.news-list-desc.child-page--left.clearfix {
    margin-top: 13px;
    width: 100%;
    padding-left: 15px;
}

ul.product-list {
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    margin-left: -15px;
}

ul.product-list li {
    display: inline;
    width: 195px;
    color: #666;
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.5714;
    overflow-wrap: break-word;
    transition: all 0.2s linear;
    margin: 20px;
}

ul.product-list li .item_text {
    display: block;
}

ul.product-list li:nth-of-type(5n) {
    margin-right: 0px;
}

div.c-productlist .product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.item_img {
    width: 188px;
    height: 120px;
    background-color: #eee;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    margin-bottom: 10px;
}

a.item_thumb {
    color: #1A1311;
}

a.item_thumb:hover {
    color: #f66;
}

p.pbitem_name {
    width: 100%;
    height: 3rem;
    top: 58%;
    line-height: 1.2;
    font-weight: bold;
    padding: 0 2px;
}

p.pbitem_num {
    margin-top: -10px;
    padding: 0 2px;
}

ul.body-item__uselist {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

li.use-item {
    margin: 0 10px 20px 0;
}

li.use-item a {
    margin: 10px 10px 0 0;
    padding: 2px 0;
    color: #1A1311;
    font-weight: bold;
    border-bottom: 1px #1A1311 solid;
}

li.use-item a:hover {
    color: #f66;
    border-bottom: 1px #f66 solid;
}

div.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    font-weight: bold;
}

div.pn_prv a,        
div.pn_nxt a {
    color: #1A1311;
    font-weight: bold;
    padding: 15px;
}

div.pn_prv a:hover,        
div.pn_nxt a:hover {
    color: #f66;
}

div.pn_prv.page_emp,
div.pn_nxt.page_emp {
    color: #ccc;
}
div.pn_prv.page_emp a,
div.pn_prv.page_emp p,
div.pn_nxt.page_emp a,
div.pn_nxt.page_emp p  {
    pointer-events: none;
    color: #ccc;
}

div.pn_num a:hover {
    color: #f66;
}
div.pn_num a.current_page {
    color: #f66;
}

div.pn_prv {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

div.pn_prv:after {
    content: "|";
}

div.pn_nxt:before {
    content: "|";
}

div.pn_num {
    order: 2;
}

div.pn_nxt {
    order: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

a.prev {
    display: flex;
    align-items: center;
}

a.prev p {
    font-size: 2rem;
    margin-left: 10px;
    color: #f66;
}

a.prev_end {
    color: #f66;
}

a.next {
    display: flex;
    align-items: center;
}

a.next p {
    font-size: 2rem;
    margin-left: 10px;
    color: #f66;
}

a.next_end {
    color: #f66;
}

.pc_only {display: block;}


@media screen and (min-width: 768px) and (max-width: 1030px) {
    .container {
        width: 95%;
        padding: 0;
    }

    p.product-results__num {
        width: 95vw;
    }

    p.c-search_class__body,
    p.c-search_class__bodylocked {
        padding: 10px 30px;
    }

    form#search-form,
    form#search-form_footer {
        width: 58%;
    }

    .list-page__content {
        padding-bottom: 0px;
    }

    div.news-list-desc.child-page--left.clearfix {
        width: 100%;
        padding-left: 0;
    }

    ul.product-list {
        width: 95vw;
        margin: 0px;
    }

    li.brand-item {
        width: 23%;
        margin: 15px 12px 15px 0px;
        font-size: 1rem;
        line-height: 1.4rem;
        border: none;
        border-right: 1px #ccc solid;
    }

    li.brand-item:nth-of-type(5n) {
        border-right: 1px #ccc solid;
    }

    li.brand-item:nth-of-type(4n) {
        border: none;
    }

    .p-product__panel.product-panel.js-product-panel.is-btm {
        width: 95vw;
    }

    ul.product-list li {
        width: 18vw;
        margin: 3.2vw;
        display: table;
    }

    ul.product-list li:nth-of-type(5n) {
        margin: 3.2vw;
    }

    ul.product-list li:nth-of-type(4n) {
        margin-right: 0px;
    }

    .item_img {
        width: 100%;
        height: 10vh;
    }

    div.pagenation {
        margin-top: 0px;
    }            
    div.pn_prv a,
    div.pn_nxt a {
        font-size: 1.4rem;
        padding: 20px 10px;
    }
    div.pn_num a {
        font-size: 1.4rem;
        color: #1A1311;
        font-weight: bold;
        padding: 15px;
    }

    .pc_only {display: none;}
}

@media screen and (max-width: 767px) {
    .container {
        width: 95vw;
        margin: auto;
    }

    div.panel-tab {
        width: 100%;
        display: block;
    }

    p.body-item__ttl--text {
        font-weight: bold;
        margin: 10px 0 0;
    }

    div.c-search_input {
        width: 100%;
        height: 95px;
        border-radius: 10px 10px 0px 0px !important;
        display: block;
        padding: 20px;
    }

    form#search-form,
    form#search-form_footer {
        width: 100%;
    }

    .p-product__panel.product-panel.js-product-panel.is-btm {
        position: relative;
        width: 90%;
        font-size: 1.4rem;
        margin: 20px auto 50px;
        justify-content: space-between;
        border: 1px solid #fff;
        border-radius: 10px;
        background-color: #f0f0f0;
        overflow: hidden;
    }

    div.c-search_class {
        width: 100%;
        cursor: pointer;
        color: inherit;
        border-radius: 0 10px 10px 0;
    }

    p.c-search_class__body {
        top: 0px;
        border: none !important;
        padding: 10px;
    }

    p.c-search_class__bodylocked {
        display: none;
    }

    div.news-list-desc.child-page--left.clearfix {
        margin-top: 0;
        padding-left: 0px;
    }

    p.product-results__num {
        width: 100%;
        text-align: right;
        margin-bottom: 0;
        font-size: 1.6rem;
    }

    .c-search_class.\.locked {
        display: none;
    }

    .panel-window__body {
        margin-top: -80px;
    }

    div.c-search_class:hover,
    div.panel-window__close:hover {
        color: inherit;
    }

    p.c-search_input__ttl {
        margin-bottom: 10px;
    }

    p.body-item__ttl--text {
        margin: 10px 0;
    }

    .body-item.use {
        width: 90%;
        margin: 0 auto;
        padding: 0 0 20px;
    }

    ul.body-item__uselist {
        margin-top: 10px;
    }

    .body-item.category {
        position: relative;
        width: 92%;
        margin: 0 auto;
        padding: 10px 0;
        background-color: #f0f0f0;
        z-index: 0;
    }

    li.brand-item {
        width: 50%;
        margin: 10px 0px 10px;
        font-size: 1.2rem;
        line-height: 1.4rem;
        border-right: 1px #ccc solid;
    }

    li.brand-item:nth-of-type(5n) {
        border-right: 1px #ccc solid;
    }

    li.brand-item:nth-of-type(2n) {
        border: none;
    }

    li.brand-item a img {
        margin-left: 5px;
        margin-right: 5px;
    }

    li.use-item {
        margin: 15px 0;
    }

    li.use-item a {
        margin: 0 20px 0 0;
        font-size: 1.4rem;
    }

    ul.product-list {
        display: flex;
        flex-wrap: wrap;
        width: 95vw;
    }

    ul.product-list li {
        display: inline;
        width: 100%;
        color: #666;
        font-size: 0.875rem;
        letter-spacing: 0;
        line-height: 1.5714;
        overflow-wrap: break-word;
        transition: all 0.2s linear;
        margin: 0px 0;
        padding: 30px 0;
        border-bottom: 1px #ccc solid;
    }

    ul.product-list li .item_text {
        padding: 0 0 0 10px;
        font-size: 1.2rem;
        display: block;
        line-height: 1.4rem;
        width: 50%;
    }

    a.item_thumb {
        display: flex;
    }

    .item_img {
        width: 45%;
        height: 16vh;
        background-color: #eee;
        border-radius: 6px;
        margin-left: 10px;
        order: 1;
    }

    p.pbitem_name {
        width: 100%;
        top: 58%;
        display: inline-block;
        color: #1A1311;
        font-weight: bold;
        padding: 0 2px;
    }

    p.pbitem_num {
        margin-top: 5px;
    }

    div.pn_prv a,
    div.pn_nxt a {
        font-size: 1.4rem;
        padding: 20px 10px;
    }

    div.pn_prv {
        border: none;
    }

    div.pn_num {
        order: -1;
        text-align: center;
        width: 100vw;
        font-size: 1.6rem;
    }
    div.pn_num a {
        font-size: 1.4rem;
        color: #1A1311;
        font-weight: bold;
        padding: 15px;
    }
    div.pn_num a::before,
    div.pn_num a::after {
        content: ("&nbsp;&nbsp;");
    }

    div.pn_nxt {
        border: none;
    }

    div.pn_prv:after {
        content: "|";
        font-size: 2rem;
    }

    div.pn_nxt:before {
        content: "";
    }

    .panel-window.locked {
        margin-top: 80px;
    }

    .pc_only {display: none;}
}