#cover {
	background-image: url('../img/cover.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 200px 0 100px;
}
#cover:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	background: var(--color-main);
	opacity: 0.25;
	display: block;
}
#cover .cover__title {
	font-size: 3em;
	color: #FFF;
	z-index: 3;
	width: 90%;
	margin: auto;
}
#cover .cover__title span {
	font-size: 0.3em;
	color: #FFF;
	display: flex;
	align-items: center;
}
#cover .cover__title span:before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #FFF;
	margin-right: 5px;
}


article {
	padding: 100px 0;
}
.contents {
	width: 90%;
	max-width: 600px;
	margin: auto;
}
.linebtn {
	display: block;
	padding: 20px 0;
	font-size: 1.4em;
	color: var(--color-main);
	border: 1px solid var(--color-main);
	background: #FFF;
	text-align: center;
	margin: 20px auto;
	text-decoration: none;
}
.linebtn:before {
	content: '';
	width: 50px;
	height: 50px;
	display: block;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	background-image: url('/common/img/sns_line.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.txt {
	font-size: 0.8em;
	margin: 50px auto;
}
.txt.js-modalopen {
	text-align: center;
	user-select: none;
	cursor: pointer;
}

.section__bg {
	max-width: 1000px;
}



#modal {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1000;
	display: none;
}
#modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}
#modal .modal__bg {
	border: 0;
	background: rgb(0 0 0 / 40%);
	backdrop-filter: blur( 8px );
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
	cursor: pointer;
}
#modal .modal__contents {
	background: #FFF;
	max-height: 90vh;
	max-width: 1000px;
	width: 90%;
	padding: 20px;
	border: 4px solid var(--color-main);
}
#modal .modal__contents .flow__list {
	width: 100%;
	overflow: auto;
}
#modal .modal__contents .flow__list .flow__list-contents {
	width: fit-content;
	display: flex;
}
#modal .modal__contents .flow__list .flow__list-item {
	width: 250px;
	padding: 50px 50px 50px 0;
}
#modal .modal__contents .flow__list .flow__list-item:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	height: 0px;
	width: 0px;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid var(--color-main);
}
#modal .modal__contents .flow__list .flow__list-item:last-child:after {
	display: none;
}
#modal .modal__contents .flow__list .flow__list-item .flow__list-item-ttl {
	color: var(--color-main);
	text-align: center;
	font-size: 0.9em;
}
#modal .modal__contents .flow__list .flow__list-item img {}
#modal .modal__close {
	margin-top: 50px;
	max-width: 400px;
}




/*===========================
=============================
PC 750~
=============================
===========================*/
@media screen and (min-width: 780px) {

	#cover {
		padding: 150px 0;
	}
	#cover .cover__title {
		font-size: 4em;
		display: flex;
		align-items: baseline;
		width: fit-content;
	}
	#cover .cover__title span {
		align-items: flex-end;
	}
	#cover .cover__title span:before {
		width: 100px;
	}

}