/*===============================================================================
セクション
================================================================================*/
.line__sections{
	--count: 1;
	--gap: var(--g-sec--xs);
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	margin-bottom: var(--g-sec--md);
}
@media (min-width: 960px){
	.line__sections{
		--count: 2;
	}
}
.line__section{
	position: relative;
	width: calc( ( 100% - var(--gap) * (var(--count) - 1) ) / var(--count) );
	padding: var(--g-sec--sm) 0;
}
@media (min-width: 960px){
	.line__section{
		padding: var(--g-sec--sm) 1rem;
	}
}

/*===============================
 * 背景色
 * =================================*/
.line__section::before{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	content: "";
	width: 105vw;
	height: 100%;
	background: linear-gradient(165.76deg, #EFF5FB 10.12%, #EFFBF5 89.88%);
	border-radius: var(--bd-r--xl);
	overflow: hidden;
}
@media (min-width: 960px){
	.line__section::before{
		top: 0%;
		left: 0%;
		transform: translate(0);
		width: 100%;
	}
}

/*===============================
 * コンテンツ幅
 * =================================*/
.line__container{
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 100%;
}
@media (min-width: 600px){
	.line__container{
		max-width: 468px;
		margin-inline: auto;
	}
}

/*===============================
 * コンテンツ
 * =================================*/
.line__title{
	text-align: center;
	color: var(--c-main);
}
.line__content{
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.line__picture{
	margin-top: auto;
	border-radius: var(--bd-r--sm);
	overflow: hidden;
}



/*===============================================================================
ボタン
================================================================================*/
.line__btn{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	text-align: center;
	margin-bottom: var(--g-sec--lg);
}

.line__call{
	display: inline-block;
	font-weight: var(--fw-lg);
}
