@charset "utf-8";
/* CSS Document */
.inquiryBtnWrap {
	text-align: right;
}
.inquiryBtn {
	padding: .3em 10px .3em 32px;
	display: inline-block;
	text-decoration: none !important;
	background: #eb6100 url(../images/icn_mail03.png);
	background-size: auto auto;
	background-repeat: no-repeat;
	background-position: left 10px center;
	border-radius: 100px;
	color: #fff !important;
	position: relative;
}

.inquiryBtn:hover {
  background: #ff7718 url(../images/icn_mail03.png);
  	background-size: auto auto;
	background-repeat: no-repeat;
	background-position: left 10px center;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 5.9px;
  height: 10.9px;
  margin-left: .5em;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}
