/* CSS Document */

#itineraries{
	padding-top: 0;
	}

#concierge{}
	#concierge p{
		position: relative;
		padding: 0.6em 1em;
		background: #f2f2f2;
		}
		#concierge p:before{
			content: "";
			position: absolute;
			left: calc(50% - 1em);
			bottom: -2em;
			border: 1em solid transparent;
			border-top-color: #f2f2f2;
			font-size: 0.5em;
			}
	#concierge .wrap{
		display: flex;
		flex-direction: column;
		align-items: center;
		}
	#concierge .buttonSet{
		margin-top: 1em;
		}

#searchMenu{
	margin-top: 0;
	}


/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767以下px*/
#concierge{
	padding: 2em 0;
	}
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下 縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下 横向き*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
#concierge{
	padding: 3em 0;
	}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#concierge{
	padding: 4em 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* Edge */
@supports (-ms-ime-align:auto) {
}


/* ie */
@media all and (-ms-high-contrast: none) {
}


