/***
 * form
 *  属性ウィンドウ
 *	基本部分はswiperの作成時に設定
 */

.form {
	-webkit-overflow-scrolling: touch;
}

.form_leg {
	width: 20px;
	height: 20px;
	float: left;
	margin: 8px;
}

.form_header {
	background-color: cornflowerblue;
	color: white;
	padding: 7px;
	padding-left: 12px;
	line-height: 36px;
}

/* テーブル化 */

div.form dl {
	clear: left;
	height: auto;
	border-bottom: 1px dashed #eee
}

div.form dl:nth-child(even) {
	background-color: #f0f0f0;
}

div.form dl dt,
div.form dl dd {
	float: left;
	white-space: nowrap;
	padding: 2px;
}

div.form dl dt {
	clear: left;
	width: 80px;
	text-align: right;
	font-weight: bold;
}

div.form dl dd {
	padding-left: 4px;
}

/* 項目名 */

_div.form dl dt {
	font-weight: bold;
	padding: 2px;
	padding-left: 30px;
	background-color: #eee;
}

/* 属性値 */

_div.form dl dd {
	white-space: nowrap;
	padding-left: 36px;
}

/**********
 地点情報
***********/

.gau-areainfo-title {
	margin: 6px;
}

.gau-areainfo-title:before {
	content: "\f041";
	font-family: FontAwesome;
	margin-right: 6px;
}

.gau-areainfo-header {
	padding-left: 12px;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 6px;
	padding-left: 12px;
}

.gau-areainfo-props dl {
	background-color: unset !important;
}

.gau-areainfo-props dl dt {
	font-weight: normal !important;
}

.gau-areainfo-props dl dd {
	font-weight: bold !important;
}

/* 閉じるボタン */

#form_close {
	z-index: 1200;
	cursor: pointer;
	position: absolute;
	right: 4px;
	top: 4px;
	width: 40px;
	height: 40px;
	font-size: x-large;
	text-align: right;
	padding-right: 5px;
	color: white;
	font-size: 30px;
}

/* .swiper-container */

/* 基本設定はhtml最下部（属性として書き込む必要があるため） */

.swiper-container {
	display: none;
	margin: 5px;
	box-sizing: border-box;
	border: 1px solid #eee;
	box-shadow: 1px 1px 3px #ccc;
	background-color: rgba(255,253,255,0.9);
	max-width: 380px;
	position: absolute;
	z-index: 1000;
	left: 0;
	bottom: 0;
	width: calc(100% - 10px);
	height: 80%;
}

/* 下のポチポチ */

.swiper-pagination-bullet-active {
	opacity: 1;
	background: cornflowerblue;
}

/* prev&nextボタン */

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23005e79'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 15px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	-moz-background-size: 15px 44px;
	-webkit-background-size: 15px 44px;
	background-size: 15px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23005e79'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 15px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	-moz-background-size: 15px 44px;
	-webkit-background-size: 15px 44px;
	background-size: 15px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-next,
.swiper-button-prev {
	-webkit-animation: blink 0.5s ease-in-out infinite alternate;
	-moz-animation: blink 0.5s ease-in-out infinite alternate;
	animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.swiper-button-disabled {
	display: none !important;
}