﻿@charset "utf-8";

/*--------------------------------------

  schedule.css

---------------------------------------*/
#schedule .cast_list {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}
#schedule h3.date {
    margin-bottom: 40px;
    border-top: solid 1px #fff/*テキストカラー*/;
    border-bottom: solid 1px #fff/*テキストカラー*/;
    font-size: 2rem;
    text-align: center;
    padding: 10px;
}
#schedule .cast_list li {
    position: relative;
    display: block;
    float: left;
    width: 22%;
    margin-right: 4%;
    margin-bottom: 40px;
}
#schedule .cast_list li a {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
#schedule .cast_list li a img {
    width: 100%;
    height: 200px;
}
#schedule .cast_list li a .girl_info {
    position: absolute;
    bottom: 0;
    padding: 4px;
    display: block;
    width: 100%;
    color: #fff;
    background: -webkit-linear-gradient( top, rgba(80, 80, 80, 0) 0, rgba(40, 40, 40, .7) 90%);
    background: linear-gradient( to bottom, rgba(80, 80, 80, 0) 0, rgba(40, 40, 40, .7) 90%);
    line-height: 1.4;
    font-size: 1.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#schedule .cast_list li a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
#schedule .cast_list li:nth-of-type(4n) {
    margin-right: 0;
}
@media screen and (max-width:960px) {
#schedule .cast_list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 20px;
}
#schedule .cast_list li a,
#schedule .cast_list li a img {
    width: 100%;
    height: 180px;
}
#schedule .cast_list li:nth-of-type(4n) {
    margin-right: 5%;
}
#schedule .cast_list li:nth-of-type(3n) {
    margin-right: 0;
}
}
@media screen and (max-width:640px) {
#schedule h3.date {
    margin-bottom: 20px;
    font-size: 1.6rem;
}
#schedule .cast_list li {
    width: 32%;
    margin-right: 2%;
}
#schedule .cast_list li:nth-of-type(4n) {
    margin-right: 2%;
}
#schedule .cast_list li:nth-of-type(3n) {
    margin-right: 0;
}
}
@media screen and (max-width:480px) {
#schedule .cast_list li a,
#schedule .cast_list li a img {
    width: 100%;
    height: 130px;
}
#schedule .cast_list li a .girl_info {
    font-size: 1.1rem;
}
}
#schedule .cast_list li strong {
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#schedule .non_list {
    text-align: center;
    padding-bottom: 50px;
    line-height: 2;
}