﻿/*---------------------------------------------
TOPICS
---------------------------------------------*/
#home .topics {
}

    #home .topics h2 {
        height: 40px;
        margin: 5px 0 0px 0;
    }

#home .topicsbox {
    height: 410px;
    overflow: auto;
}

.topics_block {
    /*clear:both;*/
    border-bottom: 1px dotted #ccc;
    overflow: hidden;
    list-style: none;
    text-align: left;
}

#home_topics ul {
    list-style: none;
}

/*INSIDE*/
/*Topics*/
#home .topicsbox {
    width: 640px;
    /*border:#A88A8A 1px solid;*/
    background-color: #FFF;
    /*margin-right:4px;
  _margin-right:3px;*/
    margin-bottom: 10px;
}

#home .topicsbox {
    width: auto;
    /*_width:340px;*/
    background-color: #fff;
    padding-left: 5px;
    padding-top: 5px;
    text-align: center;
}

    #home .topicsbox img {
        clear: both;
        float: left;
        margin: 3px 3px 5px 0px;
    }

    #home .topicsbox p {
        color: #666;
        font-size: 12px;
        margin: 2px 0 2px 0;
        line-height: 130%;
        padding-right: 5px;
        text-align: left;
    }

    #home .topicsbox .title {
        color: #E93F76;
        font-weight: bold;
        font-size: 14px;
        margin: 3px 0 0 0;
        text-align: left;
    }

    #home .topicsbox .navi {
        color: #666;
        font-size: 10px;
        text-align: center;
        margin-top: 5px;
        /*border-top:1px dotted #ccc;*/
        padding-top: 5px;
    }



/** マーキーさせたい部分 */
.marquee {
    overflow: hidden; /* スクロールバーが出ないように */
    position: relative; /* マーキーの内容部分の位置の基準になるように */
    padding: 0px;
    margin: 0px;
}
    /* マーキーの内容部分の高さ確保 */
    .marquee::after {
        white-space: nowrap;
        display: inline-block;
    }
    /* マーキーさせたい部分(内側) */
    .marquee > .marquee-inner {
        position: absolute;
        top: 0;
        white-space: nowrap;
        animation-name: marquee;
        animation-timing-function: linear;
        animation-duration: 20s;
        animation-iteration-count: infinite;
    }

/** マーキーアニメーション */
@keyframes marquee {
    0% {
        left: 100%;
        transform: translate(0);
    }

    100% {
        left: 0;
        transform: translate(-100%);
    }
}
