body {
	position: relative;
}
a:link, a:visited {
	color: #666;
}
a:hover, a:active {
	text-decoration: none;
	color: #f90;
	background: #ff0;
}
.auto {
	width:100%;
	height: auto;
}
.red {
	color: #f00;
}
.blue {
	color: #00f;
}
.narrow {
	letter-spacing: -.1rem;
}

.mobile{
	display: none;
}
.pc {
	display: block;
}
@media (max-width: 767px) {
	.mobile {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* layout */
header {
	width:100%;
	height: 125px;
	position: fixed;
	top:0;
	background: #fff;
	box-shadow: 3px 0px 3px 0 #333;
	z-index: 999;
}
header h1 {
	font-size: 16px;
	color: #2e58a6;
	font-weight: normal;
	padding-top:20px;
}
header h1 img {
	width:250px;
}

header nav.global {
	margin: 0px 0 10px;
	padding: 0;
	/*font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;*/
}
header nav.global {
	text-align:center;
}
header nav.global ul {
	width:500px;
	margin: 0 auto;
	padding: 0;
}
header nav.global ul li {
	display: inline-block;
	margin: 0 1rem;
}

header .infoboard {
	position: absolute;
	top:100px;
	/*background: #ffd;*/
	text-align: center;
	width:100%;
	box-sizing: border-box;
}
header .infoboard div {
	position: relative;
}
header .infoboard div span {
	display: none;
	position: absolute;
	top:-1rem;
	right:-2rem;
	width:1rem;
}

header .cart {
	position: fixed;
	top:22px;
	right:5px;
	width:30px;
}

header .menu {
	position: fixed;
	top:15px;
	left:5px;
}
@media (max-width: 1200px) {
}

@media (max-width: 767px) {
	header nav.global ul {
		width:100%;
	}
}


/* humberger menu*/
#nav-drawer {
	position: relative;
	text-align: right;
	padding-top:.5rem;
	margin-right:-1rem;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 5px;/*線の太さ*/
  width: 40px;/*長さ*/
  border-radius: 5px;
  background: #333;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -13px;
}
#nav-open span:after {
  bottom: -26px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
	text-align: left;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-content ul {
	margin: 1rem .5rem;
	padding: 0;
}
#nav-content ul li {
	list-style: none;
	border-bottom:1px dotted #ccc;
	padding: 1rem .5rem;
	margin: 0;
}
#nav-content ul .color01 {
	background-color: #ddd;
}

main {
	margin-top:125px;
}

/*main a:link, main a:visited {
	color: #666;
	text-decoration: underline;
}*/
main .container {
	padding: 2rem 4rem;
}
@media (max-width: 767px) {
	main {
		margin-top: 125px;
	}
	main .container {
		padding: 1rem 1.5rem;
	}
}
main .dot_box {
	border: 1px dotted #ccc;
	padding: 1rem;
	margin: 1rem;
}
main h2 {
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 120%;
	margin: .5rem 0 2rem;
	height: 0;
	position: relative;
	text-align: center;
}
main h2 div.line {
	border-top:1px dotted #999;
	height: 0;
}
main h2 span {
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
	top:-1rem;
	left:50%;
	margin-left:-7.5rem;
	width:15rem;
}
main h3 {
	border: none;
	background: #eee;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 110%;
	text-align: center;
	font-weight: normal;
	padding:.7rem;
	margin: 1rem 0;
}
main p {
	margin: 1rem 0;
}
main table {
	width:100%;
	border:1px solid #ccc;
}
main table th {
	border:1px solid #ccc;
	padding: .5rem;
	vertical-align: top;
}
main table td {
	border:1px solid #ccc;
	padding: .5rem;
	vertical-align: top;
}

@media (min-width: 992px) {
	/* PCのとき */
}

footer {
	background: #ddd;
	padding: 3rem 0;
}
footer a:link, footer a:visited {
	color: #000;
}
footer .nav_footer {
	text-align: center;
}
footer .logo {
	line-height: 1.1em;
}
footer .address {
	font-size: 75%;
}
footer .address strong{
	font-size: 150%;
	display: inline-block;
	padding-top: .5rem;
}
@media (max-width: 767px) {
}

.page_top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width:5rem;
	background: #ccc;
	border:2px solid #999;
	border-radius: 100px;
	text-align: center;
	color: #333;
	padding: 10px;
}

/* individual */
.box01 {
	margin-top:100px;
	/*background: rgba(255,255,255,.2*/
	overflow: hidden;
}
.box01 ul, .box01 li {
	margin: 0;
	padding: 0;
}
.box01 .slider {
	position: relative;
	/*left: 25vw; /* (100vw - SlideWidth) / 2 */
	/*overflow: visible !important;*/
}
.box01 .slider li {
	width: 33vw;
	height: 500px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.box01 .panel {
	width:100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.box01 .panel img {
	 position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.box01 .panel .desc {
	position: absolute;
	top:380px;
	right:20%;
	background: rgba(255,255,255,.9);
	width:60%;
	padding: .8rem;
	font-size: 90%;
	text-align: center;
}
.box01 .panel .desc strong {
	font-size: 130%;
	font-weight: normal;
}
.box01 .panel a:link,.box01 .panel a:visited {
	color: #000;
}
.box01 .panel a:hover {
	color:#666;
}

.box01 .swiper-button-prev, .box01 .swiper-button-next {
	
}

@media (max-width: 767px) {
	/* SPのとき */
	.box01 .slider {
		left: 0vw; /* (100vw - SlideWidth) / 2 */
	}
	.box01 .slider li {
		width: 100vw !important;
		height: 350px;
	}
	.box01 .panel {
		height: 350px;
	}
	.box01 .panel .desc {
		top:250px;
	}
	.box01 .panel .desc strong {
		font-size: 130%;
	}
	.box01 .bx-wrapper {
		margin-bottom: 10px;
	}
}

.box02 {
	padding: 0 15% 1rem;
}
.box02 .new h2 {
	font-size: 120%;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	margin: 0;
	padding: 0;
}
.box02 .news h2 {
	display: none;
}
.box02 .news .header_block {
	display: none;
}

/*.box02 .news {
	height: 13rem;
	overflow-y: scroll;
	border:1px solid #ccc;
}*/
.box02 .ec-newsRole__news {
	clear:both;
}
.ec-newsRole__newsItem {
	clear: both;
}
/*.box02 .ec-newsRole__newsHeading {
}*/
.box02 .ec-newsRole__newsDate {
	width: 22%;
	text-align: justify;
	margin-left: 2%;
	float: left;
	font-family: "Courier New", Consolas, monospace;
}
.box02 .ec-newsRole__newsColumn{
	width: 76%;
	float: left;
	/*text-decoration: underline;*/
	color:#666;
}
.box02 .ec-newsRole__newsDescription {
	display: none;
	margin:0 2rem 2rem;
	padding-top: 3rem;
}
@media (max-width: 767px) {
	.box02 {
		padding: 0 1% 1rem;
	}
	.box02 .ec-newsRole__newsDate {
		width: 35%;
		padding-top: .5rem;
	}
	.box02 .ec-newsRole__newsColumn{
		width: 65%;
		padding-top: rem;
	}
}


.box03 {
	padding: 0 0 1rem;
}
.box03 .category {
	padding: 0 15%;
}
.box03 .category li {
	padding: 3px 10px 3px 40px;
	height: 30px;
	font-size: 14px;
	line-height: 130%;
	box-sizing: border-box;
	margin: .7rem 0;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
	text-align: left;
}
@media (max-width: 767px) {
	.box03 .category {
		padding: 0 1rem;
	}
	.box03 .category li {
		padding: 3px 5px 3px 30px;
	}
}

.box04 {
	padding: 0 0 1rem;
}
.box04 .shop_data .header_block {
	display: none;
}
.box04 .shop_data .item_box {
	width: 23%;
	margin: 1%;
	padding: 0;
	float: left;
}
.box04 .shop_data .item_box img {
	width: 100%;
	height: auto;
}
.box04 .shop_data .item_box:nth-of-type(4n+1) {
	clear:both;
}

.box04 .ec-shelfGrid {
	list-style:none;
	padding: 0;
	margin: 0;
}
.box04 .ec-shelfGrid li {
	width:23%;
	margin: 1%;
	float: left;
}
.box04 .ec-shelfGrid li img {
	width:100%;
}
main .box04 .ec-shelfGrid li p {
	display: none;
}

@media (max-width: 767px) {
	.box04 .shop_data .item_box {
		width: 48%;
	}
	.box04 .shop_data .item_box:nth-of-type(2n+1) {	
		clear:both;
	}
	.box04 .ec-shelfGrid li {
		width:48%;
	}
	.box04 .ec-shelfGrid li dl .item_name {
		height:3rem;
	}
}


.box05 {
	padding: 0 0 1rem;
}
.box05 .scroll {
	width:100%;
	overflow-x:scroll;
	height: 200px;
	margin: 1rem 0;
}
.box05 .scroll ul {
	width:2500px;
	height: 200px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.box05 .scroll ul li {
	list-style: none;
	width: 200px;
	height: 200px;
	overflow: hidden;
	float: left;
	margin: 0 5px;
	padding: 0;
}

@media (max-width: 767px) {
}

.box06 {
	padding: 0 0 1rem;
}
.box06 p.strong {
	font-size: 150%;
}
@media (max-width: 767px) {

}

.box07 {
	padding: 1rem 0 0;
}
.box07 p.strong {
	font-size: 150%;
	font-weight: bold;
}
@media (max-width: 767px) {

}


.box08 {
	padding: 1rem 0;
}
.box08 dl {
	border-bottom: 1px solid #ccc;
}
.box08 dt {
	border-top: 1px solid #ccc;
	margin: 0;
	padding: 1rem 1rem 1rem 30px;
	background-position: 5px 1rem;
	width:20%;
	float: left;
}
.box08 dd {
	border-top: 1px solid #ccc;
	margin: 0;
	padding: 1rem;
	width:80%;
	float: left;
}

.box08 .blog figure {
	width:100%
}
.box08 .blog span.category {
	display: block;
	text-align: center;
	font-weight: bold;
}
.box08 .blog span.desc {
	display: block;
	height:6rem;
	overflow: hidden;
}

.box08 .recipe figure {
	width:100%
}
.box08 .recipe figure img {
	width: 100%;
	height: auto;
}
.box08 .recipe span.category {
	display: block;
	text-align: center;
	font-weight: bold;
}
.box08 .recipe span.desc {
	display: block;
	height:6rem;
	overflow: hidden;
}

@media (max-width: 767px) {
	.box08 dt {
		border-top: 1px solid #ccc;
		width:100%;
		float: none;
	}
	.box08 dd {
		border-top: none;
		width:100%;
		float: none;
	}
}
.box09 {
	padding: 1rem 0;
	background: #eee;
}
.box09 li {
	padding-bottom:2rem;
}
.box09 li img {
	width:100%;
	height: auto;
}
@media (max-width: 767px) {
	.box09 li {
		padding-left:5px;
		padding-right:5px;
	}
}
.box10 {
	padding: 1rem 0;
	background: #eee;
}

/* mailform */
.mailform input, textarea {
	width:98%;
}
.mailform .postal {
	width:5rem;
}

/* calender */
.xo-event-calendar table {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
}
.xo-month-wrap{
	padding:0 10px;
	width:50%;
	float:left;
	}
.xo-months::after{
	display:block;
	clear:both;
	content:"";
	}
@media screen and (max-width: 640px) {
.xo-month-wrap{
    width:100%;
    float:none;
    }
}