@charset "UTF-8";
/* houseSlideArea
================================================== */
#houseSlideArea {
	position: relative;
}
/* houseSlideTit
================================================== */
#houseSlideTit {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
}
#houseSlideTit .title {
	padding: 10% 25% 0;
	width: 50%;
	filter: drop-shadow(5px 5px 5px #555);
}
@media screen and (max-width: 639px) {
	#houseSlideTit .title {
		padding: 25% 0 0 10%;
		width: 75%;
	}
}
/* houseSlideIcon
================================================== */
#houseSlideIcon {
	position: relative;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
}
#houseSlideIcon .icon {
	padding: 33% 79% 0 5%;
	width: 16%;
	margin: 0;
}
@media screen and (max-width: 639px) {
	#houseSlideIcon .icon {
		padding: 85% 25% 0 25%;
		width: 50%;
	}
}
/* houseSlideBox
================================================== */
#houseSlideBox {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
}
.swiper-container {}
@media screen and (max-width: 1800px) {
	.swiper-container {
		overflow: inherit;
	}
}
/* ------ スライダー ------ */
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.25);
	}
}
.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
	animation: zoomUp 10s linear 0s 1 normal both;
}
//imgタグだと下に隙間ができるのでblockに。
.slide-img img {
	display: block;
}
/* ------ bgArea ------ */
.bgArea {
	background-color: #EBF4EF;
}
/* ------ container ------ */
.container {
	width: 90% !important;
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 0;
}
/* ------ topArea ------ */
.topArea {}
.topArea h1 {
	font-size: 160%;
	line-height: 110%;
	padding-bottom: 20px;
	font-weight: bold;
}
@media screen and (max-width: 639px) {
	.topArea h1 {
		font-size: 130%;
	}
}
.topArea h1 span {
	font-size: 60%;
	display: contents;
}
.topArea p {
	padding-bottom: 1em;
}
/* ------ mainArea ------ */
.pageTit {
	padding: 20px 0 20px;
}
.pageTit h1 {
	font-size: 200%;
	line-height: 140%;
	color: #e9607c;
	padding-bottom: 10px;
	border-bottom: #e9607c solid 6px;
}
/* infoArea
================================================== */
#infoArea {
	background-color: #EBF4EF;
}
/* infoBlock */
#infoBlock {
	width: 90% !important;
	max-width: 960px;
	margin: 0 auto;
	padding: 30px 0 15px;
}
#infoBlock .fLeft {
	width: 15%;
}
#infoBlock .fRight {
	width: 80%;
}
@media screen and (max-width: 639px) {
	#infoBlock .fLeft {
		float: none;
		width: 100%;
	}
	#infoBlock .fRight {
		float: none;
		width: 100%;
	}
}
#infoBlock .fLeft h3 {
	padding: 10px 0 15px;
	text-align: center;
	font-weight: bold;
}
#infoBlock .fLeft figure {
	width: 70%;
	margin: 0 auto;
	padding-bottom: 15px;
}
@media screen and (max-width: 639px) {
	#infoBlock .fLeft h3 {
		font-size: 110%;
		font-size: 700;
		letter-spacing: 0.1em;
	}
	#infoBlock .fLeft figure {
		width: 30%;
		max-width: 100px;
		margin: 0 auto;
		padding-bottom: 15px;
	}
}
#infoBlock .infoBox {
	padding: 0 0 15px 0;
}
#infoBlock .infoBox:last-child {
	padding: 0;
	border-bottom: none;
}
#infoBlock .infoBox .infoDay {
	float: left;
	width: 90px;
	font-size: 60%;
	font-weight: 500;
}
@media screen and (max-width: 639px) {
	#infoBlock .infoBox .infoDay {
		float: none;
		width: 100%;
		line-height: 100%;
		padding-bottom: 5px
	}
}
#infoBlock .infoBox p {
	font-size: 90%;
	line-height: 140%;
	font-weight: bold;
}
#infoBlock .infoBox p a {
	color: #222;
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 0 0 15px;
	text-decoration: none;
	outline: none;
	display: block;
	transition: .3s;
}
#infoBlock .infoBox p a:hover {
	color: #e9607c;
	transition: .3s;
}
/*線の設定*/
#infoBlock .infoBox p a::before, #infoBlock .infoBox p a::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #ddd;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
#infoBlock .infoBox p a::after {
	width: 0;
	background: #e9607c;
}
/*hover時に100%に伸びる*/
#infoBlock .infoBox p a:hover::after {
	width: 100%;
}
/* #infoArea　centerBtnMore */
#infoArea .forPc {
	display: flex !important;
}
#infoArea .forMobile {
	display: none !important;
}
@media screen and (max-width: 639px) {
	#infoArea .forPc {
		display: none !important;
	}
	#infoArea .forMobile {
		display: flex !important;
	}
}
/* ------ txtBox ------ */
.txtBox h2 {
	font-size: 160%;
	font-weight: bold;
	color: #EA607C;
	padding-bottom: 10px;
	border-bottom: #EA607C solid 6px;
	margin-bottom: 30px;
}
.green {
	color: #EA607C;
}
.txtBox dl {
	margin-bottom: 20px;
	padding: 10px 1em 0;
}
.txtBox dl.bgGreen {
	background-color: #EBF4EF;
	margin-bottom: 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.txtBox dl.boder {
	padding: 0 1em 10px;
	border-bottom: dotted #ccc 1px;
	margin-bottom: 20px;
}
.txtBox dt {
	font-size: 120%;
	font-weight: bold;
	padding-bottom: 5px;
}
@media screen and (max-width: 639px) {
	.txtBox dt {
		font-size: 100%;
	}
}
.txtBox dd {
	padding-bottom: 10px;
}
.txtBox p {
	padding-bottom: 1em;
}
.txtBox p.txtPoint {
	font-size: 160%;
	line-height: 160%;
	font-weight: bold;
	color: #CF5924;
	padding: 20px 0;
}
.txtBox h3 {
	font-weight: bold;
}
.txtBox p.data {
	font-size: 80%;
}
.txtBox p.bold {
	font-weight: bold;
}
.sTxt {
	font-size: 80%;
}
.bold {
	font-weight: bold;
	clear: both;
}
.txtBox dl.bottomtel {
	margin-bottom: 0;
	padding: 0;
}
.txtBox dl.bottomtel dd {
	font-size: 200%;
	line-height: 100%;
	font-weight: 700;
	color: #EA607C;
	padding-bottom: 5px;
}
@media screen and (max-width: 639px) {
	.txtBox dl.bottomtel dd {
		font-size: 160%;
	}
}
.txtBox dl.bottomtel dt.freedial {
	width: 60px;
	float: left;
}
.txtBox dl.bottomtel dd.telNo {
	padding: 0 0 0 66px;
}
@media screen and (max-width: 639px) {
	.txtBox dl.bottomtel dt.freedial {
		width: 50px;
	}
	.txtBox dl.bottomtel dd.telNo {
		padding: 0 0 0 56px;
	}
}
/* ------ sliderBox ------ */
.phArea {
	width: 90% !important;
	max-width: 1460px;
	margin: 0 auto;
	padding: 40px 0;
}
/* ------ sliderBox ------ */
#sliderBox {
	position: relative;
}
#mainSlide {
	margin: 0 auto;
}
.customNavigation {
	text-align: center;
}
.customNavigation a {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.btn {
	background-color: #f3f3f3;
	border: 0 solid #cccccc;
	border-radius: 3px;
	color: #3fbf79;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 0;
	padding: 4px 12px;
	text-align: center;
	vertical-align: middle;
}
/* Owl Carousel */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.grabbing {
	cursor: url(grabbing.png) 8 8, move;
}
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}
/* Carousel Owl Demo Theme */
.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}
@media screen and (max-width: 639px) {
	.owl-theme .owl-controls {
		margin: 10px 30px 0;
	}
}
.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline; /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50); /*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #DA405E;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100); /*IE7 fix*/
	opacity: 1;
}
.item {
	text-align: center;
}
.item img {
	width: auto;
	max-width: 100%;
	max-height: 400px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.item p {
	font-size: 80%;
	padding: 10px 10px 0 10px;
	font-weight: bold;
}
@media screen and (max-width: 639px) {
	.item p {
		text-align: left;
		padding: 10px 0 0;
		line-height: 140%;
	}
}
.owl-item div {
	padding: 5px;
}
/* nextprev */
.owl-pagination {
	height: 30px;
}
.nextprev a {
	display: block;
	background-color: #DA405E;
	width: 30px;
	height: 30px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 80%;
	line-height: 30px;
	text-align: center;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.nextprev a:hover {
	background-color: #e9607c;
	color: #fff;
}
.btnPrev {
	position: absolute;
	bottom: 0;
	left: 0;
}
.btnNext {
	position: absolute;
	bottom: 0;
	right: 0;
}
/* ------ mapArea ------ */
#mapArea {
	margin: 0 auto;
	margin: 20px 0;
}
#mapBlock {
	height: 480px;
}
#map {
	width: 100%;
	height: 100%;
}
/* ------ google-maps ------ */
.google-maps {
	position: relative;
	padding-bottom: 0; // これが縦横比
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.madoriTxt {
	padding-bottom: 20px;
}
/* ------ madoriArea ------ */
.madoriArea {
	padding-bottom: 40px;
	border-top: dotted 1px #ccc;
}
.madoriArea .fLeft {
	width: 40%;
}
.madoriArea .fRight {
	width: 55%;
}
@media screen and (max-width: 639px) {
	.madoriArea .fLeft {
		float: none;
		width: 90%;
		margin: 0 auto;
	}
	.madoriArea .fRight {
		float: none;
		width: 100%;
		padding-top: 15px;
	}
}
/* ------ madoriArea02 ------ */
.madoriArea02 {
	border-top: dotted 1px #ccc;
}
.madoriArea02 .fLeft {
	width: 40%;
}
.madoriArea02 .fRight {
	width: 55%;
}
@media screen and (max-width: 639px) {
	.madoriArea02 .fLeft {
		float: none;
		width: 90%;
		margin: 0 auto;
	}
	.madoriArea02 .fRight {
		float: none;
		width: 100%;
		padding-top: 15px;
	}
}
.room2 {
	padding: 40px 0;
}
/* ------ outlineList ------ */
.outlineList {
	background: #fff;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 5px 5%;
}
.outlineList:nth-child(odd) {
	background: #F6F4F5;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.outlineList dt {
	font-weight: bold;
	font-size: 80%;
	line-height: 160%;
}
.outlineList dd {
	line-height: 130%;
	padding-left: 1em;
}
/* ------ blogArea ------ */
#blogArea {}
.blogBox {
	float: left;
	width: 26%;
	margin: 0 0.63% 15px;
	background-color: #EBF4EF;
	padding: 15px 3%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
@media screen and (max-width: 639px) {
	.blogBox {
		float: none;
		width: 80%;
		margin: 0 0 30px;
		padding: 15px 10%;
	}
}
.blogBox h3 {
	font-weight: bold;
	padding-bottom: 5px;
}
/* projectList
================================================== */
#projectList {
	border-top: solid 1px #EA607C;
	border-bottom: solid 1px #EA607C;
	padding-bottom: 20px;
	margin-bottom: 15px;
}
#projectListArea {}
/* projectBox */
.projectBox {
	display: inline-block;
	vertical-align: top;
	margin: 20px 0 0;
}
@media screen and (max-width: 639px) {
	.projectBox {
		display: inherit;
		width: 100%;
	}
}
/* projectBox linkBox */
.projectBox .linkBox {
	position: relative;
	z-index: 1;
}
.projectBox .linkBox a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -999px;
	z-index: 11;
}
.projectBox .zoomBox {
	display: block;
	transition-duration: 0.3s; /*変化に掛かる時間*/
}
.projectBox .zoomBox:hover {
	transform: scale(1.09); /*画像の拡大率*/
	transition-duration: 0.3s; /*変化に掛かる時間*/
}
.projectBox h3 {
	font-size: 100%;
}
@media screen and (max-width: 639px) {
	.projectBox h3 {
		margin: 2% 0;
		font-size: 90%;
	}
}
/* projectPhoto */
.projectPhoto img {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/* projectTxt */
.projectTxt .projectDay {
	font-size: 60%;
	font-weight: 500;
	line-height: 100%;
	padding-top: 15px;
}
.projectTxt h3 {
	font-weight: 500;
	margin: 0;
	padding-top: 5px;
	line-height: 130%;
	font-weight: bold;
}
/* ------ leftP ------ */
.leftP {
	padding-left: 1em;
}
/* ------ point ------ */
.point {
	background-color: #e9607c;
	color: #fff;
	padding: 3px 1em;
	font-size: 80%;
	line-height: 200%;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	margin-left: 0.5em;
	margin-top: -2px;
}
/* ------ infoBan ------ */
.infoBan {
	width: 80%;
	margin: 0 auto;
}
.infoBan h2 {
	padding-bottom: 10px;
}
.infoBan img {
	width: 100%;
}
/* ------ btnArea ------ */
.btnArea {
	margin: 15px 0 25px;
}
.btnArea p {
	padding: 0;
}
/*-----------------------------------------------------	*/
/*	for - 639px					*/
/*-----------------------------------------------------	*/
@media screen and (max-width: 639px) {
	.pageTit h1 {
		font-size: 130%;
		font-weight: bold;
	}
	.txtBox .fLeft {
		float: none;
		width: 100%;
	}
	.txtBox .fRight {
		float: none;
		width: 100%;
		padding-bottom: 20px;
	}
	.txtBox h2 {
		font-size: 120%;
	}
	.txtBox ol li {
		font-size: 120%;
		line-height: 160%;
		padding: 20p 0;
	}
	.txtBox ol li br {
		display: block;
	}
	.txtBox ul li {
		font-size: 80%;
	}
	.txtBox ul li br {
		display: block;
	}
	.txtBox p.txtPoint {
		font-size: 100%;
		line-height: 160%;
		padding: 20p 0;
	}
	.txtBox img {
		width: 100%;
	}
	/* ------ infoBan ------ */
	.infoBan {
		width: 100%;
		margin: 0;
	}
}
/* inArea
================================================== */
.inArea {}
.inBoxL {
	float: left;
	width: 48%;
}
.inBoxR {
	float: right;
	width: 48%;
}
@media screen and (max-width: 639px) {
	.inBoxL {
		float: none;
		width: 100%;
	}
	.inBoxR {
		float: none;
		width: 100%;
	}
}
