@charset "UTF-8";
/* CSS Document */

.a_link{
  display: block; /* アンカーをブロック要素にする */
  width: 100%;    /* 親要素の幅いっぱいに広げる */
  height: 100%;   /* 親要素の高さいっぱいに広げる */
}

.mini_btn{
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	background: var(--red);
	display:table;
	padding: 20px 70px;
	border-radius: 30px;
	line-height: 1em;
	transition: ease-in-out .5s;
	cursor: pointer;
	margin: 0 auto;
	text-align: center;
	min-width: 380px;
	position: relative;
}
@media screen and (max-width: 1024px) {
	.mini_btn.message{
		min-width: 340px;
		padding: 20px 40px;
		
}
}
@media screen and (max-width:400px) {
	.mini_btn.message{
		min-width: 100%;
		padding: 20px 40px;
		
}
}
@media screen and (max-width: 767px) {
	.mini_btn{
		min-width: 100%;
		padding: 20px 40px;
		
}
}

.mini_btn:hover{
	 opacity: .7
}
.mini_btn a{
	padding-left: 1em;
	line-height: 1.3em;
	position: relative;
}
.mini_btn a:before{
	content:'';
	background: url("../icon/interview_white.svg") no-repeat;
	width: 1em;
	height:1em;
	background-size: cover;
	display: inline-block;
	margin-right: 4px;
	
}
.mini_btn:after{
	content:'';
	background: url("../icon/arrow_white.svg") no-repeat;
	width: 22px;
    height: 6px;
    background-size: cover;
    display: inline-block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 17px;
	margin: auto 0;
}

.company.mini_btn a:before{
	background: url("../icon/company_white.svg") no-repeat;
}
.message.mini_btn a:before{
	background: url("../icon/message_white.svg") no-repeat;
}
.jobs.mini_btn a:before{
	background: url("../icon/requirements_white.svg") no-repeat;
}
.entry.mini_btn a:before{
	background: url("../icon/entry_white.svg") no-repeat;
}
.home.mini_btn a:before{
	background: url("../icon/home_white.svg") no-repeat;
}
.link.mini_btn a:before{
	background: url("../icon/info-white.svg") no-repeat;
}




.entry_btn{
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	background: var(--red);
	display:table;
	padding: 20px 70px;
	border-radius: 30px;
	line-height: 1em;
	transition: ease-in-out .5s;
	cursor: pointer;
	margin: 0 auto;
	text-align: center;
	min-width: 380px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.entry_btn{
		min-width: 100%;
		padding: 20px 40px;
}
}

.entry_btn:hover{
	 opacity: .7
}
.entry_btn a{
	padding-left: 1em;
	line-height: 1.3em;
	position: relative;
}
.entry_btn span {
	position: relative;
	padding-left: 1.4em;
}
.entry_btn span:before{
	content: '';
	background: url("../icon/entry_white.svg") no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	width: 21px;
    height: 18px;
	display: inline-block;
	background-size: cover
	}

.entry_btn:after{
	content:'';
	background: url("../icon/arrow_white.svg") no-repeat;
	width: 22px;
    height: 6px;
    background-size: cover;
    display: inline-block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 17px;
	margin: auto 0;
}