/*
	about
-----------------------------------------------------------------------------------------------*/
#about{
	background: var(--c-blue);
}
#about .square-head{
	margin: 35px 0 40px;
}
.about-lead{
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.4;
}
/*
	entry
-----------------------------------------------------------------------------------------------*/
#entry{
	background: var(--c-pink);
	padding: 130px 30px;
	text-align: center;
}
.entry-head{
	display: inline-block;
	margin-bottom: 40px;
	position: relative;
}
#entry .square-head{
	color: var(--c-orange);
	position: relative;
	z-index: 2;
}
[class^="entry-deco-"]{
	bottom: 0;
	position: absolute;
	z-index: 0;
}
.entry-deco-01{
	left: -90px;
}
.entry-deco-02{
	right: -87px;
}
.entry-box{
	background: #fff;
	border-radius: 20px;
}
#entry .cts-area{
	padding-block: 100px;
}
.entry-list{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.entry-item{
	width: calc((100% - 32px)/3);
}
.entry-link{
	border: 3px solid var(--c-orange);
	display: block;
	overflow: hidden;
	position: relative;
}
.entry-item img{
	width: 100%;
}
.entry-hover{
	align-items: center;
	backdrop-filter: blur(7px);
	background: rgb(255,128,0,0.65);
	color: #fff;
	display: flex;
	height: 105%;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 100%;
	transition: .4s;
	width: 100%;
}
@media (any-hover: hover){
	.entry-link:hover .entry-hover{
		opacity: 1;
		top: 0;
		transition: .3s;
	}
}
.entry-hover-en{
	align-items: end;
	display: flex;
	font-family: var(--f-en);
	font-size: 2.2rem;
	font-weight: 300;
	gap: 10px;
	justify-content: center;
	line-height: 1.1;
	text-align: right;
}
.entry-hover-en-num{
	font-size: 6.0rem;
	font-weight: 500;
	line-height: .9;
}
.entry-hover-txt{
	border-top: 1px solid #fff;
	display: block;
	margin-top: 20px;
	padding-top: 17px;
	text-align: center;
	width: 245px;
}
/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer .cts-area{
	padding-block: 40px;
}
.footer-img{
	margin: 0 auto;
	width: 180px;
}
.footer-img img{
	width: 100%;
}
@media screen and (max-width:812px){
	/*
		about
	-----------------------------------------------------------------------------------------------*/
	#about .square-head{
		margin: 25px 0 25px;
	}
	.about-lead{
		font-size: 1.4rem;
		line-height: 1.8;
		text-align: justify;
	}
	/*
		entry
	-----------------------------------------------------------------------------------------------*/
	#entry{
		padding: 70px 10px;
	}
	.entry-head{
		margin-bottom: 30px;
	}
	.entry-deco-01{
		left: -50px;
		width: 72px;
	}
	.entry-deco-02{
		right: -50px;
		width: 43px;
	}
	.entry-box{
		border-radius: 10px;
	}
	#entry .cts-area{
		padding-block: 20px;
	}
	.entry-list{
		gap: 5px;
	}
	.entry-item{
		width: calc((100% - 10px)/2);
	}
	.entry-link{
		border: 2px solid var(--c-orange);
	}
	.entry-link:hover .entry-hover{
		opacity: 1;
		top: 0;
		transition: .3s;
	}
	.entry-hover-en{
		font-size: 1.0rem;
		gap: 5px;
	}
	.entry-hover-en-num{
		font-size: 2.5rem;
	}
	.entry-hover-txt{
		display: none;
	}
	/*
		footer
	-----------------------------------------------------------------------------------------------*/
	#footer .cts-area{
		padding-block: 25px;
	}
	.footer-img{
		width: 40%;
	}
}