@charset "UTF-8";
/* CSS Document */

/*
共通
WordPress対策・全ページ余白なし
*/

* {
	margin: 0;
	padding: 0;
}
 
body {
	margin: 0;
	padding: 0;
	color: #5A5959;
	background: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
 
img {
	vertical-align: bottom;
	max-width: 100%;
}
 
h1,h2,h3,h4,h5 {
	
}

p {
	color: #5A5959;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

font,span {
	
}
 
a {
	text-decoration: none;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/*Googleフォント*/
/*Noto Serif JP（日本語見出し）*/
.noto-serif-jp {
	font-family: "Noto Serif JP", serif;
	font-style: normal;
}

/*EB Garamond（英語見出し）*/
.eb-garamond {
	font-family: "EB Garamond", serif;
	font-style: normal;
}

/*共通*/
/*PC*/
@media only screen and (min-width: 1025px) {
	.pc { 
		display: block !important; 
	}
	
	.smp { 
		display: none !important; 
	}
	
	p {
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 26px;
		text-align: left;
	}
	
	/*電話番号をクリックしても自動発信しない*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		padding: 120px 0 0 0;
		overflow: hidden;
	}
 
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	.pc { 
		display: none !important; 
	}
	
	.smp { 
		display: block !important; 
	}
	
	p {
		font-size: 15px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 22px;
		text-align: left;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 0 0;
		overflow: hidden;
	} 
	
}

/*共通 メインビジュアル*/
/*PC*/
@media only screen and (min-width: 1025px) {
	#common_mv {
		position: relative;
		width: 100%;
		height: 556px;
	}
	
	#common_mv h1 {
		z-index: 1;
		position: absolute;
		bottom: 94px;
		left: 10%;
		width: 1000px;
		height: auto;
	}
	
	#common_mv h1 font {
		display: table;
		margin: 0 auto 5px 0;
		padding: 12px 25px 14px 20px;
		font-size: 24px;
		font-weight: 400;
		letter-spacing: 2px;
		line-height: 24px;
		text-align: left;
		color: #fff;
		background: #368D4A;
	}
	
	#common_mv h1 span {
		display: table;
		padding: 20px 30px 20px 30px;
		font-size: 46px;
		font-weight: 500;
		letter-spacing: 5px;
		line-height: 46px;
		text-align: left;
		color: #495031;
		background: #fff;
	}
	
	#common_mv .img {
		z-index: 0;
		display: none;
		position: relative;
		width: 100%;
		height: 556px;
		overflow: hidden;
	}
	
	#common_mv .img img {
		display: block;
		position: relative;
		width: 100%;
		height: 556px;
		object-fit: cover;
		object-position: center;
		animation: zoomOut 2s ease-out forwards;
	}
	
	@keyframes zoomOut {
		0% {
			transform: scale(1.2);
		}
		100% {
			transform: scale(1);
		}
	}
	
	.fadeIn {
		animation-name: fadeInAnime;
		animation-duration: 3s;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadeInAnime {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	#common_mv {
		position: relative;
		width: 100%;
		height: 245px;
	}
	
	#common_mv h1 {
		z-index: 1;
		position: absolute;
		bottom: 33px;
		left: 5%;
		width: 350px;
		height: auto;
	}
	
	#common_mv h1 font {
		display: table;
		margin: 0 auto 2px 0;
		padding: 6px 12px 7px 10px;
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 12px;
		text-align: left;
		color: #fff;
		background: #368D4A;
	}
	
	#common_mv h1 span {
		display: table;
		padding: 10px 15px 10px 15px;
		font-size: 23px;
		font-weight: 500;
		letter-spacing: 3px;
		line-height: 23px;
		text-align: left;
		color: #495031;
		background: #fff;
		white-space: nowrap;
	}
	
	#common_mv .img {
		z-index: 0;
		display: none;
		position: relative;
		width: 100%;
		height: 245px;
		overflow: hidden;
	}
	
	#common_mv .img img {
		display: block;
		position: relative;
		width: 100%;
		height: 245px;
		object-fit: cover;
		object-position: center;
		animation: zoomOut 2s ease-out forwards;
	}
	
	@keyframes zoomOut {
		0% {
			transform: scale(1.2);
		}
		100% {
			transform: scale(1);
		}
	}
	
	.fadeIn {
		animation-name: fadeInAnime;
		animation-duration: 3s;
		animation-fill-mode: forwards;
		opacity: 0;
	}
	@keyframes fadeInAnime {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}
}

/*共通 404ページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	#er {
		position: relative;
		width: 800px;
		height: auto;
		margin: 200px auto 200px auto;
	}
	
	#er h1 {
		font-size: 40px;
		font-weight: 400;
		letter-spacing: 3px;
		line-height: 40px;
		text-align: center;
		color: #48961E;
	}
	
	#er h1 font {
		position: relative;
		margin-right: 20px;
		font-size: 70px;
		letter-spacing: 7px;
		line-height: 70px;
	}
	
	#er h2 {
		margin: 20px auto 42px auto;
		font-size: 20px;
		font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
		font-weight: bold;
		letter-spacing: 3px;
		line-height: 20px;
		text-align: center;
		color: #495031;
	}
	
	#er p {
		line-height: 28px;
		text-align: center;
		color: #5A5959;
	}
	
	#er p a {
		font-weight: bold;
		color: #368D4A;
	}
	
	#er p a:hover {
		text-decoration: underline;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	#er {
		position: relative;
		width: 100%;
		height: auto;
		margin: 60px auto 70px auto;
	}
	
	#er h1 {
		font-size: 30px;
		font-weight: 400;
		letter-spacing: 2px;
		line-height: 30px;
		text-align: center;
		color: #48961E;
	}
	
	#er h1 font {
		position: relative;
		margin-right: 13px;
		font-size: 45px;
		letter-spacing: 3px;
		line-height: 45px;
	}
	
	#er h2 {
		margin: 10px auto 46px auto;
		font-size: 15px;
		font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 15px;
		text-align: center;
		color: #495031;
	}
	
	#er p {
		width: 290px;
		margin: 0 auto 0 auto;
		line-height: 22px;
		text-align: left;
		color: #5A5959;
	}
	
	#er p a {
		font-weight: bold;
		color: #368D4A;
		text-decoration: underline;
	}

}