@charset "utf-8";
/* =======================
スライダー
======================== */
/* スライダー全体 */
.img-wrapper {
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
}
/* スライド3枚のグループ */
.img {
  animation: scroll-left 35s infinite linear .5s both;
  display: flex; /* スライド3枚を横並び */
  gap: 0 2px;
}
/* スライド */
.img__slide {
  width: calc(100vw / 2); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.img__slide img {
  display: block;
  width: 100%;
  
}
/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* pc 769px */
@media screen and (min-width: 769px) {
  /* スライド */
.img__slide {
  width: calc(100vw / 5); /* 3はスライドの枚数 */
}
}


/* =======================
craftman
======================== */
.section-sub-craftman  {
    padding: 0 5.33% 72px;
}

.craftman__list {
    margin-top: 64px;
}

.craftman__subTitle {
    font-family: "Zen Old Mincho";
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.5;
}

.craftman__title {
    font-family: "Zen Old Mincho";
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-top: 4px;
}

.craftman__groupTitle {
    border-bottom: 1px solid  #A6A9C1;
    padding-bottom: 12px;
}

.craftman__txt, 
.craftman__award {
    text-align: justify;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-top: 12px;
}


/* pc 769px */
@media screen and (min-width: 769px) {
  .section-sub-craftman {
    padding: 0 11.11%;
    display: flex;
    flex-wrap: wrap;
    gap: 72px 48px;
    justify-content: center;
    margin: 100px 0 120px;
  }

  .craftman__list {
    width: 47.86%;
  }

  .craftman__list {
    margin-top: 0;
  }

  .craftman__title {
    font-size: 3.2rem;
}

  .craftman__group {
    display: flex;
    gap: 0 48px;
    justify-content: center;
  }
}