@charset "utf-8";

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

.slick-arrow {
    cursor: pointer;
}
.slider-ranking li img,
.slider-movie li img,
.slider-news li img{
    height:160px !important;
}
.slider-news .morelink img{
    margin: 47px auto;
}

.slider-promotion,
.slider-ranking,
.slider-movie {
    opacity: 0;
    transition: opacity 1s ease;
}
.slider-promotion.slick-initialized,
.slider-ranking.slick-initialized,
.slider-movie.slick-initialized {
    opacity: 1;
}
.slider-ranking li picture a,
.slider-movie li picture a,
.slider-news li a {
    overflow: hidden;
    margin: 0 auto 10px auto;
    display: table;
    width: 90%;
}
.slider-ranking li dl,
.slider-movie li dl,
.slider-news li dl {
    line-height: 1.3;
    width: 85%;
    margin: 0 auto;
    padding: 1em 0;
}
.slider-ranking li picture,
.slider-movie li picture,
.slider-news li picture {
    width: 100%;
    display: table;
}
.slider-ranking li picture img,
.slider-movie li picture img,
.slider-news li picture img {
    width: 100%;
}
.slider-ranking li dl dt,
.slider-movie li dl dt,
.slider-news li dl dt {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3em;
}
.slider-ranking li dl dd,
.slider-movie li dl dd,
.slider-news li dl dd {
    font-size: 0.8rem;
}
.slider-ranking .slick-arrow .prev-icon,
.slider-movie .slick-arrow .prev-icon,
.slider-news .slick-arrow .prev-icon,
.slider-announcer .slick-arrow .prev-icon,
.slider-ranking .slick-arrow .next-icon,
.slider-movie .slick-arrow .next-icon,
.slider-news .slick-arrow .next-icon,
.slider-announcer .slick-arrow .next-icon {
    position: absolute;
    width: 57px;
    height: 57px;
    z-index: 2;
}
.slider-ranking .slick-arrow .prev-icon,
.slider-movie .slick-arrow .prev-icon,
.slider-news .slick-arrow .prev-icon,
.slider-announcer .slick-arrow .prev-icon {
    left: -1em;
}
.slider-ranking .slick-arrow .next-icon,
.slider-movie .slick-arrow .next-icon,
.slider-news .slick-arrow .next-icon,
.slider-announcer .slick-arrow .next-icon {
    right: -1em
}
.slider-ranking .slick-arrow.slick-disabled,
.slider-movie .slick-arrow.slick-disabled,
.slider-news .slick-arrow.slick-disabled,
.slider-announcer .slick-arrow.slick-disabled {
    opacity: 0;
}
.link.sp {
    display: none;
}
.slider-ranking .slick-track {
    align-items: self-start !important;
}
.slider-movie .slick-track {
    align-items: self-start !important;
}

/* ----------------slider promotion---------------- */

.slider-promotion {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}
.slider-promotion .slider-img {
    overflow: hidden;
    width: 800px !important;
    height: 450px;
    margin: 0 30px;
}
.slider-promotion .slider-img img {
    height: 450px;
    width: 800px;
    border-radius: 50px;
}
.slider-promotion .slick-arrow {
    cursor: pointer;
    position: absolute;
    height: 1px;
    margin: 0 auto;
    display: table;
    width: 800px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}
.slider-promotion .slick-arrow .prev-icon {
    left: -1.5em;
    margin-top: 23%;
    position: absolute;
}
.slider-promotion .slick-arrow .next-icon {
    right: -1.5em;
    position: absolute;
    margin-top: 23%;
}
.slider-promotion .slick-list {
    z-index: 1;
}

/* ----------------flash---------------- */

.flash {
    border: 5px solid #d2d2d2;
    border-radius: 2em;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1300px;
    height: 5em;
    margin: 0 auto 50px auto;
    overflow: hidden;
}
.flash .title {
    background: #58d1ca;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 0.5em 0 1em;
    width: 12%;
    height: 100%;
    display: flex;
    border-radius: 1.5em 0 0 1.5em;
}
.flash-arrow {
    border-style: solid;
    border-width: 2.2em 0 2.2em 1em;
    border-color: transparent transparent transparent #58d1cb;
}
.flash .title p {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    margin: 0 auto;
    display: table;
}
.flash .content {
    padding: 0 2em;
    width: 90%;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}
.flash .content ul {
    width: 90%;
    position: relative;
    height: 100%;
}
.slick-slider .slick-track {
    display: flex;
    align-items: center;
}
.flash .content li {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-right: 0;
    opacity: 0;
    display: flex;
    align-items: center;
}
.flash .content li a {
    color: #212121;
    display: inline-block;
    width: auto;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 5s linear;    
}
.flash .content li a:hover {
    text-decoration: underline;
}





.fadeInDown {
  opacity: 0;
}
.fadeInDown.run {
  animation: fadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.fadeOutDown {
  opacity: 1;
}
.fadeOutDown.run {
  animation: fadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ----------------hotnews---------------- */

section.hotnews {
    position: relative;
    margin-top: 50px;
}
section.hotnews .inner {
    border: 5px solid #ed5385;
    border-radius: 30px;
    background: white;
    padding: 1.5em 3em 1em 10em;
    position: relative;
    top: -35px;
}
section.hotnews .circle {
    background: #ed5385;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 2em;
    top: -4em;
    width: 112px;
    height: 112px;
    z-index: 2;
}
section.hotnews .circle p {
    text-align: center;
    font-weight: 800;
    line-height: 1.3;
    color: white;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
}
section.hotnews p.sentence {
    font-size: 1rem;
    display: none;
}
section.hotnews p.sentence.on {
    display: block;
}
section.hotnews picture img {
    position: relative;
    top: 0;
    left: 100px;
}
section.hotnews .close-hotnews {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: absolute;
    right: -1em;
    top: -1em;
    cursor: pointer;
    border: 3px solid #ed5385;
}
section.hotnews .btn {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 1.5em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
    transition: all 0.5s;
    color: #ed5385;
}
section.hotnews .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
section.hotnews .btn.click {
    transform: rotate(45deg);
}

/* ----------------ranking---------------- */

section.ranking .titlewrap {
    margin: 0 auto 0 auto;
}
.slider-ranking .slick-track {
    padding-top: 55px;
}
.slider-ranking div {
    transition: none;
}
.slider-ranking li {
    position: relative;
}
.slider-ranking li picture a {
    border: 5px solid #d2d2d2;
    border-radius: 30px;
}
.slider-ranking li dl {
    width: 85%;
}
.slider-ranking li dl dd {
    color: #adadad;
}
.slider-ranking li:before {
    content: "";
    display: table;
    position: absolute;
    bottom: 90%;
    left: 8%;
    z-index: 2;
    background-repeat: no-repeat;
}
.slider-ranking li:first-child:before {
    width: 47px;
    height: 85px;
    background-image: url("../images/top/top_ranking_1.png");
}
.slider-ranking li:nth-child(2):before,
.slider-ranking li:nth-child(3):before,
.slider-ranking li:nth-child(4):before,
.slider-ranking li:nth-child(5):before {
    width: 43px;
    height: 58px;
}
.slider-ranking li:nth-child(2):before {
    background-image: url("../images/top/top_ranking_2.png");
}
.slider-ranking li:nth-child(3):before {
    background-image: url("../images/top/top_ranking_3.png");
}
.slider-ranking li:nth-child(4):before {
    background-image: url("../images/top/top_ranking_4.png");
}
.slider-ranking li:nth-child(5):before {
    background-image: url("../images/top/top_ranking_5.png");
}
section.ranking h2 {
    width: 347px;
    height: 72px;
    background-image: url(../images/top/top_title_ranking.png);
}
.slider-ranking .slick-arrow .prev-icon,
.slider-ranking .slick-arrow .next-icon {
    top: 30%;
}

.slider-movie .slick-track {
}
.slider-movie div {
    transition: none;
}
.slider-movie li {
    position: relative;
}
.slider-movie li picture a {
    border: 5px solid #d2d2d2;
    border-radius: 30px;
}
.slider-movie li dl {
    width: 85%;
}
.slider-movie li dl dd {
    color: #adadad;
}
.slider-movie li:before {
    content: "";
    display: table;
    position: absolute;
    bottom: 90%;
    left: 8%;
    z-index: 2;
    background-repeat: no-repeat;
}
.slider-movie .slick-arrow .prev-icon,
.slider-movie .slick-arrow .next-icon {
    top: 20%;
}

/* ----------------ad-1---------------- */

section.ad-1 {
    margin-bottom: 100px;
}
section.ad-1 img {
    display: table;
    margin: 0 auto;
}

/* ----------------ad-2---------------- */
.slick-slide a {
    background-color: white;
    opacity: 1;
}
.slick-slide a:hover img{
    opacity: 0.6;
}

section.ad-2 {
    margin-bottom: 30px;
}
section.ad-2 ul,
section.ad-3 ul {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
section.ad-2 ul li,
section.ad-3 ul li {
    flex-shrink: 0;
}
section.ad-2 ul li {
    width: 304px;
    height: 150px;
    margin: 0 25px 20px 0;
}
section.ad-2 ul li:nth-child(4n) {
    margin: 0 0 20px 0;
}
section.ad-2 ul li a,
section.ad-3 ul li a {
    background-color: white;
    display: table;
    border-radius: 15px;
    border: 5px solid #d2d2d2;
    overflow: hidden;
    line-height: 0;
    opacity: 1;
}
section.ad-2 ul li a:hover img,
section.ad-3 ul li a:hover img{
    opacity: 0.6;
}
section.ad-2 ul li img {
    width: 304px;
    height: 150px;
}

/* ----------------ad-3---------------- */

section.ad-3 ul li {
    width: 242px;
    height: 120px;
    margin: 0 20px 25px 0;
}
section.ad-3 ul li:nth-child(5n) {
    margin: 0 0 25px 0;
}
section.ad-3 ul li img {
    width: 242px;
    height: 120px;
}


section.ad-3 ul li:nth-child(6),
section.ad-3 ul li:nth-child(7),
section.ad-3 ul li:nth-child(8),
section.ad-3 ul li:nth-child(9),
section.ad-3 ul li:nth-child(10) {
    margin-bottom: 0;
}

/* ----------------news---------------- */

section.news {
    margin-bottom: 80px;
}
section.news h2 {
    width: 114px;
    height: 70px;
    background-image: url(../images/top/top_title_news.png);
}
section.news .wrap {
    position: absolute;
    left: 0;
}
section.news .imgbtn {
    width: 374px;
    height: 84px;
    display: flex;
    position: relative;
    align-items: center;
    text-indent: -9999em;
    background: url(../images/top/top_bnr_post.png) no-repeat;
}
section.news .imgbtn:after {
    content: "";
    width: 17px;
    height: 17px;
    display: table;
    position: absolute;
    right: 15px;
    transition: all 0.3s;
    background: url(../images/common/arrow.png) no-repeat;
    background-size: contain;
}
section.news .imgbtn:hover {
    filter: brightness(90%); 
}
section.news .imgbtn:hover:after {
    right: 5px;
}
.slider-news li a,
.slider-announcer picture {
    border: 5px solid #d2d2d2;
    border-radius: 30px;
}
.slider-news li dl dt {
    color: #424242;
    height: 3em;
}
.slider-news li dl dd {
    color: #424242;
    opacity: 0.7;
    height: 1em;
}
.slider-news .slick-arrow .prev-icon,
.slider-news .slick-arrow .next-icon {
    top: 40%;
}
.slider-news .slick-track {
    align-items: flex-start !important;
}
.slider-news li.morelink {
    position: relative;
}
.slider-news li.morelink:after {
    content: "";
    width: 172px;
    height: 61px;
    display: table;
    position: absolute;
    /* transform: translate(-50%, 0px);
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px); 
    left: 50%; */
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    background: url(/common/images/top/news_more.png) no-repeat;
}
.slider-news li.morelink a {
    display: table;
    z-index: 2;
    position: relative;
}
.slider-news li.morelink img {
    opacity: 1;
}

/* ----------------movies---------------- */

section.movies .slider-ranking li:before {
    content: none;
}
section.movies .slider-ranking .slick-track {
    padding-top: 0;
}
section.movies h2 {
    width: 339px;
    height: 72px;
    background-image: url("../images/top/top_title_movies.png");
}
section.movies .movies-pipitan {
    position: absolute;
    left: 3%;
    top: 3%;
}
section.movies .link {
    position: relative;
}
section.movies .link:first-of-type {
    margin-bottom: 0.5em;
}
section.movies .btns {
    position: absolute;
    right: 0;
}
section.movies .btns.sp {
    display: none;
}
section.movies .slider-ranking .slick-arrow .prev-icon,
section.movies .slider-ranking .slick-arrow .next-icon {
    top: 20%;
}

.slider-ranking img,
.slider-news img,
.slider-movie img {
  transition: transform .4s ease;
}

.slider-ranking img:hover,
.slider-news img:hover,
.slider-movie img:hover {
  transform: scale(1.1);
}

/* ----------------information---------------- */

section.info {
  padding-bottom: 20px;
}
section.info h2 {
    width: 263px;
    height: 69px;
    background-image: url("../images/top/top_title_info.png");
}
section.info .inner {
    padding: 2em;
    border-radius: 30px;
    position: relative;
    background: white;
    border: 5px solid #d2d2d2;
}
section.info .inner ul {
    /* overflow-y: scroll;
    height: 140px; */
}
section.info .inner ul li {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 2px dotted #000;
    font-size: 1rem;
    font-weight: 700;
}
section.info .inner ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
section.info .inner ul::-webkit-scrollbar{
   width: 10px;
}
section.info .inner ul::-webkit-scrollbar-track{
   background-color: #d2d2d2;
}
section.info .inner ul::-webkit-scrollbar-thumb{
   background-color: black;
   border-radius: 1em;
}
/*Firefox*/
section.info .inner ul {
    scrollbar-width: thin;/*細さ(幅・高さ両方に適用)*/
    scrollbar-color: #000000 #d2d2d2;/*つまみの色 軌道の色*/
}
section.info .inner ul li a {
    color: #212121;    
}
section.info .inner ul li a:hover {
    text-decoration: underline;
}
section.info .info-pipitan {
    position: absolute;
    left: 20px;
    top: -6px;
}
.accordion-btn {
    background-color: #58d1ca;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    left: 0;
    margin: auto;
    padding: 5px 15px;
    position: absolute;
    right: 0;
    bottom: 1em;
    text-align: center;
    transition: all .2s;
    width: fit-content;
    z-index: 2;
    border-radius: 10px 0;
}


/* ----------------announcer---------------- */

section.announcer h2 {
    width: 243px;
    height: 71px;
    background-image: url("../images/top/top_title_announcer.png");
}
.slider-announcer li {
    color: #424242;
    display: table !important;
    margin: 0 auto;
}
.slider-announcer li p {
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
}
.slider-announcer picture {
    margin-bottom: 10px;
    display: table;
    overflow: hidden;
}
.slider-announcer .slick-arrow .prev-icon,
.slider-announcer .slick-arrow .next-icon {
    top: 37%;
}
.btn-announcer a.link {
    position: relative;
    width: 15em;
    margin: 2em 0 0 auto;
}
section.announcer .slick-slide img {
    width: 275px;
}

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

.titlewrap {
    margin: 0 auto 40px auto;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.titlewrap h2 {
    background-repeat: no-repeat;
    text-indent: -9999em;
    margin: 0 auto;
    display: table;
}

/* ----------------media query---------------- */

@media screen and (max-width : 42em) {

    /* contents */
    .flash {
        width: 94%;
        height: 3em;
        border: 3px solid #d2d2d2;
        border-radius: 2em;
        margin: 0 auto 20px auto;
    }
    .flash .title {
        width: auto;
        white-space: nowrap;
    }    
    .flash .title p {
        font-size: 1.0rem;
    }
    .flash .content li {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    @-moz-document url-prefix() {
        .flash .content li {
            font-size: 0.7rem;
        }
    }
    #container {
        width: 100%;
    } 
    .slider-promotion {
        padding: 0 5%;
    }
    .slider-promotion .slick-arrow img {
        width: 35px;
    }
    @-moz-document url-prefix() {
    }
    .slider-promotion .slick-arrow {
        width: 100%;
    }
    .slider-promotion .slick-arrow .prev-icon {
        left: 3%;
        margin-top: 20%;
    }
    .slider-promotion .slick-arrow .next-icon {
        right: 3%;
        margin-top: 20%;
    }
    .slider-promotion .slider-img {
        padding: 0 0;
        width: 100% !important;
        height: auto;
        margin: 0 0;
    }
    .slider-promotion .slider-img img {
        border-radius: 15px;
        height: auto;
        width: 100%;
    }    
    section.hotnews {
        margin-top: 30px;
        margin-bottom: 0;
    }
    #container {
        width: 94%;            
    }
    section.hotnews .inner {
        border: 3px solid #ed5385;
        border-radius: 15px;
        padding: 1em;
    }
    section.hotnews .circle {
        z-index: -1;
        width: 85px;
        height: 85px;
        left: 0.5em;
    } 
    section.hotnews .circle p {
        font-size: 1.0rem;
        position: relative;
        top: -0.5em;
    }  
    section.hotnews .close-hotnews {
        zoom: 0.7;
    }
    @-moz-document url-prefix() {
        section.hotnews .close-hotnews {
        transform: scale(0.7);
        }
    }
    section.hotnews picture img {
        zoom: 0.8;
        z-index: -1;
        left: 72px;
    } 
    @-moz-document url-prefix() {
        section.hotnews picture img {
            width: 20vw;
            left: 60px;
        }
    }
    /* ranking */ 
    section.ranking .titlewrap {
        margin: 0 auto -1em auto;
    }
    .slider-ranking .slick-track {
        padding-top: 33px;
    }
    .slider-ranking li:before {
        zoom: 0.7;
    }
    @-moz-document url-prefix() {
        .slider-ranking li:before {
        transform: scale(0.7);
        }
    }
    .slider-ranking li picture a {
        border: 3px solid #d2d2d2;
        border-radius: 15px;
    } 
    ul.slider-ranking {
    }  
    .slider-ranking li dl dt,
    .slider-news li dl dt {
        font-size: 0.85rem;
    }    
    .slider-ranking li dl dd,
    .slider-news li dl dd {
        font-size: 0.7rem;
    }
    .slider-ranking .slick-arrow .prev-icon,
    .slider-ranking .slick-arrow .next-icon {
        top: 35.5%;
    }    
    /* ad-1 */
    section.ad-1 {
        margin-bottom: 30px;
    }
    /* news */
    section.news {
        margin-bottom: 30px;
    } 
    section.news .wrap {
        position: relative;
        padding: 0 5%;
        display: table;
        width: 100%;
        order: 2;
    }
    section.news .imgbtn {
        width: 100%;
        height: 0;
        padding-top: 22.3404255319%;
        background-size: contain;
        margin-bottom: 10px;
    }
    section.news h2 {
        order: 1;
        margin-bottom: 20px;
        position: relative;
        display: table;
    }  
    /* movies */
    section.movies .btns.pc {
        display: none;
    }
    section.movies .btns.sp {
        position: relative;
        display: flex;
        justify-content: center;
    }
    section.movies .titlewrap {
        margin: 0 auto 50px auto;
    }  
    section.movies .movies-pipitan {
        zoom: 0.55;
        left: 8%;
        top: 70px;
    } 
    @-moz-document url-prefix() {
        section.movies .movies-pipitan {
        width: 20vw;
        }
    } 
    section.movies .link:first-of-type {
        margin-bottom: 0;
        margin-right: 10px;
    }
    .slider-movie li picture a {
        border: 3px solid #d2d2d2;
        border-radius: 15px;
    } 

    section.movies .slider-ranking .slick-arrow .prev-icon,
    section.movies .slider-ranking .slick-arrow .next-icon,
    section.movies .slider-movie .slick-arrow .prev-icon,
    section.movies .slider-movie .slick-arrow .next-icon {
        top: 30%;
    }
    /* info */
    section.info {
      padding-bottom: 20px;
    }
    section.info .info-pipitan {
        zoom: 0.55;
        top: 40px;
    }
    @-moz-document url-prefix() {
        section.info .info-pipitan {
            width: 20vw;
            top: 48px;
        }
    }
    section.info .titlewrap {
        margin: 0 auto 50px auto;
    }  
    section.info .inner {
        border: 3px solid #d2d2d2;
        border-radius: 15px;
        padding: 1em;
    }
    section.info .inner ul li {
        font-size: 0.8rem;
    }
    .accordion-btn {
        font-size: 14px;
    }
    /* announcer */
    .slider-announcer li p {
        font-size: 0.9rem;
    }
    /* announcer */
    .slider-announcer li a {
    }
    section.announcer .slick-slide img {
        margin: 0 auto;
        width: 100%;
    }
    .slider-announcer picture {
        border: 3px solid #d2d2d2;
        border-radius: 15px;
        margin: 0 5px 5px 5px;
    }
    section.announcer .slick-slide {
        width: calc(100% / 2);
    }
    .btn-announcer a.link {
        margin: 1em auto 0 auto;
    }
    /* ad-2 */
    section.ad-2 ul li a,
    section.ad-3 ul li a {
        border-radius: 10px;
        border: 3px solid #d2d2d2;
    }
    section.ad-2 ul li img,
    section.ad-3 ul li img {
        width: 100%;
        height: 100%;
    }
    section.ad-2 ul,
    section.ad-3 ul {
        width: 100%;
    }
    section.ad-2 ul li {
        width: calc(100% / 2 - 5px);
        height: auto;
        margin: 0 10px 10px 0;
    }
    section.ad-2 ul li:nth-child(2n) {
        margin: 0 0 10px 0;
    }
    /* ad-3 */
    section.ad-3 ul li,
    section.ad-3 ul li:nth-child(5n) {
        width: calc(100% / 3 - 5px);
        height: auto;
        margin: 0 7px 10px 0;
    }
    section.ad-3 ul li:nth-child(3n) {
        margin: 0 0 0 0;
    }
    section.ad-3 ul li:nth-child(6),
    section.ad-3 ul li:nth-child(7),
    section.ad-3 ul li:nth-child(8),
    section.ad-3 ul li:nth-child(9),
    section.ad-3 ul li:nth-child(10) {
        margin-bottom: 10px;
    } 
    
    /* common */   
    section {
        margin-bottom: 30px;
    }
    section.hotnews p.sentence {
        font-size: 0.8rem;
    }
    .titlewrap {
        margin: 0 auto 15px auto;
        flex-flow: column;
    }   
    .titlewrap h2 {
        zoom: 0.6;
    }
    @-moz-document url-prefix() {
        .titlewrap h2 {
        transform: scale(0.5);
        }
    }
    .slider-ranking li img,
    .slider-movie li img,
    .slider-news li img{
        width:100% !important;
        height:auto !important;
    }
    .slider-news .morelink img{
        margin: 35px auto;
    }
    .slider-ranking .slick-arrow .next-icon,
    .slider-movie .slick-arrow .next-icon,
    .slider-news .slick-arrow .next-icon,
    .slider-announcer .slick-arrow .next-icon,
    .slider-ranking .slick-arrow .prev-icon,
    .slider-movie .slick-arrow .prev-icon,
    .slider-news .slick-arrow .prev-icon,
    .slider-announcer .slick-arrow .prev-icon {
        width: 35px;
        height: 35px;
    }
    @-moz-document url-prefix() {
    .slider-ranking .slick-arrow .next-icon,
    .slider-movie .slick-arrow .next-icon,
    .slider-news .slick-arrow .next-icon,
    .slider-announcer .slick-arrow .next-icon,
    .slider-ranking .slick-arrow .prev-icon,
    .slider-movie .slick-arrow .prev-icon,
    .slider-news .slick-arrow .prev-icon,
    .slider-announcer .slick-arrow .prev-icon {
        
        }
    }
    .slider-ranking .slick-arrow .next-icon,
    .slider-movie .slick-arrow .next-icon,
    .slider-news .slick-arrow .next-icon,
    .slider-announcer .slick-arrow .next-icon {
        right: -0.5em;
    } 
    .slider-ranking .slick-arrow .prev-icon,
    .slider-movie .slick-arrow .prev-icon,
    .slider-news .slick-arrow .prev-icon,
    .slider-announcer .slick-arrow .prev-icon {
        left: -0.5em;
    }
    .slider-ranking li dl,
    .slider-movie li dl,
    .slider-news li dl {
        padding: 0.5em 0;
    }   
    section.ad-1 img,
    section.ad-2 img {
        width: 100%;
    }
    section.news .link.sp,
    section.movies .link.sp,
    section.announcer .link.sp {
        display: table;
        margin: 0 auto;
        position: relative;
    }
    section.news .link.sp p,
    section.movies .link.sp p,
    section.news .link.sp:after,
    section.movies .link.sp:after,
    section.announcer .link.sp p,
    section.announcer .link.sp:after {
        display: inline-block;
    }
    .slider-news li a {
        border: 3px solid #d2d2d2;
        border-radius: 15px;
        width: 100%;
    } 
    .slider-ranking li picture a,
    .slider-movie li picture a,
    .slider-news li a {
        width: 98%;
    }
    section.announcer .slick-slider {
        margin-bottom: 10px;
    }
    
       
}