@charset "UTF-8";


.global-container.productlist .c-breadcrumb{
  margin-bottom: 3rem;
}
.global-container.productdetail .c-breadcrumb{
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .global-container.productlist .c-breadcrumb{
    margin-bottom: 3rem;
  }
  .global-container.productdetail .c-breadcrumb{
    margin-bottom: 2rem;
  }
}

/*****************************
categoryNavTree
******************************/
#categoryNavTree{
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}

#categoryNavTree .productListCategoryNav{}

#categoryNavTree .productListCategoryNav > ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 3rem;
}

#categoryNavTree .productListCategoryNav > ul > li{}
#categoryNavTree .productListCategoryNav > ul > li > a{
  display: block;
  padding-bottom: calc(0.8rem + 2px);
  font-family: var(--font-ja-care);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  color: rgba(72,61,56,.4);
  text-align: center;
  position: relative;
}

#categoryNavTree .productListCategoryNav > ul > li > a::after{
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #113D79;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .3s ease;
}

#categoryNavTree .productListCategoryNav > ul > li.current > a{
  opacity: 1;
  color: #483D38;
}

#categoryNavTree .productListCategoryNav > ul > li.current > a::after{
  width: 100%;
}

@media (hover: hover) {
  #categoryNavTree .productListCategoryNav > ul > li > a:hover{
    opacity: 1;
    color: #483D38;
  }
  #categoryNavTree .productListCategoryNav > ul > li > a:hover::after{
    width: 100%;
  }
}

@media (hover: none) {
  #categoryNavTree .productListCategoryNav > ul > li > a:active{
    opacity: 1;
    color: #483D38;
  }
  #categoryNavTree .productListCategoryNav > ul > li > a:active::after{
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #categoryNavTree{
    margin-bottom: 3rem;
  }
  
  #categoryNavTree .productListCategoryNav > ul > li > a{
    font-size: 1.8rem;
    padding-bottom: calc(0.5rem + 2px);
  }
}

/*****************************
common_product_cutom
******************************/
.productlist__headarea{
  border-bottom: 1px solid #A29791;
}

.productlist__itemcount .c-pager__totalcount{
  font-weight: 400;
}
.productlist__itemcount .c-pager__totalcount > span{
  font-weight: 600;
}

.productlist__headarea .c-pager__button svg{
  fill: #483D38;
}

.c-page-title{
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #454140;
}

.c-page-title .c-page-title--ja {
  font-family: var(--font-ja-care);
  font-weight: 600;
  font-size: 3rem;
}

.sortbox .option--active{
  background-position: top calc(50% - 0.2rem) right 0.5rem;
}

@media screen and (max-width: 767px) {
  .productlist__headarea{
    border-bottom: none;
  }
  
  .c-page-title .c-page-title--ja{
    font-size: 2.6rem;
  }
  
  .productlist__heading.c-page-title {
    width: 100%;
    border-bottom: 1px solid #A29791;
  }
  
  .productlist__itemcount .c-pager__totalcount{
    font-size: 1.4rem;
  }
  
  .sortbox__item dt{
    background: #FFFFFF;
    font-weight: 400;
  }
  .sortbox .option--active{
    font-weight: 400;
    background-position: top calc(50% - 0.2rem) right 0.5rem;
  }
}


/*****************************
cicon
******************************/
.product__icon {
  background-color: var(--color-gray-500);
  color: var(--color-white);
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.4rem 0.4rem 0.2rem;
  box-sizing: border-box;
}

.product__icon.product__icon--1{
  background: #4B770C;
}
.product__icon.product__icon--2{
  background: #4B770C;
}
.product__icon.product__icon--3{
  background: #A54D0C;
}
.product__icon.product__icon--4{
  background: #A54D0C;
}
.product__icon.product__icon--5{
  background: #A54D0C;
}
.product__icon.product__icon--6{
  background: #113D79;
}
.product__icon.product__icon--7{
  background: #113D79;
}
.product__icon.product__icon--8{
  background: #113D79;
}
.product__icon.product__icon--9{
  background: #BC9517;
}
.product__icon.product__icon--10{
  background: #BC9517;
}

/*****************************
soldout
******************************/
.product__item--soldout{
  background: rgba(72,61,56,.5);
	-webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(2px);
}
.product__item--soldout{
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/*****************************
商品情報
******************************/
.product__item--name .itemNameWrap{
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .product__item--name .itemNameWrap{
    -webkit-line-clamp: 3;
  }
}


.product__price--numeric{
  font-weight: 600;
}

.product__price--tax{
  font-weight: 400;
}

.product__price--proper{
  color: var(--color-text-default);
}

.product__price--proper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-default);
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% + 0.5px));
  left: 0;
  z-index: 2;
}

.product__price--icon{
  padding: 0.4rem 1rem 0.3rem;
  border-color: #113D79;
  background: #113D79;
  border-radius: 3.2rem;
  color: #FFFFFF;
  font-weight: 700;
}

.product__price--item.product__price--fixed-firsttime + .product__price--item{
  margin-top: 0.5rem;
}

/*****************************
pager
******************************/
.c-pager{
  margin-top: 6rem;
}

.c-pager__item{
  border-radius: 5px;
  color: var(--color-text-default);
  font-weight: 600;
}

.c-pager__num--active{
  background: #EDE2D5;
}

.c-pager__item.c-pager__separator{
  font-family: var(--font-ja);
}

/*****************************
detail
******************************/
.productdetail__descarea .product__desc--catchcopy{
  margin-bottom: 1rem;
}

.productdetail__descarea .product__desc--name{
  font-family: var(--font-ja-care);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.productdetail__descarea .product__desc--outline{
  margin-top: 3rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.5;  
}

.productdetail__descarea .product__desc--price{
  margin-top: 3rem;
}

/*select ***********/
.productdetail .product__variation-select{
  margin-block: 2rem;
}

/*panel ***********/
.productdetail .variation__panel{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.productdetail .variation__panel > .variation__panel--heading{
  width: 7.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-top: 1.6rem;
  margin-block: 0;
}

.productdetail .variation__panel > .variation__panel--contents{
  width: calc(100% - 7.6rem);
}

.productdetail .variation__panel > .variation__panel--contents > .variation__panel--wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
}

.productdetail .variation__panel > .variation__panel--contents > .variation__panel--wrapper .variation__panel--item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 4rem) / 3);
  min-height: 4.5rem;
  background: #FFFFFF;
  border: 1px solid #483D38;
  border-radius: 0.5rem;
  color: inherit;
  padding: 1rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3125;
  text-align: center;
}

.productdetail .variation__panel > .variation__panel--contents > .variation__panel--wrapper .variation__panel--item.selected {
  background: #483D38;
  color: #FFFFFF;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .productdetail .variation__panel > .variation__panel--contents > .variation__panel--wrapper{}
  .productdetail .variation__panel > .variation__panel--contents > .variation__panel--wrapper .variation__panel--item{
    width: calc(50% - 1rem);
  }
}



/*cart ***********/
.productdetail__buyarea .product__count{
  margin-bottom: 3rem;
}

.productdetail__buyarea .product__count--text{
  width: 6.6rem;
}

.c-button.c-button__primary.addCart{
  min-height: 5.5rem;
  padding: 1.6rem 1.5rem 1.4rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: #FD873E;
  border: none;
  position: relative;
}

.c-button.c-button__primary.addCart.FixedPurchase{
  background: #113D79;
}

.c-button.c-button__primary.addCart::before{
  content: '';
  display: block;
  width: 5rem;
  height: 5rem;
  background: url("../Contents/ThemeImage/common/icon_btn_cart.svg") center center no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 1rem;
  top: calc(50% - 2.5rem);
  z-index: 1;
}


.stockInfo{margin-top: 1rem;}

/* tab **************/
.c-tab__selector::before{
  background-color: #483D38;
}

.c-tab__selector--button {
  width: 100%;
  height: 100%;
  background-color: #EDE2D5;
  border-color: #EDE2D5;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-sizing: border-box;
  color: rgba(72,61,56,.6);
  display: grid;
  place-content: center;
  font-family: var(--font-ja-care);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.1;
  padding: 2rem;
}

.c-tab__selector--button.active{
  background-color: #FDF9F2;
  border: 1px solid #483D38;
  border-bottom: none;
  color: #483D38;
  position: relative;
  z-index: 2;
}

/* share ***/
.productdetail .product__share{
  margin-top: 3rem;
  background: #F7F0E7;
  border: none;
}
/*favorite*/
.productdetail .product__favorite--add{
  --color-favorite-accent: #F3883F;
}

/* history **************/
.product__history,
.product__upsell,
.product__crosssell{margin-top: 6rem;}


/*****************************
review
******************************/
.product__review{
  margin-top: 6rem;
}

.product__review .form__section--heading{
  background: #F7F0E7;
}

.product__review .form__view{
  border-bottom: 1px dashed #A29791;
}


@media screen and (max-width: 767px) {
  .product__review .form__changearea .c-button{
    max-width: 20rem;
    min-width: inherit;
    margin: 0 auto;
  }
}
















