@charset "utf-8";

/**
 *
 *  燃料費調整額とは index
 *
 */

/*--------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
---------------------------------------------------------------------------*/
.l-section__subsidy {
	padding: 20px 40px 17px;
	margin-bottom: 40px;
	box-sizing: border-box;
	background-color: #fff;
	border: 4px solid #f27934;
}

.l-section__subsidy-ttl {
	font-size: 27px;
	font-weight: 600;
	text-align: center;
	color: #f27934;
}

.l-section__subsidy-group {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	margin-top: 5px;
}

.l-section__subsidy-txt {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5294;
}

.l-section__subsidy-txt span {
	background-image: linear-gradient(transparent 50%, #fdff42 50%);
}

.l-section__subsidy-btn {
	position: relative;
	top: -8px;
	margin-left: 7px;
}

.l-section__subsidy-btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 149px;
	height: 38px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	box-sizing: border-box;
	background-color: #1b266f;
	border: 2px solid #1b266f;
	border-radius: 20px;
	transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-section__subsidy-btn a:hover {
	color: #1b266f;
	background-color: #fff;
}

.l-section__subsidy-btn a span {
	position: relative;
	padding-left: 15px;
}

.l-section__subsidy-btn a span::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	margin: auto;
	content: '';
	border-style: solid;
	border-width: 4.5px 0 4.5px 6px;
	border-color: transparent transparent transparent #fff;
	transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-section__subsidy-btn a:hover span::before {
	border-color: transparent transparent transparent #1b266f;
}

/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px) {
	.l-section__subsidy {
		padding: 7px 20px 13px;
		margin-bottom: 30px;
		text-align: center;
	}

	.l-section__subsidy-ttl {
		font-size: 20px;
	}

	.l-section__subsidy-group {
		display: block;
		margin-top: 0;
	}

	.l-section__subsidy-txt {
		font-size: 14px;
		line-height: 1.5;
	}

	.l-section__subsidy-btn {
		top: 0;
		margin-top: 8px;
		margin-left: 0;
	}

	.l-section__subsidy-btn a {
		width: 129px;
		height: 31px;
		font-size: 11px;
	}

	.l-section__subsidy-btn a span {
		padding-left: 13px;
		font-size: 11px;
	}

	.l-section__subsidy-btn a span::before {
		border-width: 3.5px 0 3.5px 5px;
	}
}


/*--------------------------------------------------------------------------
   btn
---------------------------------------------------------------------------*/
.btn{
	width: 392px;
	margin: 55px auto 0;
}

/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px){
	.btn{
		width: auto;
		margin-top: 30px;
	}
}


