@charset "UTF-8";
/* font family */
/* fon weight */
/*--------------------------
timetable
時刻表 駅・路線
---------------------------*/
/* 路線テーブル（rosentable） */
.rosentable {
	padding: 10px;
	border: 1px solid var(--color-border);
	background-color: #fff;
}
.rosentable .result_02 {
	width: 100%;
	border: none;
	font-size: 1.6rem;
	line-height: 1.6;
}
.rosentable .result_02 td, .rosentable .result_02 th {
	padding: 14px 16px;
	border: none;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	vertical-align: middle;
	text-align: left;
}
.rosentable .result_02 td:first-child, .rosentable .result_02 th:first-child {
	border-left: none;
}
.rosentable .result_02 td:last-child, .rosentable .result_02 th:last-child {
	border-right: none;
}
.rosentable .result_02 th {
	text-align: center;
	vertical-align: middle;
	font-weight: var(--fw-sb);
}
.rosentable .result_02 td {
	padding: 12px 10px;
}
.rosentable .result_02 thead th {
	background-color: #E7F8E4;
}
.rosentable .result_02 tbody th {
	background-color: #FAFAFA;
}
.rosentable .result_02 tbody tr:last-child th, .rosentable .result_02 tbody tr:last-child td {
	border-bottom: none;
}
.rosentable .result_02 .rosen {
	width: 20%;
}
.rosentable .result_02 .homen {
	width: 20%;
}
.rosentable .result_02 .jikokuhyo {
	width: 25%;
}
.rosentable .result_02 .weekday,
.rosentable .result_02 .holiday {
	width: 13%;
}
.rosentable .result_02 .weekday a,
.rosentable .result_02 .holiday a {
	display: block;
	padding: 8px 20px 8px 8px;
	border-radius: 4px;
	position: relative;
	text-align: center;
	text-decoration: none;
	color: var(--color-text);
}
.rosentable .result_02 .weekday a::after,
.rosentable .result_02 .holiday a::after {
	content: "";
	display: block;
	width: 0.8em;
	height: 0.8em;
	position: absolute;
	top: 50%;
	right: 6px;
	/*-webkit-mask: url("https://www.jreast.co.jp/assets/img/icon/chev-right.svg") no-repeat center/contain;*/
	-webkit-mask: url("../../assets/img/icon/chev-right.svg") no-repeat center/contain;
	/*mask: url("https://www.jreast.co.jp/assets/img/icon/chev-right.svg") no-repeat center/contain;*/
	mask: url("../../assets/img/icon/chev-right.svg") no-repeat center/contain;
	translate: 0 -50%;
}
.rosentable .result_02 .weekday a {
	background-color: #e0f4ff;
	box-shadow: 0 2px 0 #5B9FC4;
}
.rosentable .result_02 .weekday a::after {
	background-color: #5B9FC4;
}
.rosentable .result_02 .holiday a {
	background-color: #ffe8e8;
	box-shadow: 0 2px 0 #EF7676;
}
.rosentable .result_02 .holiday a::after {
	background-color: #EF7676;
}
.rosentable .result_02 .inactive {
	color: #aaa;
	text-align: center;
}
.rosentable .result_02 .suspend {
	text-align: center;
}
.rosentable .result_02 .paper_timeLink {
	font-size: 1.2rem;
}
.rosentable .result_02 .paperTimetableMulti {
	padding: 10px 0 0 0;
}
.rosentable .result_02 .paperTimetableMulti table {
	width: 100%;
}
.rosentable .result_02 .paperTimetableMulti table tr, .rosentable .result_02 .paperTimetableMulti table td {
	border: none;
}
.rosentable .result_02 .paperTimetableLabel {
	font-size: 1.2rem;
	padding: 0 10px 5px 10px;
}
.rosentable .result_02 .paperTimetableLink td {
	padding: 0 10px 10px 10px;
}
.rosentable .result_02 .paperTimetableLink td:not(:first-child) {
	border-left: 1px solid var(--color-border);
}
@media (max-width: 750px) {
	.rosentable .result_02 {
		font-size: 1.4rem;
	}
	.rosentable .result_02 th, .rosentable .result_02 td {
		display: block;
		width: 100%;
		padding: 4%;
		border: none;
	}
	.rosentable .result_02 thead {
		display: none;
	}
	.rosentable .result_02 tbody th {
		border-bottom: 1px solid var(--color-border);
		margin-top: 15px;
	}
	.rosentable .result_02 tbody tr:first-child th {
		margin-top: 0;
	}
	.rosentable .result_02 .weekday,
	.rosentable .result_02 .holiday {
		display: inline-block;
		width: 50%;
	}
	.rosentable .result_02 .weekday {
		border-right: 1px solid var(--color-border);
	}
	.rosentable .result_02 .inactive {
		display: inline-block;
		width: 50%;
	}
	.rosentable .result_02 .suspend {
		display: inline-block;
		width: 100%;
	}
}
@media (hover: hover) {
	.rosentable .result_02 .weekday a,
	.rosentable .result_02 .holiday a {
		transition: box-shadow 0.2s, translate 0.2s;
	}
	.rosentable .result_02 .weekday a:hover,
	.rosentable .result_02 .holiday a:hover {
		box-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
		translate: 0 2px;
	}
}



/* 検索結果 */

.resulttable table th, .resulttable table td {
	padding: 1.2rem 1.2rem;
	font-size: 1.6rem;
	line-height: 1.8rem;
	text-align: center;
	vertical-align: middle;
}
.resulttable table th {
	font-weight: bold;
}
.resulttable table thead th {
	background-color: #E7F8E4;
}
.resulttable table tbody th {
	background-color: #FAFAFA;
}

.resulttable table a {
	text-decoration: none;
}
.resulttable table a:visited {
	text-decoration: none;
}
.resulttable table a:hover {
	color: #008803;
	text-decoration: underline;
}

.resulttable table thead .eki {width: 25%;}
.resulttable table thead .token {width: 20%;}
.resulttable table thead .rosen {width: 55%;}

.resulttable table tbody .eki {text-align: left;}
.resulttable table tbody .token {text-align: center;}
.resulttable table tbody .rosen {text-align: left;}
.resulttable table tbody .rosen span {
	display: inline-block;
	margin-right: 0.5em;
}



/*# sourceMappingURL=timetable-rosentable.css.map */
