@charset "utf-8";
/* CSS Document */

/***白文字***/
.txt_w{
	color: #FFFFFF;
	display: block;
	margin-bottom: 40px;
	line-height: 1.8;
}
.txt_border{
	font-size: 20px;
	padding: 35px;
	border: 1px solid #ffffff;
}
@media screen and (max-width: 750px){
	.txt_w{margin-bottom: 20px;}
	.txt_border{
		font-size: 18px;
		padding: 15px;
	}
}


/***応援事業者とは***/
.contents{padding: 80px 75px;}
.contents p{
	text-align: left;
	margin-bottom: 50px;
	font-weight: 400;
	line-height: 1.8;
}
@media screen and (max-width: 900px){
	.contents{padding: 30px 5%;}
	.contents p{margin-bottom: 25px;}
}


/***オレンジ見出し***/
.orange{
	font-size: 30px;
	color: #f36938;
	display: block;
	margin-bottom: 40px;
}
@media screen and (max-width: 900px){
	.orange{
		font-size: 20px;
		margin-bottom: 20px;
	}
}


/***黄色背景***/
.bg_yellow{
	background-color: #fff9bb;
	padding: 50px 100px;
}
@media screen and (max-width: 900px){
	.bg_yellow{padding: 30px 5% 40px;}
}


/***メリットのリスト***/
.businesses .bg_yellow li{
	display: flex;
	padding: 30px 0;
	border-bottom: 2px solid #365cb2;
	text-align: left;
}
.businesses .bg_yellow li:first-child{padding: 0 0 30px 0;}
.businesses .bg_yellow li .li_img{
	width: 120px;
	min-width: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.businesses .bg_yellow li .li_txt span{
	font-size: 12px;
	padding: 5px 10px;
	color: #FFFFFF;
	background-color: #f36938;
	margin-bottom: 7px;
	display: inline-block;
}
.businesses .bg_yellow li .li_txt p{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
}
.businesses .bg_yellow li .li_txt small{
	font-size: 14px;
	font-weight: 400;
}

@media screen and (max-width: 900px){
	.businesses .bg_yellow li{
		padding: 20px 0 15px;
		flex-direction: column;
		align-items: center;
	}
	.businesses .bg_yellow li:first-child{padding: 10px 0 15px;}
	.businesses .bg_yellow li .li_img{margin-bottom: 10px;}
	.businesses .bg_yellow li .li_txt{width: 100%;}
	.businesses .bg_yellow li .li_txt span{padding: 2px 5px;}
	.businesses .bg_yellow li .li_txt p{font-size: 17px;}
}


/***□ボタン***/
.login_btn{
	display: inline-block;
	margin-top: 80px;
}
.btn_sq{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center; /* ←縦中央も保証される */
	flex-direction: column; /* brを使わず行を縦積みに */
	width: 600px;
	height: 120px;
	color: #fcffee;
	background-color: #f36938;
	font-size: 30px;
	text-decoration: none;
	margin-bottom: 40px;
	line-height: 1.4; /* 余裕を持たせる */
}
.btn_sq::after{
	content: "";
	position: absolute;
	background: url("../img/btn_arrow_orange.svg") no-repeat;
	width: 50px;
	height: 50px;
	margin: auto;
}
.btn_sq::after{inset: 0 30px 0 auto;}
.btn_sq:hover{opacity: 0.7;}


/***黒ボタン***/
.btn_black{
	background-color: #071533;
	margin-bottom: 60px;
}
.btn_black::after{background: url("../img/btn_arrow_black.svg") no-repeat;}
.btn_black span{font-size: 20px;}


/***パスワードをお忘れの方***/
.password{
	color: #ffffff;
	font-size: 20px;
}
@media screen and (max-width: 750px){
	.login_btn{
		margin-top: 40px;
		display: block;
	}
	.btn_sq{
		width: 100%;
		height: 80px;
		font-size: 20px;
		margin-bottom: 20px;
	}
	.btn_sq::after{
		width: 30px;
		height: 30px;
		background-size: contain;
	}
	.btn_sq::after{inset: 0 15px 0 auto;}
	.btn_black span{font-size: 14px;}
	.password{font-size: 14px;}
}