/*
Theme Name: hyozaemon
Theme URI: http://underscores.me/
Author: hyozaemon
Author URI: http://www.hyozaemon.jp/
Description: hyozaemon theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hyozaemon
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

hyozaemon is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/

new server 20221123

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
	color: black;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #000; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
	color: black;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

/*a:focus {
	outline: thin dotted;
}*/

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #fff;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
	color: #000;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	/*border-radius: 3px;*/
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #000;
	text-decoration: underline;
}

a:visited {
	color: #000;
}

a:hover,
a:focus,
a:active {
	color: #000;
	text-decoration: none;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

/* Small menu */
.menu-toggle {
	display: none;
}

/*@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 30px 1.5em 30px;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}*/

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* ==========================================================================
	 Hyozaemon Custom CSS
	 ========================================================================== */

/****** Base *****/

img {
	border: 0;
	vertical-align: middle;
}
.container {
	background-color: #FFF;
	margin: 0 auto;
	width: 980px;
}

/****** Header *****/



/****** NGS 20230525 *****/
/****** NGS 20240707 *****/

.site-header .site-branding .site-title {
	position: relative;
}
.site-header .site-branding .site-title .site-title-link {
	text-indent: -999px;
	overflow: hidden;
	position: absolute;
	display: block;
}
.site-header .site-branding .site-title .site-title-link.home {
	left: 36px;
	top: 90px;
	width: 380px;
	height: 68px;
}
.site-header .site-branding .site-title .site-title-link.syouwa {
	right: 0;
	top: 0;
	width: 330px;
	height: 125px;
}
.site-header .site-branding .site-title .site-title-link.kuki {
	right: 0;
	top: 125px;
	width: 330px;
	height: 105px;
}
.site-header .site-branding .site-title .site-title-link.kuki ,
	.site-header .site-branding .site-title .site-title-link.syouwa {
	background-color: rgba(255, 255, 255, 0);
}
.site-header .site-branding .site-title .site-title-link.kuki:hover ,
	.site-header .site-branding .site-title .site-title-link.syouwa:hover {
	transition: all 0.3s ease-in;
	background-color: rgba(255, 255, 255, 0.2);
}


#menu-hyo-gnav li {
	height: 50px;
	color:#FFF;
}
.main-navigation ul ul {
	background-color: #333;
	top: 50px;
	color:#FFF;
}
.main-navigation ul ul a {
	border-top: 1px solid #555;
	line-height: 50px;
	margin: 0 5px;
	padding-left: 15px;
	width: 120px;
	color:#FFF;
}
.main-navigation ul ul a:before {
	border-top: 1px solid #222;
	bottom: 1px;
	content: "";
	height: 50px;
	left: 5px;
	position: absolute;
	width: 120px;
	color:#FFF;
}
.main-navigation ul ul li:first-child a,
.main-navigation ul ul li:first-child a:before {
	border-top: 0;
}
#menu-hyo-gnav > li > a {
	height: 50px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.menu-item-01 > a {
	background: url(images/common/nav_img_new_01.png) 0 0 no-repeat;
	width: 65px;
}
.menu-item-02 > a {
	background: url(images/common/nav_img_new_02.png) 0 0 no-repeat;
	width: 128px;
}
.menu-item-03 > a {
	background: url(images/common/nav_img_new_03.png) 0 0 no-repeat;
	width: 94px;
}
.menu-item-04 > a {
	background: url(images/common/nav_img_new_04.png) 0 0 no-repeat;
	width: 94px;
}
.menu-item-05 > a {
	background: url(images/common/nav_img_new_05.png) 0 0 no-repeat;
	width: 94px;
}

.menu-item-05 ul.sub-menu > li.menu-item-type-taxonomy {
	width: 180px;
}
.menu-item-07 ul.sub-menu > li.menu-item-type-taxonomy {
	/*店舗案内*/
	width: 270px;
	white-space: nowrap;
}


.main-navigation ul li.menu-item-05 ul a {
	width: 180px;
}





.menu-item-06 > a {
	background: url(images/common/nav_img_new_06.png) 0 0 no-repeat;
	width: 94px;
}
.menu-item-07 > a {
	background: url(images/common/nav_img_new_07.png) 0 0 no-repeat;
	width: 113px;
}
.menu-item-08 > a {
	background: url(images/common/nav_img_new_08.png) 0 0 no-repeat;
	width: 150px;
}
.menu-item-09 > a {
	background: url(images/common/nav_img_new_09.png) 0 0 no-repeat;
	width: 148px;
}
.content-header {
	padding: 30px 0 45px 0;
}
.content-header ul {
	margin: 0 0 0 22px;
	overflow: hidden;
}
.content-header li {
	float: left;
	list-style: none;
	margin-right: 40px;
}
.content-header li.last {
	margin-right: 0;
}
.content-header-search {
	margin-right: 45px;
}
.content-header-search .search-field {
	height: 14px;
	margin-right: 25px;
	width: 190px;
}
.content-header-search .search-form img {
	margin-right: 15px;
	padding-top: 1px;
}
.content-header-search input,
.content-header-search img {
	display: block;
	float: left;
}



/****** NGS 20230525 *****/

.content-header {
	font-family: "ヒラギノ明朝 Pro W6","Hiragino Mincho Pro","HGS明朝E","ＭＳ Ｐ明朝",serif;
}
.content-header li {
	margin-right: 20px;
}
.content-header li a {
	background: url(images/common/header_menu_00.gif) left center no-repeat;
	padding-left: 10px;
}
.content-header li.content-header-search .search-form {
	margin-right: 20px;
}
.content-header li.content-header-search .search-field {
	margin-right: 0px;
	width: 180px;
}
.content-header li.content-header-search .search-title {
	margin-right: 12px;
	background: url(images/common/header_menu_05.gif) left center no-repeat;
	padding-left: 22px;
	display: block;
	float: left;
}



/****** single-product *****/

.single-product .main-h2 {
	background: url(images/common/main_h2_bg.jpg) 0 0 no-repeat;
	font-family: "ヒラギノ明朝 ProN W3","HiraMinProN-W3","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
	font-size: 1.286em;
	height: 32px;
	letter-spacing: 2px;
	line-height: 32px;
	margin: 40px 0 30px;
	padding-left: 20px;
	text-shadow: 0 0 5px rgba(0,0,0,.75);
	color: #FFF;
}
.single-product h1.entry-title {
	background: url(images/common/entry_title_bg_01.png) 0 0 no-repeat;
	font-size: 1.857em;
	height: 117px;
	margin: 0 37px;
	padding-left: 140px;
}
.single-product h1.entry-title span {
	display: table-cell;
	vertical-align: middle;
	height: 117px;
	color: #000;
}
.single-product .entry-content,
.single-product .product-detail {
	padding: 0 90px;
}
.product-detail .postImg {
	text-align: center;
}
.product-detail .postImg img {
	/*border: 1px solid #101010;*/
	margin-bottom: 5px;
}
.product-detail-size {
	border-bottom: 1px solid #fff;
}
.product-detail-size td {
	border: 1px solid #C3C3C3;
	/* border-bottom: 0; */
	padding: 6px 0 6px 30px;
}
.product-detail-size-head {
	background: url(images/product_bg.png) 0 0 repeat-x;
}
.product-detail-price {
	font-size: 1.429em;
	margin-bottom: 5px;
	text-align: center;
}
.product-detail-features02 {
	font-size: 1.429em;
	margin-bottom: 0;
	text-align: center;
}
.product-detail-text {
	margin-bottom: 50px;
}
.single-product .product-detail-contact {
	font-size: 0.857em;
	margin: 0 auto;
	width: 321px;
}
.single-product .product-detail-contact-text {
	margin-left: 24px;
}
.single-product .entry-footer {
	padding-left: 30px;
}
.product-detail-excerpt,
.single-product .entry-content {
	font-size: 1.071em;
}

/****** Archive *****/

.archive article.product,
.search-results article.product,
article.post{
	padding: 0 100px;
}
.entry-title-wrap {
	position: relative;
}
.archive .entry-content,
.search-results .entry-content {
	margin-top: 15px;
}
.archive .main-h2,
.search-results .main-h2 {
	background: url(images/common/main_h2_bg.jpg) 0 0 no-repeat;
	font-family: "ヒラギノ明朝 ProN W3","HiraMinProN-W3","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
	font-size: 1.286em;
	height: 32px;
	letter-spacing: 2px;
	line-height: 32px;
	margin: 10px 0 30px;
	padding-left: 20px;
	text-shadow: 0 0 5px rgba(0,0,0,.75);
	color: #FFF;
}
.archive h1.entry-title,
.search-results h1.entry-title,
.page h1.entry-title {
	background: url(images/common/entry_title_bg_02.png) 100% 100% no-repeat #ACAAA3;
	font-family: 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
	font-size: 1.714em;
}
.page h1.entry-title {
	color: #000;
	padding: 3px 25px;
}
.archive h1.entry-title a,
.search-results  h1.entry-title a {
	color: #000;
	display: block;
	padding: 3px 20px;
	text-decoration: none;
}
.product_point {
	color: #ff0000;
	font-family: 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
	font-size: 1.571em;
	margin-bottom: 5px;
}
.archive .product-detail .postImg img,
.search-results .product-detail .postImg img {
	margin-bottom: 10px;
}
.archive .product-detail-price,
.search-results .product-detail-price {
	margin: 10px 0 5px;
}
.archive .product-detail-features02,
.search-results .product-detail-features02 {
	margin-bottom: 0;
}
.archive .product-detail-text,
.search-results .product-detail-text {
	margin-bottom: 15px;
}
.archive .product-detail-size,
.search-results .product-detail-size {
	margin: 0 auto 15px;
	width: 780px;
}
.product-detail-btn {
	margin-top: -12px;
	text-align: center;

}

/****** Page *****/

/* common */
.page article.page {
	padding: 20px 90px;
}
.page-article-inner {
	padding: 50px 90px 0;
}
.page-section {
	margin-bottom: 50px;
}
.page .main-h2 {
	margin-top: 10px;
}
.page .col2-block {
	overflow: hidden;
}
.page .col2-left {
	float: left;
	width: 381px;
}
.page .col2-right {
	float: right;
	width: 381px;
}
.page .col2-block img {
	margin-bottom: 5px;
}

/* greetings */
.greetings .main-h3 {
	margin-bottom: 30px;
}
.greetings-spa {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin: 30px auto;
	padding: 20px 0;
	text-align: center;
	width: 390px;
}
.greetings-spa p {
	margin: 0;
}
.greetings-spa img {
	margin: 10px 0;
}
.page-section-spa {
	margin-bottom: 70px;
}
.greetings-book-price {
	font-size: 1.286em;
	margin-top: 65px;
	text-align: right;
}

/* access */
.access {
	margin-bottom: 20px;
}
.access .main-h3 {
	font-family: 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
	font-size: 1.429em;
	margin-bottom: 15px;
}

/* law */
.law {
	margin-bottom: 30px;
}
.law-table {
	border-collapse:separate;
	border-spacing: 4px;
}
.law-table td {
	background-color: #333;
	padding: 10px 20px 10px 24px;
	color: #FFF;
}
.law-table td:first-child {
	background-color: #605533;
}

/* inquiry */

.inquiry .main-h3 {
	margin-bottom: 25px;
}
.inquiry-msg {
	font-size: 21px;
	margin-bottom: 40px;
	font-family: "ヒラギノ明朝 Pro W6","Hiragino Mincho Pro","HGS明朝E","ＭＳ Ｐ明朝",serif;
}
.inquiry-info-block {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	margin-bottom: 100px;
	overflow: hidden;
	padding: 20px 0;
}
.inquiry-info-block .box-left,
.inquiry-info-block .box-right {
	float: left;
}
.inquiry-info-block .box-left {
	margin-left: 42px;
}
.inquiry-info-block .box-right {
	margin-left: 85px;
}
.inquiry-info-block .box-right p {
	font-size: 0.857em;
	margin: 30px 0 0 0;
}
.inquiry-kaitori-text {
	margin-bottom: 90px;
}
.inquiry-kiyaku {
	margin: 0 0 0 1.5em;
}
.inquiry-kiyaku li {
	margin-bottom: 15px;
}

/* anecdote */

.anecdote-nav {
	margin: 0 0 60px 0;
	overflow: hidden;
}
.anecdote-nav li {
	background-color: #605533;
	float: left;
	font-size: 1.143em;
	height: 40px;
	list-style: none;
	margin-left: 40px;
	width: 240px;
}
.anecdote-nav li:first-child {
	margin-left: 0;
}
.anecdote-nav li a {
	display: block;
	line-height: 40px;
	padding-left: 37px;
	text-decoration: none;
}
.anecdote-nav li a span {
	background: url(images/common/icon_img_04.png) 0 4px no-repeat;
	padding-left: 40px;
	color: white;
}
.anecdote .main-h3 {
	margin-bottom: 27px;
}
.anecdote01-block {
	display: table;
}
.anecdote01-block .box-left {
	display: table-cell;
	text-align: center;
	width: 50px;
}
.kotoki .box-left {
	background: url(images/anecdote01_img_01.gif) 50% 0 no-repeat #604d33;
}
.sintoki .box-left {
	background: url(images/anecdote01_img_02.gif) 50% 0 no-repeat #5f6033;
}
.sinsintoki .box-left {
	background: url(images/anecdote01_img_03.gif) 50% 0 no-repeat #33605e;
}
.gendaitoki .box-left {
	background: url(images/anecdote01_img_04.gif) 50% 0 no-repeat #334160;
}
.anecdote01-block .box-right {
	display: table-cell;
	padding-left: 26px;
	width: 749px;
}
.anecdote-h4 {
	background: url(images/common/icon_img_05.png) 0 7px no-repeat;
	color: #FF0030;
	font-size: 1.343em;
	margin-bottom: 30px;
	padding-left: 22px;
}
.anecdote-lead {
	color: #F80;
	font-size: 1.143em;
	margin: 30px 0 15px;
}
.anecdote02-table {
	margin-bottom: 40px;
}
.anecdote02-table,
.anecdote02-table td {
	border-collapse: collapse;
}
.anecdote02-table td {
	border: 1px solid #fff;
	padding: 25px;
	vertical-align: middle;
}
.anecdote02-table td:first-child {
	color: #FF6100;
	padding: 25px 10px;
	text-align: center;
	width: 110px;
}
.anecdote03 p {
	margin-bottom: 35px;
}
.anecdote03 .anecdote-lead {
	margin-bottom: 15px;
}
.anecdote03 .page-section {
	margin-bottom: 100px;
}
.anecdote03-list {
	margin: 0 0 35px 0;
}
.anecdote03-list li {
	list-style: none;
	margin-bottom: 1em;
}
.anecdote03-list li span {
	color: #FF7400;
}

/* link */

.link-list {
	margin: 0;
	overflow: hidden;
}
.link-list li {
	height: 133px;
	float: left;
	font-size: 1.143em;
	list-style: none;
	margin-bottom: 30px;
	width: 340px;
}
.link-list li.bn-left {
	float: right;
}
.link-list li img {
	margin-top: 5px;
  max-width: 200px;
}
.link .page-article-inner {
	padding: 50px 90px 0;
}
.link 
.img-nihonbudogu{
	width: 200px;
}
.fujitoken{
	padding-top: 15px; 
}

/****** Home *****/

.home-block {
	margin-bottom: 30px;
	overflow: hidden;
}
.home-block-left p {
	margin-left: 37px;
}
.home-info-box {
	background-color: #FFF;
	height: 200px;
	overflow-y: scroll;
	padding: 10px 25px;
}
.home-news-box {
	background-color: #FFF;
	height: 200px;
	overflow-y: scroll;
	padding: 10px 25px;
}
.home-blog-box {
	background-color: #FFF;
	height: 200px;
	overflow-y: scroll;
	padding: 10px 25px;
}
.home-blog{
	list-style-type:none;
	margin:0;
}
.home-blog li{
	margin-bottom: 5px;
}
.home-block-left {
	float: left;
	width: 470px;
}
.home-block-right {
	float: left;
	width: 470px;
	margin-left: 10px;
}
.col2-select-block {
	margin-bottom: 70px;
}
.col2-select-block,
.col3-select-block {
	overflow: hidden;
}
.col2-select-left {
	float: left;
}
.col2-select-right {
	float: right;
}
.home-select ul {
	margin: 17px 0 0 34px;
}
.home-select li {
	list-style: none;
	margin: 0 0 8px 0;
}
.col3-select-block {
	margin-bottom: 70px;
}
.col3-select-left,
.col3-select-center,
.col3-select-right {
	float: left;
	width: 301px;
}
.col3-select-left {
	margin-right: 39px;
}
.col3-select-center {
	margin-right: 37px;
}
.home-select-jidai {
	background: url(images/home/home_menu_bg.jpg) 0 0 no-repeat;
	height: 249px;
	margin: 33px 0 0 27px;
	width: 379px;
}
.home-select-jidai ul {
	margin-right: 10px;
	overflow: hidden;
}
.home-select-jidai li {
	float: right;
	margin: 33px 18px 0 0;
}
.home-select-map {
	margin: 27px 14px 0 0;
}

/****** postingpage *****/
#posting-wrapper{
	margin:0 0 0 30px;
}

div#posting-wrapper:after{
  content: "";
  display: block;
  clear: both;
}

#posting-cont{
	width:700px;
	margin-right:40px;
	float:left;
}

#posting-main{
}

#posting-side{
	width:180px;
	float:left;
}

#posting-side .entry,
#posting-side .backnumber{
	list-style-type:none;
	margin:0 0 30px 0;
}

#posting-side .side-title{
	margin:0 0 10px 0;
	padding:5px 10px;
	background:#605533;
	color:#FFFFFF;
}

#posting-side .entry li,
#posting-side .backnumber li{
	margin:0 0 10px 0;
}

.posting-title{
	background: url(images/posting_title_mark.gif) 0 6px no-repeat;
	border-bottom: #796B44 1px solid;
	padding: 0 0 0 25px;
	font-size: 160%;
	font-weight:bold;
}

.posting-date{
	margin:20px 0; 
	font-size: 90%;
	color: #796B44;
}

/****** accordion ******/

.page-books-inner{
padding: 0 90px 0;
}

dl.accordion {
width:800px;
margin:0 auto 30px;
font-size:16px;
border-bottom:#666666 1px solid;
}

dl.accordion dt {
background:url(images/otheropen.png) 97% center no-repeat #fff;
height:50px;
text-indent:10px;
line-height:50px;
color:#333;
cursor:pointer;
}

dl.accordion dt.open {
background:url(images/otherclose.png) 97% center no-repeat #FFFFCC;
}

dl.accordion dd+dt {
border-top:#666666 1px solid;
}

dl.accordion dd {
clear:both;
background:#FFFFCC;
padding:0 20px 20px 20px;
margin:0;
line-height:1.5;
display:none;
}

.book_title{
font-weight:bold;
display:block;
float:left;
font-size:100%;
}

.book_author{
font-weight:bold;
display:block;
float:left;
margin-left:20px;
font-size:80%;
}

.book_price{
font-weight:bold;
display:block;
float:right;
margin-right:70px;
font-size:100%;
}

table.other{
border-collapse:collapse;
border:#ccc 1px solid;
margin:0;
}

table.other td, table.other th{
border-collapse:collapse;
border:#ccc 1px solid;
}

table.other th{
padding:5px;
text-align:center;
background:#E0E0E0;
font-size:80%;
}

table.other td{
padding:10px 20px;
text-align:center;
background:#fff;
}


#book_footer{
width:100%;
margin:30px auto 0;
padding:30px 0;
background:#E5E5E5
}

#book_footer table{
width:80%;
border-collapse:collapse;
border:#ccc 1px solid;
margin:0 auto;
}

#book_footer table td{
border-collapse:collapse;
border:#ccc 1px solid;
padding:20px;
}

.book_footer_title{
font-weight:bold;
text-align:center;
}

.book_postage{
margin:20px 0 0 20px;
font-weight:bold;
}

.book_conditions{
margin:10px 0 0 40px;
}


/****** Others ******/

.section-inner {
	padding: 50px 90px;
}

/****** Footer *****/

.wp-pagenavi {
	text-align: center;
	margin: 10px 0;
}
.nav-links {
	margin-bottom: 50px;
	text-align: center;
}
.pagetop {
	margin: 0;
	text-align: right;
}
.site-footer {
	border-top: 1px solid #796b44;
}
.site-footer ul.menu {
	font-size: 0.857em;
	margin: 0;
}
.site-footer .sub-menu {
	margin-top: 6px;
}
.site-footer ul.menu > li {
	background: url(images/common/icon_img_01.gif) 0 4px no-repeat;
	padding-left: 11px;
}
.site-footer li {
	list-style: none;
	margin-bottom: 5px;
}
.site-footer li a {
	text-decoration: none;
}
.site-footer ul.menu > li {
	list-style: none;
}
.site-footer ul.menu > li > ul {
	margin-left: 1em;
}
.site-footer-block {
	overflow: hidden;
	padding: 15px 37px;
}
.site-footer-block > div {
	float: left;
}
.site-footer-left {
/* 	width: 273px; */
	 	width: 170px;
    margin-right: 105px;
}
.site-footer-left table {
	font-size: 0.7em;
	}
.site-footer-left td {
	padding: 3px;
	text-align: center;
	color: #FFF;
}
.site-footer-left-title {
	background: url(images/common/icon_img_02.gif) 0 6px no-repeat;
	font-size: 0.857em;
	margin-bottom: 0;
	padding-left: 12px;
}
.site-footer-left-note{
	font-size: 0.714em;
	margin-bottom: 10px;
}
.site-footer-center {
	width: 230px;
}
.site-footer-center,
.site-footer-right {
	margin-top: 1em;
}
.site-footer .site-info {
	background: url(images/common/footer_bg.jpg) 0 0 no-repeat;
	height: 182px;
}
.site-info-license {
	margin-bottom: 5px;
	padding: 83px 0 0 30px;
	color: #FFF;
}
.site-info-copy {
	padding: 0 0 0 30px;
	color: #FFF;
}
.site-footer .close {
	color: #ff0000;
}
.site-footer-bnr {
	margin-left: 40px;
	width: 230px;
}
.site-footer-bnr p {
	font-size: 12px;
	margin-top: 5px;
}


/****** Common *****/

.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb100 {margin-bottom: 100px !important;}

.pb00 {padding-bottom: 0 !important;}
.pb05 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}

.txt-s {
	font-size: 0.875em;
}
.alg-c {
	text-align: center;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}




/* Customize 2020.11.30 */

.archive.term-8 article.product,
.archive.term-9 article.product,
.archive.term-10 article.product,
.archive.term-11 article.product {
    width: 33%;
    padding-right: 20px;
    padding-left: 20px;
margin-bottom: 40px;

}

.archive.term-8 article.product .product-detail-size,
.archive.term-9 article.product .product-detail-size,
.archive.term-10 article.product .product-detail-size,
.archive.term-11 article.product .product-detail-size {
	width: 100%;
}


.archive.term-8 article.product .entry-title,
.archive.term-9 article.product .entry-title,
.archive.term-10 article.product .entry-title,
.archive.term-11 article.product .entry-title {
	font-size: 18px;
}

.archive.term-8 .cont-wrap,
.archive.term-9 .cont-wrap,
.archive.term-10 .cont-wrap,
.archive.term-11 .cont-wrap {
	width: 80%;
	margin: 0 auto;
	overflow : hidden;
	display: flex;
	flex-wrap: wrap;
}

.product-detail-price,
.product-detail-features02 {
	font-size: 18px;
}


/****** NGS 20230606 *****/
.wpcf7-form {
	/*border: 1px rgba( 55,255,55,0.8 ) solid; box-sizing: border-box;*/
}
.wpcf7-form p {
	margin-bottom: 2em;
}
.wpcf7-form p br:not(.message) {
	display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.5em;
}

.wpcf7-form .wpcf7-text {
	border: 1px #C3C3C3 solid;
}
.wpcf7-form .wpcf7-select {
	margin-top: 0.5em;
	border: 1px #C3C3C3 solid;
	padding: 0.4em;
	color: #000;
}
.wpcf7-form .wpcf7-submit {
	margin-top: 0.8em;
	border: 1px #C3C3C3 solid;
	font-size: 129%!important;
	padding: 0.9em;
	border-radius: 0;
}


/****** NGS 20230710 *****/

.home-shop a:hover img {
	opacity: 0.8;
	transition: all 0.3s ease-in;
}