@charset "utf-8";


/* btn
------------------------------------ */
.wrap_btn{
	width: 90%;
	max-width: 350px;
	margin: 1.5em auto 1.5em;
}
.wrap_btn:last-child{
	/*margin-bottom: 0;*/
}
.wrap_btn.btn_large{
	width: 100%;
	max-width: 660px;
	font-size: 1.125em;
}
.wrap_btn span{
	display: inline-block;
}
a.btn_general{
	padding: 1.5em 1.5em 1.5em 0.5em;
	background: #ffe300;
	display: block;
	box-sizing: border-box;
	border-radius: 5px;
	position: relative;
	color: #000;
	font-size: 1.125em;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	line-height: 1.2;
	transition: .3s;
}
a.btn_general::before {
	content: '';
	width: 0.5em;
	height: 0.5em;
	margin-top: -0.3em;
	border: 0px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 1em;
}
a.btn_gene2{
	background: #ffe300;
    color: #000;
}
.inner a.btn_gene2 span{
    color: #000;
}

a.btn_general.no_btn{
	background: #e5e5e5;
	color: #333;
	pointer-events: none;
}
a.btn_general.no_btn::before{
	content: none;
}
a.btn_general span{
	display: inline-block;
}
@media screen and (min-width:640px) {
	a.btn_general{
		padding: 1em 1.5em 1em 0.5em;
		font-size: 1.25em;
	}
}
@media screen and (min-width:1000px) {
	.btn_general:hover {
		opacity: 0.6;
	}
}

/* flex
------------------------------------ */
.fl_box{
    display: block;
    margin: 0 auto 30px;
}
.fl_box .fl_left{
    margin-bottom: 30px;
	text-align: center;
    width: 100%;
}
.fl_box .fl_right{
    margin: 0 auto;
    width: 100%;
}
@media screen and (min-width:641px) {
    .fl_box{
        display: flex;
        justify-content: space-between;
        /* align-items: center; */
    }
    .fl_box .fl_left{
        width: 20%;
        margin-right: 1rem;
    }
    .fl_box .fl_right{
        width: 80%;
    }
}