/* 切り替えタブとカートボタンの色設定*/
:root{
  --tab-text-color:#fff; /* タブ 文字色*/
  --tab-bg-color:#d3d3d3; /*タブ 背景色*/
  --tab-bg-active:#c7202c; /*選択中のタブ 背景色*/
  --tab-text-hover:#405bfd; /*タブにマウスがのったとき 文字色*/
  --tab-bg-hover:#fff; /*タブにマウスがのったとき 背景色*/
  --cart-text-color:; /*カートに入れるボタン 文字色*/
  --cart-bg-color:#d30010 ; /*カートに入れる 背景色*/
  --cart-border-color:#a00209  ; /*カートに入れる 下線色*/
}
/* 切り替えタブとカートボタンの色設定　ここまで*/
:root{
  --bg-color:#fff;
  --bg-image-url:https://img.shop-pro.jp/tmpl_img/73/bg.gif;
  --text-color:#464e54;
  --link-color:#464e54;
  --hover-color:#5e5e5e;
  --theme-color:#7c9174;
}

*,::after,::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-size: 16px;
  font-weight: 500;
  font-family: "Helvetica Neue",Ariel,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,Meiryo,serif;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: var(--theme-color, #7c9174);
}
blockquote,dd,dl,figure,h1,h2,h3,h4,p {
  margin: 0
}
*:not(svg)[aria-hidden=true] {
  display: none
}
a:is(:hover , :focus):not([aria-current]){
  color:var(--hover-color);
}
a[aria-current="page"]{
  pointer-events: none;
}

ol,ul {
  margin: 0;
  padding: 0;
  list-style: none
}
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
svg{
  width:18px;
  height:18px;
  fill:currentColor
}
button,[role=button],input,select,textarea {
  font: inherit;
  border: none;
  background: 0 0;
  outline: 0
}
.reader-txt {
  position: absolute;
  -webkit-clip-path: inset(50%);
  overflow: hidden;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
}
form{
  margin: 0;
}
/**
 * HEADER
*/
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5em 15px;
}
.logo img {
  height: 50px;
}
.header-toolbar {
	display: grid;
	grid-template-columns: repeat(2,40px);
	gap: clamp(16px,5vw,40px);
	align-items: center;
}
.header-toolbar button.view-cart{
  position:relative
}
.header-toolbar button.view-cart svg {
	width: 36px;
	height: 36px;
	fill: #fff;
}

button.menu-trigger {
  width: 40px;
  height: 30px;
  position: relative;
}

button.menu-trigger > span {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 4px;
}
button.menu-trigger > span:nth-child(2) {
  top: 14px;
}
button.menu-trigger > span:nth-child(3) {
  top: 28px;
}
.menu-trigger span {
  transition: rotate .4s;
}
.menu-trigger[aria-expanded="true"] > span {
  transform-origin: right;
  rotate: -45deg;
}
.menu-trigger[aria-expanded="true"] > :nth-child(2) {
  rotate: y 90deg;
  transform-origin: center;
}
.menu-trigger[aria-expanded="true"] > :last-child {
  rotate: 45deg;
}

/**
 * Navigation
*/
#site-nav[aria-hidden="true"] {
  display: none;
}
#site-nav {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  height: max-content;
  background-color: rgba(80,80,80,.95);
  padding-bottom: 80px;
  font-family: "Noto Sans JP";
  text-align: center;
  z-index:10
}
.site-nav-item:not(:first-child) {
  border-top: 1px solid #999;
}
.site-nav-inner :is(a, button) {
  padding-block: 1em;
  display: block;
  text-align: center;
  width: 100%;
  color: #fff;
}
:is(.site-nav__btn, .site-nav__link) {
  font-weight: 700;
}
.site-nav-child a {
  padding-block: .5em;
}
.site-nav-item#view-cart{
  display:none
}
/** PC */
@media(min-width:981px){
  .header-inner {
    justify-content: center;
    height: 120px;
  }
  .logo img {
    width: 282px;
    height: auto;
  }
  .header-toolbar {
      width: 0;
      height: 0;
  }
  .header-toolbar  > button{
    display: none;
  }

  #site-nav:not(#important) {
    display: block;
    position: relative;
    top:initial;
    background: none;
    padding-bottom:0
  }
  .site-nav-inner {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    padding-inline: 15px;
    justify-content: center;
    max-width: 1144px;
    margin-inline: auto;
  }
 .site-nav-item:not(:first-child) {
    border-top: none;
  }
  .site-nav-item#view-cart {
    display: block;
  }
  .site-nav-inner :is(a, button) {
    color: #fff;
    padding: 1em 0;
    width: 100%;
    text-align: center;
    font-size: clamp(14px,1.4vw,15px);
    font-weight: 500;
  }
  .site-nav-child {
    display: none;
    position: absolute;
    background: rgb(0 0 0 /.7);
    width: max-content;
    padding: 15px;
  }
  .site-nav-child a {
    line-height: 2.2;
    color: #fff;
    padding-block: 4px;
  }
  #site-nav :is(a, button):is(:hover, :focus) {
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    word-break: keep-all;
  }
}
@media(hover:hover){
  .site-nav-item:hover {
    padding-bottom: 200px;
    margin-bottom: -200px;
  }
  .site-nav-item:hover > .site-nav-child {
    display: block;
  }
  .site-nav__btn:hover {
    cursor: default;
  }
}
/* カートをみるボタン */
.site-nav__btn.view-cart {
	position: relative;
}
#top.fixed .view-cart:not([data-incart="0"]) {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	color: #fff;
	padding: 12px 16px;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ccc;
	background: var(--theme-color);
}
.site-nav__btn.view-cart:not([data-incart="0"])::after, 
#top.fixed .view-cart:not([data-incart="0"])::after {
	content: attr(data-incart);
	position: absolute;
	top: 5px;
	right:5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	padding: 4px;
	background: #9f0606;
	clip-path: circle();
}

#top:not(.fixed) .view-cart:not([data-incart="0"])::after{
	content: attr(data-incart);
	position: absolute;
	top: -5px;
	right:-15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	padding: 4px;
	background: #9f0606;
	clip-path: circle();
}
@media(min-width:810px){
  #top.fixed .view-cart:not([data-incart="0"])::before {
    content: attr(title);
    color:#fff;
  }
  #top.fixed .view-cart:not([data-incart="0"])::after {
	top: 12px;
    right:20px
  }
}

@media(hover: hover){
	.site-nav__btn.view-cart[data-incart="0"]:hover::after{
		content: "カートに商品がありません";
		position: absolute;
		top: 80%;
		left: 60%;
		display: block;
		width: max-content;
		padding: 8px;
		background: #333;
		transform: translateX(-50%);
	}
}
.main-contents{
  width:min(96%, 1180px);
  margin-inline:auto;
}
/**
 * Breadcrumbs
*/
.breadcrumbs {
  display: flex;
  column-gap: 2em;
  margin-bottom: 1em;
  padding: .75em 1em;
}

.breadcrumbs__link {
  color: #fff;
}

.breadcrumbs-item:not(:first-child)::before {
  content: "/";
  position: relative;
  left: -1em;
}

/**
 * Main Content
*/
.isd-container {
  width: min(96% , 960px);
  margin-inline:auto;
}

.keyvisual > img {
  display: block;
  height: 70vh;
  object-fit: cover;
}
.section-title {
	margin: 1em 0;
	text-align: center;
	color: #fff;
	font-size: 2em;
}
/* 
 * Products List
*/
.products-list {
  --column: 2;
  display: grid;
  grid-template-columns: repeat(var(--column) ,minmax(0,1fr));
  gap: 0 clamp(16px, 3vw, 30px);
}
/* Tablet ~ */
@media( min-width : 810px){
  .products-list {
    --column: 3;
  	row-gap: clamp(16px,2.2vw,22px);
  }
}

.products-list-item {
	font-size: .8em;
	font-family: "Noto Sans JP";
	padding-bottom: 30px;
}

.products-list__name {
	display: flex;
	align-items: flex-end;
	height: 2.8em;
	font-size: clamp(12px,1.4vw,14px);
	font-weight: 600;
  line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 0.5em;
  word-break: break-all;
}
:is(.products-list__price, .products-list__form) {
	padding: 10px 0;
}
:is(.products-list__price, .products-list__form) span {
	font-weight: 500;
	margin-right: 1em;
}
.products-list__form {
	display: flex;
}
.products-list__form span{
  margin-top:6px;
}
.produtcs-list__num {
	width: 40px;
	min-height: 32px;
	font-family: initial;
	line-height: 1.5;
	padding-inline:  5px;
	background: #fff;
	border-radius: 0;
    text-align:center
}
.products-list__btn {
  display: block;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--cart-text-color , #fff) !important;
  line-height:1;
  margin-left: auto;
  padding-block:0.6em .5em !important;
  padding-inline: 8px;
  background: var(--cart-bg-color) !important;
  border: none;
  border-bottom: 5px solid;
  border-color: var(--cart-border-color) !important;
  border-radius: 5px;
  transition: ease .3s;
  box-shadow: 0 3px 5px rgba(0,0,0,.3);
}
@media( hover: hover){
 .products-list__btn:hover {
	margin-top: 3px;
	border-bottom-width: 2px;
 }
}
.products-list__btn::after {
	content: attr(title);
	display: block;
	font-size: 8px;
	font-weight: 400;
	margin-inline: -4px;
	padding-top: 6px;
}
.products-list__btn svg {
  fill: #fff;
}
@media( min-width: 390px){
  .products-list__btn::after {
    font-size: clamp(10px, 1.3vw, 13px);
    padding-block: 3px;
  }
  .products-list__btn svg{
    display:none
  }
}
@media( min-width: 810px){
  .products-list__btn::after{
    margin-inline: 0;
  }
}
.products-list__btn[aria-busy="true"],
.products-list__btn[aria-disabled="true"]{
  opacity: .5;
  pointer-events: none;
	background: #777;
}

/*
 * FOOTER
*/ 
#site-footer {
  font-size: clamp(13px, .9em ,14px);
  font-family: "Noto Sans JP";
  line-height:2;
}
.footer-inner {
  padding: 3em 15px;
}
#site-footer a {
  color: #fff;
}

.footer-contents-title {
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 1em;
  padding: 1em 0;
  border-bottom: #ffffff solid 1px;
}
.footer-contents-list + .footer-contents-list {
	margin-top: 2em;
}
.footer-contents:not(:first-child) {
	margin-top: 2em;
}
.footer-sns {
	display: flex;
	justify-content: center;
	column-gap: 10px;
	margin-bottom: 20px;
}
.footer-sns img {
	height: 22px;
}
#copyright {
	border-top: #f2d22e solid 5px;
	background: #5f453d;
	text-align: center;
	padding: 1em;
}
/* iPad */
@media(min-width: 768px){
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    width: min(100%, 1080px);
    margin-inline: auto;
  }
  .footer-inner > .footer-contents:first-child {
    grid-row: 1/3;
  }
  .footer-inner > .footer-contents:last-child {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .footer-contents:not(:first-child) {
	margin-top: 0px;
  }
}
/* PC */
@media(min-width: 981px){
  .footer-inner {
    grid-template-columns: repeat(5,1fr);
    gap: 32px;
  }
  .footer-inner > .footer-contents:first-child {
    grid-column: 1/3;
    grid-row: initial;
  }
  .footer-inner > .footer-contents:last-child {
    grid-row: initial;
    grid-column: initial;
  }
  .about-products{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "first second""first third";
  }
  .about-products > :first-child{ grid-area: first }
  .about-products > :nth-child(2){ grid-area: second }
  .about-products > :last-child{ grid-area: third; align-self:end }

  .footer-contents-list + .footer-contents-list{
     margin: 0;
  }
}

/* クイックカートのダイアログ*/
#cart-result {
	width: 100%;
	height: 100vh;
	height: 100svh;
	max-width: 100%;
	max-height: 100vh;
	max-height: 100svh;
	background: rgb(255 255 255 / 0);
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
}
#cart-result::backdrop {
  background: rgba(250, 250, 250,.6);
}
.dialog-inner {
	display: flex;
	justify-content: center;
	height: calc(100vh + .5px);
	padding: 24px 16px 0;
	overflow-y: scroll;
	position: absolute;
	inset: 0;
	inset: 0;
}
.dialog-body {
  --dialog-color:#6c866d;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(300px,100%,800px);
  color: #fff;
  padding: clamp(12px,4vw,40px) clamp(12px,4vw,40px) 0;
  background:var(--dialog-color);
	position: relative;
	overflow-x: hidden;
	overflow-y: scroll;
}
.dialog-body h2 {
  font-size: clamp(19px,2.6vw,26px);
  font-weight: 600;
  padding: 20px 0 8px;
}

.dialog-name {
  font-size: clamp(15px, 1.8vw,17px);
  padding: 20px 0;
  margin-bottom: 40px;
}

.dialog-btns {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  color: #fff;
  margin-bottom: 40px
}

.dialog-btns > button {
  font-size: clamp(16px,1.8vw,18px);
  font-weight: 600;
  color: #fff;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 28px;
}

.dialog-btns button.view-cart {
		color: var(--dialog-color);
		background: #fff;
}
@media(min-width: 768px){
	.dialog-btns {
		flex-direction: row-reverse;
		justify-content: center;
		column-gap: 40px;
	}
}
/**
 * トップにもどるボタン
 */
#top.fixed ~ .totop {
	display: block !important;
	position: fixed;
	bottom: 10px;
	right: 10px;
}
.totop svg {
	width: clamp(42px,6vw,56px);
	height: clamp(42px,6vw,56px);
	fill: #fff;
}
@media(min-width:768px){
  #top.fixed ~ .totop {
    bottom: 150px;
    right: 50px;
  } 
}