/**
* ボタン
* 
* 注意
* flex-basisはie11でバグがあるため不使用推奨
**/
.btn {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 3.75rem;
	border: 1px solid;
	border-radius: 3em;
	background: #ccc;
	color: #000;
	font-weight: bold;
	cursor: pointer;
}

/* icon on off */
.btn .icon_off {}
.btn .icon_on {
	display: none;
}
.btn.active {}
.btn.active .icon_off {
	display: none;
}
.btn.active .icon_on {
	display: inline;
}

.btn_default {
	background: #006900;
	color: #fff;
	border: 2px solid #006900;
	border-radius: 4px;
	padding: 0 1.125rem;
}
/*
.btn_default::after {
	content: "\f125";
	display: block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 1.125rem;
	top: 50%;
	transform: translate(0,-50%);
}
*/

.box_more {}
.box_more .btn {}
@media (max-width: 767px){
	.box_more .btn {height: 3.125rem;}
}

.btn_blue {
	border: solid 1px #0084cd;
	background-color: #0084cd;
	color: #fff;
	box-shadow: none;
}
.btn_white {
	border: solid 1px #fff;
	background-color: #fff;
	color: #666;
	box-shadow: none;
}
.btn_green {
	background-color: #139b4c;
	border-color: #139b4c;
	color: #fff;
	box-shadow: none;
}
.btn_orange {
	background-color: #ff7d04;
	border-color: #ff7d04;
	color: #fff;
	box-shadow: none;
}
.btn_green.btn_border {
	background-color: #fff;
	color: #139b4c;
}
.btn_gray {
	border: solid 1px #B3B3B3;
	background-color: #B3B3B3;
	color: #fff;
	box-shadow: none;
}
.btn_warning {
	border: solid 1px #f73b1e;
	background-color: #f5dcdc;
	color: #f73b1e;
	box-shadow: none;
}
.btn_disabled {
	border: solid 1px #B3B3B3;
	background-color: #eee;
	color: #B3B3B3;
	box-shadow: none;
}
.btn_disabled:focus,
.btn_disabled:hover {opacity: 1;}

.btn_action {
	width: 100%;
	height: 4.25rem;
	margin: 0 auto;
	font-size: 1.25rem;
	color: #fff;
	letter-spacing: 2px;
	background: #006900;
	border: 2px solid #006900;
	box-shadow: 0 2px 0.25rem rgba(0,0,0,0.08);
	border-radius: 5px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
@media screen and (max-width: 767px){
	.btn_action {
		width: 100%;
		line-height: 3.625rem;
		height: 3.75rem;
	}
}
@media screen and (max-width: 575px){
	.btn_action {
		line-height: 3.3125rem;
		height: 3.4375rem;
	}
}
.box_more {}
@media screen and (max-width: 767px){
	.box_more {}
}

.btn_link {
	position: static;
	display: inline;
	width: auto;
	height: auto;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #208ad4;/*#6fc3fe*/
	font-weight: inherit;
	text-decoration: underline;
	cursor: pointer;
}

.btn_edit {
	border-radius: 5px;
	border: solid 1px #B3B3B3;
	box-shadow: none;
	background-color: #fff;
	color: #444;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	padding: 0.25em 0.5em;
	vertical-align: middle;
	height: auto;
}

.btn_add {
	border-radius: 5px;
	box-shadow: none;
	border: solid 1px #0084cd;
	background-color: #fff;
	color: #0084cd;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	padding: 0.25em 1em;
	vertical-align: middle;
}
.btn_add i {
	font-size: 175%;
	margin: 0 0.25em 0 0;
	vertical-align: middle;
}
.btn_remove {
	border-radius: 5px;
	box-shadow: none;
	border: solid 1px #B3B3B3;
	background-color: #fff;
	color: #B3B3B3;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	padding: 0.25em 1em;
	vertical-align: middle;
}
.btn_remove i {
	font-size: 175%;
	margin: 0 0.25em 0 0;
	vertical-align: middle;
}
.btn.no_shadow {
	box-shadow: none;
}
.btn_wide {
	padding: 0.5em 4em;
	font-size: 114%;
}
.btn_wide_fix {
	padding: 0.5em 0;
	width: 100%;
	max-width: 20em;
}
.btn_full {}
.btn_block {
	display: block;
}
@media screen and (max-width: 767px){
	.btn_wide, .btn_wide_fix, .btn_full {
		margin-bottom: 1em;
	}
	.btn_wide:last-child, .btn_wide_fix:last-child, .btn_full:last-child {
		margin-bottom: 0;
	}
	.btn_wide_fix {
		display: block;
		width: 100%;
		max-width: none;
	}
	.btn_full {
		display: block;
		width: 100%;
	}
}
.label {
	display: inline-block;
	font-size: 0.875rem;
}
.label_default {
	padding: 0.5rem 1rem;
	border-radius: 5px;
	color: #fff;
	background: #6ec3ff;
}
.label_default:hover {
	color: #fff;
}
.label_default input {
	margin-right: 0.25rem;
}
.label_must {
	display: inline-block;
	background: #FF1464;
	color: #fff;
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px){}


/**
* 特別な構造のボタン（基本スタイル）
**/
.btn_net a,
.btn_kuchikomi a,
.btn_like a,
.btn_tel a {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 6px;
	background: linear-gradient(45deg,#a5d82a 0%,#40ab2a 100%);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	padding: 1px 1rem 1px 1.25rem;
	height: 3rem;
	position: relative;
	cursor: pointer;
}
.btn_tel a {
	padding-top: 0;
	padding-bottom: 0;
	border: solid 1px #006900;
	background: #fff;
	color: #006900;
}

.btn_net a::before,
.btn_kuchikomi a::before,
.btn_like a::before,
.btn_tel a::before {
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0,0) scale(1.75,1.75);
	transform-origin: right center;
	margin: 0 0.5rem 0 0;
}
.btn_net a::before {content: '\f380';}
.btn_kuchikomi a::before {content: '\f11d';}
.btn_like a::before {content: '\f141';}
.btn_tel a::before {
	content: '\f4b9';
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: "Ionicons";
	font-size: 1.25em;
	border-radius: 50%;
	background: #006900;
	color: #fff;
	width: 2rem;
	height: 2rem;
	transform: translate(0,0) scale(1.125,1.125);
	transform-origin: right center;
}

.btn_net a > span,
.btn_kuchikomi a > span,
.btn_like a > span,
.btn_tel a > span {display: block;}

.btn_tel.btn_tel_in > span {
	display: block;
	font-size: 0.625rem;
	font-weight: 400;
	font-feature-settings: 'palt';
	text-align: center;
	padding: 0.25rem 0;
	opacity: 0.5;
}

@media only screen and (max-width: 767px){
	
	.btn_net,
	.btn_kuchikomi,
	.btn_like,
	.btn_tel {
		padding: 0;
		position: relative;
		border: none;
	}
	
	.btn_net a,
	.btn_kuchikomi a,
	.btn_like a,
	.btn_tel a {font-size: 0.75rem;}
}


/**
* 特別な構造のボタン（.box_btn内）
**/
.box_btn .btn_kuchikomi {order: 0;}
.box_btn .btn_like {order: 1;}
.box_btn .btn_net {order: 3;}
.box_btn .btn_tel {order: 2;}


/**
* 検索ボタン
**/
.btn_search {
	width: 100%;
	height: 3rem;
	margin: 0 auto;
	background: #006900;
	color: #fff;
	border: 2px solid #006900;
	border-radius: 3em;
	box-shadow: 0 2px 0.25rem rgba(0,0,0,0.08);
}
.btn_search::before {
	content: "\f21f";
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	top: 0;
	left: -0.375rem;
	transform: scale(1.25,1.25) translate(0,6%);
}
.btn_search span {
	display: inline-block;
}
@media (max-width: 767px){
	.btn_search {height: 3.125rem;}
}


/**
* 検索ボタン（エリア）
**/
.btn_area_serach {
	width: 100%;
	height: 3rem;
	margin: 0 auto;
	background: #006900;
	color: #fff;
	border: 2px solid #006900;
	border-radius: 3em;
	box-shadow: 0 2px 0.25rem rgba(0,0,0,0.08);
}
.btn_area_serach::before {
	content: '';
	display: inline-block;
	position: relative;
	left: -0.375em;
	transform: scale(1.25,1.25) translate(0,6%);
	width: 1em;
	height: 1em;
	background-image: url("../images/icon_search_man_w.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
}
.btn_area_serach::after {display: none;}
.btn_area_serach span {
	display: inline-block;
}
@media (max-width: 767px){
	.btn_area_serach {height: 3.125rem;}
}


/**
* ボタン親要素
**/
.box_btn {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 575px;
	margin: 0 auto;
	padding: 0.25rem 0.25rem 0 0.25rem;
}

@media (max-width: 959px){
	.box_btn {margin: 0 auto 0.5rem;}
}
@media (max-width: 767px){
	.box_btn {margin: 0 auto 0.5rem;}
}
@media (max-width: 575px){
	.box_btn {
		flex-wrap: wrap;
	}
}