@charset "utf-8";

/* ////////////////////////////////////////////
 *                 base & layout
 * //////////////////////////////////////////// */

/* Typography
------------------------------------------*/
html {
	background: #fff;
	font-size: 18px;
}
body {
	line-height: 1.8;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/*font-family: "メイリオ" ,"Meiryo", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	color: #584a40;
}
a {
	color: #d85147;
	text-decoration: none;
}
a:hover,
a:focus {
	color: inherit;
	text-decoration: underline;
}

/* use hover animation */
/*
a, a:hover {
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
		 -o-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}
*/


/* Layout
------------------------------------------*/
body {
	min-width: 1080px;
	text-align: center;
}
body.home {
	word-break: break-all;
	background: url(/images/default/bg01.png) no-repeat center 0;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
#container {
	overflow: hidden;
}


/* header
------------------------------------------*/
#header {
	background: url(/images/default/header-bg.png) repeat center 0;
	.main{
		margin: 0 auto;
		width: 1080px;
		height: 124px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		.header-logo{
			margin-right: 82px;
			transform: translateY(-3px);
		}
		.header-tel{
			.hours{
				margin-top: 1.0em;
				padding-left: 53px;
				text-align: left;
				font-size: 14px;
				line-height: 1.3;
				span{
					display: none;
				}
			}
		}
		.header-banner{
			margin-left: 20px;
			ul{
				display: flex;
				justify-content: flex-end;
				align-items: center;
				gap: 6px;
			}
		}
	}
	.gnav {
		margin: 0 auto;
		width: 1080px;
		height: 42px;
	}
}

/* droppy */
.gnav-list {
	position: relative;
	text-align: left;
	zoom: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.gnav-list li {display: block; position: relative; z-index: 20; }
.gnav-list ul { display: none; position: absolute; top: calc(100% + 15px); left: 0; width: 100%; background: rgba(255,255,255,.8); }
.gnav-list ul li { float: none; }
.gnav-list ul li a { display: block; padding: 5px 10px; color: inherit; font-size: 14px; zoom: 1; }
.gnav-list ul li a:hover { text-decoration: none; background: #fff; }
.gnav-list ul ul { top: 0; left: 100%; width: 100%; }
.gnav-list a, .gnav-ul img{ display: block; }


/* mainimage
------------------------------------------*/
/* 横スライド
.slideshow .slick-list {overflow: visible;}
*/

#mainimage {
	position: relative;
	overflow: hidden;
	margin: 17px auto 70px;
}
#mainimage-inner {
	margin: 0 auto;
	width: calc(100% - 60px);
	max-width: 1600px;
}

/* slideshow */
.slideshow {
}
.slideshow .slick-slide {
	backface-visibility: hidden;
}
.slideshow .slick-slide img {
	width: 100%;
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	border-radius: 80px;
}



/* content main
------------------------------------------*/
#content-inner {
	width: 1080px;
	margin: 0 auto;
	padding-bottom: 60px;
}

#main {
	width: 1080px;
	text-align: left;
}
.home #content-inner{
	padding: 0;
	width: 100%;
}
.home #main {
	width: 100%;
	text-align: center;
}

.main-news {
	margin: 0 auto 70px;
	width: 1080px;
	height: 120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	h2{
		width: 180px;
		a{
			display: block;
			margin-top: 24px;
		}
	}
	.main{
		width: 810px;
		ul{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
			li{
				display: flex;
				justify-content: space-between;
				align-items: center;
				.image{
					width: 120px;
					-webkit-border-radius: 15px;
					-moz-border-radius: 15px;
					border-radius: 15px;
					overflow: hidden;
				}
				.texts{
					width: calc(100% - 138px);
					text-align: left;
					h3{
						span{
							display: block;
							font-size: 15px;
						}
						.header{
							margin-bottom: 10px;
							display: flex;
							justify-content: flex-start;
							align-items: center;
							gap: 5px;
							height: 24px;
						}
						.date{
						}
						.cat{
							a{
								display: block;
								padding: 0 3.0em;
								color: #fff;
								background: #f39800;
								-webkit-border-radius: 5px;
								-moz-border-radius: 5px;
								border-radius: 5px;
							}
						}
						a{
							display: -webkit-box;
							-webkit-line-clamp: 2;
							-webkit-box-orient: vertical;
							overflow: hidden;
							font-size: 16px;
							color: inherit;
						}
					}
				}
			}
		}
	}
}

.main-message{
	position: relative;
	height: calc((996 / 1920) * 100vw);
	min-height: 780px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url(/images/default/main-message-bg.png) no-repeat center center / cover;
	h2{
		margin-bottom: calc((60 / 1920) * 100vw);
	}
	.main{
		margin: 0 auto;
		width: 1080px;
		display: flex;
		justify-content: space-between;
		.image{
			position: relative;
			margin-left: calc(((50vw - 540px) - ((100 / 1920) * 100vw)) * -1);
			width: calc(((50vw - 540px) - ((100 / 1920) * 100vw)) + 480px);
			&::before {
				display: block;
				content: '';
				position: absolute;
				top: calc((10 / 1920) * 100vw);
				right: calc((10 / 1920) * 100vw);
				bottom: calc((10 / 1920) * 100vw);
				left: calc((10 / 1920) * 100vw);
				background: url(/images/default/main-message-img-frame.png) no-repeat center center / cover;
			}
			img{
				-webkit-border-radius: calc((60 / 1920) * 100vw);
				-moz-border-radius: calc((60 / 1920) * 100vw);
				border-radius: calc((60 / 1920) * 100vw);
			}
		}
		.text{
			width: 540px;
			padding-top: calc((50 / 1920) * 100vw);
			text-align: left;
			font-size: max(calc((20 / 1920) * 100vw),17px);
		}
		.text p:not(:last-child){
			margin-bottom: 1.5em;
		}
	}
	.illust{
		position: absolute;
		bottom: 0;
		right: calc((50vw - 540px) - ((210 / 1920) * 100vw));
		width: calc((304 / 1920) * 100vw);
	}
}

.main-reason{
	padding: 90px 0 95px;
	background: #fdfefe;
	position: relative;
	&::before ,
	&::after {
		display: block;
		content: '';
		position: absolute;
	}
	&::before {
		top: 0;
		right: 0;
		width: calc((924 / 1920) * 100vw);
		height: calc((904 / 1920) * 100vw);
		background: url(/images/default/main-reason-bg01.png) no-repeat center center / cover;
	}
	&::after {
		bottom: 0;
		left: 0;
		width: calc((1036 / 1920) * 100vw);
		height: calc((952 / 1920) * 100vw);
		background: url(/images/default/main-reason-bg02.png) no-repeat center center / cover;
	}
	h2{
		position: relative;
		z-index: 10;
		margin-bottom: 120px;
	}
	.main{
		position: relative;
		z-index: 10;
		margin: 0 auto;
		width: 1080px;
		ul{
			margin-bottom: 60px;
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 90px 30px;
			li{
				position: relative;
				padding: 110px 35px 50px;
				background: url(/images/default/main-reason-bg03.png) no-repeat center center / cover;
				-webkit-border-radius: 18px;
				-moz-border-radius: 18px;
				border-radius: 18px;
				.icon{
					position: absolute;
					top: -60px;
					left: 50%;
					transform: translateX(-50%);
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					text-align: center;
					width: 140px;
					height: 140px;
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					border-radius: 50%;
					background: #f39800;
				}
				h3{
					color: #584a40;
					font-size: 28px;
					font-weight: 600;
					margin-bottom: .8em;
					line-height: 1.3;
				}
				.text{
					font-size: 18px;
				}
			}
		}
	}
}

.main-menu{
	position: relative;
	padding: 80px 0 90px;
	background: url(/images/default/main-menu-bg.png) no-repeat center center / cover;
	&::before ,
	&::after {
		display: block;
		content: '';
		position: absolute;
	}
	&::before {
		bottom: 60px;
		left: calc((190 / 1920) * 100vw);
		width: calc((210 / 1920) * 100vw);
		height: calc((247 / 1920) * 100vw);
		background: url(/images/default/main-menu-illust01.png) no-repeat center center / cover;
	}
	&::after {
		bottom: 130px;
		right: calc((180 / 1920) * 100vw);
		width: calc((136 / 1920) * 100vw);
		height: calc((307 / 1920) * 100vw);
		background: url(/images/default/main-menu-illust02.png) no-repeat center center / cover;
	}
	h2{
		margin-bottom: 20px;
	}
	.main{
		margin: 0 auto;
		width: 1080px;
		ul{
			margin-bottom: 60px;
			display: flex;
			justify-content: center;
			gap: 30px 28px;
			flex-wrap: wrap;
			li{
				width: 249px;
				background: #fff;
				border-bottom: #cbcbcb 3px solid;
				-webkit-border-radius: 20px;
				-moz-border-radius: 20px;
				border-radius: 20px;
				.texts{
					padding: 20px;
					h3{
						a{
							display: block;
							font-size: 18px;
							font-weight: 700;
							margin-bottom: 20px;
							padding-bottom: 20px;
							border-bottom: #5d5046 1px dashed;
							color: inherit;
							letter-spacing: -.1em;
							line-height: 1.3;
						}
					}
					.text{
						font-size: 18px;
						font-weight: 700;
						strong{
							color: #3ea123;
							font-weight: 700;
						}
					}
				}
			}
		}
	}
}

.main-flow{
	padding: 90px 0 120px;
	background: url(/images/default/main-flow-bg.png) no-repeat center center / cover;
	h2{
		margin-bottom: 60px;
	}
	.main{
		margin: 0 auto;
		padding: 60px 100px 100px;
		width: 1280px;
		background: #fff;
		position: relative;
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		ul{
			display: flex;
			justify-content: space-between;
			li{
				width: 250px;
				.image{
					position: relative;
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					border-radius: 50%;
					overflow: hidden;
					&::before {
						display: block;
						content: '';
						position: absolute;
						top: 5px;
						right: 5px;
						bottom: 5px;
						left: 5px;
						background: url(/images/default/main-flow-img-frame.png) no-repeat center center / cover;
					}
				}
				.number{
					position: relative;
					z-index: 10;
					margin: -22px auto 15px;
					width: 53px;
					height: 53px;
					line-height: 53px;
					text-align: center;
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					border-radius: 50%;
					font-size: 24px;
					font-weight: 600;
					color: #fff;
				}
				h3{
					color: #584a40;
					font-size: 28px;
					font-weight: 600;
					margin-bottom: .5em;
				}
				.text{
					font-size: 16px;
				}
			}
			li:nth-child(1){
				.number{
					background: #f39800;
				}
			}
			li:nth-child(2){
				.number{
					background: #4d9f34;
				}
			}
			li:nth-child(3){
				.number{
					background: #ef8292;
				}
			}
			li:nth-child(4){
				.number{
					background: #d85147;
				}
			}
		}
		.btns{
			position: absolute;
			bottom: -35px;
			left: 50%;
			transform: translateX(-50%);
		}
	}
}

.main-service{
	padding: 90px 0 80px;
	background: url(/images/default/main-service-bg.png) no-repeat center center / cover;
	h2{
		position: relative;
		z-index: 10;
		margin-bottom: 60px;
	}
	.main{
		position: relative;
		margin: 0 auto;
		width: 1080px;
		ul{
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 40px;
			li{
				position: relative;
				border-bottom: #c4bfba 3px solid;
				padding: 30px;
				display: flex;
				justify-content: space-between;
				-webkit-border-radius: 20px;
				-moz-border-radius: 20px;
				border-radius: 20px;
				overflow: hidden;
				background: url(/images/default/main-service-bg02.png) no-repeat center center / cover;
				.image{
					width: 150px;
					img{
						-webkit-border-radius: 10px;
						-moz-border-radius: 10px;
						border-radius: 10px;
					}
				}
				.texts{
					width: calc(100% - 170px);
					text-align: left;
					h3{
						color: #584a40;
						font-size: 25px;
						font-weight: 700;
						padding-bottom: 10px;
						margin-bottom: 10px;
						line-height: 1.2;
						border-bottom: #5f5147 1px dashed;
					}
					.text{
						font-size: 18px;
					}
				}
				.btns{
					position: absolute;
					bottom: 0;
					right: 0;
				}
			}
		}
	}
}

.main-contact-wrapper {
	padding: 70px 0;
	background: url(/images/default/main-contact-bg.png) no-repeat center center / cover;
	.main-contact{
		margin: 0 auto;
		padding: 40px 30px 70px;
		background: #fff;
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		width: 1040px;
		h3{
			margin-bottom: 50px;
		}
		.contact{
			margin: 0 auto 50px;
			width: 840px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			.tel{
				line-height: 1.2;
				a{
					font-size: 46px;
					font-weight: 700;
					color: inherit;
					text-decoration: none;
					-webkit-transition: all 0.3s ease;
					-moz-transition: all 0.3s ease;
					-o-transition: all 0.3s ease;
					&:hover {
						opacity: .7;
					}
					span{
						color: #f39800;
						font-size: 35px;
						margin-right: .5em;
					}
				}
				.hours{
					font-size: 16px;
					br{
						display: none;
					}
				}
			}
		}
		.text{
			margin: 0 auto;
			width: 760px;
			padding: 30px;
			text-align: left;
			-webkit-border-radius: 20px;
			-moz-border-radius: 20px;
			border-radius: 20px;
			border: #63564c 1px dashed;
			ul{
				li{
					list-style: disc inside;
				}
			}
		}
	}
}




/* footer
------------------------------------------*/
#footer {
	padding: 70px 0;
	background: #f6efe7;
	border-top: #f39800 5px solid;
	.main{
		margin: 0 auto;
		width: 1080px;
		display: flex;
		justify-content: space-between;
		.info{
			width: 408px;
			text-align: left;
			.logo{
				margin-bottom: 30px;
			}
			.about{
				margin-bottom: 45px;
				font-size: 16px;
			}
			.btns{
				margin-bottom: 60px;
				display: flex;
				justify-content: space-between;
			}
			.fnav{
				margin-bottom: 15px;
				ul{
					li{
						a{
							font-size: 12px;
							font-weight: 700;
							color: #f39800;
						}
						&::before{
							content: '\f138';
							padding: 0 5px 0 0;
							font-size: 11px;
							color: #f39800;
							font-weight: bold;
							font-family: 'Font Awesome 5 Free';
							line-height: 1;
							-webkit-font-smoothing: antialiased;
							-moz-osx-font-smoothing: grayscale;
						}
					}
				}
			}
			.copyright{
				font-size: 12px;
			}
		}
		.map{
			width: 580px;
			.googlemap{
				iframe{
					height: 378px;
				}
			}
		}
	}
}

.pagetop-btn-wrap {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 20;
}


/* Lower
------------------------------------------*/
.entry {
	margin: 0 0 70px;
}
.entry-content {}


/* heading */
.page-title-area{
	background: url(/images/default/page-title-bg.png) no-repeat center center / cover;
	.main{
		margin: 0 auto;
		width: 1080px;
		height: 240px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}
.page-title {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
}
.entry-title, .entry-content h2:not([class]) {
	margin: 0 0 25px;
	padding: 20px 18px;
	border-bottom: 5px solid #c17018;
	font-size: 30px;
	font-weight: bold;
	background: #f39800;
	color: #fff;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.entry-title:before, .entry-content h2:not([class]):before {
	content: '\f138';
	padding: 0 10px 0 0;
	font-weight: bold;
	font-size: 25px;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.entry-title a, .entry-content h2:not([class]) a {
	color: inherit;
}
.h3, .entry-content h3:not([class]) {
	margin: 0 0 25px;
	padding: 15px 40px;
	border-bottom: 6px dotted #4d9f34;
	color: #584a40;
	font-size: 26px;
	font-weight: bold;
	background: url(/images/default/entry-h3-bg.png) no-repeat 0 50%;
}
.h4, .entry-content h4:not([class]) {
	padding: 5px 0;
	font-size: 20px;
	font-weight: bold;
}
.h4:before, .entry-content h4:not([class]):before {
	content: '\f138';
	padding: 0 10px 0 0;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #ef8292;
}
.h5, .entry-content h5:not([class]) {
	padding: 5px;
	border-bottom: 1px dashed #f39800;
	font-weight: bold;
}


/* Breadcrumb
------------------------------------------*/
.breadcrumb-wrap {}
.breadcrumb {
	justify-content: flex-end;
	margin: 10px 0 80px;
	padding: 0;
	background: none;
	font-size: 12px;
}
.breadcrumb-item + .breadcrumb-item:before {
	content: '>';
	color: inherit;
}
.breadcrumb-item.home:before {
	content: '\f015';
	padding: 0 5px 0 0;
	font-size: 11px;
	font-weight: bold;
	color: #d85147;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.breadcrumb-item a{
	color: #d85147;
}


/* common-nav
------------------------------------------*/
.common-nav-list li {
	display: block;
	padding: 5px;
	border-bottom: 1px dashed rgba(186,186,186,0.5);
}
.common-nav-list li a {
	padding: 5px;
	font-size: 13px;
}

/* blog-nav
------------------------------------------*/
.blog-nav-group {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.blog-nav {width: 23%;}
.blog-nav-title{text-align: center;}

.blog-nav {
	margin: 0 0 20px 0;
	text-align: left;
}
.blog-nav-title {
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(186,186,186,0.5);
	font-size: 15px;
	font-weight: bold;
}
.blog-nav-list li a {
	position: relative;
	display: block;
	padding: 0.8rem 0.8rem 0.8rem 2.5rem;
	border-bottom: 1px solid rgba(186,186,186,0.5);
	font-size: 0.8rem;
	color: inherit;
}
.blog-nav-list li a::after {
	position: absolute;
	top: 1rem;
	left: 0.75rem;
	width: 1rem;
	height: 1rem;
	text-align: center;
	content: '\f105';
	font-size: 12px;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.blog-nav-list li li a {
	padding-left: 3.5rem;
}
.blog-nav-list li li a::after {
	left: 2.25rem;
}
.blog-nav-list li li li a {
	padding-left: 4rem;
}

.blog-nav .scroll-area{
	max-height: 200px;
}


/* Gallery
------------------------------------------*/
/* archive */
.gallery-list {
}
.gallery-list-item {
	padding: 0 15px 15px;
}
.gallery-list-img {
	margin-bottom: 3px;
}
.gallery-list-title {
	font-size: 13px;
}
.gallery-list-more {
	text-align: right;
}

/* single */
.gallery-detail {
	margin-bottom: 20px;
	text-align: center;
}
.gallery-detail-row {
}
.gallery-detail-col {
}
.gallery-detail-main {
}
.gallery-detail-sub {
}
.gallery-detail-sub li {
	padding: 0 5px 10px;
}

/* before-after */
.ba-detail {
	padding: 0 0px 20px;
}
.ba-detail-once {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.ba-detail-before,
.ba-detail-after {
	position: relative;
	width: 45%;
}
.ba-detail-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10%;
}
.ba-detail-arrow i {
	font-size: 30px;
}
.ba-detail-sub li {
	padding: 0 15px 15px;
}


/* Colors
------------------------------------------*/
/* arrows */
.slick-next::before,
.slick-prev::before {
	color: #fff;
}

/* dots */
.slick-dots li button::before {
	color: #ccc;
}
.slick-dots li button:hover::before,
.slick-dots li button:focus::before,
.slick-dots li.slick-active button::before {
	color: #666;
}

/* SimpleBar */
.scroll-area{
	overflow: auto;
}
.simplebar-track.simplebar-vertical{
	width: 11px;
}
.simplebar-track.simplebar-horizontal {
	height: 11px;
}
.scroll-area .simplebar-scrollbar::before {
	background: #aaa;
}

/* btns */
.btn-primary.disabled:hover,
.btn-primary:disabled:hover,
.btn-primary.active:focus,
.btn-primary:active:focus,
.btn-primary.active:hover,
.btn-primary:active:hover,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary {
	border-color: #202020;
	background-color: #2e2e2e;
	color: #fff;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.btn-secondary.active:hover,
.btn-secondary:active:hover,
.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary {
	border-color: #ccc;
	background-color: #fff;
	color: #333;
}

.btn-outline-primary.disabled:hover,
.btn-outline-primary:disabled:hover,
.btn-outline-primary.active:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:hover,
.btn-outline-primary:active:hover,
.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary {
	border-color: #202020;
	background-color: #fff;
	color: #202020;
}

/* pagination */
.page-link {
	border-color: #9e9e9e;
	color: #333;
}
.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover,
.page-link:focus,
.page-link:hover {
	border-color: #999999;
	background-color: #9e9e9e;
	color: #fff;
}
