@charset "UTF-8";

/***********************************************
 *
 * 01, Browser Reset, Forms normalize
 * 02, font
 * 03, headding
 * 04, link
 * 05, module
 * 06, layout
 * 07, header
 * 08, footer
 * 09, navi
 *
 ***********************************************/


/* ===========================================
	 01, Browser Reset
   =========================================== */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	/* 10px */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	font-size: 1rem;
	/* IE11 bug 疑似要素はpxで */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
main,
summary {
	display: block;
}

audio,
canvas,
,
progress,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

table {
	border-collapse: collapse;
}

a {
	border: 0;
	outline: 0;
}

a:active,
a:hover {
	outline-width: 0;
}

img {
	border: 0;
	vertical-align: bottom;
}

ins {
	text-decoration: none;
}

ul {
	list-style: none;
}

br {
	letter-spacing: 0;
}


/* Forms normalize
========================================================================== */

/**
* 1. Change font properties to `inherit` in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.

* 1. すべてのブラウザ用、フォームのいくつかの要素に「font: inherit;」を定義（オプション）。
* 2. Firefox, Safari用、マージンを取り除く。
*/

button,
input,
select,
textarea {
	font: inherit;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
* Restore the font weight unset by the previous rule.

* 前の指定により、optgroup要素にフォントのウェイトを再定義。
*/

optgroup {
	font-weight: bold;
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
* 2. Show the overflow in Edge, Firefox, and IE.

* IE用、「overflow: visible;」を定義
* 1. Edge用、input要素を定義。
* 2. Edge, Firefox, IE用、select要素を定義。
*/

button,
input,
/* 1 */
select {
	/* 2 */
	overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.

* Edge, Firefox, IE用、text-transformの継承を取り除く。
* 1. Firefox用、text-transformの継承を取り除く。
*/

button,
select {
	/* 1 */
	text-transform: none;
}

/**
* Change the cursor in all browsers (opinionated).

* すべてのブラウザ用、button要素のカーソルを変更（オプション）。
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
}

/**
* Restore the default cursor to disabled elements unset by the previous rule.

* 前の指定により、disabledを指定した要素はデフォルトのカーソルに戻す。
*/

[disabled] {
	cursor: default;
}

/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
*    controls in Android 4.
* 2. Correct the inability to style clickable types in iOS.

* 1. Android4用、ネイティブのaudio要素とvideo要素のコントールのWebkitのバグを避ける。
* 2. iOS用、クリッカブルなinput要素のtypeのスタイルを修正。
*/

button,
html [type="button"],
/* 1 */
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
}

/**
* Remove the inner border and padding in Firefox.

* Firefox用、button要素とinput要素の内側のパディングを取り除く。
*/

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.

* 前の指定により、フォーカス時のスタイルを再定義。
*/

button:-moz-focusring,
input:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
* Change the border, margin, and padding in all browsers (opinionated).

* すべてのブラウザ用、fieldset要素のborder, margin, paddingプロパティを変更（オプション）
*/

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.

* 1. Edge, IE用、テキストのラッピングを修正。
* 2. IE用、fieldset要素からカラーが継承されないのを修正。
* 3. すべてのブラウザ用、fielset要素を取り除く時にデベロッパに分からないようにpaddingを取り除く。
*/

legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
* Remove the default vertical scrollbar in IE.

* IE用、デフォルトの垂直方向のスクロールバーを取り除く。
*/

textarea {
	overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.

* 1. IE10用、正しいbox-sizingを定義。
* 2. IE10用、paddingを取り除く。
*/

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.

* Chrome用、増減ボタンのカーソルのスタイルを修正。
*/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
* Correct the odd appearance of search inputs in Chrome and Safari.

* Chrome, Safari用、検索の入力エリアのアピアランスを修正。
*/

[type="search"] {
	-webkit-appearance: textfield;
}

/**
* Remove the inner padding and cancel buttons in Chrome on OS X and
* Safari on OS X.

* OS XのChrome, Safari用、キャンセルボタンの内側のpaddingを取り除く。
*/

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}


/* ===========================================
	 02, font
   =========================================== */
@font-face {
	font-family: "Yu Gothic";
	src: local("游ゴシック Medium"),
		local("Yu Gothic Medium");
	font-weight: normal;
}

@font-face {
	font-family: "Yu Gothic";
	src: local("游ゴシック Bold"),
		local("Yu Gothic Bold");
	font-weight: bold;
}

/* 游明朝 */
.yumincho {
	font-family: "Yu Mincho", "游明朝", "游明朝体", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

/* Adobe Typrkit */
.font_din {
	font-family: "din-2014-narrow", sans-serif;
	font-style: normal;
	font-weight: 600;
}

.font_source-han {
	font-family: "source-han-sans-japanese", sans-serif;
	font-style: normal;
}

.font_kan48typos {
	font-family: "kan48typos-std", sans-serif;
	font-style: normal;
	font-weight: 400;
}

body {
	font-family: YuGothic, "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.6rem;
	color: #383331;
	background-color: #fff;
	line-height: 1.6;
}

main {
	line-height: 2;
}

.fs12px {
	font-size: 1.2rem;
}

.fs13px {
	font-size: 1.3rem;
}

.fs14px {
	font-size: 1.4rem;
}

.fs15px {
	font-size: 1.5rem;
}

.fs16px {
	font-size: 1.6rem;
}

.fs17px {
	font-size: 1.7rem;
}

.fs18px {
	font-size: 1.8rem;
}

.fs19px {
	font-size: 1.9rem;
}

.fs20px {
	font-size: 2rem;
}

.fsL {
	font-size: larger;
}

.fsS {
	font-size: smaller;
}

.fw200L {
	font-weight: 200;
}

.fw300N {
	font-weight: 300;
}

.fw500M {
	font-weight: 500;
}

.fw700B {
	font-weight: 700;
}

.txtC {
	text-align: center;
}

.txtL {
	text-align: left;
}

.txtR {
	text-align: right;
}

.txtidt {
	text-indent: -1em;
	padding-left: 1em;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* -------- */
address,
em,
strong {
	font-style: normal;
}

em {
	font-weight: bold;
}


/* ===========================================
	 03, heading
   =========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

.cmn_heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 150px;
	padding-left: 5%;
	padding-right: 5%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #74716F;
	color: #fff;
	font-family: "source-han-sans-japanese", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 2.4rem;
	letter-spacing: .15em;
	line-height: 1.5;
	text-align: center;
}

.cmn_heading span {
	position: relative;
	padding-bottom: 16px;
}

.cmn_heading span:after {
	position: absolute;
	bottom: 0;
	left: calc(50% - 17px);
	width: 34px;
	height: 2px;
	background-color: #fff;
	content: "";
}

.cmn_heading b {
	display: block;
	margin-bottom: 4px;
	color: #fff;
	font-family: "din-2014-narrow", sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: .15em;
}

.cmn_heading_sec {
	position: relative;
	padding-bottom: 15px;
	font-family: "source-han-sans-japanese", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 2.2rem;
	letter-spacing: .15em;
	line-height: 1.5;
	text-align: center;
}

.cmn_heading_sec:after {
	position: absolute;
	bottom: 0;
	left: calc(50% - 15px);
	width: 30px;
	height: 2px;
	background-color: #6cbb63;
	content: "";
}

@media (max-width: 767px) {
	.cmn_heading {
		margin-top: 15px;
	}
}

@media (min-width: 768px) {
	.cmn_heading {
		position: absolute;
		top: 0;
		z-index: -1;
		height: 450px;
		font-size: 3.8rem;
	}

	.cmn_heading span {
		padding-bottom: 20px;
	}

	.cmn_heading span:after {
		left: calc(50% - 20px);
		width: 40px;
		height: 4px;
	}

	.cmn_heading b {
		font-size: 1.6rem;
	}

	.cmn_heading_sec {
		padding-bottom: 20px;
		font-size: 2.8rem;
	}

	.cmn_heading_sec:after {
		left: calc(50% - 20px);
		width: 40px;
		height: 3px;
	}
}


/* ===========================================
	 04, link
   =========================================== */

a {
	color: #6cbb63;
}

a:hover {
	color: #6cbb63;
	text-decoration: none;
}

a:active {
	color: red;
}

.tel {
	display: inline-block;
}

@media (min-width: 768px) {
	.tel {
		text-decoration: none;
		color: inherit !important;
		cursor: default;
	}

	.tel:hover {
		text-decoration: none;
	}
}

/* ===========================================
	 05, module
   =========================================== */

/* --------------------
 *	float clear
 * clearFix
 */

.clearB {
	clear: both;
}

.clearL {
	clear: left;
}

.clearR {
	clear: right;
}

/* clearfix */
.clearfix:after {
	clear: both;
	display: block;
	content: "";
}

/* --------------------
 *	float
 */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

/* --------------------
 *	margin
 * padding
 */

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb45 {
	margin-bottom: 45px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb55 {
	margin-bottom: 55px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb65 {
	margin-bottom: 65px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb75 {
	margin-bottom: 75px;
}

.mb80 {
	margin-bottom: 80px;
}

.mb85 {
	margin-bottom: 85px;
}

.mb90 {
	margin-bottom: 90px;
}

.mb95 {
	margin-bottom: 95px;
}

.mb100 {
	margin-bottom: 100px;
}

.mb1em {
	margin-bottom: 1em;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

.mt35 {
	margin-top: 35px;
}

.mt40 {
	margin-top: 40px;
}

.mt45 {
	margin-top: 45px;
}

.mt50 {
	margin-top: 50px;
}

.mt55 {
	margin-top: 55px;
}

.mt60 {
	margin-top: 60px;
}

.mt65 {
	margin-top: 65px;
}

.mt70 {
	margin-top: 70px;
}

.mt75 {
	margin-top: 75px;
}

.mt80 {
	margin-top: 80px;
}

.mt85 {
	margin-top: 85px;
}

.mt90 {
	margin-top: 90px;
}

.mt95 {
	margin-top: 95px;
}

.mt100 {
	margin-top: 100px;
}


/* ------------------------
 *	img
 */

.imgfLeft {
	float: left;
	margin: 0 12px 12px 0;
}

.imgfRight {
	float: right;
	margin: 0 0 12px 12px;
}

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

	.hvropa,
	a.hvrimg img,
	.hvrIMG a img {
		opacity: 1;
		transition: opacity 0.3s linear;
	}

	.hvropa:hover,
	a.hvrimg:hover img,
	.hvrIMG a:hover img {
		opacity: 0.7;
	}
}

/* responsive img */
img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ------------------------
 *	 display   
*/
@media (max-width: 767px) {
	.pc {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

.hide {
	display: none !important;
}

.overflow_hdn {
	overflow: hidden;
}

.dp_block {
	display: block;
}

.dp_inlineblock {
	display: inline-block;
}

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

.sr_only {
	/* スクリーンリーダー用 */
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}


/* ------------------------
 *	table
 */

.table {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 2px;
	border: solid 1px #EBEAEA;
	background-color: #fff;
}

.table tr,
.table th,
.table td {
	border: solid 1px #EBEAEA;
}

.table th {
	vertical-align: middle;
	text-align: left;
	font-weight: normal;
	background-color: #6cbb63;
	color: #fff;
	padding: 5px 15px;
	white-space: nowrap;
}

.table td {
	padding: 7px 15px;
	vertical-align: middle;
	text-align: left;
}

.table_responsive {
	overflow-x: auto;
	min-height: 0.01%;
}

@media screen and (max-width: 999px) {
	.table_responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #dddddd;
	}
}

/* ------------------------
	button
*/

.button,
.button:visited {
	position: relative;
	display: inline-block;
	border: 0;
	outline: 0;
	padding: 7px 15px;
	border-radius: 4px;
	background-color: #999;
	color: #fff;
	font-size: 1.6rem;
	text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.button:hover {
	background-color: #666;
	color: #fff;
}

.button.dp_block {
	display: block;
}

.small.button,
.small.button:visited {
	font-size: 1.2rem;
	padding: 5px 10px;
}

.large.button,
.large.button:visited {
	font-size: 2rem;
	padding: 10px 30px;
}

.green.button,
.green.button:visited {
	background-color: #91bd09;
}

.green.button:hover {
	background-color: #749a02;
}

.red.button,
.red.button:visited {
	background-color: #e62727;
}

.red.button:hover {
	background-color: #cf2525;
}

.orange.button,
.orange.button:visited {
	background-color: #ff5c00;
}

.orange.button:hover {
	background-color: #d45500;
}

.blue.button,
.blue.button:visited {
	background-color: #2981e4;
}

.blue.button:hover {
	background-color: #064b99;
}

.yellow.button,
.yellow.button:visited {
	background-color: #ffb515;
}

.yellow.button:hover {
	background-color: #fc9200;
}


/* ===========================================
	 06, layout
   =========================================== */

.header_container,
.footer_container {
	position: relative;
}

@media (max-width: 767px) {
	.content {
		padding-left: 5%;
		padding-right: 5%;
	}
}

@media (min-width: 768px) {

	.header_container,
	.footer_container,
	.main_container,
	.wrapper {
		position: relative;
		width: 100%;
		min-width: 1040px;
	}

	.content {
		width: 1000px;
		padding-left: 10px;
		padding-right: 10px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* section */
.section_base {
	padding: 30px 5%;
}

.section_base_bg {
	padding: 30px 5%;
	background-color: #F0F8EF;
}

@media (min-width: 768px) {
	.section_base {
		width: 1000px;
		margin-left: auto;
		margin-right: auto;
		padding: 60px 10px;
	}

	.section_base_bg {
		min-width: 1000px;
		margin-left: auto;
		margin-right: auto;
		padding: 60px 10px;
	}
}

/* ===========================================
	 07, header
   =========================================== */

.header_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.h_logo {
	width: 65%;
	margin: 10px auto 0 16px;
}

@media (max-width: 767px) {
	.header_container {
		min-height: 60px;
	}

	.header_container.menu-active-header,
	.header_container.home.menu-active-header {
		min-height: 100vh;
		padding-bottom: 40px;
		background-color: #6cbb63;
	}

	.header_content {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.sp_menu {
		position: relative;
		width: 60px;
		height: 60px;
		padding-top: 5px;
		padding-right: 10px;
		margin-left: auto;
		overflow: hidden;
	}

	.sp_menu:before {
		position: absolute;
		display: block;
		content: "";
		width: 120px;
		height: 120px;
		right: -60px;
		top: -60px;
		border-radius: 60px;
		background-color: #6CBB63;
	}

	.h_logo img {
		width: 100%;
		max-width: 230px;
	}

	.menu-active-header .h_logo,
	.menu-active-header .h_copy {
		display: none;
	}
}

@media (min-width: 768px) {
	.header_container {
		height: 570px;
	}

	.header_content {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	p.h_logo {
		position: absolute;
		bottom: 25px;
		left: 0;
		width: 359px;
		margin-left: 0;
	}

	.h_nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 642px;
	}

	.h_nav>p img {
		width: 186px;
	}

	.h_nav>address img {
		width: 456px;
	}
}

@media (min-width: 1300px) {
	.header_content {
		padding-right: 50px;
	}

	p.h_logo {
		left: 50px;
	}
}

/* top page */
.header_container.home {
	min-height: 100vh;
}

.h_copy {
	position: absolute;
	width: 90%;
	bottom: 15px;
	left: 5%;
}

@media (min-width: 768px) {
	.home .header_content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.home .h_logo {
		width: 410px;
		margin-top: 55px;
		margin-left: 0;
	}

	.h_copy {
		position: absolute;
		width: 480px;
		bottom: 30px;
		left: 0;
	}
}

@media (min-width: 1300px) {
	.home .h_logo {
		margin-left: 50px;
	}

	.h_copy {
		left: 42px;
	}
}

/* ===========================================
	 08, footer
   =========================================== */

.footer_container {
	background-color: #6cbb63;
	color: #fff;
}

.f_continar {
	position: relative;
	<sc
}

.f_content {
	position: relative;
	padding-top: 30px;
	padding-bottom: 100px;
}

.f_address {
	font-size: 1.4rem;
	line-height: 1.7;
}

.f_address h2 {
	margin-bottom: 25px;
}

.f_address dl {
	margin-top: 20px;
}

.f_address dt {
	font-size: 1.4rem;
	font-weight: bold;
}

.f_address dd a,
.f_address dd a {
	padding-left: 25px;
	font-size: 3.4rem;
	background: url(../sy_images/common/common_footer_tel.png) no-repeat 0 center;
	background-size: 18px auto;
	color: #FFFF44 !important;
	text-decoration: none;
}

.f_head {
	margin-bottom: 10px;
	font-size: 1.4rem;
}

.f_copy,
.f_copy small {
	font-size: 1.3rem;
	letter-spacing: .15em;
	text-align: center;
}

.f_memo1 {
	margin-top: 15px;
}

.f_memo1 li {
	border-radius: 6px;
	text-align: center;
	line-height: 26px;
	background-color: #B5DDB1;
	color: #6cbb63;
	letter-spacing: .15em;
	font-size: 1.4rem;
}

.f_memo1-2 {
	margin-top: 15px;
}

.f_memo1-2 li {
	border-radius: 6px;
	text-align: center;
	line-height: 26px;
	background-color: #FFFF44;
	color: #6cbb63;
	letter-spacing: .15em;
	font-size: 1.4rem;
}

@media (max-width: 767px) {
	.f_address dd {
		margin-top: -10px;
	}

	.f_memo1 li~li {
		margin-top: 10px;
	}

	.f_memo1-2 li~li {
		margin-top: 10px;
	}

	.f_memo2 {
		margin-top: 11px;
	}

	.f_memo2 li {
		font-size: 1.2rem;
		line-height: 1.66;
	}

	.f_copy {
		position: absolute;
		font-size: 1rem;
		bottom: 50px;
		line-height: 1.2;
		letter-spacing: 0;
	}
}

@media (min-width: 768px) {
	.f_content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.f_content>div:first-child {
		width: 400px;
		flex-shrink: 0;
	}

	.f_content>div:last-child {
		width: 490px;
		flex-shrink: 0;
	}

	.f_address {
		margin-bottom: 10px;
		font-size: 1.7rem;
		letter-spacing: .1em;
	}

	.f_address h2 {
		width: 359px;
		margin-bottom: 24px;
	}

	.f_address dl {
		margin-top: -10px;
	}

	.f_address dt {
		display: inline;
		font-size: 1.6rem;
	}

	.f_address dd {
		display: inline;
	}

	.f_head {
		margin-bottom: 10px;
		font-size: 1.7rem;
		letter-spacing: .1em;
	}

	.f_memo1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 10px;
	}

	.f_memo1 li {
		line-height: 30px;
		font-size: 1.6rem;
	}

	.f_memo1 li:first-child {
		width: 219px;
	}

	.f_memo1 li:last-child {
		width: 256px;
	}

	.f_memo1-2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 10px;
	}

	.f_memo1-2 li {
		line-height: 30px;
		font-size: 1.6rem;
		width: 100%;
	}

	.f_memo2 li {
		display: inline-block;
		margin-top: 7px;
		font-size: 1.5rem;
		/*letter-spacing: .025em;*/
	}

	.f_memo2 li~li {
		margin-left: 1em;
	}
}

/* google map */
.map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 125%;
	color: #6cbb63;
}

@media (min-width: 768px) {
	.map {
		padding-top: 40%;
	}
}

.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ===========================================
	 09, Navi
   =========================================== */

/* ------------------------
 *	globalnavi
 */

.menu {
	width: 100%;
	margin: 0 auto;
}

.menu-mobile {
	display: none;
}

.menu a {
	font-family: "source-han-sans-japanese", sans-serif;
	font-style: normal;
	font-weight: 500;
	text-decoration: none;
}

.megamenu {
	display: none;
}

@media (min-width: 768px) {
	.menu {
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 10;
		width: auto;
	}

	.lv1>li {
		position: relative;
		float: left;
		color: #6CBB63;
	}

	.lv1>li:not(:last-child) {
		padding-right: 16px;
	}

	.lv1>li:not(:last-child):before {
		position: absolute;
		right: 0;
		top: 52px;
		display: inline-block;
		content: "／";
		font-size: 16px;
	}

	.lv1>li>a {
		position: relative;
		display: -webkit-flex;
		/* Safari */
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: 120px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 2rem;
		line-height: 1.5;
		color: #6CBB63;
	}

	.menu a b {
		font-family: "din-2014-narrow", sans-serif;
		font-style: normal;
		font-weight: 600;
		color: #74716F;
		font-size: 1rem;
		letter-spacing: .15em;
	}

	.lv1>li>a:hover {
		color: #6CBB63;
	}

	.lv1>li>a::after {
		position: absolute;
		top: 110px;
		left: calc(50% - 25px);
		width: 50px;
		height: 4px;
		background: #6CBB63;
		content: '';
		opacity: 0;
		-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
		-moz-transition: opacity 0.3s, -moz-transform 0.3s;
		transition: opacity 0.3s, transform 0.3s;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	.lv1>li>a:hover::after,
	.lv1>li>a:focus::after,
	.lv1>li>a.act::after {
		opacity: 1;
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@media (min-width: 1100px) {
	.lv1>li:last-child>a {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (min-width: 768px) and (max-width: 1299px) {
	.lv1>li:last-child>a {
		padding-right: 0;
	}

	.lv1>li:last-child>a:after {
		left: calc(50% - 10px);
	}
}

@media (min-width: 1300px) {
	.lv1 {
		padding-right: 20px;
	}
}

/*モバイル用 */
/*サイズはjs側の設定と合わせる*/
@media only screen and (max-width: 767px) {

	.menu>ul,
	.menu>div {
		display: none;
	}

	.show-on-mobile>ul,
	.show-on-mobile>div {
		display: block;
	}

	.menu-container {
		width: 100%;
	}

	.menu-dropdown-icon {
		background: url(../sy_images/common/menu_icon_open.png) no-repeat 98% 12px;
		background-size: 16px;
	}

	.menu-dropdown-icon.menu-open {
		background-color: #fff;
		background-image: url(../sy_images/common/menu_icon_close.png);
	}

	.lv1>li a {
		position: relative;
		padding: 13px 10%;
		width: 100%;
		display: block;
		position: relative;
		text-align: center;
		letter-spacing: .1em;
		line-height: 1.5;
		font-size: 1.6rem;
		font-weight: 500;
		color: #fff;
	}

	.lv1>li>a.act::after {
		position: absolute;
		bottom: 3px;
		left: calc(50% - 15px);
		width: 30px;
		height: 2px;
		background: #fff;
		content: "";
	}

	.lv1>li>a b {
		display: none;
	}

	.menu_home img {
		margin: -5px auto 35px;
	}

	.sp_nav {
		text-align: center;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 500;
	}

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

	.sp_nav_access a {
		min-width: 240px;
		margin-bottom: 20px;
		margin-top: 35px;
		line-height: 40px;
		border: solid 3px #fff;
		border-radius: 10px;
	}

	.sp_nav_access a span {
		display: inline-block;
		padding-left: 20px;
		background: url(../sy_images/common/common_nav_sp_access.png) no-repeat 0 center;
		background-size: 13px auto;
	}

	.sp_nav_address dt {
		letter-spacing: .1em;
	}

	.sp_nav .sp_nav_tel {
		padding-left: 25px;
		font-size: 3.4rem;
		background: url(../sy_images/common/common_footer_tel.png) no-repeat 0 center;
		background-size: 18px auto;
		color: #FFFF44;
	}

	.sp_nav_address2 {
		display: inline-block;
		text-align: left;
		letter-spacing: .1em;
	}

	.sp_nav_address2 dt {
		float: left;
		width: 5em;
		overflow: hidden;
	}

	.sp_nav_address2 dt:nth-of-type(2) {
		letter-spacing: 2.3em;
		white-space: nowrap;
	}

	.sp_nav_address2 dd {
		margin-left: 5em;
	}

	/* button */
	.menu-mobile,
	.menu-mobile span {
		display: block;
		transition: all .4s;
	}

	.menu-mobile {
		position: relative;
		width: 26px;
		height: 50px;
		margin-left: auto;
		color: #333;
	}

	.menu-mobile>div {
		position: relative;
		height: 35px;
	}

	.menu-mobile span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #fff;
		border-radius: 3px;
	}

	.menu-mobile span:nth-of-type(1) {
		top: 15px;
	}

	.menu-mobile span:nth-of-type(2) {
		top: 23px;
	}

	.menu-mobile span:nth-of-type(3) {
		top: 31px;
	}

	.menu-mobile::after {
		position: absolute;
		left: -2px;
		top: 0;
		content: 'MENU';
		display: block;
		width: 100%;
		color: #fff;
		font-family: "source-han-sans-japanese", sans-serif;
		font-style: normal;
		font-size: 10px;
		font-weight: 700;
		line-height: 1;
		text-decoration: none;
		text-align: center;
		transition: all .4s;
	}

	.menu-mobile.menu-active span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}

	.menu-mobile.menu-active span:nth-of-type(2) {
		opacity: 0;
	}

	.menu-mobile.menu-active span:nth-of-type(3) {
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	}
}

/* ------------------------
 *	footernavi
 */
.f_nav li {
	display: inline;
}

.f_nav li a {
	display: inline-block;
	padding: 0.2em 0.5em 0.2em 0.4em;
}

.f_nav li~li:before {
	display: inline-block;
	content: "|";
}

/* ------------------------
 *	topic-path
 */
.topic_path {
	padding: 0 calc((100% - 980px) / 2);
	margin: 0;
	list-style: none;
	background-color: #F0F8Ef;
	line-height: 28px;
}

.topic_path li {
	display: inline;
}

.topic_path li:not(:first-child):before {
	display: inline-block;
	content: ">";
	margin-left: 5px;
	padding-right: 5px;
}

.topic_path a {
	color: inherit;
	font-size: 1.3rem;
}

.topic_path strong {
	font-weight: normal;
}

/* ------------------------
*	syn_movototop
*/
#pagetop {
	position: absolute;
	z-index: 999;
	top: -40px;
	right: 50px;
	width: 80px;
	cursor: pointer;
}

@media (max-width: 767px) {
	#pagetop {
		top: -15px;
		right: 0;
		width: 60px;
	}
}

/* 019 */
.button019 {
	margin-top: 30px;
}

@media (max-width: 767px) {
	.button019 {
		margin-top: 20px;
	}
}

.button019 a {
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 280px;
	padding: 10px 40px;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 500;
	text-align: center;
	line-height: 1.25em;
	font-weight: 700;
	border-radius: 40px;
	background-color: #6cbb63;
	border: solid 1px #6cbb63;
	text-decoration: none;
}

.button019 a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.3s;
	width: 6px;
	height: 6px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.button019 a:hover {
	background: #fff;
	color: #6cbb63;
}

.button019 a:hover:after {
	right: 1.4rem;
}

@media (max-width: 767px) {
	.mt-30sp {
		margin-top: -30px !important;
	}
}