@charset 'utf-8';

/*--------------------------------------------------------------------------------
    lens specification
--------------------------------------------------------------------------------*/
.section-spec{
    padding: 54px 0 80px;
}
    .spec{
        max-width: 980px;
        margin: 0 auto;
    }
        .spec-header{
            display: inline-block;
            vertical-align: bottom;
            padding: 26px 22px;
            color: #fff;
            background: #000;
        }
            .spec-header:before{
                content: url(../img/bg_header.png);
                display: block;
                width: 284px;
                height: 47px;
            }
        .spec-body{
            display: table;
            width: 100%;
            table-layout: fixed;
            border: 2px solid #000;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }
            .spec-detail{
                display: table-cell;
                vertical-align: top;
                width: 456px;
            }

            .spec-overview{
                display: table-cell;
                vertical-align: top;
                width: 437px;
                padding: 35px 35px 40px;
            }
                .spec-overview-section{
                }
                    .spec-overview-primaryHeader{
                        margin: 0 auto 30px;
                         padding-top: 48px;
                    }
                    .spec-overview-section p{
                        font-size: 13px;
                        line-height: 24px;
                    }
                .spec-overview-section-01{
                    padding: 0 0 35px;
                    border-bottom: 1px solid #808080;
                }
                    .spec-overview-section-01 .spec-overview-primaryHeader{
                        background: url(../img/bg_primaryHeader01.png) no-repeat left center;
                    }
                .spec-overview-section-02{
                    padding: 22px 0 0;
                }
                    .spec-overview-section-02 .spec-overview-primaryHeader{
                        background: url(../img/bg_primaryHeader02.png) no-repeat left center;
                    }
            
            .tabview{
            }
                .tabview-container{
                    position: relative;
                    height: 210px;
                }
                    .tabview-item{
                        display: none;
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                    }
                    .tabview-item.active{
                        display: block;
                    }
                        .tabview-item-inner {
                            opacity: 0;
                        }
                        .tabview-item-inner.fadeIn {
                            opacity: 1;
                            -webkit-transition: opacity 250ms;
                            transition: opacity 250ms;
                        }
                        .tabview-item-inner img{
                            max-width: 100%;
                            height: auto;
                            vertical-align: bottom;
                        }

                .tabview-controller{
                    margin: 27px auto 0;
                }
                    .tabview-controller-body{
                        display: block;
                        text-align: center;
                        letter-spacing: -0.4em;
                    }
                        .tabview-controller-item{
                            display: inline-block;
                            vertical-align: bottom;
                            width: 120px;
                            margin: 0 5px;
                        }
                            .tabview-controller-item a{
                                display: block;
                                padding-top: 36px;
                                letter-spacing: normal;
                            }
                            .tabview-controller-item[data-target="0"] a{
                                background: url(../img/bg_tabcontroller01.png) no-repeat center;
                            }
                            .tabview-controller-item[data-target="0"].active a{
                                background: url(../img/bg_tabcontroller01_active.png) no-repeat center;
                            }    
                            .tabview-controller-item[data-target="1"] a{
                                background: url(../img/bg_tabcontroller02.png) no-repeat center;
                            }
                            .tabview-controller-item[data-target="1"].active a{
                                background: url(../img/bg_tabcontroller02_active.png) no-repeat center;
                            }

            .specifications{
                width: 100%;
                border-collapse: collapse;
                text-align: left;
            }
                .specifications th{
                    vertical-align: middle;
                    padding: 24px 15px;
                    background: #000;
                    font-size: 13px;
                    color: #fff;
                    font-weight: normal;
                    white-space: nowrap;
                    border-top: 1px solid #808080;
                }
                .specifications td{
                    vertical-align: middle;
                    padding: 0;
                    font-size: 12px;
                    border-top: 1px solid #808080;
                    letter-spacing: -0.05em;
                    line-height: 1.4;
                }
                    .specifications td span{
                        display: block;
                        padding: 0 15px;
                    }
                    .specifications td ul{
                        display: block;
                    }
                        .specifications td li{
                            padding: 10px 15px;
                        }
                        .specifications td li:first-child{
                            border-bottom: 1px solid #808080;
                        }
                .specifications tr:first-child th,
                .specifications tr:first-child td{
                    border-top: none;
                }    

@media(max-width: 980px){
    .spec{
        padding: 0 20px;
    }
        .spec-overview{
            width: 44.5%;
        }
        .spec-detail{
            width: 47.7%;
        }
}

@media(max-width: 880px){
    .spec-overview{
       padding: 35px 20px 20px;
    }
    .specifications th{
        white-space: normal;
    }
}

@media(max-width: 640px){
    .section-spec {
        padding: 0 0 100px;
    }
        .spec{
            padding: 0;
        }
            .spec-header{
                display: block;
                padding: 15px 0;
            }
                .spec-header:before{
                    content: '';
                    display: block;
                    width: auto;
                    height: 0;
                    padding-top: 14px;
                    background: url(../img/bg_header_sp.png) no-repeat center;
                    background-size: contain;
                }
                
            .spec-body{
                display: block;
                padding: 22px 25px 0;
                border: none;
            }
                .spec-detail{
                    display: block;
                    width: auto;
                    padding: 0;
                }

                .spec-overview{
                    display: block;
                    width: auto;
                    padding: 0 0 50px;
                }
                    .spec-overview-primaryHeader{
                        padding-top: 21px;
                    }
                    .spec-overview-section p{
                        font-size: 12px;
                        line-height: 21px;
                    }
                    
                .spec-overview-section-01{
                    padding: 0 0 25px;
                }
                    .spec-overview-section-01 .spec-overview-primaryHeader{
                        background: url(../img/bg_primaryHeader01_sp.png) no-repeat left center;
                        background-size: contain;
                    }
                .spec-overview-section-02 {
                }
                    .spec-overview-section-02 .spec-overview-primaryHeader{
                        padding-top: 17px;
                        background: url(../img/bg_primaryHeader02_sp.png) no-repeat left center;
                        background-size: contain;
                    }
                

            .tabview-controller{
                margin: 30px auto 0;
            } 
                .tabview-controller-item{
                    width: 120px;
                }
                    .tabview-controller-item a{
                        padding-top: 39px;
                    }
                .tabview-controller-item[data-target="0"] a{
                    background: url(../img/bg_tabcontroller01_sp.png) no-repeat center;
                    background-size: 100% auto;
                }
                .tabview-controller-item[data-target="0"].active a{
                    background: url(../img/bg_tabcontroller01_active_sp.png) no-repeat center;
                    background-size: 100% auto;
                }    
                .tabview-controller-item[data-target="1"] a{
                    background: url(../img/bg_tabcontroller02_sp.png) no-repeat center;
                    background-size: 100% auto;
                }
                .tabview-controller-item[data-target="1"].active a{
                    background: url(../img/bg_tabcontroller02_active_sp.png) no-repeat center;
                    background-size: 100% auto;
                }

            .specifications{
                border: 1px solid #808080;
            }
                .specifications th{
                    width: 123px;
                    padding: 16px 10px;
                    font-size: 10px;
                    white-space: normal;
                }
                .specifications td{
                    font-size: 10px;
                }
                    .specifications td span{
                        padding: 12px 10px;
                    }
                    .specifications td li{
                        padding: 12px 10px;
                    }

}

@media print{
    .spec-header span:first-line{
        font-size: 3em;
    }
        .spec-overview-primaryHeader{
            padding: 0!important;
            font-size: 2em;
        }
    .tabview-item{
        text-align: center;
    }
        .tabview-controller-item a{
            padding: 18px 0;
            border: 2px solid #000;
            border-radius: 30px;
        }
        .tabview-controller-item.active a{
            border-color: #42CDEF;
            border-width: 4px;
        }
            .tabview-controller-item.active a span{
                color: #42CDEF;
                font-weight: bold;
            }
    .specifications th{
        border-right: 1px solid #000;
        color: #000;
    }
}