@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

:root {
	--c-white: #fff;
	--c-off: #777;
	--c-skyblue: #00BFF2;
	--c-blue: #07185C;
	--c-pink: #EB008B;
	--c-sub: #FFD26A;
	--c-normal: rgba(255, 255, 255, 0.4);
}

html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}

a {
	text-decoration: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

html[lang="ja"] ._en,
html[lang="en"] ._ja {
	display: none;
}

/*--------------------------------------------------*/
/* wrap */
/*--------------------------------------------------*/

.wrap {
	display: flex;
	height: 100%;
}

@media (max-width: 620px) {
	.wrap {
		display: block;
	}
}

/*--------------------------------------------------*/
/* nav */
/*--------------------------------------------------*/

.nav {
	position: relative;
	width: 240px;
	background-color:#252525;
	color: var(--c-normal);
	box-shadow: 5px 0 10px rgb(0 0 0 / 30%);
	z-index: 1;
	text-align: center;
	font-size: 12px;
	overflow-y: auto;
	box-sizing: border-box;
	user-select: none;
}

.type_timeline .nav {
	background-image: linear-gradient(#0D437A, #252525 60%);
}

.type_wake .nav {
	background-image: linear-gradient(#5D2F65, #252525 60%);
}

.nav::-webkit-scrollbar {
	width: 8px;
}
.nav::-webkit-scrollbar-track {
	background-color: rgb(0 0 0 / 0%);
}
.nav::-webkit-scrollbar-thumb {
	background-color: rgb(250 250 250 / 20%);
	border-radius: 10px;
}

.nav_pc {
	padding: 20px;
}

.nav_h {
	margin: 0;
}

.nav_h a {
	display: block;
	margin: 0 auto;
	width: fit-content;
}

.nav_h img {
	display: block;
}

.nav_exp ._ja {
	font-size: 15px;
}

.nav_exp ._en {
	font-size: 10px;
}

.nav_h2 {
	font-size: 11px;
	line-height: 1.1;
	margin: 25px 0 0 0;
}

.nav_h2 ._ja {
	font-size: 13px;
}

@media (max-width: 620px) {
	.nav {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 70px;
		overflow: hidden;
		transition: height 0.2s;
	}

	.type_wake .nav {
		height: 50px;
	}

	.type_timeline .nav:not(._open) {
		background-image: linear-gradient(to right, #0D437A, #333);
	}
	
	.type_wake .nav:not(._open) {
		background-image: linear-gradient(to right, #5D2F65, #333);
	}

	.nav_pc {
		display: none;
	}

	.nav._open {
		height: 100%;
		overflow: auto;
	}

	._open .nav_pc {
		display: block;
	}
}

/*--------------------------------------------------*/
/* button */
/*--------------------------------------------------*/

.bt_icon,
.bt {
	font: 13px/1 'Noto Sans JP', sans-serif;
	font-weight: 700;
	color: var(--c-normal);
	padding: 13px 5px 14px;
	background-color: rgba(255, 255, 255, 0.1);
}

.bt_icon {
	font-size: 10px;
	padding: 8px 0;
}

.bt_icon::before {
	content: '';
	display: block;
	margin: 0 auto 5px;
	width: 23px;
	height: 23px;
	background-color: var(--c-normal);
	mask-position: center;
	mask-size: contain;
	mask-repeat: no-repeat;
}

.bt_icon._filter::before {
	background-color: #fff;
}

.bt_icon:first-child,
.bt:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.bt_icon:last-child,
.bt:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.bt_icon:hover,
.bt:hover {
	color: #FFF;
}

.bt_icon._filter,
.bt._filter,
.bt_icon._ac,
.bt._ac {
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.3);
}

.bt_icon._ac::before,
.bt_icon:hover::before {
	background-color: #FFF;
}

.bt_icon._filter:hover,
.bt._filter:hover,
.bt_icon._ac:hover,
.bt._ac:hover {
	background-color: rgba(255, 255, 255, 0.25);
}

.bt_icon ._ja {
	font-size: 12px;
	line-height: 1.2;
}

/*--------------------------------------------------*/
/* select */
/*--------------------------------------------------*/

.select {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.0);
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
}

.select option {
	background-color: #555;
	color: #FFF;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
}

.select::-webkit-scrollbar {
	width: 8px;
}

.select::-webkit-scrollbar-track {
	background-color: #333;
}

.select::-webkit-scrollbar-thumb {
	background-color: #777;
	border-radius: 10px;
}

/*--------------------------------------------------*/
/* frame */
/*--------------------------------------------------*/

.frame {
	margin-top: 9px;
	border-radius: 4px;
	display: flex;
}

.frame .bt_icon,
.frame .bt {
	flex: 1;
}

.frame .bt_icon:nth-child(n+2),
.frame .bt:nth-child(n+2) {
	margin-left: 1px;
}

.frame_h {
	margin: 0;
	display: flex;
	align-items: center;
	text-align: left;
	flex: 1;
	font-size: 11px;
	line-height: 1;
}

.frame_h ._ja {
	font-size: 13px;
}

/*--------------------------------------------------*/
/* type */
/*--------------------------------------------------*/

.bt_icon._timeline::before {
	mask-image: url(../img/icon/clock-eight-regular.svg);
}
.bt_icon._wake::before {
	mask-image: url(../img/icon/arrows-split-up-and-left-regular.svg);
}

.type_timeline .bt_icon._timeline,
.type_wake .bt_icon._wake {
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.3);
}

.type_timeline .bt_icon._timeline::before,
.type_wake .bt_icon._wake::before {
	background-color: #FFF;
}

/*--------------------------------------------------*/
/* date */
/*--------------------------------------------------*/

.bt._date {
	position: relative;
	color: #FFF;
	padding: 0;
}

.bt._date::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 13px;
	margin-top: -7.5px;
	display: block;
	width: 13px;
	height: 15px;
	background-color: #FFF;
	mask: url(../img/icon/calendar-days-solid.svg) no-repeat center;
	mask-size: contain;
	pointer-events: none;
}

.date_input {
	background-color: transparent;
	appearance: none;
	cursor: pointer;
	border: none;
	outline: none;
	width: 75px;
	height: 100%;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0 10px 0 32px;
	color: #FFF;
}

@media (max-width: 620px) {
	.date_input {
		font-size: 16px;
		box-sizing: border-box;
		width: 100%;
		text-align: center;
	}

	.bt._date {
		width: 60%;
	}
}

/*--------------------------------------------------*/
/* datepicker */
/*--------------------------------------------------*/

.datepicker {
	font-size: 12px;
	color: #FFF;
}

.datepicker-controls .button[disabled] {
	pointer-events: none;
	opacity: 0;
}

.datepicker-controls .button {
	background-color: rgba(250, 250, 250, .0);
	color: #AAA;
}

.datepicker-header .datepicker-controls .button:hover {
	background-color: #333;
	color: #FFF;
}

.datepicker-picker {
	background-color: rgba(20, 20, 20, .7);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.datepicker-cell:not(.disabled):not(.selected):hover {
	background-color: #333;
	color: #FFF;
}

.datepicker-cell.focused:not(.selected) {
	background-color: #333;
}

.datepicker-cell.focused:not(.selected):hover {
	background-color: #333;
	color: #FFF;
}

.datepicker-cell.disabled {
	color: #555;
}

/*--------------------------------------------------*/
/* hour */
/*--------------------------------------------------*/

.bt._hour {
	color: #FFF;
	position: relative;
	width: 72px;
}

.view_hour::before {
	content: '';
	display: inline-block;
	width: 13px;
	height: 15px;
	background-color: #FFF;
	mask: url(../img/icon/clock-solid.svg) no-repeat center;
	mask-size: contain;
	vertical-align: -2px;
	margin-right: 5px;
	pointer-events: none;
}

@media (max-width: 620px) {
	.bt._hour {
		width: 40%;
		font-size: 16px;
	}

	.select_hour {
		font-size: 16px;
	}
}

/*--------------------------------------------------*/
/* progress */
/*--------------------------------------------------*/

.progress {
	position: relative;
	width: 180px;
	height: 180px;
	margin: 10px auto 0;
}

.progress canvas {
	display: block;
}

.type_wake .progress {
	display: none;
}

.time_pc {
	position: absolute;
	left: 0;
	top: 47px;
	width: 100%;
	font-size: 45px;
	line-height: 1;
	font-weight: 300;
	color: #FFF;
	pointer-events: none;
}

/*--------------------------------------------------*/
/* bt_play */
/*--------------------------------------------------*/

.bt_play {
	width: 30px;
	height: 30px;
	background-image: url(../img/icon_play.svg);
	background-repeat: no-repeat;
}

.nav_pc .bt_play {
	position: absolute;
	top: 110px;
	left: 50%;
	margin-left: -15px;
}

._play .bt_play {
	background-image: url(../img/icon_stop.svg);
}

.bt_play:hover {
	opacity: 0.8;
}

/*--------------------------------------------------*/
/* speed */
/*--------------------------------------------------*/

.type_wake .frame._speed {
	display: none;
}

.bt._speed {
	color: #FFF;
	position: relative;
	width: 80px;
	border-radius: 4px;
	flex: none;
	padding: 10px 13px;
	text-align: left;
	box-sizing: border-box;
}

.bt._speed::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: url(../img/icon/caret-down-sharp-solid.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -9px;
	pointer-events: none;
}

/*--------------------------------------------------*/
/* airport */
/*--------------------------------------------------*/

.frame._airport {
	display: block;
}

.frame._airport .bt {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin-left: 0;
	margin-top: 1px;
	padding: 15px 10px;
}

.frame._airport .bt:first-child {
	border-radius: 4px 4px 0 0;
	margin-top: 0;
}

.frame._airport .bt:last-child {
	border-radius: 0 0 4px 4px;
}

.airport_h {
	font-size: 14px;
	flex: 1;
	text-align: left;
	margin: 0;
	line-height: 1;
}

.airport_dire {
	display: flex;
	align-items: center;
	line-height: 1;
}

.airport_arrow {
	display: block;
	width: 13px;
	height: 13px;
	background-color: var(--c-sub);
	mask: url(../img/icon/arrow-down-sharp-solid.svg) no-repeat center;
	mask-size: contain;
	/*transition: transform 0.3s;*/
}

.airport_wind,
.airport_temp {
	font-size: 11px;
	line-height: 1;
	white-space: nowrap;
	margin-left: 8px;
	min-width: 38px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: var(--c-sub);
}

.airport_wind:not(:empty)::after {
	content: 'm/s';
}

.airport_temp:not(:empty)::after {
	content: '°C';
}

/* off */

.kobe_off .bt._kobe,
.itami_off .bt._itami,
.kix_off .bt._kix {
	color: var(--c-normal);
	background-color: rgba(255, 255, 255, 0.1);
}

.kobe_off .bt._kobe .airport_wind, .kobe_off .bt._kobe .airport_temp,
.itami_off .bt._itami .airport_wind, .itami_off .bt._itami .airport_temp,
.kix_off .bt._kix .airport_wind, .kix_off .bt._kix .airport_temp {
	color: var(--c-normal);
}

.kobe_off .bt._kobe .airport_arrow,
.itami_off .bt._itami .airport_arrow,
.kix_off .bt._kix .airport_arrow {
	background-color: var(--c-normal);
}

/* off hover */

.kobe_off .bt._kobe:hover,
.itami_off .bt._itami:hover,
.kix_off .bt._kix:hover {
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.1);
}

.kobe_off .bt._kobe:hover .airport_wind, .kobe_off .bt._kobe:hover .airport_temp,
.itami_off .bt._itami:hover .airport_wind, .itami_off .bt._itami:hover .airport_temp,
.kix_off .bt._kix:hover .airport_wind, .kix_off .bt._kix:hover .airport_temp {
	color: var(--c-sub);
}

.kobe_off .bt._kobe:hover .airport_arrow,
.itami_off .bt._itami:hover .airport_arrow,
.kix_off .bt._kix:hover .airport_arrow {
	background-color: var(--c-sub);
}

/*--------------------------------------------------*

.type_wake .frame._airport {
	display: flex;
}

.type_wake ._airport .bt:first-child {
	border-radius: 4px 0 0 4px;
}

.type_wake ._airport .bt:last-child {
	border-radius: 0 4px 4px 0;
}

.type_wake ._airport .bt {
	margin: 0 1px 0 0;
	text-align: center;
}

.type_wake .airport_h {
	text-align: center;
}

.type_wake .airport_temp,
.type_wake .airport_wind,
.type_wake .airport_dire {
	display: none;
}*/

/*--------------------------------------------------*/
/* TAKEOFF AND LANDING */
/*--------------------------------------------------*/

.bt_icon._landing::before {
	mask-image: url(../img/icon/landing.svg);
}

.bt_icon._takeoff::before {
	mask-image: url(../img/icon/takeoff.svg);
}

/* off */
.takeoff_off .bt_icon._takeoff,
.landing_off .bt_icon._landing {
	color: var(--c-normal);
	background-color: rgba(255, 255, 255, 0.1);
}

.takeoff_off .bt_icon._takeoff::before,
.landing_off .bt_icon._landing::before {
	background-color: var(--c-normal);
}

/* off hover */
.takeoff_off .bt_icon._takeoff:hover,
.landing_off .bt_icon._landing:hover {
	color: #FFF;
}

.takeoff_off .bt_icon._takeoff:hover::before,
.landing_off .bt_icon._landing:hover::before {
	background-color: #FFF;
}

/*--------------------------------------------------*/
/* tooltip */
/*--------------------------------------------------*/

.type_wake .frame._tooltip {
	display: none;
}

/*--------------------------------------------------*/
/* checkbox */
/*--------------------------------------------------*/

.frame._checkbox {
	margin-top: 20px;
}

._checkbox input[type="checkbox"] {
	display: none;
}

.bt_checkbox {
	position: relative;
	width: 52px;
	height: 26px;
	box-sizing: border-box;
	border-radius: 13px;
	background-color: var(--c-off);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .2) inset;
	cursor: pointer;
	transition: background-color 0.3s;
}

.bt_checkbox:hover {
	background-color: #999;
}

.bt_checkbox::after {
	content: '';
	display: block;
	height: 22px;
	width: 22px;
	background-color: #FFF;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
	transition: left 0.3s;
}

._checkbox input[type="checkbox"]:checked ~ .bt_checkbox {
	background-color: var(--c-sub);
}

._checkbox input[type="checkbox"]:checked ~ .bt_checkbox::after {
	left: 27px;
}

._checkbox input[type="checkbox"]:checked ~ .bt_checkbox:hover {
	background-color: #ffd77c;
}

/*--------------------------------------------------*/
/* maptype */
/*--------------------------------------------------*/

.maptype {
	position: absolute;
	top: 4px;
	right: 4px;
	padding: 5px 10px 6px 32px;
	background-color: #333;
	color: #FFF;
	font-size: 12px;
	font-weight: 500;
	border-radius: 4px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}

.maptype::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -7px;
	width: 14px;
	height: 14px;
	background-color: #FFF;
	mask: url(../img/icon/map-solid.svg) no-repeat center;
	mask-size: contain;
}

.maptype:hover {
	background-color: #555;
}

/*--------------------------------------------------*/
/* legend */
/*--------------------------------------------------*/

.legend {
	margin: 30px -20px 0;
	padding: 20px;
	text-align: left;
	color: #AAA;
	background-color: rgb(0 0 0 / 40%);
}

.legend_h2 {
	position: relative;
	font-size: 11px;
	line-height: 1;
	margin: 0;
	background-color: rgb(255 255 255 / 14%);
	padding: 10px;
	border-radius: 30px;
	text-align: center;
}

.legend_h2 ._ja {
	font-size: 13px;
}

.legend_h2 a {
	position: absolute;
	top: 50%;
	right: 9px;
	margin-top: -7px;
	font-size: 0;
	width: 14px;
	height: 14px;
	background-color: #AAA;
	mask: url(../img/icon/circle-question-solid.svg) no-repeat center;
	mask-size: contain;
}

.legend_h2 a:hover {
	background-color: var(--c-sub);
}

.legend_h3 {
	font-size: 11px;
	line-height: 1;
	margin: 20px 0 0 0;
}

.legend_h3 ._ja {
	font-size: 13px;
}

.legend_h3::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 20px;
	margin-right: 5px;
	background-color: #AAA;
	mask: no-repeat center;
	mask-size: contain;
	vertical-align: -2px;
}

.legend_h3._noise::before { mask-image: url(../img/icon/waveform-solid.svg); }
.legend_h3._landing::before { mask-image: url(../img/icon/landing.svg); }
.legend_h3._takeoff::before { mask-image: url(../img/icon/takeoff.svg); }

.legend_noise {
	display: flex;
	justify-content: space-between;
	color: #FFF;
	background: linear-gradient(to right, #00A1CC, #7400E8);
	border-radius: 30px;
	padding: 6px 8px 7px;
	font-size: 12px;
	font-weight: 500;
	margin-top: 8px;
}

.legend_trans {
	margin-top: 8px;
}

.legend_trans::before {
	content: '';
	display: inline-block;
	box-sizing: border-box;
	width: 28px;
	height: 28px;
	border: #FCAD10 10px solid;
	border-radius: 100%;
	opacity: 0.6;
	margin-right: 5px;
	vertical-align: -10px;
}

.legend_line {
	position: relative;
	display: flex;
	color: #FFF;
	font-size: 12px;
	font-weight: 500;
	padding-bottom: 7px;
	margin-top: 5px;
}

.legend_line::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 1px;
}

.legend_line._landing::after {
	background: linear-gradient(to right, #CC00BE, #FF9831);
}

.legend_line._takeoff::after {
	background: linear-gradient(to right, #0029CC, #00E8C1);
}

.legend_line div {
	width: calc(100% / 3);
	font-size: 10px;
}

.legend[data-altitude="meters"] .legend_line div {
	/*width: calc(87.4% / 3);*/
	width: calc(91% / 3);
}

.legend_line div:nth-child(2) {
	text-align: center;
}

.legend_line div:nth-child(3) {
	text-align: right;
}
/*
.legend[data-altitude="meters"] .legend_line div:nth-child(3) {
	margin-right: calc(12.5% - 18px);*
	margin-right: 6%;
}*/

.type_wake .frame._noise,
.type_wake .legend_h3._noise,
.type_wake .legend_noise,
.type_wake .legend_trans {
	display: none;
}

.legend[data-altitude="meters"] .legend_line div span:nth-child(1),
.legend[data-altitude="feet"] .legend_line div span:nth-child(2) {
	display: block;
}

.legend[data-altitude="meters"] .legend_line div span:nth-child(1),
.legend[data-altitude="feet"] .legend_line div span:nth-child(2) {
	display: none;
}

/*--------------------------------------------------*/
/* about back */
/*--------------------------------------------------*/

.bt._about::before,
.bt._back::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 13px;
	margin-right: 5px;
	vertical-align: -1px;
	background-color: #FFF;
	mask: no-repeat center;
	mask-size: contain;
}

.bt._about::before {
	mask-image: url(../img/icon/circle-question-solid.svg);
}

.bt.bt._back::before {
	mask-image: url(../img/icon/caret-left-solid.svg);
}

/*--------------------------------------------------*/
/* copyright */
/*--------------------------------------------------*/

.copyright {
	display: block;
	font-weight: 700;
	margin-top: 15px;
}

/*--------------------------------------------------*/
/* detail */
/*--------------------------------------------------*/

.detail {
	position: fixed;
	top: 0;
	left: 240px;
	height: 100%;
	width: 0;
	overflow: hidden;
	transition: width 0.2s, padding 0.2s;
}

.detail._open {
	width: 240px;
	padding-right: 10px;
}

.detail_in {
	height: 100%;
	width: 230px;
	background-color: rgba(0, 0, 0, .7);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 15px;
	box-sizing: border-box;
	box-shadow: 3px 0 6px rgba(0, 0, 0, .3);
}

.detail_close {
	text-align: right;
}

.bt_detail_close {
	display: block;
	width: 40px;
	height: 40px;
	margin: -15px -15px 0 auto;
	background-color: #FFF;
	mask: url(../img/icon/xmark-sharp-solid.svg) no-repeat center;
	mask-size: 18px;
}

.bt_detail_close:hover {
	background-color: var(--c-sub);
}

.detail_box {
	position: relative;
	margin-top: 15px;
	line-height: 1;
	padding-left: 40px;
}

.detail_box::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFF;
	mask: no-repeat center;
	mask-size: contain;
}

.detail_box._flight::before { mask-image: url(../img/icon/plane.svg); }
.detail_box._airline::before { mask-image: url(../img/icon/buildings-solid.svg); }
.detail_box._origin_airport::before { mask-image: url(../img/icon/takeoff.svg); }
.detail_box._destination_airport::before { mask-image: url(../img/icon/landing.svg); }
.detail_box._model::before { mask-image: url(../img/icon/circle-info-solid.svg); }

.detail_box h2 {
	font-size: 12px;
	font-weight: 500;
	margin: 0;
	color: #888;
}

.detail_box p {
	color: #FFF;
	margin-top: 5px;
	font-size: 16px;
	font-weight: 500;
}

@media (max-width: 620px) {
	.detail {
		padding: 0;
		top: auto;
		bottom: 70px;
		left: 0;
		height: 0;
		width: 100%;
		overflow: hidden;
		transition: height 0.2s;
	}

	.type_wake .detail {
		bottom: 50px;
	}
	
	.detail._open {
		width: 100%;
		height: 310px;
		padding: 0;
	}

	.detail_in {
		width: auto;
	}
}

/*--------------------------------------------------*/
/* map */
/*--------------------------------------------------*/

#map {
	flex: 1;
}

@media (max-width: 620px) {
	#map {
		width: 100%;
		height: calc(100% - 70px);
	}

	.type_wake #map {
		height: calc(100% - 50px);
	}
}

/*--------------------------------------------------*/
/* noise_marker */
/*--------------------------------------------------*/

.noise_marker {
	border-radius: 100%;
	padding: 10px;
}

.noise_off .noise_marker {
	display: none;
}

.noise_marker._rad {
	background-color: rgba(255, 162, 0, 0.6);
}

.noise_marker div {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #00A1CC;
	color: #FFF;
	font-family: 'Noto Sans JP';
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .3);
	opacity: 1;
}

.noise_label {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 80px;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
	line-height: 42px;

	color: #FFF;
	font-family: 'Noto Sans JP';
	font-size: 13px;
	font-weight: 700;
}

/*--------------------------------------------------*/
/* plane_marker */
/*--------------------------------------------------*/

.plane_marker {
	width: 28px;
	height: 28px;
	margin-bottom: -14px;
}

.kix_off .plane_marker._kix,
.itami_off .plane_marker._itami,
.kobe_off .plane_marker._kobe,
.takeoff_off .plane_marker._takeoff,
.landing_off .plane_marker._landing,
.aircraft_off .plane_marker {
	display: none;
}

.plane_icon {
	width: 28px;
	height: 28px;
	background: no-repeat center;
	background-size: contain;
}
._landing .plane_icon { background-image: url(../img/icon/plane_pink.svg); }
._takeoff .plane_icon { background-image: url(../img/icon/plane_blue.svg); }

.plane_tooltip {
	position: absolute;
	top: 0;
	left: 37px;
	background-color: #333;
	color: #FFF;
	line-height: 1;
	font-size: 11px;
	border-radius: 3px;
	padding: 4px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	white-space: nowrap;
}

.tooltip_off .plane_tooltip {
	display: none;
}

.plane_tooltip::before {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: -7px;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 7px solid #333;
	border-left: 0;
}

/*
#timeText {
	position: fixed;
	z-index: 5000;
	top: 0;
	left: 0;
}*/

/*--------------------------------------------------*/
/* error */
/*--------------------------------------------------*/

.error {
	position: fixed;
	top: 4px;
	left: 244px;
	width: calc(100% - 332px);
}

.error_text {
	position: relative;
	padding: 5px 10px 5px 30px;
	border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	background-color: #252525;
	color: var(--c-white);
	font-size: 14px;
}

.error_text::after {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: 6px;
	width: 14px;
	height: 14px;
	background-color: var(--c-sub);
	mask-image: url(../img/icon/triangle-exclamation-solid.svg);
	mask-size: contain;
	mask-position: center;
}

.error_text:not(:first-child) {
	margin-top: 5px;
}

@media (max-width: 620px) {
	.error {
		left: 4px;
		width: calc(100% - 93px);
	}
}

/*=====================================================*/
/* smartphone */
/*=====================================================*/

/*--------------------------------------------------*/
/* nav_mob */
/*--------------------------------------------------*/

.nav_sp {
	display: none;
	position: relative;
}

.nav_sp_upper {
	height: 50px;
}

._open .nav_sp_upper {
	height: auto;
}

@media (max-width: 620px) {
	.nav_sp {
		display: block;
	}
}

/*--------------------------------------------------*/
/* progress_bar */
/*--------------------------------------------------*/

.progress_bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background-color: #333;
}

.type_wake .progress_bar,
._open .progress_bar {
	display: none;
}

.progress_min {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background-color: rgba(255, 255, 255, .6);
}

._play .progress_min {
	background-color: var(--c-pink);
}

/*--------------------------------------------------*/
/* progress_bar */
/*--------------------------------------------------*/

.time_sp {
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #FFF;
	text-align: left;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 15px;
}

._open .time_sp {
	display: none;
}

/*--------------------------------------------------*/
/* bt_play */
/*--------------------------------------------------*/

.nav_sp .bt_play {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	right: 50px;
	background-size: 25px;
	background-position: center;
}

.type_wake .nav_sp .bt_play,
._open .nav_sp .bt_play {
	display: none;
}

/*--------------------------------------------------*/
/* bt_menu */
/*--------------------------------------------------*/

.bt_menu {
	position: fixed;
	bottom: 20px;
	right: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: all .2s;
}

.bt_menu:hover {
	opacity: .8;
}

._open .bt_menu,
.type_wake .bt_menu {
	bottom: 0;
}

.bt_menu span {
	display: block;
	position: absolute;
	left: 14px;
	width: 22px;
	height: 2px;
	background-color: #fff;
	transition: all .2s;
}

.bt_menu span:nth-child(1) { top: calc(50% - 9px); }
.bt_menu span:nth-child(2) { top: calc(50% - 1px); }
.bt_menu span:nth-child(3) { top: calc(50% + 7px); }

._open .bt_menu span:nth-child(1) {
	transform: translateY(8.5px) rotate(-45deg);
}

._open .bt_menu span:nth-child(2) {
	opacity: 0;
}

._open .bt_menu span:nth-child(3) {
	transform: translateY(-7.5px) rotate(45deg);
}

/*--------------------------------------------------*/
/* nav_sp_airport */
/*--------------------------------------------------*/

.type_wake .nav_sp_airport,
._open .nav_sp_airport {
	display: none;
}

.nav_sp_airport {
	background-color: #333;
	box-shadow: 0 -3px 6px rgba(0, 0, 0, .2);
	display: flex;
	justify-content: space-between;
	padding: 4px 10px;
	box-sizing: border-box;
	height: 20px;
}

.airport_sp {
	display: flex;
	gap: 5px;
}

.airport_sp .airport_h {
	color: #FFF;
}

.airport_sp .airport_temp,
.airport_sp .airport_wind,
.airport_sp .airport_h {
	font-size: 11px;
	min-width: auto;
	margin: 0;
}

.airport_sp .airport_arrow {
	height: 11px;
	width: 11px;
}

.itami_off .airport_sp._itami .airport_temp,
.itami_off .airport_sp._itami .airport_wind,
.itami_off .airport_sp._itami .airport_h,
.kobe_off .airport_sp._kobe .airport_temp,
.kobe_off .airport_sp._kobe .airport_wind,
.kobe_off .airport_sp._kobe .airport_h,
.kix_off .airport_sp._kix .airport_temp,
.kix_off .airport_sp._kix .airport_wind,
.kix_off .airport_sp._kix .airport_h {
	color: #858585;
}

.kix_off ._kix .airport_arrow,
.itami_off ._itami .airport_arrow,
.kobe_off ._kobe .airport_arrow {
	background-color: #858585;
}

/*=====================================================*/
/* utility */
/*=====================================================*/

.u-mt0 { margin-top: 0; }
.u-mt5 { margin-top: 5px; }
.u-mt10 { margin-top: 10px; }
.u-mt15 { margin-top: 15px; }
.u-mt20 { margin-top: 20px; }
.u-mt25 { margin-top: 25px; }
.u-mt30 { margin-top: 30px; }
.u-mt40 { margin-top: 40px; }
.u-mt50 { margin-top: 50px; }
.u-mt80 { margin-top: 80px; }
.u-mt100 { margin-top: 100px; }