@charset "UTF-8";

:root {
  /* font */
  --font-ja: "Cardo", "Noto Serif JP", serif;
  --font-en: "Cardo", serif;
  
  --color-primary: #888888;

  --headerHight: 8rem;
}

/**************************
RefinedSearch
**************************/
.s-headerModalBox__outer{
  border-radius: 5px;
  box-shadow: 0 0 1rem rgba(0,0,0,.16);
}

.s-headerModalBoxHeding{
  background-color: inherit;
  border-bottom: 1px solid #DEDEDE;
}

.s-headerModalBoxHeding__closeBtn{
  color: #B9B9B9;
}
.s-headerModalBoxHeding__closeBtn::before{order: 2; font-size: 1.8rem;}
.s-headerModalBoxHeding__closeBtn > span{order: 1; font-size: 1.3rem;}

.s-headerModalBoxHeding__title {
  font-size: 1.4rem;
  color: #888888;
  letter-spacing: 0.1em;
}

.s-headerRefinedSearchBox-item__title{
  color: #888888;
}

.s-headerRefinedSearchBox-item{
  color: #888888;
}

.s-headerRefinedSearchBox-item input[type=text],
.s-headerRefinedSearchBox-item input[type=password],
.s-headerRefinedSearchBox-item input[type=tel],
.s-headerRefinedSearchBox-item input[type=email],
.s-headerRefinedSearchBox-item input[type=text],
.s-headerRefinedSearchBox-item input[type=number] {
  width: 100%;
  height: 5rem;
  padding: 0 1.5rem 0 1.5rem; 
  border: solid 1px #B9B9B9;
  background-color: inherit;
  border-radius: 0.4rem;
  outline: none;
  line-height: 5rem;
  color: #888888;
}

.s-headerRefinedSearchBox-item select{
  height: 5rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  line-height: 5rem;
  border: solid 1px #B9B9B9;
  border-radius: 0.4rem;
  color: #888888;
}

.s-headerRefinedSearchBox-item label{
  font-size: 1.4rem;
}

.s-headerRefinedSearchBox-item input[type=radio]{
  border: 1px solid #B9B9B9;
}

.s-headerRefinedSearchBox-item input[type=radio]:checked {
  border-color: #888888;
}

.s-headerRefinedSearchBox-item input[type=radio]:checked::after{
  background-color: #888888;
}

.s-headerRefinedSearchBox-item input[type=checkbox] {
  border: 1px solid #8D857C;
}

.s-headerRefinedSearchBox-item input[type=checkbox]:checked{
  background-color: #8D857C;
}


.s-headerRefinedSearchBox-item__checkList{
  border: none;
  background: #FAFAFA;
}



.headerRefinedSearchBoxBtn .c-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 2.5rem;
  background: #888888;
  border: 1px solid #888888;
  color: #FFFFFF!important;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.428571428571429;
}

.headerRefinedSearchBoxBtn .c-btn--white{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 2.5rem;
  background: #FFFFFF;
  color: #888888!important;
}



@media screen and (min-width: 768px) {
  .s-headerModalBoxHeding__title {
    font-size: 1.5rem;
  }
  
  .s-headerModalBoxFooterBtn__close,
  .s-headerModalBoxFooterBtn__next{
    max-width: 24rem;
  }
}


@media screen and (min-width: 992px) {
  .s-headerModalBox__outer{
    border-radius: 10px;
  }
}


/**************************
prodcutList
**************************/
.c-product-sIcon,
.c-productUser-sIcon{
  gap: 0.2rem 0.2rem;
}

.c-product-sIcon > li,
.c-productUser-sIcon > li{
  height: 1.8rem;
}

.c-product-sIcon > li:not(:has(*)),
.c-productUser-sIcon > li:not(:has(*)){
  display: none;
}

.c-product-sIcon > li > img,
.c-productUser-sIcon > li > img{
  display: block;
  width: auto;
  height: 100%;
}

.c-sIcon--soldout{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 0.4rem;
  line-height: 1;
  color: var(--color-white);
  background: #707070;
}

@media screen and (min-width: 768px) {
  .c-product-sIcon > li,
  .c-productUser-sIcon > li{
    height: 1.9rem;
  }
}

