@charset "UTF-8";

/* ==================================================
BACK NUMBER AREA
================================================== */
#backnumberArea {
}

.areaTitle {
}

.areaTitle span {
}

.borderBox {
  padding-top: 40px;
  padding-bottom: 50px;
}

.formTitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.saturday .formTitle {
  color: #6aaab2;
}

.sunday .formTitle {
  color: #f09cc6;
}

@media screen and (max-width: 900px) {
	.borderBox {
		padding-top: 30px;
		padding-bottom: 40px;
	}
}


/* .btnBlock */
.btnBlock {
}

.btnBlock ul {
}

.btnBlock ul li {
}


/* .btnStyle */
.btnStyle {
}

.btnStyle .txt {
}

.btnStyle .caption {
}


/* ==================================================
FORM SETTING
================================================== */
#formWrap {
	width: 100%;
	margin: 0 auto;
}

#formWrap form {
}

#selectBox {
	width: 100%;
  max-width: 800px;
	margin: 0 auto;
	position: relative;
	height: 50px;
	text-align: center;
  border: 2px solid #536e7e;
  border-radius: 12px;
	background: #fff;
  overflow: hidden;
}

#selectBox::before {
	position: absolute;
	top: calc(50% - 12px);
	right: 16px;
	width: 16px;
	height: 16px;
	content: "";
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	pointer-events: none;
	transform: rotate(45deg);
	z-index: 2;
}

#selectBox::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	background-color: #536e7e;
	z-index: 1;
}

#selectBox select {
	width: 100%;
	cursor: pointer;
	text-overflow: ellipsis;
	/*white-space: nowrap;*/
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	
	padding: 8px 55px 8px 8px;
	color: #000;
	height: 100%;
	font-size: 16px;
	z-index: 3;
	position: relative;
	overflow: hidden;
}

#selectBox select::-ms-expand {
	display: none;
}

#selectBox select option {
	width: 100%;
	background-color: #fff;
  color: #000;
}