@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	発着情報

//////////////////////////////////////////////////////////////////////////////*/

/** 共通ファイルの継承 **/
@import url( "../../css/common.css" );

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

	contents

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

/* tab_menu
------------------------------------------------------------------------------*/

main .tab_menu li::before {
	display: inline-block;
	content: "";
	width: 1em;
	aspect-ratio: 1/1;
	margin-right: .6em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	vertical-align: -.125em;
}

main .tab_menu li:first-child::before { background-image: url(../../common/img/icon_japan_b.svg);}
main .tab_menu li:last-child::before { background-image: url(../../common/img/icon_net_b.svg);}

/* time note
------------------------------------------------------------------------------*/

main .time {
	margin-bottom: 1.5em;
	text-align: right;
}

main .note {
	margin: 1em 0 3em;
}


/* tab
------------------------------------------------------------------------------*/

body.ru .tab_box .tab_menu {
	align-items: stretch;
}

main .tab {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
}

main .tab li {
	width: 49%;
	margin-bottom: 0;
}

main .tab li a {
	display: block;
	padding: 1.25em 1em;
	text-align: center;
}

main .tab li a {
	position: relative;
	background-color: rgba(38,161,214,.1);
	text-decoration: none;
	font-weight: bold;
	font-size: 1.25em;
	color: rgba(47,60,69,1);
}

main .tab li.selected a {
	background-color: rgba(38,161,214,1);
	color: #FFF;
}

main .tab li.selected a::before,
main .tab li.selected a::after {
	content: "";
	position: absolute;
	left: 50%;
	translate: -50% 0;
}

main .tab li.selected a::before {
	top: -.75em;
	width: 1.5em;
	aspect-ratio: 1/1;
	background-image: url(../../common/img/icon_airplane_b.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

main .tab li.selected a::after {
	top: 100%;
	width: 1em;
	aspect-ratio: 1/cos(60deg);
	clip-path: polygon(50% 100%,100% 0,0 0);
	background-color: rgba(38,161,214,1);
}

@media screen and (max-width: 767px){

main .tab li a {
	font-size: 3.125vw;
}

}


/* table
------------------------------------------------------------------------------*/

main .operation {
	display: none;
}

main .scroll table {
	margin-top: 0;
	border-collapse: separate;
}

main .scroll table th,
main .scroll table td {
	position: relative;
	border: 1px solid #333;
}

main .scroll table thead th:first-child::after,
main .scroll table tbody th::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 101%;
	background-color: #788086;
	z-index: -1;
}

main .scroll table thead th,
main .scroll table .gate {
	text-align: center
}


main .scroll table tbody .airlines {
	display: flex;
	justify-content: space-between;
}

main .scroll table tbody th {
	padding-right: 0;
}

main .scroll table tbody .airlines span:last-child {
	width: 5.25em;
	margin-left: 1em;
}

main .scroll table tbody .on_time,
main .scroll table tbody .change {
	text-align: right;
}

main .scroll table .remarks {
	width: 25%;
}

@media screen and (max-width: 1200px){

main .scroll table th,
main .scroll table td {
	font-size: .875em;
}

main .scroll table .remarks {
	width: auto;
}

}

@media screen and (max-width: 767px){

main .operation {
	position: relative;
	display: block;
	margin-bottom: 1.5em;
	padding: 1vw;
	background-color: rgba(47,60,69,.05);
	border-radius: 100em;
	text-align: center;
	font-size: 2.25vw;
}



main .operation::before,
main .operation::after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	translate: 0 -50%;
	width: 1em;
	aspect-ratio: 1/1;
	background-image: url(../../common/img/icon_arrow_b.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

main .operation::before {
	left: 2vw;
	rotate: 180deg;
}

main .operation::after {
	right: 2vw;
}

main .scroll {
	overflow-x: auto;
}

main .scroll table {
	border-collapse: separate;
	border: none;
}


main .scroll table thead th:nth-child(1),
main .scroll table tbody th {
	position: sticky;
	width: 40vw;
	left: 0;
	z-index: 2;
	min-width: 45vw;
	white-space: nowrap;
	border-bottom: 1px solid #333;
}

main .scroll table th,
main .scroll table td {
	border-width: .25vw;
	white-space: nowrap;
	padding: 1.75vw 1.75vw;
	font-size: 2.25vw;
}
main .scroll table thead th:nth-child(1) {
}

main .scroll table td {
	z-index: 0;
}

}


/* bus_button
------------------------------------------------------------------------------*/

main .bus_button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3em;
}

main .bus_button a {
	position: relative;
	display: block;
	border: 1px solid rgba(47,60,69,1);
	padding: 1.5em 4em 1.5em 1.5em;
	line-height: 1;
	font-weight: bold;
	text-decoration: none;
	color: rgba(47,60,69,1);
}

main .bus_button a::before {
	content: url(../../common/img/icon_arrow_b.svg);
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 1.5em;
	width: .5em;
}

@media screen and (max-width: 767px){

main .bus_button {
	margin-top: 1em;
}

main .bus_button a {
	padding-right: 3.5em;
	font-size: 2.5vw;
}

}








