@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	共通css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /* M+ 1p　font-family: "Mplus 1p"; */
@import url(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css); /* Rounded M+ 1c　font-family: "Rounded Mplus 1c"; */
@import url(//fonts.googleapis.com/earlyaccess/hannari.css); /* はんなり明朝　font-family: "Hannari"; */
@import url(//fonts.googleapis.com/earlyaccess/kokoro.css); /* こころ明朝　font-family: "Kokoro"; */
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css); /* さわらび明朝　font-family: "Sawarabi Mincho"; */
@import url(//fonts.googleapis.com/earlyaccess/sawarabigothic.css); /* さわらびゴシック　font-family: "Sawarabi Gothic"; */
@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /* ニコモジ　font-family: "Nico Moji"; */
@import url(//fonts.googleapis.com/earlyaccess/nikukyu.css); /* ニクキュウ　font-family: "Nikukyu"; */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css); /* Noto Sans Japanese　font-family: "Noto Sans Japanese"; */




/* ================================================================================

	サイトスタイル

================================================================================ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	 -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position:relative;
	color: #000000;
	background-color:#FFFFFF;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size:16px;
	font-weight:300;
	line-height:1.7;
	word-wrap:break-word;
}

#wrapper {
	position:relative;
	max-width:1920px;
	width:100%;
	margin:0 auto;
	min-height:100vh;
	display:block;
	overflow:hidden;
}

h1{
	margin:0;
	font-weight:300;
}
h2, h3, h4 {
	margin:0;
	font-weight:700;
}

img {
	vertical-align:bottom;
	-webkit-backface-visibility: hidden;
}


/* リンク：透過アクション付 */
a{
	color:#ff0000;
	opacity:1;
	transition-property:color,opacity;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
a:hover{
	color:#ff6666;
	opacity:0.6;
}

a img{
	opacity:1;
	transition-property:opacity;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
a:hover img{
	opacity:0.6;
}





/* ================================================================================

	display:none

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* SP改行消し */
	.br-pc {
		display: none;
	}
	/* SPコンテンツ消し */
	.pc_none {
		display: none;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none{
		display: none;
	}
	.pc_foot{
		display: none;
	}
	.pc_foot_navigation ul{
	display: none;
	}

}





/* ================================================================================

	フロート回り込み解除 clearfix

================================================================================ */

.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	line-height: 0px;
	visibility: hidden;
	content: ".";
	overflow: hidden;
	float: none;
}
.clearfix {
	display: block; /* for IE8 */
}





/* ================================================================================

	エディター共通設定

================================================================================ */

p{
	margin-bottom:16px;
}
p:last-of-type{
	margin-bottom:0;
}

strong,b{
	font-weight:700;
}
big{
	font-size:larger;
}
small{
	font-size:smaller;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.aligncenter {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.alignleft {
		float: left;
	}

	.alignright {
		float: right;
	}

	img.alignright {
		display: inline-block;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 16px;
		margin-left: 24px;
	}

	img.alignleft {
		display: inline-block;
		margin-top: 0px;
		margin-right: 24px;
		margin-bottom: 16px;
		margin-left: 0px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* youtube siteorigin */
	.youtube-player{
		width:100%;
		height:280px;
		margin-top:16px;
	}

	/* エディターで画像の下に隙間ができるの解除 */
	img + br {
		display:none;
	}
}





/* ================================================================================

	PC表示左右入れ替え

================================================================================ */


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.pc_lr {
		display: block !important;
		overflow: auto;
	}
	.pc_lr > div:nth-of-type(1) {
		float: right;
	}
	.pc_lr > div:nth-of-type(2) {
		float: left;
	}
}





/* ================================================================================

	その他

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#wrapper {
		border-top:5px solid #91dbb7;
	}
}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body{
		font-size:14px;
		
	}
	img {
		max-width: 100%;
		margin: 0 auto;
		display: block;
	}
	p {
		font-size: 14px;
	}
}





/* ================================================================================

	PCヘッダー

================================================================================ */
@media (min-width: 768px) {

	header{
		position:relative;
		max-width:1920px;
		width:100%;
	}


	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display:none;
	}
	.pc_h1 {
		position:relative;
		max-width:1920px;
		width:100%;
		height:0;
		margin:0 auto;
		text-align:right;
	}
	.pc_h1 h1 {
		font-size: 10px;
		color: ;
		padding: 4px 8px 0px 0px;
		transform: translate(0px,0px);
		-webkit-transform: translate(0px,0px);
		-ms-transform: translate(0px,0px);
		color: #7BB9B0;
	}
	.head_pc{
		width:1100px;
		margin:0 auto;
	}
	
	.logo_pc{
		margin: 33px 0 0 0;
		padding:0 0 0 0;
		margin-left:50%;

	}
	.logo_pc img{
		position:absolute;
		margin-left: -240px;
	}
	.head_information{
		width: 550px;
		margin: 0 0 0 50%;
		padding: 4px 0 0 285px;
		font-family: "heisei-mincho-stdn";
		color:#3e976b;
		text-align:right;
	}
	
	.head_contact{
		margin: 0 8px 0 0;
		padding:0 0 0 0;
		font-size:12px;
		text-align:right;
	}
	.head_tel{
		margin: 0 0 0 0;
		padding:0 0 0 0;
	}
	.head_address{
		margin: -2px 8px 0 0;
		padding:0 0 0 0;
		font-size:11px;
		text-align:right;
	}
	.head_banner{
		margin: 6px 0 0 -48px;
		padding:0 0 0 0;
		width:308px;
		  letter-spacing: -.4em; /* 文字間を詰めて隙間をなくす */
	}
	.head_banner li{
		display:inline-block;
		margin: 0 0px 0 4px;
		padding:0 0 0 0;
		letter-spacing: normal; /* 文字間を元に戻す */
		 font-size:12px; /* フォントサイズ0になっているので指定する */
	}

	/* グローバルナビゲーション
	----------------------------------------------- */
	.pc_navigation ul{
		margin: 0 auto;
		width: 1056px;
		padding: 6px 0 0 3px;
		 font-size:0;
	}
	.pc_navigation li{
		display:inline-block;
	}






}





/* ================================================================================

	SPヘッダー

================================================================================ */
@media (max-width: 767px) {

	header{
		position:relative;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display:none;
	}
	.sp_h1 {
		background-color:#FFFFFF;
		padding:8px;
		position:relative;
		z-index:-1;
		display:none;
	}
	.sp_h1 h1 {
		font-size: 12px;
		position:relative;
		z-index:-1;
	}
	.sp_head{
		position:fixed;
		margin: 0vw 0 0 0;
		background-color:#FFFFFF;
		z-index:9;
	}
	.sp_head li{
		display:inline-block;
		vertical-align:top;
	}
	.li_splogo{
		width: 56vw;
	}
	.sp_logo{
	
	}
	.sp_logo img{
		margin: 2vw 0 0 1vw;
		padding:0 0 0 0;
	}
	.li_sptel{
		width:13vw;
	}
	.sp_tel_head{

	}
	.sp_tel_head img{
		margin:0 0 0 1.2vw;
		padding:0 0 0 0;
	}
	.li_spmap{
		width:13vw;
	}
	.sp_map_head{
	
	}
	.sp_map_head img{
		margin:0 0 0 0;
		padding:0 0 0 0;
	}
	.li_spnavi{

	}
	.sp_navi{

	}
	#toggle{

	}
	.sp_main{
		padding: 9.9vw 0 0 0;
		margin: 0vw 0 0 0;

	}
	.sp_message{
		background-color:#57c690;
		 padding: 3vw 3vw 3vw 3vw;
		margin: 3.2vw 0 0 0;
		font-family: "heisei-mincho-stdn";
		color:#FFFFFF;
		text-align:center;
	}



	/* グローバルナビゲーション
	------------------------------------------- */




}





/* ================================================================================

	フッター

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer {
		position:relative;
		background-color:#FFFFFF;
	}
	.pc_foot_navigation{
		width:100%;
		background-color:#6ad3a0;
		padding:0 0 0 0;
	}
	.pc_foot_navigation ul{
		width: 1233px;
		margin: 0 auto;
		padding:0 0 0 0;
		clear: both;
		font-size: 0;
		text-align: center;
	}
	.pc_foot_navigation li{
		display:inline-block;
		display: inline-block;
		vertical-align: top;
	}
	
	
	
	.foot_clm{
		padding: 31px 0 0px 0;
		color:#4ab682;
	}
	.foot_clm ul{
		padding:+6px 0 0 0;
		width:975px;
		margin:0 auto;
	}
	.foot_clm li{
		padding:0 0 0 0;
		display:inline-block;
		vertical-align:top;
	}
	.foot_logo{
		padding:0 0 0 0;	
		width: 374px;
		position:absolute;
	}
	.foot_logo img{
		width:100%;
	}
	.fot_info_base{
		margin: 8px 0 11px 388px;
		padding:0 0 0 0;
	}
	.foot_info_01{
		padding:0 0 0 0;
		font-family: "heisei-mincho-stdn";
		margin:0 0 0 0;
		font-size:10px;	
	}
	
	.foot_tel{
		padding:0 0 0 0;
		margin:0 0 0 0;
		width:200px;	
	}
	.foot_tel img{
		width:100%;
		margin:0 0 0 0;
	}
	.foot_info02{
		padding:0 0 0 0;
		font-family: "heisei-mincho-stdn";
		margin:0 0 0 0;
		font-size:10px;		
	}
	.shinryo_foot{
		padding:0 0 0 0;	
	
	}
	.foot_biko{
		padding:0 0 0 0;	
		font-size:11px;
	}
	
	.foot_map{
		padding: 20px 0 0 11px;
		width:360px;
	
	}
		.foot_map img{
		width:100%;
		margin:0 0 0 0;
	}
	
	
	
	.table-b {
			border-collapse: collapse;
			width: 100%;
			border: 1px solid #b6e4cd;
			font-size: 12px;
			margin: 0 0 0 0;
			text-align: left;
			font-family: "dnp-shuei-mgothic-std";
	}
	.table-b th {
		border: 1px solid #b6e4cd;
		padding: 10px;
		font-size:18px;
		text-align:center;
		font-family: "dnp-shuei-mgothic-std";
	}
	.table-b td {
		border: 1px solid #b6e4cd;
		padding: 10px;
		color: #666;
		background-color:#FFFFFF;
		text-align:center;
		font-size:18px;
		color:#228f58;
		font-family: "dnp-shuei-mgothic-std";
	}
	.table-b th.koi{
		background-color:#65c194;
		color:#FFFFFF!important;
	}
	.table-b th.koi_midashi{
		background-color:#65c194;
		color:#FFFFFF!important;
		font-size: 21px;
	}
	.table-b th.usui{
		background-color:#b9ebd3;
		color:#228f58;
	}	
	
	


	/* SP用フッターリンク */
	.f_navi_sp{
		display:none;
	}


	/* 【固定ページ】フッター：基本情報 */
	.f_kotei{
		position:relative;
	}
	.f_kotei .panel-grid{
		display:block !important;
	}


	/* シェアボタン */
	footer .addtoany_shortcode > div{
		display:none;
	}


	/* コピーライト */
	.f_copy{
	padding:0 0 15px 0;
	}
	.f_copy p{
		font-size:11px;
		color:#4ab682;
		text-align:center;
	}
	.sp_foot{
	display:none;
	}
	

}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	footer {
		position:relative;
	}

	footer .panel-grid{
		margin:0 auto !important;
	}
	footer .panel-grid-cell{
		margin:0 auto !important;
	}
	footer .so-panel{
		margin:0 auto !important;
	}




	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.f_navi_sp ul{
		margin:0 auto;
		overflow:auto;
		padding:20px 3% 24px;
	}
	.f_navi_sp ul li{
		float:left;
		width:48%;
		padding:6px 8px;
		border-bottom:1px solid #000000;
	}
	.f_navi_sp ul li:nth-of-type(2n-1){
		margin-right:2%;
	}
	.f_navi_sp ul li:nth-of-type(2n){
		margin-left:2%;
	}
	.f_navi_sp ul li a{
		display:block;
		font-size:14px;
		text-decoration:none;
	}
	/* ボタンが奇数の場合
	.f_navi_sp ul li:nth-of-type(2n){
		margin-right:2%;
	}
	.f_navi_sp ul li:nth-of-type(2n-1){
		margin-left:2%;
	}
	.f_navi_sp ul li:first-child{
		float:none;
		width:100%;
		margin:0;
	}
	*/

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi_sp ul{
		margin:0 auto;
		overflow:auto;
		padding:0 0 14px;
		padding-top:20px;
	}
	.f_navi_sp ul li{
		float:left;
		width:50%;
	}
	.f_navi_sp ul li:nth-of-type(2n-1){
		width:50%;
		padding-right: 1px;
	}
	.f_navi_sp ul li a{
		background-color: #000000;
		color: #ffffff ;
		display: block;
		font-size: 14px;
		font-weight:700;
		text-decoration: none;
		padding: 12px 0;
		margin-bottom: 1px;
		text-align:center;
	}
	.f_navi_sp ul li a:hover{
		background-color: #222222;
	}
	*/
	/* ボタンが奇数の場合
	.f_navi_sp ul li:first-child{
		width:100%;
	}
	.f_navi_sp ul li:nth-of-type(2n){
		width:50%;
		padding-right: 1px;
	}
	*/





	/* 【固定ページ】フッター：基本情報 */
	.f_kotei{
		position:relative;
		width:100%;
		margin:0 auto;
	}
	.f_kotei .panel-grid{
		display:block !important;
	}


	/* シェアボタン */
	footer .addtoany_shortcode > div{
		text-align:center;
		display:block;
		padding:8px 0;
	}


	/* コピーライト */
	.f_copy{
		padding:8px 0;
	}
	.f_copy p{
		font-size:11px;
		text-align:center;
	}
		.foot_logo{
		padding: 7vw 0 2vw 0;	

	}
	.foot_logo img{
		width:70%;
		height: 0%;
		margin:0 auto;
	}
	.fot_info_base{
		margin: 0 auto;
		padding:0 0 0 0;
		width:64%;
	}
	.foot_info_01{
		padding:0 0 0 0;
		font-family: "heisei-mincho-stdn";
		margin:0 0 0 0;
		color:#4ab682;
		font-size:10px;	
	}
	
	.foot_tel{
		padding:0 0 0 0;
		margin:0 0 0 0;
		color:#4ab682;
	}
	.foot_tel img{
		width:100%;
		height: 0%;
		margin:0 0 0 0;
	}
	.foot_info02{
		padding:0 0 0 0;
		font-family: "heisei-mincho-stdn";
		margin:0 0 0 0;
		color:#4ab682;
		font-size:10px;		
	}


}





/* ================================================================================

	ページトップボタン

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page-top {
		position: fixed;
		z-index: 9999;
		right: 10px;
	}
	#page-top a {
		background: url(../img/pagetop_off.png) center top no-repeat;
		background-size:contain;
width: 70px;
height: 70px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
		opacity:1;
		background: url(../img/pagetop_on.png) center top no-repeat;
		background-size:contain;
	}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page-top {
		position: fixed;
		z-index: 9999;
		right: 8px;
	}
	#page-top a {
		background: url(../img/pagetop_off.png) center top no-repeat;
		background-size:contain;
width: 70px;
height: 70px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
		opacity:1;
		background: url(../img/pagetop_on.png) center top no-repeat;
		background-size:contain;
	}
		.shinryo_foot{
		padding:0 0 0 0;	
	
	}
	.foot_biko{
		padding:1vw 0 0 5vw;	
		font-size:2vw;
		color:#4ab682;
	}
	
	.foot_map{
		padding: 2vw 0 0 2vw;
		width:width: 97vw;;
	
	}
		.foot_map img{
		width:100%;
		margin:0 0 0 0;
	}
	
	
	
	.table-b {
			border-collapse: collapse;
			width: 90%;
			border: 1px solid #b6e4cd;
			font-size: 2vw;
			margin: 3vw auto 0;
			text-align: left;
			font-family: "dnp-shuei-mgothic-std";
	}
	.table-b th {
		border: 1px solid #b6e4cd;
		padding: 1vw;
		font-size:2vw;
		text-align:center;
		font-family: "dnp-shuei-mgothic-std";
	}
	.table-b td {
		border: 1px solid #b6e4cd;
		padding: 1vw;
		color: #666;
		background-color:#FFFFFF;
		text-align:center;
		font-size:2vw;
		color:#228f58;
		font-family: "dnp-shuei-mgothic-std";
	}
	.table-b th.koi{
		background-color:#65c194;
		color:#FFFFFF!important;
	}
	.table-b th.koi_midashi{
		background-color:#65c194;
		color:#FFFFFF!important;
		font-size: 2vw;
	}
	.table-b th.usui{
		background-color:#b9ebd3;
		color:#228f58;
	}
	
}





/* ================================================================================

	パンくずリスト

================================================================================ */
	#breadcrumb{
		padding:16px 0;
		background-color:transparent;
	}
	#breadcrumb > ul > li {
		font-size: 14px;
		display:inline-block;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 5px;
		content: '>';
	}
	#breadcrumb > ul > li > a {
	}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position:relative;
		max-width:1920px;
		width:100%;
		background:url(../img/) left top repeat;
	}

	#breadcrumb > ul{
		position:relative;
		max-width:1000px;
		width:100%;
		margin:0 auto;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		position:relative;
		background:url(../img/) left top repeat;
		background-size: ;
	}

	#breadcrumb > ul{
		position:relative;
		width:100%;
		padding:0 16px;
	}
}





/* ================================================================================

	ページネーション

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.wp-pagenavi{
		text-align:center;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.wp-pagenavi{
		float:none !important;
		font-size:12px !important;
	}
	.wp-pagenavi span,
	.wp-pagenavi a{
		display:block;
		float:left;
		margin-bottom:4px;
	}
}





/* ================================================================================

	Wp Lightbox Bank プラグイン

================================================================================ */
#lightGallery-outer{
	background-color:rgba(0,0,0,0.8) !important;
}





/* ================================================================================

	Addtoanyボタン

================================================================================ */
.addtoany_shortcode{
	padding-top:8px;
}