@charset "utf-8";
.t-fv{
  line-height: 1;
}
.t-fv img{
  border-radius: 10px;
}
.t-fv > li{
  border-radius: 10px;
}
/* ------------------- fv -------------------- */
@media screen and (min-width: 768px){
  .t-fvWrap{
    position: relative;
    max-width: 1700px;
    margin-inline: auto;
    overflow: hidden;
    margin-bottom: calc(var(--sec-spc) * 0.7);
  }
  .t-fv{
    width: 35%;
    margin-inline: auto;
    position: static;
  }
  .t-fv .slick-list{
    overflow: visible;
  }

  [class*="t-fv__arrow--"]{
    background: var(--c-white);
    transition: 0.1s;
    border: 1px solid transparent;
  }
    [class*="t-fv__arrow--"]::before{
    background: var(--c-blue01);
  }
  .t-fv .t-fv__arrow--prev{
    left: 2%;
    right: auto;
  }
  .t-fv .t-fv__arrow--next{
    right: 2%;
    left: auto;
  }
  
  .t-fv a{
    display: block;
    overflow: hidden;
    border-radius: 10px;
  }
  .t-fv a img{
    transition: 0.3s;
  }
}
@media (hover: hover){
  [class*="t-fv__arrow--"]:hover{
    border: 1px solid var(--c-blue01);
  }
  .t-fv a:hover{
    opacity: 1;
  }
  .t-fv a img:hover{
    opacity: 1 !important;
  }
  .t-fv a:hover img{
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767px){
  .t-fvWrap{
    margin-bottom: 50px;
  }
  .t-fv .t-fv__arrow--prev{
    left: -5px;
    right: auto;
  }
  .t-fv .t-fv__arrow--next{
    right: -5px;
    left: auto;
  }
  [class*="t-fv__arrow--"]{
    top: 45% !important;
  }
}
/* ------------------- 理念 -------------------- */
.g-philosophy{
  background: url(../images/top/g-philosophy-bg.jpg) no-repeat center center / cover;
  padding-bottom: var(--spc-40);
}

.g-philosophy__lead{
  text-align: center;
}
.g-philosophy__con{
  display: grid;
}
.g-philosophy__con li{
  border-radius: 10px;
  background: var(--c-white);
  text-align: center;
}
.g-philosophy__hd{
  font-family: var(--ff-zen-mincho);
  color: var(--c-blue01);
}
@media screen and (min-width: 768px){
  .g-philosophy__lead{
    font-size: clamp( 20px, 2vw, 32px);
    margin-bottom: var(--spc-40);
  }

  .g-philosophy__con{
    grid-template-columns: repeat(2,1fr);
    gap: var(--spc-20);
  }
  .g-philosophy__con li{
    padding-block: 20px;
  }
  .g-philosophy__hd{
    font-size: var(--fz-28);
    margin-bottom: 15px;
  }
  .g-philosophy__text{
    font-size: clamp( 11px, 1vw, 16px);
  }

  .g-philosophyPic{
    margin-top: var(--spc-60);
    width: 73%;
    margin-inline: auto;
    transform: translateX(-25px);
  }
}
@media screen and (max-width: 767px){
    .g-philosophy__lead{
    font-size: 20px;
    margin-bottom: var(--spc-40);
  }

  .g-philosophy__con{
    gap: 20px;
  }
  .g-philosophy__con li{
    padding: 15px 5px;
  }
  .g-philosophy__hd{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .g-philosophy__text{
    font-size: 13px;
  }

  .g-philosophyPic{
    margin-top: var(--spc-60);
    margin-inline: auto;
    max-width: 500px;
  }
}
/* ------------------- serivce -------------------- */
.t-service{
  background: var(--c-yellow01);
}
.t-serviceDtl__hd > span{
  display: block;
}
.t-serviceDtl__hd .upper{
  font-weight: bold;
}
.t-serviceDtl__hd .under{
  font-weight: 500;
}
.t-serviceStep > li{
  background: var(--c-white);
  text-align: center;
  position: relative;
  line-height: 1.4;
  box-shadow: var(--bxsd-default);
    font-family: var(--ff-zen-mincho);
  color: var(--c-blue01);
}
.t-serviceStep > li:first-child::before,.t-serviceStep > li:nth-child(2):before{
  content: "";
  display: inline-block;
  background: var(--arrow-blue) no-repeat center center / 100%;
  aspect-ratio: 37/50;
  position: absolute;
}


.t-serviceStep__ftHeding > span{
  display: block;
  text-align: center;
  border-bottom: 1px dashed;
  padding-bottom: 3px;
}
.t-serviceStep__ftHeding > span:first-child{
  margin-bottom: var(--spc-10);
}
.t-serviceStep__ftHeding .top{
  font-size: var(--fz-18);
}
.t-serviceStep__heding{
  border-bottom: 1px dashed;
  font-size: var(--fz-22);
}
@media screen and (min-width: 768px){
  .t-service{
    display: grid;
    grid-template-columns: 531fr 540fr;
    gap: var(--spc-25);
    padding: var(--spc-50);
  }
  .t-serviceDtl__hd{
    margin-bottom: 15px;
  }
  .t-serviceDtl__hd .upper{
    font-size: clamp( 20px, 2vw, 32px);
  }
  .t-serviceDtl__hd .under{
    font-size: var(--fz-20);
  }
  .t-serviceDtl__text{
    font-size: var(--fz-14);
  }

  .t-serviceStep{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 10px 45px;
  }
  .t-serviceStep > li{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    padding-inline: 5px;
  }
  .t-serviceStep > li:first-child{
    grid-row: span 2;
  }

  .t-serviceStep > li:first-child::before,.t-serviceStep > li:nth-child(2):before{
    width: 15px;
  }
  .t-serviceStep > li:first-child::before{
    top: 51%;
    transform: translateY(-50%);
    right: -32px;
  }
  .t-serviceStep > li:nth-child(2):before{
    right: -32px;
    bottom: -18px;
  }

  .t-serviceStep__img{
    width: 80%;
    margin: 0 auto 10px;
  }
  .t-serviceStep > li:first-child{
    flex-direction: column;
    padding-inline: var(--spc-20);
  }
  .t-serviceStep__ftHeding .top{
    font-size: clamp(0px, 1.2vw, 18px);
  }
  .t-serviceStep__ftHeding .btm{
    font-size: clamp(0px, 2vw, 30px);
  }
  .t-serviceStep__heding{
    border-bottom: 1px dashed;
    font-size: clamp(0px, 1.467vw, 22px);
  }

}
@media screen and (max-width: 767px){
  .t-service{
    padding: 25px 20px;
  }
  .t-serviceDtl{
    margin-bottom: 25px;
  }
  .t-serviceDtl__hd{
    margin-bottom: 15px;
  }
  .t-serviceDtl__hd .upper{
    font-size: 17px;
  }
  .t-serviceDtl__hd .under{
    font-size: 15px;
  }
  .t-serviceDtl__text{
    font-size: 13px;
  }

  .t-serviceStep{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
  }
  .t-serviceStep > li{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 5px;
    font-size: 15px;
  }
  .t-serviceStep > li:first-child{
    grid-column: span 2;
  }

  .t-serviceStep > li:first-child::before,.t-serviceStep > li:nth-child(2):before{
    width: 10px;
  }
  .t-serviceStep > li:first-child::before{
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    bottom: -17px;
  }
  .t-serviceStep > li:nth-child(2):before{
    bottom: -17px;
    right: -10px;
    transform: rotate(90deg);
  }

  .t-serviceStep > li{
    padding: 30px 10px;
  }
  .t-serviceStep > li:first-child{
    display: grid;
    grid-template-columns: 100px auto;
    align-items: center;
    justify-content: center;
    padding-inline: 30px;
    gap: 15px;
  }
  .t-serviceStep__ftHeding .top{
    font-size: 15px;
    width: fit-content;
  }
  .t-serviceStep__ftHeding .btm{
    font-size:30px;
    width: fit-content;
  }
  .t-serviceStep__heding{
    border-bottom: 1px dashed;
    font-size: 16px;
    padding-bottom: 3px;
  }
}
/* ------------------- t-kokuu（オリジナル仏壇・虚空厨子） -------------------- */
.t-kokuuPic img{
  border-radius: 35px;
}
.t-kokuuBody__ttl{
  font-weight: bold;
  font-size: var(--fz-32);
  color: var(--c-white);
}
.t-kokuuBody__dtl{
  color: var(--c-white);
}
.t-kokuuBody__lead{
  font-size: var(--fz-24);
  font-weight: 500;
}
@media screen and (min-width: 901px){
  .t-kokuu{
    position: relative;
  }
  .t-kokuu::before{
    content: "";
    display: inline-block;
    background: var(--c-blue01);
    height: 87%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px){
  .t-kokuu{
    padding-block: 25px;
    background: var(--c-blue01);
  }
}
@media screen and (min-width: 768px){
  .t-kokuuInner{
    display: grid;
    grid-template-columns: 450fr 616fr;
    gap: clamp( 50px, 8.125vw, 130px);
    align-items: center;
  }
  .t-kokuuPic{
    display: grid;
    grid-template-columns: 291fr 146fr;
    gap: 13px;
  }
  .t-kokuuPic >li:first-child{
    grid-column: span 2;
  }

  .t-kokuuBody{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp( 30px, 5vw, 80px);
  }
  .t-kokuuBody__ttl{
      -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
    letter-spacing: 0.25em;
  }
  .t-kokuuBody__lead{
    margin-bottom: var(--spc-20);
  }
}
@media screen and (max-width: 767px){
  .t-kokuuPic .slick-list{
    padding-right: 30%;
    overflow: visible;
  }
  .t-kokuu{
    background: var(--c-blue01);
    padding-block: 40px;
  }
  .t-kokuuPic{
    margin-bottom: 20px;
  }
  .t-kokuuBody__ttl{
    margin-bottom: 15px;
  }
  .t-kokuuBody__lead{
    margin-bottom: 8px;
  }
}
/* ------------------- t-orderMade（オーダーメイド仏壇） -------------------- */
.t-orderMadeLead{
  margin-bottom: var(--spc-50);
  text-align: center;
}
.t-orderMadeList{
  display: grid;
}
.t-orderMadeList >li >a{
  display: block;
}
.t-orderMadeList >li > a img{
  border-radius: 10px;
}
.t-orderMadeList__ttl{
  font-weight: bold;
}
@media screen and (min-width: 768px){
  .t-orderMadeList{
    grid-template-columns: repeat(3,1fr);
    gap: var(--spc-20);
  }
  .t-orderMadeList__ttl{
    font-size: var(--fz-18);
    margin-block: 10px 15px;
  }
  .t-orderMadeList__text{
    font-size: var(--fz-14);
  }
}
@media screen and (max-width: 767px){
  .t-orderMadeList{
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
  }
  .t-orderMadeList__ttl{
    font-size: 13px;
    margin-block: 10px 15px;
  }
  .t-orderMadeList__text{
    font-size: 11px;
  }
}
/* ------------------- t-room（SHOWROOM） -------------------- */
.t-room{
  overflow: hidden;
}
.t-roomHd{
  margin-bottom: var(--spc-50);
  text-align: center;
}
.t-roomHd > span{
  display: block;
}
.t-roomHd__en{
  font-weight: 500;
}
.t-roomHd__ja{
  font-weight: bold;
  font-size: var(--fz-24);
}
.t-roomHd::before{
  display: none !important;
  content: "";
  display: block;
  background: url(../images/common/g-hedingEnJa-deco.png) no-repeat center center / 100%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  margin-bottom: 5px;
}

.t-roomCon__pic img{
  border-radius: 20px;
}
.t-roomCon__adress__post{
  font-weight: bold;
}
.t-roomCon__adress__area{
  font-weight: bold;
}
.t-roomCon__adress__google{
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid;
  padding: 2px 5px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0em;
  background: var(--c-white);
  transition: 0.3s;
}
.t-roomCon__adress__google::before{
  content: "";
  display: inline-block;
  background: var(--google-map) no-repeat center center / 100%;
  aspect-ratio: 17/25;
}
.t-roomCon__adress__google span{
  display: block;
  transform: translateY(-1.5px);
}

.t-roomInsta{
  background: var(--c-white);
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
}

.t-roomInstaList a{
  display: block;
}
.t-roomInstaList img{
  border-radius: 10px;
}
@media screen and (min-width: 901px){
    .t-roomCon{
    display: grid;
    grid-template-columns: 402fr 550fr;
    gap: var(--spc-50);
    align-items: center;
    margin-bottom: var(--spc-50);
  }
}
@media screen and (min-width: 768px) and (max-width: 900px){
  .t-roomCon{
    display: grid;
    gap: var(--spc-50);
    margin-bottom: var(--spc-50);
  }
  .t-roomCon__pic{
    max-width: 300px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px){
  .t-roomInner{
    background: var(--c-yellow01);
    padding: clamp( 25px, 6.25vw, 100px);
  }
  .t-roomHd__en{
    font-size: clamp( 40px, 4.2vw, 60px);
  }
  .t-roomHd::before{
    width: 40px;
  }

  .t-roomCon__adress{
    display: flex;
    align-items: baseline;
    gap: var(--spc-25);
    margin-top: var(--spc-25);
  }
  .t-roomCon__adressBox{
    display: contents;
  }
  .t-roomCon__adress__google::before{
    width: 10px;
  }

  .t-roomInsta{
    width: clamp( 400px, 31.25vw, 500px);
    font-size: var(--fz-28);
    padding-block: 40px 150px;
    margin-inline: auto;
  }

  .t-roomInstaList{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: var(--spc-20);
    margin-top: -115px;
  }
}
@media (hover: hover){
  .t-roomCon__adress__google:hover{
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767px){
  .t-room{
    background: var(--c-yellow01);
    padding-block: 40px;
  }
  .t-roomHd__en{
    font-size: 40px;
  }
  .t-roomHd::before{
    width: 30px;
  }

  .t-roomCon__pic{
    margin-bottom: 10px;
  }
  .t-roomCon__adress{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    margin-block: 20px;
  }
  .t-roomCon__adress__google::before{
    width: 10px;
  }

  .t-roomInsta{
    width: 280px;
    font-size: 18px;
    padding-block: 18px 100px;
    margin-inline: auto;
  }
  .t-roomInstaList{
    margin-top: -80px;
  }
  .t-roomInstaList .slick-slide{
    min-width: 120px;
    max-width: 120px;
  }
  .t-roomInstaList .slick-list{
    overflow: visible;
  }
}
/* ------------------- t-contactwrap（お問い合わせ） -------------------- */
.t-contactLine__pic img{
  border-radius: 20px;
}
.t-contactLine__text{
  letter-spacing: 0em;
  text-align: center;
}
.t-contactLine__text__upper{
  color: var(--c-green01);
  font-weight: bold;
  margin-bottom: 10px;
}
.t-contactLine__text__lower{
  background: var(--c-white);
  font-weight: bold;
  color: var(--c-green01);
  text-align: center;
  border-radius: 50px;
}

.t-contactTel__upper{
  font-weight: bold;
}
.t-contactTel__upper::before{
  content: "";
  display: inline-block;
  background: url(../images/common/t-contactTel-deco.svg) no-repeat center center / 100%;
  aspect-ratio: 131/75;
}
.t-contactwrap > a{
  background-color: var(--c-yellow01);
  padding: 20px;
}
@media screen and (min-width: 768px){
  .t-contactwrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spc-40);
  }
  .t-contactwrap > div{
    height: clamp( 100px, 9.6vw, 150px);
    padding-inline: var(--spc-25);
    background: var(--c-yellow01);
  }

  .t-contactLine{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .t-contactLine__pic,.t-contactLine__qr{
    width: clamp( 5px, 6.5vw, 104px);
  }
  .t-contactLine__text{
    margin-inline: 10px;
    flex: 1;
  }
  .t-contactLine__text__upper{
    font-size: var(--fz-18);
  }
  .t-contactLine__text__lower{
    font-size: var(--fz-16);
    padding: 3px 15px;
  }

  .t-contactTel{
    display: grid;
    place-content: center;
  }
  .t-contactTel__upper{
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .t-contactTel__upper{
    font-size: var(--fz-35);
  }
  .t-contactTel__upper::before{
    width: clamp( 35px, 4.375vw, 70px);
  }
  .t-contactTel__lower{
    font-size: clamp( 11px, 1.1vw, 17px);
    text-align: center;
  }
}
@media screen and (max-width: 767px){
  .t-contactwrap > div{
    padding: 20px;
    background: var(--c-yellow01);
  }
  .t-contactLine{
    margin-bottom: 20px;
  }
  .t-contactLine{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .t-contactLine__pic{
    width: 64px;
  }
  .t-contactLine__text__upper{
    font-size: 18px;
    margin-bottom: 5px;
  }
  .t-contactLine__text__lower{
    font-size: 16px;
    padding: 5px 20px;
  }
  
  .t-contactTel{
    display: grid;
    place-content: center;
    gap: 3px;
  }
  .t-contactTel__upper{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 30px;
  }
  .t-contactTel__upper::before{
    width: 60px;
  }
  .t-contactTel__lower{
    font-size: 15px;
  }
}
/* ------------------- t-banner2（トップバナー2） -------------------- */
.t-banner2{
  display: grid;
  gap: var(--spc-40);
}
@media screen and (min-width: 768px){
  .t-banner2{
    grid-template-columns: repeat(2,1fr);
  }
}
/* ------------------- t-banner6（トップバナー6） -------------------- */
.t-banner6{
  display: grid;
  gap: var(--spc-20);
}
@media screen and (min-width: 768px){
  .t-banner6{
    grid-template-columns: repeat(3,1fr);
  }
}
@media screen and (max-width: 767px){
  .t-banner6{
    grid-template-columns: repeat(2,1fr);
  }
}
/* ------------------- ブログ -------------------- */
.wp-archive__list--blog{
  display: grid;
}

/* ------------------- お知らせ -------------------- */
.g-news{
  background: var(--c-yellow01);
}
.g-news__con__heading .g-heading::before{
  display: none;
}
.g-news__con__heading .g-heading .g-heading__ja{
  margin-top: 0;
}
.g-news__con{
  width: var(--inner-w);
  margin-inline: auto;
  max-width: 800px;
  background: var(--c-white);
}
@media screen and (min-width: 768px){
  .g-news__con{
    padding: var(--spc-50) var(--spc-100);
    border-radius: 50px;
  }
}
@media screen and (max-width: 767px){
  .g-news__con{
    padding: 25px 15px;
    border-radius: 25px;
  }
}

/* ------------------- お客様の声 -------------------- */
.t-voice{
  background: var(--c-yellow01);
  overflow: hidden;
}
.fs-c-reviewProduct__info{
  display: none;
}
.fs-c-reviewList__item__info.fs-c-reviewInfo{
  display: none;
}
.fs-c-reviewList__item__body.fs-c-reviewBody{
  background: var(--c-white);
  border-radius: 20px 20px 0 0;
  font-weight: bold;
  line-height: 1.4;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  z-index: -1;
  overflow: hidden;
}
.fs-c-reviewList__item{
  position: relative;
}
.fs-c-reviewList__item__body.fs-c-reviewBody::after{
  content: "";
  display: inline-block;
  background: var(--c-white);
  width: 100%;
  height: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 0 0 20px 20px;
}
.fs-c-reviewProduct__image.fs-c-productImage img{
  display: block;
  aspect-ratio: initial !important;
  object-fit: cover;
  width: 70%;
  margin-inline: auto;
  border-radius: 10px;
}
.t-voice .fs-c-productImage > a{
  border: none;
  aspect-ratio: initial !important;
}

.t-voice .slick-list{
  overflow: visible;
}
@media screen and (min-width: 768px){
  .fs-c-reviewList__item__body.fs-c-reviewBody{
    padding: 65px var(--spc-20) 0px;
    margin-top: -50px;
    font-size: var(--fz-15);
  }
  .t-voice .g-btnContainer{
    margin-top: var(--spc-70);
  }
}
@media screen and (max-width: 767px){
  .fs-c-reviewList__item__body.fs-c-reviewBody{
    padding: 65px var(--spc-20) 0px;
    margin-top: -50px;
  }
  .fs-c-reviewList__item__body.fs-c-reviewBody{
    font-size: 14px;
    line-height: 1.2;
  }
  .t-voice .g-slickArrow--prev{
    left: -15px;
  }
  .t-voice .g-slickArrow--next{
    right: -15px;
  }
  .t-voice .g-btnContainer{
    margin-top: 50px;
  }
}

/* お客様の声 - 調整 */
.t-voice .fs-c-productImage > a{
  background: none;
  aspect-ratio: initial;
}

/* 調整用 */
.fs-l-main > :last-child{
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px){
  .g-newProduct .g-fsProductList .slick-list,
  .g-reUse .g-fsProductList .slick-list{
    padding-left: 0 !important;
  }
  .g-newProduct .g-slickArrow--prev,
  .g-reUse .g-slickArrow--prev{
    left: -10px !important;
  }
  .g-linkArrowContainer{
    margin-right: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px){
  #fs_Top .g-clm2layoutWrap{
    display: block;
  }
  #fs_Top .g-sidebarWrap{
    display: none;
  }
}
@media screen and (min-width: 768px){
  .g-linkArrowContainer{
    margin-right: 7px;
  }
}

/* 任意商品 - pc調整 */
.fs-c-productImage > a{
  background: var(--c-white);
  overflow: hidden;
}
.fs-c-productImage > a img{
  transition: 0.3s;
}
@media screen and (min-width: 768px){
  .g-clm2layoutMain .slick-track{
    gap: 10px !important;
  }
  .g-clm2layoutMain .g-fsProductList .slick-slide{
    flex: 1;
  }
  .g-clm2layoutMain .slick-track::before{
    display: none;
  }
}
@media (hover: hover){
  .fs-c-productImage > a:hover img{
    transform: scale(1.05);
    opacity: 1 !important;
  }
  .fs-c-productImage > a:hover{
    opacity: 1 !important;
  }
}

/* ---任意商品--- */
.fs-c-productListItem__imageContainer {
    position: relative;
}

.fs-c-productListItem__control{
	margin-top: 0 !important;
}
/* 再入荷お知らせ */
.fs-c-button--subscribeToArrivalNotice--list{
	display: none;
}
/* お気に入り */
.fs-c-productListItem__control .fs-c-button--particular{
	-webkit-appearance: none;
	border: none;
	background-color: var(--c-white);
	border-radius: 50%;
	aspect-ratio: 1/1;
	width: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 6px;
	right: 6px;
}
.fs-c-productListItem__control .fs-c-button--particular::before{
	content: "";
	display: inline-block;
	--this-mask: var(--data-icon-product-wish) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	aspect-ratio: 1/1;
	width: 60%;
}
.fs-c-productListItem__control .fs-c-button--removeFromWishList--icon::before{
	background-color: var(--c-orange01);
}
.fs-c-productListItem__control .fs-c-button--addToWishList--icon::before{
	background-color: var(--c-gray-300);
}
.fs-c-productListItem__control .fs-c-button--particular .fs-c-button__label{
	font-size: 0;
}
/* 詳細を見る */
.fs-c-productListItem__control .fs-c-button--viewProductDetail{
	display: none !important;
}
/* カートに入れる */
.fs-c-productListItem__control .fs-c-button--addToCart--list{
	display: none;
}

@media screen and (min-width: 768px){
.t-seleReco [class*="g-fsProductList__arrow"]{
  top: 35% !important;
}
}



/* 調整 */
@media screen and (min-width: 768px){
  .g-fsProductList--ninni.g-fsProductList--butudann .fs-c-productListCarousel__list{
    width: auto;
  }
}
@media screen and (max-width: 767px){
  .g-fsProductList.g-fsProductList--ninni.g-fsProductList--butudann{
    width: auto;
  }
}



















