﻿@CHARSET "UTF-8";

/**
*垂直方向画面
*/

.body{
	margin: 0;
}

.wrapper-vertical {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin: 0;
	height: 99vh;
	-webkit-flex-flow: column nowrap;
	flex-flow: column nowrap;
	align-items: stretch;

}

.wrapper-vertical > *{
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox */
	-webkit-box-sizing: border-box; /* Safari */
}

.wrapper-vertical .header {
	order: 1;
	min-height: 5em; /* IE11 */
	min-height: min-content;
	min-height: -moz-min-content;
	min-height: -webkit-min-content;
	max-height: 5em; /* IE11 */
	max-height: min-content;
	max-height: -moz-min-content;
	max-height: -webkit-min-content;
	flex-basis: 10%;
	border-bottom: solid 1px;
	white-space: nowrap;
	overflow: hidden;
}

.wrapper-vertical .header .topFrame {
	display: none;
}


.wrapper-vertical .header .menuBtn {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content:space-between;
	align-items:center;
}


.wrapper-vertical .main {
	order: 2;
	flex-basis: 100%;
	width: 100%;
}

@media ( min-width : 768px) {
	
	.wrapper-vertical .header {
		order: 1;
		flex-wrap: nowrap;
	}

	.wrapper-vertical .main {
		height: auto;
	}
	
	.wrapper-vertical .header .menuBtn {
		display: none;
	}
	.wrapper-vertical .header .topFrame {
		display: block;
		position: relative;
		height: 100%;
		max-height: inherit;
	}
	
	.searchTitle{
		font-size:1.1rem;
		font-weight: bold;
		padding-bottom: 0.2rem;
	}
	
	.searchTitle2{
	
	}
	.conditionlbl1{
		order: 2;
		font-size:1.1rem;
		font-weight: bold;
	}
	.condition1{
		order: 3;
		padding-top: 0.2rem;
		padding-bottom: 1rem;
	}
	.btnDiv{
		order: 4;
		padding-bottom: 1rem;
	}
}