/*=======================================================================*/
/* フォントの読み込み */
/*=======================================================================*/

@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900);



/*=======================================================================*/
/* 全体基本 */
/*=======================================================================*/
*{
	margin: 0;
	padding: 0;

}
html,body{
	background-color:#fff;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body{
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
@media screen and (max-width: 768px) {
	body{
		font-size : 0.8em;
	}
}

img{
	border: none;
	vertical-align: top;
	line-height: 0;
	display: block;
	max-width : 100%;
	height: auto;
}

ul{
	list-style: none;
}
a{
	outline: none;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition:.5s; /*transitionで動きを*/
	-moz-transition:.5s;
	transition:.5s;
}
a:hover{
	outline: none;
	overflow: hidden;
	cursor: pointer;
	text-decoration: underline;
}
a img{
	border: 0px;
}


.clearfix:after{
	content: ".";
	display: block;
	height: 0; 
	font-size:0;
	clear: both; 
	visibility:hidden;
}
.clearfix{
	display: inline-block;
} 
/* Hides from IE Mac */
* html .clearfix{
	height: 1%;
}
.clearfix{
	display:block;
}
/* End Hack */

.smart{
	display: none!important;
}
@media screen and ( max-width:768px ){
	.smart{
		display: block!important;
	}
	.pc{
		display: none!important;
	}
}

#wrap{
	overflow: hidden;
}

/*=======================================================================*/
/* ヘッダー */
/*=======================================================================*/
header{
	/*position: fixed;*/
	width: 100%;
	z-index: 9999;
	background-color: rgba(255,255,255,0.8);
}
header.minimize{
	position: fixed;
}

/* タイトルとメニュー */
#header-inner{
	margin: 40px auto 16px auto;
	width: 96%;
	max-width: 1100px;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-transition:.5s; /*transitionで動きを*/
	-moz-transition:.5s;
	transition:.5s;
}
.minimize #header-inner{
	margin: 10px auto 10px auto;
}
@media screen and (max-width: 768px) {
	#header-inner{
		margin: 10px auto 10px auto;
		justify-content: space-around;
	}
}
#header-inner h1{
	width : 20%;
	text-align: left;
}
@media screen and (max-width: 768px) {
	#header-inner h1{
		width : 140px;
		margin: 0 auto 0 0;
	}
}
#header-inner h1 a{
	max-width : 200px;
	display : block;
}
#header-inner h1 a img{
	width : 100%;
	height : auto;
}
#header-inner ul{
	width : 80%;
	text-align: left;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
}
@media screen and (max-width: 768px) {
	#header-inner ul{
		height : 1px;
	}
}
#header-inner li{
	margin-right: 20px;
	font-size: 0.9em;
	-webkit-transition:.5s; /*transitionで動きを*/
	-moz-transition:.5s;
	transition:.5s;
}
.minimize #header-inner li{
	margin-right: -100%;
}
@media screen and (max-width: 768px) {
	#header-inner li{
		margin-right: -100%;
	}
}
#header-inner li a{
	color : #495057;
	padding: 5px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
#header-inner li a:hover{
	background-color: #ceffff;
}
#header-inner li span{
	margin-left: 2px;
	font-weight: 700;
}

/* パンくず */
.breadcrumbs{
	margin: 0px auto 10px auto;
	width: 96%;
	max-width: 1080px;
	text-align: left;
	font-size: 0.85em;
	font-weight: 700;
	-webkit-transition:.5s; /*transitionで動きを*/
	-moz-transition:.5s;
	transition:.5s;
}
.minimize .breadcrumbs{
	display : none;
}
@media screen and (max-width: 768px) {
	.breadcrumbs{
		display : none;
	}
}
.breadcrumbs a,
.breadcrumbs span{
	margin: 0px 5px;
}
.breadcrumbs a{
	color : #57595b;
}
.breadcrumbs a:hover{
	color: #8c1414;
}

/*=======================================================================*/
/* ナビゲーションに現在地を表示 */
/*=======================================================================*/
#gnav{
	position: fixed;
	z-index: 99999;
	top: 120px;
	right: 20px;
}
#gnav li a{
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #9c8c88;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
#gnav li a.current{
	background-color: #000;
}
@media screen and (max-width: 768px) {
	#gnav li a{
		width: 16px;
		height: 16px;
		margin-bottom: 5px;
		border-style: solid;
		border-width: 1px;
		border-color: #fff;
	}
}

/*=======================================================================*/
/* メイン画像部分 */
/*=======================================================================*/
#Logo{
	background-image:  url("../images/main01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height : 40vw;
	position: relative;
}

#logo-inner{
	width: 96%;
	max-width: 1100px;
	text-indent: -99999px;
}


/*=======================================================================*/
/* パース図 */
/*=======================================================================*/
#Pers{
	padding-top: 120px;
}
@media screen and (max-width: 768px) {
	#Pers{
		padding-top: 60px;
	}
}
#Pers-title{
	text-align: center;
	padding: 0 30%;
	margin-bottom: 30px;
}

#Pers-title img{
	margin: 0px auto;
}
.Pers-slider li{
	margin-right: 40px;
}
.Pers-slider a{
	display: block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-color: #000;
}
.Pers-slider a img{
	transition-duration: 0.3s;
}
.Pers-slider a:hover img{
	opacity: 0.6;
	transform: scale(1.2);
}


/*=======================================================================*/
/* 特徴 */
/*=======================================================================*/
#Feature{
	padding-top: 120px;
}
@media screen and (max-width: 768px) {
	#Feature{
		padding-top: 60px;
	}
}
#Feature-title{
	text-align: center;
	padding: 0 35%;
	margin-bottom: 30px;
}

#Feature-title img{
	margin: 0px auto;
}
#Feature-inner article{
	background-repeat : no-repeat;
	background-position: center center;
	padding: 30px 0;
}
#Feature-inner article:nth-of-type(1){background-image:url("../images/Feature01_bg.jpg");}
#Feature-inner article:nth-of-type(2){background-image:url("../images/Feature02_bg.jpg");}
#Feature-inner article:nth-of-type(3){background-image:url("../images/Feature03_bg.jpg");}
#Feature-inner article:nth-of-type(4){background-image:url("../images/Feature04_bg.jpg");}

#Feature-inner article div{
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;;
	margin: 0 auto;
	width: 96%;
	max-width: 1100px;
}
#Feature-inner article:nth-of-type(2n) div{
	flex-flow: row-reverse;
}
#Feature-inner article div main{
	width: 58%;/*2%の余白*/
	color : #fff;
}
#Feature-inner article div figure{
	width: 40%;
}
@media screen and (max-width: 768px) {
	#Feature-inner article div{
		width: 92%;
	}
	#Feature-inner article:nth-of-type(2n) div{
		flex-flow: wrap;
	}
	#Feature-inner article div main{
		width: 100%;
		margin-bottom: 10px;
	}
	#Feature-inner article div figure{
		width: 100%;
	}
}

#Feature-inner article div h3{
	font-weight: 400;
	font-size: 1.6em;
	text-align: center;
	margin-bottom: 10px;
}
#Feature-inner article div h2{
	font-weight: 900;
	font-size: 1.8em;
	text-align: center;
	margin-bottom: 5px;

}
#Feature-inner article div p{
	line-height: 1.8em;
}


/*=======================================================================*/
/* 間取り */
/*=======================================================================*/
#Layout{
	padding-top: 120px;

	background-image:url("../images/Layout_bg.png");
	background-repeat : no-repeat;
	background-position: center center;
	background-size: cover;
}
@media screen and (max-width: 768px) {
	#Layout{
		padding-top: 60px;
	}
}
#Layout h2 {
	text-align: center;
	padding: 0 35%;
	margin-bottom: 30px;
}
#Layout h2 img{
	margin: 0px auto;
}
#Layout-inner{
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0px auto;
	width: 96%;
	max-width: 1100px;
	text-align: center;
	background-color: rgba(255,255,255,0.8);
}
#Layout-inner p{
	width: 50%;
}
#Layout-inner p img{
	margin: 0px auto;
}
@media screen and (max-width: 768px) {
	#Layout-inner p{
		width: 100%;
	}
}

/*=======================================================================*/
/* ギャラリー */
/*=======================================================================*/
#Gallery{
	padding-top: 120px;
}
@media screen and (max-width: 768px) {
	#Gallery{
		padding-top: 60px;
	}
}
#Gallery h2 {
	text-align: center;
	padding: 0 35%;
	margin-bottom: 30px;
}
#Gallery h2 img{
	margin: 0px auto;
}
#Gallery-inner{
	margin: 0px auto;
	width: 96%;
	max-width: 1100px;
	text-align: center;
}


.slider-for{
	max-height: 60vw;
	overflow: hidden;
}
.slider-for li{

}
.slider-for img{
	width : 100%;
	height : auto;
}
.slider-nav{
	margin-top: 5px;
}
.slider-nav img{
	border-style: solid;
	border-width: 5px;
	border-color: #fff;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.slider-nav img{
		border-width: 3px;
	}
}

.slider-nav .slick-slide {
	transition: .3s ease;
	transform: scale(0.75);
}
.slider-nav .slick-current {
	transform: scale(1);
}
.slider-nav .slick-current img{
	border-color: #928080;
}

.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 30px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	margin-top: -10px;
	padding: 0;
	border: none;
	outline: none;
	&:hover, &:focus {
		outline: none;
		background: transparent;
		color: transparent;
		&:before {
			opacity: $slick-opacity-on-hover;
		}
	}
	&.slick-disabled:before {
		opacity: $slick-opacity-not-active;
	}
}

.slick-prev:before, .slick-next:before {
	font-family: $slick-font-family;
	font-size: 20px;
	line-height: 1;
	color: $slick-arrow-color;
	opacity: $slick-opacity-default;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev::before, .slick-next::before{
	color: #000;
}
.slick-prev {
	left: 0px;
	z-index: 999;
}
.slick-next {

    right: 0px;
	z-index: 999;

}

/*=======================================================================*/
/* フッター */
/*=======================================================================*/
footer{
	margin-top: 120px;
	background-color: #f9f6f6;
	box-shadow: 0px 8px 6px -3px #cecece inset;
	padding: 0px 0 20px 0;
}
@media screen and (max-width: 768px) {
	footer{
		margin-top: 60px;
	}
}

#footer-inner{
	margin: 0px auto;
	width: 96%;
	max-width: 1100px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	#footer-inner{
		width: 100%;
	}
}
.footer-menu{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0px auto;
	text-align: center;
	padding: 20px 0px;
}

@media screen and (max-width: 768px) {
	.footer-menu{
		padding: 0px 0px 20px 0px;
	}
	.footer-menu li{
		border-width: 0px;
		width : 50%;
	}
}

.footer-menu a{
	padding: 3px 14px;
	font-size: 0.9em;
	color: #333;
	text-decoration: none;
}
.footer-menu a:hover{
	color:#fff;
	background-color:#ceb8b8;
}
.footer-menu li a{
	border-style: solid;
	border-width: 0px 1px 0px 0px;
	border-color: #666;
}
.footer-menu li:last-child a{
	border-width: 0px 0px 0px 0px;
}
@media screen and (max-width: 768px) {
	.footer-menu li a,
	.footer-menu li:last-child a{
		position:  relative;
		display: block;
		padding: 10px 10px 10px 24px;
		font-size: 1.2em;
		text-align: left;
		border-style: solid;
		border-width: 0px 1px 1px 0px;
		border-color: #ceb8b8;
	}
	.footer-menu li:nth-of-type(2n) a{
		border-width: 0px 0px 1px 0px;
	}


	.footer-menu a:before {
		content:  '';
		width: 10px;
		height: 10px;
		display:  block;
		border-top: solid 1px #666;
		border-right: solid 1px #666;
		transform: rotate(45deg);
		position:  absolute;
		top: 17px;
		left:  5px;
		margin:  auto;
	}
}

.footer-logo{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px auto;
	text-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.footer-logo{
		display: block;
	}
}

.footer-logo .logo img{
	width: 300px;
	height: auto;
	margin-right : 40px;
}
@media screen and (max-width: 768px) {
	.footer-logo .logo img{
		margin : 0px auto;
	}
}
.footer-logo .info-tel{
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 1.5em;
	font-style: italic;
	font-weight: 600;
	color: #1BA1E6;
}
.footer-logo .info-tel a{
	color: #1BA1E6;
}
.footer-logo .mark{
	display: inline-block;
	width: 20px;
}
.footer-logo .info-hour{
	background: #1BA1E6;
	color: #fff;
	padding: 2px 10px;
	box-sizing: border-box;
	font-size: 0.8em;
}
@media screen and (max-width: 768px) {
	.footer-logo .info-hour{
		width : 170px;
		margin: 0 auto;
	}
}
.footer-logo .num{
	margin: 0 0 0 10px;
	font-family: 'Roboto', sans-serif;
	font-size: 1.4em;
	font-style: italic;
	font-weight: 600;
	display: inline-block;
}

.footer-menu02{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0px 0px 0px auto;
	text-align: center;
	padding: 20px 0px;
}

.footer-menu02 a{
	padding: 3px 10px;
	font-size: 0.9em;
	color: #000;
	text-decoration: none;
	border-style: solid;
	border-width: 0px 1px 0px 0px;
	border-color: #666;
}
.footer-menu02 a:hover{
	color:#fff;
	background-color:#b7183e;
}
.footer-menu02 li:last-child a{
	border-width: 0px 0px 0px 0px;
}

footer address{
	font-style: normal;
	text-align: left;
	font-size: 0.9em;
	padding: 10px 20px 0px 20px;
}
@media screen and (max-width: 768px) {
	footer address h3 span{
		display: block;
	}
}
#copyright{
	padding: 10px 0px 0px 0px;
	color : #666;
	font-size: 0.9em;
}

/*=======================================================================*/
/* ローディング */
/*=======================================================================*/
.loadingWrap {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #fff;
	background-image: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000000;
}

body .spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}


body .loading{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 80%;
	max-width : 300px;
	max-height: 160px;
	text-align: center;
	font-size: 10px;
}

/*=======================================================================*/
/* 資料請求 */
/*=======================================================================*/
.request a{
	position: fixed;
	display: inline-block;
	bottom: 10px;
	right: 10px;
	padding: 0 0;
	color: #fff;
	text-align: center;
	font-size: 14px;
	text-decoration: none;
	width: 100px;
	height: 100px;
	z-index: 1000006;
	background-color: #9c8c88;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.request a:hover {
	background-color: #000;
	text-decoration: none;
}
.request a i{
	font-size: 26px;
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	.request a{
		font-size: 10px;
		width: 70px;
		height: 70px;
		line-height: 16px;
	}
	.request a i{
		font-size: 18px;
		margin-top: 16px;
	}
}

/*=======================================================================*/
/* 共通ボタン */
/*=======================================================================*/
.but01{
	text-align: center;
}

.but01 a{
	display: inline-block;
	padding: 20px 50px;
	color: #000;
	background-color: #d9d7d4;
	font-size : 1.2em;
	margin: 20px 0px 10px 0px;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.but01 a:hover{
	color:#fff;
	background-color:#b7183e;
}

/*=======================================================================*/
/* TELリンク */
/*=======================================================================*/
.tel{
	font-style: normal;
}
