@charset "utf-8";
/*------------------------------------------------------------------------------------------
*
*
    look_book_sp.css
*
*
------------------------------------------------------------------------------------------ */
/* --------------------------------------------------------------------------------------------------------------
*
    max-width: 640px
*
-------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 640px) {

/*------------------------------------------------------------------------------------------
*
*
    min-width : 641px
*
*
------------------------------------------------------------------------------------------ */
header{
    width: 100%;
    background-color: #fff;
    height: 30px;
    border-bottom: 1px solid #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

header .inner{
    background-color: #fff;
    margin: 0 auto;
    position: relative;
}

header .inner h1{
    position: absolute;
    top: 8px;
    left: calc(20 / 640 * 100vw);
}

header .inner h1 img{
    width: auto;
    height: 12px;
}

header .inner .pajama{
    position: absolute;
    top: 5px;
    right: calc(15 / 640 * 100vw);
}

header .inner .pajama img{
    width: auto;
    height: 11px;
}

header .inner .pajama a{
    transition: opacity .1s ease;
}

header .inner .pajama a:hover{
    opacity: .7;
    transition: opacity .15s ease;
}

.gnav{
    visibility: hidden;
    opacity: 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom: 1px solid #000;
    text-align: center;
    position: fixed;
    top: 31px;
    left: 0;
    transition: opacity, visibility;
    transition-duration: .25s;
}

.gnav.on{
    visibility: visible;
    opacity: 1;
}

.gnav li{
    font-size: 13px;
    border-bottom: 1px dashed #aaa;
}

.gnav li a{
    padding: 15px 0;
    display: block;
    transition: color .15s ease;
}

.is_pc .gnav li a:hover,
.is_sp .gnav li a.touch{
    color: #0082ff;
}

.gnav li:last-child{ border: none;}

.ico_gnav{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 3px;
    right: 10px;
    cursor: pointer;
}

.ico_gnav:before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/parts_gnav.png);
    background-repeat: no-repeat;
    background-size: 25px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity, transform;
    transition-duration: .1s;
    transition-delay: .2s;
    transition-timing-function: ease-in;
}

.ico_gnav:after{
    opacity: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/parts_gnav_close.png);
    background-repeat: no-repeat;
    background-size: 25px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity, transform;
    transition-duration: .1s;
    transition-delay: 0s;
    transform: scale(.6);
    transition-timing-function: ease-out;
}

.ico_gnav.on:before{
    opacity: 0;
    transform: scale(.6);
    transition-delay: 0s;
}

.ico_gnav.on:after{
    opacity: 1;
    transform: scale(1);
    transition-delay: .2s;
}


/* --------------------------------------------------
*
    #product
*
-------------------------------------------------- */
#product{
    margin: 0 auto;
    padding: calc(100 / 640 * 100vw) 0 0 0;
    text-align: center;
    box-sizing: border-box;
}

#product .pic{
    margin: 0 0 calc(50 / 640 * 100vw) 0;
}

#product .pic img{
    width: 100%;
}

#product .desc{
    padding: 0 calc(30 / 640 * 100vw);
    text-align: left;
}

#product .desc p{
    margin: 0 0 2em 0;
    font-size: 13px;
    line-height: 2em;
    letter-spacing: .1em;
}

#product .desc a{
    color: #0082ff;
    transition: opacity .1s ease;
}

#product .desc a:hover{
    opacity: .7;
    transition: opacity .15s ease;
}


/* --------------------------------------------------
*
    #size
*
-------------------------------------------------- */
#size{
    margin: calc(60 / 640 * 100vw) 0 0 0;
    padding: calc(60 / 640 * 100vw) 0 0 0;
    border-top: 1px solid #000;
}

#size .inner{
    padding: 0 calc(30 / 640 * 100vw);
    margin: 0 auto;
}

#size .inner h3{
    margin: 0 0 calc(50 / 640 * 100vw) 0;
    position: relative;
}

#size .inner h3 img{
    width: calc(307px / 2);
}

#size .desc p{
    margin: 0 0 2em 0;
    font-size: 13px;
    line-height: 2em;
    letter-spacing: .1em;
}

#size .size_table{
    margin: 0 0 calc(60 / 640 * 100vw) 0;
}

#size .size_table table{
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: .1em;
}

#size .size_table table th,
#size .size_table table td{
    width: calc(105 / 640 * 100vw);
    max-width: calc(105 / 640 * 100vw);
    height: 30px;
    box-sizing: border-box;
    border: 1px solid #000;
    vertical-align: middle;
}

#size .size_table table th:first-child{ width: calc(230 / 640 * 100vw); min-width: calc(230 / 640 * 100vw);}

#size .size_table .notes{
    margin: 10px 0 20px 0;
    font-size: 11px;
}

#size .size_table .img{ text-align: center;}
#size .size_table.top .img img{ width: calc(480 / 640 * 100vw);}
#size .size_table.btm .img img{ width: calc(450 / 640 * 100vw);}

.any #size .size_table.top .img img{ width: calc(530 / 640 * 100vw);}
.nightcap #size .size_table.top .img img{ width: calc(360 / 640 * 100vw);}

#size .desc a{
    color: #0082ff;
    transition: opacity .1s ease;
}

#size .desc a:hover{
    opacity: .7;
    transition: opacity .15s ease;
}

/* --------------------------------------------------
*
    #spec
*
-------------------------------------------------- */
#spec{
    margin: calc(60 / 640 * 100vw) 0 0 0;
    padding: calc(60 / 640 * 100vw) 0 0 0;
    border-top: 1px solid #000;
}

#spec .inner{
    padding: 0 calc(30 / 640 * 100vw);
    margin: 0 auto;
}

#spec .inner h3{
    margin: 0 0 calc(50 / 640 * 100vw) 0;
    position: relative;
}

#spec .inner h3 img{
    width: calc(300px / 2);
}

#spec .desc{
    margin: 0 0 calc(70 / 640 * 100vw) 0;
}

#spec .desc p{
    font-size: 13px;
    line-height: 2em;
    letter-spacing: .1em;
}

#spec .desc p.ti{
    display: flex;
}

#spec .spec_list li{
    margin: 0 0 calc(60 / 640 * 100vw) 0;
}

#spec .spec_list h4{
    margin: 0 0 10px 0;
    font-size: 15px;
    letter-spacing: .1em;
}

#spec .spec_list p{
    margin: 0 0 15px 0;
    font-size: 13px;
    line-height: 2em;
    letter-spacing: .1em;
}

#spec .spec_list .img{ text-align: center;}
#spec .spec_list img{
    width: 100%;
    max-width: 420px;
}


/* --------------------------------------------------
*
    #notice
*
-------------------------------------------------- */
#notice{
    margin: calc(60 / 640 * 100vw) 0;
    padding: calc(60 / 640 * 100vw) 0 0 0;
    border-top: 1px solid #000;
}

#notice .inner{
    padding: 0 calc(30 / 640 * 100vw);
    margin: 0 auto;
}

#notice .inner h3{
    margin: 0 0 calc(50 / 640 * 100vw) 0;
    position: relative;
}

#notice .inner h3 img{
    width: calc(543px / 2);
}

#notice .notice_list li{
    margin: 0 0 2em 0;
    font-size: 13px;
    line-height: 2em;
    letter-spacing: .1em;
    text-indent: -1em;
    padding-left: 1em;
}

#notice .notice_list li:before{ content: '■';}


.btn_back{
    width: 240px;
    display: table;
    text-align: center;
    margin: calc(80 / 640 * 100vw) auto calc(60 / 640 * 100vw) auto;
}

.btn_back a{
    width: 240px;
    height: 38px;
    background-color: #e0e0e0;
    display: table-cell;
    vertical-align: middle;
    font-size: 13px;
    border: 1px solid #000;
    border-radius: 45px;
    box-sizing: border-box;
    transition: opacity .1s ease;
}

.is_pc .btn_back a:hover,
.is_sp .btn_back a.touch{
    opacity: .7;
    transition: opacity .15s ease;
}


} /* ----- max-width: 640px ----- */
