﻿@charset "utf-8";
/* CSS Document */

/***** ボタンの基本 *****/

#btnBasic {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: -40px;
}
#btnBasic ul {
	float: left;
	left: 50%;
	position: relative;
}

#btnBasic ul li {
	float: left;
	left: -50%;
	position: relative;
	display: inline-block;
	width: 60%;
	height: auto;
	padding: 6px;
	font-size: 1rem;
	margin: 0 25px;
}
.btnYel {
	display: block;
	text-align: center;
	-ms-border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	-ms-transition: background-color .5s ease 0;
	-moz-transition: background-color .5s ease 0;
	-webkit-transition: background-color .5s ease 0;
	transition: background-color .5s ease 0;
	background: #feae31;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #feae31), color-stop(0.00, #efe457));
	background: -webkit-linear-gradient(top, #efe457 0%, #feae31 100%);
	background: -moz-linear-gradient(top, #efe457 0%, #feae31 100%);
	background: -o-linear-gradient(top, #efe457 0%, #feae31 100%);
	background: -ms-linear-gradient(top, #efe457 0%, #feae31 100%);
	background: linear-gradient(top, #efe457 0%, #feae31 100%);
}
.btnYel a {
	color: #3d3333;
	text-decoration: none;
}
.btnYel:hover,
.btnYel:focus,
.btnYel:active {
	background: #efe457;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #efe457), color-stop(0.00, #feae31));
	background: -webkit-linear-gradient(top, #feae31 0%, #efe457 100%);
	background: -moz-linear-gradient(top, #feae31 0%, #efe457 100%);
	background: -o-linear-gradient(top, #feae31 0%, #efe457 100%);
	background: -ms-linear-gradient(top, #feae31 0%, #efe457 100%);
	background: linear-gradient(top, #feae31 0%, #efe457 100%);
}

@media screen and (max-width:767px) {/*スマホ*/
#btnBasic {
	position: relative;
	text-align: center;
}

#btnBasic ul li {
	margin: 20px 30px;
}
}
