@charset "utf-8";

/* =========================================
	レイアウト
========================================= */

/* l-section */
.l-section{
	padding-top:100px;
	padding-bottom:100px;
	position:relative;
	width:auto;
}

/* l-container */
.l-container{
	width:calc(100% - (60px * 2));
	max-width:calc(1100px + (60px * 2));
	margin:0 auto;
	position:relative;
}

.w960{
	max-width:calc(960px + (60px * 2));
}

.w768{
	max-width:calc(768px + (60px * 2));
}

.w690{
	max-width:calc(690px + (60px * 2));
}

/* l-anchor */
.l-anchor{
	margin-top:-100px;
	padding-top:100px;
}

/* l-cta */
.l-cta__area{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	gap:25px;
}

.l-cta__subText{
	width:100%;
	max-width:205px;
	height:40px;
	font-size:24px;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:#1A1311;
	border-radius:6px;
	position:relative;
}

.l-cta__subText::before{
	content:"";
	width:0;
	height:0;
	border-top:15px solid #1A1311;
	border-right:10px solid transparent;
	border-bottom:15px solid transparent;
	border-left:10px solid transparent;
	position:absolute;
	bottom:-30px;
	left:50%;
	margin-left:-10px;
}

.l-cta__link{
	width:100%;
	max-width:540px;
	height:80px;
	border-radius:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:#fff;
	box-shadow:0 4px 6px rgba(0,0,0,0.2);
	position:relative;
}

.l-cta__link::before{
	content:"";
	position:absolute;
	right:35px;
	width:14px;
	height:14px;
	border-right:2px solid #1A1311;
	border-bottom:2px solid #1A1311;
	transform:rotate(45deg);
	margin-bottom:2px;
}

.l-cta__link:hover{
	opacity:1;
	box-shadow:0 0 0 rgba(0,0,0,0);
}

.l-cta__text{
	font-size:32px;
}

/* l-list */
.l-list{
	border-top:1px solid #ddd;
}

.l-list__item{
	display:flex;
	flex-direction:column;
	border-bottom:1px solid #ddd;
}

.l-list__dl{
	display:flex;
	align-items:stretch;
}

.l-list__dt,
.l-list__dd{
	height:auto;
	padding:32px 0;
}

.l-list__dt{
	width:120px;
}

.l-list__dd{
	width:calc(100% - 120px);
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	color:#666;
}

.l-list__span01{
	width:100%;
}

.l-list__span02{
	padding-right:.5em;
}

/* l-flexRow */
.l-flexRow{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-between;
	gap:30px;
}

/* l-flexColumn */
.l-flexColumn{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:space-between;
	gap:30px;
}

/* =========================================================
	Media Queries（まとめ）
========================================================= */

/* =========================
	@media 1200px
========================= */
@media screen and (max-width:1200px){
	.l-section{
		padding-top:80px;
		padding-bottom:80px;
	}

	.l-container{
		width:calc(100% - (30px * 2));
		max-width:calc(1100px + (30px * 2));
	}

	.w960{
		max-width:calc(960px + (30px * 2));
	}

	.w768{
		max-width:calc(768px + (30px * 2));
	}

	.w690{
		max-width:calc(690px + (30px * 2));
	}

	.l-cta__area{
		gap:15px;
	}

	.l-cta__subText{
		max-width:120px;
		height:32px;
		font-size:16px;
	}

	.l-cta__subText::before{
		border-top:10px solid #1A1311;
		border-right:8px solid transparent;
		border-bottom:10px solid transparent;
		border-left:8px solid transparent;
		bottom:-20px;
		margin-left:-8px;
	}

	.l-cta__link{
		max-width:400px;
		height:56px;
	}

	.l-cta__link::before{
		right:25px;
		width:10px;
		height:10px;
	}

	.l-cta__text{
		font-size:24px;
	}

	.l-list__dt,
	.l-list__dd{
		padding:24px 0;
	}
}

/* =========================
	@media 900px
========================= */
@media screen and (max-width:900px){
	.l-section{
		padding-top:60px;
		padding-bottom:60px;
	}

	.l-name{
		justify-content:center;
	}

	.l-list__dt{
		width:80px;
	}

	.l-list__dd{
		width:calc(100% - 80px);
	}
}

/* =========================
	@media 768px
========================= */
@media screen and (max-width:768px){
	.l-section{
		padding-top:40px;
		padding-bottom:40px;
	}

	.l-container{
		width:calc(100% - (20px * 2));
		max-width:calc(1100px + (20px * 2));
	}

	.w960{
		max-width:calc(960px + (20px * 2));
	}

	.w768{
		max-width:calc(768px + (20px * 2));
	}

	.w690{
		max-width:calc(690px + (20px * 2));
	}

	.l-flexRow{
		flex-direction:column;
	}

	.l-list__dl{
		flex-wrap:wrap;
	}

	.l-list__dt{
		width:100%;
		padding:24px 0 8px;
		color:#E18173;
	}

	.l-list__dd{
		width:100%;
		padding:0 0 24px;
	}
}
