@charset  "UTF-8";

/* ------------------------------------
//  ベース
// ----------------------------------*/
body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, Meiryo, "メイリオ", sans-serif;
	font-size: 16px;
	line-height: 1.875;
	text-align: center;
	color: #000;
	position: relative;
}
strong,
em { font-weight: bold; }
strong { font-size: 1.1rem; }
small {
	line-height: 1.2em;
}

/* ------------------------------------
//  共通パーツ
// ----------------------------------*/
.pc {}
.sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
}

/* ------------------------------------
//  リンク設定
// ----------------------------------*/
/* 基本 */
a { transition: all 0.05s linear 0s; }
a:link, a:visited { color: #0A7300; text-decoration: underline; }
a:hover, a:active { color: #84B980; }
@media screen and (max-width: 767px) {
a { transition: none; }
a:link, a:visited, a:hover, a:active { color: #0A7300; text-decoration: underline; }
}
/* HOMEのみ */
.home .content_wrap,
.home .content_wrap a:link,
.home .content_wrap a:visited { color: #FFF; text-decoration: none; }
.home .content_wrap a:hover,
.home .content_wrap a:active { text-decoration: underline; }
@media screen and (max-width: 767px) {
/* HOMEのみ */
.home .content_wrap,
.home .content_wrap a:link,
.home .content_wrap a:visited,
.home .content_wrap a:hover,
.home .content_wrap a:active { color: #FFF; text-decoration: none; }
}
/* 黒文字→グリーン */
header a:link, header a:visited,
footer a:link, footer a:visited { color: #000; text-decoration: none; }
header a:hover, header a:active,
footer a:hover, footer a:active { color: #0A7300; }
@media screen and (max-width: 767px) {
/* 黒文字→グリーン */
header a:link, header a:visited,
footer a:link, footer a:visited,
header a:hover, header a:active,
footer a:hover, footer a:active { color: #000; text-decoration: none; }
}
/* 画像リンク */
a img { opacity: 1; transition: opacity 0.1s linear 0s; }
a img:hover { opacity: 0.7; }
@media screen and (max-width: 767px) {
/* 画像リンク */
a img { opacity: 1; transition: none; }
a img:hover { opacity: 1; }
}

/* ------------------------------------
//  colorbox.js 設定
// ----------------------------------*/
.cboxTitle {
	display: none !important;
}

/* ------------------------------------
//  ヘッダー
// ----------------------------------*/
header {
	background: url('../img/common/bg_header.png') repeat-x center bottom;
	width: 100%;
	height: 110px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}
.home header {
	background: url('../img/common/bg_header_home.png') repeat-x center bottom;
}
	/* header_wrap */
	.header_wrap {
		display: table;
		width: 100%;
		min-width: 1080px;
		padding: 13px 13px 0 15px;
	}
		/* ロゴ */
		.header_logo {
			display: table-cell;
			vertical-align: middle;
			width: 212px;
			text-align: left;
		}
			.header_logo img {
				width: 100%;
				height: auto;
			}
	/* 開閉メニュー */
		/* タップすると開閉メニューを閉じる背景 */
		.shade {
			position: fixed;
			left: 0;
			top: 0;
			z-index: 1;
			width: 100%;
			height: 100%;
			cursor: pointer;
			background-color: #333;
			background-color: rgba(0,0,0,.5);
		}
		/* グローバルナビの開閉ボタン */
		.swt_gnavi { display: none; }
		/* グローバルナビ */
		.menu-gnavi-container {
			display: table-cell;
			vertical-align: middle;
			text-align: right;
		}
			.menu-gnavi-container ul {
				margin-bottom: 3px;
				font-size: 0px;
				line-height: 1em;
			}
				.menu-gnavi-container ul li {
					display: inline-block;
					border-left: 1px solid #111;
					padding: 0 16px;
					font-size: 15px;
					line-height: 1em;
				}
				.menu-gnavi-container ul li:first-child {
					border-left: none;
				}
					.menu-gnavi-container ul li a {
						padding: 5px 0;
					}
					.menu-gnavi-container ul li.current-menu-item a {
						border-bottom: 4px solid #0A7300;
					}
					.menu-gnavi-container ul li a:link,
					.menu-gnavi-container ul li a:visited {
						color: #000;
					}
					.menu-gnavi-container ul li a:hover,
					.menu-gnavi-container ul li a:active {
						border-bottom: 4px solid #0A7300;
						color: #0A7300;
					}
					.home .content_wrap .menu-gnavi-container ul li a:link,
					.home .content_wrap .menu-gnavi-container ul li a:visited {
						color: #000;
					}
					.home .content_wrap .menu-gnavi-container ul li a:hover,
					.home .content_wrap .menu-gnavi-container ul li a:active {
						border-bottom: 4px solid #0A7300;
					}
@media screen and (max-width: 767px) {
header {
	background-image: none;
	background-color: #FFF;
	box-shadow: 0 0px 3px rgba(0,0,0,0.35);
	width: 100%;
	height: auto;
}
.home header {
	background-image: none;
	background-color: #FFF;
}
	/* header_wrap */
	.header_wrap {
		min-width: 100%;
		padding: 5px;
	}
		/* ロゴ */
		.header_logo {
			width: auto;
			padding-left: 2px;
		}
			.header_logo img {
				width: 165px;
				height: auto;
			}
	/* 開閉メニュー */
		/* グローバルナビの開閉ボタン */
		.swt_gnavi {
			display: table-cell;
			vertical-align: middle;
			width: 40px;
			height: 40px;
			text-align: center;
			cursor: pointer;
		}
			.swt_gnavi .fa {
				margin: 0;
				font-size: 32px;
				line-height: 40px;
			}
		/* グローバルナビ */
		.menu-gnavi-container {
			position: fixed;
			top: 0;
			left: -350px;
			z-index: 1;
			width: 82%;
			max-width: 350px;
			height: 100%;
			background-color: #0A7300;
			background-image: url('../img/common/bg_gnavi_sp.jpg');
			background-repeat: repeat;
			background-position: center bottom;
			background-size: cover;
			box-shadow: 0 0 8px rgba(0,0,0,0.6);
			overflow: auto;
			text-align: left;
		}
			.menu-gnavi-container ul {
				padding: 10px 8px;
				margin: 0;
			}
				.menu-gnavi-container ul li {
					display: block;
					border-left: none;
					border-bottom: 1px solid rgba(255,255,255,0.2);
					padding: 0;
					font-size: 18px;
					line-height: 22px;
				}
					.menu-gnavi-container ul li a {
						display: block;
						padding: 16px 5px;
						pading: 0;
					}
					.menu-gnavi-container ul li a:before {
						content: "\f138";
						font-family: "FontAwesome";
						margin-right: 5px;
					}
					.menu-gnavi-container ul li.current-menu-item a {
						border-bottom: none;
					}
					.menu-gnavi-container ul li a:link,
					.menu-gnavi-container ul li a:visited {
						color: #FFF;
					}
					.menu-gnavi-container ul li a:hover,
					.menu-gnavi-container ul li a:active {
						border-bottom: none;
						color: #FFF;
					}
					.home .content_wrap .menu-gnavi-container ul li a:link,
					.home .content_wrap .menu-gnavi-container ul li a:visited {
						color: #FFF;
					}
					.home .content_wrap .menu-gnavi-container ul li a:hover,
					.home .content_wrap .menu-gnavi-container ul li a:active {
						border-bottom: none;
					}
}
/* ------------------------------------
//  2023-1-26英語ヘッダー
// ----------------------------------*/
.english_navi2{
	display: none !important;
}

.english_navi1{
	display: none !important;
}

/* ------------------------------------
//  コンテンツ領域
// ----------------------------------*/
/* 全体を囲う */
.content_wrap {
	position: relative;
}
.home .content_wrap {
	border: 13px solid #FFF;
	width: 100%;
	height: 100%;
	min-height: 720px;
	position: relative;
}
	/* 下層のコンテンツボックス */
	.main_content {
		width: 860px;
		min-height: 300px;
		margin: 40px auto 0;
		text-align: left;
	}
@media screen and (max-width: 767px) {
/* 全体を囲う */
.content_wrap {
	padding: 50px 0 0 0;
}
.home .content_wrap {
	border: none;
	padding: 70px 45px 15px 15px;
	width: 100%;
	height: auto;
	min-height: auto;
}
	/* 下層のコンテンツボックス */
	.main_content {
		width: 100%;
		min-height: 100%;
		padding: 20px 45px 35px 15px;
		margin: 0;
		text-align: left;
	}
}

/* ------------------------------------
//  サイドナビ
// ----------------------------------*/
.side_navi_wrap {
	width: 70px;
	text-align: right;
	position: fixed;
	right: -11px;
	top: 100px;
}
.home .side_navi_wrap {
	right: -11px;
}
	.side_navi_wrap img {
		margin-bottom: 14px;
		position: relative;
	}
	.side_navi_wrap img:hover {
		right: 5px;
		opacity: 1;
	}
@media screen and (max-width: 767px) {
.side_navi_wrap {
	width: 45px;
	right: -6px;
	top: 60px;
	z-index: 99;
}
.home .side_navi_wrap {
	right: -6px;
}
	.side_navi_wrap img {
		margin-bottom: 10px;
		width: 100%;
	}
	.side_navi_wrap a:last-child img {
		width: 85%;
	}
}

/* ------------------------------------
//  フッター
// ----------------------------------*/
/* 以下 下層ベースに .home で上書きしているので注意 */
footer {
	width: 100%;
	padding: 80px 0 30px;
	text-align: center;
	position: relative;
}
.home footer {
	padding: 0;
	text-align: left;
	position: absolute;
	left: 0;
	bottom: 0;
}
	.home .footer_wrap {
		display: -webkit-flex; /* Safari */
		display: -ms-flexbox; /* IE10 */
		display: flex;
		-webkit-box-pack: justify; /* Safari */
		-ms-flex-pack: justify;/*IE10*/
		justify-content: space-between;
		-webkit-align-items: flex-end; /* Safari */
		-ms-flex-align: end;/*IE10*/
		align-items: flex-end;

		width: auto;
		min-width: 1080px;
		padding: 0 22px 20px;
	}
		/* フッター情報 */
		.home .footer_info {
			float: right;
			/* width: 630px; */
			width: 697px;
			position: relative;
		}
			/* お問い合わせはこちらと営業時間等 */
			.home .foter_about {
				display: -webkit-flex; /* Safari */
				display: -ms-flexbox; /* IE10 */
				display: flex;
				-webkit-box-pack: justify; /* Safari */
				-ms-flex-pack: justify; /*IE10*/
				justify-content: space-between;
				-webkit-align-items: flex-end; /* Safari */
				-ms-flex-align: end;/*IE10*/
				align-items: flex-end;

				width: 100%;
				padding-bottom: 16px;
			}
				/* 電話番号 */
				.footer_tel {
					margin-bottom: 20px;
					margin-top: 15px;
				}
				.home .footer_tel {
					margin-bottom: 0;
					width: 288px;
				}
				/*2023-1-23 メール */
				.foter_mali {
					margin-right: 10px;
				}
				/* 営業時間等 */
				.footer_about_other {
					margin-bottom: 8px;
				}
				.home .footer_about_other {
					width: 400px;
					margin-bottom: 0;
					font-size: 0px;
					text-align: right;
				}
					/* 詳しくはこちら */
					.about_other_more {
						margin-bottom: 2px;
						font-size: 13px;
						line-height: 18px;
					}
					.home .about_other_more {
						margin-bottom: 5px;
					}
						.home .about_other_more i {
							vertical-align: -2px;
							margin: 0 3px 0 4px;
							font-size: 18px;
						}
					/* 入場無料、年中無休、営業時間 */
					.about_other_item {
						display: inline-block;
						vertical-align: middle;
						background-color: #2EAD23;
						padding: 4px 7px;
						margin: 0 1px;
						font-size: 18px;
						line-height: 1em;
						color: #FFF;
					}
					.home .about_other_item {
						background-color: #FFF;
						padding: 0px 5px;
						margin: 0 0 0 8px;
						font-size: 13px;
						line-height: 18px;
						color: #000;
					}
					.home .about_other_item:last-of-type {
						margin-top: 8px;
					}

					/* sns btn */
					.btn-sns {
						margin: 20px 0 15px;
					}
					.btn-sns > div {
						display: inline-block;
						vertical-align: middle;
						margin: 0 5px;
					}
					.btn-sns a {
						background-color: #fff;
					}
					.btn-sns a:link, .btn-sns a:visited {
						background-color: #fff;
					}
					.btn-sns a:hover, .btn-sns a:active {
						opacity: 0.7;
						text-decoration: none !important;
					}
					.btn-sns img {
						width: 66px;
						height: 66px;
						vertical-align: bottom;
					}
					.btn-sns img:hover {
						opacity: 1;
					}

					.home .btn-sns {
						margin: 0;
						position: absolute;
						right: 0;
						top: -80px;
					}
					.home .btn-instagram {
						margin-right: 0;
					}

@media screen and (max-width: 767px) {
footer {
	background-color: #0A7300;
	padding: 20px;
	color: #FFF;
}
.home footer {
	background-color: transparent;
	padding: 0;
	text-align: center;
	position: relative;
}
	.home .footer_wrap {
		display: block;
		justify-content: none;
		align-items: none;
		width: 100%;
		min-width: 100%;
		padding: 0;
	}
		/* フッター情報 */
		.home .footer_info {
			float: none;
			width: 100%;
		}
			/* お問い合わせはこちらと営業時間等 */
			.home .foter_about {
				display: block;
				justify-content: none;
				align-items: none;
				width: 100%;
				padding-bottom: 0;
			}
						/* メール */
						.foter_mali{
							display: none;
							}
							#footer_mali_sp a{
								font-size: 16px;
							}
							.fa-mali:before{
								content: "\f003";
							}
				/* 電話番号 */
				.footer_tel {
					display: none;
				}
				.footer_tel_sp {
					border-top: 1px solid #FFF;
					border-bottom: 1px solid #FFF;
					padding: 10px 0 6px;
					margin: 0 0 20px;
					text-align: center;
				}
				.home .footer_tel_sp { margin: 20px 0; }
					.footer_tel_sp span {
						display: block;
						font-size: 12px;
					}
					.content_wrap .footer_tel_sp a,
					.home .content_wrap .footer_tel_sp a {
						font-size: 26px;
						font-weight: bold;
						line-height: 28px;
						color: #69CC2B;
					}
						.footer_tel_sp a i {
							font-size: 22px;
						}
				/* 営業時間等 */
				.footer_about_other {
					margin-bottom: 8px;
				}
				.home .footer_about_other {
					width: 100%;
					text-align: center;
				}
					/* 詳しくはこちら */
					.about_other_more {
						margin-bottom: 30px;
						font-size: 13px;
					}
					.home .about_other_more {
						margin-bottom: 30px;
					}
						.about_other_more a {
							display: block;
							background-color: rgba(0,0,0,0.3);
							border: 1px solid #FFF;
							border-radius: 4px;
							margin: 5px auto 0;
							padding: 15px;
							font-size: 16px;

						}
						.home .about_other_more a {
						}
						.about_other_more a:link, .about_other_more a:visited,
						.about_other_more a:hover, .about_other_more a:active {
							color: #FFF;
							text-decoration: none;
						}
						.home .about_other_more i {
							vertical-align: -2px;
							margin: 0 3px 0 4px;
							font-size: 18px;
						}
					/* 入場無料、年中無休、営業時間 */
					.about_other_item {
						display: inline-block;
						vertical-align: middle;
						background-color: #2EAD23;
						padding: 5px 12px;
						margin: 0 8px 12px;
						font-size: 18px;
						line-height: 1em;
						color: #FFF;
					}
					.home .about_other_item {
						background-color: #2EAD23;
						padding: 5px 12px;
						margin: 0 8px 12px;
						font-size: 16px;
						font-weight: bold;
						line-height: 18px;
						color: #FFF;
					}
					/* facebook btn */
					.btn-sns img {
						width: 65px;
						height: 65px;
					}
					.home .btn-sns {
						margin: 20px auto 15px;
						position: relative;
						right: 0;
						top: 0;
					}
}

			/* フッターナビ */
			.menu-fnavi-container {
				border-top: 1px solid #FFF;
				padding: 15px 0 0;
			}
				.menu-fnavi-container ul {
					display: -webkit-flex; /* Safari */
					display: -ms-flexbox; /* IE10 */
					display: flex;
					-webkit-box-pack: center; /* Safari */
					-ms-flex-pack: center;/*IE10*/
					justify-content: center;
					font-size: 0px;
					line-height: 1em;
				}
				.home .menu-fnavi-container ul {
					-webkit-box-pack: space-between; /* Safari */
					justify-content: space-between;
				}
					.menu-fnavi-container li {
						display: inline-block;
						border-left: 1px solid #000;
						padding: 0 10px;
						font-size: 14px;
						line-height: 1em;
						text-align: right;
					}
					.home .menu-fnavi-container li {
						border-left: 1px solid #FFF;
						padding: 0 7px;
					}
					.home .menu-fnavi-container li.fnavi-tokutei {
						display: none;
					}
					.menu-fnavi-container li:first-child {
						border-left: none;
						padding-left: 0;
					}
					.menu-fnavi-container li:last-child {
						padding-right: 0;
					}
						.menu-fnavi-container li a {
						}
@media screen and (max-width: 767px) {
			/* フッターナビ */
			.menu-fnavi-container {
				background-color: rgba(0,0,0,0.3);
				border: 1px solid #FFF;
				padding: 5px 10px;
				margin: 10px 0;
			}
			.home .menu-fnavi-container {
				background-color: rgba(0,0,0,0.3);
				border: 1px solid #FFF;
			}
				.menu-fnavi-container ul,
				.home .menu-fnavi-container ul {
					display: block;
					justify-content: none;
				}
					.menu-fnavi-container li,
					.home .menu-fnavi-container li {
						display: block;
						border-left: none;
						border-bottom: 1px solid #FFF;
						padding: 0;
						font-size: 14px;
						line-height: 1em;
						text-align: left;
					}
					.menu-fnavi-container li:first-child {
						border-left: none;
						padding-left: 0;
					}
					.menu-fnavi-container li:last-child {
						border-bottom: none;
						padding-right: 0;
					}
						.menu-fnavi-container li a {
							display: block;
							padding: 15px 5px;
							color: #FFF;
						}
}
