@charset "utf-8";


/****************
Font-Size

Pixels	%
10px	62.5%
11px	68.8%
12px	75.0%
13px	81.3%
14px	87.5%
15px	93.8%
16px	100.0%
17px	106.3%
18px	112.5%
19px	118.8%
20px	125.0%
21px	131.3%
22px	137.5%
23px	143.8%
24px	150.0%
26px	162.5%
28px	175.0%
****************/

* {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust:none;
}

body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, 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, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0 none;
	margin: 0;
	padding: 0;
	/*vertical-align: baseline;*/
	/*font: inherit;*/
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*--[Win Firefox]ロールオーバー時に、ボタン左に点線枠（focus）が入る現象についての対策--*/
:focus
{?moz-outline-style:none;}

/*--[Mac Firefox]ロールオーバー時に、ボタン左に点線枠（focus）が入る現象についての対策--*/
a { outline:none;}
a{
	text-decoration:none;
	color: #444;
}
a:hover{
	text-decoration:underline;
}
hr {
	clear: both;
	border: solid 1px #fff;
	margin: 15px 0;
}
img {
	border: none;
	vertical-align: bottom;
	/*max-width: 100%;*/
}

br {
	letter-spacing: 0;
}

li img {
	vertical-align: top;
}
.clearfix:after {
	content: "."; /* 新しい要素を作る */
	display: block; /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
	overflow:hidden;
	font-size:0.1em;
	line-height:0;
}


/*Flex Box*/
.flex {
	clear: both;
	display: flex;
	flex-wrap: wrap;/*親の横幅以上は折り返す*/
	margin-bottom: 20px;
}
.flex-item-center {
	align-items: center;/*縦中央揃え*/
}
.justify-content-space-between {
	justify-content: space-between;
}

.flex-item {
	margin-bottom: 20px;
}
.flex-item img {
	max-width: 100%;
	height: auto;
}
.flex-2 .flex-item {
	width: 48%;
	margin-right: 4%;
}
.flex-2 .flex-item:nth-of-type(even) {
	margin-right: 0;
}
.flex-2 .flex-item:nth-last-of-type(-n+2) {
	margin-bottom: 0;
}
.flex-3 .flex-item {
	width: 30%;
	margin-right: 5%;
}
.flex-3 .flex-item:nth-of-type(3n) {
	margin-right: 0;
}
.flex-3 .flex-item:nth-last-of-type(-n+3) {
	margin-bottom: 0;
}

.flex-4 .flex-item {
	width: 22.0%;
	margin-right: 4%;
}
.flex-4 .flex-item:nth-of-type(4n) {
	margin-right: 0;
}
.flex-4 .flex-item:nth-last-of-type(-n+4) {
	margin-bottom: 0;
}

.flex-5 .flex-item {
	width: 18.4%;
	margin-right: 2%;
}
.flex-5 .flex-item:nth-of-type(5n) {
	margin-right: 0;
}
.flex-5 .flex-item:nth-last-of-type(-n+5) {
	margin-bottom: 0;
}



/*囲み用ボックス*/
.pickup_box{
	background-color: #f8f5ef;
	padding: 2%;
}
.important_box{
	border: solid 1px #cd0000;
	padding: 2%;
}

.border_box{
	border: solid 1px #B5954A;
	padding: 2%;
}
.left_border_box{
	background-color: #f8f5ef;
	border-left: solid 4px #B5954A;
	padding: 2%;
}



.none {
	display: none;
}
.radius {
	background-color: #EBEFFB\9;
	border-radius : 6px;
}
.radius_s {
	background-color: #EBEFFB\9;
	border-radius : 3px;
}
.shadow {
	box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
}

.pdf {
	background: url(images/pdf.gif) right 50% no-repeat;
	padding-right: 32px;
}


/*テキスト*/
.txtBold {
	font-weight: bold;
}
.txtLarge {
	font-size: 125%;
}
.txtSmall {
	font-size: 87.5%;
	line-height: 1.5;
}
.txtMid {
	font-size: 100%;
}
.txtXSmall {
	font-size: 75%;
	line-height: 1.35;
}
.txtGray {
	color: #bbb;
}
.txtGreen {
	color: #439B08;
}
.txtOrange{
	color:#f05328;
}
.txtBlue {
	color: #00A0E9;
}
.txtPink {
	color: #ed838b;
}
.txtRed {
	color: #cd0000;
}
.txtGold{
	color: #B5954A;
}


.txtMincho {
	font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif; 
}


/*リストスタイル*/
.list {
	margin-left: 1.5em;
}
.list li {
	margin-bottom: 10px;
}
.list li:last-child {
	margin-bottom: 0;
}
.lstDisc {
	/*黒丸*/
	list-style-type: disc;
}
.lstNum {
	/*数字*/
	list-style-type: decimal;
}
.lstDecimal {
	/*数字*/
	list-style-type: decimal;
}
.lstCircle {
	/*白丸*/
	list-style-type: circle;
}
.lstSquare {
	/*黒四角*/
	list-style-type: square;
}
.lstAlp_L {
	/*大文字アルファベット*/
	list-style-type: upper-latin;
}
.lstNon {
	list-style-type: none !important;
}
.lstUpperRoman {
	/*大文字のローマ数字*/
	list-style-type: upper-roman;
}

.indent {
	margin-left: 2em;
}



/*左右中央寄せ（1）*/
.imgCenter,
.aligncenter {
	display: block;
	margin: 0 auto 20px;
}
.imgLeft,
.alignleft {
	float: left;
	margin: 0 20px 15px 0;
}
.imgRight,
.alignright {
	float: right;
	margin: 0 0 15px 20px;
}

/*左右中央寄せ（2）*/
.center {
	text-align: center;
}
.left,
.left th {
	text-align: left;
}
.right {
	text-align: right;
}



/*マージンリセット*/
.mRight0 {
	margin-right: 0 !important;
}
.mBottom0 {
	margin-bottom: 0 !important;
}

/*縦揃え*/
.valignTop {
	vertical-align: top;
}
.valignMid {
	vertical-align: middle !important;
}



/*テーブル*/
table {
	border-collapse: collapse;
	line-height: 1.7;
}

.table {
	border: solid 1px #e5e2de;
	border-collapse: collapse;
	font-size: 14px;
}
.table th,
.table td {
	border-bottom: solid 1px #e5e2de;
	text-align: left;
	padding: 8px 10px;
}
.table th {
	text-align: center;
	border-left: dotted 1px #ccc;
	border-right: dotted 1px #ccc;
	background-color: rgba(248,245,239,1);
	/*padding-right: 40px;*/
	font-weight: normal;
}
.table td {
	border-left: dotted 1px #ccc;
}
.table td:nth-of-type(even){
	background-color: #f1f1f1;
}
.table tr:last-of-type th,
.table tr:last-of-type td {
	/*border-bottom: none;
	padding-bottom: 0;*/
}



/*全幅*/
.fullWidth {
	width: 100%;
}

/*改行しない*/
.nowrapTable th,
.nowrap {
	white-space: nowrap;
}

/*別ページへのリンクボタン*/
.page_link_btn {
	justify-content: center;
	background-color: #f1f1f1;
	padding: 10px;
}
.page_link_btn li {
	/*flex-direction: column;*/
	align-items: center;
	border: solid 1px #03415A;
	box-sizing: border-box;
	align-self: stretch;
	background-color: #fff;
	text-align: center;
	width: 40%;
	margin: 10px 0.5% !important;
	list-style-type: none;
}
.page_link_btn li:hover {
	background-color: #03415A;
}
.page_link_btn li a {
	display: block;
	align-self: center;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 15px 2%;
	font-size: 14px;
	line-height: 1.4;
	color: #03415A;
}
.page_link_btn li a:hover {
	text-decoration: none;
	color: #fff;
}



/*サイト構成*/
html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
}
html {
	height: 100%;
}
body{
	height: 100%;
	/*font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;*/ 
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
	color: #111;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.05em;
}


/*スライドショー*/
.bx-wrapper {
	position: relative !important;
	border: none !important;
	box-shadow: none !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.bx-pager {
	bottom: -40px !important;
	padding: 0 !important;
}
.bx-pager-item {
	margin: 0 5px !important;
}
.bx-pager-item a {
	background: url(images/slide_dot.gif) 0 0 no-repeat !important;
	background-size: 13px 15px !important;
	width: 13px !important;
	height: 15px !important;
}
.bx-pager-item .active {
	background: url(images/slide_dot_active.gif) 0 0 no-repeat !important;
	background-size: 13px 15px !important;
}
.bx-pager-link {
	border-radius: none !important;
	width: 13px !important;
	height: 15px !important;
}
.bx-pager-link:hover {
	background: url(images/slide_dot_active.gif) 0 0 no-repeat !important;
	background-size: 13px 15px !important;
}



/*フォーム*/
.form input,
.form select,
.form textarea{
	max-width: 90%;
	padding: 5px 3px;
	margin: 3px;
	vertical-align: middle;

}
.form .break .wpcf7-list-item{
	display: block;
}
.form .cBox .wpcf7-list-item {
	display: inline-block;
	width: 48%;
	margin-bottom: 5px;
}
span.wpcf7-list-item {
	margin-left: 0 !important;
}
.submit {
	text-align: center;
}
.submit input {
	background-color: #333;
	border: medium none;
	color: #fff;
	margin: 0 10px;
	padding: 14px 80px;
	text-align: center;
}
.submit input:hover {
	background-color: #00A5AE;
}
.submit input:disabled {
	background-color: #999;
}
.wpcf7-radio label {
	margin-right: 1em;
}
.wpcf7c-conf {
	background-color: transparent !important;
	border: none !important;
}
div.wpcf7-validation-errors {
	border: none !important;
	color: #ff0000 !important;
	padding: 20px 0 !important;
}
.required {
	background-color: #ffff4b;
	border-radius: 3px;
	border: solid 1px #2c81d8;
	padding: 0 4px;
	margin: 0 0 0 4px;
	font-size: 625%;
	color: #2c81d8;
}
.formReq, .formAny {
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-size: 10px;
	height: 18px;
	line-height: 18px;
	margin: 0 0 0 5px;
	padding: 0 10px;
	text-align: center;
}
.formReq {
	background-color: #E83421;
}
.formAny {
	background-color: #00A5AE;
}


/*GoogleMapレスポンシブ対応*/
.gmap {
	clear: both;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
 
.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/*パンくずリスト*/
.breadcrumbBody {
	text-align: left;
	background-color: #fff;
	width: 100%;
	padding: 0 0 2em;
}
.breadcrumb {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	color:#777;
	font-size: 12px;
}
div.breadcrumb div {
	display: inline;
}
.breadcrumb span.sp{
	margin:0 10px;
}

/*ページネーション*/
.wp-pagenavi,
.nav-below {
	clear: both;
	text-align: center;
	margin: 40px auto 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-block;
	text-decoration: none;
	border: 1px solid #bbb;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0 5px;
	font-size: 11px;
	line-height: 36px;
	text-decoration: none;
}

.wp-pagenavi span.current {
	font-weight: bold;
}
.wp-pagenavi .pages {
	width: 80px;
}
.nav-previous,
.nav-next {
	display: block;
	text-decoration: none;
	width: 100px;
	height: 36px;
	padding: 0;
	margin: 0 5px;
	font-size: 12px;
	line-height: 36px;
}
.nav-previous a,
.nav-next a{
	display: block;
	border: 1px solid #bbb;
	text-decoration: none !important;
	width: 100%;
	height: 100%;
	color: #666;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current,
.nav-previous a:hover,
.nav-next a:hover {
	border-color: #333;
	color: #333 !important;
}
.nav-previous {
	float: left;
}
.nav-next {
	float: right;
}


/*colorbox*/
#cboxContent {
	margin-top: 0 !important;
}
#cboxOverlay {
	background-color: rgba(255,255,255,0.8) !important;
}
#cboxLoadedContent {
	border: solid 5px #fff !important;
}







#headBody {
	position: relative;
	border-top: solid 40px #000;
	width: 100%;
	height: 204px;
	padding: 0;
	z-index: 1;
}

.head_top {
	position: relative;
	width: 1000px;
	margin: -40px auto 0;
}
.head_top img {
	display: block;
}
.head_sato {
	float: left;
	width: 130px;
	height: 40px;
}
.head_mark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0 auto;
}
.head_mark img {
	margin: 0 auto;
}


header .sns_icon {
	position: relative;
	float: right;
	width: 172px;
	height: 20px;
	padding-top: 10px;
	padding-right: 4%;
}
.sns_icon li {
	float: left;
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 0 0 15px;
	list-style-type: none;
}
.sns_icon_base {
	width: 52px !important;
}
.sns_icon li img {
	width: 100%;
	height: auto;
}



header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.blogTitle {
	position: relative;
	text-align: center;
	width: 700px;
	height: 235;
	margin: 0 auto;
}
.blogTitle a {
	display: block;
	width: 100%;
	height: 100%;
}
.blogTitle img {
	width: 100%;
	height: auto;
	vertical-align: top;
}



#footer_body {
	background-color: #39b54a;
	border-bottom: solid 50px #000;
	width: 100%;
	padding: 40px 0 0;
}
footer {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 40px;
}


.foot_logo {
	width: 340px;
	height: 140px;
	margin: 0 auto;
}

.sato_btn {
	position: absolute;
	top: 0;
	right: 0;
}

.foot_sns {
	position: absolute;
	bottom: -50px;
	right: 0;
	width: 1000px;
	height: 50px;
}
.foot_sns ul {
	position: relative;
	float: left;
	width: 172px;
	height: 20px;
	padding-top: 15px;
}
.foot_sns li {
	float: left;
	margin-right: 15px;
	list-style-type: none;
}

.copy {
	text-align: right;
	width: 100%;
	padding: 0;
	font-size: 12px;
	color: #fff;
	line-height: 50px;
}





/*コンテンツ*/
#wrapper {
	width: 100%;
	padding-top: 90px;
	margin-bottom: 30px;
}
article.contents {
	margin: 0 auto;
}

#main {
	width: 100%;
}

.title {
	margin-bottom: 1.5em;
	font-size: 19px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}
.title a {
}
.ttl {
	border-bottom: solid 1px #111;
	margin: 0 0 1em;
	padding-bottom: 0.6em;
	font-size: 19px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}
.sttl {
	border-bottom: solid 1px #111;
	margin: 0 0 0.5em;
	padding-bottom: 0.5em;
	font-size: 16px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}
h4 {
	margin-bottom: 0.5em;
	font-size: 16px;
}
.contents p,
.contents .txt {
	margin: 0 0 1.5em;
}
.contents .txtBtm {
	margin-bottom: 3em;
}




/*トップページ*/
#topImgBody {
	position: relative;
	margin: 0 auto;
	z-index: 0;
	overflow: hidden;
}
#topImg {
	position: relative;
	z-index: 1;
}

#topImg img {
	width: 100%;
	height: auto;
}

.p_chan_btn {
	position: absolute;
	top: 32%;
	right: 0;
	width: 20%;
	z-index: 9999;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.p_chan_btn:hover{
	animation: home_pchan 1s linear infinite;
}
.p_chan_btn img {
	width: 100%;
	height: auto;
}

@keyframes home_pchan{
	0%	{transform:rotate(0deg)	translate(0,0);}
	12.5%	{transform:rotate(0.4deg)	translate(1px,-1px);}
	25%	{transform:rotate(0.8deg)	translate(0px,1px);}
	37.5%	{transform:rotate(0.4deg)	translate(-1px,0);}
	50%	{transform:rotate(0deg)	translate(0,0);}
	62.5%	{transform:rotate(-0.4deg)	translate(1px,0);}
	75%	{transform:rotate(-0.8deg)	translate(0,1px);}
	87.5%	{transform:rotate(-0.4deg)	translate(-1px,-1px);}
	100%	{transform:rotate(0deg)	translate(0,0);}
}


.biz_contents_box_body {
	background: url(img/biz_contents_box_ptn.gif) 0 bottom repeat-x;
	width: 100%;
	margin-top: -100px;
}
.biz_contents_box {
	position: relative;
	width: 1260px;
	margin: 0 auto;
	z-index: 2;
}
.tree_img {
	float: left;
}
.biz_contents {
	float: right;
	padding: 140px 136px 0 0;
}

.omakase_box_body {
	background-color: #ffff00;
	width: 100%;
	padding: 15px 0;
}
.omakase_box {
	width: 1000px;
	margin: 0 auto;
}
.omakase_txt {
	float: left;
}
.tel_img01 {
	float: right;
}


.company_body {
	width: 820px;
	margin: 0 auto;
	padding: 80px 0;
}
.company_body h2 {
	text-align: center;
	margin-bottom: 60px;
}
.company_body table {
	width: 100%;
	font-size: 18px;
}
.company_body table th {
	text-align: left;
	width: 260px;
	font-weight: normal;
	line-height: 1.3;
}
.company_body table th,
.company_body table td {
	padding: 20px 0;
	vertical-align: top;
}
.company_body table td ul {
	margin: 0;
}
.company_body table td ul li {
	list-style-type: none;
	line-height: 2.2;
}

.tel_img02 {
	width: 100%;
	margin: 80px auto 0;
}
.tel_img02 img {
	display: block;
	text-align: center;
	margin: 0 auto;
}













/*@media screen and (min-width: 1281px) {*/
@media screen and (min-width: 768px) {
/*画面幅が768px以上（PC）*/
/*.pc_only {
	display: block;
}*/
.sp_only {
	/*スマホでは非表示*/
	display: none !important;
}






}/*PC End*/





















@media screen and (max-width: 767px) {
/*画面幅が767px以下（スマホ専用スタイル）*/
.pc_only {
	/*PC以外は非表示*/
	display: none !important;
}
.sp_only {
	display: block;
}

/*Flex Box*/
.mb-flex-1 .flex-item {
	width: 100% !important;
	margin: 0 0 20px !important;
}
.mb-flex-1 .flex-item:last-of-type {
	margin-bottom: 0 !important;
}
.mb-flex-2 .flex-item {
	width: 46% !important;
	margin-right: 7% !important;
	margin-bottom: 20px !important;
}
.mb-flex-2 .flex-item:nth-of-type(even) {
	margin-right: 0 !important;
}
.mb-flex-3 .flex-item {
	width: 30%;
	margin-right: 5%;
}
.mb-flex-3 .flex-item:nth-of-type(3n) {
	margin-right: 0;
}
.mb-flex-3 .flex-item:nth-last-of-type(-n+3) {
	margin-bottom: 0;
}
.mb-flex-4 .flex-item {
	width: 23.5%;
	margin-right: 2%;
}
.mb-flex-4 .flex-item:nth-of-type(4n) {
	margin-right: 0;
}
.mb-flex-4 .flex-item:nth-last-of-type(-n+4) {
	margin-bottom: 0;
}


body{
	width: 100%;
}
#body_inner {
}
#wrapper {
}
a {
	cursor: pointer;
}
.blur {
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-ms-filter: blur(8px);
	filter: blur(8px);
}

.imgLeft,
.imgRight,
.imgCenter,
.aligncenter,
.alignleft,
.alignright {
	clear: both;
	display: block;
	width: 100%;
	margin: 0 0 10px;
}

.pdf {
	background-size: 10px 12px;
	padding-right: 14px;
}


#headBody {
	border: none;
	height: auto;
}
header {
	position: relative;
}
.blogTitle {
	width: 86%;
	padding: 0 7% 10px;
}
.blogTitle a {
	display: block;
	width: 100%;
	height: auto;
}

.head_top {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 40px 0 0;
}

.head_mark {
	position: relative;
}
.head_mark img {
	width: 100%;
	height: auto;
}
.head_sato {
	position: absolute;
	background-color: #000;
	top: 0;
	left: 0;
	width: 130px;
	max-width: 30%;
	height: auto;
	padding-left: 4%;
	z-index: 9999;
}


.foot_sns {
	position: relative;
	background-color: #000;
	bottom: auto;
	width: 100%;
	height: auto;
	margin-top: 30px;
}
header .sns_icon_body {
	background-color: #000;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 40px;
}
header .sns_icon {
	text-align: center;
	width: 192px;
	margin: 0 auto;
}
header .sns_icon li {
	margin: 0 10px;
}


#footer_body {
	border: none;
	position: relative;
	width: 100%;
	padding: 20px 0 0;
}
footer {
	text-align: left;
	width: 100%;
	margin: 0;
	padding: 0;
}

.foot_logo {
	width: 70%;
	height: auto;
	margin: 0 auto 2em;
}
.foot_logo img,
.sato_btn img {
	width: 100%;
	height: auto;
}
.sato_btn {
	text-align: center;
	position: relative;
	width: 60%;
	margin: 50px auto 0;
}

.foot_sns {
	position: relative;
	background-color: #000;
	bottom: auto;
	width: 100%;
	height: auto;
	margin-top: 30px;
}
.foot_sns ul {
	text-align: center;
	float: none;
	width: 192px;
	margin: 0 auto;
}
.foot_sns ul li {
	margin: 0 10px;
}

.copy {
	clear: both;
	text-align: center;
	width: 100%;
	padding: 10px 0 0;
	font-size: 12px;
}


.table {
	font-size: 12px;
}
/*スライドテーブル*/
.mobileSlideBlock {
	overflow-x: auto;
	position: relative;
	width: 100%;
}
.mobileSlideBlock table {
	min-width: 600px;
}

.blockTable,
.blockTable tbody,
.blockTable tr,
.blockTable th,
.blockTable td {
	display: block;
}

/*フォーム*/
.form input,
.form select,
.form textarea{
	max-width: 90%;
	margin: 3px;
	-webkit-appearance: none;
	font-size: 16px;
}


/*別ページへのリンクボタン*/
.page_link_btn li {
	width: 80%;
}


/*コンテンツ*/
#main {
	width: 86%;
	margin: 0 7%;
	font-size: 12px;
}
#main img {
	max-width: 100%;
	height: auto;
}

h1.page_title {
	text-align: center;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-weight: normal;
	font-size: 26px;
	line-height: 1.35;
}
.page_title_body img {
	width: 100%;
	height: auto;
}

.title {
	margin-bottom: 1.5em;
	font-size: 19px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}
.title a {
}
.ttl {
	border-bottom: solid 1px #111;
	margin: 0 0 1em;
	padding-bottom: 1em;
	font-size: 16px;
	font-weight: normal;
}
.sttl {
	border-bottom: solid 1px #111;
	margin: 0 0 0.5em;
	padding-bottom: 0.5em;
	font-size: 14px;
	font-weight: normal;
}
h4 {
	margin-bottom: 0.5em;
	font-size: 16px;
}

/*トップページ*/
#topImgBody {
	position: relative;
	width: 100%;
	/*padding-bottom: 50px;*/
	overflow: hidden;
	z-index: 0;
}

.p_chan_btn {
	top: 12%;
	width: 30%;
}

.biz_contents_box_body,
.biz_contents_box  {
	width: 100%;
}

.biz_contents_box_body {
	background: url(img/biz_contents_box_ptn.gif) 0 bottom repeat-x;
	background-size: 1%;
	margin: -10px 0 0;
}

.tree_img {
	width: 60%;
	height: auto;
	padding: 0;
	margin-left: -26px;
}
.biz_contents {
	width: 40%;
	height: auto;
	padding: 5% 4% 0 0;
}

.omakase_box_body {
	padding: 8px 0;
}
.omakase_box {
	width: 100%;
}
.omakase_box img {
	text-align: center;
	display: block;
	width: 86%;
	height: auto;
	margin: 0 7%;
}
.tel_img01 {
	width: 70% !important;
	margin: 5px 15% 0 !important;
}

.company_body {
	width: 100%;
	padding: 30px 0;
}
.company_body h2 {
	width: 86%;
	margin: 0 auto 20px;
}
.company_body h2 img {
	width: 100%;
	height: auto;
	margin: 0 0 10px;
}
.company_body table {
	width: 86%;
	margin: 0 auto;
	font-size: 12px;
}
.company_body table th {
	background-color: #f1f1f1;
	width: auto;
	padding-right: 4%;
	white-space: nowrap;
}
.company_body table th br {
	display: none;
}
.company_body table th,
.company_body table td {
	padding: 7px 10px;
}

.tel_img02 {
	margin-top: 40px;
}
.tel_img02 img {
	width: 86%;
	height: auto;
	margin: 0 7%;
}



























}/*スマホ End*/
