@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');

/* CSS Document */
html, body {
	height: 100%;
}
h1, h2, h3, h4, p, a {
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #000;
	font-weight: normal;
}
img {
	vertical-align: middle;
}
body {
	font-family: "M PLUS 1p", Century Gothic, "メイリオ", sans-serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	line-height: 1.6;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	font-size: 0;
}
p a {
	border-bottom: 1px #000 dotted;
}
p a:hover {
	color: #ffd202;
	border-bottom: 1px #ffd202 dotted;
}
#wrapper {
	width: 100%;
	overflow: hidden;
}
#hdbar {
	/* 上端に固定 */
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 1;
	/* バーの装飾 */
	background-color: rgba(255, 210, 2, 0.95);
	color: #000;
	display: block;
	/*height: 80px;*/
}
.inner_low {
	width: 96%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 13px 0;
    display: flex;
    gap: 2em;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 979px) {
	.inner_low {
		width: 95%;
	}
}
@media only screen and (max-width: 568px) {
	.inner_low {
		margin-top: 0;
		flex-direction: column;
		gap: 0;
	}
}
#menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2em;
}
#menu li {
	text-align: center;
}
#menu li a {
	font-size: 75%;
	display: block;
}
#menu li a:hover {
	color: #fff;
}
#hd_logo {
}
@media only screen and (max-width: 568px) {
	#hd_logo {
		text-align: center;
        position: relative;
        width: 100%;
	}
	#menu {
		flex-direction: column;
		margin-top: 1em;
	}
	#menu li {
		display: block;
		width: 100%;
		margin: 0;
		padding: 2% 0;
		/*border-bottom: 1px solid #fff; */
        /* background: rgba(255, 210, 2, 0.8);*/
	}
	#hdbar {
		height: auto;
	}
	#hd_logo {
		display: block;
        text-align: center;
        text-align: -webkit-center;
        /* float: none; */
        position: relative;
        width: 100%;
        margin: 0;
        /* background: rgba(255, 210, 2, 0.95); */
        /* border-bottom: 1px solid #fff; */
	}
	#hd_logo img {
		/*display: block; */
        /* position: relative; */
        /*padding: 12px 0 10px; */
        /* color: #000; */
        /* text-align: center; */
        /* text-decoration: none; */
        /* background: #ffd202;*/
	}
	#hd_logo:before {
		line-height: 1;
		position: absolute;
        top: 15px;
        left: 20px;
        width: 20px;
        height: 20px;
        /* margin-top: -10px; */
        font-family: "Font Awesome 5 Free";
        content: '\f0c9';
        font-weight: bold;
        font-size: 1.5rem;
        color: #fff;
        z-index: 1;
	}
}
#hd_contact {
	text-align: center;
	margin-left: auto;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#hd_contact {
		margin-right: 10px;
	}
}
@media only screen and (max-width: 700px) {
	#hd_contact {
		display: none;
	}
}
#hd_contact p {
	font-size: 75%;
}
#btn_contact {
	width: 100%;
	margin: 5px 0 0 0;
}
#btn_contact a {
	padding: 5px 0;
	background: #000;
	color: #fff;
	font-size: 80%;
	display: block;
	height: 100%;
}
#btn_contact a:hover {
	background-image: url(../img/btn_bg.gif);
	background-repeat: repeat;
	background-size: 6px 6px;
	color: #ffd202;
}
.content {
	width: 100%;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.inner_content {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 0;
}
@media screen and (max-width: 979px) {
	.inner_content {
	}
}
@media screen and (max-width: 568px) {
	.inner_content {
		padding-top: 10%;
	}
	#about .inner_content {
		padding-top: 30%;
	}
}
.content h2 {
	margin: 0 0 50px 0;
	font-size: 250%;
	text-align: center;
}
@media screen and (max-width: 568px) {
	.content h2 {
		/* width: 90%; */
        /* padding: 2%; */
        font-size: 140%;
		text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
	}
	#about h2 {
		text-shadow: none;
	}
	#browser {
		position: relative;
	}
	#browser h2 {
		/*position: absolute;*/
		/*top: 0;*/
	}
}
@media screen and (max-width: 979px) {
	#browser {
		position: relative;
	}
	#browser h2 {
		/*position: absolute;*/
		/*top: 80px;*/
	}
}
.info h2 {
	text-align: center;
}
/*左右ボックス*/
.content_left {
	float: left;
	max-width: 450px;
}
@media screen and (max-width: 568px) {
	.content_left {
		float: none;
		margin: 0 auto;
	}
}
.content_right, .contact_right {
	float: right;
	max-width: 450px;
}
@media screen and (max-width: 979px) {
	.contact_right {
		float: none;
		margin: 30px auto 0;
	}
}
.contact_left {
	float: left;
	max-width: 500px;
}
@media screen and (max-width: 979px) {
	.contact_left {
		float: none;
	}
}
@media screen and (max-width: 568px) {
	.contact_left {
		margin: 0 auto;
	}
}
.case_left {
	float: left;
	max-width: 400px;
	margin: 0 0 0 100px;
}
@media screen and (max-width: 979px) {
	.case_left {
		float: none;
		margin: 0 auto 10%;
	}
}
.case_right {
	float: left;
	max-width: 375px;
	margin: 0;
	padding: 0 0 0 100px;
}
@media screen and (max-width: 979px) {
	.case_right {
		float: none;
		padding-left: 0;
		margin: 0 auto;
	}
}
.about_left {
	float: left;
	max-width: 480px;
	margin: 0 69px 0 0;
	padding: 0 70px 0 0;
	border-right: #000 solid 1px;
}
@media screen and (max-width: 979px) {
	.about_left {
		float: none;
		margin: 0 auto;
		padding: 0;
		border: none;
	}
}
.about_right {
	float: left;
	max-width: 380px;
}
@media screen and (max-width: 979px) {
	.about_right {
		float: none;
		margin: 40px auto 0;
	}
}
.about_right dl {
	font-size: 87%;
	margin: 20px 0 0 0;
}
.about_right dl dt {
	width: 120px;
	font-weight: bold;
	float: left; /* 左に寄せる */
	clear: both; /* フロートの解除 */
	margin: 0 0 10px 0;
}
@media screen and (max-width: 568px) {
	.about_right dl dt {
		float: none;
		margin: 0 0 5px 0;
	}
}
.about_right dl dd {
	width: 260px;
	margin: 0 0 10px 120px;
}
@media screen and (max-width: 568px) {
	.about_right dl dd {
		margin: 0 0 20px 0;
	}
}
.btn_detail {
	text-align: center;
	margin: 30px 0 0 0;
}
@media screen and (max-width: 568px) {
	.btn_detail {
		width: 95%;
		margin: 7% auto;
	}
}
.btn_detail a {
	background-color: #ffd202;
	display: block;
	padding: 6px 0;
}
.btn_detail a:hover {
	color: #fff;
}
.cont_contact {
	display: block;
	border: 2px solid #000;
	margin: 20px 0 0 0;
	font-weight: bold;
	padding: 0 0 5px 0;
}
@media screen and (max-width: 568px) {
	.cont_contact {
		width: 95%;
		margin: 0 auto;
	}
}
.cont_contact h4 {
	text-align: center;
	color: #fff;
	background-color: #000;
	padding: 5px 0;
	margin: 0 0 10px 0;
}
.cont_contact_tel, .cont_contact_mail {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px 20px;
	vertical-align: middle;
	margin: 0 0 5px 100px;
	padding: 0 0 0 30px;
	font-size: 110%;
}
@media screen and (max-width: 568px) {
	.cont_contact_tel, .cont_contact_mail {
		margin-left: 10px;
	}
}
.cont_contact_tel {
	background-image: url(../img/icon_tel.png);
}
.cont_contact_mail {
	background-image: url(../img/icon_mail.png);
}
#top {
	width: 100%;
	height: 100%;
	max-height: 1100px;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-image: url(../img/bg_top_03.jpg); /* IE8以前用 */
	overflow: hidden;
	position: relative;
	display: table;
	border-collapse: separate; /* セルの間隔を空ける */
	border-spacing: 30px 30px; /* 左右 上下で記述 */
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#top {
		border-spacing: 20px 20px;
		background: url(../img/bg_top_02.jpg) no-repeat left top;
		background-size: 340% auto;
	}
}
@media screen and (max-width: 568px) {
	#top {
		background: url(../img/bg_top_02.jpg) no-repeat left top;
	}
}
#top_logo {
	display: table-cell;
	width: 140px;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#top_logo {
		display: table-row-group;
		width: 100%;
		padding: 4%;
		padding-bottom: 320px;
	}
	#top_logo h1 {
		padding-bottom: 200px;
		background: url(../img/bg_sp.png) left bottom no-repeat;
		background-size: 300px auto;
	}
}
@media screen and (max-width: 568px) {
	#top_logo {
		display: table-row;
	}
}
#top_logo h1 {
	/*display:inline;*/
}
@media screen and (max-width: 568px) {
	#top_logo h1 img {
		width: 90px;
		height: auto;
	}
}
#top_img {
	display: inline;
	position: absolute;
	top: 300px;
	left: 250px;
}
#top_about {
	width: 370px;
	padding: 40px;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99ffffff, endColorstr=#99ffffff);
	background-color: rgba(255, 255, 255, 0.9);
	display: table-cell;
	vertical-align: middle;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#top_about {
		width: auto;
	}
}
@media screen and (max-width: 568px) {
	#top_about {
		display: none;
	}
}
#top_about:not(:target) {
	filter: none;
}
#top_about ul {
	padding: 0 0 0 20px;
	display: inline-block;
	/* width: 250px; */
	margin: 0;
}
.btn_more {
	/* display: inline-block; */
	text-align: center;
	width: 100px;
	margin-top: 10px;
}
.uppercase{
	text-transform: uppercase;
}
.btn_more a {
	display: block;
	padding: 4px;
	height: 100%;
	font-size: 70%;
	font-weight: bold;
	background-color: #ffd202;
	letter-spacing: .05em;
}

.btn_more a:hover {
	color: #fff;
	background-image: url(../img/btn_bg.gif);
	background-repeat: repeat;
	background-size: 6px 6px;
}
h3 {
	font-size: 200%;
	margin: 0 0 10px 0;
	line-height: 1em;
}
.en {
	font-size: 70%;
	font-weight: bold;
	color: #ffd202;
	letter-spacing: .05em;
}
.bold {
	font-weight: bold;
}
.top_btn {
	display: inline-block;
	margin: 20px 0 60px 0;
	width: 180px;
	text-align: center;
}
.top_btn a {
	display: block;
	height: 100%;
	padding: 10px 0 8px 0;
	background-color: #ffd202;
	font-weight: bold;
	position: relative;
}
.top_btn a:hover {
	color: #fff;
	background-image: url(../img/btn_bg.gif);
	background-repeat: repeat;
	background-size: 6px 6px;
}
.top_btn a:before {
	border-right: 2px solid #000;
	border-top: 2px solid #000;
	border-radius: 1px;
	content: "";
	margin: 0 0 0 10px;
	height: 8px;
	right: 140px;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 15px;
	width: 8px;
}
.top_btn a:hover:before {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	border-radius: 1px;
	content: "";
	margin: 0 0 0 10px;
	height: 8px;
	right: 140px;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 15px;
	width: 8px;
}
#auto_table {
	visibility: hidden;
	display: table-cell;
	text-align: center;
	width: auto;
}
@media screen and (max-width: 979px) {
	#auto_table {
		display: none;
	}
}
#top_nav {
	width: 350px;
	display: table-cell;
	vertical-align: middle;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#top_nav {
		width: auto;
		vertical-align: top;
	}
}
@media screen and (max-width: 568px) {
	#top_nav {
		display: block;
		width: 100%;
		background: url(../img/bg_sp.png) top left no-repeat;
		background-size: 250px auto;
		padding-top: 170px;
	}
}
#top_nav_list {
	width: 350px;
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
}
@media screen and (max-width: 568px) {
	#top_nav_list {
		width: 100%;
	}
}
.top_nav_btn {
	position: relative;
	display: block;
	margin: 0 0 5px 0;
}
.top_nav_btn:last-child {
	margin: 0;
}
.top_nav_btn a {
	background-color: #ffd202;
	padding-right: 0;
	padding-left: 65px;
	padding-top: 40px; /*IE8以前用*/
	padding-bottom: 40px; /*IE8以前用*/
	position: relative;
	display: block;
	font-size: 133%;
	white-space: nowrap;
}
@media screen and (max-width: 568px) {
	.top_nav_btn a {
		font-size: 100%;
		padding: 20px 0 20px 65px !important;
	}
}
.top_nav_btn a:hover {
	color: #fff;
	background-image: url(../img/btn_bg.gif);
	background-repeat: repeat;
	background-size: 6px 6px;
}
/*円*/
.top_nav_btn a:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 24px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;
	border: 2px solid #000;
}
.top_nav_btn a:hover:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 24px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;
	border: 2px solid #fff;
}
/*矢印*/
.top_nav_btn a:after {
	display: block;
	content: "";
	position: absolute;
	top: 52%;
	left: 32px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 4px solid transparent;
	border-left: 5px solid #000;
}
@media screen and (max-width: 568px) {
	.top_nav_btn a:after {
		margin-top: -3px;
	}
}
.top_nav_btn a:hover:after {
	display: block;
	content: "";
	position: absolute;
	top: 52%;
	left: 32px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 4px solid transparent;
	border-left: 5px solid #fff;
}
#msg {
	background-color: #ffd202;
	text-align: center;
}
@media screen and (max-width: 568px) {
	#msg {
		height: auto;
	}
}
#msg p {
	font-size: 267%;
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#msg p {
		font-size: 250%;
	}
}
@media screen and (max-width: 568px) {
	#msg p {
		font-size: 95%;
	}
}
#planning {
	background-image: url(../img/bg_00.jpg);
}
#gui {
	background-image: url(../img/bg_01.jpg);
}
#design {
	background-image: url(../img/bg_02.jpg);
}
#browser {
	background-image: url(../img/bg_03.jpg);
}
#soft {
	background-image: url(../img/bg_04.jpg);
}
#kit {
	background-image: url(../img/bg_05.jpg);
}
#set {
	background-color: #eee;
	background-image: url(../img/bg_06.jpg);
}
@media screen and (max-width: 568px) {
	#planning {
		background-size: 140% auto;
		background-position: left top;
	}
	#gui {
		background-size: 130% auto;
		background-position: center top;
	}
	#design {
		background-size: 130% auto;
		background-position: center top;
	}
	#browser {
		background-size: 130% auto;
		background-position: center top;
	}
	#soft {
		background-size: 140% auto;
		background-position: left top;
	}
	#kit {
		background-size: 140% auto;
		background-position: center top;
	}
	#set {
		background-size: 140% auto;
		background-position: center top;
	}
}
#about {
	background-color: #fff8d9;
	margin: 50px 0 0 0;
}
#case {
	background-color: #fff;
}
#service {
	background-color: #fff;
}
#contact {
	background-color: #f2f2f2;
}
.contact_hdr {
	display: block;
	border: 2px solid #ffd202;
	margin: 0 0 30px 0;
	font-weight: bold;
}
.contact_hdr h4 {
	text-align: center;
	color: #000;
	background-color: #ffd202;
	padding: 10px 0;
	font-weight: bold;
}
.contact_tel, .contact_mail {
	margin: 0 30px;
	background-repeat: no-repeat;
	background-position: left center;
	vertical-align: middle;
}
.contact_tel a, .contact_mail a {
	font-weight: bold;
}
.contact_tel {
	margin: 0 0 0 50px;
	padding: 15px 10px 13px 50px;
	background-image: url(../img/icon_tel.png);
	font-size: 200%;
}
@media screen and (max-width: 568px) {
	.contact_tel {
		margin-left: 5%;
	}
}
.contact_mail {
	padding: 15px 10px 18px 60px;
	background-image: url(../img/icon_mail.png);
	font-size: 160%;
}
@media screen and (max-width: 568px) {
	.contact_mail {
		margin-left: 5%;
		font-size: 120%;
	}
}
#sitemap {
	background-color: #ffd202;
}
#sitemap ul {
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#sitemap ul {
		margin: 0;
        padding: 0;
	}
}
@media screen and (max-width: 568px) {
	#sitemap ul {
		margin: 0 auto;
        width: 11em;
        padding: 0;
        display: inline-block;
	}
}
#sitemap ul li {
	margin: 0 0 5px 0;
}
#sitemap ul li a:hover {
	border-bottom: 1px #000 dotted;
}
.sitemap_logo {
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	.sitemap_logo {
	}
}
@media screen and (max-width: 568px) {
	.sitemap_logo {
		float: none;
        display: block;
        width: 140px;
        margin: 2em auto;
	}
}
#footer {
	height: 50px;
	text-align: center;
	padding: 30px 0;
}
#footer p {
	font-size: 60%;
	margin-top: 5px;
}
/*第2階層のスタイル*/
#content_detail {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
@media screen and (max-width: 979px) {
	#content_detail {
	}
	#content_detail img {
		width: 100%;
		height: auto;
	}
}
@media screen and (max-width: 568px) {
	#content_detail img {
		width: 95%;
		height: auto;
	}
}
#content_detail p {
	margin: 0 0 30px 0;
	line-height: 2;
}
#content_detail h2 {
	font-size: 150%;
	margin: 0 0 20px 0;
	line-height: 1em;
	text-align: left;
}
.h1_bg {
	width: 100%;
	padding: 50px 0 80px 0;
	margin: 80px 0 0 0;
	font-size: 250%;
	text-align: center;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #eee;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	.h1_bg {
		margin-top: 59px;
	}
}
@media screen and (max-width: 568px) {
	.h1_bg {
		margin-top: 53px;
		font-size: 120%;
	}
}
#h1_planning {
	background-image: url(../img/h1_bg_planning.jpg);
}
#h1_gui {
	background-image: url(../img/h1_bg_gui.jpg);
}
#h1_design {
	background-image: url(../img/h1_bg_design.jpg);
}
#h1_soft {
	background-image: url(../img/h1_bg_soft.jpg);
}
#h1_kitting {
	background-image: url(../img/h1_bg_kit.jpg);
}
#h1_setting {
	background-image: url(../img/h1_bg_set.jpg);
}
@media screen and (max-width: 568px) {
	#h1_planning {
		background-size: 290% auto;
		background-position: left top;
	}
	#h1_gui {
		background-size: 290% auto;
		background-position: left top;
	}
	#h1_design {
		background-size: 290% auto;
		background-position: left top;
	}
	#h1_browser {
		background-size: 290% auto;
		background-position: left top;
	}
	#h1_soft {
		background-size: 290% auto;
		background-position: left top;
	}
	#h1_kitting {
		background-size: 290% auto;
		background-position: left top;
	}
	#h1_setting {
		background-size: 290% auto;
		background-position: left top;
	}
}
.btn_wf_more {
	display: block;
	text-align: center;
	margin: 20px 0 50px 0;
}
.btn_wf_more a {
	display: block;
	padding: 10px 0;
	height: 100%;
	font-size: 100%;
	font-weight: bold;
	background-color: #ffd202;
}
.btn_wf_more a:hover {
	color: #fff;
	background-image: url(../img/btn_bg.gif);
	background-repeat: repeat;
	background-size: 6px 6px;
}
/*ページング*/
#paging {
	margin: 70px 0 0 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	border-collapse: separate; /* セルの間隔を空ける */
	border-spacing: 50px 0; /* 左右 上下で記述 */
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	#paging {
		border-spacing: 10px 0;
	}
}
#previous, #back, #next {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	position: relative;
}
@media screen and (max-width: 568px) {
	#previous, #back {
		display: none;
	}
}
#previous:before {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	position: absolute;
	border-style: solid;
	border-width: 20px 15px 20px 0;
	border-color: transparent #ffd102 transparent transparent;
	left: -15px;
	top: 50%;
	margin-top: -20px;
}
#next:after {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	position: absolute;
	border-style: solid;
	border-width: 20px 0 20px 15px;
	border-color: transparent transparent transparent #ffd102;
	right: -15px;
	top: 50%;
	margin-top: -20px;
}
#previous a, #back a, #next a {
	padding: 10px;
	display: block;
	height: 20px;
}
#previous a, #next a {
	background-color: #ffd202;
}
#back a {
	color: #fff;
	background-color: #000;
}
#previous a:hover, #next a:hover {
	color: #fff;
}
#back a:hover {
	color: #ffd202;
	background-image: url(../img/btn_bg.gif);
	background-repeat: repeat;
	background-size: 6px 6px;
}
.content_right p, .content_left p {
	padding: 2%;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	.content_right p, .content_left p {
		background-color: rgba(255, 255, 255, 0.6);
	}
}
.bottom_box {
	margin: 380px 0 0 100px;
	position: relative;
}
@media screen and (min-width: 569px) and (max-width: 979px) {
	.bottom_box {
		position: inherit;
		margin: 50% 0 10% 55%;
		overflow: hidden;
	}
}
@media screen and (max-width: 568px) {
	.bottom_box {
		margin: 150px 0 50px 0;
	}
}
.btn_detail_2 {
	position: absolute;
	margin: 0;
}
.btn_detail_2 a {
	background-color: #ffd202;
    padding: 6px 10px 6px 35px;
    display: inline-block;
    white-space: nowrap;
}
.btn_detail_2 a:hover {
	color: #fff;
}
.btn_detail_2 a:before {
	border-right: 2px solid #000;
	border-top: 2px solid #000;
	border-radius: 1px;
	content: "";
	margin: 0 0 0 10px;
	height: 8px;
	left: 0px;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 13px;
	width: 8px;
}
.btn_detail_2 a:hover:before {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	border-radius: 1px;
	content: "";
	margin: 0 0 0 10px;
	height: 8px;
	left: 0px;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 6px;
	width: 8px;
}