@charset "utf-8";
/* -----------------------t-fvSlide---------------------------- */
.t-fvSlide.slick-dotted.slick-slider{
  margin-bottom: var(--GENERALSEC);
}
@media (hover: hover){
  .t-fvSlide img{
    transition: .5s;
  }
  .t-fvSlide img:hover{
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px){
  .t-fvSlide .slick-slide{
    --WIDTH: clamp( 350px, 40vw, 500px);
    min-width: var(--WIDTH);
    max-width: var(--WIDTH);
    margin-inline: var(--GAP_10);
  }
}
/* ----------------------t-hotword----------------------------- */
.t-hotword__heading{
  font-weight: 700;
  font-family: var(--FF_EN);
}
.t-hotword__list li a{
  background-color: var(--BEIGE01);
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  letter-spacing: 0;
}
.t-hotword__list li a::before{
  content: '#';
}
.t-hotword__list li a::after{
  content: "";
  display: inline-block;
  --MASK: var(--ICON-fukidashi) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--BEIGE01);
  aspect-ratio: 1/1;
  position: absolute;
  top: 95%;
  left: 35%;
}
@media (hover: hover){
  .t-hotword__list li a{
    transition: 0.3s;
  }
  .t-hotword__list li a:hover{
    background-color: var(--TXT_COLOR_BASE);
    color: var(--WHITE);
  }
  .t-hotword__list li a::after{
    transition: 0.3s;
  }
  .t-hotword__list li a:hover::after{
    background-color: var(--TXT_COLOR_BASE);
  }
}
@media screen and (min-width: 1251px){
  .t-hotword::before{
    width: calc((100vw - var(--PC_MAX_WIDTH)) / 2);
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px){
  .t-hotword::before{
    width: calc((100vw - var(--INNER_WIDTH)) / 2);
  }
}
@media screen and (min-width: 768px){
  .t-hotword{
    position: relative;
  }
  .t-hotword::before{
    content: "";
    display: inline-block;
    background: var(--WHITE);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .t-hotword__container {
    overflow: hidden;
    position: relative;
  }
  .t-hotword__heading{
    display: inline-block;
    background-color: var(--WHITE);
    position: relative;
    z-index: 2;
    font-size: var(--FZ_30);
    height: 85px;
    padding: 15px 40px 0 0;
  }
  .t-hotword__heading::after{
    content: "";
    display: inline-block;
    background: var(--GRAY01);
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .t-hotword__wrapper {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 1;
  }
  .t-hotword__wrapper:hover {
    animation-play-state: paused;
  }
  .t-hotword__list{
    display: flex;
    margin: 0;
    list-style: none;
    overflow: visible;
  }
  .t-hotword__list li{
    margin-right: 20px;
  }
  .t-hotword__list li a{
    font-size: var(--FZ_20);
    padding-inline: 25px;
    height: 50px;
  }
  .t-hotword__list li a::after{
    width: 15px;
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}
@media screen and (max-width: 767px){
  .t-hotword__heading{
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  .t-hotword__list{
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
    gap: 18px 11px;
    padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
  }
  .t-hotword__list::-webkit-scrollbar{
    display: none;
  }

  .t-hotword__list li{
    flex: 0 0 auto;
  }
  .t-hotword__list li a{
    font-size: 14px;
    padding-inline: 18px;
    height: 33px;
  }
  .t-hotword__list li a::after{
    width: 12px;
  }
}
/* -----------------------t-about---------------------------- */
.t-about__img{
  box-shadow: var(--COMMON_BXSD);
  border: 5px solid var(--WHITE);
}
.t-about__img img{
  aspect-ratio: 495/329;
  object-fit: cover;
}
.t-about__heading{
  font-weight: 700;
}
@media screen and (min-width: 768px){
  .t-about{
    padding-inline: var(--GAP_60);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: var(--GAP_40);
  }
  .t-about::before,
  .t-about::after{
    content: "";
    display: inline-block;
    background: var(--WHITE);
    width: 100%;
    height: var(--GAP_20);
    position: absolute;
    left: 0;
    z-index: 1;
  }
  .t-about::before{
    top: 0;
  }
  .t-about::after{
    bottom: 0;
  }
  .t-about__imgs,
  .t-about__body{
    position: relative;
    z-index: 2;
  }
  .t-about__img{
    margin-bottom: var(--GAP_20);
  }
  .t-about__heading{
    font-size: var(--FZ_30);
    line-height: 2;
    margin-bottom: var(--GAP_20);
  }
  .t-about__txt{
    line-height: 2;
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px){
  .t-about{
    padding-block: var(--GENERALSEC);
  }
  .t-about__imgs{
    margin-bottom: 25px;
  }
  .t-about__img{
    position: relative;
    z-index: 1;
  }
  .t-about__heading{
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .t-about__txt{
    line-height: 1.7;
    font-size: 12px;
  }
}

/* -----------------------t-news---------------------------- */

/* -----------------------t-insta---------------------------- */
.t-insta .g-btnContainer{
    margin-top: var(--GAP_20) !important;
}
@media screen and (min-width: 768px){

}

/* -----------------------t-news---------------------------- */
.t-news__list li:not(:last-child){
  border-bottom: 1px solid var(--GRAY01);
}
.t-news__list li a{
  font-weight: 700;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
@media (hover: hover){
  .t-news__list li{
    transition: .3s;
  }
  .t-news__list li:hover{
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px){
  .t-news{
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .t-news__list li{
    padding-block: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--GAP_20);
  }
}
@media screen and (max-width: 767px){
  .t-news__list li{
    padding-block: 12px;
    display: grid;
    gap: 10px;
  }

}

/* -----------------------fs-c-productList---------------------------- */
@media screen and (max-width: 767px){
  .t-new .fs-c-productListCarousel__list__item:nth-of-type(n+10){
    display: none;
  }
  .t-sale .fs-c-productListCarousel__list__item:nth-of-type(n+10){
    display: none;
  }
}




/* プレビューヘッダー非表示 */
.fs-preview-header{
  display: none;
}


/* -----------------------t-review---------------------------- */
.t-review__list .fs-c-reviewInfo__reviewer.fs-c-reviewer {
 display: none;
}
.t-review__list .fs-c-reviewList__item__info.fs-c-reviewInfo {
 flex-direction: column-reverse;
 order: -1;
 margin-bottom: 5px;
}
.t-review__list .fs-c-reviewList__item {
 border: 1px solid #ccc;
 margin: 0 8px;
 display: flex !important;
 flex-direction: column;
 padding: var(--GAP_20);
}
.t-review__list .fs-c-reviewList__item__product.fs-c-reviewProduct {
display: contents;
}
.t-review__list .fs-c-productName__name {
 font-weight: 500;
 line-height: 1.4;
 font-size: var(--FZ_16);
}
.t-review__list dl.fs-c-reviewInfo__date dt {
 display: none;
}
.t-review__list dl.fs-c-reviewInfo__date {
 margin-left: auto;
}
.t-review__list .fs-c-reviewStars::before {
 font-size: 1.2em;
}
.t-review__list .fs-c-reviewList__item__body.fs-c-reviewBody {
 display: -webkit-box !important;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 3;
 overflow: hidden;
 font-size: var(--FZ_14);
}
.t-review__list .fs-c-productName__name {
 display: -webkit-box !important;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 1;
 overflow: hidden;
}
.t-review__list .fs-c-reviewProduct__image {
 margin-bottom: 5px;
 order: -1;
}
.t-review__list [class*="g-slickArrow--"]{
 top: 45%;
}
.t-review__list {
 --SLICK_ARROW_SIZE: 30px;
 --ICON_SLIDE_ARROW: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNSAyOSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjQ5NiAwbC43MDcuNzA3TDEuNDE0IDE0LjQ5NkwxNS4yMSAyOC4yOThsLS43MDcuNzA3TDAgMTQuNDk2TDE0LjQ5NiAweiIvPjwvc3ZnPg==");
}
.t-review__list [class*="g-slickArrow--"]::before{
 background-color: #666;
}
.t-review__list .fs-c-time {
    color: #481a1c;
}
@media screen and (min-width: 768px) {
 .t-review__list [class*="g-slickArrow--"]::before {
 mask-size: 45%;
 }
 .t-review__list .fs-c-reviwewProduct__image__image {
 width: 100%;
}
.t-review__list {
 --SLICK_ARROW_TO_BODY: -10px;
}

}
@media screen and (max-width: 767px){
.t-review__list .fs-c-reviwewProduct__image__image {
 width: 100%;
}
.t-review__list {
 --SLICK_ARROW_TO_BODY: 10px;
 --SLICK_ARROW_SIZE: 50px;
}
.t-review__list .g-slickArrow--prev{
  transform: rotate(180deg);
}
.t-review__list .g-slickArrow--next{
  transform: scale(1,-1);
}
	.t-review__list [class*="g-slickArrow--"]::before{
		--THIS_ICON: var(--ICON-arrow);
		mask-size: 40%;
	}
}