
@charset "utf-8";

/*==================================================================================================================
リセット
==================================================================================================================*/
/*リセット*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, div, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, hgroup, menu, nav, output, ruby, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	text-align:left;
	font-weight:normal;
  	font-style:normal;
	background-repeat:no-repeat;
	border:0 none;
}


/*==================================================================================================================
再定義
==================================================================================================================*/
/*基本リンク
------------------------------------------------------------------------------------------------------------------*/

/*
a:hover img, a:focus img {
	opacity:0.75;
	filter:alpha(opacity=75);
}
*/

/*リスト
------------------------------------------------------------------------------------------------------------------*/
ol, ul, li {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
}

/* paddingやborderも widthに含める形式に統一
------------------------------------------------------------------------------------------------------------------*/
* { box-sizing:border-box; }

/*==================================================================================================================
クリア
==================================================================================================================*/
.clear {
	clear:both;
	size:0;
}
.clearfix {
	display: inherit;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	clear: both;
	height: 0;
	content:"";
	zoom:1;
}
/* IE6 */
* html .clearfix {
	zoom: 1;
}
/* IE7 */
*:first-child+html .clearfix {
	zoom: 1;
}
/* Hides from IE-mac \*/  
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */  


/*==================================================================================================================
フォントに関する基本スタイル
==================================================================================================================*/
/*基本文字サイズ&文字色
------------------------------------------------------------------------------------------------------------------*/
@font-face { font-family:"FAsolid"; src:url("./fa-solid-900.woff") format("woff"); }
@font-face { font-family:"FAregular"; src:url("./fa-regular-400.woff") format("woff"); }
body {
	font-size:16px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	line-height:1.9;
	color:#666;
	background: #fff;
	font-weight: 700;
}

/*段落*/
p {
	margin:0px 0px 15px 0px;/*下部に余白*/
}

/*文字サイズ*/

.cap01{
	font-size: 85%;
	display: block;
	line-height: 1.2;
}
.txts{
	font-size: 70%;
}

@media (max-width:499px) {
	body{line-height: 1.7;}
	p, ul, dl{ font-size: 0.9rem;}
}



/*基本リンク
------------------------------------------------------------------------------------------------------------------*/
/*リンク文字色*/
a{text-decoration: none;}
a:link    {color:#13b5b1;}
a:visited {color:#13b5b1;}
a:hover   {color:#00a9f0;}

a:hover{
	opacity: 0.8;
}

.link_under{
	text-decoration: underline;
}

/*マーカー＆強調文字色
------------------------------------------------------------------------------------------------------------------*/
/*ラインマーカー*/
.c_mrk {
	background-color:#e5d89b;/*Marker*/
	padding:0 3px;
}
/*強調文字色*/
.c_ptv {color:#d64a5a;}/*positive*/
.c_pit {color:#900000;}/*point up*/
.c_ngt {color:#5488a2;}/*negative)*/
.c_off {color:#cac5ba;}/*off*/
.c_org {color:#de6625;}
.c_grn {color:#00693e;}
.c_pik {color:#d58b95;}
.c_pik {color:#d58b95;}
.c_bro {color:#6c5f56;}
.att{color:#cc6666;}
.text_under{text-decoration: underline;}
.txt_bold{
	font-weight: bold;
}

.fs14{
	font-size: 0.875rem;
}


/*右寄せ*/
.txt_right, .txt_right p {
	text-align:right;
}
/*中央寄せ*/
.txt_center, .txt_center p {
	text-align:center;
}
/*明朝*/
.f_mn {
	font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

/*ゴシック*/
.f_gothic{
font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/*丸ゴシック*/
.f_maru{
	 font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

/*文字のがたつき対策*/
.font_smoothing {
	transform: rotate(0.03deg);
}

.dib { display: inline-block; font-weight: inherit;}

/*==================================================================================================================
テーブルに関する設定
==================================================================================================================*/
table {
	border-collapse: collapse;
	border-spacing:0;
	width: 100%;
}
/*テーブルタイトル*/
caption {
	text-align:left;
	font-weight:bold;
	color:#993300;
}
/*枠線*/
th,td{
	border-bottom: #ccc 1px solid;	
	padding:10px 20px;
	font-size: 1rem;
}
thead th,tfoot th {
	vertical-align:top;
	background-color:#728c42;
	color:#FFFFFF;
}
thead td,tfoot td {
	vertical-align:top;
	background-color:#999;
	color:#FFFFFF;
}
tbody th {
	vertical-align:top;
}
tbody td {
	vertical-align:top;
	background-color:#fff;
}

input,textarea{
	border: 1px solid #ccc;
}




/*その他
-------------------------------------------------------------------------------------------------------------------*/
/*区切り線*/
hr{clear:both;border:0px solid #fff;padding:15px 0;width:0;}

/*画像・オブジェクト*/
img         {border:0 none;vertical-align:top;max-width:100%;}
object	    {text-decoration:none;border:none;margin:0px;padding:0px;vertical-align:bottom;}


/* メニューを非表示にするパターン */
@media (max-width: 499px) {
	.noTab, .noTab caption, .noTab thead, .noTab tfoot, .noTab tbody, .noTab tr, .noTab th, .noTab td { display:block; width:100%; }
}


/*横並びの配置（flexbox）*/

.flex{
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
}
.f_between{
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
}
.f_center{
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
}
.a_center{
	align-items: center;
}


.img_left{
	float:left;
	margin:0 30px 30px 0;
}
.img_right{
	float:right;
	margin:0 0 30px 30px;
}
.img_top{
	margin-bottom:30px;
}


@media (max-width: 599px){

.order1{
	order: 1;
}

.order2{
	order: 2;
}



}



/*==================================================================================================================
レイアウト設定
==================================================================================================================*/

/*共通
-------------------------------------------------------------------------------------------------------------------*/

/*#wrapper{padding-bottom: 100px;}*/

#container  {
	width: 100%;
	position: relative;
}
.inner{
	width:100%;
	max-width: 1000px;
	margin:0 auto;
}
.inner:after{
	content: "";
	display: block;
	clear: both;
}
.inner-section{
	width:100%;
	max-width: 1000px;
	margin:0 auto;
	padding: 50px 0;
}
.bg01{background: #fafafa;}
.bg02{background: #f8f5f1;}
.bg03{background: #fff;padding: 40px;}

@media (max-width:999px) {

.inner-section{padding: 50px 4%;}
.inner{padding: 0 4%;}

}

@media (max-width:799px) {
.inner{padding: 0 4%;}
.inner-section{padding: 30px 4%;}
}


@media (max-width:499px) {

}

.contents_btm01{margin-bottom: 100px;}
.contents_btm02{margin-bottom: 80px;}
.contents_btm03{margin-bottom: 60px;}
.contents_btm04{margin-bottom: 40px;}
.contents_btm05{margin-bottom: 20px;}
.contents_btm0{margin-bottom: 0;}

.p0{padding: 0 !important;}
.mb0{margin-bottom: 0 !important;}
.sp{display: none !important;}

@media (max-width:499px){


.pc{display: none !important;}
.sp{display: block !important;}


.contents_btm01{margin-bottom: 4rem;}
.contents_btm02{margin-bottom: 2rem;}
.contents_btm03,.contents_btm04{margin-bottom: 1rem;}
}



/*背景*/




/*ヘッダー*/



header{
	width: 100%;
	height: auto;
	position: relative;
	padding: 40px 0 40px 5%;
}
.sub_page header{border-bottom: 1px solid #13b5b1;}
#hdr_logo{width: 150px;}
#top_page #hdr_logo a{margin: auto; display: inline-block;}
.menu {display: none;}
.nav_menu {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	justify-content: flex-end;
}

.nav_menu > li:not(:first-of-type) { margin-left: 3em;}

.nav_menu > li a {display: block;}


@media (max-width:999px) {
	.nav_menu > li:not(:first-of-type) { margin-left: 2em;}
}


@media (max-width:899px) {
	header { padding: 30px 0;}
	#hdr_logo{ width: 100%; text-align: center; margin: 0 auto 20px;}
	.nav_menu { padding-left: 30px; justify-content: space-between;}
	.nav_menu > li:not(:first-of-type) { margin-left: 0;}
}

@media (max-width:599px) {
	header{width: 100%; padding: 0;position: fixed;top: 0;left: 0;z-index: 99999;overflow: visible;height: 60px;background: #fff;}
	#hdr_logo{position: absolute; z-index: 999999;top: 13px;width: 118px;margin: 0;}
	.sub_page #header{border-bottom: none;}
	.header_inner{ position: relative; padding: 10px;}
	#top_page #hdr_logo a{ position: static; top: 0; right: 0; left: 0;}
}

@media (max-width:399px) {
	#header{height:50px;}
}

/*グローバルメニュー*/


#gnav_wrap{
	width: calc( 100% - 150px );
}

#gnav li a{
	display: block;
	text-align: center;
  overflow: hidden;
  font-weight: bold;
}
#gnav li#gnav06 a{
    display: block;
    background: #13b5b1;
    color: #fff;
    padding: 5px 30px;
}

@media (max-width:899px) {
	#gnav_wrap{ width: 100%;}
}

@media (max-width:699px) {
	.nav_menu { padding-left: 20px;}
	#gnav li#gnav06 a { padding: 5px 20px;}
}
@media (max-width:599px) {
	header::before { z-index: 999999; position: fixed;}
	#top_page #gnav_wrap{ margin-bottom: 0;}
	.nav_menu { padding-left: 0;}
	#gnav li a span{ display: inline-block; margin-right: 5px;}
}



@media (max-width: 599px){

/* グローバルナビゲーション */
#gnav_wrap {
	display: block!important;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	float: none;
	width: 100%;
	max-height: 100vh;
	padding-top: 60px;
	margin: 0;
	position: absolute;
	top: 0;
	right: -600px;
	z-index: 1000;
	overflow: auto;
}


#gnav_wrap.open {
	-moz-transform: translateX(-600px);
	-webkit-transform: translateX(-600px);
	transform: translateX(-600px);
}	
#gnav_wrap ul {clear: both;}
#gnav_wrap #gnav > li {
	width: 100%!important;
	max-width: 100%!important;
	height: auto;
	text-indent: 0;
	border-bottom: 1px solid #fff;
	margin: 0;
}
#gnav_wrap #gnav > li:last-child{
	border-bottom: none;
}

#gnav_wrap #nav_inst{
	display: none;
}

#gnav_wrap #gnav > li > a {
	height: 50px!important;
	padding: 0;
	line-height: 50px;
	font-weight: bold;
	color: #fff;
	background: #13b5b1;
	border-bottom: 1px solid #fff;
}
#gnav_wrap #gnav > li > a:hover {
	text-decoration: none;
	opacity: 1;
}

		
/* メニューボタン */
.menu {
	display: block;
	width: 60px;
	height: 59px;
	margin: 0;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2000;
	text-indent: -9999px;
}
.menu span {
    display:block;
    position:absolute;
    top:19px;
    right:10px;
    width:30px;
    height:22px;
    background:#13b5b1;
    border-top:9px solid #fff;
    border-bottom:9px solid #fff;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
}
.menu span:before {
    content:'';
    position:absolute;
    width:30px;
    height:4px;
    background:#13b5b1;
    top:-9px;
    right:0;
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
}
.menu span:after {
    content:'';
    position:absolute;
    width:30px;
    height:4px;
    background:#13b5b1;
    bottom:-9px;
    right:0;
    -moz-transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
}
.menu span.active {
    background:#fff;
}
.menu span.active:before {
    -moz-transform:rotate(-135deg);
    -webkit-transform:rotate(-135deg);
    transform:rotate(-135deg);
    top:0;
    right:0;
}
.menu span.active:after {
    -moz-transform:rotate(135deg);
    -webkit-transform:rotate(135deg);
    transform:rotate(135deg);
    bottom:0;
    right:0;
}

}




/*フッター*/

#footer{
	width: 100%;
	height: auto;	
	padding: 30px 0 20px;
}

#footer #foot_logo{
	text-align: center;
	margin-bottom: 20px;
}

#copy{
	text-align: center;
	font-size: 0.714rem;
}







.btn_more01 a{
	display: block;
	width: 100%;
	max-width: 260px;
	margin: auto;
	border-bottom: 1px solid #13b5b1;
	text-align: center;
	position: relative;
}
.btn_more01 a::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  right: -4px;
  margin: auto;
    width: 20px;
    height: 5px;
    border-bottom: 1px solid #13b5b1;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.btn_more02 a{
    background: #13b5b1;
    color:#fff;
    padding: 5px 15px;
}

@media (max-width: 499px){


}




.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}



#page_top{
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
#page_top a::before{
  font-family: FAsolid;
  font-weight: 900;
  content: '\f106';
  display: block;
  font-size: 25px;
  color: #fff;
  width: 25px;
  height: 25px;
  margin: 0 auto 10px;
  text-align: center;
}


@media (max-width: 499px){



#page_top{
  width: 50px;
  height: 50px;
  right: 5px;
  bottom: 50px;
}
#page_top a{
  width: 50px;
  height: 50px;
  line-height:1;
}
#page_top a::before{
    margin-bottom:2px;
}

}

@media (max-width: 369px){

#page_top, #page_top a{width: 45px;height: 45px;}
#page_top{bottom: 45px;}
#page_top a::before{margin-bottom:0;height: 22px;}

}


h1,h2,h3{
	font-family: Georgia,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

h2,h3{
	text-align: center;
	margin-bottom: 40px;
	color: #666666;
}


/*トップページ
-------------------------------------------------------------------------------------------------------------------*/

/*メインイメージ*/

#visual{
	background: url(../index/main_img.jpg);
	background-size: cover;
	width: 100%;
	height: 50vw;
	max-height: 600px;
	overflow: hidden;
	position: relative;
}
#visual h1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	margin: auto;
	width: 100%;
	font-size: 3.15rem;
	color: #fff;
	text-align: center;
	text-shadow: 0px 0px 10px rgba(0,0,0,1);
}



h2{font-size: 1.875rem;}
h2 span::after{
	content: "";
	display: block;
	background: #13b5b1;
	width: 60px;
	height: 2px;
	text-align: center;
	margin: 10px auto 0;
}

h2 span.dib::after{
	display: none;
}

h3{
	font-size: 1.5rem;
	margin-bottom: 25px;
	text-align: left;	
}


.txt{
	line-height: 2.2;
	text-align: center;
	margin-bottom: 40px;
}





@media (max-width: 799px){


#visual h1{font-size: 5.2vw;}
h2{font-size: 4vw;}
h3{font-size: 3vw;}

}

@media (max-width: 599px){


#visual h1{font-size: 7vw; line-height: 2; text-shadow: 0px 0px 7px rgb(0 0 0);}
#visual h1 br.sp { display: inline!important;}
h2{font-size: 1.35rem;}
h3{
	margin-bottom: 20px;
	font-size: 1.15rem;
	text-align: center;
}


.txt{
	text-align:left;
	margin-bottom: 20px;
}



}


@media (max-width: 399px){
	#visual h1 { font-size: 8vw; line-height: 1.6;}
}


.anchor{
	padding-top: 60px;
	margin-top: -60px;
}

.img_area img{border-radius: 30px;}


@media (max-width: 599px){
	#visual { margin-top: 60px; height: 70vw;}
}


.img_area,.txt_area{width: 46%;}


.bd_list dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	width: 100%;
	padding: 20px calc( 100% - 90% );
}
.bd_list dt{
	width: 30%;
	font-weight: bold;
}
.bd_list dd{width: 70%;}




@media (max-width: 799px){

.bd_list dl{
	padding: 20px;
}


}


@media (max-width: 599px){

.txt_area{
	width: 100%;
	margin-bottom: 20px;
}

.img_area{
	width: 90%;
	margin: auto;
}

.bd_list dl{padding: 20px 0;}


}




#common_contact{
	background: #def0eb;
	margin-top: 40px;
}


#common_contact li{
	width: 46%;
	line-height: 1.4;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}

#common_contact .tel_box{
	font-size: 2.25rem;
}
#common_contact .mail_box{
	font-size: 1.8rem;
}
#common_contact .tel_box a:before,#common_contact .mail_box a:before{
  content: "";
  display: inline-block;
  margin-right: 10px;
}
#common_contact .tel_box a:before{
  background: url(../images/tel_ico.png);
  background-size: cover;
  width: 23px;
  height: 29px;
}
#common_contact .mail_box a:before{
  background: url(../images/mail_ico.png);
  background-size: cover;
  width: 34px;
  height: 24px;
}

#common_contact li a{
	display: block;
	height: 100%;
	padding: 20px 10px;
	text-align: center;
	background: #fff;
	color: #13b5b1;		
}


@media (max-width: 999px){

#common_contact .tel_box{font-size: 4vw;}
#common_contact .mail_box{font-size: 3vw;}
#common_contact .tel_box a:before{
  width: 3vw;
  height: 4vw;
}
#common_contact .mail_box a:before{
  width: 4vw;
  height: 3vw;
}

}

@media (max-width: 599px){
	#top_recruit h3 { text-align: left;}
}

@media (max-width: 499px){

#common_contact li{width: 100%;}
#common_contact .tel_box{
	font-size: 1.8rem;
	margin-bottom: 30px;
}
#common_contact .mail_box{font-size: 1.4rem;}
#common_contact .tel_box a:before{
  width: 20px;
  height: 26px;
}
#common_contact .mail_box a:before{
  width: 32px;
  height: 22px;
}

	#top_recruit h3 { text-align: center;}

}






/*サブページ
-------------------------------------------------------------------------------------------------------------------*/

/*共通*/



#main{
	padding: 0 0 0;
	margin: 0 auto;
}

.ah1{
	font-size: 2.25rem;
	text-align: center;
	padding: 60px 0 30px;
}



.sh1{font-size: 1.5rem;}
.sh2{margin-bottom: 20px;}
.mt{margin-top: 50px;}

@media (max-width:799px) {
	.ah1{font-size: 4.6vw;	padding: 40px 0;}
	.mt{margin-top: 30px;}
	.sh1 {font-size: 1.35rem;}
.sh2{
	font-size: 1.3rem;
	margin-bottom: 30px;
}
}


@media (max-width:599px){

	#main{padding: 60px 0 0;}

.ah1{
	font-size: 1.8rem;
	padding: 30px 0 0;
}

.sh1{font-size: 1.25rem;margin-bottom: 25px;}
.sh2{
	font-size: 1.15rem;
	margin-bottom: 20px;
}	


}






@media (max-width:499px) {

.recruit .box01 .sh1 { text-align: left;}
.recruit .box01 .sh1 .dib { display: inline;}
.recruit .bd_list dt,.recruit dd{width: 100%;}
.recruit .bd_list dt{margin-bottom: 10px;}

.company .bd_list dt,.company .bd_list dd{width: 100%;}
.company .bd_list dt{margin-bottom: 10px;}

}



.access .gmap{padding-bottom: 40%;}

@media (max-width:799px) {
	.access .gmap{padding-bottom: 70vw;}
}

.greeting p{line-height: 2.2;}
.greeting .grt_name{
	text-align: right;
	margin-top: 30px;
}




/*フォーム関係*/

#form table{
	margin: 30px 0 50px;
}

#form table th,#form table td {
    padding: 20px;
    font-size: 1rem;
}

#form table th{
	text-align: left;
	vertical-align:top;
	background-color: none;
	width: 30%;
}

#form td input.w01 {width: 100%;}

#form td input,#form table td textarea{
	padding: 10px;
}

input::placeholder,textarea::placeholder,
input:-ms-input-placeholder,textarea::placeholder,
input::-ms-input-placeholder,textarea::placeholder {
  color: #bbb;
}

#form td textarea{
	width: 100%;
}

#form table span{
	color: #888;
	font-size: 90%;
}

@media (max-width:499px) {
	#form table tr{
		padding: 20px 0;
		border-bottom: 1px solid #ccc;
	}
	#form table th, #form table td{width: 100%;padding: 0;border: none;}
	#form td label{width: 100%;display: block;}
}


.kakomi{
    border: 1px #bbb solid;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.kakomi li{
    display: inline-block;
    margin: 0 10px 10px;
    line-height: 1.4;
    padding-left: 1em;
    text-indent: -1em;
}
.kakomi li:before{
	content:"◆";
	font-size: 75%;
    margin-right: 3px;
}
@media (max-width:499px) {
	.kakomi{padding: 15px;}
}


.restaurant .imgArea{
	margin-bottom:50px;
}
.restaurant .imgArea li{
	width:32%;
}
@media (max-width:599px) {
	.restaurant .imgArea{margin-bottom:25px;}
}
@media (max-width:499px) {
	.restaurant .bd_list dt{width: 25%;}
	.restaurant .bd_list dd{width: 75%;}
}

