@charset "utf-8";

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/

.header_wrap {
	overflow: hidden;
}

#header {
	position: relative;
	padding: 0;
	background-color: #fff;
	height: 90px;
	z-index: 999;
}

.header_logo_area {
	position: fixed;
	z-index: 1000000;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 110px; */
	padding: 0;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0px 4px 5px -2px rgba(10,10,10,0.2);
}

h1.site_title {
	width: 26%;
	float: left;
	margin: 23px 0 0 2%;
}

h1.site_title a {
	display: inline-block;
}

h1.site_title a:hover {
	opacity: .7;
}

.global-nav {
	float: right;
	width: 67%;
	margin: 25px 0 27px 0;
}



@media only screen and (max-width: 1024px) {
	#header,
	.header_logo_area {
		height: 65px;
	}

	h1.site_title {
		height: 100%;
		float: none;
		display: flex;
		align-items: center;
	}

	.header_logo_area {
		position: fixed;
		z-index: 1000000;
		top: 0;
		left: 0;
		background-color: #fff;
		width: 100%;
		padding: 0;
		box-shadow: 0px 4px 5px -2px rgba(10,10,10,0.1);
	}

}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	h1.site_title {
		width: 50%;
		margin: 0 0 0px 2%;
	}

}



@media screen and (max-width : 767px) {
	#header {
		padding: 0;
		box-shadow: none;
		margin: 0;
	}

	.home #header {
		margin: 0;
	}

	.home .header_wrap {
		/* padding-bottom: 10px; */
	}

	.header_wrap {
		padding-bottom: 0;
	}

	h1.site_title {
		width: 75%;
		margin: 0 0 0 10px;
	}

	h1.site_title img {
		width: 100%;
	}

	.contact_area {
		display: none;
	}

}



/*--------------------------------------------------------------
	container・contents・rowの設定
--------------------------------------------------------------*/

#container {
	/*ページの大枠*/
	width: 100%;
}

.row {
	max-width: 1000px;
	margin: 0 auto;
}

.row_header {
	max-width: 1200px;
	margin: 0 auto;
}

.row_relative {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

#contents {
	/*ページの中枠*/
	padding: 0 0 30px;
	overflow: hidden;
}

.home #contents {
	/*ページの中枠*/
	padding: 0;
	overflow: hidden;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	.row,
	.row_header,
	.row_relative {
		padding: 0 15px;
	}

	#contents {
		/* padding: 60px 0 30px; */
	}

}


@media screen and (max-width : 767px) {
	.row,
	.row_header,
	.row_relative {
		padding: 0 15px;
	}

	#contents {
		/*ページの中枠*/
		padding: 0 0 30px;
	}

	.home #contents {
		/*ページの中枠*/
	}

}



/*--------------------------------------------------------------
	パンくずリスト
--------------------------------------------------------------*/

.breadcrumbs {
	margin: 0 auto 20px;
	padding-top: 2px;
}

.breadcrumbs span a,
.archive .breadcrumbs span a,
.category .breadcrumbs span a {
	font-size: 1.2rem;
	margin: 0;
	color: #51342f;
	display: inline-block;
}

.breadcrumbs span a span:hover {
	text-decoration: underline;
}
.single .breadcrumbs span,
.single .breadcrumbs span.post,
.blog .breadcrumbs span.post,
.archive .breadcrumbs span,
.archive .breadcrumbs span.archive,
.page .breadcrumbs span.post,
.search .breadcrumbs span.search {
	font-size: 1.2rem;
	margin: 0;
	display: inline-block;
	line-height: 1.5;
}

.breadcrumbs span.current-item {
	color: #25c2d7;
}

.breadcrumbs .fa-chevron-right {
	margin: 0 5px;
	font-size: 1.2rem;
	color: #aaa;
}

.breadcrumb a {
	/*パンくずリストのリンクの設定*/
	color: #000;
}

.breadcrumb a:hover,
.breadcrumb a:active {
	/*パンくずリストのリンクホバー時の設定*/
	color: #ccc;
}



@media screen and (max-width : 767px) {
	.breadcrumbs {
		margin: 0 auto 15px;
		padding: 3px 15px 0;
		line-height: 1.5;
	}

}



/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/

#main {

}

#sidebar {

}

.cat_main,
.search_main {
	width: 75%;
	float: right;
}

.cat_sidebar {
	width: 22%;
	float: left;
}



@media screen and (max-width : 767px) {
	#main {
		float: none;
		padding: 0;
		width: 100%;
	}

	.blog #main,
	.single #main {
		padding: 10px 0 0;
	}

	#sidebar {
		float: none;
		width: 100%;
	}

	.cat_main,
	.search_main,
	.cat_sidebar	{
		width: 100%;
		float: none;
	}

}



/*--------------------------------------------------------------
	mainvisu
--------------------------------------------------------------*/

.mainvisu {
	/*メイン画像の大枠*/
	width: 100%;
	height: 650px;
	margin: 0 auto;
	padding: 0;
	/*メイン画像の背景　削除もしくは変更*/
	background-color: #fff;
	background-image: none;
	background-position: none;
	background-size: none;
}

.slide_area,
.fs-main {
	/*スライダー*/
	position: relative;
	margin: 0 auto 0;
	border: none;
}

.my_slick {
	padding: 0;
	margin: 0;
	line-height: 0;
}

.my_slick .slick-slide img {
	display: block;
	width: 100%;
	margin: 0 auto;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	/*　画面サイズが768pxから1024pxまではここを読み込む　*/
	.mainvisu {
		/* padding: 60px 0 0; */
		width: 100%;
		height: unset;
		padding: 0;
		/* margin: 40px auto 0;*/
	}

}



@media screen and (max-width : 767px) {
	/*768以下の設定*/
	.mainvisu {
		/*メイン画像の大枠*/
		height: auto;
		margin: 0 auto;
	}

}



/*--------------------------------------------------------------
	post
--------------------------------------------------------------*/

ul.post-meta {
	padding: 0;
	margin: 0;
}

ul.post-meta li {
	list-style: none;
}

span.post-meta-key {
	display: block;
	text-align: center;
	font-size: 4.0rem;
	font-family: "TBUDGothic B";
	color: #fff;
	letter-spacing: .1em;
	line-height: 1.5;
}

.entry_header h1 {
	text-align: center;
	font-size: 40px;
	font-size: 4rem;
	font-weight: 400;
	color: #fff;
	margin: 0;
	letter-spacing: .1em;
	line-height: 1.2;
}

.entry_header h1 span {
	font-size: 24px;
	font-size: 2.4rem;
	color: #dfcdb3;
	letter-spacing: .1em;
	display: block;
	font-family: "aisha-latin";
	font-weight: 400;
	font-style: normal;
}

.entry_content {
	padding: 30px 0 0;
	/* width: 85%; */
	margin: 0 0 100px;
}

.blog .entry_content,
.single .entry_content,
.archive .entry_content {
	margin: 0 0 80px;
	padding: 30px 20px 0;
}

.single .entry_footer {
	margin: 0 0 30px;
}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	.entry_content {
		padding: 30px 15px 0;
		margin: 0 0 60px;
	}

}



@media screen and (max-width : 767px) {
	span.post-meta-key {
		font-size: 3.0rem;
		letter-spacing: .1em;
		line-height: 1.3;
	}

	.entry_header h1 {
		font-size: 2.8rem;
		letter-spacing: .1em;
		line-height: 1.2;
	}

	.entry_header h1 span {
		font-size: 1.8rem;
	}

	.entry_content {
		padding: 0;
		margin: 0 0 50px;
	}

	.blog .entry_content,
	.single .entry_content,
	.archive .entry_content {
		margin: 0 0 50px;
		padding: 0;
	}

}



/*--------------------------------------------------------------
	subvisu
--------------------------------------------------------------*/

.subvisu {
	width: 100%;
	/* max-height: 150px; */
	/* min-height: 150px; */
	background-image: url("../img/subvisu-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 50px 0;
}

.subvisu h1,
.single .subvisu h2,
.archive .subvisu h2,
.blog .subvisu h2 {
	text-align: center;
	font-size: 4rem;
	font-weight: 400;
	color: #fff;
	margin: 0;
	letter-spacing: .1em;
	line-height: 1.2;
}

.subvisu h1 span,
.single .subvisu h2 span,
.archive .subvisu h2 span,
.blog .subvisu h2 span {
	font-size: 2.4rem;
	color: #dfcdb3;
	letter-spacing: .1em;
	display: block;
	font-family: "aisha-latin";
	font-weight: 400;
	font-style: normal;
}



@media screen and (max-width : 767px) {
	.subvisu {
		padding: 35px 0;
	}

	.subvisu h1,
	.single .subvisu h2,
	.archive .subvisu h2,
	.blog .subvisu h2 {
		font-size: 2.8rem;
		letter-spacing: .1em;
		line-height: 1.2;
	}

	.subvisu h1 span,
	.single .subvisu h2 span,
	.archive .subvisu h2 span,
	.blog .subvisu h2 span {
		font-size: 1.8rem;
	}

}



/*--------------------------------------------------------------
	widget
--------------------------------------------------------------*/

.widget_title {
	text-align: center;
	background: #25c2d7;
	padding: 5px 0;
	font-size: 1.6rem;
	margin: 10px 0 10px;
	position: relative;
	color: #fff;
	cursor: pointer;
}

.widget ul {
	padding: 0 5px;
	margin: 0 0 20px;
}

.widget ul li {
	list-style: none;
	position: relative;
	border-bottom: 1px solid #eee;
}

.widget ul li::after {
	font-family: "Font Awesome 5 Free";
	content: '\f054';
	font-weight: 900;
	position: absolute;
	top: 30%;
	right: 5px;
	font-size: 1rem;
	color: #cccccc;
}

.widget ul li a {
	font-size: 1.4rem;
	display: block;
	color: #333;
	padding: 8px 15px 8px 5px;
}

.widget_recent_entries ul li a {
	font-size: 1.3rem;
	line-height: 1.5;
	padding: 10px 15px 10px 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.widget ul li a:hover {
	background: #fefbf0;
}

.widget ul li a.current,
.widget ul li a.current ul.children li {
	background: #fefbf0;
}

.widget ul li ul.children {
	border-top: 1px solid #eee;
	padding: 0;
	margin: 0;
}

.widget ul li ul.children li {
	border-bottom: 1px solid #eee;
}

.widget ul li ul.children li a {
	font-weight: 400;
	font-size: 1.3rem;
	padding: 4px 0 4px 20px;
}

.widget ul li ul.children li:last-child {
	border-bottom: none;
}

.widget ul li.current ul.children,
.widget ul li.current ul.children li {
	background: #fff;
}



@media screen and (max-width: 767px) {
	.widget_title {
		margin: 10px 0 15px;
		padding: 10px 0;
		border-radius: 30px;
	}

	.widget span {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		height: 100%;
		width: 35.5px;
	}

	.widget span::before,
	.widget span::after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		background-color: #fff;
		content: '';
		margin: auto;
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
	}

	.widget span::before {
		height: 1px;
		width: 15px;
	}

	.widget span::after {
		height: 15px;
		width: 1px;
	}

	.widget .qa-open span::after {
		opacity: 0;
	}
	.widget ul.widget_cat,
	.widget_archive ul,
	.widget_recent_entries ul {
		display: none;
	}

}



/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/

.footer {
	background: #25c2d7;
	padding: 0 0 5px;
	overflow: hidden;
	position: relative;
}

.page-top {
	position: fixed;
	bottom: 150px;
	right: 0;
	z-index: 999;
}

.page-top a {
	display: block;
	width: 60px;
	height: 55px;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.0;
	border-radius: 5px 0 0 5px;
	padding-top: 10px;
	background-color: #85bb48;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transition: .3s all;
}

.page-top a:hover {
	background-color: #6d9c37;
}

.footer_conts {
	padding: 50px 0 0;
}

.footer_conts .inner_wrap {
	overflow: hidden;
	/* margin-bottom: 40px; */
}

.footer_conts .inner_wrap .left {
	float: left;
	width: 33%;
}

.footer_conts .inner_wrap .right {
	float: right;
	width: 60%;
}

.office_address {
	margin: 0 0 20px;
}

.footer h2 {
	margin: 0;
}

.footer h2 a {
	display: inline-block;
}

.footer h2 a:hover {
	opacity: .7;
}

.footer h2 img {
	display: block;
}

.office_address p {
	line-height: 1.7;
	margin: 5px 0 10px;
	font-size: 1.4rem;
	color: #fff;
}

.office_address p span {
	font-size: 1.7rem;
}

.office_address p a {
	display: inline-block;
	color: #fff;
}

.footer_nav_area {

}

.footer_nav_wrap {
	padding-top: 5px;
	margin: 0 0 30px;
}

.footer_nav_wrap ul {
	display: flex;
	margin: 0 auto;
	width: 100%;
	/* height: 38px; */
	/* overflow: hidden; */
	list-style: none;
	padding: 0 10px 0;
	position: relative;
	/* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
	box-sizing: border-box;
	overflow: hidden;
}

.footer_nav_wrap ul li {
	float: left;
	width: 20%;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	text-align: center;
}

.footer_nav_wrap ul li a {
	color: #fff;
	display: block;
	padding: 5px 0;
	font-size: 1.6rem;
}

.footer_nav_wrap ul li a:hover::after,
.footer_nav_wrap ul li.current a::after {
	position: absolute;
	bottom: 0;
	left: 48%;
	content: "";
	width: 4px;
	height: 4px;
	line-height: 4px;
	background-color: #fff;
	border-radius: 50%;
}

.footer_nav_wrap ul li a span {
	text-decoration: none;
	color: #fff;
	display: block;
	font-size: 1.7rem;
	text-align: center;
	line-height: 1.3;
}

.footer_nav_wrap ul li a span.menu_ttl_txt {
	/* opacity: 0; */
	color: #775e3b;
	font-family: "aisha-latin";
	font-weight: 400;
	font-style: normal;
	font-size: 1.9rem;
	letter-spacing: .1em;
	line-height: 1;
}

.footer_nav_wrap ul li.current {
		color: #fff;
}

.footer_link ul {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 30px;
	padding: 0;
}

.footer_link ul li {
	list-style: none;
	float: left;
	margin-right: 30px;
	background: #fff;
	width: 30%;
	text-align: center;
	font-size: 1.6rem;
	border-radius: 5px;
}

.footer_link ul li:last-child {
	margin-right: 0;
}

.footer_link ul li a {
	display: block;
	color: #111;
	padding: 10px 0;
}

.footer_link ul li a:hover {
	color: #85bb48;
}

.copyright_area {
	text-align: center;
	color: #fff;
}

.copyright_area a {
	display: inline-block;
	color: #fff;
}

.copyright_area a:hover {
	opacity: .7;
}



@media screen and (max-width : 1024px) {
	.footer.active {
		/* 電話ボタンがある場合 */
		margin: 0 0 60px;
	}

}



@media screen and (min-width: 768px) and ( max-width: 1024px) {
	.footer h2 {
		text-align: center;
	}

	.footer_conts .inner_wrap .left {
		float: none;
		width: 100%;
	}

	.footer_conts .inner_wrap .right {
		float: none;
		width: 100%;
	}

	.office_address p {
		margin: 5px 0 30px;
		font-size: 1.5rem;
		text-align: center;
	}

}



@media screen and (max-width : 767px) {
	.page-top {
		bottom: 70px;
	}

	.page-top a {
		font-size: 10px;
		font-size: 1.0rem;
		width: 45px;
		height: 40px;
		padding-top: 5px;
	}

	.footer_top {
		padding: 20px 0;
	}

	.footer_top ul {
		margin: 0 0 20px;
	}

	.footer_conts {
		padding: 30px 0 0;
	}

	.footer_conts .inner_wrap {
		margin-bottom: 0;
	}

	.footer_conts .inner_wrap .left,
	.footer_conts .inner_wrap .right {
		float: none;
		width: 100%;
	}

	.footer h2 {
		text-align: center;
	}

	.office_address {
		padding: 0;
		margin: 0 0 30px;
	}

	.office_address p {
		line-height: 1.5;
		margin: 5px 0 10px;
		text-align: center;
	}

	.footer_link ul li {
		margin-right: 20px;
	}

}



/*--------------------------------------------------------------
	original class
--------------------------------------------------------------*/

.required {
	/*注目箇所のフォントカラー*/
	color: #ff0000;
}

.display_sp {
	display: none;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}



@media screen and (max-width : 1024px) {
	/*スマホ用設定*/
	.display_pc {
		display: none;
	}

	.display_sp {
		display: block;
	}

}



/*--------------------------------------------------------------
	google map
	GoogleMapをレスポンシブにする設定
--------------------------------------------------------------*/

@media screen and (max-width : 767px) {
	.ggmap,
	.iframe_wrap {
		/*GoogleMapを入れるときはclass名にggmapを入れてください*/
		position: relative;
		overflow: hidden;
		height: 0;
		padding-top: 30px;
		padding-bottom: 56.25%;
	}

	.ggmap iframe,
	.ggmap object,
	.ggmap embed,
	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

}
