@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
   =========================================== */

*, *:before, *:after {
	box-sizing: border-box;
}
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, picture{
	margin:0;
	padding:0;
}
html{
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
	font-size:62.5%;   /* 10px */
}
@-ms-viewport {
	width: device-width;
}
body {
	font-size: 1rem;  /* IE11 bug 疑似要素はpxで */
}
article, aside, details, figcaption, figure, footer, header, menu, nav, section, main, summary, picture {
	display:block;
}
audio, canvas, progress, video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
table {
	border-collapse:collapse;
}
a{
	border-style: none;
	outline: 0;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
	outline-width: 0;
}
img {
	border-style: none;
	vertical-align: bottom;
}
ins{
	text-decoration:none;
}
ul {
	list-style:none;
}
br {
	letter-spacing: 0;
}
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;
}


/* 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
   =========================================== */

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	font-feature-settings : "palt" 1;
	font-size: 1.6rem;  /* IE11 bug 疑似要素はpxで */
	line-height: 2;
	color: #554d4a;
	background-color: #fff;
}

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

.fsL{
	font-size: larger;
}
.fsS{
	font-size: smaller;
}
.fw700{
	font-weight: 700;
}

.txtC{
	text-align: center;
}
.txtL{
	text-align: left;
}
.txtR{
	text-align: right;
}

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


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

h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: normal;
}
.cmn_heading img{
	width: 100%;
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px){
	.cmn_heading{
		padding: 35px 15px 15px;
	}
}
@media (min-width: 768px){
	.cmn_heading{
		margin-top: 80px;
		margin-bottom: 50px;
	}
}


/* ===========================================
	 04, link
   =========================================== */
 
a{
	color: #554d4a;
} 
a:hover{
	color: Navy;
	text-decoration: none;
}
a:active{
	color: red;
}

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

/* ===========================================
	 05, module
   =========================================== */
 
/* --------------------
 * clearFix
 */

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


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

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

/* 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;
	}
}

/* ------------------------
 *	 display   
*/

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

.hide{
	display: none !important;
}
.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;
}


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

.header_container{
	position: relative;
}
@media (max-width: 767px){
	.content{
		padding-left: 5%;
		padding-right: 5%;
	}
	.content .sm_only_w100{
		margin-right: -5.5555555%;
		margin-right:calc(100% / 18 * -1);
		margin-left: -5.5555555%;
		margin-left: calc(100% / 18 * -1);
	}
}
@media (min-width: 768px){
	.header_container, 
	.footer_container,
	.main_container,
	.wrapper{
		position: relative;
		width: 100%;
		min-width: 990px;
	}
	.content{
		width: 990px;
		padding-left: 15px;
		padding-right: 15px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* footer-bottom fix */
@media (min-width: 768px){
	html {
		height: 100%;
	}
	body {
		min-height: 100vh;
		height: 100%; /* for IE11 */
		display: -webkit-box;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.main_container{
		flex-shrink: 0;
	}
	.footer_container{
		margin-top: auto;
	}
}


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

.header_container{
}
.h_txt{
	padding: 13px 5px;
	text-align: center;
	line-height: 1.1;
	background: url(../sy_images/common/co_headerback.jpg) no-repeat center;
	background-size: cover;
}
.header_content{
}
.h_logo{
}
@media (max-width: 767px){
	.h_txt{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 46px;
		font-size: 1.1rem;
	}
	.header_content{
		position: relative;
		z-index: 100;
		display: -webkit-box;
		display: flex;
		align-items: flex-end;
		height: 80px;
	}
	.h_logo{
		flex-shrink: 0;
		width: 130px;
		margin-right: auto;
		margin-left: 20px;
		padding-bottom: 10px;
	}
	.h_tel{
		width: 63px;
		padding: 0 10px 10px;
	}
}
@media (min-width: 768px){
	.h_logo{
		width: 208px;
	}
}


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

.footer_container{
	text-align: center;
	background-color: #9ed4f3;
}
.f_copy{
	background-color: #ebebec;
}
.f_copy,
.f_copy small{
	font-size: 1.1rem;
	line-height: 1.2;
}
@media (max-width: 767px){
	.f_copy{
		padding: 14px 5px;
	}
}
@media (min-width: 768px){
	.f_copy{
		padding-top: 18px;
		padding-bottom: 8px;
	}
}


/* ------------------------
*	footernavi
*/
.f_nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	padding-left: 5%;
	padding-right: 5%;
}
.f_nav li a{
	display: inline-block;
	padding: 0 1em;
	color: #000;
}
@media (max-width: 767px){
	.f_nav{
		padding-top: 15px;
		padding-bottom: 20px;
	}
	.f_nav li{
		width: 50%;
		margin-top: 8px;
	}
	.f_nav li a{
		position: relative;
		display: block;
		white-space: nowrap;
		padding-left: 0;
		padding-right: 0;
		font-size: 1.5rem;
	}
	.f_nav li a:before{
		position: absolute;
		right: 0;
		display: inline-block;
		content: "|";
	}
	.f_nav li:nth-child(odd) a:after{
		position: absolute;
		left: 0;
		display: inline-block;
		content: "|";
	}
}
@media (min-width: 768px){
	.f_nav{
		padding: 20px;
	}
	.f_nav li:before{
		display: inline-block;
		content: "|";
	}
	.f_nav li:nth-child(6):after,
	.f_nav li:last-child:after{
		display: inline-block;
		content: "|";
	}
}


/* ===========================================
	 09, Navi
   =========================================== */
   
/* ------------------------
 *	globalnavi
*/

.menu {
	width: 100%;
	background: #fff;
}
.menu a{
	text-decoration: none;
}
@media (min-width: 768px){
	.menu-mobile,
	.lv1_sp{
		display: none;
	}
	.menu{
		margin-top: 30px;
	}
	.lv1{
		display: -webkit-flex;
		display: flex;
		min-width: 990px;
		max-width: 1440px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 15px;
		padding-right: 15px;
	}
	.lv1 > li{
		flex:auto;
		border-right: dotted 2px #999;
	}
	.lv1 > li:first-child{
		border-left: dotted 2px #999;
	}
	.lv1 > li > a{
		z-index:2;
		position:relative;
		overflow: hidden;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align:center;
		-webkit-align-items:center;
		align-items:center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		width: 100%;
		height: 120px;
	}
	.lv1 a:after{
		position: absolute;
		width: 100%;
		height: 100%;
		display: block;
		content: "";
		background-color: #fbedef;
		z-index: -1;
		bottom: -100%;
		left: 0;
		opacity: 0;
		transition:all .3s ease;
	}
	.lv1 a:hover:after,
	.lv1 a.act:after{
		bottom: 0;
		opacity: 1;
	}
}

/*モバイル用 */
/*サイズはjs側の設定と合わせる*/
@media only screen and (max-width: 767px) {
	.lv1_sp{
		display: none;
	}
	.menu{
		position: fixed;
		top: 126px;
		left: 0;
		z-index: 999;
		height: calc(100vh - 126px);
		overflow-y:auto;
		-webkit-overflow-scrolling:touch;
		padding-bottom: 90px;
		background-color: #27ae54;
		transition: .6s cubic-bezier(0.3, 0.03, 0.13, 0.99);
/*		-webkit-transform: translateY(-115%);
		transform: translateY(-115%);*/
		-webkit-transform: translateX(115%);
		transform: translateX(115%);
		opacity: 0;
		display: none;
	}
	.menu.show-on-mobile {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
	.lv1{
		display: flex;
		flex-wrap: wrap;
		padding: 20px 5%;
	}
	.lv1 > li{
		position: relative;
		width: 50%;
		border: solid 2px #27ae54;
	}
	.lv1 li:first-child,
	.lv1 li:last-child{
		width: 100%;
	}
	.lv1 > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 90px;
		background-color: #fff;
	}
	.lv1 li:first-child a,
	.lv1 li:last-child a{
		height: 80px;
		align-items: flex-start;
		overflow: hidden;
	}
	.lv1 li:first-child .lv1_pc,
	.lv1 li:last-child .lv1_pc{
		margin-top: -10px;
	}
	.lv1_pc{
		width: 70px;
	}
	.menu_sp_btn{
		display: block;
		margin-left: 5%;
		margin-right: 5%;
		background-color: #006d35;
		color: #fff;
		text-decoration: none;
		text-align: center;
		line-height: 65px;
		border: solid 1px #fff;
		border-radius: 33px;
		font-size: 2rem;
	}
	.menu p ~ p{
		margin-top: 10px;
	}
	.menu p ~ p .menu_sp_btn{
		line-height: 48px;
	}

	/* button */
	.menu-mobile,
	.menu-mobile span {
		display: inline-block;
		transition: all .4s;
	}
	.menu-mobile {
		position: relative;
		width: 70px;
		height: 80px;
		padding: 0 10px;
		color: inherit;
		outline: 0;
		border: 0;
		background: none;
	}
	.menu-mobile.menu-active{
		background-color: #27ae54;
	}
	.menu-mobile span {
		position: absolute;
		left: 15px;
		width: 40px;
		height: 3px;
		background-color: #27ae54;
		border-radius: 3px;
	}
	.menu-mobile.menu-active span{
		background-color: #fff;
	}
	.menu-mobile span:nth-of-type(1) {
		top: 20px;
	}
	.menu-mobile span:nth-of-type(2) {
		top: 33px;
	}
	.menu-mobile span:nth-of-type(3) {
		top: 46px;
	}
	@keyframes mmopacity {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@keyframes mmopacity2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	.menu-mobile::after {
		position: absolute;
		left: 0;
		bottom: 10px;
		display: block;
		width: 100%;
		color: #000;
		font-size: 11px;
		line-height: 1;
		text-decoration: none;
		text-align: center;
		font-weight: 700;
	}
	.menu-mobile.menu-hidden::after {
		content: 'MENU';
		animation: mmopacity .4s; 
	}
	.menu-mobile.menu-active::after {
		content: 'CLOSE';
		animation: mmopacity2 .4s; 
		color: #fff;
	}
	.menu-mobile.menu-active span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(13px) 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(-8px) rotate(45deg);
		transform: translateY(-13px) rotate(45deg);
	}
}

/* ------------------------
 *	topic-path
 */
.topic_path {
	padding: 0;
	margin: 20px 0;
	list-style: none;
}
.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;
}
.topic_path strong{
	font-weight: normal;
}



/* subNav */
.subNav{
	position: relative;
	text-align: center;
	background-color: #ff7128;
}
.subNav:before{
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	background: url(../sy_images/common/co_pattern03.png) repeat-x center 0;
}
.subNav_list{
	display: flex;
	justify-content: center;
}
.subNav_list a{
	display: block;
	font-size: 2.2rem;
	color: #fff;
}
@media (max-width: 767px){
	.subNav{
		padding-top: 40px;
		padding-bottom: 70px;
		background-size: 54px auto;
	}
	.subNav:before{
		top: -20px;
		height: 25px;
		background-size: 39px auto;
	}
	.subNav_list{
		flex-direction: column;
		align-items: center;
	}
	.subNav_list li{
		width: 116px;
	}
	.subNav_list li ~ li{
		margin-top: 35px;
	}
	.subNav_list img{
		margin-bottom: 4px;
	}
}
@media (min-width: 768px){
	.subNav{
		padding-top: 100px;
		padding-bottom: 140px;
	}
	.subNav:before{
		top: -50px;
		height: 50px;
	}
	.subNav_list{
		display: flex;
		justify-content: center;
	}
	.subNav_list li{
		margin-left: 40px;
		margin-right: 40px;
	}
	.subNav_list img{
		margin-bottom: 12px;
	}
	.subNav_list a{
		font-size: 2.5rem;
	}
}

/* ------------------------
*	address
*/
.address{
	background-color: #ffe029;
}
.address_container{
	background: url(../sy_images/common/co_footer_img2.png) no-repeat right 0;
}
.address_dl dt{
	font-size: 1.8rem;
	font-weight: 700;
}
.address_dl dd{
	margin-bottom: 13px;
}
.address_tel{
	margin-right: 1em;
}
@media (max-width: 767px){
	.address_container{
		padding-top: 65px;
		padding-bottom: 32px;
		background-size: 480px auto;
	}
	.address_head{
		width: 208px;
		margin-left: 10px;
		margin-bottom: 35px;
	}
	.address_dl dt{
		display: inline-block;
		margin-bottom: 12px;
		padding-left: 5px;
		padding-right: 5px;
		background-color: #fff;
	}
	.address_dl dd{
		margin-bottom: 17px;
		line-height: 1.5;
	}
	.address_tel{
		margin-right: 4em;
		font-size: 2rem;
	}
}
@media (min-width: 768px){
	.address_container{
		display: flex;
		align-items: center;
		padding-top: 150px;
		padding-bottom: 40px;
	}
	.address_head{
		flex-shrink: 0;
		width: 270px;
	}
	.address_datail{
		margin-left: 75px;
	}
	.address_datail .phone-num{
		font-size: 1.8rem;
	}
}


