@charset "UTF-8";
/*
	サイト共通ボタン用css
*/
/*====================================
ボタン
=====================================*/
/*ボタン:style1 角丸 白抜き*/
.btn_style1 {
	display: block;
	text-decoration: none;
	width: 100%;
	border-radius: 50px;
	margin: 0 auto;
	padding: 0.75rem 1rem;
	text-align: center;
	font-weight: bold;
	font-size: 1.125rem;
	/* font-family: fot-tsukuardgothic-std, sans-serif; */
	font-family: 'Kiwi Maru', serif;
    font-weight: 500;
}
.btn_style1::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: 900;
	padding-left: 1rem;
}
.btn_style1:hover {
	transform: translate(1px,1px);
	text-decoration: underline;
}

.mail::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 900;
    padding-left: 1rem;
}

.foot_btn_style{border-radius:0px;}
.footer_btn_list .btn_style1{
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.btn_style1 {
		font-size: 1rem;
	}
}

