@charset "UTF-8";

/* ＰＣ用共通ＣＳＳ */

.sp_only{ display: none; }

/*--------------------------------------------------
**************************************************
ヘッダー
**************************************************
--------------------------------------------------*/

header{
	position: fixed;
	top: 0px;
	width: 100%;
	height: 60px;
	padding-top: 11px;
	z-index: 1000;
	transition: background 0.5s;
	box-sizing: border-box;
}
#header.sub_page.header-color {
	background: #008042;
	opacity: 0.95;
}
#header.header-color {
	background: #008042;
	opacity: 0.95;
}
.text_head {
	width: 255px;
	height: 34px;
	margin: auto;
	color: #ffffff;
	font-size: 12px;
	font-family: '小塚ゴジックPr6N';
}
.text_head img {
	transition: all 0.3s ease;
}
.text_head img:hover {
	opacity: 0.7;
}
nav {
	width: calc(100% - 255px);
}

ul.menu-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
ul.menu-container li {
}
ul.menu-container li .main_menu {
	position: relative;
	display: inline-block;
	padding: 7px 15px;
	color: #fff;
	font-size: 18px;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: text-shadow 0.3s;
}
@media screen and (max-width: 900px) {
	ul.menu-container li .main_menu {
		font-size: 14px;
	}
}
.header-color ul.menu-container li .main_menu {
	text-shadow: 2px 2px 2px rgba(0,0,0,0);
}
ul.menu-container li .main_menu a {
	padding: 0px;
}
ul.menu-container li .main_menu:hover {
	background: rgb(0 255 196 / 32%);
}
ul.menu-container li .main_menu a:hover {
	background: none;
}
ul.menu-container .sub_menu {
	position: fixed;
	display: none;
	top: 60px;
	left: 0px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 10px 2.5px 0px 12.5px;
	background: rgba(240,240,240,0.97);
	box-shadow: 2px 2px 2px #0080421a;
	z-index: 10000;
	z-index: 10000;
	overflow: hidden;
	box-sizing: border-box;
}

ul.menu-container .sub_menu li a{
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}

ul.menu-container .sub_menu.is-open{
	opacity: 1;
	pointer-events: auto;
	display: block;
}

ul.menu-container .sub_menu.is-open li a{
	pointer-events: auto;
}

ul.menu-container .sub_menu.is-open li a:hover {
	color: #008042;
}


/*ボックス全体*/
.accbox {
	width: 100%;
	margin: 0 auto;
}

/*ラベル*/
.accbox label {
	display: block;
	margin: 1.5px 0;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
	background :#008042;
	opacity: 0.3;
}

/*チェックは隠す*/
.accbox input {
	display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
	width: 250px;
	height: auto;
	opacity: 1;
	text-align: left;
}
header ul.sub-menu1 {
	margin: 0 auto;
	width: 100%;
	background: rgba(255,255,255,0.7);
}
header li.next1 {
	position: relative;
	display: inline-block;
	width: 250px;
	height: 150px;
	letter-spacing: normal;
	margin: 10px 10px 10px 0;
	overflow: hidden;
}
header ul.sub_menu a span.title {
	position: absolute;
	display: block;
	width: 100%;
	height: 40px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	line-height: 40px;
	font-size: 13px;
	color: #fff;
	margin: auto;
	text-align: center;
	font-size: 18px;
	z-index: 10300;
	transform: all;
	-ms-transform: all;
	-webkit-transform: all;
	-o-transform: all;
	-moz-transform: all;
	transition: 0.3s;
}
header ul.sub_menu a:hover span.title {

}
header ul.sub_menu a::before {
	content: "";
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 0px;
	height: 0px;
	border-top: 5px solid transparent;
	border-left: 5px solid transparent;
	border-right: 5px solid rgba(255,255,255,0.8);
	border-bottom: 4px solid rgba(255,255,255,0.8);
	opacity: 0.7;
	transition: 0.3s;
	z-index: 2;
}
header ul.sub_menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40px;
	background: rgba(0,128,66,0.9);
	transition: height 0.06s linear,background 0.3s linear;
	z-index: 1;
}
header ul.sub_menu a:hover::after {
	content: "";
	height: 100%;
	background: rgba(0,128,66,0.6);
}

header ul.menu-container .sub_menu li a:hover   span.title {
	position: absolute;
	width: 100%;
	height: 40px;
	bottom: calc(50% - 20px);
	font-size: 20px;
}
header ul.sub_menu img {
	position: absolute;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transition: 0.3s;
}

.accshow ul.sub-menu1 li {
	border-bottom: dashed 1px #999
}
.accshow ul.sub-menu1 li:last-child {
	border: none;
}
.accshow ul.sub-menu1 a {
	color: #333;
	transition: all 0.3s ease;
}
.accshow ul.sub-menu1 a:hover {
	color: #008042;
	font-weight: bold;
	opacity: 0.7;
}

/* スクロール前【 ロゴ 】トップ */

header #logo.header_scroll{
}

.header_wrap{
	display: flex;
	max-width: 1200px;
	width: calc(100% - 60px);
	margin: 0 auto;
	transition: 0.5s;
}
@media screen and (max-width: 900px) {
	.header_wrap{
		width: calc(100% - 30px);
	}
}

.header_wrap.transform{
	background: #008042;
	padding: 20px;
}
.text_head img {
	width: 70%;
}

nav#s-navi {
	position: absolute;
	right: 0;
	top: 0;
}
#nav-drawer {
	position: relative;
	padding-right: 20px;
}
@media screen and (max-width: 920px) {
	.text_head img {
		width: 80%;
	}

	#nav-drawer {
		position: absolute;
		top: 0;
		right: 0px;
		margin-top: auto;
		text-align: right;
	}
}


/*--------------------------------------------------
**************************************************
フッター
**************************************************
--------------------------------------------------*/

footer {
	position: relative;
	width: 100%;
	margin-top: 50px;
	top: 0;
	left: 0;
	color: #444;
}

footer .cont_inner {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
}
a.Twitter {
	padding: 0 20px;
}

/* フッター左側 */
footer .cont_inner .cont_l {
	width: 50%;
	top: 0;
	left: 0;
	margin: 0 auto;
	text-align-last: left;
}

footer .f_logo {
	opacity: 0.7;
}
footer .f_logo img {
	transition: all 0.3s ease;
}
footer .f_logo:hover img {
	opacity: 0.5;
}

/* フッター右側 */

.pc_dsp {
	display: flex;
	justify-content: end;
}
.sp_dsp {
	display: none;
}
footer .cont_inner .cont_r {
	font-size: 15px;
	text-align-last: left;
}

footer .cont_inner .cont_r .footer_menu_box {
	padding: 10px 0px 10px 40px;
	border-left: 1px solid #aaa;
}

.footer_menu {
}

.footer_menu li.menut  {
	position: relative;
}


.footer_menu li.menut a::before {
	content: "";
	position: absolute;
	display: block;
	width: 3px;
	height: 3px;
	border-bottom: solid 1px #aaa;
	border-right: solid 1px #aaa;
	transform: rotate(-45deg);
	margin-left: -20px;
	margin-top: 6px;
}
.footer_menu li.next a::before {
	content: "-";
	position: absolute;
	display: block;
	width: 3px;
	height: 3px;
	margin-left: -20px;
	color: #aaa;
}
.footer_menu .sub_menu {
	margin-left: 17px;
}

.footer_menu .sub_menu li.next {
	position: relative;
	margin-top: 10px;
}

.footer_menu .sub_menu li.next a ::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: 0 auto;
	width: 4px;
	height: 4px;
	border-bottom: solid 1px currentColor;
	border-right: solid 1px currentColor;
	transform: rotate(-45deg);
	margin-left: -7px;
	margin-top: 5px;
}

.footer_menu a,
.footer_profile a {
	color: #333;
	padding-bottom: 3px;
	border-bottom: 1px solid transparent;
	transition: border 0.3s linear;
}

.footer_menu a:hover {
	opacity: 1;
	text-decoration: none;
	transition: border 0.3s linear;
	border-bottom: 1px solid #888;
	padding-bottom: 3px;
	transition: border 0.1s linear;
}

footer .cont_inner .cont_r .footer_menu>li:nth-child(n+2) {
	margin-top: 10px;
}

footer .cont_inner .cont_r .footer_menu_box:nth-child(n+2) {
	margin-left: 55px;
}

footer .cont_inner .cont_r .footer_profile {

}

footer .cont_inner .cont_r .footer_profile .prof_text {
}

footer .cont_inner .cont_r .footer_profile .tel_box {
}

footer .cont_inner .cont_r .footer_profile .sns {
	margin-top: 10px;
}

#pageup img{
	width: 90px;
}
.prof_text {
	margin-top: 30px;
}
.company_name {
	font-size: 25px;
	color: #171c60;
	margin-bottom: 30px;
}
span.company_ad {
	line-height: 2.2;
}
.tel_box {

}
.page_top {
	position: fixed;
	bottom: 50px;
	right: 20px;
	opacity: 0;
	z-index: 1000;
	pointer-events: none;
	transition: 0.5s;
}
.page_top.show {
	opacity: 1;
	pointer-events: auto;
}
.page_top a {
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	background: rgba(50,152,103,0.9);
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	box-sizing: border-box;
	transition: 0.3s;
}
.page_top a:hover {
	opacity: 0.8;
}
.page_top img {
	width: 70%;
}
span.page_up {
	position: absolute;
	width: 100%;
	height: 16px;
	top: 30px;
	text-align: center;
	color: #fff;
	font-size: 10px;
	font-family: "Noto Sans JP",sans-serif;
	font-weight: bold;
	z-index: 99999;
}
span.page_up::after {
	content: "";
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	top: 26px;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: rgba(255,255,255,0.6);
	border-bottom: solid 4px #fff;
	border-left: solid 4px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	box-sizing: border-box;
}
.Greenway {
	background-color: #008042;
	color: #fff;
	text-align: center;
	line-height: 60px;
	margin-top: 100px;
	opacity: 0.8;
}

@media screen and (max-width: 1200px) {
	footer .f_logo img{
		margin: 0 auto;
	}
	.company_name {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	footer .cont_inner {
		display: unset;
		width: 100%;
		margin: 0 auto;
	}
	footer .cont_inner .cont_l {
		text-align-last: center;
		width: 100%;
		padding: 30px 0;
	}
	span.company_ad {
		line-height: 2;
	}


	footer .cont_inner .cont_r {
		display: table;
		width: 100%;
		margin: 0 auto;
	}
	footer .cont_inner .cont_r .footer_menu_box {
		display: table-cell;
	}
	.pc_dsp {
		display: flex;
		text-align: center;
		justify-content: center;
	}

}

/*--------------------------------------------------
**************************************************
パンくず
**************************************************
--------------------------------------------------*/

#breadcrumb {
	width: 100%;
	max-width: 1200px;
	margin: 50px auto;
	padding: 0;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 18px;
	box-sizing: border-box;
}
#breadcrumb a{
	color: #2a8865;
	font-size: 18px;
}
#breadcrumb span{
	font-size: 18px;
}


/*--------------------------------------------------
**************************************************
  ページナビ共通
**************************************************
--------------------------------------------------*/
.wp-pagenavi{
	width: calc(100% - 100px);
	margin: 0 auto 80px auto;
}

.wp-pagenavi a, .wp-pagenavi span{
	padding: 5px 16px!important;
	border: none!important;
	color: #fff;
}

.wp-pagenavi a, .wp-pagenavi span.pages{
	background: #aad4c0;
}

.wp-pagenavi a{
	background: #aad4c0;
}

.wp-pagenavi span.current{
	background: #0d864c;
}


/*--------------------------------------------------
**************************************************
全ページ共通レイアウト
**************************************************
--------------------------------------------------*/

body {
}

/* メインコンテンツ */
#container{
	position: relative;
	width: 100%;
	height: 100%;
}

section{
	overflow: hidden;
	font-family: "Noto Sans JP",sans-serif;
}

#wrapper {
	height: auto;
	margin-top: 30px;
	margin-bottom: 100px;
	padding: 0px;
	box-sizing: border-box;
}

section#contact {
	padding: 80px 0 50px 0;
	width: 100%;
	margin: 0 auto;
	background: url(../imgs/common/back_color.png) center center / cover no-repeat;
}

.contact_wrap {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.contact_title {
	font-size: 36px;
	font-family: "Noto Sans JP",sans-serif;
	font-weight: bold;
}

.contact_content {
	font-size: 21px;
	padding-top: 50px;
	font-weight: bold;
}
.contact_form {
	padding-bottom: 20px;
}
.contact_text {
	font-family: "Noto Sans JP",sans-serif;
	font-weight: bold;
}

.banner{
	display: table;
	width: 100%;
	top: 0;
	left: 0;
	margin: 20px auto;
}
.banner a {
	transition: all 0.3s ease;
}
.banner a:hover{
	opacity: 0.5;
}
.banner img {
	margin: 0 auto;
}
.banner_tel {
	display: table-cell;
	line-height: 50px;
	font-size: 20px;
	font-weight: bold;
}
.banner_mail {
	display: table-cell;
	line-height: 50px;
	font-size: 20px;
	font-weight: bold;
}
.banner_tel a img{
	transition: 0.3s;
}
.banner_mail a img{
	transition: 0.3s;
}
.banner_tel a:hover img{
	opacity: 0.7;
}
.banner_mail a:hover img{
	opacity: 0.7;
}

@media screen and (max-width: 1149px) {
	span.contact_br {
		white-space: pre;
	}
	.banner img {
		width: 80%;
	}
}









/*--------------------------------------------------
**************************************************
パーツ共通
**************************************************
--------------------------------------------------*/

/* パーツ共通 */
h2{
	font-weight: normal;
}

h2 .en{
	display: inline-block;
	width: 100%;
	font-size: 35px;
	letter-spacing: 0;
}

h2 .jp{
	display: inline-block;
	width: 100%;
	font-size: 14px;
	letter-spacing: 0.14em;
	margin-top: 12px;
}

#submain_contents{
	width: 100%;
	height: 300px;
	background: #008042;
}

.subtop_texts {
	position: absolute;
	width: 100%;
	top: 125px;
	color: #fff;
	text-align: center;
}
span.catch_ens{
	font-size: 36px;
}
span.catch_jps {
	font-size: 16px;
}

/* リンクボタン */
.lnk_btn {
	-webkit-transition: .3s;
	transition: .3s;
}

.lnk_btn {
	display: inline-block;
	width: 340px;
	height: 80px;
	line-height: 80px;
	border: 1px solid #444;
	font-size: 15px;
	letter-spacing: 0.14em;
	text-align: center;
}

.lnk_btn:hover {
	background: #444;
}

.lnk_btn span {
	display: inline-block;
	padding-right: 80px;
	background: url(../imgs/common/btn_arrow_black.svg) right center/61px 6px no-repeat;
}

.lnk_btn:hover span {
	color: #fff;
	background-image: url(../imgs/common/btn_arrow_white.svg);
}

.lnk_btn.btn_black {
	border: 1px solid #fff;
}

.lnk_btn.btn_black:hover {
	background: #fff;
}

.lnk_btn.btn_black span {
	color: #fff;
	background: url(../imgs/common/btn_arrow_white.svg) right center/61px 6px no-repeat;
}

.lnk_btn.btn_black:hover span {
	color: #444;
	background-image: url(../imgs/common/btn_arrow_black.svg);
}

/* 矢印が無い場合 */

.lnk_btn.lnk_na span {
	display: inline-block;
	padding-right: 0px;
	background-image: none;
}

.lnk_btn.lnk_na:hover span {
	color: #fff;
	background-image: none;
}

/* メインコンテンツ・フッター部画像 */

.main_footer{
	display: block;
	width: 100%;
}

.main_footer img{
	width: 100%;
}

/*--------------------------------------------------
**************************************************
お問い合わせ
**************************************************
--------------------------------------------------*/

.com_sec_contact {
	background-color: #444;
	color: #fff;
	padding: 95px 20px;
	text-align: center;
}

.com_sec_contact .lnk_btn {
	width: 400px;
	-webkit-transition: .3s;
	transition: .3s;
	margin: 50px auto 0;
	border-color: #fff;
}

.com_sec_contact .text {
	letter-spacing: 0.14em;
	margin-top: 50px;
}

/*--------------------------------------------------
**************************************************
カスタム投稿タイプ
**************************************************
--------------------------------------------------*/

#list_title{
	width: 100%;
	height: 357px;
}

#list_title h2{
	font-weight: normal;
	letter-spacing: 0.2em;
	padding-top: 110px;
}

#list_title h2 .catch_jp{
	display: block;
	margin-bottom: 2px;
	font-size: 18px;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	text-align: center;
}

#list_title h2 .catch_icon{
	display: block;
	text-align: center;
	margin-bottom: 6px;
}

#list_title h2 .catch_en{
	display: block;
	font-size: 24px;
	text-align: center;
}

#detail_title{
	width: 100%;
	height: 357px;
}

#detail_title h2{
	font-weight: normal;
	letter-spacing: 0.2em;
	padding-top: 110px;
}

#detail_title h2 .catch_jp{
	display: block;
	margin-bottom: 2px;
	font-size: 18px;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	text-align: center;
}

#detail_title h2 .catch_icon{
	display: block;
	text-align: center;
	margin-bottom: 6px;
}

#detail_title h2 .catch_en{
	display: block;
	font-size: 24px;
	text-align: center;
}


/*--------------------------------------------------
**************************************************
サイドバー・サブコンテンツ
**************************************************
--------------------------------------------------*/

#side{
}
