@charset "utf-8";

/*
Theme Name:rosa rugosa
Version: 9999
*/

/****************
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: 23.5%;
	margin-right: 2%;
}
.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;
	border: solid 1px #ddd;
	margin-bottom: 2em;
	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;*/
}
table tr:nth-of-type(even) th {
	background-color: rgba(248,245,239,0.7);
}
table tr:nth-of-type(even) td:nth-of-type(even) {
	background-color: #f8f8f8;
}


/*全幅*/
.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 {
	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.01em;
}


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

.bx-pager {
	text-align: left !important;
	position: absolute !important;
	left: 14px !important;
	bottom: 18px !important;
	padding: 0 !important;
}
.bx-pager-item {
	margin: 0 5px !important;
}
.bx-pager-item a {
	background-color: #888 !important;
}
.bx-pager-item .active {
	background-color: #ea545e !important;
}
.bx-pager-link {
	border-radius: 10px !important;
	width: 15px !important;
	height: 15px !important;
}
.bx-pager-link:hover {
	background-color: #ea545e !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;
}


/*カートボタン*/
/*.shop_tag iframe.storesjp-button-cart {
	width: 100% !important;
}
.shop_tag iframe.storesjp-button-cart .layout_a,
.shop_tag iframe.storesjp-button-cart .layout_b {
	background-color: #fff !important;
	width: 100% !important;
	font-size: 19px !important;
	color: #fff !important;
}
.shop_tag iframe.storesjp-button-cart .layout_a,
.shop_tag iframe.storesjp-button-cart .layout_c,
.shop_tag iframe.storesjp-button-cart .layout_e,
.shop_tag iframe.storesjp-button-cart .layout_g {
	width: 100% !important;
}
.shop_tag iframe.storesjp-button-cart .layout_a::before,
.shop_tag iframe.storesjp-button-cart .layout_c::before,
.shop_tag iframe.storesjp-button-cart .layout_e::before {
	display: none !important;
	content: none !important;
}*/











/*新着情報*/
.newsList {
	margin: 0;
}
.newsList li {
	padding: 0 0 15px;
	margin: 0 0 20px;
	list-style-type: none;
}
.newsList li .newsInfo{
	margin: 0 0 5px;
	font-size: 75%;
}
.newsList li .newsInfo .cat{
	display: inline-block;
	border: solid 1px #111;
	padding: 0 10px;
	margin: 0 10px 0 0;
}
.newsList li h3{
	border: none;
	background-color: transparent;
	padding: 0;
	margin: 0;
	font-weight: normal;
	color: #B5954A;
}
.newsList li h3 a {
	color: #B5954A;
}

.newsTxt .newsInfo {
	margin: 0 0 15px;
	font-size: 12px;
	color: #999;
}


/*ヘッダーメニュー*/
#menuBody_sp {
	/*display: none;*/
	border-left: solid 1px #ddd;
	position: fixed;
	top: 0;
	right: -24px;
	background-color: rgba(255, 255, 255, 1);
	width: 200px;
	/*min-height: 100vh;*/
	/*min-height: 100%;*/
	height: 100%;
	padding: 0 58px 0 30px;
	z-index: 9999;
	overflow-y: auto;

    -webkit-transform: translateX(290px);
    transform: translateX(290px);/*中身を表示*/
    transition: .3s ease-in-out;/*滑らかに表示*/
}
#menuBody_sp.active {
    /*display: block;*/
    -webkit-transform: translateX(0px);
    transform: translateX(0px);/*中身を表示*/
}
.menu_bg {
	display: block;
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0);
	width: 100%;
	height: 100%;
	z-index: 9998;
	overflow: hidden;
	cursor: pointer;
}



#menuBody_sp_box {
	height: 100%;
}
.menu_btn_close {
	text-align: right;
	padding-top: 22px;
	width: 100%;
	height: 30px;
}
.menu_btn_close a {
	width: 30px;
	height: 30px;
	padding: 10px;
}
.menu_logo {
	width: 164px;
	padding-top: 40px;
}
#menuBody_sp .menu {
	margin: 0 auto 0;
}
#menuBody_sp .menu li {
	margin-top: 1em;
	list-style-type: none;
	font-size: 20px;
}
#menuBody_sp .menu li a {
	color: #111;
	text-decoration: none;
	font-size: 20px;
	//font-size: 2.3vw;
}
#menuBody_sp .menu li a:hover {
	color: #999;;
}
.subMenu {
	margin: 0;
	padding-left: 45px;
}
.subMenu a {
	font-size: 16px;
}

.menu_sns {
	width: 159px;
	margin: 50px auto 0;
}
.menu_sns li {
	float: left;
	width: 29px;
	height: 29px;
	margin: 0 12px;
	list-style-type: none;
}




/********************************************
 メインメニューアイコンの開閉アニメーション
********************************************/
/*サークル部分*/
#headMenu{
	position: relative;
	width: 30px;
	height: 30px;
	margin: 0;
	z-index: 9999;
}
#headMenu a {
	display: block;
	width: 100%;
	height: 100%;
}

/*アイコン部分*/
#headMenuIcon{
	display: block;
	position: absolute;
	top: 14px;
	left: 15px;
	width: 24px;
	height: 2px;
	margin: -1px 0 0 -11px;
	background-color: #111;
	transition: .2s;
}
/*擬似要素の上下の線*/
#headMenuIcon:before, #headMenuIcon:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 24px;
	height: 2px;
	background-color: #111;
	transition: .3s;
}
#headMenuIcon:before{
	margin-top: -6px;
}
#headMenuIcon:after{
	margin-top: 4px;
}
/*オープン状態*/
#headMenu .close {
	/*background: rgba(0,0,0,0.2);*/
}
#headMenu .close span{
	background: transparent;
}
#headMenu .close span:before, #headMenu .close span:after{
	margin-top: 0;
}
#headMenu .close span:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#headMenu .close span:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}


/*トップページ*/
.inview-fade {
	opacity: 0;
	transition: 2.5s;/*スクロールインでフェードする時間*/
}
.inview-show{
	opacity: 1.0;
}















/*@media screen and (min-width: 1281px) {*/
@media screen and (min-width: 768px) {
/*画面幅が768px以上（PC）*/
/*.pc_only {
	display: block;
}*/
.sp_only {
	/*スマホでは非表示*/
	display: none !important;
}
/*マウスオーバーで画像拡大*/
.hoverLarge {
	position: relative;
	overflow: hidden;
}
.hoverLarge:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.hoverLarge:hover:after {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.hoverLarge .inner {
	z-index: 1;
	position: relative;
}

body {
	position: relative;
}

#headBody {
	width: 100%;
	height: 30px;
	padding: 22px 0;
	z-index: 9990;
}
header {
	position: relative;
	width: 1082px;
	height: 30px;
	margin: 0 auto;
}
.blogTitle {
	float: left;
	width: 138px;
	height: 100%;
}
.blogTitle a {
	display: block;
	width: 100%;
	height: 100%;
}
.blogTitle img {
	width: 100%;
	height: auto;
	vertical-align: top;
}


.head_icon {
	float: right;
	width: 262px;
}
.head_icon li {
	position: relative;
	float: right;
	width: 30px;
	height: 30px;
	margin: 0 0 0 24px;
	list-style-type: none;
}
.head_icon li img {
	width: 100%;
	height: auto;
}


#search_icon {
	width: 30px;
	padding-left: 100px;
}

#searchform {
	display: none;
	width: 130px;
	height: 30px;
}
#searchform form {
	height: 30px;
}
#searchform input {
	display: inline-block;
	height: 30px;
	vertical-align: top;
}
.search_submit {
	border: none;
	background: url(images/search_icon.gif) 0 0 no-repeat;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	text-indent: -9999px;
}
.search_txt {
	border: none;
	width: 95px;
	height: 29px;
	padding: 0;
	margin: 0 5px 0 0;
	font-size: 14px;
	border-bottom: solid 1px #bbb;
	color: #111;
}


.page-home #cart_icon {
/*仮トップページ用 最後に削除*/
	padding-left: 0;
}


#footer_body {
	background-color: #fce5e8;
	position: relative;
	width: 100%;
	padding: 30px 0 46px;
}
footer {
	text-align: left;
	width: 1082px;
	margin: 0 auto;
	padding: 0;
}
footer li {
	list-style-type: none;
}

.foot_logo {
	float: left;
	width: 158px;
	margin-right: 54px;
}

.foot_menu {
	float: left;
	width: 440px;
}
.foot_menu li {
	float: left;
	width: 170px;
	margin: 0 50px 1em 0;
}
.foot_menu li:before {
	font-size: 12px;
	content: "― ";
}
.foot_menu li a {
	font-size: 12px;
}

.foot_sns {
	float: right;
	width: 144px;
}
.foot_sns li {
	float: right;
	width: 32px;
	height: 32px;
	margin-left: 16px;
}

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

#goTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	z-index: 9999;
	opacity : 0.7;
}
#goTop a {
	display: block;
	width: 100%;
	height: 100%;
	color: #222;
	font-size: 10px;
}



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

#main {
	width: 100%;
}

.page_title_body {
	justify-content: space-between;
	width: 100%;
	margin: 0 0 1em;
	padding: 2px 0;
	letter-spacing: 0.05em;
}
.page_title_body img {
	width: 100%;
	height: auto;
}
.page_title_body .t {
	width: 360px;
	margin: 0;
}
.page_title_body .i {
	width: 700px;
	margin: 0;
}

h1.page_title {
	width: 100%;
	padding: 20px 0;
	margin: 0 auto;
	font-size: 32px;
	color: #333;
	/*font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;*/
	letter-spacing: 0em;
	font-weight: normal;
}


.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;
}

.box_body {
	width: 1082px;
	margin: 0 auto;
}

.home .box_body {
	margin-top: -50px;
	padding-top: 50px;
}




/*サイドバー*/
#sidebar {
	float: right;
	border: solid 5px #f1f1f1;
	width: 290px;
	padding: 5px;
}
#sidebar li {
	list-style-type: none;
}


/*トップページ*/
#topImgBody {
	position: relative;
	max-width: 1082px;
	max-height: 530px;
	/*margin-bottom: 80px;*/
	margin: 0 auto 30px;
	z-index: 9990;
}
#topImg {
	position: relative;
	z-index: 1;
}
#topImg div {
	max-height: 600px;
	display: none;
}
#topImg img {
	width: 100%;
	height: auto;
}

.scroll_btn {
	width: 1082px;
	margin: 20px auto;
}
.more_btn {
	width: 261px;
	height: 54px;
	margin-top: 30px;
}
.more_btn img {
	border: solid 1px #111;
}
.more_btn a{
	display: block;
	background-color: #fff;
	width: 100%;
}


#top_instagram {
	font-size: 14px;
}
#top_instagram h2 {
	margin: 0;
}
#top_instagram .insta_acount {
	margin-bottom: 1em;
	font-size: 16px;
}
#top_instagram li {
	list-style-type: none;
}
#top_instagram figure {
	margin-bottom: 20px;
}
#top_instagram img {
	margin: 0;
	vertical-align: top;
}
#top_instagram .txt {
	margin-bottom: 10px;
}
#top_instagram .date {
	font-size: 10px;
}



#top_concept .more_btn {
	margin-top: 120px;
}
#top_urahoro .more_btn {
	margin-top: 30px;
}
#top_relations .more_btn {
	margin-top: 15px;
}
#top_guide .more_btn {
	margin-top: 45px;
}

.box_body {
	margin-bottom: 100px;
}
.box_body p {
	margin-bottom: 1em;
}
.box_body p:last-of-type{
	margin-bottom: 0;
}

.box_body h2 {
	margin-bottom: 34px;
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.05em;
	font-weight: normal;
}
.box_body h3 {
	margin-bottom: 24px;
	font-size: 16px;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}

.box_contents {
	display: flex;
	justify-content: space-between;
}
.flex-img {
	width: 650px;
}
.flex-txt {
	width: 380px;
}

#top_lineup {
	background-color: #fce5e8;
	width: 92%;
	padding: 32px 4%;
}
#top_lineup .box_body {
	margin-bottom: 0;
}
#top_lineup ul {
	margin: 0;
	padding: 0;
}
#top_lineup li {
	width: 320px;
	margin-right: 61px;
	margin-bottom: 32px;
	list-style-type: none;
}
#top_lineup li:nth-of-type(3n){
	margin-right: 0;
}
#top_lineup li a.i{
	display: block;
	background-color: #fff;
	width: 100%;
}
#top_lineup li a:hover {
}
#top_lineup h3 {
	margin: 1em 0 0;
	font-size: 14px;
	font-weight: normal;
}


/*商品一覧*/
.category .page_title_body {
	padding: 140px 0 0;
	font-size: 32px;
	font-weight: normal;
}
.category .page_title_body h1 {
	margin: 0;
	padding: 0;
	letter-spacing: 0.05em;
}
.item_list_item {
	text-align: center;
	margin-bottom: 80px !important;
	letter-spacing: 0.05em;
}
.item_list_item img {
	margin: 0 0 24px;
	vertical-align: top;
}
.item_list_catchcopy {
	font-size: 14px;
}
.item_list_cat_slug {
	border-top: solid 1px #111;
	border-bottom: solid 1px #111;
	padding: 3px 0 4px;
	margin-bottom: 1em;
	font-size: 24px;
	line-height: 1;
}
.item_list_item h2 {
	font-size: 16px;
	font-weight: normal;
}
.item_list_cat_name {
	margin-bottom: 4px;
	font-size: 16px;
}
.item_list_price {
	font-size: 14px;
}


/*商品詳細*/
.item_img {
	float: left;
	width: 580px;
}
.image_main {
	margin: 0 0 20px;
}
.item_info {
	float: right;
	width: 450px;
}

.item_img ul {
}
.item_img li {
	float: left;
	width: 130px;
	margin: 0 20px 20px 0;
	list-style-type: none;
}
.item_img li:nth-of-type(4n) {
	margin-right: 0;
}
.item_img li img {
	width: 100%;
	height: auto;
}


.item_info h1 {
	margin: 0 0 1em;
	font-size: 24px;
	font-weight: normal;
}
.item_info h1 span {
	display: inline-block;
	font-size: 80%;
}
.price {
	margin: 0 0 0.5em;
	font-size: 23px;
	letter-spacing: 0.05em;
}
.other_txt {
	margin-bottom: 4.5em;
	font-size: 12px;
}
.shop_tag {
	margin-bottom: 4em;
}
.item_sns_btn {
	margin-bottom: 50px;
	vertical-align: top;
}
.item_sns_btn li {
	float: left;
	height: 21px;
	margin-right: 10px;
	list-style-type: none;
	vertical-align: top;
}
.item_sns_btn .tw {
	padding: 1px 0 0;
}
.catchcopy {
	margin: 0 0 1em;
	font-size: 18px;
	font-weight: normal;
}
.text01 {
	margin: 0 0 1.5em;
	font-size: 14px;
}
.capacity {
	margin: 0 0 1.5em;
	font-size: 14px;
}
.text02 {
	font-size: 14px;
}


#related_item {
	text-align: center;
	margin-top: 20px;
}
#related_item h2.related_item_ttl {
	display: inline-block;
	border-bottom: solid 2px #111;
	text-align: center;
	padding: 0 0 0.5em;
	margin: 0 auto 70px;
	font-size: 24px;
	font-weight: normal;
}





/*ページ*/
.box_left {
	width: 560px;
}
.box_right {
	width: 430px;
}
.box_left img,
.box_right img {
	width: 100%;
	height: auto;
}


/*Concept*/
.page_title_concept {
	margin-bottom: -100px;
}
.page-concept .box_left {
	width: 615px;
}
.page-concept .box_right {
	width: 467px;
}
.page-concept .box_right p {
	padding-left: 92px;
}

.concept_cap01 {
	background-color: #FCE4E7;
	padding: 80px 0;
	margin-bottom: -46px;
}
.concept_cap01 p {
	width: 1082px;
	margin: 0 auto;
}

.concept_box01 {
	justify-content: space-between;
	align-items: flex-end;
}
.concept_box01 .box_left img {
	margin-bottom: 0;
}
.concept_box01 .box_right p:last-of-type {
	margin-bottom: 0;
}
.concept_box02 {
	justify-content: space-between;
}
.concept_box02 .box_left {
	width: 540px;
}
.concept_box02 .box_left img {
	width: 261px;
	height: auto;
}




/*関わっている人*/

/*浦幌町ガイド*/
.guide_box02 {
	padding: 0;
}
.guide_box02 img {
	margin: 0 0 25px;
}
.guide_box02 h3 {
	background-color: #ddd;
	padding: 6px 8px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1;
}
.guide_box02 p {
	font-size: 12px;
}

.guide_box03 .box_right {
	align-self: flex-end;
}
.guide_box03 .box_right img {
	float: right;
	width: 380px;
	height: auto;
}

h2#company {
	border-top: dotted 1px #ddd;
	margin-top: 100px;
	padding-top: 1.5em;
}

.company_daihyo h3 {
	margin: 0 0 1em;
	font-size: 14px;
	font-weight: normal;
}
.company_daihyo img {
	width: 170px;
	height: auto;
	margin: 0 0 0 60px;
}

.company_info {
	background-color: #fce5e8;
	width: 300px;
	padding: 15px;
}
.company_info h4 {
	font-size: 14px;
	font-weight: normal;
}
.company_info p {
	margin: 0;
	font-size: 12px;
}


}/*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: 48% !important;
	margin-right: 4% !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 {
	padding-top: 50px;
	z-index: 9990;
}
#wrapper {
	padding-top: 40px;
}
.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 {
	position: fixed;
	background-color: #fff;
	border-bottom: solid 1px #ddd;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	z-index: 9999;
}
header {
	width: 86%;
	padding: 10px 7%;
}
.blogTitle {
	float: left;
	max: 138px;
	height: 30px;
	line-height: 0;
}
.blogTitle a {
	display: block;
	width: 100%;
	height: auto;
}

.head_icon {
	position: relative;
	float: right;
	width: 50%;
}
.head_icon li {
	position: relative;
	float: right;
	width: 30px;
	height: 30px;
	margin: 0 0 0 20px;
	list-style-type: none;
}
.head_icon li:nth-of-type(3){
	margin-left: 0;
}
.head_icon li img {
	width: 100%;
	height: auto;
}


#searchform {
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
}
#searchform input {
	display: inline-block;
	-webkit-appearance: none;
	vertical-align: middle;
}
.search_submit {
	border: none;
	background: url(images/search_icon.gif) 0 0 no-repeat;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	text-indent: -9999px;
}
.search_txt {
	border: none;
	border-bottom: 1px solid #bbb;
	border-radius: 0;
	width: 115px;
	height: 29px;
	padding: 0;
	margin: 0 5px 0 0;
	font-size: 14px;
	-webkit-appearance: none;
}




#footer_body {
	background-color: #fce5e8;
	position: relative;
	width: 86%;
	padding: 20px 7%;
}
footer {
	text-align: left;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
footer li {
	list-style-type: none;
}

.foot_logo {
	width: 158px;
	height: 53px;
	margin: 0 auto 2em;
}

.foot_menu {
	text-align: center;
	width: 100%;
	margin: 0 auto 2em;
}
.foot_menu li {
	width: 100%;
	margin: 0 0 0.5em;
}
/*.foot_menu li:before {
	font-size: 12px;
	content: "― ";
}*/
.foot_menu li a {
	font-size: 12px;
}

.foot_sns {
	text-align: center;
	width: 216px;
	margin: 0 auto 2em;
	
}
.foot_sns li {
	float: right;
	width: 32px;
	height: 32px;
	margin: 0 20px;
}

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


#goTop {
	position: fixed;
	bottom: 24px;
	right: 10px;
	width: 50px;
	height: 50px;
	z-index: 9999;
	opacity : 0.7;
}
#goTop a {
	display: block;
	width: 100%;
	height: 100%;
}
#goTop img {
	width: 100%;
	height: auto;
}

.scroll_btn {
	padding: 0 0 10px 7%;
}


/*スクロールでメニューFIX*/
.clone-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	transition: .3s;
	transform: translateY(-100%);

}
.is-show {
	transform: translateY(0);
}

.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;
}
.page_title_body {
	width: 100%;
	padding: 0;
	margin-right: 0 !important;
	letter-spacing: 0.05em;
}
.page_title_body .t {
	padding: 0 7%;
}
.page_title_body .i {
}

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;
}
.contents p,
.contents .txt {
	margin: 0 0 1em;
}
.contents .txtBtm {
	margin-bottom: 3em;
}


/*パンくずリスト*/
.breadcrumbBody {
	background-color: #f1f1f1;
	width: 100%;
	margin: 0 auto 1em;
	padding: 0;

}
.breadcrumb {
	width: 86%;
	padding: 1em 7px;
}


/*サイドバー*/
#sidebar {
	background-color: #f1f1f1;
	width: 100%;
}
#sidebar li {
	list-style-type: none;
}



/*トップページ*/
#topImgBody {
	position: relative;
	width: 100%;
	margin-bottom: 0;
	/*padding-bottom: 50px;*/
	padding-bottom: 10px;
	overflow: hidden;
	z-index: 0;
}
/*#topImgBody img {
	display: block;
	text-align: center;
	width: 100%;
	height: auto;
	margin: 0 auto;
}*/



.more_btn {
	width: 50%;
	margin: 2em auto 0;
}
.more_btn img {
	box-sizing: border-box;
	border: solid 1px #111;
	width: 100%;
	height: auto;
}
.more_btn a{
	display: block;
	background-color: #fff;
	width: 100%;
}


#top_instagram {
	margin-left: 7%;
	margin-right: 7%;
	margin-bottom: 2em;
	font-size: 12px;
}
#top_instagram h2 {
	margin: 0;
}
#top_instagram .insta_acount {
	margin-bottom: 1em;
	font-size: 14px;
}
#top_instagram li {
	list-style-type: none;
}
#top_instagram figure {
	float: left;
	width: 60px;
	height: 60px;
	margin: 0 14px 5px 0;
}
#top_instagram img {
	width: 100%;
	height: auto;
	margin: 0;
	vertical-align: top;
}
#top_instagram .txt {
	margin-top: 3px;
	margin-bottom: 10px;
}
#top_instagram .date {
	clear: both;
	display: block;
	background-color: #eee;
	padding: 2px 5px;
	font-size: 10px;
}




.box_body {
	margin-bottom: 1em;
}

.box_body p {
	margin-bottom: 1em;
}
.box_body p:last-of-type{
	margin-bottom: 0;
}

.box_body h2 {
	width: 86%;
	margin: 0 7% 1em;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 0.05em;
}
.box_body h3 {
	margin-bottom: 1em;
	font-size: 16px;
	font-weight: normal;
}
.box_body h3 br {
	display: none;
}

.box_contents {
	display: flex;
	flex-direction: column;
	width: 86%;
	margin: 0 7%;
}
.flex-img {
	order: 0;
	width: 100%;
}
.flex-txt {
	order: 1;
	width: 100%;
}

#top_lineup {
	background-color: #fce5e8;
	width: 100%;
	padding: 1.5em 0;
}
#top_lineup ul {
	width: 86%;
	margin: 0 7%;
	padding: 0;
}
#top_lineup li {
	margin-bottom: 32px;
	list-style-type: none;
}
#top_lineup li a.i{
	display: block;
	background-color: #fff;
	width: 100%;
}
#top_lineup li a:hover {
}
#top_lineup h3 {
	margin: 0.5em 0 0;
	font-size: 12px;
	line-height: 1.35;
	font-weight: normal;
}
#top_lineup h3 span {
	display: block;
	font-size: 10px;
}




/*メニュー*/
#menuBody_sp {
	width: 270px;
	padding: 0 0 0 0;
}
#menuBody_sp_box {
	box-sizing: border-box;
	height: 100%;
	padding-left: 30px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.menu_btn_close {
	box-sizing: border-box;
	padding: 10px 50px 0 0;
}
.menu_btn_close a {
	padding-right: 0;
}
.menu_sns {
	margin-left: 5px;
	padding-bottom: 3em;
}

#cart_icon {
/*カートボタンのみ表示時用*/
	float: right;
}




/*商品一覧*/
.category .page_title_body,
.search .page_title_body  {
	width: 100%;
	padding: 0 0 1em;
	font-size: 28px;
	font-weight: normal;
}
.category .page_title_body h1 {
	margin: 0;
	padding: 0;
	letter-spacing: 0.05em;
	line-height: 1.35;
}
.item_list_item {
	text-align: center;
	width: 46% !important;
	margin: 0 2% 40px !important;
	letter-spacing: 0.05em;
}
.item_list_item img {
	margin: 0 0 10px;
	vertical-align: top;
}
.item_list_catchcopy {
	font-size: 12px;
}
.item_list_catchcopy br {
	display: none;
}
.item_list_cat_slug {
	border-top: solid 1px #111;
	border-bottom: solid 1px #111;
	padding: 3px 0 4px;
	margin-bottom: 1em;
	font-size: 18px;
	line-height: 1;
}
.item_list_item h2 {
	font-size: 14px;
	font-weight: normal;
	line-height: 1.25;
}
.item_list_item h2 a {
}
.item_list_cat_name {
	margin-bottom: 4px;
	font-size: 12px;
}
.item_list_price {
	font-size: 12px;
}

.search .page_title_body p {
	text-align: center;
	margin-top: 1em;
	font-size: 12px;
}



/*商品詳細*/
.item_img {
	width: 100%;
}
.image_main {
	margin: 0 0 6px;
}
.item_info {
	width: 100%;
}

.item_img ul {
	margin-bottom: 1em;
}
.item_img li {
	float: left;
	width: 23.5%;
	margin: 0 2% 6px 0;
	list-style-type: none;
}
.item_img li:nth-of-type(4n) {
	margin-right: 0;
}
.item_img li img {
	width: 100%;
	height: auto;
}


.item_img h1 {
	margin: 0 0 1em;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.2;
}
.item_img h1 span {
	display: inline-block;
	font-size: 80%;
}
.price {
	margin: 0 0 0.5em;
	font-size: 23px;
	letter-spacing: 0.05em;
}
.other_txt {
	margin-bottom: 3.5em;
	font-size: 12px;
}
.shop_tag {
	text-align: center;
	margin-bottom: 3em;
}
.item_sns_btn {
	margin-bottom: 50px;
	vertical-align: top;
}
.item_sns_btn li {
	float: left;
	height: 21px;
	margin-right: 10px;
	list-style-type: none;
	vertical-align: top;
}
.item_sns_btn .tw {
	padding: 1px 0 0;
}
.catchcopy {
	margin: 0 0 1em;
	font-size: 16px;
	font-weight: normal;
}
.catchcopy br {
	display: none;
}
.text01 {
	margin: 0 0 1.5em !important;
	font-size: 14px;
}
.capacity {
	margin: 0 0 1.5em;
	font-size: 14px;
}
.text02 {
	font-size: 14px;
}

#related_item {
	text-align: center;
	margin: 0 7%;
}
#related_item h2.related_item_ttl {
	display: inline-block;
	border-bottom: solid 2px #111;
	text-align: center;
	padding: 0 0 0.5em;
	margin: 0 auto 2em;
	font-size: 24px;
	font-weight: normal;
}
#related_item .item_list_item {
	width: 46% !important;
	margin: 0 2% 40px !important;
}


/*Concept*/
.page_title_concept {
	margin-bottom: 0;
}
.concept_cap01 {
	background-color: #FCE4E7;
	padding: 20px 7%;
	margin-bottom: 1.5em;
}
.concept_cap01 p {
	width: 100%;
	margin: 0 auto;
}
.concept_cap01 p img,
.concept_box02 p img {
	width: 100%;
	height: auto;
}
.concept_box01 .box_left img {
	margin-bottom: 0;
}
.concept_box01 .box_right {
	margin-bottom: 0;
}
.concept_box01 .box_right p:last-of-type {
	margin-bottom: 0;
}
.concept_box02 .ttl br {
	display: none;
}


/*浦幌町ガイド*/
.guide_box02 {
	border-bottom: dotted 1px #ddd;
	padding: 0 0 50px;
}
.guide_box02 img {
	margin: 0 0 15px;
}
.guide_box02 h3 {
	background-color: #ddd;
	padding: 6px 8px;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1;
}
.guide_box02 p {
	font-size: 12px;
}

h2#company {
	padding-top: 60px;
	margin-top: -60px;
}

.guide_box03 .box_right {
	align-self: flex-end;
}
.guide_box03 .box_right img {
	display: block;
	width: 60%;
	height: auto;
	margin: 0 auto;
}
.company_daihyo h3 {
	margin: 0 0 1em;
	font-size: 14px;
	font-weight: normal;
}
.company_daihyo img {
	width: 40%;
	height: auto;
	margin: 0 0 1em 1.5em;
}

.company_info {
	box-sizing: border-box;
	background-color: #fce5e8;
	width: 100%;
	padding: 15px;
}
.company_info h4 {
	font-size: 14px;
	font-weight: normal;
}
.company_info p {
	margin: 0;
	font-size: 12px;
}





}/*スマホ End*/
