/* -----------------------------------------------------------------------------
 * 0.0 Base
 * ----------------------------------------------------------------------------- */
/* 　　　font-face
/* 　　　単独class
/* 　　　リンク画像アルファ
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 1.0 Reset
 * ----------------------------------------------------------------------------- */
/* 　　　テーブル リセット
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- 
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 4.0 Header
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 5.0 Footer
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 6.0 Contents
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 7.0 Object
 * ----------------------------------------------------------------------------- */
/* 　　　ボタン a01
 * ----------------------------------------------------------------------------- */
/* 　　　UL
 * ----------------------------------------------------------------------------- */
/* 　　　TABLE
 * ----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 8.0 Print
 * ----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
 * 0.0 Base
 * ----------------------------------------------------------------------------- */
/* font-face
 * ----------------------------------------------------------------------------- */
/*@font-face {
 	font-family: "NotoSans-r";
 	src: url("./font/notosanscjkjpregular/notosanscjkjpregular.eot");
	src: url("./font/notosanscjkjpregular/notosanscjkjpregular.eot?#iefix") format("embedded-opentype"),
 	url("./font/notosanscjkjpregular/notosanscjkjpregular.woff") format("woff"),
 	url("./font/notosanscjkjpregular/notosanscjkjpregular.svg#slick") format("svg");
	 font-weight: normal;
	 font-style: normal;
 }*/

@font-face {
 	font-family: "genericons";
 	src: url("./font/genericons/Genericons.eot");
	src: url("./font/genericons/Genericons.eot?#iefix") format("embedded-opentype"),
 	url("./font/genericons/Genericons.woff") format("woff"), url("./font/genericons/Genericons.ttf") format("truetype"),
 	url("./font/genericons/Genericons.svg#slick") format("svg");
	 font-weight: normal;
	 font-style: normal;
 }

@font-face {
 	font-family: "awesome";
 	src: url("./font/awesome/fonts/fontawesome-webfont.eot");
	 src: url("./font/awesome/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),
 	url("./font/awesome/fonts/fontawesome-webfont.woff") format("woff"), url("./font-awesome/fonts/fontawesome-webfont.ttf") format("truetype"),
 	url("./font/awesome/fonts/fontawesome-webfont.svg#slick") format("svg");
	 font-weight: normal;
	 font-style: normal;
 }



/* 単独class
 * ----------------------------------------------------------------------------- */
hr {
	clear:both;
}

.clear {
	clear:both;
}

.mb5 {
	margin-bottom:5px !important;
}
.mb10 {
	margin-bottom:10px !important;
}
.mb20 {
	margin-bottom:20px !important;
}
.mb40 {
	margin-bottom:40px !important;
}
.mb60 {
	margin-bottom:60px !important;
}
.mb80 {
	margin-bottom:80px !important;
}

.color-red {
	color:#cc0041;
}

.color-magenta {
	color:#CC0041;
}

.img-radius {
	border-radius:5px;
}


/* リンク画像アルファ
 * ----------------------------------------------------------------------------- */
#main a:hover img ,
#sidebar a:hover img,
#footer a:hover img {
	opacity: 0.70;
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	-ms-filter: "alpha(opacity=70)";
}



/* -----------------------------------------------------------------------------
 * 1.0 Reset
 * ----------------------------------------------------------------------------- */
html, 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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	font-family: inherit;
	font-size: 100%;
}

body,
button,
input,
select,
textarea {
	/*font-family:"NotoSans, Lucida Sans Unicode", "Lucida Grande", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic ProN", Meiryo, メイリオ,"ＭＳ Ｐゴシック",sans-serif;*/
	font-family: Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	color: #3f3f3f;
	line-height: 1.6;
	font-weight: 400;
}

/* 背景 */
body {
	background-color: #fff;
	background-image:
		url(image/common/bg02.png),url(image/common/bg01.jpg);
	background-position :center 0,center 0;
	background-repeat: no-repeat,repeat-x;
}

@media screen and (max-width: 1000px) {
	body {
		background-image:
			url(image/common/bg03.png),url(image/common/bg01.jpg);
		background-position :center 0,center 0;
		background-repeat: no-repeat,repeat-x;
		background-size:contain,auto;
	}
}

@media screen and (max-width: 612px) {
	body {
		background-image:
			url(image/common/bg04.png),url(image/common/bg01.jpg);
		background-position :center 0,center 0;
		background-repeat: no-repeat,repeat-x;
		background-size:contain,auto;
	}
}

/* リンクカラー */
a {
	text-decoration: none;
	color: #0071BC;
}

a:active,
a:hover {
	color: #29ABE2;
}

/* 見出しフォントサイズ */
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0 0 12px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-size: 26px;
}
h2 {
	font-size: 21px;
}
h3 {
	font-size: 16px;
	line-height:1.2em;
}
h4 {
	font-size: 14px;
}
h5 {
	font-size: 14px;
}

p {
	margin-bottom:20px;
}

/* 選択 反転カラー */
::selection {
	background: #D1D3CD;
	color: #888;
	text-shadow: none;
}

::-moz-selection {
	background: #D1D3CD;
	color: #888;
	text-shadow: none;
}


/* テーブル リセット
 * ----------------------------------------------------------------------------- */
table {
	border:none;
}

table th,
table td {
	border:none;
}
table th {
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}



/* -----------------------------------------------------------------------------
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------- */
/* Buttons */
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background-color: #fa6428;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background-color: #ff8c28;
}

button:active,
.button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	background-color: #ff8c28;
}

blockquote.alignleft,
figure.wp-caption.alignleft,
img.alignleft {
	margin: 7px 15px 7px 0;
}

blockquote.alignright,
figure.wp-caption.alignright,
img.alignright {
	margin: 7px 0 7px 15px;
}


/* 画像 */
img {
	height: auto;
	max-width: 100%;
}

/* 画像 Alignment */
@media screen and (max-width: 782px) {
	img.alignleft,
	img.alignright {
		max-width:65%;
	}
}

@media screen and (max-width: 672px) {
	img.alignleft,
	img.alignright {
		max-width:50%;
	}
}

@media screen and (max-width: 400px) {
	img.alignleft,
	img.alignright {
		float: none;
		width:auto;
		max-width:100%;
	}

	img.alignleft,
	img.alignright {
		margin-left:0;
		margin-right:0;
	}
}


/* ----------------------------------------------------------------------------- 
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------- */
html,body {
	height:100%;
}

.site {
	width: 100%;
	height: auto !important;
	min-height: 100%;
	position: relative;
}

.site-main {
background-color: transparent;
	position: relative;
	padding-bottom:290px;
}


/* -----------------------------------------------------------------------------
 * 4.0 Header
 * ----------------------------------------------------------------------------- */
.site-header-inner {
	width:100%;
	max-width: 1000px;
	height:220px;
	margin: 0 auto;
	position: relative;
	padding: 0;
	text-align:center;
}

.site-header-inner .header-logo {
	padding-top:20px;
	padding-bottom:68px;
}

.site-header-inner .header-tel {
	position:absolute;
	bottom:5px;
	right:0px;
}

@media screen and (max-width: 850px) {
	.site-header-inner .header-tel {
		width: 38%;
	}
}
@media screen and (max-width: 780px) {
	.site-header-inner .header-tel {
		display:none;
	}
}


/* main menu
 * ----------------------------------------------------------------------------- */
.header-menu-box {
	width:100%;
	height:48px;
	position:absolute;
	top:172px;
	left:0;
	z-index:9999999;
	over-flow:hidden;
	background:#fff;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	box-shadow:0 -2px 4px -2px rgba(0,0,0,0.4) inset,0 2px 4px -2px rgba(0,0,0,0.4) inset;
}

.header-menu-scroll {
	position:fixed;
	top:0;
	left:0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.header-menu-inner {
	max-width:1000px;
	margin:0 auto;
	text-align:center;
}

img.sp-menu-tel {
	display:none;
}

ul.header-menu {
	list-style:none;
	margin:8px 0 0;
}

ul.header-menu li {
	font-weight:500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscal;
	display:inline-block;
	padding:0px 15px 0 35px;
	margin-right:20px;
	line-height:32px;
	background-image:
		url(image/common/menu_mark.png);
	background-position :left 3px;
	background-repeat: no-repeat;
	border-bottom:2px solid #fff;
}

ul.header-menu li:last-child {
	margin-right:0px;
}

ul.header-menu li:hover {
	border-bottom:2px solid #d0b391;
}

ul.header-menu li a {
color:#351712;
}
ul.header-menu li a:hover {
color:#a0928f;
}

#menutoggle {
	display:none;
}

@media screen and (max-width: 780px) {
.header-menu-box {
	overflow:hidden;
	position:relative;
	top: 0;
	left: 0;
	height:48px;
	margin-top:-48px;
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	transition: all 0s;
}

.header-menu-box.toggle-on {
	overflow:visible;
	height:auto;
}

.header-menu-scroll {
	position:relative;
	top: 0;
	left: 0;
}

.header-menu-inner {
	text-align:left;
	padding:0px 20px 10px;

	background-image:
		url(image/common/sp_menu_bar.gif);
	background-position :left 48px;
	background-repeat: repeat-x;
}

img.sp-menu-tel {
	display:block;
}

ul.header-menu {
	display:none;
	margin: 10px 0 0 0;
}

ul.header-menu li {
	display:block;
	padding:0px 15px 0 32px;
	line-height:32px;
}

.header-menu-box.toggle-on ul.header-menu {
	display:block;
}

#menutoggle {
	display:block;
	/*background-color:rgba(0,0,0, 0.8);*/
	background-image:
		url(image/common/toggle_bg.jpg);
	background-position :0 0;
	background-repeat: no-repeat;
	width: 48px;
	height: 48px;
	position:absolute;
	top:0px;
	right:0px;
	text-align: center;
	cursor: pointer;
}

#menutoggle:hover,
#menutoggle:active {
	/*background:rgba(0,0,0, 0.5);*/
	background-image:
		url(image/common/toggle_bg_hover.jpg);
	background-position :0 0;
	background-repeat: no-repeat;
}

#menutoggle:before {
	content: "\f419";
	display: inline-block;
	margin-top: 12px;
	font: normal 24px/1 genericons;
	color: #fff;
	vertical-align: text-bottom;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#menutoggle .menutoggle-text {
	display: block;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}
}



/* -----------------------------------------------------------------------------
 * 5.0 Footer
 * ----------------------------------------------------------------------------- */
.site-footer,
.site-info,
.site-footer a {
	color:#3f3f3f;
}

.site-footer {
	background-color: transparent;
	width:100%;
	height:250px;
	position:absolute;
	bottom:0; 
		background-image:
			url(image/common/footer_bg.jpg);
	background-position :0 0;
	background-repeat: repeat;
}

/* コピーライト */
.site-info {
	background-color: transparent;
	font-size:12px;
	line-height:35px;
	height:35px;
	color: #614a46;
	text-align:center;
}

/* ページトップアンカー */
#pageTop {
	display:block;
	/*background:rgba(0,0,0, 0.8);*/
	background-image:
		url(image/common/toggle_bg.jpg);
	background-position :0 0;
	background-repeat: no-repeat;
	width: 48px;
	height: 48px;
	position:fixed;
	bottom:10px;
	right:0px;
	z-index:99999999;
	text-align: center;
	cursor: pointer;
}

#pageTop:hover,
#pageTop:active {
	/*background:rgba(0,0,0, 0.5);*/
	background-image:
		url(image/common/toggle_bg_hover.jpg);
	background-position :0 0;
	background-repeat: no-repeat;
}

#pageTop:before {
	content: "\f062";
	display: inline-block;
	margin-top: 12px;
	font: normal 24px/1 awesome;
	color: #fff;
	vertical-align: text-bottom;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#pageTop .pagetop-text {
	display: block;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}


.footer-contents {
	background:rgba(255,255,255,0.5);
}

.footer-contents-inner {
	padding:10px;
	text-align:center;
	max-width:1000px;
	margin:0 auto;
}
.footer-contents-inner img {
	display: inline-block;
	vertical-align: middle;
	margin: 10px;
}
.footer-contents-inner p {
	display: inline-block;
	margin-bottom:0;
	text-align: left;
	vertical-align: middle;
}

.footer-contents-inner .footer-tel {
	color:#333;
	font-size:21px;
	font-weight:600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* -----------------------------------------------------------------------------
 * 6.0 Contents
 * ----------------------------------------------------------------------------- */
.site-contents {
	max-width: 1000px;
	margin: 0px auto;

}

.site-contents-inner {
	max-width: 900px;
	margin: 0px auto;
	margin-bottom:40px;
	padding:20px 20px;
	background:#fff;
	border-radius:10px;
}

@media screen and (max-width: 400px) {
	.site-contents-inner {
		padding:0 10px 0;
	}
}

/* inner borderアリ */
.site-contents-inner-b {
	max-width: 860px;
	border:1px solid #dbd1c6;
	border-radius:5px;
}

@media screen and (max-width: 900px) {
	.site-contents-inner-b {
		margin: 0px 10px;
	}
}


/* title
 * ----------------------------------------------------------------------------- */
/* h1 */
.site-contents h1 {
	color:#5b3833;
	background-image:
		url(image/common/h1_title01.png);
	background-position :5px center;
	background-repeat: no-repeat;
	border-bottom:5px solid #dbd1c6;
	margin-bottom:30px;
	padding:10px 10px 10px 50px;
}

/* page-title h1 */
.page-title {
	padding-top:20px;
	padding-bottom:10px;
	background-image:
		url(image/common/page_titlebg.png);
	background-position :center bottom;
	background-repeat: no-repeat;
	margin-bottom:20px;
}
.page-title h1 {
	background-image:none;
	border-bottom:0px solid #fff;
	text-shadow:
		0px -2px 2px #fff,
		2px 0px 2px #fff,
		0px 2px 2px #fff,
		-2px 2px 2px #fff;
	padding:10px 10px 15px 35px;
	margin-bottom:0px;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* h2 */
.site-contents h2 {
	color:#555;
	padding:10px 5px;
	font-size:21px;
	font-weight:600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-bottom:10px;
	border-bottom: 1px solid #dbd1c6;
}
.site-contents h2:before {
	content: "\f0da";
	font: normal 12px/1 Awesome;
	position: relative;
	top: -3px;
	color:#ff8c28;
	margin-right:10px;
}

/* h3 */
.site-contents h3 {
	padding:5px 20px;
	font-size:18px;
	font-weight:600;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin:0 20px 10px;
	border-radius:5px;
	display:inline-block;
	color:#fff;
	background:#13ad67;
}

/* p */
.site-contents p {
	padding:0px 20px;
	margin-bottom:10px;
}



/* -----------------------------------------------------------------------------
 * 7.0 Object
 * ----------------------------------------------------------------------------- */
/* ボタン a01
 * ----------------------------------------------------------------------------- */
.button-set a {
	border: none;
	font-family: inherit;
	font-size: 18px;
	color: inherit;
	background: none;
	cursor: pointer;
	display: inline-block;
	letter-spacing: normal;
	outline: none;
	position: relative;
	font-weight: 700;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-transform: uppercase;
	padding: 8px 30px 7px 30px;
}

/*.button-set a:after {
 position: absolute;
top:8px;
right:5px;
transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
	content: '\f431';
	font: normal 18px/1 Genericons;
	vertical-align:middle;
}*/
/*
.button-set a:hover:after {
	color: #fa6428;
}*/

/* Button レイアウト */
.button-set .btn01 {
	color: #fff;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	background:#13ad67;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.button-set .btn01 {
	border: 1px solid #13ad67;
	border-radius: 5px;
}

.button-set .btn01:hover {
	border: 2px solid #13ad67;
	color: #13ad67;
	background-color:#fff;
	padding: 7px 89px 6px 89px;

	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.button-set .icon-contact:before {
	content: "\f003";
	font: normal 18px/1 awesome;
	position: relative;
	top: -1px;
	color:#FFF;
	margin-right:8px;
}

.button-set .icon-contact:hover:before {
color:#13ad67;
}

@media screen and (max-width: 450px) {
	.button-set .btn01:hover {
		padding: 7px 59px 6px 59px;
	}
}

/* Button 配置 */
.button-set-right {
	text-align:right;
	margin-bottom:15px;
}

.button-set-center {
	text-align:center;
	margin-bottom:15px;
}



/* テーブル レイアウト <table>
----------------------------------------------------------------- */
.site-contents table {
	width: 100%;
	padding:0 20px;
	border-collapse: separate;
	border-spacing: 10px 8px;
	border: none;
	margin-bottom:20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

.site-contents table th,
.site-contents table td {
	padding: 10px;
	line-height: 1.4;
}
 
.site-contents table th {
	background-color:#efefef;
	text-align: left;
	overflow: visible;
	position: relative;
	color: rgba(0,0,0,0.7);
	border-top:0px solid #ccc;
	border-right:0px solid #ccc;
	border-bottom:1px solid #ddd;
	border-left:0px solid #ccc;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*.site-contents table th:before {
	content: "\f0da";
	font: normal 12px/1 awesome;
	vertical-align:middle;
	position: relative;
	top: -1px;
	color:#0f6fb2;
	margin-right:5px;
}*/

.site-contents table td {
	background-color: rgba(255, 255, 255, 0.0);
	border-top:0px solid #ccc;
	border-right:0px solid #ccc;
	border-bottom:1px solid #ddd;
	border-left:0px solid #ccc;
	padding-left: 20px ;
}

/* テーブル レイアウト <table> SP */
@media screen and (max-width: 783px) {
	.site-contents table {
		padding:0 10px;
	}

	.site-contents table th {
		max-width: 100%;
		width: 100%;
		display:block;
		border-top:1px solid #ccc;
		border-right:1px solid #ccc;
		border-bottom:0px solid #ccc;
		border-left:1px solid #ccc;
		-webkit-box-sizing: border-box;
		-moz-box-sizing:    border-box;
		box-sizing:         border-box;
		border-radius: 5px 5px 0px 0px;
		overflow:hidden;
	}

	.site-contents table td {
		width: 100%;
		display:block;
		border-top:0px solid #ccc;
		border-right:1px solid #ccc;
		border-bottom:1px solid #ccc;
		border-left:1px solid #ccc;
		-webkit-box-sizing: border-box;
		-moz-box-sizing:    border-box;
		box-sizing:         border-box;
		border-radius: 0px 0px 5px 5px;
		overflow:hidden;
	}
}

/* ul リスト
----------------------------------------------------------------- */
.site-contents-inner ul {
	list-style:none;
	margin:0 0 30px 0;
	padding: 0 20px;
}

.site-contents-inner ul li {
	border-bottom:1px dotted #ccc;
	padding: 8px 20px;
}

.site-contents-inner ul li:before {
	content: "\f152";
	font: normal 12px/1 Awesome;
	position: relative;
	top: -1px;
	margin-left:-8px;
	font-weight:normal;
	color:#13ad67;
	padding-right:8px;
}





/* -----------------------------------------------------------------------------
 * ページ個別
 * ----------------------------------------------------------------------------- */
/* 取扱商品 main画像*/

.item-img {
	width:100%;
	max-width:600px;
	 display: block;
	margin:0 auto 20px;
}


/* 会社概要 沿革 */
.site-contents table.abouthistory {
	border-collapse: separate;
	border-spacing: 0px 8px;
}

.site-contents table.abouthistory th {
	background-color:#fff;
	text-align: left;
	overflow: visible;
	position: relative;
	color: rgba(0,0,0,0.4);
	border-top:0px solid #ccc;
	border-right:0px solid #ccc;
	border-bottom:1px solid #ddd;
	border-left:0px solid #ccc;
	width:150px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing:    border-box;
		box-sizing:         border-box;
}

.site-contents table.abouthistory th:after {
	content: "\f138";
	font: normal 12px/1 awesome;
	position: relative;
	top: -1px;
	color:#dbd1c6;
	margin-left:5px;
}

/* テーブル レイアウト <table> SP */
@media screen and (max-width: 783px) {
	.site-contents table.abouthistory th {
		max-width: 100%;
		width: 100%;
		display:block;
		border-top:0px solid #ccc;
		border-right:0px solid #ccc;
		border-bottom:0px solid #ccc;
		border-left:0px solid #ccc;
		-webkit-box-sizing: border-box;
		-moz-box-sizing:    border-box;
		box-sizing:         border-box;
		border-radius: 5px 5px 0px 0px;
		overflow:hidden;
	}

	.site-contents table.abouthistory th:after {
		content: "\f13a";
	}

	.site-contents table.abouthistory td {
		width: 100%;
		display:block;
		border-top:1px dotted #ccc;
		border-right:0px solid #ccc;
		border-bottom:2px solid #ddd;
		border-left:0px solid #ccc;
		-webkit-box-sizing: border-box;
		-moz-box-sizing:    border-box;
		box-sizing:         border-box;
		border-radius:0;
		overflow:hidden;
	}
}



/* -----------------------------------------------------------------------------
 * 8.0 Print
 * ----------------------------------------------------------------------------- */
@media print {
	body {
		color: #2b2b2b;
		font-size: 8pt;
	}

	.site-contents h1 {
		font-size: 10pt;
	}
	.site-contents h2 {
		font-size: 12pt;
	}
	.site-contents h3 {
		font-size: 12pt;
	}

/* display:none */
	#pageTop {
		display:none!important;
	}

	#header-menu,
	.site-header-inner .header-tel {
		display:none;
	}

/* その他調整 */
	body {
		background-image:
			url(image/common/bg04.png),url(image/common/bg01.jpg);
		background-position :center 0,center 0;
		background-repeat: no-repeat,repeat-x;
		background-size:contain,auto;
	}
	.site-header-inner {
		height: 150px;
	}
	.site-main {
		padding:0 100px 40px;
	}
	.site-contents-inner {
		margin-bottom:10px;
	}
	.top-news img {
		max-width:200px;
	}

	.site-footer {
		height:20px;
		background-image:none;
		position:static;
	}

/* flexslider */
	.site-main .flexslider {
		display:none;

		position:static;
		padding:0!important;
	}
	ul.flex-direction-nav,
	ol.flex-control-paging {
		display:none;
	}

}



/* -----------------------------------------------------------------------------
 * その他
 * ----------------------------------------------------------------------------- */
/* slide 左右ナビ */
.flex-direction-nav a:before {
	line-height:1em;
}

/* Google map */
#map-single {
	width: 95%;
	height: 300px;
	border-radius: 5px;
	border: 3px solid #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	margin-top: 20px;
	margin-left:auto;
	margin-right:auto;
	text-align:left;
	overflow:hidden;
}
@media screen and (max-width: 400px) {
	#map-single {
		width: 90%;
	}
}

#map-single img {
	max-width: initial;
	max-width: unset;
}
























/* 以下不要 */





/* ul リスト 2列組*/
.site-content .entry-content ul.ul2column li {
	width:49%;
	display:inline-block;
	box-sizing: border-box;
	border-left:10px solid rgba(255, 255, 255, 0);
	border-right:10px solid rgba(255, 255, 255, 0);
}

@media screen and (max-width: 783px) {
	.site-content .entry-content ul.ul2column li {
		width:100%;
		border-left: 0px solid rgba(255, 255, 255, 0);
		border-right: 0px solid rgba(255, 255, 255, 0);
	}
}




/* テーブル レイアウト <table> SP（thを使用しない）*/
@media screen and (max-width: 783px) {
	.site-content table.sp-table-td td {
		width: 100%;
		display:block;
		border-top:0px solid #ccc;
		border-right:0px solid #ccc;
		border-bottom:1px solid #ccc;
		border-left:0px solid #ccc;
		-webkit-box-sizing: border-box;
		-moz-box-sizing:    border-box;
		box-sizing:         border-box;
		border-radius: 0px;
		overflow:hidden;
	}
}



/* テーブル レイアウト01 td 交互に背景*/
.site-content table.table-mutual {
	border-spacing: 0px 0px;
}

.site-content table.table-mutual tr:nth-child(odd) td {
	background-color: #f9f8f4;
}



/* テーブル レイアウト02 罫線有り */
.site-content table.table-border {
	border-collapse: collapse;;
	border-top:1px solid #ccc;
}
.site-content table.table-border td{
		border-top:0px solid #ccc;
		border-right:1px solid #ccc;
		border-bottom:1px solid #ccc;
		border-left:1px solid #ccc;
		border-radius: 0px;
}



/* テーブル レイアウト03 画像が左右に並ぶ */
.site-content table.table-img,
.site-content table.table-img-sp {
	border-collapse: collapse;;
	border-spacing: 0;
	border: none;
	margin-bottom:20px;
table-layout: fixed;
}

.site-content table.table-img-sp td,
.site-content table.table-img td {
	border: none;
	padding:5px;
	width: 50%;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	text-align:center;
}

/* レシポンシブ対応 */
@media screen and (max-width: 600px) {
	.site-content table.table-img-sp td {
		width: 100%;
		display:block;
		border: none;
		border-radius: 0;
		overflow:hidden;
	}
}

/* 中に入れる画像にフチを入れる */
.site-content table.table-img-border img {
	border:3px solid #fff;
	box-shadow:0 0 1px 1px #ccc;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	margin:1px;
}





/* 2019年6月15日更新 - google map */
.googlemap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.googlemap iframe,
.googlemap object,
.googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* 2019年6月15日更新 - トップページ */
/* top item */
.site-contents-inner .top-item {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.top-item img.pc-itemimg,
.top-item img.sp-itemimg {
	margin-bottom: 20px;
}

@media screen and (max-width: 782px) {
	.top-item img.pc-itemimg {
		display: none;
	}
}
@media screen and (min-width: 783px) {
	.top-item img.sp-itemimg {
		display: none;
	}
}

.top-itembox > img {
	width: 42%;
	float: right;
	border-radius: 5px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.2)
}

.top-itembox-inner {
	width: 57%;
	float: left;
}

.top-itembox-inner {
	text-align: left!important;
}

@media screen and (max-width: 782px) {
	.top-itembox > img,
	.top-itembox-inner {
		width: 100%;
		float: none;
	}
}

.site-contents-inner .top-item ul {
	padding: 0;
}
.site-contents-inner .top-item ul li:before {
	content: "";
	top: 0;
	margin-left: 0;
	padding-right: 0;
}
.site-contents-inner .top-item h3 {
	font-size: 21px;
	font-weight: 600;
	padding: 5px 20px;
	margin: 0 0 10px;
	color: #fff;
	background: #4b2300;
	border-radius: 5px;
	display: block;
}
.site-contents-inner .top-item h4 {
	font-size: 18px;
	font-weight: 600;
	color: #736357;
	border: 1px solid #948175;
	border-radius: 5px;
	display: inline-block;
	padding: 5px 20px;
	margin-bottom:10px;
}

/* yahoo button
----------------------------------------------------------------- */
.button-pt01 {
	margin: 0 5px 5px 0;
	text-transform: none;
	vertical-align: middle;
	display: inline-block;
	outline: none;
	cursor: pointer;

	background-color: #fff;
	border-radius: 5px;
	color: #bb272d;
	border: solid 2px #bb272d;
	box-shadow: none;

	font-size: 24px;
	font-weight:600;

	padding: 13px 20px;
	display: inline-block;
	min-width: 350px;
	line-height: 1;
	box-sizing: border-box;
}

.button-pt01 img {
	vertical-align: middle;
}
.button-pt01 img.yl-link-hover {
	display: none;
}
.button-pt01:hover img.yl-link {
	display: none;
}
.button-pt01:hover img.yl-link-hover {
	display: inline-block;
}

.button-pt01:hover,
.button-pt01:focus {
	box-shadow: none;
	background: rgba(188,39,45,1);
	color: #fff;
}

@media screen and (max-width: 400px) {
	.button-pt01 {
		font-size: 21px;
		min-width: 0;
	}
}