@charset "utf-8";
/* CSS Document */
/* --------------------------------------------------
common
-------------------------------------------------- */
#contents {
	overflow: hidden;
}
/* -- block-ttl-area -- */
.block-ttl-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
/* -- mark-circle mark-cross -- */
div[class^="mark-"] {
	position: relative;
	width: 40px;
	min-width: 40px;
	height: 40px;
}
div.mark-circle:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #009ACB;
	border-radius: 50%;
}
div.mark-cross:before {
	content: "";
	display: block;
	background: #B20000;
	height: 100%;
	width: 1px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: rotate(45deg);
	transform-origin: center;
}
div.mark-cross:after {
	content: "";
	display: block;
	background: #B20000;
	height: 100%;
	width: 1px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: rotate(-45deg);
	transform-origin: center;
}
div.mark-circle:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #009ACB;
	border-radius: 50%;
}



/* -- situation-block -- */
.situation-block {
	display: flex;
	justify-content: flex-start;
	letter-spacing: .1em;
	align-items: center;
}
.situation-block dt {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
}
.situation-block dt span {
	font-size: 1.3rem;
	font-weight: normal;
	display: block;
}
.situation-block dd {
	display: flex;
	align-items: center;
	justify-content: center;
}
.situation-block dd div {
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin-right: 10%;
}
.situation-block dd p {
	background: #DEDEDE;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	padding: 0 .5em;
	min-width: 9em;
	margin-bottom: 1rem;
	letter-spacing: 0;
}
.situation-block dd p.caution {
	background: #F9DEDE;
}
.situation-block dd p.maintenance {
	background: #BDEBFF;
	letter-spacing: 0;
}
@media screen and (max-width: 800px) {
	.situation-block {
		display: block;
	}
	.situation-block dt {
		width: 100%;
		min-width: 7.5rem;
	}
	.situation-block dt span {
		font-size: 1.5rem;
		font-weight: bold;
		display: inline-block;
	}
	.situation-block dd {
		display: block;
		width: 100%;
		;
		text-align: center;
	}
	.situation-block dd div {
		width: 40px;
		min-width: 40px;
		height: 40px;
		margin: 10px auto;
	}
	.situation-block dd p {
		display: inline-block;
		padding: 0 10px;
		min-width: inherit;
	}
}
/* --------------------------------------------------
main-visual-area
-------------------------------------------------- */
.main-visual-area {
	/*display: block;*/
	display: none;
	padding: 20px 1% 30px;
	margin: 0 auto;
	max-width: 1920px;
	position: relative;
}
.main-visual-area img {
	border-radius: 10px;
	transition-duration: 0.3s;
}

.main-visual-area img.sp {
	display: none;
}

.main-visual-area img {
	border-radius: 10px;
	transition-duration: 0.3s;
}
.main-visual-area a:hover img {
	opacity: 0.6;
	transition-duration: 0.3s;
}
@media all and (-ms-high-contrast:none) { /* for IE11 */
	*::-ms-backdrop, .mv-block {
		min-height: 0%;
	}
	*::-ms-backdrop, .mv-l .mv-block:nth-child(2) {
		/* max-height: 170px; */
		overflow: hidden;
		border-radius: 10px;
		height: 37%;
	}
	*::-ms-backdrop, .mv-r .mv-block:nth-child(2) {
		/* max-height: 260px; */
		overflow: hidden;
		border-radius: 10px;
		height: 56%;
	}
}
@media screen and (max-width: 800px) {
	.main-visual-area {
		padding: 0 3%;
		display: block !important;
	}
	.main-visual-area img.pc {
		display: none;
	}
	.main-visual-area img.sp {
		display: block;
	}
	
}
/* ------ top-slider (slick) ------ */
.top-slider {
	position: relative;
	width: 100%;
	margin-bottom: 0 !important;
}
.top-slider .slick-dots {
	bottom: 30px !important;
	right: 23em;
	display: block !important;
	width: auto !important;
	background: #FFF;
	border-radius: 40px;
	padding: .75em 3em .75em 1em;
}
.top-slider .slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0 4px;
	position: relative;
}
.top-slider .slick-dots li button::before {
	border-radius: 50%;
	width: 8px;
	height: 8px;
}
.top-slider .slick-dots li.slick-active button::before {
	background: #005BAC !important;
	opacity: 1 !important;
}
.top-slider .slider {
	opacity: 0;
	transition: opacity .3s linear;
}
.top-slider .slider.slick-initialized {
	opacity: 1;
}
.top-slider #play-btn {
	display: inline-block !important;
	background: none;
	border: none;
	color: #005BAC;
	width: 2em;
	position: absolute;
	bottom: 2em !important;
	right: 24em;
	padding: 1em;
}
.top-slider #play-btn #start-btn:before {
	content: "\f04b";
	font-family: fontawesome;
	display: block;
	font-size: 1.4rem;
	line-height: 1;
}
.top-slider #play-btn #stopBtn:before {
	content: "\f04c";
	font-family: fontawesome;
	display: block;
	font-size: 1.4rem;
	line-height: 1;
}
@media screen and (max-width: 800px) {
	.top-slider {
		/*display: none!important;*/
		width: 100%;
	}
	.top-slider .slick-dots {
		bottom: 5px !important;
		right: 15px;
		border-radius: 40px;
		padding: .5em 3em .5em 1em;
	}
	.top-slider .slick-dots li {
		width: 8px;
		height: 8px;
	}
	.top-slider .slick-dots li button::before {
		width: 8px;
		height: 8px;
	}
	.top-slider #play-btn {
		font-size: 1.3rem;
		padding: 0.8em;
		bottom: 1rem !important;
		right: 30px;
	}
	.sp-slider-display div {
		margin-bottom: 10px;
	}
}
/*  weather  */
.weather {
	background: #323335;
	border-radius: 10px;
	color: #FFF;
	padding: .75em 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 60px;
	bottom: 60px;
}
.weather p {
	font-size: 1.6rem;
	font-weight: bold;
}
.weather p.fukuoka {
	margin-left: .5rem;
	letter-spacing: 1px;
}
.weather img {
	height: 30px;
	width: 60px;
}
@media screen and (max-width: 800px) {
	.weather {
		background: #323335;
		border-radius: 10px;
		color: #FFF;
		padding: .75em 1.5em;
		display: b;
		justify-content: center;
		align-items: center;
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 10px;
		margin-bottom: 10px;
	}
}
/* --------------------------------------------------
today-info-area
-------------------------------------------------- */
.today-info-area {
	margin-bottom: 50px;
	margin-top: 20px;
	position: relative;
	padding: 5em 0;
}
.today-info-area .inner {
	display: flex;
	justify-content: center;
	/* 2カラムになったら下に変える */
	/* justify-content: space-between; */
}
.today-info-area:before {
	content: "";
	width: 150%;
	height: 100%;
	display: block;
	position: absolute;
	left: 42%;
	top: 0;
	margin-left: -780px;
	z-index: -2;
	border-radius: 30px 0 0 30px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#005cad+0,01b3d5+100 */
	background: url("../img/top/bg_access.gif") no-repeat -200px 60px, rgb(0, 92, 173); /* Old browsers */
	background: url("../img/top/bg_access.gif") no-repeat -200px 60px, -moz-linear-gradient(left, rgba(0, 92, 173, 1) 0%, rgba(0, 115, 183, 1) 100%); /* FF3.6-15 */
	background: url("../img/top/bg_access.gif") no-repeat -200px 60px, -webkit-linear-gradient(left, rgba(0, 92, 173, 1) 0%, rgba(0, 115, 183, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: url("../img/top/bg_access.gif") no-repeat -250px 15px, linear-gradient(to right, rgba(0, 92, 173, 1) 0%, rgba(0, 115, 183, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005cad', endColorstr='#01b3d5', GradientType=1); /* IE6-9 */
}
@media screen and (max-width: 800px) {
	.today-info-area {
		margin-bottom: 20px;
		padding: 2em 0;
		margin-top: 0;
	}
	.today-info-area .inner {
		display: block;
	}
	.today-info-area:before {
		height: 100%;
		left: 0;
		top: 0;
		margin-left: 0;
		border-radius: 0;
		background: url("../img/top/bg_access.gif") no-repeat -100px 50px, rgb(0, 92, 173); /* Old browsers */
		background: url("../img/top/bg_access.gif") no-repeat -100px 50px, -moz-linear-gradient(left, rgba(0, 92, 173, 1) 0%, rgba(0, 115, 183, 1) 100%); /* FF3.6-15 */
		background: url("../img/top/bg_access.gif") no-repeat -100px 50px, -webkit-linear-gradient(left, rgba(0, 92, 173, 1) 0%, rgba(0, 115, 183, 1) 100%); /* Chrome10-25,Safari5.1-6 */
		background: url("../img/top/bg_access.gif") no-repeat -100px 50px, linear-gradient(to right, rgba(0, 92, 173, 1) 0%, rgba(0, 115, 183, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#005cad', endColorstr='#01b3d5', GradientType=1); /* IE6-9 */
		background-size: contain;
	}
}
/* ------ flight-search ------ */
.flight-search {
	background: #323335;
	border-radius: 10px;
	color: #FFF;
	/* 2カラムになったら下に変える */
	/* margin-right: 30px; */
	/* width: calc(100% - 460px); */
	padding: 20px 24px;
	width: calc(100% - 440px);
}
.flight-search .ttl-fs {
	font-size: 2rem;
	font-weight: bold;
}
.flight-search .ttl-fs:before {
	content: "\e919";
	font-family: 'icoairport';
	display: inline-block;
	margin-right: .5em;
	color: #00AFD6;
	font-size: 1.2em;
	vertical-align: middle;
}
.flight-search .more-link a {
	color: #FFF;
}
/* choice-flight */
.choice-flight form {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}
.choice-flight fieldset {
	margin: 20px auto;
	width: 30%;
	border-radius: 5px;
	overflow: hidden;
	background: #FFF;
	color: #323335;
	margin-right: 5%;
}
@media screen and (max-width: 800px) {
	.choice-flight fieldset {
		width: 100%;
		margin-right: 0;
	}
}

.choice-flight fieldset div {
	display: flex;
	position: relative;
}
.choice-flight fieldset div p {
	position: relative;
	flex: 1;
	width: 50%;
	z-index: 2;
}
.choice-flight fieldset div p input {
	width: 100%;
	height: 4em;
	opacity: 0;
	margin-right: 0;
	cursor: pointer;
}
.choice-flight fieldset div p label {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	font-size: 1.8rem;
	font-weight: bold;
	margin-right: 0;
	z-index: 1;
	transition: .5s;
}
.choice-flight fieldset div p.active label {
	color: #fff;
	border-radius: 5px;
	/*	box-shadow: 0 0 10px rgb(0,0,0,0.5);*/
	/*	background: #00AFD6;*/
}
.choice-flight fieldset div p:first-child:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background: #00AFD6;
	box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
	transition: .5s;
	border-radius: 5px;
}
.choice-flight fieldset div p:first-child.active:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00AFD6;
	box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
	transition: .5s;
	border-radius: 5px;
}
/* flight-search-area */
.flight-search-area {
	width: 65%;
	margin-bottom: 15px;
	position: relative;
}

@media screen and (max-width: 800px) {
	.flight-search-area {
		width: 100%;
	}
}

.flight-search-area input {
	background: #FFF;
	display: inline-block;
	border-radius: 5px;
	padding-right: 30px;
	border: 0;
	width: 100%;
	padding: 1em 3em 1em 1em;
	cursor: pointer;
}
.flight-search-area input::placeholder {
	color: #000;
}
.flight-search-area button {
	position: absolute;
	padding: .5em 1em;
	right: 0;
	top: 0;
	font-size: 1.8rem;
	background: none;
	border: none;
	height: 100%;
	cursor: pointer;
	color: #005CAD;
}
/* trip_com */
.trip_com {
	text-align: center;
}

@media screen and (max-width: 800px) {
	.trip_com {
		text-align: left;
	}
}

.trip_com a {
	color: #FFF;
	text-decoration: underline;
	font-size: 2rem;
	line-height: 1.3;
}
.trip_com a:hover {
	text-decoration: none;
}
/* @media screen and (max-width: 1550px) {
	.flight-search {
		width: calc(100% - 440px);
	}
} */
@media screen and (max-width: 800px) {
	.flight-search {
		width: 100%;
		margin-bottom: 30px;
	}
	.choice-flight fieldset div p label {
		font-size: 2rem;
	}
	.flight-search-area input {
		padding: 1em;
		font-size: 2rem;
	}
	.root-search input:not([type="radio"]), .hour-minite-area select {
		font-size: 2rem;
	}
	.root-search input:not([type="radio"]) {
		padding: .5em;
	}
	.root-search input {
		margin: .8em 0;
	}
}
@media screen and (max-width: 420px) {
	.flight-search .block-ttl-area {
		display: block;
	}
}
/* ------ waiting-time ------ */
.waiting-time {
	border-radius: 10px;
	width: 28%;
	min-width: 430px;
	box-shadow: 0 0 4px rgb(0, 0, 0, 0.25);
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	background: #FFF;
}
.waiting-time .ttl-wt {
	font-size: 2rem;
	font-weight: bold;
}

.waiting-time .note {
	font-size: 1.4rem;
	padding: 0 0 1em;
	line-height: 1.4;
}

.waiting-time .now {
	font-size: 1.4rem;
	margin-left: auto;
	padding: .5em 0;
}
/* north south  */
.waiting-time > dl {
	width: 100%;
	display: flex;
	margin-bottom: 20px;
	justify-content: space-between;
}
.waiting-time > dl dt {
	color: #FFF;
	padding: 5px 10px;
	font-size: 3.2rem;
	line-height: 1.2;
	font-weight: bold;
	min-width: 4em;
	display: inline-block;
	vertical-align: bottom;
}
.north dt {
	background: #E97F7F;
}
.south dt {
	background: #009ACB;
}
.waiting-time > dl dt span {
	font-size: 1.4rem;
	display: inline-block;
	margin-left: .5em;
	letter-spacing: .1em;
	font-weight: normal;
}
.waiting-time > dl dd {
	display: flex;
	width: calc(100% - 9em);
	justify-content: space-between;
	align-items: center;
}
.waiting-time > dl dd ul {
	display: flex;
	font-size: 4rem;
	line-height: 1;
}
.waiting-time > dl dd ul li {
	padding: 0 5px;
}
.waiting-time > dl p {
	font-weight: bold;
	font-size: 2.0rem;
}
.waiting-time > dl p .number {
	font-size: 2.7rem;
}
.waiting-time > dl p .txt-wait {
	font-size: 1.4rem;
	font-weight: normal;
	margin-right: .5em;
}
/* out-work  */
.waiting-time .out-work {
	background: #F0F0F0;
	padding: 1.5em;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.waiting-time .out-work p {
	font-size: 2.5rem;
	font-weight: bold;
}
.waiting-time .out-work img {
	width: 54px;
}
/* waiting-note  */
.waiting-time .waiting-note {
	margin-top: auto;
	font-size: 90%;
}
.waiting-time .waiting-note:before {
	content: "\e92b";
	font-family: 'icoairport';
	display: inline-block;
	margin-right: .5em;
	color: #00AFD6;
	font-size: 1.2em;
	vertical-align: middle;
}
@media screen and (max-width: 1550px) {
	.waiting-time {
		width: 30%;
		min-width: 420px;
	}
}
@media screen and (max-width: 800px) {
	.waiting-time {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		padding-bottom: 40px;
		margin-bottom: 20px;
		position: relative;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.waiting-time .block-ttl-area {
		width: 100%;
	}
	.waiting-time .now {
		position: absolute;
		bottom: 20px;
		right: 30px;
		font-size: 1.4rem;
		margin-left: auto;
		padding: .5em 0;
	}
	.waiting-time > dl {
		flex-direction: column;
		align-items: center;
		width: 46%;
		justify-content: flex-start;
	}
	.waiting-time > dl:first-of-type:before {
		content: "";
		display: block;
		height: calc(100% - 12em);
		width: 1px;
		background: #e6e6e6;
		position: absolute;
		right: 50%;
	}
	.waiting-time > dl p {
		font-size: 2.0rem;
	}
	.waiting-time > dl dt {
		margin-bottom: 5px;
		width: 100%;
		font-size: 2.4rem;
	}
	.waiting-time > dl dd {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.waiting-time > dl dd ul {
		margin-bottom: 10px;
	}
	.waiting-time > dl p .number {
		font-size: 2.4rem;
	}
	.waiting-time .out-work {
		margin-bottom: 10px;
	}
	.waiting-time .out-work p {
		font-size: 2.0rem;
	}
	.waiting-time .waiting-note {
		width: 100%;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 480px) {
	.waiting-time > dl:first-of-type:before {
		height: calc(100% - 13.5em);
	}
}
/* --------------------------------------------------
access-area
-------------------------------------------------- */
.access-area {
	position: relative;
	padding: 0;
	margin-bottom: 4em;
}


.access-area .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.access-area .access {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 10px;
}
.access-area .access .more-link {
	width: 25%;
}
@media screen and (max-width: 800px) {
	.access-area {
		padding: 0 0 40px;
		margin-bottom: 0;
		margin-top: 30px;
	}
	.access-area .access {
		display: block;
	}
	.access-area .access .more-link {
		width: 100%;
	}
}


/* ------ access ------ */

.access p {
	width: 100%;
	margin-bottom: 2em;
}
.access .more-link {
	text-align: right;
	width: 100%;
}
@media screen and (max-width: 800px) {
	.access {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 0;
	}
	.access .sttl {
		text-align: center;
	}
}


/* ------ parking ------ */
.parking-wrap {
	display: block;
	width: 45%;
}

.parking-wrap .parking {
	width: 100%;
	margin-bottom: 20px;
}

.parking-wrap .parking-int {
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 4px rgb(0, 0, 0, 0.25);
	color: #323335;
	padding: 18px;
	align-self: flex-start;
}

.parking-wrap .parking-int .block-ttl-area{
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	justify-content: center;
}


.parking-wrap .parking-int  .parking-list {
	margin-bottom: 20px;
	display: block;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;

}

.parking-wrap .parking-list .dom-under-line {
	border-bottom: 1px dotted;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

.parking-wrap .parking-int  .parking-list > li{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.parking-wrap .parking-int .situation-block {
	width: auto;
	min-width: auto;
	align-items: center;
	width: 46%;
	margin: 5px 0;
}


.parking-wrap .parking-int .situation-block dt {
	width: 5em;
	min-width: 5em;
	font-size: 1.4rem;
	line-height: 1.6;
}

.parking-wrap .parking-int .situation-block dd{
	width: 100%;
	display: block;
}


.parking-wrap .parking-int .situation-block dd p{
	width: 100%;
	min-width: 100%;
	font-size: 1.4rem;
	display: block;
	text-align: center;
	margin-bottom: 0;
	padding: 0 .5em;
}

.parking-wrap .parking-int .parking-current ul li {
	width: 40%;
	line-height: 1.4;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.parking-wrap .parking-int .parking-current ul li span {
	font-size: 85%;
	font-weight: normal;
}

.parking-int .parking-current ul li:last-child {
	width: 60%;
}

.parking-int .parking-current ul li:last-child a {
	color: #03F;
	text-decoration: underline;
}


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

	.parking-wrap {
		width: 100%;
	}

	.parking-wrap .parking-int {
		margin-bottom: 30px;
	}
	.parking-wrap .parking-int .block-ttl-area{
		font-size: 2.0rem;
	}
	

	.parking-wrap .parking-int .parking-list{
		margin-bottom: 0;
	}

	.parking-wrap .parking-int .parking-list li{
		display: block;
	}

	.parking-wrap .parking-int .situation-block {
		width: auto;
		min-width: auto;
		align-items: center;
		width: 100%;
		margin: 5px 0;
		display: flex;
	}

	.parking-wrap .parking-int .situation-block dt {
		width: 6em;
		min-width: 6em;
		font-size: 1.6rem;
	}

	.parking-wrap .parking-int .situation-block dd{
		font-size: 1.6rem;
	}


	.parking-wrap .parking-int .situation-block dd p{
		font-size: 1.6rem;
	}

	.parking-wrap .parking-int .parking-current {
		margin-top: 10px;
		width: calc(100% - 6em);
	}
	.parking-wrap .parking-int .parking-current ul li br{
		display: none;
	}
	.parking-wrap .parking-int .parking-current ul li span{
		margin-left: .5em;
		font-size: 100%;
	}
	.parking-wrap .parking-int .parking-current ul li {
		width: 50%;
	}
	.parking-wrap .parking-int .parking-current ul li:last-child {
		width: 50%;
	}
}


.parking {
	background: #FFF;
	border-radius: 10px;
	width: 45%;
	box-shadow: 0 0 4px rgb(0, 0, 0, 0.25);
	color: #323335;
	padding: 18px;
	align-self: flex-start;
}

.parking .block-ttl-area {
	margin-bottom: 10px;
}

.parking .block-ttl-area .ttl-p {
	font-size: 2.4rem;
	font-weight: bold;
}
.parking .block-ttl-area .ttl-p:before {
	content: "\e92e";
	font-family: 'icoairport';
	display: inline-block;
	margin-right: .5em;
	color: #005AAC;
	font-size: 1.2em;
	vertical-align: middle;
}
.parking .block-ttl-area .now {
	font-size: 90%;
}



.parking .note {
	font-size: 1.1rem;
	letter-spacing: 0;
	margin-left: 1em;
	text-indent: -1em;
	line-height: 1.4;
	margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
	.parking .note {
		font-size: 1.4rem;
	}	
}

.parking-current {
	width: 50%;
	margin-left: auto;
}
.parking-current ul {
	border: none;
	display: flex;
	justify-content: flex-start;
}
.parking-current ul li {
	padding: 0;
	text-align: right;
	border: none;
	width: 30%;
	font-weight: bold;
}

@media screen and (max-width: 800px) {
	.parking > .parking-current  {
		display: none;
	}
	
}


.parking .parking-list {
	margin-bottom: 20px;
	display: block;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;

}

.parking .parking-list > li{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 800px) {
	.parking .parking-list li{
		display: block;
	}
	
}

.parking .situation-block {
	width: auto;
	min-width: auto;
	align-items: flex-start;
	width: 46%;
	margin: 5px 0;
}


.parking .situation-block dt {
	width: 5em;
	min-width: 5em;
	font-size: 1.4rem;
	line-height: 1.6;
}
@media screen and (max-width: 800px) {
	.parking .situation-block dt {
		width: 6em;
		min-width: 6em;
		font-size: 1.6rem;
	}
	
}
.parking .situation-block dd{
	width: 100%;
	display: block;
}


.parking .situation-block dd p{
	width: 100%;
	min-width: 100%;
	font-size: 1.4rem;
	display: block;
	text-align: center;
	margin-bottom: 0;
	padding: 0 .5em;
}

@media screen and (max-width: 800px) {
	.parking .situation-block dd p{
		font-size: 1.6rem;
	}
}

.parking .btn-parking-reserve {
	text-align: right;
	width: 50%;
	min-width:auto;
	background: none;
	font-size: 1.3rem;
	letter-spacing: 0;
	margin-right: 0;
	padding-left: 5.4em;
}
.parking .situation-block + .btn-parking-reserve {
    padding-left: 0em;
}


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

	.parking .btn-parking-reserve {
		font-size: 1.6rem;
	}

    .parking .situation-block + .btn-parking-reserve {
        padding-left: 6em;
    }
}

@media screen and (max-width: 580px){
    .parking .situation-block + .btn-parking-reserve {
        padding-left: 6em;
    }
}



@media screen and (max-width: 420px) {
	.parking  .btn-parking-reserve {
		margin: 5px 0 0 0 !important;
		width: 100%;
		
	}
	
}
.parking .btn-parking-reserve a {
	display: block;
	text-align: center;
	padding: .5em 1.5em .5em .25em;
	border-radius: 5px;
	background-size: 100% 200%;
	transition: background-position ease 0.25s, box-shadow .15s ease-out, -webkit-box-shadow .15s ease-out;
	background-image: linear-gradient(to top, #00AFD6 0%, #00AFD6 50%, #1361A7 50%, #1361A7 100%);
	background-position: 0 0;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
	color: #fff;
	position: relative;
	min-width: 11em;
	width: auto;
	margin-top: 2px;
	font-size: 1.3rem;
	word-wrap: break-word;
}

.parking .btn-parking-reserve .bt-dom {
	background: #1361A7;
}

.parking .btn-parking-reserve .bt-int {
	background: #00AFD6;
}


.parking .btn-parking-reserve a:hover {
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
	background-position: 0 100%;
}
.parking .btn-parking-reserve a:after {
	font-family: 'icoairport';
	content: "\e90a";
	display: inline-block;
	vertical-align: middle;
	right: .5em;
	top: 50%;
	margin-top: -.8em;
	position: absolute;
}
@media screen and (max-width: 800px) {
	.parking {
		min-width: 100%;
		/*min-width:inherit;*/
		position: relative;
		top: auto;
		width: 100%;
		max-width: auto;
		box-shadow: 0 0 10px rgb(0, 0, 0, 0.25);
		color: #323335;
		padding: 20px 20px 10px;
		margin-bottom: 30px;
	}
	.parking .block-ttl-area {
		display: block;
		margin-bottom: 10px;
	}
	.parking .block-ttl-area:after {
		content: "";
		display: block;
		clear: both;
	}
	.parking .block-ttl-area .ttl-p {
		display: inline-block;
	}
	.parking .block-ttl-area .now {
		float: right;
		padding: 0;
	}

	.parking-list li {
		width: 100%;
	}
	.parking .situation-block {
		display: flex;
	}
	.parking .situation-block dt {
		text-align: center;
	}
	.parking .situation-block dd {
		display: flex;
	}

	.parking-list .situation-block p {
		text-align: center;
		margin-bottom: 0;
		width: 8em;
		margin-left: 0;
		padding: 0;
	}
	.parking-list li:first-child {
		border-right: none;
	}
	/*

	.parking .situation-block {
		display: flex;
	}
	.parking .situation-block dt {
		min-width: inherit;
		width: 4em;
		text-align: left;
	}
	.parking .situation-block dd {
		display: flex;
		width:auto;
		text-align: center;
	}
	.parking .situation-block dd div {
		margin: 0 20px 0 0;
	}*/
}
@media screen and (max-width: 580px) {
	.parking-list {
		display: flex;
		margin-right: 0;
		margin-bottom: 0;
		clear: both;
		margin-top: 0;
	}
	.parking-list:before {
		display: none;
	}
	.parking-list li {
	}
	.parking .situation-block {
		display: flex;
		width: 100%;
		align-items: flex-start;
	}
	.parking .situation-block dd {
		width: 100%;
		flex-wrap: wrap;
	}
	.parking .situation-block dt {
		text-align: center;
	}
	.parking-list .situation-block p, .situation-block dd p.maintenance {
		text-align: center;
		margin-bottom: 0;
		margin-left: 0;
	}
	.parking-list li:first-child {
		border-right: none;
	}

	.parking  .btn-parking-reserve {
		margin: 0;
		height: auto;
		font-size: 1.6rem;
		padding-left: 6em;
		max-width: none;
		width: 100%;
		
	}
	.parking  .btn-parking-reserve a{
		font-size: 1.6rem;
		
	}
}



.parking .parking-list .parking-current {
	margin-left: 0;
	width: 50%;
	min-width: 50%;
	font-size: 1.4rem;
	margin: 5px 0;
}

@media screen and (max-width: 800px) {
	.parking .parking-list .parking-current {
		padding-left: 6.5em;
		margin-top: 10px;
		width: 100%;
		min-width: 50%;
		font-size: 1.4rem;
	}
}

.parking .parking-list .parking-current ul li {
	padding: 0;
	font-weight: normal;
}

.parking .parking-list .parking-current ul li span{
	display: inline-block;
	width: 2em;
}

@media screen and (max-width: 800px) {
	.parking .parking-list .parking-current ul li {
		position: relative;
	}
	.parking .parking-list .parking-current ul li:before {
		content: "";
		display: block;
		font-weight: bold;
	}
	.parking .parking-list .parking-current ul li:first-child:before {
		content: "待ち時間";
	}
	.parking .parking-list .parking-current ul li:nth-child(2):before {
		content: "待ち台数";
	}
	.parking .parking-list .parking-current ul li:last-child:before {
		content: "空き台数";
	}
	.parking .parking-list .parking-current.south ul li:first-child:before {
		content: "";
	}
	.parking .parking-list .parking-current.south ul li:nth-child(2):before {
		content: "";
	}
}




.btn-twitter,
.btn-live-camera {
    width: 100%;
    margin: 0 auto 6px;
}

.btn-twitter a,
.btn-live-camera a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00AFD6;
    color: #FFF;
    border-radius: 6px;
    padding: .5em 1em;
    transition: .25s;
	font-size: 1.3rem;
}
.btn-twitter a:hover,
.btn-live-camera a:hover {
    background: #0059AC;
}
.btn-twitter a:before {
    content: "";
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    margin-right: .5em;
    background: url(/assets/img/common/icon_twitter.svg) no-repeat center center;
}
.btn-live-camera a:before {
    content: "";
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    margin-right: .5em;
    background: url(/assets/img/common/icon_live_camera.svg) no-repeat center center;
}

@media screen and (max-width: 425px) {
	.btn-twitter,
	.btn-live-camera{
		margin: 10px auto 15px;
	}
}


/* ------ root-search ------ */
.root-search {
	background: #323335;
	width: 50%;
	border-radius: 10px;
	padding: 30px 40px 25px;
	font-size: 1.4rem;
	display: flex;
flex-direction: column;
justify-content: center;
}
.root-search .ttl-rs {
	font-size: 2.3rem;
	font-weight: bold;
	margin: 0 auto 10px;
	color: #fff;
}
.root-search .ttl-rs:before {
	content: "\e92f";
	font-family: 'icoairport';
	display: inline-block;
	margin-right: .5em;
	color: #005AAC;
	font-size: 1.2em;
	vertical-align: middle;
}
.root-search fieldset > div {
	margin-bottom: .5em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.root-search input {
	background: #FFF;
	display: inline-block;
	border-radius: 4px;
	border: 0;
	padding: .5em 1em;
	cursor: pointer;
	margin: .8em .5em;
}
.root input {
	width: 40%;
}
.root button[type="button"] {
	background: none;
	border: 0;
	display: block;
	font-size: 3rem;
	cursor: pointer;
}
.daytime .day-area {
	position: relative;
}
.daytime .day-area button {
	position: absolute;
	padding: .5em 1em;
	right: .5em;
	top: 0;
	font-size: 2rem;
	background: none;
	border: none;
	height: 100%;
	cursor: pointer;
}
.daytime input[type="button"] {
	background: #00AFD6;
	color: #FFF;
}
.daytime select {
	background: #FFF;
	display: inline-block;
	border-radius: 4px;
	border: 0;
	padding: 1em;
	cursor: pointer;
	margin: 1em .5em;
	width: 90px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.situation {
	padding: 20px 0 40px;
}
.situation input[type="radio"] {
	display: none;
}
.situation input[type="radio"]:checked + label:before {
	border-color: #FFF;
	animation: ripple 0.2s linear forwards;
}
.situation input[type="radio"]:checked + label:after {
	transform: scale(1);
}
.situation label {
	display: inline-block;
	min-height: 20px;
	position: relative;
	padding: 0 30px 0 40px;
	margin-bottom: 0;
	cursor: pointer;
	vertical-align: bottom;
}
.situation label:before, .situation label:after {
	position: absolute;
	content: '';
	border-radius: 50%;
	transition: all .3s ease;
	transition-property: transform, border-color;
}
.situation label:before {
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	border: 2px solid rgba(255, 255, 255, 0.54);
}
.situation label:after {
	top: 8px;
	left: 8px;
	width: 12px;
	height: 12px;
	transform: scale(0);
	background: #FFF;
}
.root-search button[type="submit"] {
	background: #00AFD6;
	width: 80%;
	color: #FFF;
	max-width: 360px;
	border-radius: 4px;
	border: 0;
	padding: 1.5em;
	margin: 0 auto;
	display: block;
	font-size: 1.8rem;
	cursor: pointer;
}
.root-search button[type="submit"] span {
	margin-right: 1em;
}
.root-search .caution {
	font-size: 80%;
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width: 1680px) {
	.root-search {
		width: 50%;
		min-width: inherit;
		padding: 30px 35px 25px;
		left: 50%;
	}
	.root-search .ttl-rs {
		font-size: 2.3rem;
	}
	.root-search .root {
		justify-content: space-between;
	}
	.root-search fieldset > div {
		justify-content: flex-start;
	}
	.root-search .daytime > div {
		flex-wrap: wrap;
	}
	.root-search .daytime .day-area {
		width: 50%;
		margin-right: 50%;
	}
	.root-search .daytime .day-area input {
		width: calc(100% - 4em);
		margin-bottom: 0;
	}
	.daytime .day-area button {
		top: 0.5em;
	}
	.daytime select {
		margin: 1em 0 1em 1em;
	}
	.root-search .situation > div {
		justify-content: center;
	}
}

@media screen and (max-width: 800px) {
	.root-search {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		padding: 30px 20px 50px;
		margin: 0 auto;
	}

	.root-search .ttl-rs {
		margin: 0 20px 20px;
		text-align: center;
	}
	.root-search .ttl-rs:before {
		display: none;
	}
	.root-search fieldset {
		margin: 0 auto .5em;
		max-width: 400px;
	}
	.root-search .root > div {
		display: grid;
		grid-template-rows: 70px 70px;
		grid-template-columns: 75% 25%;
		display: -ms-grid;
		-ms-grid-rows: 70px 70px;
		-ms-grid-columns: 75% 25%;
	}
	.root-search input {
		margin: .8em 0;
	}
	.root-search .root input {
		width: 100%;
	}
	.root-search .root input:first-of-type {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
	}
	.root-search .root input:last-of-type {
		grid-row: 2 / 3;
		grid-column: 1 / 2;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
	}
	.root-search .root button {
		grid-row: 1 / 3;
		grid-column: 2 / 3;
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.root-search .situation {
		justify-content: space-around;
	}
	.situation label {
		padding: 0 10px 0 25px;
	}
	.situation label:before {
		left: 0;
		top: 0;
		width: 16px;
		height: 16px;
		border: 2px solid rgba(255, 255, 255, 0.54);
	}
	.situation label:after {
		top: 6px;
		left: 6px;
		width: 8px;
		height: 8px;
	}
}
@media screen and (max-width: 480px) {
	.root-search .ttl-rs {
		font-size: 2rem;
		margin: 0 20px 20px;
		text-align: center;
	}
}
/* --------------------------------------------------
traffic-situation
-------------------------------------------------- */
.traffic-situation {
	margin-bottom: 40px;
}
.traffic-situation .ttl-ts {
	font-size: 2.4rem;
	font-weight: bold;
}
.traffic-situation .ttl-ts:before {
	content: "\e930";
	font-family: 'icoairport';
	display: inline-block;
	margin-right: .5em;
	color: #005AAC;
	font-size: 1.2em;
	vertical-align: middle;
}
.traffic-list {
	display: flex;
	margin-right: -2%;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.traffic-list li {
	width: 31%;
	padding-right: 2%;
	margin-right: 2%;
	padding-bottom: .5rem;
	padding-top: .5rem;
	border-right: 1px solid #DEDEDE;
}
.traffic-list li:nth-child(3n) {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}
.traffic-list li .situation-block {
	justify-content: space-between;
}
.traffic-list .situation-block dt {
	width: auto;
}
.traffic-list .situation-block dt br {
	display: none;
}
.traffic-list li .situation-block dd {
	width: calc(100% - 10.5em);
}
.traffic-situation .more-link {
	text-align: right;
}
@media screen and (max-width: 800px) {
	.traffic-situation .inner {
		padding: 0 8%;
	}
	.traffic-list {
		position: relative;
		margin: 20px auto 0;
		margin-right: -4%;
	}
	.traffic-list li {
		width: 46%;
		margin-right: 4%;
		padding-right: 0;
		padding-top: 0;
		padding-bottom: 0;
		border-right: none;
		margin-bottom: 1rem;
	}
	.traffic-list li:nth-child(3n) {
		border-right: none;
		margin-right: 4%;
		padding-right: 0;
	}
	.traffic-list .situation-block dt {
		margin-right: 0;
		text-align: center;
		font-size: 1.7rem;
		margin-bottom: 5px;
	}
	.traffic-list li .situation-block dd {
		width: 100%;
	}
	.traffic-list .situation-block dd p {
		min-width: auto;
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.traffic-situation .inner {
		padding: 0 4%;
	}
}
/* --------------------------------------------------
information-area
-------------------------------------------------- */
.information-area {
	position: relative;
	padding: 60px 0;
	margin-bottom: 60px;
}
.information-area:after {
	content: "";
	display: block;
	position: absolute;
	width: 96%;
	height: 100%;
	margin: auto;
	top: 0;
	bottom: 0;
	right: auto;
	left: 0;
	background: #fff;
	border-radius: 0 200px 0 0;
	z-index: -1;
}
.information-area .inner {
	display: flex;
	justify-content: space-between;
}
.news, .topics {
	padding: 0 3%;
	width: 50%;
	position: relative;
}
.news .btn-emergency {
	text-align: right;
	position: absolute;
	right: 5em;
	top: 30px;
}
.btn-emergency a {
	display: block;
	text-align: center;
	padding: .5em 3em .5em 2em;
	border-radius: 5px;
	background-size: 100% 200%;
	transition: background-position ease 0.25s, box-shadow .15s ease-out, -webkit-box-shadow .15s ease-out;
	background-image: linear-gradient(to top, #00AFD6 0%, #00AFD6 50%, #1361A7 50%, #1361A7 100%);
	background-position: 0 0;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
	color: #fff;
}
.btn-emergency a:hover {
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
	background-position: 0 100%;
}
.btn-emergency a:after {
	font-family: 'icoairport';
	content: "\e90a";
	display: inline-block;
	vertical-align: middle;
	right: 1em;
	top: 50%;
	margin-top: -.8em;
	position: absolute;
}
@media screen and (max-width: 800px) {
	.news .btn-emergency {
		right: 4em;
	}
}
@media screen and (max-width: 600px) {
	.news .btn-emergency {
		position: relative;
		right: auto;
		top: auto;
		margin-bottom: 1em;
		margin-right: 1em;
	}
}
/* ------ info-list ------ */
.info-list li {
	padding: 0 3em 1em 0;
	margin-bottom: 1em;
	min-height: 6.2em;
}
.info-list a {
	display: block;
}
.info-list a .info-date {
	margin-bottom: .4em;
	min-width: inherit;
}
.info-list a .info-ttl {
	height: 3.5em;
	overflow: hidden;
}
@media screen and (max-width: 800px) {
	.info-list li {
		padding: 0 0 1em 0;
		margin-bottom: 1em;
		min-height: 6.2em;
	}
}
/* ------ list-more ------ */
.information-area .list-more {
	text-align: center;
	margin: 2em 0;
}
.information-area .list-more a {
	font-size: 1.8rem;
	position: relative;
	padding-left: 2em;
	transition: .3s;
}
.information-area .list-more a:hover {
	color: #005CAD;
}
.information-area .list-more a:hover:before, .information-area .list-more a:hover:after {
	background: #005CAD;
}
.information-area .list-more a:before {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	height: 3px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: auto;
	left: 0;
	background: #000;
	z-index: 0;
	transition: .3s;
}
.information-area .list-more a:after {
	content: "";
	display: block;
	position: absolute;
	width: 3px;
	height: 15px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: auto;
	left: 6px;
	background: #000;
	z-index: 0;
	transition: .3s;
}
@media screen and (max-width: 800px) {
	.information-area {
		padding: 40px 0 20px;
	}
	.information-area:after {
		border-radius: 0 80px 0 0;
	}
	.information-area .inner {
		display: block;
	}
	.news, .topics {
		padding: 0 3%;
		width: 100%;
		margin-bottom: 40px;
	}
	.information-area .sttl {
		text-align: center;
	}
}
/* --------------------------------------------------
guide-area
-------------------------------------------------- */
.guide-area {
	margin-bottom: 30px;
}
.guide-area .inner {
	display: flex;
	justify-content: space-between;
}
.guide-area .inner > div {
	width: 47.8%;
	margin-bottom: 40px;
}
.guide-area .guide-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.guide-area .guide-list li {
	width: 47.7%;
}
.guide-area .guide-list li .pht-cover .frame {
	padding-top: 65.6%;
}
.guide-area .guide-list li:first-child {
	width: 100%;
	margin-bottom: 5%;
}
.guide-area .guide-list li:first-child .pht-cover .frame {
	padding-top: 47.7%;
}
.guide-area .pht-cover {
	box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.13);
}
.guide-area .pht-cover.cap01 figcaption {
	padding: 1em 0;
}
@media screen and (max-width: 800px) {
	.guide-area {
		margin-bottom: 60px;
	}
	.guide-area .inner {
		display: block;
	}
	.guide-area .inner > div {
		width: 100%;
		margin-bottom: 30px;
	}
	.guide-area .sttl {
		text-align: center;
	}
	.more-link.sp-only {
		margin: 0 auto;
		text-align: center;
	}
}
@media screen and (max-width: 350px) {
	.more-link.sp-only {
		padding-bottom: 30px;
	}
}
/* --------------------------------------------------
beginner-area
-------------------------------------------------- */
.beginner-area .inner {
	position: relative;
}
.beginner-txt {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #FFF;
	padding: 50px;
	width: 640px;
	border-radius: 0 100px 0 0;
}
.beginner-txt .sttl span {
	letter-spacing: 0.2rem;
}
.beginner-txt p {
	margin-bottom: 2em;
}
.beginner-txt .more-link {
	text-align: right;
	margin-bottom: 0;
}
.beginner-img {
	text-align: right;
}
.beginner-img img {
	border-radius: 20px 0 0 0;
}
@media screen and (max-width: 800px) {
	.beginner-area {
		margin-bottom: 100px;
	}
	.beginner-txt {
		padding: 40px 20px;
		width: 96%;
		border-radius: 0 60px 0 0;
		bottom: -60px;
	}
	.beginner-txt .sttl span {
		font-size: 2.4rem;
	}
	.beginner-img {
		width: 200%;
		margin-right: -100%;
		text-align: center;
	}
}
/* --------------------------------------------------
travel-info
-------------------------------------------------- */
.travel-info {
	position: relative;
	padding: 60px 0 100px;
	margin-bottom: 0;
}
.travel-info:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #E4E4E4;
	border-radius: 200px 0 0 0;
	top: 0;
	left: 0;
	z-index: -1;
}
.list-travel-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.list-travel-info li {
	width: 32%;
	border-radius: 10px;
	box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.13);
}
.list-travel-info li > a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
	border-radius: 10px;
	overflow: hidden;
}

.list-travel-info li > a img {
	border-radius: 10px;
	transition: all .25s;
	width: 100%;
}
.list-travel-info li > a:hover img {
	transform: scale(1.05);
}

.list-travel-info li:last-child > a {
	overflow: hidden;
	position: relative;
	display: block;
	z-index: 10;
	border-radius: 10px;
}
.list-travel-info li:last-child > a iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}



@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, .list-travel-info li > a > div {
		margin: 0;
	} /* IE11 */
}
@media screen and (max-width: 800px) {
	.travel-info {
		padding: 40px 0 60px;
	}
	.travel-info:before {
		border-radius: 80px 0 0 0;
	}
	.list-travel-info li {
		width: 48%;
		margin-bottom: 4%;
	}
	.list-travel-info li:last-child {
		width: 100%;
		margin-bottom: 0;
	}
	.list-travel-info li:last-child > a {
		width: 100%;
		height: 0;
		padding-top: 100%;
	}
}
/* --------------------------------------------------
bnr-area (slick)
-------------------------------------------------- */
.bnr-area {
	padding: 3% 0;
	background: #fff;
}
.bnr-list li {
	padding: 5px;
	transition-duration: .35s;
}
.bnr-list li a {
	transition-duration: .35s;
}
.bnr-list li a:hover {
	opacity: .7;
}
.bnr-list .slick-prev {
	left: -100px;
}
.bnr-list .slick-next {
	right: -100px;
}
.bnr-list .slick-prev::before, .bnr-list .slick-next::before {
	font-family: 'icoairport' !important;
	font-size: 40px;
	line-height: 1;
	opacity: .75;
	color: #00AFD5 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.bnr-list .slick-prev::before {
	content: "\e909" !important;
	font-weight: normal !important;
}
.bnr-list .slick-next::before {
	content: "\e90a" !important;
	font-weight: normal !important;
}
@media screen and (max-width: 1600px) {
	.bnr-list {
		padding: 0 30px;
	}
	.bnr-list .slick-prev {
		left: -20px;
	}
	.bnr-list .slick-next {
		right: -20px;
	}
}
@media screen and (max-width: 800px) {
	.bnr-area {
		padding: 6% 0;
	}
	.bnr-list {
		padding: 0 20px;
	}
	.bnr-list .slick-prev::before, .bnr-list .slick-next::before {
		font-size: 20px;
	}
}
/* --------------------------------------------------
skyscanner
-------------------------------------------------- */
.skyscanner-widget label span {
	font-size: 1.6rem;
	line-height: 1;
}
.skyscanner-widget label.bpk-radio {
	padding-top: 2px;
}
.skyscanner-widget input {
	font-size: 1.6rem !important;
}
.LocationAutosuggest__suggestionsContainer___3dxhE ul {
	height: 360px;
	overflow-y: scroll !important;
}
.LocationAutosuggest__suggestionsContainer___3dxhE li {
	width: 100% !important;
}
.LocationAutosuggest__suggestionsContainer___3dxhE div {
	font-size: 1.6rem !important;
	width: 100% !important;
}
.skyscanner-widget .bpk-button {
	padding: .5rem 1.5rem;
	font-size: 1.6rem;
	font-weight: normal;
}
.skyscanner-widget .bpk-link {
	font-size: 1.3rem;
	margin-top: 10px;
	text-decoration: underline;
}
@media screen and (max-width: 800px) {
	.skyscanner-widget label span {
		font-size: 1.8rem;
	}
	.skyscanner-widget label.bpk-radio {
		padding-top: 2px;
	}
	.skyscanner-widget .bpk-button {
		font-size: 1.8rem;
	}
	.skyscanner-widget .bpk-link {
		font-size: 1.5rem;
	}
}