﻿@charset "UTF-8";

header {
    position: relative;
}
header h1 {
    display: inline-block;
    color: #fff;
    font-size:14px;
    padding: 14px 10px;
}
header svg {
    width: 100px;
    float: right;
    margin: 0 6px;
}
.list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #feeff7;
}
.list li {
    position: relative;
    width: 50%;
    position: relative;
    border: solid 1px #ddd;
    box-sizing: border-box;
}
.list li:nth-child(2n) {
    border-left: none;
}
.list li.channel::before {
    content: "\3044\3061\3054\30C1\30E3\30F3\30CD\30EB";
    position: absolute;
    top: 2px;
    left: 2px;
    height: 14px;
    line-height: 1.2;
    padding: 2px 8px 1px 8px;
    border: solid 1px rgba(75, 190, 190, .9);
    border-radius: 16px;
    color: #fff;
    background: rgba(75, 190, 190, .9);
    font-size: 11px;
    z-index: 1;
    box-shadow: 1px 1px 0 1px rgba(0, 0, 0, .2);
}
.list li img {
    width: 100%;
}
.list li .bt {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(https://www.15navi.com/pc/img/common/bt_play02.png) no-repeat left top;
    overflow: hidden;
}
.list li p.label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    box-sizing: border-box; 
    background: rgba(0,0,0,0.7);
    font-size: 12px;
}
.list li p.label span {
    display: block;
    width: 100%;
    max-height: 2.8em; /* 2em x line-height */
    line-height: 1.4;
    color: #fff;
    overflow: hidden;
}
.list li a {
    display: block;
}
.list li a:hover {
    opacity: .8;
    transition: all .2s ease;
}
/**/
footer {
    margin-bottom: 60px;
    padding: 10px;
    text-align: right;
    background: #fff;
}
footer p a {
    font-size: 12px;
    color: #f772b7;
    position: relative;
}
footer p a::after {
    display: block;
    content: "";
    background: #dcdcdc;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: -21px;
    transition: all .2s ease-out;
}
footer p a::before {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 5px;
    left: -17px;
    z-index: 1;
}
footer p a:hover::after {
   background: #f772b7;
}

@media screen and (max-width:750px) {
.list li {
    width: 100%;
    margin-bottom: 10px;
}
.list li:nth-child(2n) {
    border-left: solid 1px #ddd;
}
.list li:nth-last-child(1) {
    margin-bottom: 0;
}
.list li p.label {
    font-size: 11px;
}
}
@media screen and (max-width:340px) {
.list li p.label {
    padding: 4px;
}
}

/*カラーオプション*/
.default header {
    background: #f88ac3;
}
.default header svg {
    fill: #fff;
}
.default ul {
    background: #feeff7;
}
/**/
.black {
    background: #666;
}
.black header {
    background: #000;
}
.black header svg {
    fill: #fff;
}
.black ul {
    background: #ccc;
}
/*ヘッダーサイズオプション*/
header.min {
    position: relative;
}
header.min h1 {
    padding: 6px;
}
header.min svg {
    display: none;
}