@charset "utf-8";


/* ==================== KVスライダー(t-kv) ==================== */
.t-kv{
  overflow: hidden;
}
.t-kv__splide{
  visibility: visible;
}
.t-kv__slide{
  text-align: center;
}
.t-kv__slide a{
  display: block;
  text-decoration: none;
}
.t-kv__slide img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Splide ページネーション - 罫線型 */
.splide__pagination{
  position: static;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.splide__pagination__page{
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background-color: var(--txt-c-base);
  opacity: 0.3;
  margin: 0;
  border: none;
  transition: opacity .3s ease;
}
.splide__pagination__page.is-active{
  opacity: 1;
  background-color: var(--txt-c-base);
  transform: none;
}

/* PC */
@media screen and (min-width: 768px){
  .splide__pagination{
    margin-top: 10px;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .splide__pagination{
    margin-top: 5px;
  }
  .splide__pagination__page{
    width: 20px;
  }
}


/* ==================== カテゴリ2up(t-categoryNav) ==================== */
.t-categoryNav__list{
  --grid-cols-pc: 2;
  --grid-gap-pc: 20px;
  --grid-cols-sp: 1;
  --grid-gap-sp: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.t-categoryNav__link{
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--c-text-base);
  transition: transform .4s ease;
}
.t-categoryNav__link::after{
  content: "";
  display: inline-block;
  background-color: var(--c-black-op50);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.t-categoryNav__link span{
  color: var(--c-white);
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.t-categoryNav__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 520 / 364;
  transition: transform .6s ease;
}
.t-categoryNav__name{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-base);
  color: var(--c-text-base);
  letter-spacing: 0.2em;
  font-weight: 500;
  background-color: rgba(217, 217, 217, 0.4);
}

/* hover */
@media (hover: hover){
  .t-categoryNav__link:hover .t-categoryNav__img{
    transform: scale(1.05);
  }
  .t-categoryNav__link:hover,
  .t-categoryNav__link:hover img{
    opacity: 1;
  }
  .t-categoryNav__link:after{
    transition: opacity .7s ease;
  }
  .t-categoryNav__link:hover::after{
    opacity: 0.3;
  }
}

/* PC */
@media screen and (min-width: 768px){
  .t-categoryNav__name{
    font-size: var(--fz-28);
  }
  .t-categoryNav__link span{
    font-size: var(--fz-28);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .t-categoryNav__name{
    font-size: 20px;
  }
  .t-categoryNav__link span{
    font-size: 20px;
  }
}


/* ==================== About us(t-about) ==================== */
.t-about__heading{
  text-align: center;
}
.t-about__heading .g-heading__sub{
  color: var(--c-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.t-about__heading .g-heading__en{
  display: block;
  font-family: var(--ff-en);
  letter-spacing: 0.15em;
  color: var(--c-text-base);
  line-height: 1;
}
.t-about__heading .g-heading__ja{
  display: block;
  color: var(--c-text-base);
  font-weight: 400;
}
.t-about__body{
  display: flex;
  align-items: center;
}
.t-about__text p{
  line-height: 2;
  color: var(--c-text-base);
}
.t-about__img{
  margin: 0;
  background-color: var(--c-gray-line);
  overflow: hidden;
}
.t-about__img img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 364;
  object-fit: cover;
}

/* PC */
@media screen and (min-width: 768px){
  .t-about__heading{
    margin-bottom: var(--spc-50);
  }
  .t-about__heading .g-heading__sub{
    font-size: var(--fz-13);
    margin-bottom: var(--spc-25);
  }
  .t-about__heading .g-heading__en{
    font-size: var(--fz-35);
    margin-bottom: var(--spc-25);
  }
  .t-about__heading .g-heading__ja{
    font-size: var(--fz-15);
  }
  .t-about__body{
    flex-direction: row;
    gap: 40px;
  }
  .t-about__text{
    flex: 1;
  }
  .t-about__text p{
    font-size: var(--fz-15);
  }
  .t-about__img{
    flex: 1;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .t-about__heading{
    margin-bottom: 30px;
  }
  .t-about__heading .g-heading__sub{
    font-size: 12px;
    margin-bottom: 14px;
  }
  .t-about__heading .g-heading__en{
    font-size: 28px;
    margin-bottom: 14px;
  }
  .t-about__heading .g-heading__ja{
    font-size: 14px;
  }
  .t-about__body{
    flex-direction: column;
    gap: 24px;
  }
  .t-about__text p{
    font-size: 14px;
    line-height: 1.9;
  }
}


/* ==================== 事業内容について(t-business) ==================== */
.t-business{
  position: relative;
  background-color: var(--c-white);
  overflow: hidden;
}
.t-business__bg{
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.t-business__bgTrack{
  display: inline-flex;
  white-space: nowrap;
  animation: b-concept-marquee 35s linear infinite;
  will-change: transform;
}
.t-business__bgText{
  font-family: var(--ff-en);
  font-weight: 400;
  color: var(--c-brown-100);
  font-size: clamp(80px, 11vw, 160px);
  letter-spacing: 0.05em;
  padding-right: 40px;
  line-height: 1;
}
@keyframes b-concept-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* リダクトモーション尊重 */
@media (prefers-reduced-motion: reduce){
  .t-business__bgTrack{
    animation: none !important;
  }
}
.t-business__inner{
  position: relative;
  z-index: 1;
}
.t-business__heading{
  text-align: center;
}
.t-business__title{
  display: block;
  font-weight: 700;
  color: var(--c-text-base);
}
.t-business__subtitle{
  display: block;
  font-weight: 700;
  color: var(--c-text-base);
}
.t-business__lead{
  text-align: center;
  color: var(--c-text-base);
}
.t-business__list{
  --grid-cols-pc: 2;
  --grid-gap-pc: var(--spc-40);
  --grid-cols-sp: 1;
  --grid-gap-sp: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.t-business__img{
  margin: 0;
  width: 100%;
  background-color: var(--c-gray-line);
  overflow: hidden;
}
.t-business__img img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 364;
  object-fit: cover;
}
.t-business__name{
  font-family: var(--ff-en);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-text-base);
  text-align: center;
}
.t-business__desc{
  color: var(--c-text-base);
  text-align: left;
  width: 100%;
}

/* PC */
@media screen and (min-width: 768px){
  .t-business{
    margin-top: var(--sec-spc-half);
  }
  .t-business__bg{
    font-size: clamp(80px, 11vw, 160px);
    line-height: 1;
    top: 0px;
  }
  .t-business__title{
    font-size: var(--fz-28);
    margin-bottom: 10px;
  }
  .t-business__subtitle{
    font-size: var(--fz-28);
  }
  .t-business__lead{
    font-size: var(--fz-15);
    margin-top: var(--spc-30);
    margin-bottom: var(--spc-65);
    line-height: 2;
  }
  .t-business__name{
    font-size: var(--fz-28);
    margin-block: var(--spc-10) var(--spc-15);
  }
  .t-business__desc{
    font-size: var(--fz-15);
    line-height: 1.9;
    margin-bottom: var(--spc-20);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .t-business{
    padding-block: 60px;
  }
  .t-business__bg{
    font-size: clamp(40px, 16vw, 70px);
    top: 30px;
  }
  .t-business__title{
    font-size: 22px;
    margin-bottom: 8px;
  }
  .t-business__subtitle{
    font-size: 22px;
  }
  .t-business__lead{
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.9;
    text-align: left;
  }
  .t-business__name{
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
  .t-business__desc{
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
}

