@charset "utf-8";
.page_title {
  &::before {
    background: url(../img/page_title.png) no-repeat left bottom;
    background-size: cover;
  }
}
.breadcrumb {
  margin-bottom: 96px;
  @media screen and (max-width: 767px) {
    margin-bottom: 64px;
  }
}

/* ↓トップページとレイアウト同じ↓ */
.top_kodawari {
  background: url(/img/kodawari_bg2.png)no-repeat center;
  background-size: cover;
}
.top_kodawari .container {
  padding: 80px 0 96px;
  background: url(/img/kodawari_bg1.png)no-repeat center;
  background-size: contain;
  @media screen and (max-width: 767px) {
    padding: 40px 0;
    background: url(/img/kodawari_bg1_sp.png)no-repeat center;
    background-size: contain;
  }
}

.top_kodawari--subttl {
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 4.8px;
  font-weight: 700;
  font-family: 'Noto Serif JP';
}
.top_kodawari--ttl {
  text-align: center;
  color: #fff;
  font-size: 4rem;
  letter-spacing: 6px;
  margin: 32px 0 28px;
  font-family: 'Noto Serif JP';
  & + p {
    color: #fff;
    /* margin-bottom: 44px; */
  }
  @media screen and (max-width: 767px) {
    font-size: min(2.4rem, 6vw);
    letter-spacing: 2px;
    margin: 24px 0;
  }
}



.quality_block {
  padding: 80px 0;
  @media screen and (max-width: 767px) {
    padding: 64px 0;
    padding-bottom: 32px;
  }
}
.quality_art {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 64px;
  &:last-child {
    margin-bottom: 0;
  }
  figure {
    width: 100%;
    min-width: 415px;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
    margin-bottom: 56px;
    figure {
      min-width: initial;
      display: flex;
      justify-content: center;
    }
  }
}
.quality_txt {
  h3 {
    min-height: 96px;
    color: var(--dark-blue);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 2.4rem;
    letter-spacing: 4.8px;
    font-weight: 700;
    span {
      min-width: 90px;
      color: var(--sub-color);
      font-size: 6.4rem;
      font-weight: 700;
      font-family: var(--en-font);
    }
  }
  p {
    font-weight: 500;
    letter-spacing: 1.6px;
  }
  @media screen and (max-width: 767px) {
    h3 {
      gap: 10px;
      line-height: 1.5;
      span {
        font-size: 4.8rem;
        min-width: 72px;
      }
    }
  }
}