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

#wrap{ position: relative;}
#wrap:before{
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-image:url(../images/parts_bg_dot_index.png);
    background-position: center top;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#contents{
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
}


.btn_detail{
    width: calc(400 / 640 * 100vw);
    max-width: calc(400 * .7px);
    display: table;
    text-align: center;
    margin: 20px auto 0;
}

.btn_detail a{
    width: 100%;
    height: 40px;
    background-color: #e0e0e0;
    display: table-cell;
    vertical-align: middle;
    font-size: 12px;
    border: 2px solid #000;
    border-radius: 40px;
    box-sizing: border-box;
    transition: background .1s ease;
}

.is_pc .btn_detail a:hover,
.is_sp .btn_detail a.touch{
    background-color: #AACDFF;
    transition: background .15s ease;
}

.isIE .btn_detail a{
    padding-top: 4px;
}


/* --------------------------------------------------
*
    #kv
*
-------------------------------------------------- */
#kv{
    line-height: 0;
}

#kv h1{
    position: relative;
}

#kv h1 img{
    width: 100%;
}

.coming #kv h1:after{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-image:url(../images/img_kv_index_onsale_sp.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


/* --------------------------------------------------
*
    #yodogawa
*
-------------------------------------------------- */
#yodogawa{
    background-color: #FFFFE1;
    text-align: center;
}

#yodogawa .inner{
    padding: calc(40 / 640 * 100vw);
    text-align: left;
}

#yodogawa .inner p{
    margin: 0 0 2em 0;
    font-size: 14px;
    line-height: 2em;
    letter-spacing: .05em;
}

#yodogawa .inner p:last-child{ margin: 0;}


/* --------------------------------------------------
*
    #content_list
*
-------------------------------------------------- */
#content_list{
    text-align: center;
    background-color: #fff;
}

#content_list h2{
    padding: calc(60 / 640 * 100vw) 0;
}

#content_list h2 img{
    width: calc(111 / 640 * 100vw);
    max-width: calc(111 * .7px);
}

#content_list ul{ border-bottom: 4px solid #AACDFF;}
#content_list li{ border-top: 4px solid #AACDFF;}

#content_list li img{
    width: 100%;
    max-width: calc(640 * .7px);
}

#content_list li a{
    padding: calc(40 / 640 * 100vw) 0 calc(50 / 640 * 100vw) 0;
    display: block;
    transition: opacity .1s ease;
}

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

#content_list li.disabled a{
    opacity: .3 !important;
    cursor: default;
}

/* --------------------------------------------------
*
    #related
*
-------------------------------------------------- */
#related.bl{
    margin-top: 20px;
}

#related{
    background-color: #fff;
    border-bottom: 1px solid #000;
}

#related h3{
    text-align: center;
    padding: calc(35 / 640 * 100vw) 0;
    background-color: #cdcdcd;
}

#related h3 img{
    width: calc(419 / 640 * 100vw);
    max-width: calc(419 * .7px);
}

#related ul{
    border-top: 1px solid #000;
    display: flex;
}

#related p{
    border-top: 1px solid #000;
}

#related li,
#related p{
    box-sizing: border-box;
    line-height: 0;
    /* width: 50%; */
}

#related li img,
#related p img{
    width: 100%;
}

#related li:first-child{ border-right: 1px solid #000;}

#related a{
    display: block;
    transition: opacity .1s ease;
}

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


/* --------------------------------------------------
*
    #archives
*
-------------------------------------------------- */
#archives{
    background-color: #fff;
}

#archives h3{
    text-align: center;
    padding: calc(35 / 640 * 100vw) 0;
    background-color: #cdcdcd;
}

#archives h3 img{
    width: calc(569 / 640 * 100vw);
    max-width: calc(569 * .7px);
}

#archives ul{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: flex;
}

#archives li,
#archives p{
    box-sizing: border-box;
    line-height: 0;
}

#archives li img,
#archives p img{
    width: 100%;
}

#archives li:first-child{ border-right: 1px solid #000;}

#archives a{
    display: block;
    transition: opacity .1s ease;
}

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


/* --------------------------------------------------
*
    #content_nav
*
-------------------------------------------------- */
#content_nav{
    padding: calc(60 / 640 * 100vw) 0 calc(50 / 640 * 100vw) 0;
    background-color: #cdcdcd;
}

#content_nav ul{
    max-width: 420px;
    margin: 0 auto;
    padding: 0 calc(50 / 640 * 100vw);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

#content_nav img{
    width: calc(80 / 640 * 100vw);
    max-width: calc(80 * .7px);
}

#content_nav li{ text-align: center; }
#content_nav li a{
    display: block;
    text-align: center;
    position: relative;
    transition: opacity .1s ease;
}

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

#content_nav li a:after{
    margin: 5px 0 0 0;
    display: block;
    position: relative;
    font-size: 12px;
}

#content_nav li.prev a:after{ content: 'まえへ';}
#content_nav li.index a:after{ content: 'もくじページへ';}
#content_nav li.next a:after{ content: 'つぎへ';}


/* --------------------------------------------------
*
    .post_title
*
-------------------------------------------------- */
.post_title{
    overflow: hidden;
    padding: calc(40 / 640 * 100vw) 0 calc(50 / 640 * 100vw) 0;
    text-align: center;
    border-bottom: 4px solid #AACDFF;
    line-height: 0;
}

.post_title h2 img{
    width: 100%;
    max-width: 420px;
}

/* .post_title h2{ margin-bottom: calc(-40 / 640 * 100vw); position: relative;}
.post_title h2:after{
    content: '';
    display: block;
    width: 100%;
    height: calc(30 / 640 * 100vw);
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
} */

/* --------------------------------------------------
*
    .profile
*
-------------------------------------------------- */
.profile_modal1,.profile_modal2{ display: none;}

.profile{
    padding: calc(50 / 640 * 100vw) 0;
    text-align: center;
    border-bottom: 4px solid #AACDFF;
}

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

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

.profile .desc p:last-child{ margin: 0;}

.profile .pic{
    margin: calc(40 / 640 * 100vw) 0 calc(40 / 640 * 100vw) 0;
    /* padding: 0 calc(40 / 640 * 100vw); */
    padding: 0;
    text-align: center;
    display: inline-block;
}

.profile .pic img{
    width: 100%;
    max-width: 480px;
}

.profile .pic ul{
    padding: 10px 0 0 0;
    font-size: 11px;
    letter-spacing: .1em;
    text-align: left;
    line-height: 2em;
}

.profile .pic li:first-child{ padding-left: 0;}
.profile .pic li:last-child{ padding-right: 0;}


/* --------------------------------------------------
*
    #post_body
*
-------------------------------------------------- */
#post_body{
    padding: calc(60 / 640 * 100vw) calc(40 / 640 * 100vw) 0 calc(40 / 640 * 100vw);
}

#post_body dl{
    margin: 0 0 2em 0;
    font-size: 13px;
    line-height: 2.125em;
}

#post_body dt{
    font-family: 'Soft Gothic Bold' !important;
    letter-spacing: .1em;
}

#post_body dt.t_h{ letter-spacing: -.05em;}
#post_body dt.t_h:after{ content: ''; display: inline-block; margin: 0 3px 0 0;}

#post_body dd{
    padding: 0;
    letter-spacing: .1em;
}

#post_body .pic{
    margin: calc(60 / 640 * 100vw) 0;
    text-align: center;
}

#post_body .pic2{
    margin: -1.5em 0 calc(60 / 640 * 100vw);
    text-align: center;
}

#post_body .pic img,#post_body .pic2 img{
    width: 100%;
    max-width: 480px;
}
#post_body h2 {
    margin-top: 3em;
    margin-bottom: 1em;
}
#post_body h2:first-of-type {
    margin-top: 0;
    margin-bottom: 1em;
}
#post_body h2 img {
    width: auto;
    height: 1.3em;
}
#post_body .btn_detail{ margin: calc(-30 / 640 * 100vw) auto calc(70 / 640 * 100vw) auto;}

#post_body .btm_notes{
    margin: calc(80 / 640 * 100vw) 0;
    font-size: 13px;
    letter-spacing: .1em;
    text-align: center;
}

#post_body .btm_notes p{ line-height: 1.8em;}
#post_body .btm_notes p.date{
    margin: calc(70 / 640 * 100vw) 0 0 0;
    font-size: 11px;
}

#post_body .line{
    margin: 30px 0;
    border-top: 1px solid #000;
}


#post_body .desc{
}

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

#post_body .desc .ti{
    display: block;
    padding-left: 1em;
    text-indent: -1em;
}

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

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

/* --------------------------------------------------
*
    .profile_inner
*
-------------------------------------------------- */
.profile_inner{
    padding: calc(40 / 640 * 100vw);
    display: inline-block;
    text-align: left;
    margin-bottom: 10vh;
}

.profile_inner p{
    margin: 0 0 2em 0;
    font-size: 14px;
    letter-spacing: .1em;
    line-height: 2.125em;
}

.profile_inner a{
    padding: 0 0 2px 0;
    color: #00a0ff;
}
.profile_inner img {
    width: 100%;
}
.profile_inner .pic ul {
    padding: 10px 0;
    font-size: 13px;
}
.profile_inner .pic ul li{
    padding: 5px 0;
}
.is_pc .profile_inner a:hover,
.is_sp .profile_inner a.touch{
    border-bottom: 1px solid #00a0ff;
}


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