@charset "utf-8";

/*====================================================================================================

  メニュー一覧

====================================================================================================*/

#subvisual {
  width: 100%;
  min-width: 1200px;
  height: 410px;
  background:url("../image/visual2022.jpg") no-repeat center;
}
#subvisual h1 {
  margin: 0;
}

@media screen and (max-width:640px) {
  #subvisual {
    min-width: auto;
    margin-top: 80px;
  }
}

/*
.s-hitokoto {
  font-size:0.77em;
  display:inline-block;
  color:#fff;
  background-color:rgba(28,24,20,0.8);
  line-height:1.4;
  padding:0.25em 0.5em 0.4em 0.5em;
}
.s-souryou,
.s-cool {
  font-size:0.77em;
  display:inline-block;
  color:#fff;
  line-height:1.4;
  padding:0.35em 0.75em 0.5em 0.75em;
  margin-right:0.5em;
}
.s-souryou { background-color:#50823c; }
.s-cool { background-color:#32648c; }
*/


/*----------------------------------------------------------------------------------------------------

  一覧
  
----------------------------------------------------------------------------------------------------*/

.sec-list {
  margin-top: 30px;
}

.catetitle {
  width: calc(100% - 80px);
  display: block;
  position: relative;
  z-index: 3;
  height: 70px;
  margin: 0 auto;
  box-sizing: border-box;
}
.catetitle:before {
  content: '';
  position: absolute;
  width: 20px;
  bottom: -10px;
  left: 0;
  z-index: 2;
  border: 30px solid #770827;
  border-left-color: transparent;
}
.catetitle:after {
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: 0px;
  z-index: 2;
  border: 30px solid #770827;
  border-right-color: transparent;
}
.catetitle h2 {
  width: calc(100% - 90px);
  display: block;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  line-height: 70px;
  font-size: 175%;
  color: #FFF;
  background: #9b0827;
  box-sizing: border-box;
  padding-left: 100px;
}
.catetitle i {
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 56px;
  height: 55px;
  background: url("../image/catetitle_icon.png") no-repeat;
}

.sec-list .sort {
  list-style:none;
  text-align:left;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  line-height:1.4;
}

.sec-list .sort a,
.sec-list .sort a:visited,
.sec-list .sort a:hover { text-decoration:none; }
.sec-list .sort li.is-active a,
.sec-list .sort li.is-active a:visited,
.sec-list .sort li.is-active a:hover { color:inherit; }

.sec-list .sort li {
  padding-right:1em;
}

.sec-list .sort a {
  display:block;
  position:relative;
  padding-right:1em;
}

.sec-list .sort li:not(:last-child) a:before {
  content:"";
  width:1px;
  height:0.8em;
  position:absolute;
  right:0;
  top:50%;
  margin-top:-0.3em;
  background-color:rgba(75,60,45,0.2);
}

.list-err {
  text-align:left;
}

.item {
  text-align:left;
  font-size:1.1em;
}

.item-list {
  position: relative;
  z-index: 1;
  width:100%;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  box-sizing: border-box;
  padding: 60px 40px 10px;
  margin-top: -20px;
  margin-bottom: 50px;
  background: linear-gradient(25deg,rgba(0,0,0,0.4), rgba(0,0,0,0.4)),url("../../image/footer/bg.jpg") repeat-y;
  border:5px dotted #c11920;
}

.item-list li {
  display: block;
  width:calc(100% / 2 - 20px);
  margin-right: 30px;
  margin-bottom: 30px;
  box-sizing: border-box;
  line-height:1.6;
}
.item-list li:nth-child(even) {
  margin-right: 0;
}
.item-list a,
.item-list a:visited,
.item-list a:hover { color:inherit; text-decoration:none; }
.item-list .item-box {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 16px;
  background-color: rgba(0,0,0,0.8);
  border: 2px solid #fff;
  overflow: hidden;
  transition: 0.2s;
}
.item-list a.item-box:hover {
  background-color: rgba(20,20,20,0.8);
  border: 2px solid #ffe103;
}

.item-list .photo {
  float: left;
  width: 180px;
  height: 180px;
  margin-right: 20px;
  background-color:#fff;
  position: relative;
  align-items: center;
}
.item-list .photo .s-hitokoto {
  position:absolute;
  left:0;
  top:0;
}
.item-list .photo img {
  width: 100%;
  height: 100%;
  object-fit:scale-down;
}

.item-list .desc {
  width: calc(60% - 10px);
  float: left;
}
.item-list .hinmei { color:#ffe103; }
.item-list .price {
  font-weight: bold;
  margin-bottom:0.25em;
  color: #c82d32;
}
.item-list .comt {
}

/* pagination */
.p-pagination {
  text-align: center;
}

@media screen and (max-width:640px) {
  .item-list {
    padding: 60px 20px 10px;
  }
  .item-list li {
    width:100%;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------------------------
  カテゴリ
--------------------------------------------------------------------------------

.cate {
  text-align:left;
}

.cate-ttl {
  float: left;
  width: 20%;
  font-weight:600;
}

.cate-list a,
.cate-list a:visited { color:inherit; text-decoration:none; }
.cate-list li a:hover { color:#ffe103; text-decoration:none; }

.cate ul {
  width: 80%;
  list-style:none;
  line-height:1.6;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.cate-list {
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.cate-list > li {
	position:relative;
	box-sizing: border-box;
}

.cate-list > li.pcate:before {
  content:"";
  position:absolute;
  top:50%;
  right:0.75em;
  margin:auto;
  vertical-align:middle;
  width:0.4em;
  height:0.4em;
  border-top:1px solid #1c1814;
  border-right:1px solid #1c1814;
  -webkit-transform:rotate(135deg);
  transform:rotate(135deg);
  margin-top:-0.2em;
}

.cate-list > li.is-active.pcate:before {
  -webkit-transform:rotate(-45deg);
  transform:rotate(-45deg);
  margin-top:0;
}

.cate-list > li a {
  width:100%;
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
}

.cate-list > li.pcate a {
  padding-right:2em;
}

.subcate-list {
  width:100%;
  position:absolute;
  left:0;
  top:100%;
  z-index:5;
  background-color:#fff;
  opacity:0;
}

.cate-list > li.is-active .subcate-list {
  opacity:1;
}

.cate-list > li.pcate .subcate-list {
  pointer-events:none;
}

.cate-list > li.is-active.pcate .subcate-list {
  pointer-events:auto;
}

.subcate-list li:not(:first-child) {
  border-top:1px solid rgba(75,60,45,0.15);
}

.subcate-list li a {
  display:block;
  padding:0.75em;
}

.cate-list > li.is-active .subcate-list {
  animation:subcate-drpDwn-Open 0.3s forwards;
}

.cate-list > li.is-close .subcate-list {
  animation:subcate-drpDwn-Close 0.2s forwards;
}

@keyframes subcate-drpDwn-Open {
  0% { opacity:0; top:80%; }
  100% { opacity:1; top:100%; }
}

@keyframes subcate-drpDwn-Close {
  0% { opacity:1; top:100%; }
  100% { opacity:0; top:80%; }
}

.cate {
  padding:40px 0;
}

.cate-ttl {
  color: #ffe103;
} 

.cate-list > li {
  width:-webkit-calc(100% / 4 - 15px);
  width:calc(100% / 4 - 15px);
  padding-left: 20px;
  margin-top: 10px;
  border-left:1px solid #ffe103;
}
.cate-list > li:nth-child(4n),
.cate-list > li:last-child {
  border-right:1px solid #ffe103;
}

.cate-list > li:nth-child(-n+4) {
  margin-top: 0px;
}
@media screen and (max-width:960px) {  
  .cate-list > li {
    width:-webkit-calc(100% / 3);
    width:calc(100% / 3);
  }	
  .cate-list > li:nth-child(4n) {
	border-right:none;
  }
  .cate-list > li:nth-child(3n) {
	border-right:1px solid #1874d3;
  }
  .cate-list > li:nth-child(-n+4) {
	margin-top: 10px;
  }
  .cate-list > li:nth-child(-n+3) {
	margin-top: 0px;
  }
}
@media screen and (max-width:820px) {  
	.cate-ttl {
	  float: none;
	  width: 100%;
	  margin-bottom: 10px;
	}
	.cate ul {
	  width: 100%;
	}
}


/*----------------------------------------------------------------------------------------------------

  詳細
  
----------------------------------------------------------------------------------------------------*/

.sec-detail {
  padding-top: 80px;
  text-align:left;
}

.photoarea {
  width: 100%;
  box-sizing: border-box;
  background: url("../image/photoarea.jpg") no-repeat top center;    
}

.photoarea .titlebox {
  width: calc(100% - 80px);
  display: block;
  position: relative;
  top: -70px;
  z-index: 3;
  margin: 0 auto;
  box-sizing: border-box;
}
.photoarea .titlebox:before {
  content: '';
  position: absolute;
  width: 20px;
  bottom: -10px;
  left: 0;
  z-index: 2;
  border: 30px solid #770827;
  border-left-color: transparent;
}
.photoarea .titlebox:after {
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: 0px;
  z-index: 2;
  border: 30px solid #770827;
  border-right-color: transparent;
}
.photoarea .titlebox i {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 56px;
  height: 55px;
  background: url("../image/catetitle_icon.png") no-repeat;
}
.photoarea .titlebox .hinmei {
  width: calc(100% - 90px);
  min-height: 86px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  color: #FFF;
  background: #9b0827;
  box-sizing: border-box;
  padding: 10px 10px 10px 100px;
}
.photoarea .titlebox .hinmei h1 {
  font-size: 175%;
}
.photoarea .titlebox .hinmei .price {
  color: #ffe103;
  font-weight: normal;
}
.photoarea .titlebox .hinmei .price small {
}

.detail-photos {
  width:100%;
  overflow:hidden;
}
.detail-photos ul {
  list-style:none;
}
.detail-photos .photos-slide {
  opacity:0;
}
.detail-photos .photos-slide.slick-initialized {
  opacity:1;
}
.detail-photos .photos-slide li {
  display: block;
  width: 100%;
  max-height:500px;
}
.detail-photos .photos-slide li img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.detail-photos .photos-thumb {
  margin-top: 20px;
  margin-left:-5px;
  margin-right:-5px;
}
.detail-photos .photos-thumb ul {
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  box-sizing: border-box;
}
.detail-photos .photos-thumb li {
  display: block;
  position: relative;
  height:160px;
  width:-webkit-calc(100% / 5);
  width:calc(100% / 5);
  padding:18px 9px 0 9px;
  box-sizing: border-box;
}
.detail-photos .photos-thumb li img {
  cursor:pointer;
  width: 100%;
  height: 100%;
  object-fit:scale-down;
}

.detail-comt {
}
.detail-comt table {
  border-collapse: collapse;
}
@media screen and (max-width:640px) {  
  .detail-comt table {
    font-size: 1.75rem;
  }
}
.detail-comt table th,
.detail-comt table td {
  padding: 0.5em;
  line-height: 1.4;
  border: 1px solid #fff;
  text-align: left;
}
.detail-comt table th:first-child,
.detail-comt table td:first-child {
  min-width: 5em;
  max-width: 250px;
}

.detail-comt .first-comt {
	margin-top: 40px;
	box-sizing: border-box;
  padding: 46px;
  background-color: rgba(0,0,0,0.9);
  border: 2px solid #ffe103;
}
.detail-comt .other-comt {
	margin-top: 40px;
	box-sizing: border-box;
  padding: 46px;
  background-color: rgba(0,0,0,0.9);
  border: 2px solid #fff;
}
.detail-comt .other-comt .p-glog:first-of-type {
  padding-top: 0;
}

.sec-detail .back {
  padding-top:40px;
  text-align: center;
}
.sec-detail .back .p-arrow {
  margin-right: 0.5em;
}

@media screen and (max-width:640px) {
  .photoarea .titlebox {
    width: 100%;
  }
  .detail-photos .photos-thumb li {
    width:-webkit-calc(100% / 3);
    width:calc(100% / 3);
  }
  .detail-comt .first-comt,
  .detail-comt .other-comt {
    padding: 30px;
  }
}


/*
.detail-cont {
  margin-right:60px;
  width:50%;
}

@media print,screen and (min-width:1015px) and (max-width:1280px) {
  .detail-cont {
    margin-left:-webkit-calc(60 / 1280 * 100vw);
    margin-left:calc(60 / 1280 * 100vw);
  }
}

@media print,screen and (min-width:641px) and (max-width:1014px) {
  .detail-cont {
    margin-left:48px;
  }
}

.detail-cont .s-hitokoto {
  margin-bottom:1em;
  background-color:rgba(28,24,20,1);
}

.detail-cont .subcate {
  color: #D07707;
}

.detail-cont .comt {
  padding-top:2em;
  padding-bottom:3em;
}

.detail-cont .comt ul,
.detail-cont .comt ol {
  margin-left:1.2em;
}

.detail-cont .buy-guide {
  list-style:none;
  padding-top:1.5em;
}

.detail-cont .buy-guide li {
  padding-top:0.25em;
}

.detail-cont .buy-item {
  padding-top:1.5em;
}

.detail-cont .buy-item dl {
  background-color:rgba(255,255,255,0.7);
  border-top:1px solid #4b3c2d;
}
.detail-cont .buy-item dl:last-of-type {
  border-bottom:1px solid #4b3c2d;
}

.detail-cont .buy-item dt {
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  padding:1em;
  box-sizing: border-box;
}

.detail-cont .buy-item .hinmei {
  -webkit-box-flex:1;
  -ms-flex-positive:1;
  flex-grow:1;
}

.detail-cont .buy-item .hinmei .catename {
  color: #D07707;
}

.detail-cont .buy-item .price {
  white-space:nowrap;
  padding-left:1em;
  line-height:1.2;
}

.detail-cont .buy-item dd {
  border-top:1px dotted rgba(75,60,45,0.3);
  padding:1em;
}

.detail-cont .buy-item dd form {
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  -webkit-box-pack:end;
  -ms-flex-pack:end;
  justify-content:space-between;
}

.detail-cont .buy-item dd .buy-item__select input,
.detail-cont .buy-item dd .buy-item__select select {
  margin-right:0.5em;
  margin-top:1em;
}

.detail-cont .buy-item dd .buy-item__select .kosu input  { width:3em; }

.detail-cont .buy-item dd .buy-item__btn {
  white-space:nowrap;
}
*/




/*--------------------------------------------------------------------------------
  カートエラー
--------------------------------------------------------------------------------*/

.catin-err {
  list-style:none;
  color:#e64632;
  padding-bottom:1em;
}

.catin-input-err {
  border-color:#fd5d49;
  background-color:#ffeeec;
}


/*--------------------------------------------------------------------------------
  おすすめ商品
--------------------------------------------------------------------------------*/

@media print,screen and (min-width:641px) {
  .sec-osusume {
    margin-top:-20px;
    padding-bottom:120px;
  }
}

@media screen and (max-width:640px) {
  .sec-osusume {
    margin-top:-0.5em;
    padding-bottom:3.5em;
  }
}

.sec-osusume {
  text-align:left;
}

.osusume-ttl {
  color:#fff;
  padding:0.4em 1em 0.6em 1em;
  font-weight:600;
  background:url(../../image/pattern/bg_green.jpg) repeat center top;
}

@media print,screen and (min-width:641px) {
  .sec-osusume .item {
    margin-left:-15px;
    margin-right:-15px;
    font-size:1em;
  }

  .sec-osusume .item-list li {
    width:25%;
    padding-left:15px;
    padding-right:15px;
    padding-top:40px;
  }
  
  .sec-osusume .item-list .photo {
    height:-webkit-calc(220 / 1280 * 100vw);
    height:calc(220 / 1280 * 100vw);
    max-height:220px;
    min-height:180px;
  }
}

