
/* btn */
/* --------------------------------------------------- */

.btn {
	display:inline-block;
	border:none;
	cursor:pointer;
	text-decoration:none;
	text-align:center;
    transition: all  0.3s ease;
	border-style: solid;
	border-width: 1px;
	border-radius: 4px;
	padding:0.75rem 1rem;
}
.btn:focus,
.btn:hover { opacity:0.75; }

/* btn color setting */
.btn_red,
.btn_green,
.btn_darkgray,
.btn_orange,
.btn_pink,
.btn_yellow,
.btn_blue,
.btn_white,
.btn_lightblue {
	box-shadow: 0 4px 0 rgba(0,0,0,0.11);
    font-weight: 700;
}

.btn_red {
	border-color:#f00000;
	background:#f00000;
	color:#fff;
}
.btn_green {
	border-color:#108e4d;
	background:#108e4d;
	color:#fff;
}
.btn_darkgray {
	border-color:#165A72;
	background:#165A72;
	color:#fff;
}
.btn_orange {
	border-color:#ff7800;
	background:#ff7800;
	color:#fff;
}
.btn_pink {
	border-color:#f5596c;
	background:#f5596c;
	color:#fff;
}
.btn_yellow {
	border-color:#fcdf32;
    background: #fcdf32;
    color: #333;
}
.btn_blue {
	border-color:#1D64C3;
	background:#1D64C3;
	color:#fff;
}
.btn_white {
	border-color:#cdcdcd;
	background:#fff;
	color: inherit;
}
.btn_lightblue {
	border-color:#02A8E3;
	background:#02A8E3;
	color:#fff;
}

.btn_search {
	border-color:#ff7800;
	background:#ff7800;
	color:#fff;
	font-weight:bold;
	box-shadow: 0 4px 0 rgba(0,0,0,.11);
	max-width: 408px;
	width: 100%;
}

.btn_reset {
	background: #B8B8B8;
	background-image: -moz-linear-gradient(top, #B8B8B8 0%, #A8A8A8 100%);
	background-image: -webkit-linear-gradient(top, #B8B8B8 0%,#A8A8A8 100%);
	background-image: linear-gradient(to bottom, #B8B8B8 0%,#A8A8A8 100%);
	color:#fff;
	border-radius: 4px;
	font-size:1.125rem;
	font-weight:bold;
	letter-spacing:normal;
	box-shadow: 0 4px 0 rgba(0,0,0,0.11);
	padding:1rem;
}
.btn_submit {
	background: #ff7800;
	color:#fff;
	border-radius: 4px;
	font-size:1.125rem;
	font-weight:bold;
	letter-spacing:normal;
	box-shadow: 0 4px 0 rgba(0,0,0,0.11);
	padding:1rem;
}

.btn_disabled {
	border-color:#9d9d9d;
	background:#e2e2e2;
	color:#9d9d9d;
}
.btn_disabled:hover,
.btn_disabled:focus{
	border-color:#9d9d9d;
	background:#e2e2e2;
	color:#9d9d9d;
	opacity:1;
}

/* btn icon setting */
.btn_arrow {
	padding-right:2em;
	position:relative;
}
.btn_arrow:before {
	position:absolute;
	top:50%;
	right:0.75em;
	transform: translate(0,-50%);
	font-size:10px;
    font-family: 'icomoon' !important;
    content: "\e99f";
	color:inherit;
	line-height: 1;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* btn border */
.btn_blue_brd {
	border:solid 1px #1D64C3;
	color:#1D64C3;
}
.btn_blue_brd:hover,
.btn_blue_brd:focus{opacity: 0.75;}

.btn_orange_brd {
	border:solid 1px #ff7800;
	color:#ff7800;
}
.btn_orange_brd:hover,
.btn_orange_brd:focus{opacity: 0.75;}

.btn_yellow_brd {
	border:solid 1px #fcdf32;
	color: #fcdf32;
}
.btn_yellow_brd:hover,
.btn_yellow_brd:focus{opacity: 0.75;}

.btn_red_brd {
	border:solid 1px #f00000;
	color:#f00000;
}
.btn_red_brd:hover,
.btn_red_brd:focus{
	border:solid 1px #f00000;
	color:#fff;
	background:#f00000;
	opacity:1;
}

/* spview */
@media screen and (max-width:767px) {
	
	.btn {
		width:100%;
		margin:0;
		text-align:center;
		font-size: 14px;
		padding: 14px 0;
	}
	.btn + .btn{margin-top:0.25em;}
	.btn .icon-star {margin-right: 2px;}
}

/* button wrapper */
.box_btn {
	text-align: center;
	padding: 1rem 0;
}


/* btn arrow_left */
.btn.arrow_left {
	display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.btn.arrow_left::before {
	content: "";
    display: inline-block;
	width: 17px;
    height: 17px;
    background: url(../images/arrow_white.png) no-repeat;
    background-size: contain;
    margin-right: 5px;
}

/* btn arrow_left_green */
.btn.arrow_left_green {
	display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.btn.arrow_left_green::before {
	content: "";
    display: inline-block;
	width: 17px;
    height: 17px;
    background: url(../images/arrow-green.png) no-repeat;
    background-size: contain;
    margin-right: 5px;
}
.btn.arrow_left_green:hover::before {
    background: url(../images/arrow_white.png) no-repeat;
    background-size: contain;
}


