@charset "UTF-8";
/* saber shop CSS */
/* KSK-soft 2021.1.19 */
label {
	margin-bottom: 0;
}
.entry-header {
/* display: none; */
}
.shop-page .entry-header .entry-title {
	font-size: 1em;
	border: 1px solid var(--dark2-bg);
	border-width: 0 0 1px 5px;
	padding: .2em .5em;
}

.Products {
	flex-grow: 1;
}

.breadcrumbs {
	padding: .2em calc(50% - 600px);
	font-size: .6rem;
	margin: 1em 0;
}
.breadcrumb {
	list-style: none;
	display: flex;
	padding: 0 .5em;
	flex-wrap: wrap;
	margin-bottom: .2em;
	background-color: transparent;
}
.breadcrumb li:not(:last-of-type)::after {
	content: ">";
	margin: 0 .3em
}

.shop-content {
	padding: 0;
	/*! margin-top: .5rem; */
}

.product-content::before, .product-content::after {
	content: none;
}

.shop-content .sub-nav {
	flex-shrink: 0;
}

.shop-content .detail {
	flex-grow: 1;
	max-width: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-column: 2;
}

.shop-content .detail+.detail {
	padding-top: 2rem;
	margin-top: 1rem;
	border-top: solid 1px #ccc;
}

.detail .product-image {
	/*! flex-basis: 45%; */
	flex-shrink: 1;
	margin-right: 20px;
}

.detail .product-image img {
	width: 100%;
	height: auto;
	box-shadow: 0 0 1px 1px #ccc
}

.detail .property {
	flex-basis: 45%;
	flex-grow: 1;
	font-size: .8rem;
	margin-top: 0
}

.detail .property>div {
	display: flex;
	align-items: center;
	line-height: 1.3;
	padding: .2rem .5rem;
	margin-bottom: .2rem;
}

.detail .property>div:nth-child(2n-1) {
	background-color: #f6f6f6;
}

.detail .property>div dt {
	flex-basis: 8em;
	flex-shrink: 0;
	font-weight: normal;
}

.detail .property>div dd {
	margin: 0;
}

.shop-content .detail .title {
	font-size: 1em;
}

.shop-content .detail .title span {
	font-size: .9em;
}

.shop-content .detail .title .pre-subtitle {
	display: block;
}

.shop-content .detail .title .main-title {
	display: inline-block;
	font-size: 1.2em;
}

.shop-content .detail .order {
	margin: 1rem;
	text-align: center;
}

.shop-content .detail .order.Link {
	margin: 1rem 0;
	display: flex;
	justify-content: space-around;
}

.shop-content .detail .order.Link a {
	transition: background 150ms ease-in-out;
	background: hsl(150, 100%, 33.3%);
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
		"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
		"Helvetica Neue", sans-serif;
	font-size: 0.88889em;
	font-weight: 700;
	line-height: 1.2;
	outline: none;
	padding: 0.76rem 1rem;
	text-decoration: none;
	vertical-align: bottom;
}

.shop-content .detail .order.Link a:hover {
	background-color: #111;
	cursor: pointer;
}

.shop-content .detail .description {
	font-size: .7rem;
	padding: 1em calc(50% - 15em);
	background-color: #f6f6f6;
	position: relative;
}

.shop-content .detail .description::before, .shop-content .detail .description::after
	{
	content: "";
	position: absolute;
	display: block;
	top: -0.5em;
	left: -0.5em;
	width: 1em;
	height: 1em;
	background-color: rgb(230, 80, 50);
	border-radius: 50%;
	box-shadow: 1.2em 0 0 -.1em hsl(10, 78.3%, 70%), 2.2em 0 0 -.2em
		hsl(10, 78.3%, 80%);
}

.shop-content .detail .description::after {
	top: auto;
	left: auto;
	bottom: -0.5em;
	right: -0.5em;
	box-shadow: -1.2em 0 0 -.1em hsl(10, 78.3%, 70%), -2.2em 0 0 -.2em
		hsl(10, 78.3%, 80%);
}

.shop-content .detail .description p {
	margin: 0 0 .8em;
}

.sub-nav {
	font-size: .9rem;
}

.sub-nav h3, .sub-nav h4 {
	font-size: .9rem;
	font-weight: normal;
	margin: 0 0 .5rem 0;
}

.sub-nav h3 {
	background-color: var(--dark2-bg);
	text-align: center;
	padding: .3rem .2rem .2rem;
	position: relative;
	margin-bottom: 1rem;
}

.sub-nav ul {
	list-style: none;
	padding-left: 0;
	margin-top: 0;
}

.sub-nav.sub-nav ul a {
	display: flex;
	width: 100%;
	text-decoration: none;
	font-size: .75rem;
}

.sub-nav ul a::before {
	content: ">";
	margin-right: .3em;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 0.5em;
}
.breadcrumb li:last-child:after {
  content: '';
}
.product-list-item[class][class] {
	margin: 0 0 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ccc;
	text-decoration: none;
	color: inherit;
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 1rem;
	grid-template-areas:
		"img h"
		"img p";
}
.product-list-item .productImage {
	grid-area: img;
}
.product-list-item .productTitle {
	grid-area: h;
}
.product-list-item .productTitle+p {
	grid-area: p;
}
.shop-content > nav[role="navigation"] {
	grid-column: span 2;
}
.shop-content > nav[role="navigation"] > div {
	display: flex;
	justify-content: space-between;
}
.shop-content > nav[role="navigation"] > div+div {
	display: grid;
	margin-top: 1em;
}
.shop-content > nav[role="navigation"] > div+div > div {
	display: contents;
}
.shop-content > nav[role="navigation"] > div+div > div > span.inline-flex {
	display: grid;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	/* background: pink; */
	/* grid-auto-columns: minmax(1.5em,2em); */
	/* grid-template-columns: auto; */
	width: 100%;
	display: flex;
	border: 0;
	box-shadow: none!important;
	/* justify-content: space-between; */
	/* width: 100%; */
}
.shop-content > nav[role="navigation"] span.inline-flex :is(.pl-4, .px-4,.pl-2, .px-2) {
	padding: 0!important;
	text-align: center;
	display: block;
	width: 1.5em;
	text-decoration: none;
}
.product-list-item .productImage img {
	object-fit: contain;
}
.product-list-item .productTitle,
.product-list-item h3 {
	font-size: 1.3rem;
	line-height: 1.3;
	/* width: 100%; */
}
.product-list-item p {
	text-align: right;
}
.product-list-item .productTitle {
	font-size: 1em;
	display: grid;
	align-content: start;
	gap: 10px;
}
.product-list-item .productTitle+p {
	/* grid-column: 2; */
	font-size: .75em;
	margin-bottom: 0;
}
.product-list-item h3 small {
	font-size: .8em;
	justify-self: start;
}
.product-list-item h3 .preSubtitle {
	justify-self: start;
}
nav[role="navigation"] svg {
	width: 20px;
}
.shop-content .download-list {
	display: grid;
	gap: 1em;
}
.download-table[class] a {
	display: grid;
	place-items: center;
	text-decoration: none;
	background: #007bff;
	color: #fff;
	font-size: 0.8em;
	border-radius: 0.3em;
	padding: .2em;
}
.download-table[class] a:hover {
	background: hsl(211.06deg 80% 30%);
}
@media screen and (max-width: 1019px) {
	.breadcrumbs {
		margin: .2rem 0;
		padding: .1em 0;
	}
	.entry .entry-header {
		margin-top: .5rem;
		margin-bottom: .5rem;
	}
	.entry .entry-content > .product-content {
		margin-top: 0;
	}
	.shop-content .sub-nav {
		border: 1px solid var(--dark2-bg);
		margin-bottom: 1rem;
	}
	.sub-nav h3 {
		margin-bottom: .5rem;
		display: flex;
		justify-content: center;
		text-indent: 1em;
	}
	.sub-nav h4 {
		font-size: .8rem;
		margin: 0 .5rem .4rem;
	}
	.sub-nav ul {
		margin: 0 .5rem .4rem;
	}
	.sub-nav ul li {
		display: inline-block;
		margin: 0 .2rem .3rem 0;
	}
	.sub-nav.sub-nav ul a {
		font-size: .7rem;
		border: 1px solid #ccc;
		border-radius: .7em;
		padding: .2em .7em;
	}
	[id="sub-nav-ui"]:checked ~ * .sub-nav {
		max-height: 30px;
		overflow: hidden;
		transition: .5s;
	}
	.sub-nav [for="sub-nav-ui"] {
		padding: .5rem;
		margin-left: .5em;
		background-color: hsl(44, 100%, 90%);
		position: relative;
		text-indent: 0;
		margin-bottom: 0;
		cursor: pointer;
	}
	.sub-nav [for="sub-nav-ui"]::before,
	.sub-nav [for="sub-nav-ui"]::after {
		content: "";
		width: 90%;
		height: 4px;
		background-color: rgb(230, 80, 50);
		position: absolute;
		left: 5%;
		top: calc(50% - 2px);
		transition: .4s;
	}
	.sub-nav [for="sub-nav-ui"]::before {
		transform: rotate(90deg);
	}
	[id="sub-nav-ui"]:not(:checked ) ~ * .sub-nav {
		max-height: 100vh;
		transition: 1.5s;
	}
	[id="sub-nav-ui"]:not(:checked ) ~ * .sub-nav [for="sub-nav-ui"]::before {
		transform: rotate(135deg);
	}
	[id="sub-nav-ui"]:not(:checked ) ~ * .sub-nav [for="sub-nav-ui"]::after {
		transform: rotate(45deg);
	}
	.detail .property>div dt {
		flex-basis: 6em;
	}
	.detail .product-image {
		/*! flex-basis: 100%; */
	}
	.shop-content .detail .description {
		margin: 1rem 0 0;
		padding: 2em;
	}
	.product-list-item[class][class] {
	  display: block;
	}
	.product-list-item .productImage {
	  background-color: #eee;
	  padding: .5em;
	  text-align: center;
	  margin-bottom: 1em;
	}
}

@media screen and (min-width: 768px) {
	.entry .entry-content > *, .entry .entry-summary > *, .entry .entry-summary > .wp-block-group > .wp-block-group__inner-container > *, .entry .entry-content > .wp-block-group > .wp-block-group__inner-container > * {
		margin-top: .5rem;
	}
	.shop-page.entry .entry-header {
    /* margin: 0 calc(10% + 60px) 1rem; */
  }
	.entry .entry-content .product-content {
		max-width: none;
	}
	.search-toggle .icon-search {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1020px) {
	.shop-content {
		padding: 0;
		display: grid;
		justify-content: space-between;
		/* width: 100%; */
		/* max-width: none; */
		/* flex-wrap: wrap; */
		/*! margin-top: 0; */
		grid-template-columns: 300px 1fr;
	}
	.shop-content .sub-nav {
		flex-basis: 260px;
		margin-right: 20px;
	}
	.shop-content :where(.download-list,.download-table) {
		grid-column: 2;
	}
	.shop-content .download-list li {
	}
	.shop-content .Products {
		flex-basis: calc(100% - 300px);
		flex-grow: 0;
		max-width: 100%;
	}
	.shop-content .Products + nav {
		margin: 1rem auto;
		grid-column: 2;
		width: 100%;
	}
	.sub-nav h3::after {
		content: "";
		border: 0 transparent solid;
		border-width: .5em 130px 0;
		border-top-color: var(--dark2-bg);
		display: block;
		position: absolute;
		left: 0;
		bottom: -.49em;
	}
}
