@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;
}


/* ===========================================
	 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: #642900;
	background: #fff url(../sy_images/common/co_background.jpg);
}

/* 游明朝 */
.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;
}

.orange{
	color: #F98000;
}


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

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

.heading{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 152px;
	padding-top: 20px;
	font-weight: 700;
	font-size: 2.5rem;
	letter-spacing: .2em;
}
@media (max-width: 767px){
	.heading{
		background: url(../sy_images/common/co_titleback2_2x.png) repeat-x 0 0;
		background-size: 14px auto;
	}
	.heading_txt{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 350px;
		min-height: 64px;
		background: url(../sy_images/common/co_titleback1_sp.png) no-repeat center;
		background-size: 100% auto;
	}
}
@media (min-width: 768px){
	.heading{
		margin-top: 20px;
		background-image: url(../sy_images/common/co_titleback1.png), url(../sy_images/common/co_titleback2_2x.png);
		background-repeat: no-repeat, repeat-x;
		background-position: center 30px, 0 0;
		background-size: auto, 14px auto;
	}
}


/* ===========================================
	 04, link
   =========================================== */
 
a{
	color: #642900;
} 
a:hover{
	color: #f98000;
	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;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}


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

.btn, 
.btn:visited {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 195px;
	height: 50px;
	border-radius: 25px;
	border: #f98000 1px solid;
	outline: 0;
	background-color: #f98000;
	color: #642900;
	line-height: 1.2;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.btn:after{
	position: absolute;
	content: "›";
	right: 15px;
	top: 11px;
	font-size: 2rem;
}
.btn:hover{
	background-color: #fff;
	color: #f98000;
}
.btn.dp_block{
	display: block;
}


/* ===========================================
	 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: 1000px;
	}
	.content{
		width: 1000px;
		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_content{
	position: relative;
	display: -webkit-box;
	display: flex;
}
.h_logo{
	margin-right: auto;
}
.h_address_list{
	display: flex;
	align-items: center;
}
.h_address_list dd{
	display: flex;
}
@media (max-width: 767px){
	.header_container{
		min-height: 94px;
	}
	.header_content{
		height: 100%;
		padding: 15px 53px 5px 15px;
	}
	.h_logo{
		max-width: 190px;
		padding-right: 20px;
	}
	.h_address_list{
		padding-top: 5px;
	}
	.h_address_list a{
		min-width: 33px;
		margin-right: 15px;
		padding-top: 37px;
		line-height: 1;
		text-align: center;
		white-space: nowrap;
		color: #642900;
		text-decoration: none;
		font-weight: 700;
		font-size: 1.1rem;
		background-repeat: no-repeat;
		background-position: center 0;
		background-size: 33px auto;
	}
	.h_tel{
		background-image: url(../sy_images/common/co_icon1_sp.png);
	}
	.h_mail{
		background-image: url(../sy_images/common/co_icon2_sp.png);
	}
}
@media (min-width: 768px){
	.header_content{
		width: 1000px;
		padding: 30px 20px;
		margin: 0 auto;
	}
	.h_summary{
		display: flex;
		justify-content: center;
		line-height: 25px;
		background-color: #f98000;
		color: #fff;
		font-size: 1.4rem;
	}
	.h_summary_txt{
		width: 1000px;
		font-weight: 500;
	}
	.h_logo{
		width: 347px;
	}
	.header_content{
		align-items: flex-end;
		height: 100%;
	}
	.h_address_list dt:after{
		content: ">";
		margin: 0 5px;
	}
	.h_address_list dd{
		align-items: center;
		justify-content: flex-end;
		width: 480px;
		height: 50px;
		background-color: #fff;
		border: dashed 1px #f98000;
		border-radius: 10px;
	}
	.h_tel,
	.h_mail{
		width: 165px;
		margin-right: 5px;
	}
	.h_mail{
		margin-right: 15px;
	}
	.h_recruitment{
		width: 110px;
		line-height: 48px;
		text-align: center;
		font-weight: 700;
		font-size: 2rem;
		background-color: #f98000;
		color: #fff;
		border-radius: 0 10px 10px 0;
	}
}


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

.footer_container{
}
.f_logo{
	width: 170px;
}
.f_head{
	font-weight: 700;
}
.f_zip{
	line-height: 1.5;
}
.f_tel,
.f_mail{
	width: 170px;
	margin-right: 10px;
}
.f_copy{
	background-color: #f98000;
	color: #fff;
	text-align: center;
}
.f_copy small{
	font-size: 1.3rem;
}
@media (max-width: 767px){
	.footer_container{
		padding: 
	}
	.f_logo{
		margin-left: auto;
		margin-right: auto;
	}
	.f_content{
		padding: 0 5%;
		text-align: center;
	}
	.f_head{
		margin-top: 16px;
		margin-bottom: 5px;
	}
	.f_address_list dt{
		margin-top: 26px;
		font-weight: 700;
	}
	.f_address_list dd{
		padding-bottom: 25px;
		border-top: solid 1px #f98000;
		border-bottom: solid 1px #f98000;
	}
	.f_tel,
	.f_mail{
		display: block;
		width: 240px;
		margin: 25px auto 0;
	}
	.f_copy{
		margin-top: 30px;
	}
}
@media (min-width: 768px){
	.f_content{
		display: flex;
		width: 970px;
		justify-content: space-between;
		align-items: center;
		margin-left: auto;
		margin-right: auto;
		padding-left: 15px;
		padding-right: 15px;
	}
	.f_address{
		width: 380px;
	}
	.f_address_list dt{
		padding-left: 15px;
		border-bottom: dotted 2px #f98000;
	}
	.f_address_list dd{
		display: flex;
		padding-left: 15px;
		padding-top: 15px;
	}
	.f_tel,
	.f_mail{
		width: 170px;
		margin-right: 10px;
	}
	.f_copy{
		min-width: 1000px;
		margin: 55px auto 0;
	}
}


/* ------------------------
*	footernavi
*/
.f_nav{
	display: flex;
	max-width: 970px;
}
.f_nav li{
	position: relative;
	text-align: center;
}
.f_nav li a{
	line-height: 25px;
	color: #642900;
}
.f_nav li:before,
.f_nav li:after{
	position: absolute;
	top: 0;
	display: inline-block;
	content: "";
	height: 25px;
	width: 1px;
	background-color: #642900;
}
.f_nav li:before{
	left: 0;
}
@media (max-width: 767px){
	.f_nav{
		flex-wrap: wrap;
		padding: 35px 5% 0;
	}
	.f_nav li{
		width: 50%;
	}
	.f_nav li a{
		display: block;
		font-size: 1.4rem;
	}
	.f_nav li:after{
		right: 0;
	}
	.f_nav li:nth-child(odd):after{
		width: 0;
	}
	.f_nav li:nth-child(n + 3){
		margin-top: 25px;
	}
}
@media (min-width: 768px){
	.f_nav{
		margin: 30px auto 0;
	}
	.f_nav li{
		flex-grow: 1;
	}
	.f_nav li:before,
	.f_nav li:after{
		top: 2px;
	}
	.f_nav li:after{
		width: 0;
	}
	.f_nav li:last-child:after{
		right: 0;
		width: 1px;
	}
	.f_nav li a{
		text-decoration: none;
		transition: .3s;
	}
	.f_nav li a:hover{
		color: #f98000;
	}
}


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

.menu a{
	color: #642900;
	text-decoration: none;
	font-weight: 700;
}
.menu_line{
	position: relative;
	z-index: 3;
	padding-left: 10px;
	padding-right: 10px;
}
.menu_line:after{
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	display: inline-block;
	width: 0;
	height: 10px;
	content: "";
	background-color: #FCCE06;
	border-radius: 3px;
	transition: .5s;
}
.act .menu_line:after{
	width: 100%;
}
@media (min-width: 768px){
	.menu{
		background-color: transparent;
	}
	.menu-mobile {
		display: none;
	}
	.lv1{
		display: -webkit-flex;
		display: flex;
		width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
	.lv1 > li{
		flex:auto;
		transition: .3s ease-in-out;
	}
	.lv1 > li > a{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 60px;
		font-size: 1.6rem;
		line-height: 1.3;
	}
	.lv1 > li:nth-child(6) a:after,
	.lv1 > li a:before{
		position: absolute;
		top: 0;
		display: inline-block;
		content: "";
		width: 2px;
		height: 100%;
		border-left: dotted 2px #f98000;
	}
	.lv1 > li a:before{
		left: 0;
	}
	.lv1 > li:nth-child(6) a:after{
		right: 0;
	}
	.lv1 li:hover .menu_line:after{
		width: 100%;
	}
}

/*モバイル用 */
/*サイズはjs側の設定と合わせる*/
@media only screen and (max-width: 767px) {
	.menu{
		display: none;
		position: fixed;
		z-index: 99;
		top: 0;
		left: 0;
		height: 0;
		width: 100%;
		overflow: hidden;
		transition: .5s;
	}
	.menu.show-on-mobile {
		height: 100vh;
		overflow-y: scroll;
	}
	@keyframes mmopacity0 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@keyframes mmopacity1 {
		0% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
	.lv1{
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		overflow: hidden;
		opacity: 0;
		/*transition: opacity .5s .5s ease-out;*/
		animation: mmopacity1 .4s ease-out forwards;
	}
	.menu.show-on-mobile .lv1{
		animation: mmopacity0 .5s .5s ease-out forwards;
		height: 100vh;
	}
	.lv1 > li:nth-of-type(2){
		margin-top: 18vh;
	}
	.lv1 > li{
		padding: 0 10px;
	}
	.lv1 > li a {
		display: block;
		position: relative;
		padding: 8px 4%;
		width: 100%;
		font-size: 2rem;
		text-align: center;
	}
	.lv1 .menu_logo{
		position: absolute;
		top: 15px;
		left: 15px;
		width: 170px;
		padding: 0;
	}
	.lv1 .menu_logo a{
		padding: 0;
	}

	@keyframes mmheight0 {
		0% {
			height: 0;
		}
		100% {
			height: 100vh;
		}
	}
	@keyframes mmheight1 {
		0% {
			height: 100vh;
		}
		100% {
			height: 0;
		}
	}
	.menu-bg-wap {
		width: 100vw;
		height: 0;
		left: 0;/*
		overflow: hidden;*/
		position: fixed;
		z-index: 9;
		top: 0px;
	}
	.show-on-mobile .menu-bg-wap{
		height: 100vh;
		/*animation: mmheight0 .1s ease-out forwards;*/
	}
	.show-on-mobile .menu-bg-wap img {
		-webkit-transform: scale(20);
		transform: scale(20);
	}
	.menu-bg-wap img {
		position: absolute;
		right: 5px;
		top: -10px;
		width: auto;
		-webkit-transition: transform 0.5s cubic-bezier(0.47, 0, 0.745, 0.715);
		transition: transform .5s cubic-bezier(0.47, 0, 0.745, 0.715);
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	/* button */
	.menu-mobile{
		position: fixed;
		z-index: 999;
		top: 20px;
		right: 15px;
		width: 42px;
		height: 60px;
		padding: 0;
		background: none;
		border: 0;
		outline: 0;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		transition: .3s;
	}
	.menu_btn{
		position: absolute;
		top:0;
		left: 50%;
		margin-left: -16px;
		display: block;
		width: 33px;
		height: 33px;
		border-radius: 50%;
		background-color:#642900;
	}
	.menu_burger {
		display: block;
		transition: all .4s;
		position: absolute;
		left: 9px;
		width: 15px;
		height: 2px;
		background-color: #fff;
		border-radius: 2px;
	}
	.menu_btn span:nth-of-type(1) {
		top: 9px;
	}
	.menu_btn span:nth-of-type(2) {
		top: 15px;
	}
	.menu_btn span:nth-of-type(3) {
		bottom: 10px;
	}
	@keyframes mmopacity {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@keyframes mmopacity2 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	.menu-mobile::after {
		position: absolute;
		left: 0;
		top: 37px;
		display: block;
		width: 100%;
		color: #642900;
		font-size: 10px;
		font-weight: 700;
		text-decoration: none;
		text-align: center;
	}
	.menu-mobile.menu-hidden::after {
		content: 'MENU';
		animation: mmopacity .4s; 
	}
	.menu-mobile.menu-active::after {
		content: 'CLOSE';
		animation: mmopacity2 .4s; 
	}
	.menu-active .menu_btn span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(6px) rotate(-45deg);
	}
	.menu-active .menu_btn span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-active .menu_btn span:nth-of-type(3) {
		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-6px) rotate(45deg);
	}
}

/* ------------------------
*	syn_movototop
*/
#buttonMoveToTop{
	z-index: 999;
}


