@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}

/*リキッドの場合に使用*/
/*@media only screen and (min-width: 768px){
	768px-1280px 画面幅1280px閲覧で1px=0.1rem可変
	html{
			font-size: 0.782vw;
		}
}
@media only screen and (max-width: 767px){
	-767px 画面幅375px閲覧で1px=0.1rem可変
	html{
			font-size: 2.67vw;
		}
}
@media only screen and (min-width: 1280px){
	1280px- 画面幅1280pxで1px=0.1rem固定
	html{
		font-size: 62.5%;
	}
}*/


/*font関係*/
/*基本的にはfont-familyはreset.cssにプリセットから引用*/

/*サイト全体のベースフォントがゴシック体の場合ここから*/
/*例外で明長体を使う場合.font-mを付与*/
/*body{
	-webkit-text-size-adjust: 100%;
	font-family:
	'Helvetica Neue',
	'Helvetica',
	'Hiragino Sans',
	'Hiragino Kaku Gothic ProN',
	'Arial',
	'Yu Gothic',
	'Meiryo',
	sans-serif;
	font-weight: 400;
	color: #000000;
}
.font-m{
	font-family: 'Times New Roman',
	'YuMincho',
	'Hiragino Mincho ProN',
	'Yu Mincho',
	'MS PMincho',
	serif;
}
.bold{
	font-weight: 700;
}*/
/*サイト全体のベースフォントがゴシック体ここまで*/

/*サイト全体のベースフォントが明長体の場合ここから*/
/*例外でゴシック体を使う場合.font-gを付与*/
body{
	-webkit-text-size-adjust: 100%;
	font-family:
	'Hiragino Mincho ProN',
	'Times New Roman',
	'YuMincho',
	'Yu Mincho',
	'MS PMincho',
	serif;
	color: #312929;
	background-color: #FEFDF5;
}
.font-g{
	font-family:
	'Helvetica Neue',
	'Helvetica',
	'Hiragino Sans',
	'Hiragino Kaku Gothic ProN',
	'Arial',
	'Yu Gothic',
	'Meiryo',
	sans-serif;
}
.bold{
	font-weight: 800;
}
/*サイト全体のベースフォントが明長体ここまで*/

/*Googleフォントここから*/
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Regular.otf') format('truetype');
	font-weight: 400;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Light.otf') format('truetype');
	font-weight: 300;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Medium.otf') format('truetype');
	font-weight: 500;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Noto_Sans_JP';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Noto_Sans_JP/NotoSansJP-Bold.otf') format('truetype');
	font-weight: 700;
}
@font-face{
	/*フォントの名前*/
	font-family: 'Roboto';
	/*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
	src: url('../font/Roboto/Roboto-Bold.ttf') format('truetype');
	font-weight: 700;
}
.g_font{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 400;
}
.g_light{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 300;
}
.g_mid{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 400;
}
.g_bold{
	font-family:
	'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;
}
.g_bold02{
	font-family:
	'Roboto',
	sans-serif;
	font-weight: 700;
}
/*Googleフォントここまで*/
* {
	box-sizing: border-box;
}

.svg{
	position: relative;
}
.svg svg{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}

body,
main,
header,
footer{
	min-width: 1280px;
}
@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 320px;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}
/*@media only screen and (max-width: 767px) {
	body{
		min-width: initial;
	}
}*/


/*headerここから*/
header{
	width: 100%;
	height: 116px;
	display: block;
	position: relative;
	z-index: 100;
}
@media only screen and (max-width: 767px){
	header{
		box-shadow: none;
		height: 77px;
		padding: 0 15px 0 8px;
	}
}
header .header01{
	width: 1180px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media only screen and (min-width: 1401px) {
	header .header01{
		width: 100%;
	}
}
@media only screen and (max-width: 767px){
	header .header01{
		width: 100%;
		padding: 0;
		background-color: transdrop;
		transition: all .5s;
	}
}
header .header01 h1{
	width: 185px;
	height: auto;
	margin: 15px 0 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 h1{
		width: 23%;
		max-width: 82px;
		position: relative;
		z-index: 0;
		transition: all 0s;
		margin-top: 5px;
	}
	header .header01 h1.active{
		z-index: 100;
		transition: all 0s .5s;
	}
}
header .header01 h1 a{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
header .header01 h1 a img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
/*header .top_banner{
	width: 520px;
	height: auto;
	display: block;
	border-radius: 0 0 7px 7px;
	overflow: hidden;
}
header .top_banner img{
	width: 100%;
	height: auto;
	display: block;
}*/
header .top_banner{
	width: 520px;
	height: auto;
	background-color: #FFEA72;
	border-radius: 0 0 7px 7px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 13px 26px;
	box-sizing: border-box;
}
header .top_banner .b_inner01{
	width: 350px;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}
header .top_banner .b_inner01 .b_text01{
	font-size: 17px;
	line-height: 26px;
	color: #006975;
}
header .top_banner .b_inner01 .b_inner01_01{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
header .top_banner .b_inner01 .b_inner01_01 .b_text02{
	font-size: 39px;
	line-height: 49px;
	letter-spacing: 0.026em;
	color: #006975;
	margin-right: 7px;
}
header .top_banner .b_inner01 .b_inner01_01 .b_text03{
	font-size: 17px;
	line-height: 22px;
	color: #006975;
}
header .top_banner img{
	width: 85px;
	height: auto;
	margin-left: 20px;
	display: block;
}
@media only screen and (max-width: 767px) {
	header .top_banner{
		width: 80%;
		max-width: 259px;
		height: auto;
		background-color: #FFEA72;
		border-radius: 0 0 7px 7px;
		display: block;
		padding: 0;
}
	header .top_banner img{
		width: 100%;
		height: auto;margin-left: 0;
		display: block;
	}
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	display: block;
	background-color: #006975;
}
footer .footer01{
	width: 1180px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 93px 0 37px;
	text-align: center;
	position: relative;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		width: 90%;
		min-width: 320px;
	}
}
footer .footer01 .f_logo{
	width: 157px;
	height: auto;
	display: block;
	position: absolute;
	top: -76px;
	left: 0;
	right: 0;
	margin: auto;
}
footer .footer01 .f_logo img{
	width: 100%;
	height: auto;
	display: block;
}
footer .footer01 .f_text01{
	font-size: 23px;
	line-height: 33px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3px;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .f_text01{
		flex-direction: column;
	}
}
footer .footer01 .f_text01 .tel_link{
	font-size: 35px;
	line-height: 39px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .f_text01 .tel_link{
		pointer-events: initial;
	}
}
footer .footer01 .f_text01 .tel_link img{
	width: 22px;
	height: auto;
	margin-left: 11px;
	display: block;
}
footer .footer01 .f_text02{
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 8px;
}
footer .footer01 .f_text03{
	font-size: 12px;
	line-height: 23px;
	color: #fff;
	margin-bottom: 46px;
}
footer .footer01 .f_text03 span{
	font-size: 13px;
}
footer .footer01 .f_nav{
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 34px;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .f_nav{
		flex-flow: wrap;
	}
}
footer .footer01 .f_nav li{
	width: auto;
	height: auto;
	margin-left: 23px;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .f_nav li{
		width: auto;
		height: auto;
		margin: 0 10px 10px;
	}
}
footer .footer01 .f_nav li a{
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}
footer .footer01 .f_nav li:first-of-type{
	margin-left: 0;
}
@media only screen and (max-width: 767px) {
	footer .footer01 .f_nav li:first-of-type{
		margin-left: 10px;
	}
}
footer .footer01 .f_sub_nav{
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
}
footer .footer01 .f_sub_nav li{
	width: auto;
	height: auto;
	padding: 0 20px;
	border-right: 1px solid #FFFFFF;
}
footer .footer01 .f_sub_nav li:first-of-type{
	border-left: 1px solid #FFFFFF;
}
footer .footer01 .f_sub_nav li a{
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}
footer .footer01 .text04{
	font-size: 11px;
	line-height: 21px;
	color: #fff;
}
/*footerここまで*/


main{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 767px) {
	main{
		margin-top: -42px;
	}
}

/*includeここから*/



/*.paginationここから*/
.wp-pagenavi {
	width: 80%;
	height: auto;
	margin: 100px auto;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		max-width: 335px;
		margin: 80px auto;
	}
}
.wp-pagenavi span{
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #cccccc;
	/*font-family: 'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;*/
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi span{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
		border-radius: 4px;
	}
}
.wp-pagenavi a{
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #cccccc;
	/*font-family: 'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;*/
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi a{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
		border-radius: 4px;
	}
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	border: 1px solid transparent;
}
.wp-pagenavi .extend{
	display: none;
}
.wp-pagenavi a:hover{
	color: #ffffff;
	border: 1px solid #000000;
	background-color: #000000;
	opacity: 1;
}
.wp-pagenavi .current{
	width: 50px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 9px;
	text-align: center;
	color: #ffffff;
	border: 1px solid #000000;
	background-color: #000000;
	border-radius: 6px;
	/*font-family: 'Noto_Sans_JP',
	sans-serif;
	font-weight: 700;*/
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi .current{
		width: 35px;
		height: 35px;
		font-size: 11px;
		line-height: 35px;
		border-radius: 4px;
	}
}
/*.paginationここまで*/

/*includeここまで*/