/* Theme Name: sck */


/************************リセットCSS******************************************/

/*
 * ress.css ? v1.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
 
/* # =================================================================
   # Global selectors
   # ================================================================= */
 
/**
 * 1. All browsers without overlaying scrollbars
 * 2. iOS 8+
 
 * 1. すべてのブラウザで、スクロールバーのオーバーレイを無し。
 * 2. iOS 8+*/

html {
  box-sizing: border-box;
  overflow-y: scroll; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
 
*,
::before,
::after {
  box-sizing: inherit;
}
 
/**
 * 1. Inherit text-decoration and vertical align to ::before and ::after pseudo elements
 
 * 1. 「::before」と「::after」に、「text-decoration」と「vertical-align」を継承。
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit;
}
 
/**
 * 1. Set `background-repeat: no-repeat` to all elements
 * 2. Reset `padding` and `margin` of all elements
 
 * 1. すべての要素に、「background-repeat: no-repeat;」を指定。
 * 2. すべての要素に、「padding」と「margin」をリセット。
 */
* {
  background-repeat: no-repeat; /* 1 */
  padding: 0; /* 2 */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
 
/**
 * Add the correct display in iOS 4-7.
 
 * iOS 4-7に、正しいdisplayを設定。
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
 
/**
 * 1. Show the overflow in Edge and IE
 
 * 1. EdgeとIEに、「overflow: visible;」を定義。
 */
hr {
  overflow: visible; /* 1 */
}
 
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox
 * Correct `block` display not defined for `main` in IE 11
 
 * IE8/9に、displayプロパティを定義。
 * IE10/11とFirefoxのdetail要素とsummary要素に、displayプロパティを定義。
 * IE11のmain要素に、displayプロパティを定義。
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
 
/**
 * 1. Set font-size to 80% in `small` elements
 
 * 1. small要素に、フォントサイズ「80%」を定義。
 */
small {
  font-size: 80%; /* 1 */
}
 
/**
 * 1. Add the correct display in IE
 
 * 1. IEに、displayプロパティを定義。
 */
[hidden],
template {
  display: none; /* 1 */
}
 
/**
 * 1. Add a bordered underline effect in all browsers
 * 2. Remove text decoration in Firefox 40+
 
 * 1. すべてのブラウザに、点線を定義。
 * 2. Firefox40+に、テキストの装飾を削除。
 */
abbr[title] {
  border-bottom: 1px dotted; /* 1 */
  text-decoration: none; /* 2 */
}
 
/**
 * 1. Remove the gray background on active links in IE 10
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+
 
 * 1. IE10に、アクティブリンクのグレーの背景を削除。
 * 2. iOS8+とSafari8+に、リンクの下線のギャップを削除。
 */
a {
  text-decoration: none;
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
  
}
 
/**
 * 1. Remove the outline when hovering in all browsers
 
 * 1. すべてのブラウザに、ホバー時のアウトラインを削除。
 */
a:active,
a:hover {
	outline-width: 0;
	
}
 
/**
 * 1. Specify the font family of code elements
 
 * 1. コード要素に、フォントファミリーを指定。
 */
code,
kbd,
pre,
samp {
  /*font-family: monospace, monospace;  1 */
}
 
/**
 * 1. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+
 
 * 1. Edge12+, Safari6.2+, Chrome18+に、「bold」を適用。
 */
b,
strong {
  font-weight: bolder; /* 1 */
}
 
/**
 * 1. Address styling not present in Safari and Chrome
 
 * 1. SafariとChromeに、定義。
 */
dfn {
  font-style: italic; /* 1 */
}
 
/**
 * Address styling not present in IE 8/9
 
 * 1. IE8/9に、定義。
 */
mark {
  background-color: #ff0;
  color: #000;
}
 
/**
 * https://gist.github.com/unruthless/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
 
sub {
  bottom: -0.25em;
}
 
sup {
  top: -0.5em;
}


/* # =================================================================
   # Forms
   # ================================================================= */
 
input {

}
 
/**
 * 1. Firefox 36+
 
 * 1. Firefox 36+
 */
[type="number"] {
  width: auto; /* 1 */
}
 
/**
 * 1. Safari 8+
 
 * 1. Safari 8+
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
}
 
/**
 * 1. Safari 8
 
 * 1. Safari 8
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; /* 1 */
}
 
/**
 * 1. Internet Explorer 11+
 * 2. Specify textarea resizability
 
 * 1. Internet Explorer 11+
 * 2. textarea要素に、垂直方向のリサイズを指定。
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}
 
/**
 * 1. Specify font inheritance of form elements
 
 * 1. フォーム要素に、フォントの継承を指定。
 */
button,
input,
optgroup,
select,
textarea {

}
 
/**
 * 1. Restore the font weight unset by the previous rule.
 
 * 1. 前の指定により、フォントのウェイトを再定義。
 */
optgroup {
  font-weight: bold; /* 1 */
}
 
/**
 * 1. Address `overflow` set to `hidden` in IE 8/9/10/11
 
 * 1. IE8/9/10/11に、overflow時にhiddenを設定。
 */
button {
  overflow: visible; /* 1 */
}
 
/**
 * Remove inner padding and border in Firefox 4+
 
 * Firefox4+に、内側のpaddingとborderを削除。
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}
 
/**
 * Replace focus style removed in the border reset above
 
 * 1. フォーカス時のスタイルを定義。
 */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}
 
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4
 * 2. Correct the inability to style clickable types in iOS
 
 * 1. Android4に、ネイティブのaudio要素とvideo要素のコントロールのバグを防ぐ。
 * 2. iOSに、クリッカブルなbutton要素のtypeのスタイルを修正。
 */
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}
 
/**
 * 1. Firefox 40+, Internet Explorer 11-
 
 * 1. Firefox 40+, Internet Explorer 11-
 */
button,
select {
  text-transform: none; /* 1 */
}
 
/**
 * Remove the default button styling in all browsers
 
 * すべてのブラウザにおいて、デフォルトのボタンのスタイルを削除。
 */
button,
input,
select,
textarea {
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, "メイリオ", Helvetica, sans-serif;
	border: 1px none #CCC;
	/*
	padding-top: 1.5%;
	padding-right: 2%;
	padding-bottom: 1.5%;
	padding-left: 2%;
	*/
	
}
 
/**
 * Style select like a standard input
 * 1. Firefox 36+
 * 2. Chrome 41+
 
 * 標準的なinput要素のスタイルを選択。
 * 1. Firefox 36+
 * 2. Chrome 41+
 */
select {
	-moz-appearance: none; /* 1*/
	-webkit-appearance: none;
	border: 1px inset #CCC;
}
 
/**
 * 1. Internet Explorer 11+
 
 * 1. Internet Explorer 11+
 */
select::-ms-expand {
  display: none; /* 1 */
}
 
/**
 * 1. Internet Explorer 11+
 
 * 1. Internet Explorer 11+
 */
select::-ms-value {
  color: currentColor; /* 1 */
}
 
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11
 * 2. Correct the color inheritance from `fieldset` elements in IE
 * 3. Correct the text wrapping in Edge and IE
 * 4. Correct the text wrapping in Edge and IE
 * 5. Correct the text wrapping in Edge and IE
 
 * 1. IE 8/9/10/11に、カラーの継承を定義。
 * 2. IEに、fieldset要素からカラーを継承するように定義。
 * 3. EdgeとIEに、テキストのラッピングを修正。
 * 4. EdgeとIEに、テキストのラッピングを修正。
 * 5. EdgeとIEに、テキストのラッピングを修正。
 */
legend {
  border: 0; /* 1*/
  color: inherit; /* 2 */
  display: table; /* 3 */
  max-width: 100%; /* 4 */
  white-space: normal; /* 5 */
}
 
/**
 * 1. Correct the inability to style clickable types in iOS and Safari
 * 2. Change font properties to `inherit` in Chrome and Safari
 
 * 1. iOSとSafariに、クリッカブルなtypeのスタイルを修正。
 * 2. ChromeとSafariに、フォントプロパティの継承を変更。
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
 
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari
 
 * Chrome, Edge, Safariに、テキストのスタイルを修正。
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
 
/**
 * 1. Correct the odd appearance in Chrome and Safari
 * 2. Correct the outline style in Safari
 
 * 1. ChromeとSafariに、アピアランスを修正。
 * 2. Safariに、アウトラインを修正。
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}


/* # =================================================================
   # Specify media element style
   # ================================================================= */
 
/**
 * 1. Remove border when inside `a` element in IE 8/9/10
 
 * 1. IE8/9/10に、a要素の中にある時にボーダーを削除。
 */
img {
  border-style: none; /* 1 */
}
 
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera
 
 * 1. Chrome, Firefox, Operaに、正しいvertical-alignを与える。
 */
progress {
  vertical-align: baseline;
}
 
/**
 * 1. Internet Explorer 11-
 
 * 1. Internet Explorer 11-
 */
svg:not(:root) {
  overflow: hidden; /* 1 */
}
 
/**
 * 1. Internet Explorer 11+, Windows Phone 8.1+
 
 * 1. Internet Explorer 11+, Windows Phone 8.1+
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
}

/* # =================================================================
   # Acessibility
   # ================================================================= */
 
/**
 * Hide content from screens but not screenreaders
 
 * コンテンツを隠す時は、スクリーンリーダーからでなく、スクリーンから。
 */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
 
/**
 * Specify the progress cursor of updating elements
 
 * アップデート中の要素のプログレスのカーソルを指定。
 */
/* */
[aria-busy="true"] {
  cursor: progress;
}
 
/**
 * Specify the pointer cursor of trigger elements
 
 * トリガー要素のポインターのカーソルを指定。
 */
[aria-controls] {
  cursor: pointer;
}
 
/**
 * Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements
 
 * 使用不可、編集不可の要素のスタイルが無いカーソルを指定。
 */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
 
/**
 * Specify text selection background color and omit drop shadow
 
 * テキスト選択時の背景色を指定し、ドロップシャドウを削除。
 */
 
/**
 * 1. Required when declaring ::selection
 
 * 1. 「::selection」を使用する時に必要。
 */
::-moz-selection {
  background-color: #b3d4fc; /* 1 */
  color: #fff;
  text-shadow: none;
}
 
/**
 * 1. Required when declaring ::selection
 
 * 1. 「::selection」を使用する時に必要。
 */
::selection {
  background-color: #b3d4fc; /* 1 */
  color: #fff;
  text-shadow: none;
}


/*****************************************************************/


body {
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, "メイリオ", Helvetica, sans-serif;
	color: #333;
	padding: 0px;
	letter-spacing: 0.1em;
	margin: 0px;
	width: auto;
	
}

 a, a:hover, a:visited, a:active {
	color: #333;
 }
 
/********テキストシャドー　ブラック**************************/

.entry-header .entry-title {	
	text-shadow: 1px 1px 2px #000; 
}

 /********テキストシャドー　ダークグレー*************************
 
 .custom_catch_copy {	
	text-shadow: 1px 1px 2px #333; 
}
*/

 /********テキストシャドー　グリーン*************************
 .custom_catch_copy {	
	text-shadow: 1px 1px 2px #990; 
}
*/
/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/

.site-header {
	background-color: rgba(255,255,255,0.9);
	color: #333;
	left: 0;
	position: fixed;
	right: 0;
	text-shadow: 0 0 3px rgba(0,0,0,0.3);
	top: 0;
	width: 100%;
	z-index: 5;
	padding-right: 40px;
	padding-left: 40px;
	padding-top: 15px;
	padding-bottom: 15px;
	background-image: url(../../../images/topimg/ha001x.png);
	background-position: 15px 12px;
}


/**
 # Site Branding
 */

.site-branding {
	display: table-cell;
	vertical-align: middle;
	width: 30%;
	font-size: small;
	margin: 0;
}

.site-title {
	clear: none;
	line-height: 1.2;
	margin: 0;
	position: relative;
	vertical-align: middle;
	font-weight: normal;
}

.site-title,
.site-branding a,
.site-branding a:hover,
.site-branding a:focus,
.site-branding a:active {
	color: inherit;
	text-decoration: none;
	margin-left: -10px;
	font-size: 1.2em;
	padding-top: 4px;
	padding-bottom: 3px;
}

.site-branding .site-logo-link {
	line-height: 1;
	padding-right: 10px;
	position: relative;
	vertical-align: middle;
	width: auto;
}

.site-branding .site-logo-link img {
	height: auto;
	max-height: 100px;
	max-width: 310px;
	width: auto;
}


/**********サイトキャッチコピー********************************/


.site-branding .site-description {
	font-weight: 300;
	line-height: 3;
	padding: 0;
	margin: 0;
	display: none;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

#site-navigation {
	display: table-cell;
	
	text-align: right;
	vertical-align: middle;
	width: 70%;
		filter:alpha(opacity=95);
	opacity:.95;
}



#site-navigation a {
	color: #fff;
	display: inline-block;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

#site-navigation a:hover,
#site-navigation a:focus {
	opacity: 0.7;
	text-decoration: none;
}

#site-navigation ul,
#site-navigation li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#site-navigation li {
	position: relative;
}

#site-navigation ul li {
	display: inline-block;
	letter-spacing: 0.1em;
	margin-left: 1.5em;
	padding: 6px 0 10px;
	text-transform: uppercase;
}

#site-navigation ul ul {
	left: -9999em;
	margin-top: 10px;
	position: absolute;
	width: 220px;
	z-index: 10;
}

#site-navigation ul ul:before {
	border-color: transparent transparent #292c2f transparent;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	content: "";
	height: 0;
	left: 50%;
	margin-left: -10px;
	position: absolute;
	top: -10px;
	width: 0;
}

#site-navigation ul ul ul {
	top: 0;
	padding-right: 8px;
}

#site-navigation ul ul ul:before {
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #292c2f;
	left: auto;
	margin-left: 0;
	right: 0;

}

#site-navigation ul ul li {
	background: #292c2f;
	display: block;
	
	letter-spacing: 0;
	margin-left: 0;
	padding: 0;
	text-align: left;
	text-transform: none;
}

#site-navigation ul ul a {
	display: block;
	
	text-shadow: none;
}

#site-navigation ul li:hover > ul,
#site-navigation ul li.focus > ul {
	left: 50%;
	margin-left: -110px;
}

#site-navigation ul ul li:hover > ul,
#site-navigation ul ul li.focus > ul {
	left: auto;
	margin: 0;
	right: 100%;
}

.menu-toggle {
	display: none;
}


/*--------------------------------------------------------------
# Site Banner (featured content)
--------------------------------------------------------------*/

.site-banner {
	opacity: 1.0;
	position: fixed;
	text-shadow: 0 0 8px rgba(0,0,0,0.3);
	top: 0;
	z-index: -1;
	width: 100%;
}

.admin-bar .site-banner {
	top: 32px;
}

.no-js .site-banner.enable-slider .hentry,
.enable-slider .site-banner-inner:not(.slick-slider) .hentry {
	display: none;
}

.no-js .site-banner.enable-slider .hentry:first-child,
.enable-slider .site-banner-inner:not(.slick-slider) .hentry:first-child {
	display: block;
	position: relative;
}

.site-banner-inner {
	opacity: 1.0;
	-webkit-transition: opacity 5.0s;
	transition: opacity 5.0s;
}

.is-scrolled .site-banner-inner {
	opacity: 0.1;
}

.site-banner-header {
	color: #fff;
	left: 25%;
	opacity: 1.0;
	position: absolute;
	right: 25%;
	text-align: center;
	-webkit-transition: opacity 1.0s;
	transition: opacity 1.0s;
	z-index: 5;
	margin-top: -25%;

	display: block;
	background-color: rgba(0,0,0,0.3);
	padding: 2%;
}

.is-scrolled .site-banner-header {
	opacity: 0.5;
}

.site-banner-header:before,
.site-banner-header:after {
	border-top: 1px solid rgba(255,255,255,0.5);
	content: "";
	display: block;
	margin: 0 auto;
	position: absolute;
}

.site-banner-header:before {
	left: 25%;
	top: 0;
	width: 50%;
}

.site-banner-header:after {
	bottom: 0;
	left: 44%;
	width: 12%;
}

.site-banner-header.hide-deco:before,
.site-banner-header.hide-deco:after {
	display: none;
}

.site-banner a,
.site-banner a:hover,
.site-banner a:focus {
	color: #fff;
	text-decoration: none;
}

.site-banner-header {
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}

.no-js .site-banner-header {
	opacity: 0;
}

.site-banner-header .banner-featured {
	color: #fff;
	display: inline-block;
	
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 13px 15px;
	position: relative;
	text-transform: uppercase;
	top: -20px;
	background-color: #678db8;
	
}

.site-banner h1,
.site-banner .slider-nav {
	color: inherit;

	
	text-transform: none;
}

.site-banner h1 {
	color: #fff;
	font-size: small;
	text-align: center;
}

.site-banner .site-description {
	clip: auto;
	position: static;
}

.site-banner p {
	padding-bottom: 2.5em;
}

.site-banner.too-tall p {
	
}

.site-banner-media {
	overflow: hidden;
	position: relative;
	z-index: 0;
	clip: rect(auto,auto,100px,auto);
}

.site-banner-media img {
	width: 100%;
}

.site-banner .link-more {
	display: none;
}

.site-banner .site-banner-thumbnail {
	background-image: url(../../../images/test_banner/banner4.jpg);
	background-position: center top;
	background-size: cover;
	font-size: small;
	position: relative;
	padding-bottom: 37%;
	overflow: hidden;
	background-repeat: repeat;
}


/* Post images */

.posts .entry-media {
	background-size: cover;
	position: relative;
	/********* トップページ商品画像％ ************/
	width: 100%;
	padding-bottom: 110%;
	margin-bottom: -30%;
}


/*--------------------------------------------------------------
## Single Posts, Single Pages
--------------------------------------------------------------*/


/* site inner */

.is-singular:not(.home) .site-inner {
	background: #fff;
	float: right;
	position: relative;
	width: 60%;
}

.is-singular:not(.home):not(.has-post-thumbnail) .site-inner,
.is-singular.single-format-image .site-inner,
.is-singular:not(.home).is-singular:not(.home).page-template-eventbrite-index .site-inner {
	float: none;
	width: auto;
}

/* site content */

.is-singular:not(.home):not(.single-format-image) .site-content,
.is-singular:not(.home).single-format-image:not(.has-post-thumbnail) .site-content {

}

.is-singular .site-content:before.
.is-singular .site-content:after {
	content: "";
}


/* content area */

.home.is-singular .content-area,
.single-format-image.has-post-thumbnail .content-area {
	
}




/* entry header */

.is-singular .entry-header,
.page-template-eventbrite-index .page-header,
.single-event .event-header {


	
}

.is-singular:not(.home):not(.page-template-eventbrite-index) .entry-header {
	
}

.is-singular.home .entry-header,
.is-singular:not(.has-post-thumbnail) .entry-header,
.is-singular.single-format-image .entry-header,
.is-singular:not(.home).page-template-eventbrite-index .entry-header {
	text-align: center;
}

.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-header {
	background: rgba(0,0,0,0.4);
	border-top: 1px solid rgba(255,255,255,0.2);
	bottom: 0;
	color: rgba(255,255,255,0.7);
	left: 0;
	
	position: fixed;
	text-align: left;
	width: 40%;
}

.page.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-header {
	
}


.is-singular:not(.page-template-eventbrite-index) .entry-header h1 {
	font-style: normal;
	
}

.is-singular:not(.home):not(.page-template-eventbrite-index) .entry-header a {
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-header h1,
.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-header a {
	color: #fff;
}

.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-meta {
	
	top: -20px;
}

.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-meta {
	position: relative;
	width: 100%;
}

.has-post-thumbnail .entry-meta .cat-links {
	color: #FFF;
	display: inline-block;
	padding-top: 13px;
	padding-right: 15px;
	padding-bottom: 13px;
	padding-left: 15px;
	width: 100%;
}
.has-post-thumbnail .entry-meta .cat-links:hover {

}

.entry-meta .cat-links {
	background-color:rgba(255,255,255,0.5);
	padding-bottom: 4%!important;
	margin-bottom: 10px;
}

.is-singular .entry-posted {

	border-top-width: 1px;
	border-top-style: none;
}

.is-singular:not(.has-post-thumbnail) .entry-posted,
.is-singular.single-format-image .entry-posted,
.is-singular:not(.home).page-template-eventbrite-index .entry-posted {
	border: 0;
	margin: 0;
	padding: 1.5em 0 0;
}

.is-singular.has-post-thumbnail:not(.single-format-image):not(.page-template-eventbrite-index) .entry-posted .posted-info {
	float: left;
}

.is-singular.has-post-thumbnail:not(.single-format-image):not(.page-template-eventbrite-index) .entry-posted .edit-link {
	float: right;
}

.page.is-singular .edit-link {
	
	letter-spacing: 0.1em;
	
	text-transform: uppercase;
}

.is-singular:not(.has-post-thumbnail) .entry-meta .cat-links,
.is-singular:not(.has-post-thumbnail) .entry-posted,
.is-singular.single-format-image .entry-meta .cat-links,
.is-singular.single-format-image .entry-posted,
.is-singular:not(.home).page-template-eventbrite-index .entry-meta .cat-links,
.is-singular:not(.home).page-template-eventbrite-index .entry-posted {
	
}


/* entry content */

.is-singular.has-post-thumbnail:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-content {
	padding-top: 4em;
}

.is-singular .entry-content:before,
.error404 .entry-content:before {
	border-top: 1px solid #e0e0e0;
	content: "";
	display: block;
	left: 25%;
	position: absolute;
	right: 25%;
	top: 0;
}

.tags-links {
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666;
	font-size: 12px;
	padding-top: 5%;
	width: 90%;
	margin: auto;
}

.tags-links a {
	background-color: #efefef;
	color: #949494;
	display: inline-block;
	-webkit-transition: background-color 0.4s, color 0.4s;
	transition: background-color 0.4s, color 0.4s;
	margin-top: 0;
	margin-right: 0.5em;
	margin-bottom: 0.5em;
	margin-left: 0;
	padding-top: 0.25em;
	padding-right: 0.75em;
	padding-bottom: 0.25em;
	padding-left: 0.75em;
}

.tags-links a:hover,
.tags-links a:focus {
	background-color: #e0e0e0;
	color: #777;
	text-decoration: none;
}

.tags-links a:last-of-type {
	margin-right: 0;
}


.is-singular .post-navigation .nav-links {
	margin: 2em auto 0;
	max-width: 72%;
	padding: 3em 0;
	position: relative;
	text-align: center;
}

.is-singular .post-navigation .nav-links:after,
.is-singular .post-navigation .nav-links:before {
	content: "";
	left: 50%;
	position: absolute;
	top: 0;
}

.is-singular .post-navigation .nav-links:after {
	background-color: #e7ae01;
	border-radius: 12px;
	height: 12px;
	margin: -6px 0 0 -6px;
	width: 12px;
}

.is-singular:not(.page-template-eventbrite-index) .post-navigation .nav-links:before {
	border-top: 1px solid #e0e0e0;
	left: 37.5%;
	right: 37.5%;
}

.is-singular .post-navigation .nav-links span.nav-subtitle {
	color: #9da5ad;
	display: block;	
	
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.is-singular .post-navigation .nav-links span.nav-title {
	
}

.is-singular .post-navigation .nav-links a:hover {
	text-decoration: none;
}

.is-singular .post-navigation .nav-links a:hover span.nav-title {
	text-decoration: underline;
}

.is-singular .nav-previous,
.is-singular .nav-next {
	padding-bottom: 2em;
}

/******************************* entry media 左サイド　カスタム***************************************/


/**　背景　**/

.is-singular .entry-media {
	background-size: cover;
	overflow: hidden;
	position: fixed;
	width: 40%;
	left: 0px;
	top: 0px;
	height: 100%;
	background-position: center 200px;	
	
	/*
	transition:.5s ease-in-out;
	-webkit-transition:.5s ease-in-out;
	-moz-transition:.5s ease-in-out;	
	*/	
}

.is-singular .entry-media:hover {
	/*
	height: 80%;
	width: 40%;
	left: 0px;
	top: 0px;
	
	
	transition:.5s ease-in-out;
	-webkit-transition:.5s ease-in-out;
	-moz-transition:.5s ease-in-out;
	*/
}

.is-singular .entry-media-thumb {
	background-size: cover;
	overflow: hidden;
	padding-bottom: 40%;
	background-position: center 59px;
}

.page .entry-media-thumb {
	background-size: cover;
	overflow: hidden;
	padding-bottom: 100%;
	background-position: center 59px;
}

.admin-bar.is-singular .entry-media {
	top: 32px;
}

.home.is-singular .entry-media {
	display: none;
}

.is-singular .entry-media img {
	visibility: hidden;
}




/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/

.site-footer {
	color: #616a74;
	position: relative;
	text-align: center;
	z-index: 1;
	border-top-width: 3px;
	border-top-style: none;
	border-top-color: #999;
	clear: both;
	background-image: url(@../../../images/back/backa01.jpg);
	background-position: right bottom;
	background-color: #F4F4F4;
	padding-bottom: 50px;
}



/***********************サイド**************************************/


.side1 {
	background-image: url(@../../../images/sckb001.jpg);
	top: 100px;
	font-size: 12px;
	display: block;
	font-weight: normal;
	width: 90%;
	margin-right: 5%;
	margin-left: 5%;
	margin-top: 1%;
	margin-bottom: 5%;
}
.side1 p {
	font-size: 12px;
}


/*****************カスタムフィールド***********************/

.detail {
	color: #333;
	margin-top: 20px;
}

.custom_catch_copy {
	display: block;
	height: auto;
	width: 40%;
	z-index: 1;
	top: 60px;
	text-align: left;
	background-position: center center;
	position: fixed;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	margin-bottom: 1%;
}

.custom_catch_copy:hover {
	
	filter:alpha(opacity=99);
	opacity:.99;
	
}

.custom_catch_copyx {
	font-size: medium;
	color: #333;
	line-height: 1.5em;
	padding-top: 5%;
	padding-right: 2%;
	padding-bottom: 5%;
	padding-left: 2%;
}

.custom_description {
	font-size: medium;
	color: #333;
	margin-top: 50px;
	margin-bottom: 50px;
}

.custom_pr {
	font-size: small;
	margin-bottom: 30px;
	padding: 2%;
}

.custom_z {
	margin-left: -10px;
	margin-bottom: 50px;
}
.custom_material {
	padding: 10px;
	font-size: medium;
	margin-bottom: 1%;
	border: 1px none #999;
}
.custom_color {
	padding: 10px;
	font-size: medium;
	margin-bottom: 1%;
	border: 1px none #999;
}
.ttt {
	font-size: medium;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	color: #333;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	font-weight: bold;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	text-transform: none;
	display: inline-block;
	margin-top: 1%;
	width: 100%;
}
.ttts {
	font-size: medium;
	padding-top: 5px;
	padding-right: 5%;
	padding-bottom: 5px;
	padding-left: 5%;
	color: #333;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	font-weight: bold;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	text-transform: none;
	display: inline-block;
	margin-top: 1%;
	width: 100%;
}
.ttt a {
	color: #09C;
}


.d_title {
	font-size: medium;
	color: #333;
	margin-bottom: 20px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	text-transform: none;
	background-color: #EEECE0;
	border: 1px solid #666;
	padding: 10px;
	float: left;
	width: 100%;
}
.ggg {
	font-size: medium;
	color: #333;
	margin-bottom: 20px;
	font-style: normal;
	line-height: normal;
	font-variant: normal;
	text-transform: none;
	background-color: #EEECE0;
	border: 1px solid #666;
	padding: 10px;
}
.sss, .wherego_related h3 {
	font-size: 16px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	color: #333;
	margin-bottom: 10px;
	margin-top: 2%;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
	width: 100%;
	clear: both;
}

.sssr {
	font-size: large;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
	color: #333;
	margin-bottom: 10px;
	margin-top: 2%;
	font-weight: bold;
	width: 98%;
	clear: both;
	background-image: url(../../../images/back/backa01.jpg);
	background-repeat: repeat;
	margin-left: 1%;
	text-align: center;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999;
	border-bottom-color: #999;
}
.sssy {
	font-size: large;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
	color: #333;
	margin-bottom: 10px;
	margin-top: 2%;
	font-weight: bold;
	width: 98%;
	clear: both;
	background-image: url(../../../images/back/backa01.jpg);
	background-repeat: repeat;
	margin-left: 1%;
	text-align: center;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999;
	border-bottom-color: #999;
}
/**********************************************************/

.title_single {
	font-size: x-large;
	text-align: center;
	width: 100%;
	margin-bottom: 20px;
}
#itempage form .itemimg {
	display: none;
	
}


/****************** entry inner ****************************************/

.is-singular .entry-inner {

}

.entry-inner .entry-header .entry-meta a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #09F;
}

   
@media only screen and (min-width: 961px) {

#itempage form h3 {
	display: none;	
   }
  
}



@media only screen and (max-width: 1200px) {
	
		
	
.entry-inner .entry-header .entry-meta {
	margin-top: -50px;
}
.entry-inner .entry-header .entry-meta a {
	
	display: block;
	color: #FFF!important;
}

.custom_shop .rakuten {
	width:32.7%;
	
}

}

@media only screen and (max-width: 1110px) {
	
	/*********3列バージョン****************/
     
    .posts .hentry {
	width: 33.33333%;
	display: inline-block;
	float: left;
}



}

@media only screen and (max-width: 961px) {
	
	.custom_shop .rakuten {
	width:24.7%;
	}

#itempage form h3 {
	display: none;
   }


.posts .entry-title a {
	
	letter-spacing: normal;
	word-spacing: normal;
	line-height: normal;
}

.custom_catch_copy {
	display: none;
}	
/*
.similar_title, .wherego_title {
	display: none;
}
*/

}


@media only screen and (max-width: 500px) {
	
	.single .entry-media{
	display: none;	
	
}		
	.custom_catch_copy {
	display: none;	
	
}	
	
	
}

@media only screen and (min-width: 961px) {


   
   .entry-inner .entry-header .entry-meta {
	border-bottom-style: none;	
}

	
.posts .entry-title a {
	color: #FFF;
	
	letter-spacing: normal;
	word-spacing: normal;
	line-height: normal;
}


}

#inside-cart, #customer-info {
	margin-right: 10%;
	width: 100%;
	
}

.custom_color a, .custom_material a{
	
	display: inline-block;
	padding-right: 5px;

}
.custom_color a:hover, .custom_material a:hover{
	/*
	color: #900;
	*/
}
.entry-content table tbody tr th, .entry-inner table tbody tr th {
	background-color: #666;
	color: #FFF;
	font-weight: normal;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	padding: 1%;
}
.entry-content table tbody tr td, .entry-inner table tbody tr td {
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	background-color: #FAFAFA;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #CCC;
	padding: 1%;
	vertical-align: top;
}

.entry-content .souryo tbody tr td, .entry-inner .souryo tbody tr td {
	vertical-align: middle;	
}


.entry-content table tbody tr, .entry-inner table tbody tr{
	padding: 1%;
}


/*------------- 楽天API Yahoo API --------------------------------------------------*/

.rakuten_main {
	display: inline-block;
	padding-bottom: 20px;
	width: auto;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 1%;
	margin-left: 1%;
	background-image: url(../../../images/back/rakuten_banner001.gif);
	background-position: 1% 2%;
	
}

.yahoo_main {
	display: inline-block;
	padding-bottom: 20px;
	width: auto;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 1%;
	margin-left: 1%;
	background-image: url(../../../images/back/yahoo_banner001.gif);
	background-position: 2% 2%;
	
}
.rakuten {
	width:24.7%;
	transition:.5s ease-in-out;
　　-webkit-transition:.5s ease-in-out;
　　-moz-transition:.5s ease-in-out;
	margin-bottom: 10px;
	margin-right: 0.2%;
	margin-left: 0.1%;
	float: left;
	margin-top: 10px;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
}

.rakuten_main .shop_name {
	clear: both;
}
.rakuten .shop_name a {
	font-size: 10px;
	float: right;
	
}
.rakuten .shop_name a:hover {
	
}

.rakimg {
	position:relative;
	overflow: hidden;
	float: left;
	width: 128px;
	height: 128px;
}

.rakimg img {
	position:absolute;
	overflow: hidden;
	clip: rect(auto,auto,128px,auto);
}

.rakuten_title, .rakuten_title a {
	font-size:12px;
	display:inline-block;
	line-height:1.2em;
	border-bottom-width:1px;
	border-bottom-style:none;
	border-bottom-color:#CCC;
	padding: 2%;
	margin-top: 10px;
	letter-spacing: 0.1em;
}


	
@media only screen and (max-width: 600px) {
.rakuten_title, .rakuten_title a {
	padding: 2%;
	margin-top: 0px;	
}	

	
}


.rakuten_title a:hover {
	text-decoration: none;
}
.rakuten:hover {
	background-color: #F1F1F1
	
}


/*-------------関連商品--------------------------------------------------*/


.simmain {
	display: inline-block;
	padding-bottom: 20px;
	margin-top: auto;
	margin-bottom: auto;
	width: 100%;
}

.similar-posts {
	width:100%;
}
.sim {
	clear: both;
	margin-bottom: 20px;
	padding-bottom: 5px;
	padding-top: 5px;
	margin-top: 20px;
	padding-left: 10px;
	color: #333;
	font-size: x-large;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
}
.similar {
	width:48.5%;
	
	/*
	transition:.5s ease-in-out;
　　-webkit-transition:.5s ease-in-out;
　　-moz-transition:.5s ease-in-out;
    */

	margin-bottom: 5px;
	margin-right: 3px;
	margin-left: 2px;
	float: left;
	/*
	background-color: #EEECE0;
	*/
	padding: 2%;

}

.similar img {
	border:1px none #FFF;
	float:left;
	width:100%;
	margin:0;
	
}


.similar_title, .similar_title a, .wherego_title {
	font-size:12px;
	display:block;
	line-height:1.2em;
	width:auto;
	border-bottom-width:1px;
	border-bottom-style:none;
	border-bottom-color:#CCC;
	float: left;
	padding: 2%;
	margin-top: 10px;
	letter-spacing: 0.1em;
}
.similar_title a:hover {
	text-decoration: none;
}
.similar:hover {
	background-color: #F1F1F1
	
}

/************* nothing 調整***************************/

.archive #posts .no-results.not-found.too-short {
	margin-top: 100px;
}
	
}

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


/************* nothing 調整***************************/

.archive #posts .no-results.not-found.too-short {
	margin-top: 100px;
}

	
}

.rakimg {
	overflow: visible;
	margin-left: 5%;
}


.entry-title.site-description {
	font-weight: normal;
	font-size: 1em;
}


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

.entry-title.site-description {
	font-weight: normal;
	font-size: 0.5em;
	
}

.site-title {
	position: relative;
	top: 10px;
	
}
}

/***********************ヘッダー************************/

li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.company_top {
	position:fixed;
	top:0px;
	display:block;
	font-size: 12px;
	padding-top: 5px;
	text-align: right;
	width: 80%;
	z-index: 8;
	margin-right: auto;
	margin-left: auto;
}
.company_top a {
	padding-top: 0px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
	margin-right: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.company_top a:hover {
	color: #09C;
	background-color: #FFF;
}

@media only screen and (max-width: 600px) {
.company_top {
	position:fixed;
	top:0px;
	display:block;
	z-index: 10;
	font-size: 10px;
	padding-top: 3px;
	text-align: left;
	width: 70%;
	margin-right: auto;
	margin-left: 5px;
}


}

/***********************カートを見る************************/

.cart_top {
	position:fixed;
	text-decoration:none;
	top:0px;
	right:60px;
	font-size:0.8em;
	color:#fff;
	display:block;
	padding-top:4px;
	background:rgba(250, 0, 0, 0.2);
	background-image: url(../../../images/cart/cart004.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 60px;
	width: 60px;
	z-index: 10;
}
.cart_top:hover{
	background:rgba(250, 0, 0, 0.9);
	background-image: url(../../../images/cart/cart004.png);
}


/***********************検索窓************************/

.panel_search .btn {
	position:fixed;
	text-decoration:none;
	top:0px;
	font-size:0.8em;
	color:#fff;
	display:block;
	padding-top:4px;
	padding-left:15px;
	z-index:9999;
	padding-top:20px;
	width:60px;
	background:rgba(101,139, 181, 0.5);
	right:0;
	cursor:pointer;
	height: 60px;
	letter-spacing: 0.1em;
	background-image: url(../../../images/search/search002.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.panel_search .btn:hover {
	background:rgba(101,139, 181, 0.9);
	background-image: url(../../../images/search/search002.png);
}

.panel_search .check2 {
	display:none
}
.panel_search .searchx {
	width:100%;
	display:block;
	position:fixed;
	top:-100px;
	z-index:9999;
	background:rgba(0, 0, 0, 0.2);
	right:0;
	padding-top:4px;
	padding-bottom:6px;
	text-align: center;	
	transition:.5s ease-in-out;
　　-webkit-transition:.5s ease-in-out;
　　-moz-transition:.5s ease-in-out;
	
}
.panel_search .check2:checked+.searchx {
	position:fixed;
	top:0px;
	right: 0px;
}
.panel_search .cbtn {
	z-index:99;
	display:none;
	top:0;
	left:0;
	position:fixed
}
.panel_search .check2:checked+.searchx+.cbtn {
	display:block;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.2)
}
.panel_search a {
	
	display:block;
	padding:10px;
	text-align:center;
	margin-top:15px;
	background-color:#999;
	color:#FFF
}
.panel_search a:hover {
	background-color:#666
}

.searchx .search-form label .search-field {
	font-size: 12px;
	height: 50px;
	text-indent: 1em;
	width: 60%;
	padding: 5px;
	top: -1px;
	position: relative;
}


.searchx .search-form {
	display: inline-block;
	width: 100%;
	height: 50px;
	padding: 0px;
	margin: 0px;
	left: -9%;
	position: relative;
}


.searchx .search-form .search-submit {
	height: 50px;
	width: 50px;
	background-color: #FFF;
	color: #333;
	top: 1px;
	position: relative;
}
/***********************カテゴリ窓************************/

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

/*********　MegaMenu 961以下サイズ　************************************************/

#mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu a {
	display: block!important;
	font-size: 12px!important;
	padding: 10px!important;
	margin-top: -29px!important;
	line-height: 1.2em!important;
	top: 10px!important;
	left: -15px!important;
	margin-right: 0px!important;
	margin-bottom: 0px!important;
	margin-left: 0px!important;	
	width: 200px	
}
/*
.similar_title, .similar_title a, .wherego_title {
	display: none;	
}
*/

.rakuten {
	width:49.5%;


}

}

.panel_category .btn {
	position:fixed;
	text-decoration:none;
	font-size:0.8em;
	color:#fff;
	display:block;
	padding-top:10px;
	padding-right:10px;	
	padding-left:10px;
	width:80px;
	cursor:pointer;
	left: 0px;
	height: 40px;
	bottom: 0px;
	background: rgba(255,0,0,0.5);
	border-top-right-radius: 2px;

}
.panel_category .btn:hover {
	
	background: rgba(255,0,0,0.9);
	
}
.panel_category .check3 {
	display:none
}
.panel_category .searchx {
	width:80%;
	height:auto;
	display:block;
	position:fixed;
	display:block;

	transition:.5s ease-in-out;
	-webkit-transition:.5s ease-in-out;
	-moz-transition:.5s ease-in-out;	
	z-index:9999999;
	right:0;
	padding-right: 13%;
	margin-top: 16px;
}
.panel_category .check3:checked+.searchx {
	
	top:0px;
}
.panel_category .cbtn {
	z-index:99;
	display:none;
	top:0;
	left:0;
	position:fixed
}
.panel_category .check3:checked+.searchx+.cbtn {
	display:block;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.2)
}

.panel_category a {
	display:block;
	text-align:center;
	margin-top:15px;
	background-color:#999;
	color:#FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

.panel_category a:hover {
	background-color:#666
}

/*********　MegaMenu ボーダー　************************************************/

#mega-menu-primary li {
	border-bottom-width: 3px!important;
	border-bottom-style: solid!important;
	border-bottom-color: #E1E1E1!important;
}

/*********レスポンシブメニュー表示******　min-width: 965px　************************************************/


@media only screen and (min-width: 800px) {


.panel_category .btn{
	display:none;	
}

#mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu a {
	display: block!important;
	font-size: 12px!important;
	padding: 10px!important;
	margin-top: -29px!important;
	line-height: 1.2em!important;
	top: 15px!important;
	left: -15px!important;
	margin-right: 0px!important;
	margin-bottom: 0px!important;
	margin-left: 0px!important;
	width: auto;
	height: auto;
}
.panel_category .searchx {
	display:block;
	top:10px;
	/*
	right:0;
	margin-right: 0px;
	*/
}
.panel_search .searchx {
	position: absolute;
	
}

}

/***************サイドトップ**************************************************/

#side_top {
	height: auto;
	margin-top: 0px;
	margin-right: 1%;
	margin-bottom: 0px;
	margin-left: 1%;
}



#n2-ss-2-align {
	height: auto;
	width: 100%;
	margin-bottom: 1%;
	box-shadow: 3px 3px 3px 3px #000;
	
}

/*****************ホームトップ************************************/
/*************************************************/

.bannerx {
	width: 22%;
	float: left;
	clear: left;
	margin-left: 2%;
	margin-top: 20px;

}

.banner1 {

	background-image: url(../../../images/back/bg.png);
}

.banner_top {
	padding: 1%;
	font-size: 12px;
	word-spacing: 0.5em;
	line-height: 2em;
	border: 5px solid #fff;
	display: block;

}

.banner_top2 {
	float: left;
	
}

.banner_top3 {
	height: auto;
	position: relative;
	background-position: left top;
	width: 98%;
	margin-top: 1%;
	padding-top: 1.5%;
	padding-right: 2%;
	padding-bottom: 1.5%;
	padding-left: 2%;
}
.banner_top3 img {
	margin-left: 0.5%;
	margin-right: 1%;
	/*
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	*/
	
}
.products {
	display: block;
	
}
.banner_top2 img {
	
	
}
.home_menu_top {
	width: 70%;
	float: left;
	margin-top: 5px;
	margin-left: 3%;

}
.home_menu {
	width: 100%;
	float: left;

}
.sbox{

}

.item1 {
	position: relative;

}

.item1 a {
	
}
.item1 img {
	height: 100%;
	width: 100%;
}


/***************ホバー透明度************************************



.item1 img:hover, .similar img:hover, .rakimg img:hover {
	opacity:0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
*/

/**********************************************/


.post_side {
	list-style-type:none;
	clear:both;
	margin-top: 10px;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}
.post_side h2 a {
	font-size:.4em;
	font-weight:normal;
	margin:0;
	display:block;
	height:auto;
	width:auto;
	line-height:1.2em;
	padding:4px
}

.post_top {
	float: left;
	width: 48%;
	margin: 1%;
	height: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}



.post_home {
	float: left;
	padding: 1%;
	width: 25%;
	margin-bottom: 2%;
}


/******************サイドバナーアニメーション************************************************/

.gazou1, .custom_shop .rakuten { 
  opacity: 0;
  /*transform: translateX(-100%);*/
}

.gazou1:nth-child(1), .custom_shop .rakuten:nth-child(1) {
  -webkit-animation: sideb 0.1s ease 0.1s 1 forwards;
  animation: sideb 0.1s ease 0.1s 1 forwards;
}
.gazou1:nth-child(2), .custom_shop .rakuten:nth-child(2){
  -webkit-animation: sideb 0.2s ease 0.2s 1 forwards;
  animation: sideb 0.2s ease 0.2s 1 forwards;
}
.gazou1:nth-child(3), .custom_shop .rakuten:nth-child(3){
  -webkit-animation: sideb 0.3s ease 0.3s 1 forwards;
  animation: sideb 0.3s ease 0.3s 1 forwards;
}
.gazou1:nth-child(4), .custom_shop .rakuten:nth-child(4) {
  -webkit-animation: sideb 0.4s ease 0.4s 1 forwards;
  animation: sideb 0.4s ease 0.4s 1 forwards;
}
.gazou1:nth-child(5), .custom_shop .rakuten:nth-child(5) {
  -webkit-animation: sideb 0.5s ease 0.5s 1 forwards;
  animation: sideb 0.5s ease 0.5s 1 forwards;
}
.gazou1:nth-child(6), .custom_shop .rakuten:nth-child(6) {
  -webkit-animation: sideb 0.6s ease 0.6s 1 forwards;
  animation: sideb 0.6s ease 0.6s 1 forwards;
}
.gazou1:nth-child(7), .custom_shop .rakuten:nth-child(7){
  -webkit-animation: sideb 0.7s ease 0.7s 1 forwards;
  animation: sideb 0.7s ease 0.7s 1 forwards;
}
.gazou1:nth-child(8), .custom_shop .rakuten:nth-child(8) {
  -webkit-animation: sideb 0.8s ease 0.8s 1 forwards;
  animation: sideb 0.8s ease 0.8s 1 forwards;
}
.gazou1:nth-child(9), .custom_shop .rakuten:nth-child(9) {
  -webkit-animation: sideb 0.9s ease 0.9s 1 forwards;
  animation: sideb 0.9s ease 0.9s 1 forwards;
}
.gazou1:nth-child(10), .rakuten:nth-child(10){
  -webkit-animation: sideb 1.0s ease 1.0s 1 forwards;
  animation: sideb 1.0s ease 1.0s 1 forwards;
}
.gazou1:nth-child(11), .custom_shop .rakuten:nth-child(11) {
  -webkit-animation: sideb 1.1s ease 1.1s 1 forwards;
  animation: sideb 1.1s ease 1.1s 1 forwards;
}
.gazou1:nth-child(12), .custom_shop .rakuten:nth-child(12) {
  -webkit-animation: sideb 1.2s ease 1.2s 1 forwards;
  animation: sideb 1.2s ease 1.2s 1 forwards;
}	
.gazou1:nth-child(13), .custom_shop .rakuten:nth-child(13) {
  -webkit-animation: sideb 1.3s ease 1.3s 1 forwards;
  animation: sideb 1.3s ease 1.3s 1 forwards;
}	
		
@-webkit-keyframes sideb {
  100% {
    opacity: 1;
 /* transform: translateX(0%);*/
  }
}
@keyframes sideb {
  100% {
    opacity: 1;
 /* transform: translateX(0%);*/
  }
}





/*************偶数*******************************/

.post_home { 
  opacity: 0;
  /*transform: translateX(-100%);*/
}
.post_home:nth-child(odd) {
  -webkit-animation: ph 0.5s ease 0.5s 1 forwards;
  animation: ph1 0.5s ease 0.5s 1 forwards;
}

@-webkit-keyframes ph1 {
  100% {
    opacity: 1;
	/*transform: translateX(0%);*/
  }
}
@keyframes ph1 {
  100% {
    opacity: 1;
	/*transform: translateX(0%);*/
  }
}

/*------------奇数------------*/

.post_home:nth-child(even) { 
  opacity: 0;
 /* transform: translateX(-100%);*/
}
.post_home:nth-child(even) {
  -webkit-animation: ph 0.3s ease 0.3s 1 forwards;
  animation: ph2 0.3s ease 0.3s 1 forwards;
}

@-webkit-keyframes ph2 {
  100% {
    opacity: 1;
 /* transform: translateX(0%);*/
  }
}
@keyframes ph2 {
  100% {
    opacity: 1;
 /* transform: translateX(0%);*/
  }
}


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

.post_home {
	
	width: 50%;
	padding: 1%;
}

.entry-meta .cat-links {
	font-size: 12px;
	margin-top: 20px;
}
.bannerx {
	display: none;	

}
.home_menu_top {
	width: 100%;
	
}

.company_top{
	position: absolute;
}

.home_menu_top {	
	margin-left: 0;
}

}

.post_home h2 a {
	font-size: 12px;
	line-height: normal;
	margin: 0px;
	display: block;
	font-weight: normal;
	padding-top: 0px;
	padding-right: 1%;
	padding-bottom: 5%;
	padding-left: 1%;
}
.home_menu.sbox .widget-title, .home_menu_top.sbox .widget-title {
	color: #333;
	padding-top: 1%;
	padding-right: 2%;
	padding-bottom: 1%;
	padding-left: 2%;
	font-size: large;
	margin-top: 5%;
	margin-right: 1%;
	margin-left: 1%;
	font-weight: bold;
	margin-bottom: 2%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #09C;
	clear: both;
	width: auto;
	background-image: url(../../../images/back/bg.png);
	background-repeat: repeat;
}
.price_top{
	width: 100%;
	color: #333;
	padding-top: 2%;
	padding-right: 5%;
	padding-bottom: 2%;
	padding-left: 5%;
	word-spacing: 0em;
	text-align: right;
	font-size: 14px;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #666;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0em;
}
.post_home .price_top {
	width: 100%;
	color: #333;
	padding-top: 2%;
	padding-right: 5%;
	padding-bottom: 2%;
	padding-left: 5%;
	word-spacing: 0.1em;
	text-align: right;
	font-size: 14px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}
.rakuten_price_top{
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, "メイリオ", Helvetica, sans-serif;
	width: 100%;
	padding-top: 2%;
	padding-bottom: 2%;
	font-size: 12px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	text-align: right;
	letter-spacing: 0em;
	word-spacing: 0em;
}

/********************** タグ *************************/

.tag1 {
	position: relative;
	display: inline-block;
	overflow: hidden; 
	padding: 1px;
	font-size: 12px;
}
.tag1:after {
	content: "";
	position: absolute;
	z-index: 1;
	height: auto;
	content: "NEW";	
	text-align: center;
	color: #fff;	
	font-weight: bold;
	left: -35px;
	top: 10px;
	transform: rotate(-30deg);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background: rgba(0,0,0,0.4);
	width: 140px;
	letter-spacing: 0px;
	text-shadow: none;  
}

.tag2 {
	
	position: relative;
	display: inline-block;
	overflow: hidden; 
	padding: 1px;
	font-size: 12px;
}


.tag2:after {
	content: "";
	position: absolute;
	z-index: 1;
	height: auto;
	content: "売筋商品";	
	text-align: center;
	color: #fff;	
	font-weight: bold;
	left: -35px;
	top: 10px;
	transform: rotate(-30deg);
	box-shadow: 0 1px 3px rgba(2, 2, 2, 0.3);
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background: rgba(0,0,0,0.4);
	width: 140px;
	letter-spacing: 0px;
	text-shadow: none;  
}

.tag3 {
	
	position: relative;
	display: inline-block;
	overflow: hidden; 
	padding: 1px;
	font-size: 12px;
}


.tag3:after {
	content: "";
	position: absolute;
	z-index: 1;
	height: auto;
	content: "注目商品";	
	text-align: center;
	color: #fff;	
	font-weight: bold;
	left: -35px;
	top: 10px;
	transform: rotate(-30deg);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background: rgba(0,0,0,0.4);
	width: 140px;
	letter-spacing: 0px;
	text-shadow: none;  
}
.tag4 {
	position: relative;
	overflow: hidden;
	font-size: 12px;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}
.tag4:after {
	content: "";
	position: absolute;
	z-index: 1;
	height: auto;
	content: "産直工房 楽天市場店";	
	text-align: center;
	color: #fff;	
	font-weight: bold;
	right: -50px;
	top: 10px;
	transform: rotate(30deg);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	padding-top: 20px;
	padding-right: 50px;
	padding-bottom: 20px;
	padding-left: 150px;
	background: rgba(255,0,0,0.4);
	width: 400px;
	letter-spacing: 0px;
	text-shadow: none;  
}


@media only screen and (max-width: 800px) {
	
	.tag4 {	
	font-size: 12px;
}
	
	.tag4:after {	
	right: -150px;	
	top: 20px;	
	padding-left: 10px;
}
	
}

@media only screen and (max-width: 600px) {
	
.tag1:after, .tag2:after, .tag3:after, .tag4:after, .tag5:after {
	content: "";
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.0);
	background: rgba(0,0,0,0.0);
}
	
}

/* 角丸 2px*/

.rakuten_point, .custom_shop .sssr, .homepr, .external_link, .external_link2, .custom_shop a, .d_title, #itempage .skubutton, .send .back_to_customer_button, .send .to_confirm_button, #customer-info form .send input, .top_banner, .ggg, .km, .home_menu.sbox .widget-title, .custom_color, .custom_material, .custom_color a, .custom_material a, .custom_catch_copy, .entry-inner .entry-header .entry-meta a, .sim, .product_details, .sss, .free_banner, button,
input,
select,
textarea {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}

/* 角丸上 2px

.cart_top {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;

}

*/

/* ホバータイム 

.top_banner2, .top_banner3, .top_banner4 {
	 transition: 0.2s;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;	
}
*/
.side_top2 {
	height: 100%;
	width: 20%;
	float: left;
	background-image: url(@../../../images/back/backa01.jpg);
}

/************** nothing ********************************************/

.archive .site-inner #content {
	width: auto;
}

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


.archive #posts .no-results.not-found.too-short {
	margin-top: 0px;
}

.site-header, .panel_search .btn, .cart_top {
	position: absolute;	
}

.entry-meta .cat-links {
	
	background-color:rgba(255,255,255,1);
	
}

}

.home #content {
	position: relative;
	visibility: inherit;
	background-color: #FFF;
	margin-top: 33%;
}


    /*clearfix*/
    
    .clearfix:after {
    content: "";
    clear: both;
    display: block;
    }
.single img {
	height: 100%;
	width: 100%;
}
.single .itemimg {
	display: none;
}

.single .entry-meta {
	width: 40%;
	padding-top: 6%;	
}
.entry-header {
	width: 40%;
}
.site-inner #content #primary .entry-inner .entry-header .entry-title {
	
	color: #FFF;
	letter-spacing: normal;
	word-spacing: normal;
}

.single .entry-header .entry-title {
	padding: 5%;
	color: #FFF!important;
	font-size: x-large;
	background-color: rgba(0,0,0,0.8);
}


.entry-inner .entry-header .entry-meta a {
	display: block;
	width: auto;
	background-color: #333;
	float: left;
	margin-right: 5px;
	text-align: center;
	margin-top: 5px;
	border: 1px none #CCC;
	font-size: 12px;
	padding-top: 1%;
	padding-right: 2%;
	padding-bottom: 1%;
	padding-left: 2%;
}
.is-singular .entry-inner {
	position: relative;
	width: 90%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	margin-top: 0px;
}

.entry-inner .entry-contents {
	margin-top: -50px;
}


/*********************************************/

#itempage button,
#itempage input,
#itempage select,
#itempage textarea {
	border: 1px solid #CCC;
	font-size: 12px;
	width: 100%;
	padding: 2%;
}
#itempage input{
	font-size: 16px;
	border: 1px solid #FFF;
	letter-spacing: 0.1em;
	padding-top: 3%;
	padding-bottom: 3%;
}

#itempage .skubutton{
	cursor: pointer;
	background-color: #F03;
	color: #FFF;
	margin-top: 10px;
	background-image: url(../../../images/cart/cart.png);
	background-position: 10% center;
	width: 50%;
	
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#itempage .skubutton:hover{
	background-color: #F00;
}
/***********************************************/

.skip-link.screen-reader-text {
	display: none;
}

.cart_top a {
	height: 60px;
	width: 60px;
	display: block;
	color: #FFF;
	font-weight: bold;
	padding-top: 17px;
	padding-left: 25px;
}


/*******　サイド背景　***********************/


.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-header {
	
}	


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

/*******　サイド背景961下　***********************/

.has-post-thumbnail.is-singular:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-header {
	background: #fff;
	border-top: 1px solid rgba(255,255,255,0.2);
	bottom: 0;
	color: rgba(255,255,255,0.7);
	left: 0;	
	position: relative;
	text-align: left;
	width: 100%;
}	
.single .entry-header {
	
	margin-bottom: 5px!important;
	padding-top: 35px!important;
	/*
	border-top-width: 1px!important;
	border-bottom-width: 1px!important;
	border-top-style: solid!important;
	border-bottom-style: solid!important;
	border-top-color: #999!important;
	border-bottom-color: #999!important;
	*/
}

.entry-meta .cat-links {
	background-color:rgba(255,255,255,0.0);	
	margin-bottom: 0px;
	font-size: 12px;
}
	.is-singular .entry-inner {
	margin-top: 3%;
}
.is-singular .entry-media {
	background-color: #242629;
	background-position: 50% 50%;
	background-size: cover;
	left: 0;
	overflow: hidden;
	position: relative;
	top: 0;
	height: 100%;
	width: 100%;
}
	
.single .entry-meta {
	width: 100%;
	padding-top: 6%;
	margin-left: -3%;
}	

.is-singular:not(.home) .site-inner {
	background: #fff;
	float: right;
	position: relative;
	width: 100%;
}

.is-singular .entry-media {
	display: none;
}
.custom_catch_copy:hover {
	
	filter:alpha(opacity=90);
	opacity:.9
	
}
.is-singular #page {
	margin-top: -120px;
}


.entry-inner .entry-contents {
	margin-top: 0px;
}


#post-760 .entry-inner .entry-header .entry-title, #post-375 .entry-inner .entry-header .entry-title, #post-291 .entry-inner .entry-header .entry-title{
	color: #333!important;
	margin-top: 15%!important;

}
.single .entry-header .entry-title {
	font-size: medium!important;
	color: #333!important;
	text-shadow: none;
	margin-top: -5%;
	background-color: #FFF;
	margin-left: -3%;
}	


}




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

	.panel_category .searchx {
	top:-1000px;
	display: block;	
}
.home #content {	
	margin-top: 15%;
}
	
}
.post_series {
	width: 31%;
	display: block;
	float: left;
	margin: 1%;
}
.post_series .item1 {
	display: block;
	background-color: inherit;
	padding: 0px;
	margin-left: 1%;
}
.post_series .item1:hover {	
	background-color: inherit;
}

.post_series .item1 img {

}


.post_series .side_title {
	display: inline-block;
	clear: both;
}

.post_series .price_top {
	float: left;
	clear: both;
	font-family: 'Oswald', sans-serif;
	font-weight: normal;
}
.seriesx {
	display: block;
	width: 100%;
	position: relative;
}

/***********　フッター　******************************************/


#recent-posts-2, #pages-2, #categories-2 {
	display: block;
	font-size: 12px;
	padding-top: 1%;
	padding-right: 5%;
	padding-bottom: 1%;
	padding-left: 5%;
	width: 100%;
}

#recent-posts-2 .widget-title, #pages-2 .widget-title, #categories-2 .widget-title{
	margin-bottom: 3%;
	display: block;
	font-weight: normal;
}
 

#recent-posts-2 a, #pages-2 a, #categories-2 a {
	padding-bottom: 1%;
	display: block;
}

.site-info {
	font-size: 12px;
	padding-bottom: 40px;
	padding-top: 5%;
}

/***************カート他**********************************/


@media only screen and (min-width: 1300px) {
	
#itempage .field .field_name {
	
	padding-right: 15%!important;
}

}

@media only screen and (max-width: 1299px) {
	
#itempage .field .field_name {
	
	padding-right: 24%!important;
}


}

@media only screen and (max-width: 800px) {
	
#itempage .field .field_name {
	
	padding-right: 20%!important;
}

.panel_category .searchx {
	width:100%;
	padding-right: 0px;
}

.post_series {
	width: 48%;
	
}

}.site-header{
	background-image: url(../../../images/topimg/top003.png);
	background-position: left top;
}

@media only screen and (max-width: 600px) {
	
#itempage .field .field_name {
	
	padding-right: 30%!important;
}

.site-banner .site-banner-thumbnail {
	
	padding-bottom: 80%;
}


.similar {
	width:48%;
}

.site-banner-header {
	color: #fff;
	left: 10%;
	opacity: 1.0;
	position: absolute;
	right: 10%;
	margin-top: -50%;
	font-size: 24px;
	display: block;
	padding: 1%;
	background: rgba(0,0,0,0.3);
	
}
	.is-singular .entry-inner {
	margin-top: 7%;
}
.home #content {	
	margin-top: 20%;
}

#itempage .skubutton{
	background-image: none;	
}


}



.free_banner {
	font-size: x-large;
	color: #FFF;
	background-color: #09C;
	margin-top: 20px;
	float: left;
	width: 160px;
	text-align: center;
	line-height: 1em;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
}
.free_banner span{
	font-size: 10px;
	white-space: nowrap;
	margin: 0px;
	padding: 0px;

}

/***************トップバナー****************************/


.top_banner1, .top_banner2, .top_banner3, .top_banner4 {
	border-right-width: 1px;
	border-right-style: none;
	border-right-color: #666;
	background-color: #F4F4F4;
}

.top_banner1 {
	font-size: x-large;
	color: #900;
	margin-top: 5px;
	float: left;
	width: 24.7%;
	text-align: center;
	line-height: 1em;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	margin-right: 1px;
	background-repeat: repeat;
	background-position: right top;
}

.top_banner2, .top_banner3, .top_banner4 {
	font-size: x-large;
	color: #FFF;
	margin-top: 5px;
	float: left;
	width: 24.7%;
	text-align: center;
	line-height: 1em;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	margin-right: 1px;
}

a .top_banner2:hover, a .top_banner3:hover, a .top_banner4:hover {

	background-color: #F1F1F1;
}

.top_banner1 span, .top_banner2 span, .top_banner3 span, .top_banner4 span{
	font-size: 10px;
	white-space: nowrap;
	margin: 0px;
	padding: 0px;
	display: block;
	width: 100%;
}
.top_banner2 {
	background-image: url(@../../../images/1000_600/banner002.jpg);
	background-position: right top;
	background-repeat: repeat;
	color: #333;
}

.top_banner3 {
	background-image: url(@../../../images/1000_600/banner002.jpg);
	background-repeat: repeat;
	background-position: right top;
	color: #333;

}
.top_banner4 {
	background-image: url(@../../../images/1000_600/banner002.jpg);
	background-position: right top;
	background-repeat: repeat;
	color: #333;
	border-right-style: none;
	
}



@media only screen and (max-width: 400px) {
	
#itempage .field .field_name {
	
	padding-right: 50%!important;
}
.free_banner, .top_banner1, .top_banner2, .top_banner3, .top_banner4 {
	font-size: medium;	
}
.home #content {	
	margin-top: 30%;
}
}
.page-header .page-title {
	font-size: large;
	width: 100%;
	padding: 1%;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	margin-bottom: 10px;
}

#page .site-inner #content {


}

.entry-footer {
	margin-top: -50px;
	margin-bottom: 40px;
	
}

/******************************************/

#jcScrollTop {
	background: rgba(0,0,0,0.3);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-bottom: 10px;
	
}
 
#jcScrollTop:hover {
	background: rgba(0,0,0,0.9);
}

.field {
}

.field .field_name {
	margin-bottom: -30px;
	font-weight: bold;
}

.field .field_price {
	color: #900!important;
}
#itempage form .skuform {
	margin-top: 20px;
}

/*********************************************/


.pricex {
	width: auto;
	text-align: right;
	background-color: #EEECE0;
	padding: 2%;
	margin-top: -80px;
	background-image: url(../../../images/back/backa01.jpg);
	background-repeat: repeat;
}
@media only screen and (min-width: 1200px) {
	
.pricex {
	
	margin-top: -90px;
}

}

.price0 {	
	position: relative;
	padding-top: 10px;
	width: 104%;
	margin-left: -2%;
	background: rgba(0,0,0,0.3);
	color: #FFF;
	padding-right: 10px;

	font-size: small;
	clear: both;
}

.price1 {
	position: relative;
	padding-bottom: 10px;
	width: 104%;	
	margin-left: -2%;
	background: rgba(0,0,0,0.3);
	color: #FFF;
	padding-right: 10px;
	text-decoration: line-through;
	
}

.price2 {
	font-weight: bold;
	padding-top: 20px;
}

.price3{
	font-size: xx-large;
	color: #900;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0em;
	word-spacing: 0em;
}

.skuform .price {
	font-size: x-large;
	color: #900;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0em;
	word-spacing: 0em;
}

#site-navigation2 {
}

table {
	width: 100%;
	border-top-style: solid;
	border-right-style: solid;
	border-top-width: 1px;
	border-top-color: #CCC;
	border-right-width: 1px;
	border-right-color: #CCC;
}

tr {
	
}

td  {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
.freex {
	z-index: 1;
	position: relative;
	box-shadow: -1px -3px 3px rgba(0, 0, 0, 0.1);
	float: left;
	padding-bottom: 10px;
	padding-top: 5px;
	width: 100%;
	padding-left: 1%;
}
.search-no-results #primary {
	text-align: center;
}
.search-no-results .entry-header {
	width: auto;
	margin-top: 40px;
	margin-bottom: 40px;
	background-color: #FFF;
	padding-top: 2%;
	padding-bottom: 2%;
	z-index: 99;
	font-size: small;
}
.product_details {
	margin-top: 2%;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #999;
}
.page .wpcf7-validates-as-required, .page .wpcf7-form-control.wpcf7-text, .page .wpcf7-form-control.wpcf7-textarea{
	border: 1px solid #CCC;
	padding: 1%;
	margin-top: 1%;
	margin-bottom: 1%;
	width: 100%;
}
.page .entry-inner {
	width: 90%;
	margin-right: 10%;
	margin-left: 10%;
}
.page .entry-title {
	text-align: left;
	color: #666!important;
	text-shadow: none; 
}
.page .wpcf7-form-control.wpcf7-submit {
	padding: 2%;
	margin-bottom: 50px;
	width: 100%;
	cursor: pointer;
	background-color: #09C;
	color: #FFF;
}
.page .wpcf7-form-control.wpcf7-submit:hover {
	background-color: #06C;
	color: #FFF;
}
.page .gaiyou li a{
	display: block;
	width: 100%;
	padding-top: 1%;
	padding-bottom: 1%;
	font-size: medium;
}
.gaiyou, .delivery {
	font-size: 12px;
	margin-bottom: 20px;
}
.delivery_footer {
	font-size: 12px;
	margin-bottom: 20px;
	width: 100%;
	padding-right: 1%;
	padding-left: 1%;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(../../../images/back/bg.png);
	background-repeat: repeat;
}
.gaiyou strong, .delivery strong, .delivery_footer strong{
		display: block;
	margin-bottom: 10px;
}
hr {
	margin-top: 10px;
	margin-bottom: 20px;
}
.entry-content table tbody tr th {
	padding: 1%;
}

.entry-inner .entry-content .matome tbody tr td, .delivery_footer .matome tbody tr td, .delivery .matome tbody tr td {
	text-align: left;
}

.red{
	color: #F00;
	font-weight: bold;
}
.blue{
	color: #00C
}
.page-template-default .entry-title {
	font-size: 20px!important;
	white-space: nowrap!important;
}

.entry-content {
	border: 0px none #FFF!important;
	background-color: #FFF;
}
.send .back_to_top_button {
	display: block;
	padding-bottom: 20px;
	color: #09F;
	font-weight: bold;
	text-align: center;
}
.archive  .entry-header {
	width: 100%;
}
.no-results.not-found {
	margin-bottom: 50px;
	margin-right: 8%;
	margin-left: 8%;
	margin-top: 5%;
}
.archive .entry-content p {
	padding-top: 20px;
}

/***********************************　リンクカラー　ブルー　***************************/


.wrap a, .custom_pr a, .custom_material .ttt a, .custom_color .ttt a, .material001 span strong, .rakuten .shop_name a, .product_details a, .page .gaiyou a, .search .wp-tag-cloud a, .rws a{
	color: #06C;
	line-height: 2em;
}

.wrap a:hover, .custom_pr a:hover, .custom_material .ttt a:hover, .custom_color .ttt a:hover, .material001 span strong:hover, .rakuten .shop_name a:hover,.product_details a:hover, .page .gaiyou a:hover, .search .wp-tag-cloud a:hover, .rws a:hover, .site-info a:hover{
	text-decoration: underline;
}



/***********************************　吹き出し　***************************/



.wrap{
	color: #fff;
	text-align: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 20px;
	float: left;
}
.wrap li{
	list-style-image: none;
	list-style-type: none;
	float: left;
}

.wrap a:hover span{
	opacity: 1;
	left: -100px;
	top: -120px;
}
.wrap a{
	text-align: left;
	position: relative;
}

.wrap a:hover{
	/*
	color: #900;
	*/
}

.wrap a span{
	opacity: 0;
	padding: 15px;
	border-radius: 2px;
	color: #333;
	font-size: 12px;
	line-height: 1.5em;
	transition: .3s;
	width: 300px;
	position: absolute;
	
	top: -500px;
	left: -1500px;
	
	background-color: #FFF;
	border: 1px solid #666;	
	z-index: 5;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wrap a span:after{
  position: absolute;
  top: 100%;
  left: 34px;
  height: 0;
  width: 0;
  content: "";
}

.material001 span strong {	
	margin-right: 5px;
}

.etc_zaishitu, .etc_color {
	clear: both;
	float: left;
	padding: 2%;
	margin-right: 1%;
	margin-left: 1%;
	text-align: left;
	margin-bottom: 3%;
	color: #333;
}

.etc_zaishitu a, .etc_color a {
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	float: left;
	padding-right: 1%;
	padding-left: 1%;
	border-right-style: none;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 0px;
}

.etc_zaishitu a:hover, .etc_color a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #09F;
	border-bottom-color: #FFF;
}


@media only screen and (max-width: 961px) {
.wrap a span{	
	display: none;
}
.top_banner1, .top_banner2, .top_banner3, .top_banner4 {
	
	width: 49.4%;
	
}
.top_banner2 {
	border-right-style: none;	
}

}

/******************************************************/


@media only screen and (max-width: 800px) {
	
.custom_z {	
	margin-bottom: 15%;	
}

}

.homeprt {
	background: rgba(0,0,0,0);
	padding: 5%;
	font-size: 20px!important;
	color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.homepr {
	background: rgba(0,0,0,0);
	padding: 5%;
	font-size: 14px!important;
	color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/*　　吹き出し　シンプル

#menu div {
  position: relative;
}

.arrow_box {
  display: none;
  position: absolute;
  padding: 16px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;  
  border-radius: 8px;
  background: #333;
  color: #fff;
}

.arrow_box:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: solid transparent;
  border-color: rgba(51, 51, 51, 0);
  border-bottom-color: #333;
  border-width: 10px;
  pointer-events: none;
  content: " ";
}

span:hover + p.arrow_box {
  display: block;
}

*/

.foot_tag {
	float: left;
	background-color: #999;
	display: block;
	color: #FFF;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
}


.quantity {

}
.material001 {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666;
	padding-left: 10px;
	padding-right: 10px;
}

/*********************************/
/*********************************/
/*********************************/
/*********************************/
/*********************************/


.custom_catch_copy {
	display: block;
	width: 100%;
	z-index: 1;
	text-align: left;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	position: relative;
	margin-top: 30%;
	background-color: #FFF;
	margin-bottom: 0%;
	background-image: url(../../../images/back/backa01.jpg);
	background-repeat: repeat;
}


/*****************************************/

.sidesp {
	display: block;
	height: auto;
	width: 40%;
	z-index: 1;
	text-align: left;
	position: fixed;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	margin-bottom: 1%;
	box-shadow: 0 7px 7px -6px #000;
	background-color: #FFF;
	top: 79px;
}

/**********チェックリスト*******************************/

.check_list {
	display: block;
	height: auto;
	width: 40%;
	z-index: 1;
	top: 59px;
	text-align: left;
	position: fixed!important;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	margin-bottom: 1%;
	background-color: #FFF;
	box-shadow: 0 7px 7px -6px #000;
	padding-top: 25px;
	
}

.panel_category2 {
	display: block;
	height: auto;
	width: 40%;
	z-index: 1;
	top: 60px;
	text-align: left;
	position: fixed!important;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	margin-bottom: 1%;
		
}
.gright {
	background-color: #963;
	float: right;
	height: 100%;
	width: 30px;
	right: -38px;
	position: relative;
	text-align: center;
	bottom: -130px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 2px solid #FFF;
	margin-right: 5px;
	margin-top: -6px;
	color: #FFF;
	padding-left: 2px;
}

.custom_catch_copy_single:hover {
	border-right-style: none;
	left: 0px;
	z-index: 3;
	filter:alpha(opacity=99);
	opacity:.99;
}

.custom_catch_copy_single .gazou1 {
	float: left;
	width: 99%;
	margin-top: 0.5%;
	margin-right: 0.5%;
	margin-bottom: auto;
	margin-left: 0.5%;
	
	/*
	transition:1s ease-in-out;
	-webkit-transition:1s ease-in-out;
	-moz-transition:1s ease-in-out;	
	*/
}
.no-results .custom_catch_copy_single {
	margin-bottom: 30px;
	float: left;
	width: 100%;
	margin-top: -70px;
}
.no-results .custom_catch_copy_single .gazou1 {
	float: left;
	width: 48%;
	margin-top: 0.5%;
	margin-right: 0.5%;
	margin-bottom: auto;
	margin-left: 0.5%;
	
	/*
	transition:1s ease-in-out;
	-webkit-transition:1s ease-in-out;
	-moz-transition:1s ease-in-out;	
	*/
}

.custom_catch_copy_single .gazou1 img {
	width: 100%;
	height: auto;
	padding: 1%;
	/*
	background-color: #EEECE0;
	*/
}
.custom_catch_copy_single .gazou1 img:hover, .custom_catch_copy_single2 .gazou1 img:hover, .viewed_posts li img:hover {
	filter:alpha(opacity=80);
	opacity:.80;
}


@media only screen and (min-width: 1250px) {
	
.custom_catch_copy_single .gazou1 {
	width: 48%;
	margin-right: 0.5%;
	margin-left: 0.5%;	
}
.no-results .custom_catch_copy_single .gazou1 {	
	width: 32%;	
}

}

/**************チェックリスト*******************

.check_list_footer {
	display: none;
}
*/
@media only screen and (max-width: 961px) {
.sidesp {
	width: 95%;
	padding-left: 5%;
	box-shadow: none;
	padding-top: 120px;
	position: relative;
}

.custom_catch_copy_single .gazou1 {	
	width: 48%;
}

/***カートトップ修正****/
.page-template-uscescart .site-inner #content {
	margin-top: 85px;
	
}
.single #content {
	margin-top: 10%;
}
.panel_category2 {	
	width: 100%;		
}

.page.page-id-760 .entry-inner {	
	width: 90%;
}
.check_lists {
	display: none;	
	
}
/**********チェックリスト*******************************/

.check_list_footer {
	display: block;
}
}

@media only screen and (max-width: 600px) {
	
.gazou1 {
	float: left;
	position: relative;
	width: 100%;
}
.custom_catch_copy_single .gazou1, .no-results .custom_catch_copy_single .gazou1 {	
	width: 100%;
}
.freex {	
	margin-top: -63px;
}

}

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

.featured-content {
	position: relative;
	display: none;
}
.freex {	
	margin-top: -53px;
}

}

.stock {
	display: none;
}

.page-template-uscescart .entry-title {
	font-size: large!important;
	width: 100%!important;
	text-decoration: underline;
	color: #333!important;
}
.single #content {
	margin-top: 15%;
}
/******* キャンペーン中　表示 ********/

.campaign {
	
	font-weight: bold;
	/*
	background-color: #EEECE0;
	*/
	text-align: left;
	font-size: 14px;
	padding: 2%;	
	margin-bottom: 1%;
	
}
.sbox .campaign {
	margin-bottom: 1%;
	width: 97%;
	margin-left: 1%;	
}
.campaign_top {
	width: 98%;
	font-weight: bold;
	background-color: #FFF;
	text-align: left;
	font-size: 18px;
	padding: 2%;
	border: 1px solid #CCC;
	margin-bottom: 1%;
	background-image: url(../../../images/back/bg.png);
	background-repeat: repeat;
	background-position: left top;
	margin-left: 1%;
}

@media only screen and (min-width: 961px) {
	

.single #content {
	margin-top: 1%;
}

}


.panel_category3, .panel_category4 {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #EEECE0;
	padding-right: 1%;
	padding-left: 1%;
	margin-bottom: 10px;
}

@media only screen and (min-width: 800px) {
	
/************カートモバイル確認***************/

#inside-cart .header_explanation{
	display: none;
}

/************800px以上でカテゴリ消す***************/

.foot_cat {
	margin-top: 1%;
	display: none;
}

.panel_category4 {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #EEECE0;
	padding-left: 5%;
	margin-bottom: 10px;
	text-align: center;
	display: inline-block;
	width: 100%;
}

}
.page .entry-header {
	width: 100%;
	padding: 5%;
}
.page .entry-header .entry-title {
	width: 100%;
	padding: 10%;
	font-size: x-large!important;
}
.custom_pr table {
	width: 100%!important;
	padding: 0%;
	margin: 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}
.custom_pr table tbody tr td {
	width: auto;
	vertical-align: middle;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	background-color: #FFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}

.custom_pr img {
	text-align: left;
	width: auto;
}
.page .entry-header .entry-title {
	color: #FFF!important;
}.archive .site-inner {

}
#page .site-inner {
	background-color: #FFF;

}
.page-template-uscescart .entry-title {
	color: #333!important;
}
.page-template-uscescart .entry-header .entry-title {
	color: #333!important;
}
.ggs {
	padding-top: 2%;
	padding-right: 2%;
	padding-bottom: 5%;
	padding-left: 2%;
	font-size: 12px;
}
.single #itempage h4 {
	margin-top: 10px;
	margin-bottom: 10px;
}
.post_series .stitle {
	font-size: 12px;
	color: #333;
	line-height: normal;
}
.post_series a:hover {
	color: #06C;
}



/********************キャンペーンカートカスタムCSS************************/

.two-column {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
#wc_cart .cart_page_title {
	font-weight: normal;
	color: #333;
	font-size: 24px;
	text-decoration: underline;
	text-align: center;
}

/********************SNS位置調整************************/

.is-scrolled .wp_social_bookmarking_light {
	position: relative;
	
	margin-left: 2%;
}
.footer-bottom-info.has-social-menu {
	width: auto;
	padding-right: 5%;
	padding-left: 5%;
	padding-top: 2%;
	border-top-width: 3px;
	border-top-style: none;
	border-top-color: #999;
}

@media only screen and (max-width: 800px) {
.footer-bottom-info.has-social-menu {
	padding-right: 0;
	padding-left: 0px;
	text-indent: 0.4em;
}
}

#itempage p strong {
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	clear: both;
	width: auto;
}

/********* skuプルダウン 関連 ***********************/

.wcss_loading {
	height: 64px;
	width: 64px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	top: -400px;
	position: relative;
	margin-bottom: -60px;
}
.field_zaiko {
	padding-top: 10px;
	padding-left: 10px;
	background-color: #F7F7F7;
	padding-bottom: 10px;
	font-size: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

#skuform .item-sku dt {
	width: 10%!important;
	white-space: nowrap;
	text-align: center;
}

#skuform .item-sku dd #sku_selct_0 {
	width: 100%;
	font-size: 12px;
}

#skuform .item-sku dd #sku_selct_0:hover, #itempage select:hover {
	background-color: #F4F4F4;
}
#skuform .item-sku {
	width: 100%;
}

.skuform select {
	background-color: #FFC;
	
}

/********SSLカートバグ*********/
.productname br {
	display: none;
}

#page .site-inner #content #content .catbox #wc_cart {
	margin-top: 50px;
}.pulx {
	font-size: 12px;
	padding-left: 2%;
	margin-bottom: -20px;
	text-align: center;
}
/****************最近チェック****************/

.viewed_posts {
    list-style: none;
    clear: both;
    margin: 0!important;
}


.viewed_posts li {
	width: 33.3%;
	float: left;
	box-sizing: border-box;
	padding-left: 5px;	
}
.viewed_posts li a {
	
	font-size: 10px!important;
}
.viewed_posts li img {
    width: 100%;
    height: auto;
}
.viewed_posts li h3{
	display: none;	
}

@media only screen and (min-width: 1280px) {
.viewed_posts li {
	width: 20%;
	float: left;
	box-sizing: border-box;
	padding-left: 5px;	
}
}


@media only screen and (min-width: 961px) {
.viewed_posts li {
	width: 25%;
	float: left;
	box-sizing: border-box;
	padding-left: 5px;	
}

}

@media only screen and (max-width: 961px) {
.viewed_posts li {
    width: 33.3%;
    float: left;
    padding-right: 5px;
    box-sizing: border-box;
}
.campaign_top {	
	font-size: 14px;	
}
}

/****************固定ページ画像調整****************/

#page .site-inner #content img{
	height: auto;
	padding: 0px;
	width: 100%;
	
}

/****************外部リンク楽天Yahoo調整****************/
.custom_shop{
	margin-top: 50px;
	margin-bottom: 100px;
}
.custom_shop a{
	display: block;
	clear: both;
	width: 100%;
	color: #06C;
	text-align: center;
	border: 1px solid #06C;
	font-weight: normal;
	margin-top: 10px;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 2%;
	padding-left: 1%;
	margin-bottom: 10px;
}
.custom_shop a:hover{
	display: block;
	color: #FFF;
	background-color: #09C;
	border-top-color: #09C;
	border-right-color: #09C;
	border-bottom-color: #09C;
	border-left-color: #09C;
}

.custom_shop .rakuten a{
	display: block;
	clear: none;
	width: auto;
	color: #666;
	text-align: left;
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
}

.custom_shop .rakuten a:hover, .custom_shop .credit a:hover {
	background-color: inherit;
}

.custom_shop .credit a{
	display: block;
	clear: both;
	width: auto;
	color: #666;
	text-align: center;
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.custom_shop .sssr {
	font-size: large;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
	color: #333;
	margin-bottom: 10px;
	margin-top: 2%;
	font-weight: bold;
	width: 100%;
	clear: both;
	background-image: none;
	text-align: center;
	background-color: #EEECE0;
	margin-right: 0px;
	margin-left: 0px;
	border: 1px solid #666;
}

/***********Rakuten**************/


.custom_shop .external_link a{
	display: block;
	clear: both;
	width: 100%;
	color: #06C;
	text-align: center;
	font-weight: normal;
	margin-top: 10px;
	background-image: url(../../../images/back/rakuten_banner001.gif);
	background-position: 1% center;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 2%;
	padding-left: 1%;
	text-decoration: underline;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.custom_shop .external_link a:hover{
	display: block;
	color: #FFF;
	background-color: #09C;
	border-top-color: #09C;
	border-right-color: #09C;
	border-bottom-color: #09C;
	border-left-color: #09C;
}

/********************Yahoo**************/

.custom_shop .external_link2 a{
	display: block;
	clear: both;
	width: 100%;
	color: #06C;
	text-align: center;
	font-weight: normal;
	margin-top: 10px;
	background-image: url(../../../images/back/yahoo_banner001.gif);
	background-position: 1% center;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 2%;
	padding-left: 1%;
	text-decoration: underline;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.custom_shop .external_link2 a:hover{
	display: block;
	color: #FFF;
	background-color: #09C;
	border-top-color: #09C;
	border-right-color: #09C;
	border-bottom-color: #09C;
	border-left-color: #09C;
}

.ex_title{
	margin-bottom: 20px;
	display: block;
	background-color: #FFF;
	padding: 1%;
	font-weight: bold;
	margin-top: 20px;
	clear: both;
}


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


.custom_shop .external_link a, .custom_shop .external_link2 a{
	text-align: right;	
	background-position: 5% center;
	font-size: 12px;
	padding-right: 5%;
	padding-top: 4%;
	padding-bottom: 4%;
}
.saix {
	font-size: 12px;
	padding: 2%;
	color: #333;
}

.single #page .site-inner #content #primary .entry-inner {
	margin-top: -10%;
}


}

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





}
.rakuten_color{
	color: #900;
	font-size: 12px;
	
}
.yahoo_color{
	color: #C60;
	font-size: 12px;
}
.external_link, .external_link2 {
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
	font-weight: bold;
	padding: 10px;
	clear: both;
	border: 1px dashed #999;
}


/***************カテゴリ、タグ、タイトル微調整********************/

.single #page .site-inner #content #primary .entry-inner {
	margin-top: -5%;
}


@media only screen and (max-width: 961px) {
	
.single #page .site-inner #content #primary .entry-inner {
	margin-top: -15%;
}
}

.archive #page .site-inner #content {
	padding-top: 12%!important;
}
/***************固定ページ画像調整********************/
.page_img img{
	height: auto!important;
	width: auto!important;
}

.check_list .sss {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	background-image: url(../../../images/back/check004.png);
	border: 1px none #666;
	background-color: #EEECE0;
	margin-left: 5px;
	width: auto;
	background-position: 20% 40%;
}

/************ホバータイトル****************************/

.similar, .post_home, .post_side, .post_top, .post_series, .viewed_posts li {	
	overflow: hidden;	
	position: relative;	
}
.similar .caption a, .post_home .caption a, .post_side .caption a, .post_top .caption a, .post_series .caption a, .viewed_posts li .caption a{
	font-size: 12px;
	text-align: left;
	padding-top: 5%;
	color: #fff;
	padding-right: 5%;
	padding-left: 5%;
	display: block;
	padding-bottom: 100%;
	top: -80px;
	position: relative;
}
.similar .mask, .post_home .mask, .post_side .mask, .post_top .mask, .post_series .mask, .viewed_posts li .mask{
	width: 100%;
	height: 100%;
	position: absolute;	
	top: 0;
	left: 0;
	opacity: 0;	
	background-color: rgba(0,0,0,0.2);	
	-webkit-transition:	all 0.5s ease;
	transition: all 0.5s ease;
}



.similar:hover .mask, .post_home:hover .mask, .post_side:hover .mask, .post_top:hover .mask, .post_series:hover .mask, .viewed_posts li:hover .mask{
	opacity: 1;	
	padding-top: 80px;	
}
@media only screen and (min-width: 600px) {


.post_top:hover .mask{
	opacity: 1;	
	padding-top: 120px;	
}
.custom_catch_copy_single2 {
	display: none;	
}

}
/********コンタクトフォーム調整**********************************/

.wpcf7-form img {
	height: 10px;
	width: 10px;
}
.ajax-loader {
	height: 10px;
	width: 10px;
}
.wpcf7-form p img {
	height: auto!important;
	width: auto!important;
}

/********楽天API 調整**********************************/

.rds {
	padding: 2%;
	font-size: 12px;
	margin-top: 80px;
	margin-bottom: 10px;
	background-color: #F6F6F6;
	border: 1px dashed #666;
}
.rws {
	font-size: 12px;
	text-align: center;
	display: block;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
	float: left;
}
.rakuten .rakuten_title {
	height: 50px;
	overflow: hidden;
	line-height: 1.3em;
}
.entry-header h2 {
	font-size: 16px;
}
.category_header {
	display: block;
	width: 100%;
	top: 59px;
	position: relative;
	height: 200px;
	z-index: -999;
	overflow: hidden;
	text-align: center;
}
.category_header img {
	width: auto;
	top: -200px;
	position: relative;
	overflow: hidden;

}
.saix {
	font-size: 12px;
	padding: 2%;
	margin-bottom: 5%;
}

#post-1860 .entry-title {
	color: #333!important;
}


/********* シングルページ　ul li **************************/


.single .entry-contents ul, .single .entry-contents .custom_pr table ul {
	margin-left: 20px;
	
}
.single .entry-contents ul li {
	list-style-type: disc;
}

/********* シングルページ　材質で探す ul li 調整　**************************/

.single .entry-contents .custom_pr ul {
	margin-left: 0px;
	
}

/********* 楽天API YahooAPIクレジット　**************************/
.credit{

	text-align: center;
}
.credit img {
	height: auto !important;
	width: auto !important;
	
}

/********* 楽天レビュー　ローディングイメージ　**************************/

#data01{
	display:none;
	margin-bottom: 30px;
}

#data02{
	display:none;
	margin-bottom: 30px;
}
 
#loading, #loading2, #loading3, #loading4, #loading5, #loading6{
	display:none;
	text-align: center;
	position: absolute;
	width: 100%;
}

.review_r0 {
	text-align: center;
	font-weight: bold;
	color: #666;	
}

.review_r1 {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
	width: 100%;
	margin-bottom: 10px;
	float: left;
	
}

.review_r2 {
	font-size: 16px;
	padding-top: 20px;
	color: #333;
	text-align: left;
	padding-bottom: 20px;
	padding-right: 2%;
	padding-left: 2%;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999;
}

/********************************/

.shop_rev {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-right: 2%;
	padding-left: 2%;
}
.shop_rev .summary {
	font-weight: bold;
	font-size: 14px;
	padding-top: 10px;	
}
.shop_rev .description {
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 14px;
	clear: both;
}
.shop_rev a{
	color: #06C;
	margin-bottom: 20px;
	display: block;
	font-size: 12px;
	text-align: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.rev_in {
	clear: both;
	
}

/**************************************/

.review_footer a {
	padding-top: 10px;
	clear: both;
	width: 100%;
	text-align: center;
	float: left;
	color: #06C;
	display: block;
}

.review_footer2 a {
	padding-top: 10px;
	clear: both;
	width: 100%;
	text-align: center;
	float: left;
	color: #06C;
	display: block;
	margin-bottom: 40px;
}
.review_r1 a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 49%;
	float: left;
	clear: none;
	margin-right: 1%;
	padding-right: 5%;
	padding-left: 5%;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 0px;
}

#loading img {
	text-align: center;
	height: 30px!important;
	width: 30px!important;
	
}

#loading002 img, #loading003 img {
	text-align: center;
	height: 30px!important;
	width: 30px!important;
	
}

#loading2 img, #loading3 img, #loading4 img, #loading5 img, #loading6 img {
	text-align: center;
	height: 30px!important;
	width: 30px!important;
	margin-top: 80px;
}

#loading002{
	display:none;
	text-align: center;
	position: absolute;
	width: 100%;
}
#loading003{
	display:none;
	text-align: center;
	position: absolute;
	width: 100%;
	margin-top: 100px;
}
#data01 blockquote {
	display: block;
}
.itemBox li img {
	width: auto!important;
	height: auto;
	float: left;
	margin-top: 2%;
	margin-right: 2%;
}
blockquote ul {
	padding-top: 10px;
}
.itemBox li {
	list-style-type: none!important;
}
.field_zaiko {
	color: #333;
	display: block;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 10px;
	font-size: 14px;
	font-weight: normal;
	text-align: right;
	border-bottom-style: solid;
	border-bottom-width: 3px;
	border-bottom-color: #CCC;
	padding-right: 10px;
}
.zaiko_status {	
	color: #FFF;
	background-color: #F33;
	text-align: center;
	display: block;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 10px;
	font-size: 14px;
	font-weight: normal;
	
}


/*********************　フッターカスタム　**********************************************/

/*************************
ホーム以外のフッター
*************************/


#wp-calendar tbody tr td {
	padding-top: 5px;
	padding-bottom: 5px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
}
.grid-container a {
	color: #069;
}
.grid-container a:hover {
	text-decoration: underline;	
}

#wp-calendar thead tr th {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	color: #666;
}

#welcart_calendar-2 {
	width: 46%;
	padding: 20px;
	margin: 10px;
	float: left;
	background-image: url(../../../images/back/bg.png);
	background-repeat: repeat;
}

#welcart_calendar-2 .ucart_calendar_body.ucart_widget_body li #wp-calendar {
	margin-top: 5%;
	margin-bottom: 10%;
}
#welcart_calendar-2 .ucart_calendar_body.ucart_widget_body li #wp-calendar caption {
	padding-bottom: 10px;
	width: 100%;
	padding-top: 10px;
	margin-bottom: 10px;
	text-indent: 3em;
	text-align: left;
	background-image: url(../../../images/back/check004.png);
	background-position: left top;
	font-weight: bold;
	color: #333;
}
#welcart_calendar-2 table {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 14px;
}
#welcart_calendar-2 .widget-title {
	text-align: left;
}
.grid-container .widget_text {
	width: 46%;
	float: left;
	font-size: 12px;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 5px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	background-color: #FFF;
}

.days{
	font-size: 12px;
}
.holiday{
	text-align: left;
	
}

@media only screen and (max-width: 700px) {
#welcart_calendar-2 {
	width: 47%;
	padding: 10px;
	margin: 5px;

}

.grid-container .widget_text {
	width: 45%;

}

.parabox{
	line-height: 400px;
	font-size: 30px;
	
	}

}


@media only screen and (max-width: 450px) {
#welcart_calendar-2 {
	width: 98%;

}

.grid-container .widget_text {
	width: 98%;

}

}

.grid-container .textwidget {
	padding: 10px;
}
.grid-container .widget-title {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	font-size: 14px;
	font-weight: bold;
	background-image: url(../../../images/back/list001.gif);
	background-position: left 7px;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #333;
	text-indent: 1.5em;
}
.widget-area {
	background-color: #FFF;
}



/*************************
ホーム専用フッター
*************************/

.home #welcart_calendar-2, .archive #welcart_calendar-2{
	width: 30%;
}

.home .grid-container .widget_text, .archive .grid-container .widget_text{
	width: 31%;
}

@media only screen and (max-width: 700px) {
.home #welcart_calendar-2, .archive #welcart_calendar-2{
	width: 47%;
	padding: 10px;
	margin: 5px;

}

.home .grid-container .widget_text, .archive .grid-container .widget_text {
	width: 45%;

}

.home .parabox, .archive .parabox{
	line-height: 400px;
	font-size: 30px;
	
	}

}


@media only screen and (max-width: 450px) {
.home #welcart_calendar-2, .archive #welcart_calendar-2 {
	width: 97%;

}

.home .grid-container .widget_text, .archive .grid-container .widget_text {
	width: 97%;

}

}


/*************************
パララックス
*************************/

div.parallax{
	background-attachment: fixed;
	width: 98%;
	margin-right: 1%;
	margin-left: 1%;
	}
	
.parabox{
	line-height: 400px;
	font-size: 40px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}
.parabox2{
	font-size: 12px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	margin-top: -370px;
	position: relative;
	}		
.paraimg{
	background-image: url(../../../images/paraimg/003.jpg);
	background-position: center center;
	height: auto;
	width: auto;
	background-size:cover;
	}
	
	
@media only screen and (max-width: 700px) {

.parabox{
	line-height: 400px;
	font-size: 30px;
	
	}
.parabox2{
	margin-top: -500px;	
	}	
}


/*************　****　*******　テスト　**　*********************************************************/

.custom_catch_copy {
	display: block;
	width: 100%;
	z-index: 1;
	text-align: left;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	position: relative;
	margin-top: 30%;
	background-color: #FFF;
	margin-bottom: 0%;
	background-image: url(../../../images/back/backa01.jpg);
	background-repeat: repeat;
}

/*****************************************/

.custom_catch_copy_single {
	display: block;
	z-index: 1;
	text-align: left;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	background-color: #FFF;
	box-shadow: none;
	margin-bottom: 1%;
}
.custom_catch_copy_single .sss {
	display: block;
	z-index: 1;
	text-align: left;
	letter-spacing: 0.2em;
	margin-bottom: 1%;
	background-color: #FFF;
	box-shadow: none;
	margin-top: -20px;
	border: 1px solid #666;
	margin-left: 1%;
}
.panel_category2 {
	display: block;
	height: auto;
	width: 40%;
	z-index: 1;
	top: 60px;
	text-align: left;
	position: fixed!important;
	font-size: small;
	color: #FFF;
	letter-spacing: 0.2em;
	line-height: normal;
	margin-bottom: 1%;
		
}
.gright {
	background-color: #963;
	float: right;
	height: 100%;
	width: 30px;
	right: -40px;
	position: relative;
	text-align: center;
	bottom: -130px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 2px solid #FFF;
	margin-right: 5px;
	margin-top: -5px;
	color: #FFF;
}

@media only screen and (min-width: 1500px) {

.disp2 {
	display: block;
}


}

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


.single #content {
	margin-top: 10%;
}
.panel_category2 {	
	width: 100%;		
}

.page.page-id-760 .entry-inner {	
	width: 90%;
}



}


@media only screen and (max-width: 600px) {
	
.gazou1 {
	float: left;
	position: relative;
	width: 100%;
}
.single .custom_catch_copy_single {
	display: none;
	
}


}

@media only screen and (max-width: 800px) {
	
	.custom_shop .rakuten {
	width:32.7%;
	}

.featured-content {
	position: relative;
	display: none;
}

.about001 {
	display: none;
}

}

.home .footer_ac, .page .footer_ac {
	padding-left: 1%;
	padding-right: 1%;
}

.home .footer_ac a, .page .footer_ac a {
	text-align: center;
	width: 26%;
	position: relative;
	float: right;
}

@media only screen and (min-width: 961px) {
	
.page .footer_ac a {
	float: left;
}

} 


.footer_ac {
	position: fixed;
	display: block;
	width: 100%;
	z-index: 999;
	padding-top: 3px;
	margin-bottom: 0px;
	padding-right: 5px;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	bottom: 0px;
	padding-left: 5%;
	padding-bottom: 3px;
	background-color: #FFF;
	box-shadow: -1px -2px 2px rgba(0, 0, 0, 0.2);
}

.search .footer_ac, .archive .footer_ac{
	text-align: center;
	margin-right: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-left: 0px;
	}
	
.search .footer_ac a, .archive .footer_ac a{
	float: none;
	text-align: center;
	padding-right: 2%;
	padding-left: 2%;
	white-space: nowrap;
	display: inline-block;
	width: 24%;
	margin-top: 0px;
	margin-bottom: 0px;
	}

.footer_price {
	text-align: center;
	float: left;
	font-weight: bold;
	color: #F00;
	padding-right: 10px;
	padding-left: 10px;
	height: 29px;
	display: block;
	line-height: 2em;	
}

.footer_ac a{
	color: #333;
	font-size: 12px;
	margin-bottom: 2px;
	float: left;
	padding: 5px;	
}
.footer_ac a:hover{
	background-color: #09F;
	color: #FFF;
}


.footer_ac .sale{
	color: #FFF;
	font-size: 12px;
	background-color: rgba(255,0,0,0.7);
	float: left;
	margin-left: 2px;
	padding: 5px;
}

.footer_price, .footer_ac a, .footer_ac .sale{
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	}
	

/********************* 404ページ修正 ****************************/

.error404 .entry-header, .error404 .entry-content{
	text-align: center;
	display: block;
	width: 100%;
}

/********************* カテゴリヘッダー　背景カスタム ****************************/

.archive .site-inner #content {
}
.archive #page .site-inner {


}
.archive #content #primary {
	z-index: 999;


}
.single .entry-header {
	margin-top: 10px;
}


/********************* サイドバナー12　調整 ****************************/


.disp2 {
	display: none;	
}


@media only screen and (min-width: 1250px) {

.disp2 {
	display: block;
}


}

@media only screen and (min-height: 1000px) {

.disp2 {
	display: block;
}


}


.custom_catch_copy_single .sideb_title {
	display: block;
	z-index: 1;
	text-align: left;
	letter-spacing: 0.2em;
	box-shadow: none;
	margin-top: -20px;
	margin-left: 1%;
	font-weight: bold;
	color: #666;
	padding-top: 10px;
	padding-left: 2%;
	font-size: 18px;
	background-image: url(../../../images/back/check004.png);
	background-position: left bottom;
	text-indent: 1.5em;
	text-decoration: underline;
}

/******* 404 パララックス　回避*******************************/

.k001 {	
	clear: both;	
}

/******* カートナビ　非表示*******************************/


.page-id-44 .footer_ac {	
	display: none;
}



/***************単品ページ カスタム******************************/

.title001{
	font-size: 24px;
	text-align: center;
	display: block;
	padding: 10px;
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	font-weight: bold;
}
.link001 a{
	color: #000;
	display: block;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 2%;
	padding-left: 1%;
	background-color: #E0E0E0;
	clear: both;
	text-align: center;
	margin-bottom: 50px;
}

.link001 a:hover{
	background-color: #09C;
	color: #FFF;
}

.sprice001 {
	display: block;
	text-decoration: underline;
	line-height: 4em;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.sprice002 {
	display: block;
	text-decoration: underline;
	line-height: 4em;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	clear: both;	
}

.single_item001 ul {
	padding-top: 30px;
	padding-bottom: 5px;
	font-size: 12px;
	position: relative;
	float: left;
	clear: both;
}
.single_item001 li {
	line-height: 2em;
	list-style-image: url(@../../../images/back/list001.gif);
}

/*****************トップバナーエフェクト*********************************************/


.banner_top3 {
	position: relative;
	overflow: hidden;
}

.tb_caption {
	position: absolute;
	bottom: 0px;
	right: 0px;
	z-index: 2;
	background: rgba(100,0,0,0.1);
	
	-webkit-transition: 1.0s;
	transition: 1.0s;
	color: #FFF;
	font-size: x-large;
	text-align: center;
	vertical-align: middle;
	padding-top: 40%;
	padding-bottom: 20%;
	padding-left: 5%;
	text-shadow: 1px 1px 3px #000;
	margin-bottom: 1%;
	width: 99%;
	height: 100%;
}
.banner_top3:hover .tb_caption {
	bottom: 100%;
	background: rgba(0,0,0,0.0);
}

@media only screen and (max-width: 600px) {
	
	.custom_shop .rakuten {
	width:49.7%;
	}
	
.tb_caption {

font-size: large;
	
}
.single #page .site-inner #content #primary .entry-inner {
	margin-top: -24%;
}

}

/****************　サイド　カラー　材質　骨格*********************************************/


#data_side{
	display:none;
	margin-bottom: 10px;
} 


.etc_zaishitu {
	clear: both;
	float: left;
	padding: 2%;
	margin-right: 1%;
	margin-left: 1%;
	text-align: left;
}

.etc_color {
	clear: both;
	float: left;
	padding: 2%;
	margin-top: 20px;
	color: #333;
	margin-right: 1%;
	margin-left: 1%;
	text-align: left;
}

.etc_zaishitu, .etc_color {
	clear: both;
	float: left;
	padding: 2%;
	margin-right: 1%;
	margin-left: 1%;
	text-align: left;
	margin-bottom: 3%;
	color: #333;
}

.etc_zaishitu a, .etc_color a {
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	float: left;
	padding-right: 1%;
	padding-left: 1%;
	border-right-style: none;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 0px;
}

.etc_zaishitu a:hover, .etc_color a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #09F;
	border-bottom-color: #FFF;
}
.wrap_side a span{
	top: -100px;!important	
	display: none;

}
.wrap_side a:hover span{
	opacity: 1;
	left: -10px;
	top: -30px;
	display: block;
}


/***********サイド******　カラー　材質　アニメーション*****************************/

.material_side01 a {
	width: 28px;
	float: right;
	margin-top: 40px;
	text-align: center;
	margin-right: -30px;
	display: block;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	background-color: #FFF;
	letter-spacing: 0.3em;
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	padding: 1%;
}

.material_side02 a {
	width: 28px;
	float: right;
	margin-top: 140px;
	text-align: center;
	margin-right: -30px;
	display: block;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	background-color: #FFF;
	letter-spacing: 0.3em;
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	padding: 1%;
}

.material_side01 a:hover, .material_side02 a:hover {
	background-color: #09F;
	color: #FFF;
}

/************カート　タイトル微調整*********************************/

.page-template-uscescart .entry-inner{
	margin-top: 100px;
	float: left;
	}
	
/*************Yahooショッピング　ポイント*************************************/

.yahoo_point{
	margin-top: 20px;
	border: 5px none #CCC;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.sb_title{
	padding-right: 1%;
	padding-left: 1%;
	text-decoration: underline;
	line-height: 2em;
	padding-bottom: 1%;
}
.page-template-uscescart .site-inner #content{
	padding-top: 0px !important;
}

/*************楽天ポイント*************************************/

.rakuten_point, .rakuten_point2{
	font-size: 14px;
	display: block;
	clear: both;
	height: 30px;
	float: left;
	margin-top: 10px;
	padding-left: 10%;
	color: #FFF;
	background-color: #F00;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: bold;
	width: 100%;
}
.rakuten_point2{
	background-color: inherit;
}

/*************カートの中タイトル高さ　修正*************************************/

.catbox{
	padding-top: 60px;
}


/*************　ディスカウント　バナー　*****************************/

.campaign .tx{
	text-align: left;
	width: 50%;
	background-color:  rgba(0,0,0,0.3);
	float: left;
	height: auto;
	margin: 1%;
	display: block;
	transition:0.5s ease-in-out;
	-webkit-transition:0.5s ease-in-out;
	-moz-transition:0.5s ease-in-out;
}

.campaign .tx:hover{
	background-color:  rgba(255,255,255,0.9);
		
}

.campaign .tx a{
	color: #fff;
	display: block;
	padding: 2%;
	font-size: 14px;
	border: 2px solid #FFF;
	display: block;
	/*
	text-shadow: 2px 2px 3px #000;
	*/
	height: auto;
}

.campaign .tx a:hover{
	color: #333;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;	/*
	text-shadow: 2px 2px 3px #ccc;
	*/
}

#timer{
	background-color: #FFF;
	padding-bottom: 10px;
	background-image: url(../../../images/banner001/banner_time_sale5.jpg);
	background-repeat: repeat;
	background-position: right;
	margin-right: -2%;
	margin-left: -2%;
	height: 100px;
	font-weight: normal;
}

@media only screen and (max-width: 600px) {
	
/*
#timer{
	
	background-image: url(../../../images/topimg/foot002.gif);
	background-repeat: repeat;
	border: 1px none #999;
	margin-top: 10px;
	background-position: right bottom;
}	
*/
.campaign .tx{
	
	width: 98%;

}

}


/********************パララックス安定**********************************/


#footer_x{
	background-color: #FFF;
	z-index: 999;
}

/********************　画像アップロード　********************************************/

.wpcf7 {
	margin-top: 50px;
}
.wpcf7-form p {
	padding-bottom: 20px;
	padding-top: 10px;
	padding-right: 5px;
	padding-left: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	font-size: 12px;
}
#post-3790 ul {
}
#post-3790 li {
	padding-bottom: 20px;
	padding-top: 20px;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #CCC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
label .file-a, label .file-b, label .file-c, label .file-d, label .file-e{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	display: block;
	padding-bottom: 10px;
}
.screen-reader-response, .wpcf7-response-output {
	color: #F00;
	padding-bottom: 50px;
}
.wpcf7-not-valid-tip {
	color: #F00;	
}


/***************ディスカウントページ*************************/


.dsc {
	font-size: 24px;
	color: #900;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 20px;
}

.d0, .d1, .d2 {	
	font-size: 14px;
}
.d2 a {
	color: #09C;
}

.d0 {}

.d1 {
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #CCC;
	padding-top: 5%;
}

.d2 {
	margin-bottom: 20px;
	margin-top: 20px;
	padding-top: 5%;
	padding-bottom: 10%;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #CCC;

}

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

.d0, .d1, .d2 {
	font-size: 12px;
}

}


/************* カート 20%OFF チェック項目　隣のテキスト*****************************************/

.coupon-text{
	text-align: left;
	display: block;
	float: left;
	width: auto;	
}

/************* カート 20%OFF注意書き *****************************************/

.footer_explanation{
	color: #900;
}

/************* API 注意書き *****************************************/

.archive .other, .search .other, .single .other  {
	font-size: 14px;
	display: block;
	text-align: center;
	color: #F00;
	font-weight: bold;
}

/************* 20%オフ表示 *****************************************/

.off20 {
	display: block;
	padding: 2%;
	font-weight: bold;
	color: #900;
	text-align: center;
	width: 100%;
}