@charset "utf-8";
/*------------------------------------------------------------------------------------------
*
*
    ituwa_pc.css
*
*
------------------------------------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Forum&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

#contents_wrap{ position: relative;}

/*------------------------------------------------------------------------------------------ */
@media screen and (min-width : 751px){

/* --------------------------------------------------
*
    #kv
*
-------------------------------------------------- */
#kv{
    height: 100vh; /* ビューポートの高さ（画面の高さ）いっぱいにする */
    min-height: 100vh;
    position: relative;
}

#kv .ico_scroll{
    width: 100%;
    padding: 0 0 52px 0;
    text-align: center;
    font-family: 'josefin Sans' !important;
    font-size: 15px;
    color: #b18b43;
    letter-spacing: .12em;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 12;
    opacity: 0;
    transform: translateY(5px);
}

#wrap.onload #kv .ico_scroll{
    opacity: 1;
    transform: translateY(0);
    transition: opacity .85s ease-out 3.5s, transform .85s ease-out 3.5s;
}

#kv .ico_scroll:after{
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background-color: #b18b43;
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    animation: scrollIcon 3s ease-out infinite;
}

#kv .img img{
    display: none;
}

#kv .mv {
    height: 100%;
    width: 100%;
}

#kv .mv video {
    max-width: 100%;
    /* 親要素いっぱいに広げる */
    width: 100%;
    height: 100%; 
    /* はみ出しを許容して天地左右に隙間なく埋める */
    object-fit: cover; 
    /* 絶対配置にして親要素（#kv）の基準で位置調整 */
    position: absolute;
    top: 0;
    left: 0;
}

/* --------------------------------------------------
*
    #about
*
-------------------------------------------------- */
#about{
    max-width: 1200px;
    min-width: 1080px;
    margin: 200px auto 140px auto;
    position: relative;
}

#about .section_inner{
    padding: 0 40px;
    position: relative;
}

#about .col_l{
    width: 500px;
    height: 500px;
    position: relative;
    z-index: 2;
    -webkit-transform: translateZ(.1px);
    top: -45px;
}
#about .col_l .pic img{
    width: 100%;
}

#about .col_r .line{
    width: 100%;
    height: 100%;
    position: relative;
}

#about .col_r h2{
    position: absolute;
    top:-45px;
    left: 50%;
    margin-left: -38px;
    z-index: 3;
}

#about .col_r h2 img{
    width: 200px;
}

#about .col_r .col_wrap{
    width: 740px;
    height: 622px;
    padding: 100px 50px 50px 180px;
    display: table;
    opacity: 0;
    box-sizing: border-box;
    background-image:url(../images/ituwa/img_about_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1.01) translateY(0);
    position: relative;
}

#about .col_r.anim .col_wrap{
    opacity: 1;
    transform: scale(1);
    transition: opacity .85s ease-out 1.1s, transform .85s ease-out 1.1s;
}

#about .col_r .inner{
    width: 100%;
    height: 100%;
    opacity: 0;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color:#FFF;
}

#about .col_r.anim .inner{
    opacity: 1;
    transform: scale(1);
    transition: opacity .8s cubic-bezier(0.23, 1, 0.32, 1) 2s, transform .8s cubic-bezier(0.23, 1, 0.32, 1) 2s;
}

#about .col_r .desc{
    margin: 0 0 25px 0;
}

#about .col_r .desc p{
    font-family: "Noto Serif JP", serif;
    font-size : 14px;
    line-height : 30px;
    letter-spacing : 2.8px;
}

#about .col_r .desc p >span{
    display: block;
}
#about .col_r .desc p.lead{
    font-size : 20px;
    line-height : 35px;
    letter-spacing : 5px;
    margin-bottom: 30px;
}

#about .col_r{
    position: absolute;
    top: -95px;
    right: 40px;
}

#about .rose{
    position: absolute;
    bottom: -155px;
    right: 0;
}


/*
*
    line transition
*
*/
#about .col_r:before{
    content: '';
    width: 10%;
    height: 1px;
    opacity: 0;
    background-color: #b18b43;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#about .col_r:after{
    content: '';
    width: 10%;
    height: 1px;
    opacity: 0;
    background-color: #b18b43;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

#about .line:before{
    content: '';
    width: 1px;
    height: 10%;
    opacity: 0;
    background-color: #b18b43;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#about .line:after{
    content: '';
    width: 1px;
    height: 10%;
    opacity: 0;
    background-color: #b18b43;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

#about .col_r.anim:before{
    width: 740px;
    height: 1px;
    opacity: 1;
    transition: width .85s cubic-bezier(0.19, 1, 0.22, 1), height .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: .6s;
}

#about .col_r.anim_e:before{
    width: 0 !important;
    opacity: 0 !important;
    transform: translateX(0);
    transition: width .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: 1s;
    transition-duration: 3.5s !important;
}

#about .col_r:after{ transform: translateX(740px);}
#about .col_r.anim:after{
    width: 740px;
    opacity: 1;
    transform: translateX(0);
    transition: width .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: .6s !important;
}

#about .col_r.anim_e:after{
    width: 0 !important;
    opacity: 0 !important;
    transform: translateX(0);
    transition: width .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: 1s;
    transition-duration: 3.5s !important;
}


#about .line:before{ transform: translateX(0);}
#about .col_r.anim .line:before{
    height: 100%;
    opacity: 1;
    transform: translateX(0);
    transition: height .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: .6s !important;
}

#about .col_r.anim_e .line:before{
    height: 0 !important;
    opacity: 0 !important;
    transform: translateY(0);
    transition: height .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: 1s;
    transition-duration: 3.5s !important;
}

#about .line:after{ transform: translateY(740px);}
#about .col_r.anim .line:after{
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: height .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: .6s !important;
}

#about .col_r.anim_e .line:after{
    height: 0 !important;
    opacity: 0 !important;
    transform: translateY(0);
    transition: height .85s cubic-bezier(0.19, 1, 0.22, 1), opacity .85s cubic-bezier(0.19, 1, 0.22, 1), transform .85s cubic-bezier(0.19, 1, 0.22, 1) !important;
    transition-delay: 1s;
    transition-duration: 3.5s !important;
}

/* --------------------------------------------------
*
    #find
*
-------------------------------------------------- */
#find{
    max-width: 1200px;
    margin: 0 auto 180px auto;
    position: relative;
}

#find .section_inner{
    text-align: center;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}

#find .section_inner h3{
    margin: 0 0 30px 0;
}

#find .section_inner h3 img{
    width: 420px;
}

#find .section_inner .desc{
    font-family: "Noto Serif JP", serif;
    margin: 0 0 35px 0;
    font-size: 13px;
    line-height: 1.615em;
    letter-spacing : 1.5px;
    margin-right:-1.5px;
    color:#000;
}

#find .img_slider{
    width: 100%;
    text-align: center;
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
    overflow: hidden;
}

#find .img_slider > div{
    width: 33.333%;
    height: 635px;
    vertical-align: bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    position: relative;
    transition: width .2s ease .0s;
}

#find .img_slider .pic img{
    width: 100%;
    height: 635px;
    opacity: 0;
}

#find .img_slider a{
    width: 100%;
    height: 100%;
    display: block;
    color: #FFF;
    position: relative;
}


#find .img_slider .desc{
    width: 100%;
    height: auto;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

#find .img_slider .ttl{
    margin: 0 0 18px 0;
    opacity: 0;
    font-family: "Forum", serif !important;
    font-size: 13px;
    letter-spacing: .12em;
    transform: translateY(35px);
    transition: opacity .45s ease-in, transform .85s ease-in;
    color: #FFF;
}
#find .img_slider .ttl img{ width: auto; height: 11px;}

#find .img_slider h4{
    margin: 0 0 15px 0;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .45s ease-in .15s, transform .85s ease-in .15s;
    position: relative;
}
#find .img_slider h4 img{
     width: auto;
     height: 25px;
    }

/* #find .img_slider .s01 h4{ left: -8px;}
#find .img_slider .s02 h4{ left: -5px;}
#find .img_slider .s03 h4{ left: -3px;} */

#find .img_slider .detail{
    margin: 0 0 40px 0;
    color: #FFF;
    font-family: "Forum", serif !important;
    font-size: 13px;
    letter-spacing: .12em;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .45s ease-in .18s, transform .85s ease-in .18s;
}

#find .img_slider.n0 .s01 .ttl{ transform: translateY(0); opacity: 1; transition: opacity .55s ease .2s, transform .55s ease .2s;}
#find .img_slider.n0 .s01 h4{ transform: translateY(0); opacity: 1; transition: opacity .5s ease .3s, transform .5s ease .3s;}
#find .img_slider.n0 .s01 .detail{ transform: translateY(0); opacity: 1; transition: opacity .45s ease .4s, transform .45s ease .4s;}

#find .img_slider.n1 .s02 .ttl{ transform: translateY(0); opacity: 1; transition: opacity .55s ease .2s, transform .55s ease .2s;}
#find .img_slider.n1 .s02 h4{ transform: translateY(0); opacity: 1; transition: opacity .5s ease .3s, transform .5s ease .3s;}
#find .img_slider.n1 .s02 .detail{ transform: translateY(0); opacity: 1; transition: opacity .45s ease .4s, transform .45s ease .4s;}

#find .img_slider.n2 .s03 .ttl{ transform: translateY(0); opacity: 1; transition: opacity .55s ease .2s, transform .55s ease .2s;}
#find .img_slider.n2 .s03 h4{ transform: translateY(0); opacity: 1; transition: opacity .5s ease .3s, transform .5s ease .3s;}
#find .img_slider.n2 .s03 .detail{ transform: translateY(0); opacity: 1; transition: opacity .45s ease .4s, transform .45s ease .4s;}

/*
    transition
*/

#find .slider_wrap a{ display: none;}
#find .slider_wrap.anim_e a{ display: block;}
#find .slider_wrap{ opacity: 1;}

#find .slider_wrap .s{ overflow: hidden;}
#find .slider_wrap .s:after{
    content: '';
    display: block;
    opacity: 1;
    width: 100%;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
}

#find .img_slider .s01:after{ background-color: rgba(100, 110, 125, .2);}
#find .img_slider .s02:after{ background-color: rgba(150, 130, 150, .2);}
#find .img_slider .s03:after{ background-color: rgba(140, 170, 185, .2);}

#find .slider_wrap.anim .s:after{
    height: 110%;
    opacity: 1;
    transition: height 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
}

#find .slider_wrap.anim_e .s:after{
    height: 0;
    opacity: 1;
    transition: height 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

#find .slider_wrap.anim_e .s01{ background-image:url(../images/ituwa/img_ituwa_p_arielle.jpg);}
#find .slider_wrap.anim_e .s02{ background-image:url(../images/ituwa/img_ituwa_p_fiore.jpg);}
#find .slider_wrap.anim_e .s03{ background-image:url(../images/ituwa/img_ituwa_p_chloris.jpg);}

.for_ie #find .slider_wrap .s01{ background-image:url(../images/ituwa/img_ituwa_p_arielle.jpg);}
.for_ie #find .slider_wrap .s02{ background-image:url(../images/ituwa/img_ituwa_p_fiore.jpg);}
.for_ie #find .slider_wrap .s03{ background-image:url(../images/ituwa/img_ituwa_p_chloris.jpg);}
.for_ie #find .slider_wrap{ opacity: 0;}
.for_ie #find .slider_wrap.anim{ opacity: 1; transition: opacity 2s ease;}

#find .slider_wrap.anim .s01:after{ transition-delay: .6s !important;}
#find .slider_wrap.anim .s02:after{ transition-delay: .7s !important;}
#find .slider_wrap.anim .s03:after{ transition-delay: .8s !important;}
#find .slider_wrap.anim_e .s01:after{ transition-delay: .1s !important;}
#find .slider_wrap.anim_e .s02:after{ transition-delay: .15s !important;}
#find .slider_wrap.anim_e .s03:after{ transition-delay: .2s !important;}


/* --------------------------------------------------
*
    #instagram
*
-------------------------------------------------- */
#instagram{
    max-width: 1200px;
    min-width: 1080px;
    text-align: center;
    margin: 180px auto 30px auto;
    position: relative;
}

#instagram .section_inner{
    margin: 0 0 30px 0;
}

#instagram h2{
    margin: 0 0 25px 0;
    text-align: center;
    position: relative;
}

#instagram h2 img{
    width: 344px;
}

#instagram ul{
    width: calc(100% - 80px);
    display: table;
    position: relative;
}

#instagram ul.r02{
    left: 80px;
}

#instagram ul li{
    width: 20%;
    overflow: hidden;
    display: table-cell;
    line-height: 0;
    opacity: 0;
}

#instagram .c_anim ul li.on{
    opacity: 0 !important;
}

#instagram ul li.on{
    opacity: 1 !important;
    transition: opacity .6s ease;
}

#instagram ul li img{
    width: 100%;
}

#online-consultation {
    position: fixed;
    top: 230px;
    right: 0;
    z-index: 1002;
    transition: 0.4s;
}
#online-consultation.close {
    transform: translateX(100%);
}
#online-consultation a {
    padding: 15px 85px 15px 35px;
    background-color: #F3EEE3;
    color: #B18B43;
    transition: 0.5s;
}
#online-consultation a:hover {
    color: #F3EEE3;
    background-color: #B18B43;
}
#online-consultation a:before,
#online-consultation a:after {
    position: absolute;
    content: '';
    height: 0;
    margin: auto;
    border-top: 1px solid #B18B43;
}
#online-consultation a:hover:before,
#online-consultation a:hover:after {
    border-color: #F3EEE3;
}
#online-consultation a:before {
    top: 0;
    bottom: 0;
    right: 20px;
    width: 40px;
}
#online-consultation a:after {
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px;
    transform: translate(1px ,-3px) rotate(45deg);
}


/*------------------------------------------------------------------------------------------
*
*
    ituwa_style(dress)
*
*
------------------------------------------------------------------------------------------ */

#wrap.ituwa_style{
    padding-top:57px;
}

/* slider */
.color_dress .inner .slider_wrap{
    position: relative;
}

.color_dress .inner .style_slider{
    text-align: center;
}

.color_dress .inner .style_slider img{
    width: auto;
    height: calc(100vh - 320px);
    max-height: 690px;
    min-height: 560px;
    line-height: 0;
    display: block;
    margin: 0 0 0 auto;
    opacity: 1 !important;
}

#empty{
    height: calc(100vh - 160px);
    min-height: 580px;
}

.slider_nav{
    margin-left: -20px;
    font-size: 16px;
    letter-spacing: .075em;
    color: #FFF;
    font-family: "Forum", serif !important;
    font-weight: 600;
    position: absolute;
    top: calc(50% - 10px);
    left: -40px;
    transform: translateY(-50%);
}

.slider_nav li{
    margin: 0 0 20px 0;
    position: relative;
    transition: margin 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.slider_nav li.on{ margin: 0 0 80px 0;}

.slider_nav li:after{
    content: '';
    display: block;
    width: 1px;
    height: 0;
    background-color: #FFF;
    position: absolute;
    left: calc(50% - 2px);
    bottom: 0;
    transition: height 1.2s cubic-bezier(0.23, 1, 0.32, 1), bottom 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider_nav li.on:after{
    height: 50px;
    bottom: -63px;
}



/* --------------------------------------------------
*
    #kv_style
*
-------------------------------------------------- */
#kv_style{
    margin: 0 0 80px 0;
    height: 100%;
    min-height: 100%;
    position: relative;
}

#kv_style .img img{
    display: none;
}

#kv_style .img_slider{
    height: 100%;
    min-height: 480px;
}

#kv_style .s03:after{ display: none !important;}

#kv_style .img{
    width: 100%;
    height: calc(100vh - 160px);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    transition: transform 8s linear;
}

#kv_style .i01{ background-image:url(../images/ituwa/style/pic_kv_arielle.jpg); }
#kv_style .i02{ background-image:url(../images/ituwa/style/pic_kv_fiore.jpg); }
#kv_style .i03{ background-image:url(../images/ituwa/style/pic_kv_chloris.jpg); }
    
#kv_style .title{
    width: 290px;
    height: 290px;
    display: table;
    /* background-color: #fff; */
    text-align: center;
    position: absolute;
    top: calc(50% - 145px);
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
#kv_style .title.left{
    left: 13.333%;
    right: auto;
    margin-left: 0;
    margin-right: 0;
}
#kv_style .title.right{
    left: auto;
    right: 13.333%;
    margin-left: 0;
    margin-right: 0;
}
#kv_style .title_inner{
    display: table-cell;
    vertical-align: middle;
}

#kv_style h1 img{
    height:178px;
    filter: brightness(0) invert(1);
}

/* --------------------------------------------------
*
    .color_dress
*
-------------------------------------------------- */
.empty{ height: calc(100vh - 160px);}

.color_dress{
    width: 100%;
    min-height: 610px;
    height: calc(100vh - 160px);
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: auto;
}

.color_dress.fixed.hide{ display: none !important;}

.color_dress.pos_fix{ z-index: -1;}

.color_dress.fixed{
    width: 100%;
    display: none;
    min-width: 1240px;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 200;
}

.color_dress.fixed.pos_fix{ display: block; visibility: visible;}

.color_dress.arielle{ background-color: #646e7d;}
.color_dress.fiore{ background-color: #968296;}
.color_dress.chloris{ background-color: #8caab9;}

.color_dress .inner{
    margin: 0 auto;
    position: relative;
    display: inline-block;
    top: calc((100vh - 160px)/2);
    transform: translateY(-50%);
}

.color_dress .inner .l{
    width: calc(50% - 50px);
    float: right;
    position: relative;
}

.color_dress .inner .l .slider_wrap{
    position: relative;
    right: 20px;
}

.color_dress .inner .l .slider_wrap img{
    opacity: 1 !important;
    transform: inherit !important;
}

.color_dress .inner .r{
    width: calc(50%);
    padding: 0 40px 0 0;
    opacity: 1 !important;
    box-sizing: border-box;
    display: block !important;
    float: right;
    vertical-align: middle;
    position: relative;
    /* top: 40px; */
    top:0;
    left: 20px;
}

.color_dress .desc_wrap{
    width: 100%;
    max-width: 475px;
    height: 100%;
    min-height: 690px;
    text-align: center;
    background-color: #fff;
    display: table;
    vertical-align: middle;
    position: relative;
}

.color_dress .desc_wrap .box{
    width: 100%;
    width: 50%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.color_dress .desc_wrap h3{
    margin: 45px 0;
}

.color_dress.fiore .desc_wrap h3 img{ height:50px;}
.color_dress.arielle .desc_wrap h3 img{ height:50px;}
.color_dress.chloris .desc_wrap h3 img{ height:50px;}


.color_dress .desc{
    padding: 0 20px;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    box-sizing: border-box;
}
.color_dress .desc >span{
    display: block;
    color:#000;
    font-size : 16px;
    line-height : 35px;
    letter-spacing : 2.4px;
}


#topic_path {
    margin: -40px 0 -30px 0;
}


/* --------------------------------------------------
*
    #other_style
*
-------------------------------------------------- */
#other_style{
    max-width: 1200px;
    margin: 80px auto 160px auto;
    position: relative;
}

#other_style .section_inner{
    text-align: center;
    position: relative;
}

#other_style ul{
    width: 100%;
    display: table;
}

#other_style li{
    width: 50%;
    display: table-cell;
    vertical-align: middle;
}
/* 
#other_style .section_inner .desc{
    margin: 110px 0 35px 0;
    font-size: 13px;
    line-height: 1.615em;
    background-color: rgba(255,255,255,0.7);
    padding: 10px;
} */


#other_style .section_inner a{
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    color: #fff;
    position: relative;
}

#other_style .section_inner .pic{
    overflow: hidden;
}

#other_style .section_inner .pic img{
    width: 100%;
    vertical-align:bottom;
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) .05s;
}

.is_pc #other_style .section_inner a:hover .pic img,
.is_sp #other_style .section_inner a.touch .pic img{
    transform: scale(1.05);
    transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) .05s;
}

.for_ie #other_style .section_inner .pic img{
    transform: rotate(.001deg);
}

.btn_more{
    width: 440px;
    height: 50px;
    margin: 80px auto;
    overflow: hidden;
    display: block;
    position: relative;
}

.btn_more a{
    width: 440px;
    height: 50px;
    box-sizing: border-box;
    display: block;
    font-size: 13px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 50px;
    color: #000;
    font-family: "Forum", serif;
    letter-spacing: .2em;
    line-height: 50px;
    transition: color .1s ease-in .0s, background .1s ease-in .0s;
    position: relative;
    z-index: 2;
}


.is_pc .btn_more:hover a,
.is_sp .btn_more.touch a{
    color: #fff;
    border: 1px solid #b18b43;
    background-color: #b18b43;
    transition: color .15s ease-out .05s, background .15s ease-out .05s;
}



}/* min-width : 751px */

.color_dress .inner .l .slider_wrap,
.color_dress .inner .r,
.slider_nav{
    transition: right .25s ease, left .25s ease;
}
@media screen and (min-width : 1440px){

.color_dress .inner .l .slider_wrap{
    right: 50px;
}

.color_dress .inner .r{
    left: 50px;
}

.slider_nav{
    left: -100px;
}

}