@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	color: #363636;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	-webkit-text-size-adjust: none;
	word-wrap: break-word;
	word-break: break-all;
	letter-spacing: 1px;
	line-height: 1.6;
	position: relative;
	left: 0;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	transition: all .3s;
	color: #545454;
}

a:hover {
	opacity: .8;
}

p {
	font-size: 16px;
	font-size: 1.6rem;
}

img {
	vertical-align: bottom;
}

:focus {
	outline: 0;
}


/* Heading */

h1 {
	width: 160px;
	height: 65px;
	float: left;
	font-size: 0px;
	margin: 15px 0 0;
}

h1 a {
	width: 100%;
	height: 100%;
	background: url(../img/logo.png) no-repeat left top;
	display: block;
	
}

@media screen and (max-width: 999px) {
	h1 {
		width: 100px;
		height: 40px;
		margin: 15px 0 15px 10px;
	}
	
	h1 a {
		background-size: 100% auto;
	}
}


/* Common */


.wrapper {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.bg_white {
	width: 100%;
	background: #fff url(../img/shadow.png) no-repeat center top;
	padding: 40px 0;
	overflow: hidden;
}

.bg_beige {
	background: #ece7d8 url(../img/shadow.png) no-repeat center top;
	background: url(../img/shadow.png) no-repeat center top, -webkit-linear-gradient(top,  #ece7d8 15%,#ece7d8 15%,#ffffff 100%);
	background: url(../img/shadow.png) no-repeat center top, linear-gradient(to bottom,  #ece7d8 15%,#ece7d8 15%,#ffffff 100%);
	padding: 40px 0;
	overflow: hidden;
}

.sans_serif {
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

.sp {
	display: none;
}

.bottom20 {
	margin-bottom: 20px;
}

.bottom30 {
	margin-bottom: 30px;
}

.bottom50 {
	margin-bottom: 50px;
}

.font_bold {
	font-weight: bold !important;
}

.text_center {
	text-align: center;
}


@media screen and (max-width: 999px) {
	
	.pc {
		display: none !important;
	}
	
	.sp {
		display: block !important;
	}
	
	.bg_white,
	.bg_beige {
		padding: 25px 0;
	}

}


/* Header */

header {
	width: 100%;
	max-width: 1000px;
	overflow: hidden;
	margin: 0 auto 15px;
	position: relative;
}

.header_info {
	float: right;
	width: 510px;
	border: solid #e4dfd6;
	border-width: 0 1px 1px;
	border-radius: 0 0 3px 3px;
	background: #fff;
	text-align: center;
	padding: 0 1px 1px;
}

.header_info p {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 35px;
	background: #e4dfd6;
}

.header_info ul {
	list-style: none;
}

.header_info ul li {
	float: left;
	width: 50%;
	height: 50px;
}

.header_info ul li.tel01 {
	background: url(../img/border_dashed.png) no-repeat right center;
}

.header_info ul li.tel01 a,
.header_info ul li.tel02 a {
	display: block;
	height: 100%;
}

.header_info ul li.tel01 a {
	background: url(../img/header_tel01.png) no-repeat center center;
}

.header_info ul li.tel02 a {
	background: url(../img/header_tel02.png) no-repeat center center;
}

@media screen and (max-width: 999px) {
	
	header {
		margin: 0 auto;
	}
	
	.header_info {
		float: none;
		width: 100%;
		clear: both;
		overflow: hidden;
		border: none;
		border-radius: 0;
		padding: 0;
	}
	
	.header_info ul li.tel01 a,
	.header_info ul li.tel02 a {
		background-size: auto 35px;
	}
}


/* Global Nav */

nav {
	clear: both;
	background: url(../img/bg_nav.jpg) repeat-x;
	height: 70px;
}

ul.nvMenu  {
	overflow: hidden;
	padding: 17px 0;
	background: url(../img/border_dashed.png) no-repeat right center;
}

ul.nvMenu li {
	float: left;
	width: 20%;
	height: 36px;
	text-align: center;
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	background: url(../img/border_dashed.png) no-repeat left center;
}


ul.nvMenu li a {
	display: block;
	height: 100%;
	background: url(../img/nav_pc.png) no-repeat center center;
	text-indent: -9999px;
}

ul.nvMenu li.nav01 a {
	background-position: 0 0;
}

ul.nvMenu li.nav02 a {
	background-position: -200px 0;
}

ul.nvMenu li.nav03 a {
	background-position: -400px 0;
}

ul.nvMenu li.nav04 a {
	background-position: -600px 0;
}

ul.nvMenu li.nav05 a {
	background-position: -800px 0;
}

.open {
	display: none;
}

@media screen and (max-width: 999px) {
	
	nav {
		height: auto;
	}
	
	ul.nvMenu {
		float: none;
		margin: 0;
		padding: 0;
		background: #f9f6f1 url(../img/bg_nav_sp.jpg) repeat-x left top;
		background-size: auto 90%;
	}
	
	ul.nvMenu li {
		display: block;
		width: 100% !important;
		height: auto;
		background: url(../img/border_nav_sp.png) repeat-x center bottom;
		padding: 0;
	}
	
	ul.nvMenu li a {
		padding: 15px 0;
		height: 50px;
		width: 100% !important;
		background-size: auto 42px !important;
	}
	
	ul.nvMenu li.nav01 {
		display: none;
	}
	
	ul.nvMenu li.nav02 a {
		background: url(../img/nav01_sp.png) no-repeat center center;
	}
	
	ul.nvMenu li.nav03 a {
		background: url(../img/nav02_sp.png) no-repeat center center;
	}
	
	ul.nvMenu li.nav04 a {
		background: url(../img/nav03_sp.png) no-repeat center center;
	}
	
	ul.nvMenu li.nav05 a {
		background: url(../img/nav04_sp.png) no-repeat center center;
	}
	
	#slideBox {
		display: none;
		width: 100%;
		border-bottom: 1px solid #ded5c4;
	}
	
	.open {
		display: block !important;
		width: 50px;
		height: 50px;
		background: url(../img/toggle.png) no-repeat top center;
		background-size: auto 50px;
		float: right;
		margin-right: 0.625em;
		text-indent: -9999px;
	}

}

/* Breadcrumb */

.breadcrumb {
	background: #e4dfd6;
	padding: 10px 0;
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

.breadcrumb ul {
	list-style: none;
	font-size: 11px;
	font-size: 1.1rem;
	overflow: hidden;
}

.breadcrumb ul li {
	float: left;
	line-height: 1;
	border-right: 1px solid #828282;
	padding: 0 8px;
}

.breadcrumb ul li:first-child {
	padding: 0 8px 0 0;
}

.breadcrumb ul li:last-child {
	border-right: none;
}

.breadcrumb ul li a {
	color: #828282;
}

.breadcrumb ul li a:hover,
.breadcrumb ul li a:focus {
	color: #3e3e3e;
	opacity: 1;
}

@media screen and (max-width: 999px) {
	
	.breadcrumb {
		padding: 10px;
	}
	
	.breadcrumb ul li {
		line-height: 1.3;
	}

}


/* Index */


ul#tab {
	zoom: 1;
	border-bottom: 3px solid #ec5613;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

ul#tab:after { 
	content:"."; 
	display: block; 
	height:0px; 
	clear:both; 
	line-height:0; 
	visibility:hidden;
}

ul#tab li {
	float: left;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-right: 2px;
}

ul#tab li:last-child {
	background: none;
}

ul#tab li a {
	display: block;
	width: 200px;
	padding: 15px 0;
	text-decoration: none;
}

ul#tab li:first-child {
	border: solid #ff710b;
	border-width: 1px 1px 0 1px;
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}

ul#tab li:first-child a {
	background: url(../img/bg_tab01.jpg) repeat-x;
	color: #fff;
	text-shadow: 0 1px 0 #ff710b;
}

ul#tab li:nth-child(2) {
	border: solid #dbcca5;
	border-width: 1px 1px 0 1px;
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}

ul#tab li:nth-child(2) a {
	background: url(../img/bg_tab02.jpg) repeat-x;
	color: #5b5b5b;
	text-shadow: 0 1px 0 #fff;
}

#detail {
	clear: both;
	overflow: hidden;
	width: 100%;
	height: auto;
	padding: 15px 0;
}

.tabbox {
	display: none;
}


ul.news {
	list-style: none;
	font-size: 16px;
}

ul.news li {
	clear: both;
	overflow: hidden;
	padding: 15px 0;
	background: url(../img/border_dashed_sc.png) repeat-x center bottom;
}

ul.news li:first-child {
	padding: 0 0 15px;
}

ul.news li .date {
	width: 130px;
	float: left;
	padding: 0 0 0 10px;
	font-size: 14px;
}

ul.news li .text {
	margin-left: 130px;
}

ul.news a {
	color: #ff7e20;
	box-shadow: 0 1px 0 currentColor;
}

h3.title_products {
	margin: 0 0 30px;
	text-align: center;
}

.bxslider img {
	margin: 0 auto;
	display: block;
}

.slide01 {
	background: url(../img/bg_slide01.png) no-repeat center center;
}

.slide02 {
	background: url(../img/bg_slide02.png) no-repeat center center;
}

.slide03 {
	background: url(../img/bg_slide03.png) no-repeat center center;
}

.slide04 {
	background: url(../img/bg_slide04.png) no-repeat center center;
}

.bx-controls {
	display: none !important;
}

.wrapper.schedule {
	max-width: 800px;
	min-width: 300px;
	margin: 2.0833% auto;
}
 
.googlecal {
	position: relative;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
}

.googlecal iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
 
@media only screen and (min-width: 600px) {
  
  .googlecal {
		padding-bottom: 75%;
  }
  
}



@media screen and (max-width: 999px) {
	
	.bxslider img {
		margin: 0 auto;
		display: block;
		width: 100%;
		height: auto;
	}
	
	.slide01,
	.slide02,
	.slide03,
	.slide04 {
		background-size: cover;
	}
	
	ul#tab li {
		width: 50%;
		margin: 0;
	}
	
	ul#tab li a {
		width: 100%;
		padding: 10px 0;
	}
	
	ul.news li .date {
		width: 100%;
		float: none;
		margin: 0 0 5px;
		padding: 0;
	}
	
	ul.news li .text {
		margin: 0;
	}
	
	h3.title_products img {
		width: 100%;
		height: auto;
	}
	
	#detail {
		padding: 15px 2%;
	}

}



/* Products */

.product_img {
	height: 500px;
	width: 100%;
	clear: both;
	overflow: hidden;
}

.product_img.list {
	background: url(../img/mainimg_products.jpg) no-repeat center center;
}

h2.title_products {
	text-align: center;
}

.row_products {
	margin: 0 -5px;
}

.row_products .col2 {
	width: 50%;
	float: left;
	padding: 0 5px 30px;
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

.row_products .col2:last-child,
.row_products .col2:nth-last-child(2) {
	padding: 0 5px;
}

.row_products .col2 img {
	margin-bottom: 20px;
}

.row_products .col2 p {
	font-size: 14px;
	font-size: 1.4rem;
	padding: 0 5px 0 0;
}

.bg_products_beige {
	background: #f7f4ed url(../img/shadow.png) no-repeat center top;
	padding: 75px 0 70px;
	overflow: hidden;
}

.bg_products_beige h3 {
	text-align: center;
	margin: 0 0 30px;
}

h2.content_title {
	background: #ffb5af url(../products/img/bg_h2.png) repeat-x left top;
	border: solid #ff6e67;
	border-width: 1px 0;
	text-align: center;
	padding: 25px 0;
	position: relative;
}

h2.content_title:before {
	content: '';
	position: absolute;
	background: #ff8a84;
	width: 1px;
	height: 25px;
	display: block;
	top: -25px;
	left: 50%;
}

h2.content_title:after,
h2.customer_title:after {
	content: '';
	background: url(../img/shadow.png) no-repeat;
	width: 100%;
	height: 10px;
	display: block;
	position: absolute;
	bottom: -10px;
}

.content_triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 7px 0 7px;
	border-color: #ff8a84 transparent transparent transparent;
	margin: 1px auto 25px;
}

h2.customer_title {
	background: #7cf1fe url(../products/img/bg_customer.png) repeat-x left top;
	text-align: center;
	padding: 25px 0;
	position: relative;
}

h2.customer_title:before {
	content: '';
	position: absolute;
	background: #1ccce1;
	width: 1px;
	height: 25px;
	display: block;
	top: -25px;
	left: 50%;
}

.customer_triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 7px 0 7px;
	border-color: #1ccce1 transparent transparent transparent;
	margin: 1px auto 25px;
}

.products_icon {
	position: absolute;
	top: -85px;
	right: 0;
	z-index: 100;
}

.row_voice {
	margin: 0 -10px;
}

.row_voice .col3_voice {
	width: 33.3333333%;
	padding: 0 10px;
	float: left;
}

.row_voice .col3_voice .voice_wrapper {
	position: relative;
	background: #ffffff;
	border: 2px solid #1ccce1;
}

.row_voice .col3_voice .voice_wrapper.efforts {
	height: 340px;
}

.row_voice .col3_voice .voice_wrapper:after,
.row_voice .col3_voice .voice_wrapper:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.row_voice .col3_voice .voice_wrapper:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 9px;
	margin-left: -9px;
}

.row_voice .col3_voice .voice_wrapper:before {
	border-color: rgba(28, 204, 225, 0);
	border-top-color: #1ccce1;
	border-width: 12px;
	margin-left: -12px;
}

.voice_header {
	background: #00c2d3;
	background: -moz-linear-gradient(top,  #00c2d3 0%, #70f0ff 100%);
	background: -webkit-linear-gradient(top,  #00c2d3 0%,#70f0ff 100%);
	background: linear-gradient(to bottom,  #00c2d3 0%,#70f0ff 100%);
	color: #fff;
	font-size: 14px;
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
	text-align: right;
	padding: 5px 10px;
	margin: 0 0 40px;
}

.icon02 {
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: -22px;
}

.row_voice .col3_voice .voice_wrapper p.sans_serif {
	padding: 20px 20px 15px;
	background: url(../products/img/border_dashed.png) repeat-x center top;
	line-height: 1.5;
	letter-spacing: 0;
}

.bg_white_products {
	position: relative;
	background: #fff;
	padding: 30px 0;
}

.bg_white_products:before {
	content: '';
	position: absolute;
	background: #dcd2b9;
	width: 1px;
	height: 25px;
	display: block;
	top: -35px;
	left: 50%;
}

.bg_white_products:after {
	content: '';
	position: absolute;
	background: #dcd2b9;
	width: 100%;
	height: 1px;
	display: block;
	top: -10px;
	left: 0;
}

.products_wrapper {
	overflow: hidden;
}

.products_wrapper .product_image {
	float: left;
	width: 32%;
}

.products_wrapper .product_spec {
	float: right;
	width: 66%;
}

.products_wrapper .product_spec h3 {
	position: relative;
	background: url(../products/img/border_dashed.png) repeat-x center bottom;
	padding: 25px 20px;
	margin: 0 0 20px;
	font-size: 24px;
}

.products_wrapper .product_spec h3:before {
	content: '';
	background: url(../products/img/tag_products.png) no-repeat;
	width: 72px;
	height: 20px;
	display: block;
	position: absolute;
	top: 0;
	left: 20px;
}

.products_wrapper .product_spec ul {
	list-style: none;
	font-size: 16px;
	margin-left: 35px;
}

.products_wrapper .product_spec ul li {
	overflow: hidden;
	margin :0 0 5px;
	clear: both;
}

.products_wrapper .product_spec ul li .label {
	width: 95px;
	float: left;
	font-weight: bold;
}

.products_wrapper .product_spec ul li .spec {
	margin-left: 95px;
}


@media screen and (max-width: 999px) {
	
	.product_img {
		height: auto;
		background: none;
	}
	
	.title_products img {
		width: 95%;
		max-width: 550px;
		height: auto;
	}
	
	.row_products {
		margin: 0 5px;
	}
	
	.row_products .col2 img {
		width: 100%;
		height: auto;
	}
	

	.product_img img {
		width: 100%;
		height: auto;
	}
	
	h2.content_title img,
	h2.customer_title img {
		width: 96%;
		max-width: 450px;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	
	.row_voice {
		margin: 0 10px;
	}
	
	.row_voice .col3_voice {
		width: 100%;
		float: none;
		padding: 0;
	}
	
	.row_voice .col3_voice .voice_wrapper.efforts {
		height: auto !important;
		margin: 0 0 25px;
	}
	
	.products_wrapper {
		padding: 0 10px;
	}
	
	.products_wrapper .product_image {
		width: 100%;
		max-width: 300px;
		height: auto;
		float: none;
		margin: 0 auto 15px;
		display: block;
	}
	
	.products_wrapper .product_spec {
		width: 100%;
		float: none;
	}
	
	.products_wrapper .product_spec h3 {
		padding: 25px 0 15px;
	}
	
	.products_wrapper .product_spec h3:before {
		left: 0;
	}
	
	.products_wrapper .product_spec ul {
		margin: 0;
	}
	
	.bg_products_beige h4 {
		background: #ffb5af url(../products/img/bg_h2.png) repeat-x left top;
		padding: 10px 0;
	}
	
	.bg_products_beige h4 img {
		width: 100%;
		max-width: 300px;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	
	.products_icon {
		right: 1%;
		top: -55px;
	}
	
	.products_icon img {
		max-width: 50px;
		width: 100%;
		height: auto;
	}
	
	
	.products_description {
		padding: 20px 10px !important;
	}

}

@media screen and (max-width: 480px) {
	
	.row_products {
		margin: 0 10px;
	}
	
	.row_products .col2,
	.row_products .col2:nth-last-child(2)  {
		width: 100%;
		float: none;
		padding: 0 0 20px;
	}
	
	.row_products .col2:last-child {
		padding: 0;
	}

}



/* farmorder */
.resizeimg { width: 100%; }



/* Product1 */

.p_click {
	color: #aa0000;
	text-align: center;
	font-size: 16px;
	padding: 0 0 20px;
}

.product_img.item01 {
	background-image: url(../img/shadow.png), url(../products/img/bg_product_item01.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: top center, center bottom;
	position: relative;
}

.product_img.item02 {
	background-image: url(../img/shadow.png), url(../products/img/bg_product_item02.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: top center, center bottom;
	position: relative;
}

.main_contact {
	position: absolute;
	left: 0;
	bottom: 0;
}

.main_contact a {
	margin-right: 30px;
}


.point_wrapper {
	background-image: url(../products/img/border_dashed.png), url(../products/img/border_dashed.png), url(../products/img/bg_point.png);
	background-repeat: repeat-x, repeat-x, no-repeat;
	background-position: center top, center bottom, left top;
	padding: 25px 50px 15px;
	margin: 30px 0 0;
}

.point_wrapper h4 {
	font-size: 18px;
	text-align: center;
	background: url(../products/img/border_pink.png) no-repeat center bottom;
	margin: 0 0 20px;
}

.point_wrapper p {
	font-weight: normal !important;
	text-align: left;
}

.img_point {
	background: #fff;
	padding: 50px 0;
	margin: 0 0 40px;
}

.img_point img {
	display: block;
	margin: 0 auto;
}

.img_point.last {
	margin: 0 0 80px;
}


.p_img_point {
	padding: 50px 0;
	margin: 0 0 40px;
}

.p_img_point img {
	display: block;
	margin: 0 auto;
}

.p_img_point.last {
	margin: 0 0 80px;
}







@media screen and (max-width: 999px) {

	.product_img.item01 {
		background-image: url(../img/shadow.png), url(../products/img/bg_product_item01_sp.jpg);
		background-repeat: no-repeat, no-repeat;
		background-position: top center, center bottom;
		position: relative;
		background-size: auto auto, cover;
	}

	.product_img.item02 {
		background-image: url(../img/shadow.png), url(../products/img/bg_product_item02_sp.jpg);
		background-repeat: no-repeat, no-repeat;
		background-position: top center, center bottom;
		position: relative;
		background-size: auto auto, cover;
	}

	.bg_green.sans_serif h2 img,
	.bg_pink.sans_serif h2 img,
	.bg_red.sans_serif h2 img,
	.bg_wb.sans_serif h2 img {
		width: 98%;
		max-width: 420px;
		height: auto;
	}


	.point_wrapper {
		background-position: center top, center bottom, center top;
		background-size: auto auto, auto auto, 150px auto;
		padding: 35px 2% 15px;
	}

	.img_point {
		padding: 20px 0;
	}
	
	.img_point img {
		width: 100%;
		max-width: 850px;
		height: auto;
	}


	.p_img_point {
		padding: 20px 0;
	}
	
	.p_img_point img {
		width: 100%;
		max-width: 850px;
		height: auto;
	}






}


/* Product2 */

.product_img.item03 {
	background: url(../products/img/bg_product_item03.jpg) no-repeat center bottom;
}

.product_img.item04 {
	background: url(../products/img/bg_product_item04.jpg) no-repeat center bottom;
}

.bg_green {
	background: #eeffee url(../img/shadow.png) no-repeat center top;
	background: url(../img/shadow.png) no-repeat center top, -webkit-linear-gradient(top,  #eeffee 0%,#aaeedd 100%);
	background: url(../img/shadow.png) no-repeat center top, linear-gradient(to bottom,  #eeffee 0%,#aaeedd 100%);
	padding: 40px 0 60px;
	position: relative;
}

.bg_pink {
	background: #edaaaa url(../img/shadow.png) no-repeat center top;
	background: url(../img/shadow.png) no-repeat center top, -webkit-linear-gradient(top,  #edaaaa 0%,#ffdddd 100%);
	background: url(../img/shadow.png) no-repeat center top, linear-gradient(to bottom,  #edaaaa 0%,#ffdddd 100%);
	padding: 40px 0 60px;
	position: relative;
}

.bg_red {
	background: #ed2829 url(../img/shadow.png) no-repeat center top;
	background: url(../img/shadow.png) no-repeat center top, -webkit-linear-gradient(top,  #ed2829 0%,#ff837d 100%);
	background: url(../img/shadow.png) no-repeat center top, linear-gradient(to bottom,  #ed2829 0%,#ff837d 100%);
	padding: 40px 0 60px;
	position: relative;
}

.bg_wb {
	background: #fbfeff url(../img/shadow.png) no-repeat center top;
	background: url(../img/shadow.png) no-repeat center top, -webkit-linear-gradient(top,  #fbfeff 0%,#a6edff 100%);
	background: url(../img/shadow.png) no-repeat center top, linear-gradient(to bottom,  #fbfeff 0%,#a6edff 100%);
	padding: 40px 0 60px;
	position: relative;
}

.bg_green h2,
.bg_pink h2,
.bg_red h2,
.bg_wb h2 {
	text-align: center;
	margin: 0 0 40px;
}

.bg_green p,
.bg_pink p,
.bg_red p,
.bg_wb p {
	color: #333;
	text-align: center;
	line-height: 2;
}

.icon01 {
	position: absolute;
	bottom: -55px;
	left: 50%;
	margin: 0 0 0 -160px;
}


.pic_shadow {
	position: relative;
	margin: 0 0 60px;
	padding: 0 0 0 0;
}

.pic_shadow:after {
	content: '';
	background: url(../products/img/shadow615.png)  no-repeat;
	width: 620px;
	height: 15px;
	display: block;
	position: absolute;
	bottom: -15px;
	left: -10px;
}


.Queen_shadow {
	background: #fff url(../products/img/bg_item03.png) no-repeat right bottom;
	box-shadow:0px 0px 3px rgba(0,0,0,.2);
	position: relative;
	margin: 0 0 60px;
	padding: 30px 0 40px 85px;
}

.Queen_shadow:after {
	content: '';
	background: url(../products/img/shadow01.png) no-repeat center bottom;
	width: 1020px;
	height: 15px;
	display: block;
	position: absolute;
	bottom: -15px;
	left: -10px;
}

.Queen_shadow p {
	line-height: 2;
}

.products_description {
	padding: 25px 50px 40px;
	position: relative;
}


@media screen and (max-width: 999px) {
	
	.bg_red {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.bg_red h2 img {
		width: 98%;
		max-width: 350px;
		height: auto;
	}
	
	.icon01 {
		width: 300px;
		margin-left: -150px;
		height: auto;
	}
	
	.bg_products_beige h3 img {
		width: 98%;
		max-width: 600px;
		height: auto;
	}
	
}


/* Concept */

.page_img.concept {
	background: url(../img/mainimg_concept.jpg) no-repeat center center;
	height: 200px;
}

h2.title_concept {
	text-align: center;
}

.bg_beige.concept {
	background-image: url(../img/shadow.png), url(../img/bg_concept.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: top center, center center;
	background-size: auto auto, cover;
	padding: 40px 0 60px;
}

.bg_beige.concept h2.title_concept {
	margin: 0 0 40px;
}

.bg_beige.concept p {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 2;
	text-shadow: 2px 1px 6px #fff;
}

.concept_shadow {
	background-color: rgba(255,255,255,.2);
	background-image: url(../img/bg_concept02.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	box-shadow: 0px 0px 3px rgba(0,0,0,.2);
	position: relative;
	height: 750px;
	padding: 50px 0 0;
	margin: 0;
}

.concept_shadow:after {
	content: '';
	background: url(../products/img/shadow01.png) no-repeat center bottom;
	width: 1020px;
	height: 15px;
	display: block;
	position: absolute;
	bottom: -15px;
	left: -10px;
}

.concept_shadow h3 {
	margin: 0 0 80px;
	text-align: center;
}

.bg_beige.message {
	padding: 0;
}

.message_wrapper {
	background: url(../img/bg_message.png) no-repeat 98% bottom;
	background-size: 295px auto;
	padding: 50px 0 60px;
}

.message_wrapper h3,
.message_wrapper p {
	text-align: center;
}

.message_wrapper h3 {
	margin: 0 0 50px;	
}

.message_wrapper p {
	font-size: 18px;
	line-height: 1.5;
}

.sign {
	font-size: 16px;
}

.sign span {
	font-size: 20px;
}

.bg_beige.service {
	background-image: url(../img/shadow.png), url(../img/bg_concept03.png);
	background-repeat: no-repeat, no-repeat;
	background-position: top center, center center;
	background-size: auto auto, cover;
	padding: 40px 0 60px;
}

.row_service {
	margin: 0 -23px;
}

.row_service .col3_service {
	float: left;
	width: 33.3333333%;
	padding: 0 23px;
}

.row_service .col3_service .service_wrapper {
	background: rgba(255,255,255,.8);
	box-shadow: 0px 0px 3px rgba(0,0,0,.2);
	border-radius: 5px;
	height: 375px;
}

.row_service .col3_service .service_wrapper h3 {
	font-size: 22px;
	text-align: center;
	background: url(../img/border_service.png) no-repeat center bottom;
	padding: 15px 0;
}

.row_service .col3_service .service_wrapper h3 span {
	display: block;
	font-size: 16px;
	color: #ff7e20;
}

.row_service .col3_service .service_wrapper p {
	padding: 30px 15px;
	font-size: 18px;
}


@media screen and (max-width: 1350px) {
	.message_wrapper {
		background-size: auto 70%;
	}
}

@media screen and (max-width: 999px) {
	
	h2.title_concept img {
		width: 96%;
		max-width: 500px;
		height: auto;
		display: block;
		margin: 0 auto;
	}

	.bg_beige.concept h2.title_concept img {
		max-width: 320px;
	}
	
	.concept_shadow {
		padding: 50px 0 100px;
		height: auto;
	}
	
	.concept_shadow p {
		letter-spacing: 0;
	}
	
	.message_wrapper {
		background: none;
		padding: 50px 0 0;
	}
	
	.message_wrapper img.sp {
		margin: 20px auto 0;
		width: auto;
		height: 200px;
	}
	
	.message_wrapper h3 img {
		width: 96%;
		max-width: 320px;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	
	.row_service {
		margin: 0 10px;
	}
	
	.row_service .col3_service {
		float: none;
		width: 100%;
		padding: 0 0 15px;
	}
	
	.row_service .col3_service .service_wrapper {
		height: auto;
	}
	
}


/* Form */

.page_img.order {
	background: url(../img/mainimg_order.jpg) no-repeat center center;
	height: 200px;
}

.page_img.order11 {
	background: url(../img/mainimg_order11.jpg) no-repeat center center;
	height: 200px;
}

.page_img.contact {
	background: url(../img/mainimg_contact.jpg) no-repeat center center;
	height: 200px;
}

.intro {
	margin: 0 2% 50px;
}

.intro p {
	text-align: center;
}

.explanation {
	margin: 0 2% 10px;
}

.explanation p {
	text-align: center;
}

.flavortext {
	margin: 0 2% 30px;
}

.flavortext p {
	text-align: center;
}


	
table.common.orange th {
	background: #ff6c00;
	background: -moz-linear-gradient(left,  #ff6c00 0%, #ffac70 100%);
	background: -webkit-linear-gradient(left,  #ff6c00 0%,#ffac70 100%);
	background: linear-gradient(to right,  #ff6c00 0%,#ffac70 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6c00', endColorstr='#ffac70',GradientType=1 );
	width: 25%;
}

table.common.orange td {
	width: 75%;
}

table.common.orange th,
table.common.orange td {
	position: relative;
	vertical-align: top;
}

table.common.orange .add {
	margin: 0 0 0px;
	display: block;
}

table.common.orange .add.last {
	margin: 0;
}

table.common.orange .add span {
	width: 75px;
	display: inline-block;
}


table.common.orange .add_f {
	margin: 0 0 15px;
	display: block;
}

table.common.orange .add_f.last {
	margin: 0;
}

table.common.orange .add_f span {
	width: 240px;
	display: inline-block;
}


table.orange th.req:after {
	content: '';
	background: url(../img/icon_req.png) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	right: 25px;
	top: 15px;
	width: 54px;
	height: 25px;
	display: block;
}



table.farm th.req:after {
	content: '';
	background: url(../img/icon_req.png) no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	right: 25px;
	top: 15px;
	width: 54px;
	height: 25px;
	display: block;
}




label {
	padding: 5px 15px 5px 0;
	display: inline-block;
}

input[type=text],
input[type=email],
input[type=tel],
button,
textarea {
	 -webkit-appearance: none;
	 box-shadow: none !important;
	 border-radius: 0 !important;
	 font-size: 16px;
	 font-size: 1.6rem;
	 padding: 0 15px;
}

input[type=text],
input[type=email],
input[type=tel] {
	line-height: 1;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
	border: 1px solid #000;
	outline: none;
}

input[type=text],
input[type=tel],
input[type=email] {
	background: #fff;
	border: 1px solid #808080;
	width: 70%;
	line-height: 30px;
	padding: 0 10px;
}

input[type=text].small {
	width: 35%;
}

input[type=text].small.name {
	margin: 0 10px 0 5px;
}

textarea {
	background: #fff !important;
	border: 1px solid #808080 !important;
	width: 90% !important;
	height: 140px !important;
	padding: 5px 10px !important;
}

.submitBtn {
	border: none !important;
	padding: 0 !important;
	background: none !important;
	margin: 40px auto !important;
	cursor: pointer !important;
	display: block !important;
	width: 420px;
	transition: all .3s;
}

.submitBtn:focus,
.submitBtn:hover {
	outline: none !important;
	opacity: .8;
}

.notice_contact {
	background-image: url(../products/img/border_dashed.png), url(../products/img/border_dashed.png), url(../img/bg_contact.png);
	background-repeat: repeat-x, repeat-x, no-repeat;
	background-position: center top, center bottom, left top;
	padding: 25px 50px 15px;
	margin: 30px 0 0;
}

.notice_contact h4 {
	font-size: 18px;
	text-align: center;
	background: url(../img/border_mint.png) no-repeat center bottom;
	margin: 0 0 20px;
}

.notice_contact ul {
	list-style: none;
	font-size: 16px;
}

.notice_contact ul li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 15px;
}

.notice_contact ul li:before {
	content: '';
	background: #aad3a6;
	width: 9px;
	height: 9px;
	border-radius: 9px;
	display: block;
	position: absolute;
	left: 0;
	top: 5px;
}


.notice_contact_f {
	background-image: url(../products/img/border_dashed.png), url(../products/img/border_dashed.png), url(../img/bg_contact_f.png);
	background-repeat: repeat-x, repeat-x, no-repeat;
	background-position: center top, center bottom, left top;
	padding: 25px 10px 0px;
	margin: 10px 0 0;
}

.notice_contact_f h4 {
	font-size: 20px;
	text-align: center;
	background: url(../img/border_mint.png) no-repeat center bottom;
	margin: 0 0 10px;
}

.notice_contact_f ul {
	list-style: none;
	font-size: 16px;
}

.notice_contact_f ul li {
	position: relative;
	margin: 0 0 0px;
	padding: 0 0 0 15px;
}

.notice_contact_f ul li:before {
	content: '';
	background: #aad3a6;
	width: 9px;
	height: 9px;
	border-radius: 9px;
	display: block;
	position: absolute;
	left: 0;
	top: 5px;
}




@media screen and (max-width: 735px) {
	
	
	table.orange th.req:after {
		 top: 8px;
	}
	
	.submitBtn {
		width: 96% !important;
		margin: 30px auto 0 !important;
	}
	
	.submitBtn img {
		width: 100%;
		max-width: 400px;
		height: auto;
	}
	
	input[type=text],
	input[type=tel],
	input[type=email],
	input[type=text].small,
	input[type=text].small.name,
	textarea {
		width: 100% !important;
		margin: 10px 0;
		display: block;
	}
	
	.notice_contact {
		background-position: center top, center bottom, center top;
		background-size: auto auto, auto auto, 150px auto;
		padding: 35px 2% 15px;
	}
	
}

/* Side Link */

.side_link {
	position: fixed;
	top: 50%;
	right: 0;
	margin-top: -103px;
	width: 100px;
	z-index: 100;
}

.side_link ul {
	list-style: none;
}

.side_link ul li {
	float: left;
}

#products_list {
	position: fixed;
	top: 50%;
	left: -240px;
	margin-top: -120px;
	z-index: 50;
	background: none;
}

#btn_list {
	position: absolute;
	top: 0;
	right: -50px;
	width: 50px;
	height: 238px;
	background: url(../img/btn_side_products.jpg) no-repeat;
	cursor: pointer;
	transition-duration: 0.5s;
}

#btn_list.opened {
	background: url(../img/btn_side_products.jpg) no-repeat;
}

#products_list ul {
	width: 240px;
	border: solid #beb5a5;
	border-width: 0 1px 1px;
	opacity: .95;
	background: #ece7d8;
	background: -webkit-linear-gradient(top, #ece7d8 15%,#ece7d8 15%,#ffffff 100%);
	background: linear-gradient(to bottom, #ece7d8 15%,#ece7d8 15%,#ffffff 100%);
}

#products_list ul li {
	border-top: 1px solid #beb5a5;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 10px;
	background: #ece7d8;
	background: -webkit-linear-gradient(top, #ece7d8 15%,#ece7d8 15%,#ffffff 100%);
	background: linear-gradient(to bottom, #ece7d8 15%,#ece7d8 15%,#ffffff 100%);
}

#products_list ul li a {
	display: block;
}

@media screen and (max-width: 999px) {
	.side_link,
	#products_list {
		display: none;
	}
	
}



/* Company */

.page_img.company {
	background: url(../img/mainimg_company.jpg) no-repeat center center;
	height: 200px;
}

h2.subtitle {
	margin: 0 0 30px;
	text-align: center;
}

table.common {
	box-shadow: 0px 0px 3px rgba(0,0,0,.2);
	border-spacing: 0;
	font-size: 16px;
	width: 100%;
}

table.common th,
table.common td {
	border-bottom: 1px solid #fff;
	padding: 15px 30px;
	position: relative;
}

table.common th:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 100%;
	display: block;
	background: url(../img/shadow_th.png) repeat-y;
	right: 0;
	top: 0;
}


table.common td:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 100%;
	display: block;
	background: url(../img/shadow_td.png) repeat-y;
	left: 0;
	top: 0;
}

table.common tr:last-child th,
table.common tr:last-child td {
	border-bottom: none;
}

table.common th {
	color: #fff;
	text-align: left;
	width: 20%;
}

table.common td {
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	width: 80%;
}

table.common td {
	background: #fff;
}

table.common tr:nth-child(odd) td {
	background: #f7f4ed;
}

table.common.green th {
	background: #65b301;
	background: -moz-linear-gradient(left,  #65b301 0%, #a7ef49 100%);
	background: -webkit-linear-gradient(left,  #65b301 0%,#a7ef49 100%);
	background: linear-gradient(to right,  #65b301 0%,#a7ef49 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#65b301', endColorstr='#a7ef49',GradientType=1 );
}

table.common.blue th {
	background: #00c5d1;
	background: -moz-linear-gradient(left,  #00c5d1 0%, #7de2ee 100%);
	background: -webkit-linear-gradient(left,  #00c5d1 0%,#7de2ee 100%);
	background: linear-gradient(to right,  #00c5d1 0%,#7de2ee 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c5d1', endColorstr='#7de2ee',GradientType=1 );
}

.gmap {
	border: 1px solid #b4b0a7;
}

@media screen and (max-width: 999px) {
	
	.page_img.company,
	.page_img.contact,
	.page_img.concept,
	.page_img.order,
	.page_img.order11 {
		height: auto;
		background: none;
	}
	
	.page_img img {
		width: 100%;
		height: auto;
	}
	
	h2.subtitle img {
		width: 210px;
		height: auto;
	}
	
	.gmap {
		position: relative;
		padding-bottom: 56.25%;
		padding-top: 30px;
		width: 96%;
		margin: 0 2%;
		height: 0;
		overflow: hidden;
	}
	 
	.gmap iframe,
	.gmap object,
	.gmap embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	table.common {
		width: 96%;
		margin: 0 2%;
	}
	
	table.common a {
		text-decoration: none;
	}
	
	table.common th,
	table.common td {
		padding: 15px;
	}
	
}

@media screen and (max-width: 735px) {
	
	table.common th,
	table.common td {
		display: block;
		width: 100% !important;
		border-bottom: none;
		padding: 10px 15px;
	}
	
	table.common th:before {
		width: 100%;
		height: 15px;
		background: url(../img/shadow_th_sp.png) repeat-x;
		right: 0;
		top: auto;
		bottom: 0;
	}
	
	table.common td:before {
		width: 100%;
		height: 15px;
		background: url(../img/shadow_td_sp.png) repeat-x;
		left: 0;
		top: 0;
	}

}


/* Footer */

footer {
	clear: both;
	background: #f7f4ed url(../img/shadow.png) no-repeat center top;
	background: url(../img/shadow.png) no-repeat center top, -webkit-linear-gradient(top,  #f7f4ed 0%,#dcd2b9 100%);
	background: url(../img/shadow.png) no-repeat center top, linear-gradient(to bottom,  #f7f4ed 0%,#dcd2b9 100%);
	width: 100%;
	padding: 40px 0 0;
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

.ft_wrapper {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.ft_info {
	width: 420px;
	display: inline-block;	
	margin: 0 0 50px;
}

.ft_info .logo {
	margin-bottom: 25px;
}

.ft_info .btn {
	margin: 20px 0;
}

.ft_info .fb {
	width: 100%;
	height: 130px;
	overflow: hidden;
}

.ft_info p,
.ft_info p a {
	font-size: 13px;
	font-size: 1.3rem;
}

.ft_link01 {
	display: inline-block;
	margin: 0 0 50px 120px;
	overflow: hidden;
	vertical-align: top;
}

.ft_link02 {
	display: inline-block;
	margin: 0 0 50px 30px;
	vertical-align: top;
}

footer ul {
	list-style: none;
	font-size: 14px;
	font-size: 1.4rem;
}

footer ul.submenu01 {
	margin: 0 0 5px 15px;
	border-left: 1px solid #3e3e3e;
}

footer ul.submenu02 {
	margin: 0 0 5px 30px;
	border-left: 1px solid #3e3e3e;
}

footer ul li {
	background: url(../img/arrow_gray.png) no-repeat left 1px;
	background-size: 6px auto;
	padding: 0 0 0 15px;
	line-height: 1;
	margin-top: 8px;
	margin-bottom: 8px;
}

footer ul.submenu01 li,
footer ul.submenu02 li {
	background: none;
	position: relative;
}

footer ul.submenu01 li:before,
footer ul.submenu02 li:before {
	content: '';
	position: absolute;
	display: block;
	width: 7px;
	height: 1px;
	background: #3e3e3e;
	top: 6px;
	left: 0;
}

.ft_link ul.submenu li:before,
.ft_link ul.submenu02 li:before {
	top: 10px;
	left: 0;
}


.ft_copy {
	background: #fff;
	padding: 10px 0;
}

.ft_copy p {
	font-size: 11px;
	font-size: 1.1rem;
	font-family: Arial, Helvetica, sans-serif;
	color: #3e3e3e;
}

@media screen and (max-width: 999px) {
	
	footer {
		padding: 15px 0 0;
	}
	
	.ft_info {
		padding: 0 10px;
		display: block;
		width: 100%;
		margin: 0 0 15px;
	}
	
	.ft_info .btn img {
		max-width: 400px;
		width: 100%;
		height: auto;
	}
	
	.ft_link01,
	.ft_link02 {
		display: block;
		width: 100%;
		margin: 0;
	}
	
	footer ul.submenu01,
	footer ul.submenu02 {
		margin: 0;
		border-left: none;
	}
	
	footer ul li,
	footer ul.submenu01 li,
	footer ul.submenu02 li {
		background: #ece7d8 !important;
		background: -webkit-linear-gradient(top, #ece7d8 15%,#ece7d8 15%,#ffffff 100%) !important;
		background: linear-gradient(to bottom, #ece7d8 15%,#ece7d8 15%,#ffffff 100%) !important;
		margin: 0;
		padding-top: 10px;
		padding-bottom: 10px;
		border-top: 1px solid #beb5a5;
	}
	
	footer ul li a {
		display: block;
	}
	
	footer ul li a,
	footer ul.submenu01 li a {
		background: url(../img/arrow_gray.png) no-repeat 95% center;
		background-size: 6px auto;
	}
	
	footer ul.submenu02 li a {
		background: url(../img/arrow_gray.png) no-repeat 15px center;
		background-size: 6px auto;
		padding-left: 30px;
	}
	
	footer ul.submenu01 li:before,
	footer ul.submenu02 li:before {
		display: none;
	}
		
	.ft_copy {
		padding: 10px;
		border-top: 1px solid #beb5a5;
	}
	
	.ft_copy p {
		font-size: 10px;
		font-size: 1rem;
		letter-spacing: 0;
	}
	
	.ft_link .indent01 {
		padding-left: 20px;
	}
}