/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */


/* ---------------------------------------- common */

#visual .yellow>* {
    background: #ff0;
}

#visual .red>* {
    background: #aa0000;
}

#visual .blue>* {
    background: #00f;
}

#visual .t-style .dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

#visual .t-style .dots > i {
    display: block;
    float: left;
    width: calc(100% / 7);
    height: 10px;
    background: #fff;
}

#visual .t-style .dots > i:nth-of-type(1) {
    background: #FFD64F;
}

#visual .t-style .dots > i:nth-of-type(2) {
    background: #F66064;
}

#visual .t-style .dots > i:nth-of-type(3) {
    background: #7C3C83;
}

#visual .t-style .dots > i:nth-of-type(4) {
    background: #D65671;
}

#visual .t-style .dots > i:nth-of-type(5) {
    background: #EE9175;
}

#visual .t-style .dots > i:nth-of-type(6) {
    background: #6796D7;
}

#visual .t-style .dots > i:nth-of-type(7) {
    background: #F7EDF3;
}

#visual .t-style .dots > i.focus {
    border-bottom: 2px solid #fff;
}

#visual .t-style .next,
#visual .t-style .prev {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    bottom: 20px;
}

#visual .t-style .prev:hover,
#visual .t-style .next:hover {
    opacity: 0.6;
}

#visual .t-style .prev {
    left: 20px;
    border-top: 8px solid transparent;
    border-right: 12px solid #F7EDF3;
    border-bottom: 8px solid transparent;
}

#visual .t-style .next {
    left: 35px;
    border-top: 8px solid transparent;
    border-left: 12px solid #F7EDF3;
    border-bottom: 8px solid transparent;
}

#visual .m-nav {
    text-align: center;
}

#visual .m-nav > i {
    display: inline-block;
    margin: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #aaa;
}

#visual .m-nav > i.focus {
    background: #ff0;
}

#visual .m-arrow {
    text-align: center;
}

#visual .m-arrow > button {
    width: 100px;
    height: 35px;
    outline: 0;
    border: 0;
    background: #479FA4;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    border-top: 2px solid #76C3C1;
    border-bottom: 2px solid #404E4F;
    margin: 2px;
}

#visual .slideimg {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}
#visual .slideimg img {
    width: 100%;
}

#visual .m-arrow > button:hover {
    background: #378F94;
}

@media (max-width: 599px) {

    #visual {
        width: 100%;
        height: 360px;
    }
    #visual .slideimg {
        height: 360px;
    }

} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {

    #visual {
        width: 100%;
        height: 480px;
    }
    #visual .slideimg {
        height: 480px;
    }

} /* end 600-959 */

@media (min-width: 960px) {

    #visual {
        width: 100%;
        height: 560px;
    }
    #visual .slideimg {
        height: 560px;
    }

} /* 960- */