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

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

* {
	margin: 0;
	padding: 0;
}
 
body {
	margin: 0;
	padding: 0;
	color: #343434;
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
}
 
img {
	vertical-align: bottom;
	max-width: 100%;
}
 
h1,h2,h3,h4,h5 {
	
}

p {
	color: #343434;
	font-family: "Noto Sans JP", sans-serif;
}

font,span {
	
}
 
a {
	text-decoration: none;
	font-family: "Noto Sans JP", sans-serif;
}

/*Googleフォント*/
/*Poppins（英語見出し）*/
.poppins {
	font-family: "Poppins", sans-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: 400;
		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: 12px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 18px;
		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) {
	#post_mv {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#post_mv h1 {
		text-align: center;
	}
	
	#post_mv h1 big,
	#post_mv h1 small {
		display: block;
		overflow: hidden;
		opacity: 0;
	}
	
	#post_mv h1 big span {
		display: block;
		position: relative;
		margin-bottom: 12px;
		font-size: 48px;
		font-weight: 600;
		letter-spacing: 4px;
		line-height: 48px;
		color: #44AD96;
	}
	
	#post_mv h1 small span {
		display: block;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 1px;
		text-align: center;
		color: #121212;
	}
	
	#post_mv h1 big span,
	#post_mv h1 small span {
		opacity: 0;
		transform: matrix(1, 0, 0, 1, 0, 100);
		transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	}
	
	#post_mv h1.is-animated big,
	#post_mv h1.is-animated small {
		opacity: 1;
	}
	
	#post_mv h1.is-animated big span,
	#post_mv h1.is-animated small span {
		opacity: 1;
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
 
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	#post_mv {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#post_mv h1 {
		text-align: center;
	}
	
	#post_mv h1 big,
	#post_mv h1 small {
		display: block;
		overflow: hidden;
		opacity: 0;
	}
	
	#post_mv h1 big span {
		display: block;
		position: relative;
		margin-bottom: 6px;
		font-size: 27px;
		font-weight: 600;
		letter-spacing: 2px;
		line-height: 27px;
		color: #44AD96;
	}
	
	#post_mv h1 small span {
		display: block;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.5px;
		text-align: center;
		color: #121212;
	}
	
	#post_mv h1 big span,
	#post_mv h1 small span {
		opacity: 0;
		transform: matrix(1, 0, 0, 1, 0, 100);
		transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	}
	
	#post_mv h1.is-animated big,
	#post_mv h1.is-animated small {
		opacity: 1;
	}
	
	#post_mv h1.is-animated big span,
	#post_mv h1.is-animated small span {
		opacity: 1;
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
 
}

/*404ページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*メインビジュアル*/
	.er_mv {
		padding: 160px 0 60px 0;
	}
	
	/*コンテンツ*/	
	#er {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 170px auto;
	}
	
	#er p {
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 36px;
		text-align: center;
		color: #121212;
	}
	
	#er p a {
		font-size: 16px;
		font-weight: 700;
		color: #44AD96;
	}
	
	#er p a:hover {
		text-decoration: underline;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*メインビジュアル*/
	.er_mv {
		padding: 85px 0 35px 0;
	}
	
	/*コンテンツ*/	
	#er {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 85px auto;
	}
	
	#er p {
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 22px;
		text-align: center;
		color: #121212;
	}
	
	#er p a {
		font-size: 12px;
		font-weight: 700;
		color: #44AD96;
		text-decoration: underline;
	}
}