/* layout */
.l-main{
    width: 100%;
    box-sizing: border-box;
    padding: 40px 0 60px;
    word-break: break-all;
}
.l-main-contents{
    max-width: 880px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .l-main-contents{
        padding: 0 20px;
    }
}


/* main contents */
.p-main__section{
    margin-bottom: 40px;
}
.p-main__section:last-child{
    margin-bottom: 0;
}

.p-main__title{
    font-size: 2.4rem;
    line-height: 1.16;
    letter-spacing: .1rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 24px;
}

/* search box */
.p-searchbox{
    margin-bottom: 16px;
}
.p-searchbox__checkbox{
    display: none;
}
.p-searchbox__checks{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.p-searchbox__check-label{
    font-size: 1.6rem;
    line-height: 1.375;
    letter-spacing: .08rem;
    display: flex;
    /* align-items: center; */
    position: relative;
    cursor: pointer;
}
.p-searchbox__check-label::before{
    content: "";
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 1px solid #999;
    box-sizing: border-box;
    margin-right: 8px;
    flex-shrink: 0;
}
.p-searchbox__checkbox:checked + .p-searchbox__check-label::before{
    background-color: #005EB8;
    border: 1px solid #005EB8;
}
.p-searchbox__checkbox:checked + .p-searchbox__check-label::after{
    content: "";
    position: absolute;
    box-sizing: border-box;
    left: 4px;
    top: 6px;
    display: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 16px;
    height: 8px;
    border-left: #FFFFFF solid 3px;
    border-bottom: #FFFFFF solid 3px;
}
.p-searchbox__checkbox:checked + .p-searchbox__check-label::after{
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .p-searchbox__check-label{
        font-size: 1.4rem;
        line-height: 1.57;
        letter-spacing: .06rem;
    }
}



.p-searchbox__inputs{
    display: flex;
    align-items: center;
    max-width: 460px;
    width: 100%;
    background: #F5F5F5;
    
    box-sizing: border-box;
    position: relative;
}
.p-searchbox__input{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: none;
    outline: none;
    font-size: 1.4rem;
    letter-spacing: .06rem;
    width: 100%;
    height: 40px;
    padding: 0 40px 0 10px;
    background: transparent;
}
.p-searchbox__input:focus,
.p-searchbox__input:focus-visible{
    outline: 1px solid #005EB8;
    outline-offset: -1px;
}
.p-searchbox__button{
    overflow: hidden;
    width: 40px;
    height: 38px;
    box-sizing: border-box;
    text-indent: 100%;
    background: url(/apps-static/assets/img/icon_search.svg) no-repeat center center;
    background-size: 16px;
    white-space: nowrap;
    background-color: #F5F5F5;
    position: absolute;
    right: 1px;
    top: 1px;
    cursor: pointer;
}
.p-searchbox__button:hover{
    opacity: .7;
    transition: opacity .3s;
}

.p-main__text{
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    margin-bottom: 8px;
}
.p-main__text:last-child{
    margin-bottom: 0;
}
.p-search__error{
    color: #E50000;
}

/* pagenation */
.p-search__pagenation{
    margin-bottom: 40px;
}
.p-search__pagenation--pc{
    display: block;
}
.p-search__pagenation--sp{
    display: none;
}
.p-search__pagenation_list{
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-search__pagenation_link{
    font-size: 1.6rem;
    line-height: 1.375;
    letter-spacing: .08rem;
    color: #999;
    text-decoration: none;
    margin: 0 10px;
}
.p-search__pagenation_list-item:first-child .p-search__pagenation_link{
    margin-left: 0;
}
.p-search__pagenation_list-item:last-child .p-search__pagenation_link{
    margin-right: 0;
}
.p-search__pagenation_link.is-firstpage::after{
    content: "...";
}
.p-search__pagenation_link.is-lastpage::before{
    content: "...";
}
.p-search__pagenation_link.is-current{
    font-weight: 700;
    color: #333;
}

.p-search__pagenation_link:hover{
    opacity: .7;
    transition: opacity .3s;
}
.p-search__pagenation_link--prev,
.p-search__pagenation_link--next{
    color: #333;
    display: flex;
    align-items: center;
}
.p-search__pagenation_link--prev{
    margin-right: 24px;
}
.p-search__pagenation_link--next{
    margin-left: 24px;
}
.p-search__pagenation_link--prev::before,
.p-search__pagenation_link--next::after{
    content: "";
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.p-search__pagenation_link--prev::before{
    background-image: url(/apps-static/assets/img/arrow_button_gray_left.svg);
    margin-right: 4px;
}
.p-search__pagenation_link--next::after{
    background-image: url(/apps-static/assets/img/arrow_button_gray_right.svg);
    margin-left: 4px;
}

@media screen and (max-width: 767px) {
    .p-search__pagenation--pc{
        display: none;
    }
    .p-search__pagenation--sp{
        display: block;
    }
    .p-search__pagenation_link{
        font-size: 1.4rem;
        line-height: 1.57;
        letter-spacing: .06rem;
    }
    .p-search__pagenation_link--prev{
        margin-right: 16px;
    }
    .p-search__pagenation_link--next{
        margin-left: 16px;
    }
    .p-search__pagenation_link.is-sp-hidden{
        display: none;
    }
}

/* 検索結果 */
.p-main__section-title{
    margin-bottom: 8px;
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    font-weight: 700;
}
.p-search__result-list-item{
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
}
.p-search__result-list-item:first-child{
    border-top: 1px solid #e6e6e6;
}
.p-search__result-product{
    display: flex;
    align-items: center;
    margin-right: 16px;
    text-decoration: none;
    width: 200px;
    cursor: pointer;
}
.p-search__result-product:hover{
    opacity: .7;
    transition: opacity .3s;
}
.p-search__result-product--nolink{
    cursor: default;
}
.p-search__result-product--nolink:hover{
    opacity: 1;
    transition: none;
}
.p-search__result-imgbox{
    width: 30px;
    height: 30px;
    margin-right: 8px;
    flex-shrink: 0;
}
.p-search__result-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-search__result-linktext{
    color: #005EB8;
    position: relative; 
}
.p-search__result-linktext::after{
    content: "";
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-image: url(/apps-static/assets/img/icon_open-in-new.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    position: relative;
    top: 2px;
    left: 0;
}
.p-search__result-text{
    color: #333;
}
.p-search__result-product-description{
    width: calc(100% - 216px);
    word-break: break-all;
}

.p-main__page-close-button{
    width: 100%;
    max-width: 300px;
    height: 56px;
    box-sizing: border-box;
    padding: 0 16px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    color: #333;
    margin: 0 auto;
}
.p-main__page-close-button:hover{
    background-color: #f5f5f5;
    transition: background-color .3s;
}


@media screen and (max-width: 767px) {
    .p-search__result-list-item{
        display: block;
    }
    .p-search__result-product{
        width: 100%;
        margin-bottom: 8px;
        margin-right: 0;
    }

}


/* detail */

.p-main__title-productname{
    font-size: 1.6rem;
    line-height: 1.375;
    letter-spacing: .08rem;
    margin-bottom: 4px;
}

.p-main-head{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.p-main-head__images{
    width: 200px;
    flex-shrink: 0;
}
.p-main-head__imagebox{
    width: 100%;
    height: 200px;
    margin-bottom: 8px;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    cursor: pointer;
}
.p-main-head__imagebox:hover{
    opacity: .7;
    transition: opacity .3s;
}
.p-main-head__imagebox.is-no-modal{
    cursor: default;
}
.p-main-head__imagebox.is-no-modal:hover{
    opacity: 1;
    transition: none;
}

.p-main-head__image{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-main-head__imagetext{
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    text-align: center;
}
.p-main-head__descriptions{
    width: calc(100% - 240px);
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
}
.p-main-head__export-pdf{
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
    color: #005EB8;
    text-decoration: none;
    line-height: 1;
}
.p-main-head__export-pdf:hover{
    opacity: .7;
    transition: opacity .3s;
}
.p-main-head__export-pdf::before{
    content: "";
    width: 24px;
    height: 30px;
    margin-right: 8px;
    background-image: url(/apps-static/globalb7/product/item/assets/img/icon_pdf.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}
.p-main-detail__ankerlist{
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.p-main-detail__ankerlist-item{
    margin-right: 32px;
}
.p-main-detail__ankerlist-item:last-child{
    margin-right: 0;
}
.p-main-detail__ankerlink{
    text-decoration: none;
    color: #005EB8;
    display: flex;
    align-items: center;
}
.p-main-detail__ankerlink:hover{
    opacity: .7;
    transition: opacity .3s;
}
.p-main-detail__ankerlink::after{
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background-image: url(/apps-static/assets/img/icon_arrow_blue_bottom.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.p-main-detail__title{
    font-size: 1.8rem;
    line-height: 1.33;
    letter-spacing: .1rem;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 18px;
    border-top: 1px solid #e6e6e6;
    /* border-bottom: 1px solid #e6e6e6; */
    cursor: pointer;
    position: relative;
}
.p-main-detail__title:hover{
    opacity: .7;
    transition: opacity .3s;
}

.p-main-detail__title-button{
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 16px;
    /* transform: translateY(-50%) rotate(45deg); */
    transform: translateY(-50%);
}
.p-main-detail__title-button::before,
.p-main-detail__title-button::after{
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #666;
    position: absolute;
    top: 50%;
    left: 0;
}
.p-main-detail__title-button::after{
    transform: rotate(90deg);
}

.p-main-detail__tables{
    /* padding-top: 16px;
    padding-bottom: 48px; */
    height: 0;
    overflow: hidden;
}
.p-main-detail__box:last-child .p-main-detail__tables{
    padding-bottom: 0;
}

.is-accodion-open .p-main-detail__title-button{
    transform: translateY(-50%) rotate(45deg);
}
.is-accodion-open + .p-main-detail__tables{
    margin-top: 16px;
    /* padding-bottom: 48px; */
    margin-bottom: 48px;
}
.p-main-detail__box .p-main-detail__title.is-accodion-open{
    border-bottom: 1px solid #e6e6e6;
}
.p-main-detail__box:last-child .p-main-detail__title{
    border-bottom: 1px solid #e6e6e6;
}


.p-main-detail__update{
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    text-align: right;
    margin-bottom: 20px;
}
.p-main-detail__table-wrapper{
    margin-bottom: 12px;
}
.p-main-detail__table-wrapper:last-child{
    margin-bottom: 0;
}
.p-main-detail__table{
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 16px;
}
.p-main-detail__table:last-child{
    margin-bottom: 0;
}
.p-main-detail__table-col{
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
    box-sizing: border-box;
    padding: 8px 12px;
    border: 1px solid #e6e6e6;
}
.p-main-detail__table-col--head{
    background-color: #f5f5f5;
    width: 30%;
    min-width: 200px;
}
.p-main-detail__table_notes{
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: .06rem;
}
.p-main-detail__table-col-link{
    color: #005EB8;
    text-decoration: none;
}
.p-main-detail__table-col-link:hover{
    opacity: .7;
    transition: opacity .3s;
}


/* modal */
.p-modal__container{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(51,51,51,.6);
    box-sizing: border-box;
    padding: 40px;
    z-index: 10001;
    visibility: hidden;
    opacity: 0;
    transition: visibility .3s, opacity .3s;
}
.p-modal__container.is-modal-active{
    visibility: visible;
    opacity: 1;
}
body.is-modal-active{
    overflow: hidden;
}
.p-modal__body{
    background: #fff;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    scrollbar-width: none;
    padding: 60px 20px;
}
.p-modal__close-button{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-modal__close-button-inner{
    position: relative;
    width: 32px;
    height: 32px;
}
.p-modal__close-button-inner::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 2px;
    background-color: #666;
    transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal__close-button-inner::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 2px;
    background-color: #666;
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* swiper */
.p-modal_main-slider {
    margin-bottom: 16px;
    height: 400px;
}
.p-modal_main-slider__img-wrapper{
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-modal_main-slider__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-modal_thumbs-slider {
  height: 100px;
}

.p-modal_thumbs-slider__blk{
    width: 100px;
    opacity: 0.5;
    cursor: pointer;
}
.p-modal_thumbs-slider__blk.swiper-slide-thumb-active {
  opacity: 1;
}
.p-modal_thumbs-slider__img-wrapper{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
}
.p-modal_thumbs-slider__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
  color: #999;
}


@media screen and (max-width: 767px) {
    .p-main-head{
        display: block;
    }
    .p-main-head__descriptions{
        width: 100%;
    }
    .p-main-detail__table-col--head{
        min-width: unset;
    }
    .p-main-head__images{
        margin-bottom: 16px;
    }

    .p-main-head__export-pdf{
        position: absolute;
        top: 0;
        right: 0;
    }
}
@media screen and (max-width: 374px){
    .p-main-head__export-pdf{
        position: static;
    }
}