@charset "utf-8";

/*============

contents.css

=============*/

/*-------------

contents-box

--------------*/

.contents-box {
	margin-top: 2rem;
}

.contents-box__title {
	position: relative;
	cursor: pointer;
	padding: 1.5rem 1.5rem 1.5rem 7rem;
	transition: all .5s ease;
	font-size: 2.2rem;
	font-weight: bold;
	background-color: #efefef;
	margin-top: 2rem;
	border-radius: 10rem;
}

.contents-box__title::before,
.contents-box__title::after {
	position: absolute;
	content: "";
	width: 1.6rem;
	height: 0.2rem;
	background-color: #e60012;
}

.contents-box__title::before {
	top: 48%;
	left: 3rem;
	transform: rotate(0deg);
}

.contents-box__title::after {
	top: 48%;
	left: 3rem;
	transform: rotate(90deg);
	transition: all 0.3s;
}

/* contents-box__title.close */

.contents-box__title.close::before {
	transform: rotate(0deg);
}

.contents-box__title.close::after {
	transform: rotate(0deg);
	transition: all 0.3s;
}

/* contents-box__unit */

.contents-box__unit {
	display: none;
	padding-bottom: 4rem;
}

.contents-box__txt {
	margin-top: 1rem;
}

.contents-box__second-title {
    font-size: 2.0rem;
    font-weight: bold;
    padding-left: 2rem;
    position: relative;
    margin-top: 4rem;
}

.contents-box__second-title:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background-color: #e60012;
}

/* disc-list */

.content-second-title + .disc-list {
	margin-top: 4rem;
}

.disc-list .disc-list__item--link:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -0.4rem;
	width: 0.8rem;
	height: 0.8rem;
	transform: rotate(45deg);
	border-top: 2px solid #e60012;
	border-right: 2px solid #e60012;
	margin: auto;
	background-color: transparent;
	border-radius: 0;
}

.disc-list__item--link a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2rem;
}

/* contents-table */

.contents-table {
    width: 100%;
}

.contents-table__col--date {
    width: 14%;
    min-width: 11rem;
}

.contents-table__col--time {
    width: 12%;
    min-width: 9rem;
}

.contents-table__col--text {
    width: 12%;
    min-width: 9rem;
}

.contents-table__thead th {
    border-bottom: solid 0.3rem #999;
    padding: 2rem 1rem;
    text-align: center;
    vertical-align: middle;
}

.contents-table__tbody td {
    border-bottom: solid 0.1rem #ccc;
    padding: 2rem 1rem;
    text-align: center;
    vertical-align: middle;
}

.contents-table__course__title {
	font-weight: bold;
}


/*============

media queries

=============*/


/*-------------

タブレット・スマホ

--------------*/

@media (max-width: 959px) {

}


/*-------------

スマホ

--------------*/

@media (max-width: 519px) {
	.contents-table__tbody .contents-table__course {
		text-align: left;
	}

}
