/* 全体 */
* {
	margin: 0;
	padding: 0;
	}

body, body > header, body > section {
	width: 100%;
	height: 100%;
	opacity: 20;
	}

body {
	color: #3E603B;
	font-family: "Hiragino UD Sans Rd W3 JIS2004";
	background-color: rgba(242,243,243,1.00);
    }

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
	}

ul,ol,li {
	list-style-type: none;
	}

a:link,
a:visited {
	text-decoration:none;
	}

p{
	line-height: 1.45em;
	}

a{
	color: #3E603B;
	}

a:hover,
a:active {
	color: #036eb8;
	outline: 0;
	}

h1,h2{
	font-family: "Hiragino UD Sans Rd W5 JIS2004";
	}

h3{
	font-family: "Hiragino UD Sans Rd W5 JIS2004";
	}

.ask{
	display: inline-block;
	}

.center{
	text-align: center;
	display: block;
	margin: 0px auto;
	}

@media only screen and (min-width: 769px){
body {
	background-color: rgba(242,243,243,1.00);
    }
	
.PcMainWidth{
	width: 90%;
	margin-left: 10%;
	background-color: #fff;
	}
}

.MainWidth{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
	}

.WorkWidth{
	max-width: 1150px;
	margin: 0 auto;
	width: 95%;
	}

.Width1000{
	max-width: 1000px;
	margin: 0 auto;
	width: 90%;
	}

.ContactWidth{
	max-width: 800px;
	margin: 0 auto;
	width: 90%;
	}

/*マウスオーバー時にヌルっと拡大*/
.imgWrap {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	}

.imgWrap img {
	display: block;
	transition-duration: 0.8s;	/*変化に掛かる時間*/
	}

.imgWrap img:hover {
	transform: scale(1.2);	/*画像の拡大率*/
	transition-duration: 0.8s;	/*変化に掛かる時間*/
	}

/*トップへ戻るボタン*/
#topBtn{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 40px;
	background: #036eb8;
	border-radius: 50%;
	mix-blend-mode: multiply;
	}

#topBtn a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
	transition: .5s;
	border-radius: 50%;
	}

#topBtn a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f106';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	}

#topBtn a:hover{
	background-color: rgba(0,123,161,0.80);
	border-radius: 50%;
	}

.wrapper {
	position:relative; /*topBtnの親要素に指定*/
	}




/*ページナビ*/
@media only screen and (max-width: 1024px){
.wp-pagenavi {
	padding-right: 10px;
	}
}

.wp-pagenavi {
	max-width: 1200px;
    margin: 20px auto 100px;
    text-align: right;
	}

.wp-pagenavi a, .wp-pagenavi span {
	color: #3E603B;
	background-color: rgba(255,255,255,0.50);
	border: solid 1px #3E603B;
	padding: 8px 10px;
	margin: 0 1px;
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
	}

.wp-pagenavi a:hover{
    color:#FFF; 
    background-color:#999; 
    border-color:#999;
    }
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #3E603B;
	border-color: #3E603B;
	font-weight: bold;
    }




/* コンタクトページ */
.ContactText{
	max-width: 500px;
	width: 90%;
	margin: 80px auto 40px;
	font-size: 0.9em;
	}

.Contactinfo{
	max-width: 500px;
	width: 90%;
	border: 1px solid #3E603B;
	text-align: center;
	margin: auto;
	padding: 30px 10px;
	}

.Contactinfo h2{
	margin: 10px auto;
	}

.ContactText2{
	font-size: 0.8em;
	}

.mailform{
	margin-top: 50px;
	}

.privacyLink{
	text-align: center;
	font-size: 0.85em;
	}

/* プライバシーポリシー */
.privacy{
	margin: 70px auto 50px;
	}

.privacy h3{
	font-size: 1.3em;
	line-height: 1.4em;
	margin-bottom: 10px;
	}

.privacy p{
	line-height: 1.5em;
	margin-bottom: 50px;
	}

.privacyBottom{
	margin-bottom: 100px;
	}

.PrivacyContact{
	font-size: 0.85em;
	margin-bottom: 80px;
	}



body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
  transition: opacity .8s ease;
}

body.fadeout::after {
  opacity: 1;
}

body.fadeout article{
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
}