@charset "utf-8";

/* ------------------------------------------------------------------------------------------------------ Timetable */

.tt-day {
    margin: 0 0 20px;
    padding: 0;
    text-align: center;
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.0;
    letter-spacing: 0.8pt;
    color: #003a69;
}

.tt-tbl {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
}

.tt-tbl th {
    width: 25%;
    background-color: #003a69;
    border-bottom: 2px solid #f5faff;
}

.tt-tbl th:not(:first-of-type) {
    border-left: 2px solid #f5faff;
}

.tt-tbl th img {
    display: block;
    margin: 0 auto;
    line-height: 0;
}

.tt-tbl td {
    padding: 0;
    background-image: url("../images/timetable/bg_td.svg");
    background-size: 100% 100%;
}

.tt-tbl td:not(:first-of-type) {
    border-left: 2px solid #f5faff;
}

.tt-tbl td div {
    padding: 4px 2px;
    background-color: #fff;
    text-align: center;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.20em;
}

.tt-tbl td div span {
    display: block;
    margin-bottom: 2px;
    font-weight: bold;
}

.tt-tbl td:nth-of-type(1) div span { color: #8b4999; }
.tt-tbl td:nth-of-type(2) div span { color: #cc1605; }
.tt-tbl td:nth-of-type(3) div span { color: #2a804f; }
.tt-tbl td:nth-of-type(4) div span { color: #1a7799; }

.tt-tbl td div strong {
    font-weight: normal;
}

/*!
 * リンクあり
 */
.tt-tbl td div a {
    display: block;
}

.tt-tbl td div a strong {
    text-decoration: underline;
}


@media screen and (min-width: 481px) {

.tt-tbl th img {
    max-height: 60px;
}

.tt-tbl td div {
    padding: 8px 4px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.20em;
}

} /* min 481px -- */

@media screen and (min-width: 641px) {

.tt-tbl td div {
    padding: 10px 8px;
}

.tt-tbl td div span {
    margin-bottom: 4px;
}

} /* min 641px -- */

@media screen and (min-width: 769px) {

.tt-day {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.0;
}

.tt-tbl {
    max-width: 800px;
    margin: 0 auto;
}

/*!
 * リンクあり
 */
.tt-tbl td div a:hover {
    text-decoration: none;
}

} /* min 769px -- */


