@charset 'utf-8';

/*---------------------------------------------------------------------- */
/* Experience Styles
------------------------------------------------------------------------ */

/* Utilities
---------------------------------------------------------- */

/* Block --------------------------------- */

/* .block-overview */

.block-overview > .title > span {
	padding: .9rem 2.5rem;
	background: var(--bg-color01);
	border-radius: 1rem;
	color: #fff;
}

/* List --------------------------------- */

/* .list-flow */

.list-flow {
	display: flex;
	flex-flow: column;
	gap: 3rem 0;
	margin-top: 9rem;
	padding: 5rem 3rem;
	background: #fff;
	clip-path: inset(0 0 round 2rem);
}

.list-flow > li {
	display: grid;
	grid-template-areas:
		'num title'
		'num txt  ';
	grid-template-columns: 3.3rem auto;
	gap: 2.5rem 1rem;
}

.list-flow > li:not(:last-of-type) {
	padding-bottom: 3rem;
	border-bottom: .1rem solid var(--warm-color09);
}

.list-flow > li > .num {
	grid-area: num;
	display: grid;
	place-content: center;
	padding-bottom: .1em;
	width: 3.3rem;
	height: 3.3rem;
	background: var(--cool-color02);
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	font-size: 1.9rem;
	letter-spacing: 0;
}

.list-flow > li > .title {
	grid-area: title;
	margin-right: -1em;
	line-height: 1.55;
	font-size: 2.2rem;
	letter-spacing: .05em;
}

.list-flow > li > .txt {
	text-align: justify;
}

/* .list-voice */

.list-voice {
	display: flex;
	flex-flow: column;
	gap: 7rem 0;
	margin-top: 3rem;
}

.list-voice > li {
	position: relative;
	padding: 3rem;
	width: 100%;
	background: var(--warm-color02);
	border-radius: 1.5rem;
	text-align: justify;
}

.list-voice > li::after {
	position: absolute;
	bottom: -3rem;
	left: 50%;
	width: 4rem;
	height: 6rem;
	border: 0 solid transparent;
	border-width: 3rem 2rem;
	content: '';
	transform: translateX(-50%);
}

.list-voice > li:nth-of-type(odd) {
	margin-left: -3rem;
}

.list-voice > li:nth-of-type(odd)::after {
	margin-left: -2.4rem;
	border-right-color: var(--warm-color02);
}

.list-voice > li:nth-of-type(even) {
	align-self: flex-end;
	margin-right: -3rem;
}

.list-voice > li:nth-of-type(even)::after {
	margin-right: -2.4rem;
	border-left-color: var(--warm-color02);
}






/*---------------------------------------------------------------------- */
/* 768px Tablet & PC Styles
------------------------------------------------------------------------ */

@media screen and (min-width: 768px), print {

/* Utilities
---------------------------------------------------------- */

/* Block --------------------------------- */

/* .block-overview */

.block-overview > .title > span {
	padding: .9rem 3.5rem;
	font-size: 2rem;
}

/* List --------------------------------- */

/* .list-voice */

.list-voice {
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 100rem;
	margin-top: 8rem;
}

.list-voice > li {
	padding: 6rem;
	width: 48rem;
	border-radius: 3rem;
}

.list-voice > li::after {
	bottom: -4rem;
	width: 6rem;
	height: 8rem;
	border-width: 4rem 3rem;
}

.list-voice > li:nth-of-type(odd) {
	margin-left: 0;
}

.list-voice > li:nth-of-type(odd)::after {
	margin-left: -1rem;
}

.list-voice > li:nth-of-type(even) {
	margin: 10rem 0 0 0;
}

.list-voice > li:nth-of-type(even)::after {
	margin-right: -1rem;
}

}