@charset "UTF-8";


/*========================================

  indexページ

========================================*/


body.overflowhidden {
	touch-action: none;
	/*
		position:fixed;
overflow:hidden;
*/
}

.popupwrap {
	display: none;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow-y: scroll;
	background-color: rgba(0, 0, 0, .5);
	backdrop-filter: blur(10px);
	z-index: 99999;
	padding: 5% 0;
}


.popup .inr {
	position: relative;
	background-color: #fff;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.popup .ttl {
	position: relative;
	padding-top: 50px;
	padding-bottom: 20px;
}

.popup .ttl .txt {
	margin-right: 230px;
}

.popup .ttl .tal {
	position: absolute;
	top: 35px;
	right: 150px;
	width: 250px;
}

.popup .box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background-color: #65cdfd;
	padding: 60px 0;
	padding-left: 50px;
	border-radius: 0 0 20px 20px;
}

.popup .box .item {
	width: 330px;
	position: relative;
	box-sizing: border-box;
	justify-content: center;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
}

.popup .box .item .num {
	position: absolute;
	top: 0;
	left: 0;
	width: 90px;
	height: 90px;
	background: #d71618;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	border-top-left-radius: 10px;
}

.popup .box .item:nth-child(2n) .num {
	background: #0d8a40;
}

.popup .box .item:nth-child(3n) .num {
	background: #07569f;
}


.popup .box .num span {
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 18px;
	color: #fff;
	font-weight: 700;
	font-size: 25px;
}

.popup .box h2 {
	font-weight: 700;
	font-size: 25px;
	line-height: 1.3em;
	margin-top: .8em;
}

.popup .box .item:nth-child(1n) h2 {
	color: #d71618;
}

.popup .box .item:nth-child(2n) h2 {
	color: #0d8a40;
}

.popup .box .item:nth-child(3n) h2 {
	color: #07569f;
}

.popup .box p {
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top: .5em;
	font-size: 15px;
	line-height: 1.7em;
	color: #333;
}



.closebtn {
	position: fixed;
	top: 3%;
	right: 3%;
	color: #fff;
	z-index: 999999;
	cursor: pointer;
}

.closebtn img {
	width: 80px;
}

@media screen and (max-width: 767px) {
	.popup {
		padding-top: 25vw;
	}

	.popup .inr {
		width: 100%;
		max-width: 100%;
		padding: 5vw 0 0;
		box-shadow: 0 0 10px rgba(0, 0, 0, .5);
		overflow-x: hidden;
	}

	.popup .ttl {
		position: relative;
		padding-top: 8vw;
		padding-bottom: 7vw;
		text-align: left;
	}

	.popup .ttl .txt {
		margin-right: 0;
		width: 55vw;
		margin-left: 3vw;
	}

	.popup .ttl .tal {
		position: absolute;
		top: auto;
		bottom: 0;
		right: -2vw;
		width: 45vw;
	}

	.popup .box {
		display: block;
		padding: 3vw 0 8vw;
		padding-left: 0;
		border-radius: 0 0 20px 20px;
	}

	.popup .box .item {
		width: 86%;
		margin: 0 auto;
		padding: 5vw;
		margin-top: 5vw;
	}

	.popup .box .item .num {
		width: 20vw;
		height: 20vw;
	}

	.popup .box .num span {
		top: 2vw;
		left: 4vw;
		font-size: 6vw;
	}

	.popup .box h2 {
		font-size: 6.4vw;
	}

	.popup .box p {
		font-size: 3.8vw;
	}


	.closebtn {
		top: 2%;
		right: 2%;
	}

	.closebtn img {
		width: 15vw;
	}
}