/* CSS Document */

.box_contents .para {
	display: flex;
	flex-wrap: wrap;
}
.box_contents .para::after {
	content: '';
	width: 100%;
	height: 3px;
	order: -1;
	display: block;
	background-color: #6890ba;
}
.tab_class {	/* タブ */
	margin-right: 3px;
	padding: 6px 1px 5px;
    text-align: center;
	flex: 1;
	order: -1;
    font-size: 12px;
	color: #444;
	background-color: #aac7e0;
	transition: 0.5s;
	cursor: pointer;
}
.tab_class_r {
    margin-right: 0;
}
input[name="tab_name"] {
    display: none;
}
.content_class {	/* 本文 */
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
input:checked + .tab_class {
	color: #fff;
	background-color: #6890ba;
}
input:checked + .tab_class + .content_class {
	padding-top: 15px;
	height: auto;
	overflow: auto;
	transition: 0.5s opacity;
	opacity: 1;
}
.t_time {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	padding: 2px 0 3px;
	color: #fff;
	background-color: #888;
}
.t_box1 .t_time {
	background-color: #e5b1d0;
}
.t_box2 .t_time {
	background-color: #f7c371;
}
.t_box3 .t_time {
	background-color: #a9d391;
}
.t_box0 .t_time {
	background-color: #7abde8;
}
.t_band {
	padding: 10px;
	border: 1px solid #aaa;
	border-top: none;
}
.t_photo {
	width: 89px; /* 一番大きいバンド写真の横幅 */
	height: 50px;
	padding-top: 6px;
	padding-right: 8px;
	text-align: center;
	float: left;
}
.p_tate {
	height: 70px;
}
.t_photo img {
	height: 100%;
    transition: all 0.3s;/*アニメーション設定*/
}
.t_photo a:hover img {
	opacity: 0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha( opacity=75 )";
}
.t_text {
	overflow: hidden;
	line-height: 1.4em;
}
.t_text_center {
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}
.s_name {
	font-size: 11px;
}
.b_name {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.8em;
}
.p_name {
	font-size: 11px;
	color: #888;
}
.t_line {
	width: 4px;
	height: 20px;
	margin: 0 auto;
	background-color: #888;
}
.o_time {
    padding-top: 20px;
    font-size: 12px;
    line-height:1.6em;
}
/* スマホ横～ */
@media screen and (min-width:480px) {
	.p_tate {
		height: 55px;
	}
}
/* Kindle縦～ */
@media screen and (min-width:550px) {
	.t_photo, .p_tate {
		width: 98px; /* 一番大きいバンド写真の横幅 */
		height: 55px;
		padding-top: 4px;
	}
}
/* タブレット縦～ */
@media screen and (min-width:750px) {
    .tab_class {	/* タブ */
        padding: 10px 1px 8px;
        font-size: 13px;
    }
    input:checked + .tab_class + .content_class {
        padding-top: 20px;
    }
	.t_band {
		padding: 12px;
	}
	.t_photo {
		width: 107px; /* 一番大きいバンド写真の横幅 */
		height: 60px;
		padding-top: 5px;
	}
	.s_name {
		font-size: 12px;
	}
	.b_name {
		font-size: 16px;
		line-height:1.9em;
	}
	.p_name {
		font-size: 12px;
	}
    .o_time {
        padding-top: 25px;
    }
}
/* PC */
@media screen and (min-width:1024px) {
	.t_band {
		padding: 14px;
	}
	.t_time {
		font-size: 16px;
		padding: 3px 0 4px;
	}
	.t_photo {
		width: 116px;
		height: 65px;
		padding-top: 2px;
	}
	.t_line {
		width: 5px;
		height: 25px;
	}
}
/* PC */
@media screen and (min-width:1366px) {
	.t_band {
		padding: 18px;
	}
	.t_photo {
		width: 125px;
		height: 70px;
		padding-top: 0;
	}
}