@charset "utf-8";

/* pageOuter_wrap */
.scroll_fadeIn{
	opacity: 0;
	transition: opacity 2s ease-out;
}
.scroll_fadeIn.show{
	opacity: 1;
}
.pageOuter_wrap{
	background-attachment: fixed;
	aspect-ratio: 1920 / 1080;
	background-image: url(../images/top/siteBg.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/* pageWrap */
.pageWrap{
	background-color: #000;
	padding-bottom: 50px;
}

/* eyeCatch */
.eyeCatch{
	margin-bottom: 80px;
}
.relative{
	position: relative;
}
.absolute{
	position: absolute;
	top: 0;
	left: 0;
}
.opacity08{
	opacity: 0.8;
}

/* commentRow */
.commentRow{
	width: 1100px;
	margin: 0 auto;
}
.commentRow ul{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.commentRow ul li{
	width: 31%;
	background-image: url(../images/owners/commentBg.jpg);
	background-size: cover;
	background-position: center center;
	padding: 15px;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 30px;
}
.commentBox{
	position: relative;
	padding: 15px 10px;
	box-sizing: border-box;
}
.commentBox:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.75);
}
.iconAbs{
	position: absolute;
	top: 0;
	left: 15px;
}
.commentBox_inner>.ttlBox,
.commentBox_inner>.txtBox{
	position: relative;
}
.commentBox_inner>.ttlBox{
	text-align: right;
	margin-bottom: 10px;
}
.commentBox_inner>.ttlBox>h4{
	font-family: "Cormorant Garamond", serif;
	font-size: 2em;
}
.commentBox_inner>.ttlBox>p{
	font-size: 0.9em;
}
.commentBox_inner.senior>.ttlBox>h4{
	color: #6f6d80;
}
.commentBox_inner.dinks>.ttlBox>h4{
	color: #8d8671;
}
.commentBox_inner.single>.ttlBox>h4{
	color: #8d7174;
}
.commentBox_inner.family>.ttlBox>h4{
	color: #718d75;
}
.commentBox_inner>.txtBox>p{
	font-size: 0.9em;
	line-height: 1.8;
}
@media (max-width:1320px){
	.commentRow{
		width: 80%;
	}
}
@media (max-width:1024px){
	.commentRow{
		width: 90%;
	}
	.commentRow ul{
		justify-content: center;
	}
	.commentRow ul li{
		width: 48%;
	}
	.commentRow ul li:nth-child(odd){
		margin-right: 4%;
	}
	.commentRow ul li:last-child{
		margin-right: 0%;
	}
}
@media (max-width:500px){
	.commentRow ul li{
		width: 100%;
	}
	.commentRow ul li:nth-child(odd){
		margin-right: 0%;
	}
}

/* pageNotice */
.pageNotice{
	width: 1100px;
	margin: 0 auto;
}
.pageNotice p{
	font-size: 0.75em;
	color: #fff;
	text-align: center;
}
@media (max-width:1320px){
	.pageNotice{
		width: 80%;
	}
}
@media (max-width:1024px){
	.pageNotice{
		width: 90%;
	}
}
@media (max-width:768px){
	.pageNotice p{
		text-align: left;
	}
}