@charset "utf-8";



/* ==================== t-fv ファーストビュー(codely-FP) ==================== */

.t-fv {
  position: relative;
}

.t-fv__track {
  overflow: hidden;
}

.t-fv__slide {
  position: relative;
}

.t-fv__link {
  display: block;
  text-decoration: none;
}

.t-fv__figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.t-fv__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 矢印 */
.t-fv__splide .splide__arrow {
  background: var(--c-white-op80);
  border-radius: 0;
  width: 40px;
  height: 40px;
  top: calc(50% - 10px);
  opacity: 1;
  transition: background 0.2s;
}

.t-fv__splide .splide__arrow svg {
  fill: var(--txt-c-base);
  width: 12px;
  height: 12px;
}

.t-fv__splide .splide__arrow--prev {
  left: 0px;
}

.t-fv__splide .splide__arrow--next {
  right: 0px;
}

/* hover */
@media (hover: hover) {
  .t-fv__link:hover .t-fv__figure img {
    transform: scale(1.04);
  }
  .t-fv__splide .splide__arrow:hover {
    background: var(--theme-c-sub);
  }
  .t-fv__splide .splide__arrow:hover svg {
    fill: var(--c-white);
  }
}

/* PC  */
@media screen and (min-width: 768px){
  .t-fv{
    margin-bottom: var(--spc-80);
    overflow: hidden;
  }
  .t-fv__splide,
  .t-fv__track{
    overflow: visible;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .t-fv{
    margin-bottom: 30px;
  }
  .t-fv__splide .splide__arrow {
    width: 36px;
    height: 36px;
  }
}




/* ==================== [T-NOTICE] お知らせ赤枠(kobatomoderm-FP) ==================== */
.t-notice .g-inner {
  max-width: var(--pc-maw-md);
}
.t-notice__link {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--c-red-500);
  color: var(--c-red-500);
  text-decoration: none;
}
.t-notice__icon {
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-notice-warning) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-red-500);
  aspect-ratio: 1/1;
  width: 23px;
}
.t-notice__body {
  flex: 1;
  font-weight: 500;
  color: var(--c-red-500);
}
.t-notice__arrow {
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-notice-arrow) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-red-500);
  aspect-ratio: 1/1;
  width: 23px;
}
/* hover */
@media (hover: hover) {
  .t-notice__link:hover {
    opacity: 1;
  }
  .t-notice__icon,
  .t-notice__arrow{
    transition: transform 0.3s ease;
  }
  .t-notice__link:hover .t-notice__icon{
    transform: scale(1.3);
  }
  .t-notice__link:hover .t-notice__arrow{
    transform: translateX(10px);
  }
}

/* PC */
@media screen and (min-width: 768px) {
  .t-notice {
    margin-bottom: var(--spc-50);
    max-width: 500px;
    margin-inline: auto;
  }
  .t-notice__link {
    padding: 12px 15px;
    gap: var(--spc-15);
  }
  .t-notice__icon {
    width: 23px;
  }
  .t-notice__body {
    font-size: var(--fz-16);
  }
  .t-notice__arrow {
    width: 15px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .t-notice {
    margin-bottom: 40px;
  }
  .t-notice__link {
    gap: 10px;
    padding: 13px 14px;
  }
  .t-notice__body {
    font-size: 14px;
  }
  .t-notice__icon {
    width: 23px;
  }
  .t-notice__arrow {
    width: 15px;
  }
}


/* ==================== [T-ABOUT] アバウト(kobatomoderm-FP) ==================== */
.t-about{
  display: grid;
}
.t-about__mask{
  position: relative;
  background-color: var(--theme-c-main);
}
.t-about__maskImg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.t-about__maskImg img{
  height: 100%;
  width: auto;
  object-fit: cover;
  opacity: 0.1;
}
.t-about__content{
  position: relative;
  z-index: 2;
  color: var(--c-white);
}
.t-about__enTitle{
  font-weight: 300;
}
.t-about__jaTitle{
  font-weight: 700;
}
.t-about__text{
  font-weight: 400;
}
@media screen and (min-width: 768px){
  .t-about{
    grid-template-columns: repeat(2,1fr);
  }
  .t-about__figure img{
    height: 100%;
    width: auto;
    object-fit: cover;
  }
  .t-about__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /*max-width: 450px;*/
    padding: var(--spc-40) var(--spc-50) var(--spc-50) var(--spc-50);
  }
  .t-about__enTitle{
    font-size: var(--fz-60);
  }
  .t-about__jaTitle{
    font-size: var(--fz-25);
    margin-block: var(--spc-15) var(--spc-25);
  }
  .t-about__text{
    margin-bottom: var(--spc-15);
    max-width: 600px;
  }
}
@media screen and (max-width: 767px){
  .t-about__content{
    padding: 30px;
    text-align: center;
  }
  .t-about__enTitle{
    font-size: 40px;
  }
  .t-about__jaTitle{
    font-size: 18px;
    margin-block: 10px 15px;
  }
  .t-about__text{
    margin-bottom: 15px;
    text-align: left;
    font-size: 13px;
  }
  .t-about__content .g-btn{
    margin-inline: auto;
  }
}


/* ==================== [T-VOICE] お客様の声(kobatomoderm-FP) ==================== */
.t-voice:not(:has(.fs-c-reviewList__item)){
  display: none;
}
.t-voice__listWrap {
  overflow: hidden;
}

/* レビューリストレイアウト */
.t-voice__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spc-24) var(--spc-18);
}

/* 各アイテム */
.t-voice__list .fs-c-reviewList__item {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
}

/* 商品画像エリア */
.t-voice__list .fs-c-reviewList__item__product {
  display: contents;
}
.t-voice__list .fs-c-reviewProduct {
  display: contents;
}
.t-voice__list .fs-c-productImage {
  order: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background-color: var(--c-gray-200);
}
.t-voice__list .fs-c-productImage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-voice__list .fs-c-reviewInfo {
  order: 2;
}
.t-voice__list .fs-c-reviewProduct__info {
  order: 3;
}
.t-voice__list .fs-c-productName__name {
  font-size: var(--fz-18);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* レビュワー・日付は非表示 */
.t-voice__list .fs-c-reviewer,
.t-voice__list .fs-c-reviewInfo__date {
  display: none;
}

/* 星 */
.t-voice__list .fs-c-reviewStars {
  display: block;
  color: var(--theme-c-main);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* レビュー本文 */
.t-voice__list .fs-c-reviewBody {
  order: 4;
  font-size: var(--fz-14);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {
  .t-voice .g-inner {
    max-width: var(--pc-maw-lg);
  }
  .t-voice__list {
    gap: var(--spc-20);
  }
  .t-voice__list .fs-c-reviewList__item {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .t-voice__list .fs-c-reviewProduct__info {
    min-width: 0;
    margin-block: var(--spc-10);
  }
  .t-voice__list .fs-c-reviewInfo {
    margin-block: 20px 10px;
  }
  .t-voice__list .fs-c-reviewRating {
    margin-bottom: 0;
  }
  .t-voice__list .fs-c-reviewStars {
    font-size: 20px;
  }
  .t-voice__list .fs-c-reviewBody {
    font-size: var(--fz-13);
    line-height: 1.75;
    -webkit-line-clamp: 2;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .t-voice__listWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .t-voice__listWrap::-webkit-scrollbar {
    display: none;
  }
  .t-voice__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    grid-template-columns: none;
    padding-left: var(--sp-scroll-padding-left);
    padding-right: 20px;
    width: max-content;
  }
  .t-voice__list .fs-c-reviewList__item {
    width: 248px;
    flex-shrink: 0;
    padding: 0;
  }
  .t-voice__list .fs-c-reviewInfo {
    margin-top: 10px;
  }
  .t-voice__list .fs-c-reviewStars {
    font-size: 18px;
  }
  .t-voice__list .fs-c-productName__name {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
  }
  .t-voice__list .fs-c-reviewBody {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.75;
    -webkit-line-clamp: 2;
  }
}
