@charset "UTF-8";
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
/* --------------------------------------------------------
* passenger
* -------------------------------------------------------*/
/* 年代 */
.text-m .backnumber {
	line-height: var(--line-height-s);
}
.text-m .backnumber > a {
	position: relative;
}
.text-m .backnumber > a::before {
	mask: url(/company/assets/images/icon/arrow1-r.svg) center/100% 100%;
	background-color: var(--color-prim);
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 0;
	top: 4.5px;
}
.text-m .arrowLink {
	font-size: 1.6rem;
	padding-left: 24px;
	color: var(--color-txt);
}
.text-m .arrowLink > strong {
	font-weight: 700;
}

@media (min-width: 751px) {
	.text-m {
		display: flex;
		flex-wrap: wrap;
		gap: 12px 22px;
	}
	.text-m .backnumber > a {
		text-decoration: underline;
		text-decoration-color: transparent;
		text-decoration-thickness: 1px;
		text-underline-offset: 2px;
		transition: all 0.2s;
	}
	.text-m .backnumber > a:hover {
		text-decoration: underline;
		text-decoration-color: inherit;
		text-decoration-thickness: 1px;
		text-underline-offset: 2px;
	}
	.text-m .backnumber > a:hover {
		color: var(--color-prim);
	}
	.display_selectedItem {
		display: none;
	}
}
@media (max-width: 750px) {
	.backnumberBox {
		border: none;
		padding: 0;
		position: relative;
	}
	.text-m {
		border: #E6E6E6 solid 1px;
		padding: 8px 16px;
		z-index: 2;
		width: 100%;
		height: 300px;
		overflow-y: auto;
		overflow-x: hidden;
		background-color: #FFF;
		position: absolute;
		display: none;
	}
	.text-m.is-show {
		display: block;
	}
	.text-m .backnumber + .backnumber {
		margin-top: 8px;
	}
	.text-m .backnumber > a {
		display: block;
	}
	.text-m .backnumber > a::before {
		top: 4px;
	}
	.text-m .backnumber_on {
		display: none;
	}
	.display_selectedItem {
		border: #E6E6E6 solid 1px;
		padding: 12px 16px;
		position: relative;
		display: block;
		width: 100%;
		text-align: left;
	}
	.display_selectedItem::before {
		content: "";
		mask: url("/company/assets/images/icon/arrow2-r.svg") center/100% 100%;
		background-color: var(--color-prim);
		width: 1em;
		height: 1em;
		transform: rotate(90deg);
		position: absolute;
		right: 10px;
		top: 0;
		bottom: 0;
		margin: auto;
	}
}
/* コンテンツ */
.contents {
	background-color: #F7F7F7;
	margin-top: 20px;
	margin-bottom: 1px;
	margin-inline: calc(50% - 50vw);
}
.contents__inner {
	width: calc(100% - 40px);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px), print {
	.contents__inner {
		width: calc(100% - 60px);
	}
}
.contents__inner {
	padding: 48px 0;
}
@media (min-width: 768px), print {
	.contents__inner {
		padding: 64px 0;
	}
}
@media (min-width: 1025px), print {
	.contents {
		margin-bottom: 0;
	}
}

.passenger_box {
	background-color: #FFF;
	border-radius: 20px;
	padding: 32px 20px 40px;
}

.passengerUnit {
	text-align: right;
	font-size: 1.4rem;
	line-height: var(--line-height-s);
}

.passenger_table_box {
	margin-top: 16px;
}
.passenger_table_box table {
	width: 100%;
}
.passenger_table_box th {
	background-color: #F7F7F7;
	border: #E6E6E6 solid 1px;
	vertical-align: middle;
	text-align: center;
	font-size: 1.6rem;
	line-height: var(--line-height-s);
	font-weight: 700;
	padding: 10px 15px;
}
.passenger_table_box td {
	border: #E6E6E6 solid 1px;
	background-color: #FFF;
	text-align: right;
	font-size: 1.4rem;
	line-height: var(--line-height-s);
	padding: 10px;
}
.passenger_table_box .passenger_yoyComparison {
	font-size: 1.4rem;
	padding: 10px;
}
.passenger_table_box .stationName {
	text-align: left;
}
.passenger_table_box .stationName > a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	transition: text-decoration 0.2s;
}
.passenger_table_box .stationName > a:hover {
	text-decoration-color: transparent;
}

.passenger_table_item {
	width: 100%;
}
.passenger_table_item + .passenger_table_item {
	margin-top: 32px;
}

.passenger_table_spScroll {
	width: 100%;
}

.passenger_pagerLink {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 32px;
}
.passenger_pagerLink:last-child {
	margin: 32px 0 0;
}
.passenger_pagerLink li > a,
.passenger_pagerLink li > span {
	aspect-ratio: 1;
	width: 32px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: var(--color-prim) solid 1px;
	color: var(--color-prim);
	font-size: 1.5rem;
	background-color: #FFF;
}
.passenger_pagerLink li > span {
	background-color: var(--color-prim);
	color: #FFF;
}

@media (min-width: 768px), print {
	.passenger_box {
		padding: 40px;
	}
	.passenger_table_spScroll + .c-guide + .passenger_table_spScroll {
		margin-top: 40px;
	}
}
@media (min-width: 1025px), print {
	.passenger_table_box {
		display: flex;
		gap: 40px;
	}
	.passenger_table_item + .passenger_table_item {
		margin-top: 0;
	}
	.passenger_pagerLink {
		margin-bottom: 40px;
		gap: 10px;
	}
	.passenger_pagerLink:last-child {
		margin: 40px 0 0;
	}
	.passenger_pagerLink li > a,
	.passenger_pagerLink li > span {
		width: 48px;
		font-size: 1.8rem;
	}
	.passenger_pagerLink li > a {
		transition: background-color 0.2s;
	}
	.passenger_pagerLink li > a:hover {
		background-color: var(--color-bg4);
	}
}
@media (max-width: 767px) {
	.passenger_table_box {
		margin-inline: -20px;
	}
	.passenger_table_item .c-guide {
		margin-left: 20px;
	}
	.passenger_table_spScroll {
		width: auto;
		overflow-x: auto;
		padding: 0 20px;
		/* &::-webkit-scrollbar {
			height: 5px;
		}
		&::-webkit-scrollbar-track {
			border-radius: 5px;
			background: #eee;
		}
		&::-webkit-scrollbar-thumb {
			border-radius: 5px;
			background: #008803;
		} */
	}
	.passenger_table_spScroll table {
		width: auto;
		position: relative;
		white-space: nowrap;
		/* transform: scaleY(-1); */
	}
	.passenger_table_spScroll + .c-guide {
		margin-top: 32px;
	}
}
/*# sourceMappingURL=passenger.css.map */
