@charset "utf-8";
/* CSS Document */

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

	lid　蓋付きタンブラー

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

.item-sort dl.sort-tag {
    display: none;
}

/*------------------------------------------------------------------------------
  main-img
------------------------------------------------------------------------------*/
.main-img {
    margin-bottom: 3rem;
}

.main-img + p {
    margin-bottom: 5rem;
}

/*------------------------------------------------------------------------------
  recommend-cont
------------------------------------------------------------------------------*/
.recommend-cont {
    margin-bottom: 9rem;
}

.recommend-cont .h-recommend {
    background: #f5f5f5;
    font-weight: bold;
    margin-bottom: 3.5rem;
    padding: 4rem 8rem;
    font-size: 3.2rem;
    color: #2b2a31;
    letter-spacing: .08em;
    position: relative;
}
.recommend-cont .h-recommend:before {
    content: "";
    width: 1.7rem;
    height: 100%;
    display: block;
    background: var(--main-grad-vertical);
    position: absolute;
    top: 0;
    left: 0;
}

.h-recommend span {
    font-size: 2.7rem;
    color: var(--main-color);
    margin-right: 1.5rem;
}

@media screen and (max-width: 810px) {
        
}

@media screen and (max-width: 480px) {
    .recommend-cont .h-recommend {
        padding: 2.5rem 3rem 2.5rem 6rem;
        font-size: 2.5rem;
    }
    
    .h-recommend span {
        font-size: 2rem;
        display: block;
    }
}




/*----お薦め商品----*/
.recommend-cont .item-list {
    margin-bottom: 10px;
}

.recommend-cont .item-list > li {
    width: 440px !important;
}

.recommend-cont .item-list > li a {
    display:flex;
	flex-flow: row wrap;
    align-items: center;
	justify-content: space-between;
    box-sizing: border-box;
    padding: 10px 20px 10px 10px;
    border: 1px solid #d7dbe4;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
    height: auto;
}
.recommend-cont .item-list > li a:hover {
    box-shadow: rgba(9, 30, 66, 0.15) 0px 6px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 0px;
}

.recommend-cont .item-list .img {
    width: 210px;
    margin: 0;
}
.recommend-cont .item-list .img img {
    border: none;
}

.recommend-cont .item-list .text-data {
    width: 185px;
}

@media screen and (max-width: 810px) {
    .recommend-cont .item-list > li {
        width: 48% !important;
    }
    
    .recommend-cont .item-list .img {
        width: 48%;
    }

    .recommend-cont .item-list .text-data {
        width: 45%;
    }
}


@media screen and (max-width: 480px) {
    .recommend-cont .item-list {
        gap: 3.5rem 4%;
    }
    
    .recommend-cont .item-list > li {
        width: 100% !important;
    }
}



/*------------------------------------------------------------------------------
  item-list
------------------------------------------------------------------------------*/

.item-list .h-line {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #191919;
}

.item-list .h-line em {
    font-weight: bold;
    color: #ff2f74;
    letter-spacing: .08em;
    font-size: 2.2rem;
    display: block;
    width: fit-content;
    padding: 0 3.5rem;
    margin: 0 auto 8px;
    background: linear-gradient(
      100deg,
      #ffafd400 1%,
      #ffafd4 2.5%,
      #ffafd480 5.7%,
      #ffafd41a 93%,
      #ffafd4b4 95%,
      #ffafd400 98%
    ),
    linear-gradient(182deg, #ffafd400, #ffafd44d 8%, #ffafd400 15%);
}

.item-list .h-line span {
    font-weight: bold;
    font-size: 2.1rem;
    color: #4f4e54;
}


/*------------------------------------------------------------------------------
  select-cont
------------------------------------------------------------------------------*/
.select-cont .star-cont { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
    margin: 2rem 0 1.5rem;
}

.select-cont .star-cont dt {
    font-size: 1.6rem;
    letter-spacing: .1em;
    color: #FFF;
    background: #425a96;
    display: inline-block;
    padding: 4px 8px;
    line-height: 1;
}

.select-cont .star-cont .spec-rating { 
    display: grid; 
    grid-template-columns: 8em 1fr; 
    gap: .5rem 1rem; 
    font-size: 1.8rem;
}
.select-cont .star-cont .fa-star { 
    color: #425a96;
    font-size: 1.6rem;
}

.select-cont .star-cont .sr-only {
    position: absolute !important;
    width: 1px; height: 1px; 
    padding: 0; margin: -1px;
    overflow: hidden; 
    clip: rect(0, 0, 0, 0); 
    white-space: nowrap; 
    border: 0;
}


/*------------------------------------------------------------------------------
  other-link
------------------------------------------------------------------------------*/
.main-contents .other-link {
    margin-bottom: 5rem;
}

.main-contents .other-link > section:not(:last-child) {
    margin-bottom: 3rem;
}

.other-link .h-other {
    font-size: 2rem;
    color: #35333f;
    padding-bottom: 5px;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #35333f;
    text-align: center;
    font-weight: bold;
    letter-spacing: .08em;
}

.other-link ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 1.5rem calc((100% - 840px) / 3);
}

.other-link ul li {
    width: 210px;
}

@media screen and (max-width: 810px) {
    .other-link ul {
        gap: 1.5rem calc((100% - 92%) / 3);
    }

    .other-link ul li {
        width: 23%;
    }
}


@media screen and (max-width: 480px) {
    .other-link ul {
        gap: 1.5rem 3.5%;
    }

    .other-link ul li {
        width: 31%;
    }
}





