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

/* （このページの）element -------------------- */
/* .allparts-container{
 
} */

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

.sec-fv .fv-image{
  background-color: var(--color-black);
  & > img{
    width: 100%;
    max-width: 400px;
  }
}

.sec-fv .heading-g{
  margin-top: 3rem;
  & > *{
    font-family: "Shippori Mincho", serif;
    width: fit-content;
    margin-inline: auto;
    font-weight: 600;
    letter-spacing: 0.05em;
  }  
  & > P{
    font-size: 175%;    
  }  
  & > h2{
    font-size: 250%;
  }
@container allparts-container-wrapper (max-width: 880px) {
  & > P{
    font-size: 150%;    
  }  
  & > h2{
    font-size: 200%;
  }
}
@container allparts-container-wrapper (max-width: 600px) {
  & > P{
    font-size: clamp(1rem, 125%, 4.4cqw);    
  }  
  & > h2{
    font-size: 150%;
  }
}
@container allparts-container-wrapper (max-width: 450px) {
  & > *{
    margin-inline: 0;
  }
}
}

/* 創設者からのメッセージ -------------------- */
.sec-message .founder-box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  & > figure{
    width: calc((100% - 1rem * 2)/3);
    border-radius: 1rem;
  }
@container allparts-container-wrapper (max-width: 450px) {
  & > figure{
    width: calc((100% - 1rem)/2);
  }
}
}

.sec-message .text-container{
  margin-block: 1.5rem;
}

.sec-message .heading{
  margin-bottom: 1rem;
  font-size: 150%;
  font-weight: bold;
}

/* Product -------------------- */
.allparts-container .sec-product{
  padding-top: 0;
}

/* ピックアップ */
.sec-product .pickup-list{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  & > li{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    background-color: var(--color-white);
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    align-items: center;
  }
  & > li:nth-child(even){
    flex-direction: row-reverse;
  }

  & .text-block{
    flex: 1;
  }

  & .image-block{
    width: 35%;
    margin-inline: auto;
  }
@container allparts-container-wrapper (max-width: 768px) {
  & > li,
  & > li:nth-child(even){
    flex-direction: column-reverse;
  }
  & .image-block{
    width: 80%;
    max-width: 280px;
  }
}
}

.sec-product .heading-g{
  font-family: "Shippori Mincho", serif;
  margin-bottom: 1rem;
  & > *{
    font-weight: bold;
  }
  & > h2{
    font-size: 125%;
  }
  & > p{
    font-size: 150%;
  }
@container allparts-container-wrapper (max-width: 450px) {
  & > h2{
    font-size: 112%;
  }
  & > p{
    font-size: 125%;
  }
}
}

.sec-product .sub-heading{
  display: flex;
  gap: .25rem;
  margin-bottom: .25rem;
  font-weight: bold;
  &::before{content: "<";}
  &::after{content: ">";}
}

.sec-product .feature-list{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-block: 1.5rem;
}


/* ギター */
.sec-product .guitar-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-block: 3rem;
  & > li{
    display: flex;
    flex-direction: column-reverse;
    border-radius: 1rem;
    background-color: var(--color-white);
    overflow: hidden;
  }
  & .text-block{
    position: relative;
    flex: 1;
    padding: 1rem;
    padding-bottom: 3.5rem;
  }
  & .cta-block{
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    & > *{
      white-space: nowrap;
    }
  }
  & .image-block{
    background-color: var(--color-black);
    & > img{
      width: 100%;
      max-width: 400px;
    }
  }
@container allparts-container-wrapper (max-width: 768px) {
  display: flex;
  flex-direction: column;
}
}

.sec-product .heading{
  margin-bottom: .5rem;
  font-size: 125%;
  font-weight: bold;
}

.sec-product .spec-block{
  margin-block: 1.5rem;
}

.sec-product .heading-spec{
  margin-bottom: .5rem;
  padding-block: 2px;
  padding-inline: .5rem;
  background-color: var(--color-gray);
  color: var(--color-white);
  font-size: 112%;
}

.sec-product .spec-list{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem 0;
  & > dt{font-weight: bold;}
  & > dd::before{content: "：";}
}