@charset "utf-8";
/* 定義・共通パーツは ../global.cssに記載 */


/* 見出し */
.allparts-container .el-heading{
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: 200%;
  font-weight: bold;
  @container allparts-container-wrapper (max-width: 600px) {
  font-size: 175%;
  }
}

/* FV -------------------- */
.allparts-container .sec-fv{
  padding-block: 0;
}

.sec-fv .fv-image{
  background-color: var(--color-black);
  padding-bottom: 1rem;
  & img {
    width: 235px;
    height: auto;
  }
}

.sec-fv .catch-box{
  margin-block: 2.5rem 0;
  & h2{ 
    font-family: "Shippori Mincho", serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 300%;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.05em;
    word-break: auto-phrase;
  }
  @container allparts-container-wrapper (max-width: 800px) {
    & h2{ 
      font-size: 230%;
    }
  }
  @container allparts-container-wrapper (max-width: 414px) {
    & h2{ 
      font-size: 200%;
    }
  }
}


/* Product -------------------- */
.sec-product .product-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  & li {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 1rem;
  }
  & > li:nth-child(even){
    flex-direction: row;
  }
  @container allparts-container-wrapper (max-width: 960px) {
    max-width: 600px;
    margin-inline: auto;
    & > li,
    & > li:nth-child(even) {
      flex-direction: column-reverse;
    }
  }
}

.sec-product .image-block {
  width: 50%;
  & img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
  }
  @container allparts-container-wrapper (max-width: 960px) {
    width: 100%;
  }
}
.product-list .bodys img {
  aspect-ratio: 7 / 6;
  object-fit: cover;
}
.product-list .necks img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.sec-product .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding-inline: var(--pdin-common);
  & p + .ui-btncta {
    margin-top: 1.5rem;
    min-width: 45%;
  }
}

.sec-product .sub-heading{
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 200%;
  font-weight: bold;
@container allparts-container-wrapper (max-width: 960px) {
  font-size: 150%;
}
  & span {
    display: inline-block;
    font-weight: normal;
    font-size: 65%;
    word-break: auto-phrase;
  }
}

.sec-product .cta-wrap {
  & .l-category-title {
    font-size: 120%;
    position: relative;
    padding: 0 1rem;
    text-align: center;
    margin: 1rem 0;
    &::before {
      position: absolute;
      top: calc(50% - 1px);
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      background: var(--color-black);
    }
    & span {
      position: relative;
      padding: 0 1em;
      background: var(--color-primary);
    }
  }
  @container allparts-container-wrapper (max-width: 800px) {
    & .l-category-title {
      font-size: 110%;
    }
  }
  & .cta-block {
    display: flex;
    gap: .5rem 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  & .ui-btncta {
    width: calc((100% - 1.5rem) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-break: auto-phrase;
  }
@container allparts-container-wrapper (max-width: 480px) {
  & .ui-btncta {
    min-width: 90%;
    display: inline;
  }
}
}

.sec-product .cta-wrap.cta-column {
  display: flex;
  gap: 1.5rem;
  & > div {
    width: calc((100% - 1.5rem) / 2);
  }
  & .ui-btncta {
    width: 100%;
  }
  @container allparts-container-wrapper (max-width: 800px) {
    flex-direction: column;
    & > div {
      width: 100%;
    }
    & .ui-btncta {
      width: 45%;
    }
  }
}