@charset "utf-8";

*{
	box-sizing: border-box;
}
html{
	overflow-y: scroll;
	font-size: 100%;
}
body{
	margin: 0;
	padding: 0;
	line-height: 1.42857143;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #333;
	background-color: #fff;
	letter-spacing: 0.1em;
}
a{
	margin: 0;
	padding: 0;
	line-height: 1;
	text-decoration: none;
}
ul, ol, dl{
	margin: 0;
	padding: 0;
	list-style: none;
}
li, dt, dd{
	margin:0;
	padding:0;
}
h1{
	margin: 0;
	padding: 0;
	line-height: 0;
}
h2{
	margin: 0;
	padding: 0;
	font-weight: 500;
	color: #0968ab;
}
h3{
	margin: 0;
	padding: 0;
}
.inner{
	width: 1100px;
	margin: 0 auto;
}
#contents-flex .inner{
	display: flex;
}

/*ヘッダーここから*/
header{
	border-top: 2px solid #0968ab;
}
header .inner{
	position: relative;
	padding: 20px 0 15px;
}
header .header-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header ul{
	display: flex;
	gap: 20px;
}
header ul li a{
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #333;
}
header .material-symbols-outlined{
	margin-right: 10px;
	line-height: 1;
	font-size: 18px;
	color: #0968ab;
}
header .header-sub_menu{
	position: absolute;
	right: 0;
	bottom: 26px;
}
/*ヘッダーここまで*/

/*ナビここから*/
nav{
	background-color: #0968ab;
}
nav ul{
	display: flex;
	margin: 0 auto;

}
nav ul li{
	flex: 1;
	line-height: 52px;
	border-right: 1px dotted #fff;
}

nav ul li:first-child{
	border-left: 1px dotted #fff;
}
nav ul li a{
	display: block;
	line-height: 52px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	transition: all 0.2s linear;
}
nav ul li a:hover{
	opacity: 0.5;
}
/*ナビここまで*/

/*バナー（ファーストビュー）ここから*/
#contents .inner{
	margin-top: 2em;
}
#contents .main-flex{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 13px;
}
#contents .bnr1 .index_toilet img{
	box-shadow: 0 0 0 1px #01509b;
}
#contents .bnr1 .unithouse img{
	margin-top: 9px;
	box-shadow: 0 0 0 1px #01509b;
}
#contents .bnr2 img{
	box-shadow: 0 0 0 1px #0a9312;
}
#contents .bnr3 .aquaf img{
	box-shadow: 0 0 0 1px #0a9312;
}
#contents .bnr3 .satei img{
	margin-top: 9px;
	box-shadow: 0 0 0 1px #f28d01;
}
/*バナー（ファーストビュー）ここまで*/

/*バナー（セカンドビュー）ここから*/
main .long-bnr{
	margin-top: 7px;
}
/*バナー（セカンドビュー）ここまで*/

/*メインここから*/
main{
	width: 800px;
}
#sec1{
	padding: 50px 0;
}
#sec1 h2{
	margin: 20px 0;
	text-align: center;
	font-size: 30px;
}
#sec1 .sec1-flex{
	display: flex;
}
#sec1 .point{
	width: calc(800px / 3);
	padding: 10px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
#sec1 .point:hover{
	background-color: rgba(9, 104, 171, 0.1);
	transition: all 0.6s ease;
}
#sec1 .point:hover p{
	color: #0968ab;
}
#sec1 .point h3{
	margin: 20px 0 10px 0;
	font-size: 150%;
	font-weight: bold;
	color: #ff9c00;
}
#sec1 .point p{
	padding: 0 10px;
	font-size: 90%;
}
.point_btn-detail{
	position: absolute;
	left: 50%;
	top: 47%;
	transform: translate(-50%, -400%); 
	display: inline-block;
	width: 80%;
	padding: 12px 0;
	background-color: #0968ab;
	color: #fff;
	opacity: 0;
	transition: all 0.6s ease;
	pointer-events: none;
}
.point:hover .point_btn-detail{
	transform: translate(-50%, -50%);
	opacity: 1;
	pointer-events: auto;
}
#sec2{
	padding: 20px 40px;
	background-color: #ffffee;
	margin-bottom:40px;
}
#sec2 h2{
	font-size: 250%;
	letter-spacing: -0.05em
}
#sec2 .sec-flex{
 	position: relative;
 	padding-bottom: 0.5rem;
}
#sec2 .sec-flex:after{
	position: absolute;
 	bottom: 0;
 	left: 0;
	width: 100%;
	height: 6px;
	content: '';
	border-radius: 3px;
	background-image: -webkit-gradient(linear, right top, left top, from(#2af598), to(#009efd));
	background-image: -webkit-linear-gradient(right, #2af598 0%, #009efd 100%);
	background-image: linear-gradient(to left, #2af598 0%, #009efd 100%);
}
#sec2 .tabs{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 30px 0 20px;
}
#sec2 .tabs div{
	width: 33.333%;
	padding-bottom: 0.2em;
	text-align: center;
	position: relative;
	border-bottom: none;
}
#sec2 .tabs div::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e9e9e9;
	z-index: 1;
}
#sec2 .tabs div::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #0968ab;
	z-index: 2;
	transition: width 0.3s ease;
}
#sec2 .tabs div.active::after{
	width: 100%;
}
#sec2 .tabs div a{
	color: #666;
	font-size: 16px;
}
#sec2 .tabs div a.active{
	color: #0968ab;
}
#sec2 .tabs div a:hover{
	color: #0968ab;
}
#sec2 .items{
	display: none;
}
#sec2 .items.active{
	display: block;
}
#sec2 .items-flex dl{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}
#sec2 .items-flex{
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	background-color: #fff;
}
#sec2 dl{
	padding: 15px;
}
#sec2 dl dt{
	height:48px;
	font-size: 140%;
	font-weight: bold;
}
#sec2 dl dt a{
	color: #333;
}
#sec2 dl dt a:hover{
	color: #0968ab;
}
#sec2 .size_serial{
	margin:0;
	padding:0;
	font-size: 80%;
	color: #666;
}
#sec2 ul{
	display: flex;
}
#sec2 ul li{
	font-size: 75%;
	margin: 6px 6px 0 0;
	padding: 2px 3px;
	text-align: center;
	color: #fff;
}
#sec2 ul li:nth-Child(1){
	background-color: #0968ab;
}
#sec2 ul li:nth-Child(2){
	background-color: #b779cf;
}
#sec2 ul li:nth-Child(3){
	background-color: #ff9c00;
}
#sec2 ul li.layout{
	background-color: #9acd32 !important;
}
#sec2 ul li.rental{
	background-color: #ff9c00 !important;
}
#sec2 .price{
	margin-top: 10px;
	text-align: right;
	line-height: 180%;
	font-size: 11px;
	color: #666;
}
#sec2 .price span{
	font-size: 200%;
}
#sec3 .sec3-flex{
	display: flex;
	gap: 2%;
	flex-wrap:wrap;
}
#sec3 .sec3-flex li{
	width: 30.33%;
	padding-bottom: 15px;
}
#sec3 .sec3-flex img{
	width: 100%;
}
#sec3 dl dt a{
	font-weight: 700;
	color: #333;
}
#sec3 dl dt a:hover{
	color: #0968ab;
}
#sec3 dl dd a{
	color: #666;
}
#sec3 .btn-detail{
	margin: 15px auto 0 auto;
}
#sec4{
	padding: 20px 0;
}

#sec4 dl dt, #sec4 dl dd{
	font-size: 120%;
}
#sec4 dl dt{
	color: #0968ab;
}
#sec4 dl dd a{
	color: #333;
}
#sec4 dl dd a:hover{
	color: #0968ab;
}
#sec5{
	padding: 30px 0 100px 0;
}
#sec5 .sec5-flex{
	display: flex;
	gap: 25px;
	margin: 0 auto;
}
.sec-flex{
	display: flex;
	align-items: flex-end;
	margin: 20px 0 15px;
}
.sec-flex h2{
	font-size: 200%;
}
.sec-flex span{
	transform: translateY(-5px);
	margin-left: 10px;
	font-size: 12px;
}
.btn-detail{
	display: block;
	max-width: 300px;
	margin: 30px auto 0 auto;
	padding: 12px 0;
	align-items: center;
	text-align: center;
	border: 1px solid #0968ab;
	color: #0968ab;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}
.btn-detail::after{
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	top: 50%;
	right: 42px;
	margin-top: -7.5px;
}
.btn-detail::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: #0968ab;
	z-index: -1;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
	border-radius: inherit;
}
.btn-detail:hover{
	color: #fff;
}
.btn-detail:hover::before{
	width: 100%;
	height: 100%;
}
/*メインここまで*/

/*サイドコンテンツここから*/
aside{
	padding: 5px 0 0 50px;
}
aside .contact-us{
	margin: 40px 0;
	margin-bottom: 30px;
}
aside .contact-us h3{
	padding-left: 10px;
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 0;
	color: #0968ab;
	text-shadow: 0.5px 0 #0968ab;
}
aside .contact-us span{
	display: block;
	padding: 15px 0 0 10px;
	font-size: 11px;
	color: #0968ab;
}
aside .text{
	width: 250px;
	margin: 5px 0 0 0;
	padding: 0 12px 15px 12px;
	background-color: #f4f4f4;
	border-top: 1px solid #0968ab;
}
aside .text p{
	font-size: 12px;
}
aside .text ul li{
	padding-bottom: 5px;
}
aside .service h3{
	padding: 4px 0;
	background: #0968ab;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}
aside .service ul{
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
aside .service ul li{
	border-bottom: 1px solid #ddd;
}
aside .service ul li:last-Child{
	border-bottom: none;
}
aside .side-sub-nav{
	margin-top: 15px;
	border: 1px solid #ddd;
	border-top: 3px solid #0968ab;
}
aside .side-sub-nav li{
	background: url(../images/sqare.png) no-repeat 25px center;
	padding: 7px 0 7px 42px;
	border-bottom: 1px dotted #ccc;

}
aside .side-sub-nav li:last-Child{
	border-bottom: none;
}
aside .side-sub-nav li a{
	color: #333;
}
aside .side-sub-nav li a:hover{
	color: #0968ab;
}
aside .gennosuke img{
	margin-top: 15px;
}

/*サイドコンテンツここまで*/

/*フッターここから*/
footer{
	margin-top:50px;
}
footer .footer-wrap{
	border-top: 1px solid #eee;
	background: #f7f7f7;
}
footer .inner{
	padding: 30px 0 150px 0;
}
footer .footer-flex{
	display: flex;
	padding: 0 15px;
}
footer .grp1 .small{
	font-size: 10px;
	padding: 10px 0 15px 0;
}
footer .grp1 dl dt,
footer .grp1 dl dd{
	line-height: 1.7;
}
footer .grp1 dl dt{
	font-weight: bold;
}
footer .grp1 dl dd{
	color: #666;
}
footer .grp1 dl dd a{
	margin-left: 10px;
	color: #333;
}
footer .grp1 i{
	margin-right: 3px;
}
footer .grp2{
	width: 318px;
	margin:0 140px 0 70px;
}
footer .grp2 .large{
	margin: 10px 0;
	padding: 0;
	line-height: 1;
	font-size: 16px;
	font-weight: bold;
	color: #ff9c00;
}
footer .grp2 .btn-contact{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	border: 1px solid #0968ab;
	padding: 20px;
	font-size: 18px;
	color: #0968ab;
	border-radius: 6px;
	margin-top: 20px;
}
footer .grp2 .material-symbols-outlined{
	line-height: 1;
	margin-left: 10px;
	font-size: 22px;
	color: #0968ab;
}
footer .grp3{
	padding: 10px 0 0 0;
}
footer .grp3 ul li{
	background-image: url(../images/arrow-square.png);
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 20px;
}
footer .grp3 ul li a{
	color: #333;
}
footer .grp3 ul li a:hover{
	color: #0968ab;
}
footer .footer-copyright{
	background-color: #0968ab;
	margin: 0;
	padding: 15px;
	color: #fff;
	text-align: center;
	letter-spacing: 0;
}
footer .page-top{
	display: none;
	position: fixed;
	bottom: 0;
	right: 40px;
	z-index: 1000;
}
footer .page-top a img{
	cursor: pointer;
	transition: opacity 0.3s;
}
.btn-contact {
	display: inline-flex;
	align-items: center;
	gap: 6px;                 
	padding: 10px 16px;
	border: 1px solid #333;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-contact .material-symbols-outlined {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.btn-contact:hover .material-symbols-outlined {
	transform: scale(1.3);
}
/*フッターここまで*/
