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

/* （このページの）element -------------------- */
.allparts-container{
  --color-badass: #F26549;
}

/* 見出し */
.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-badass);
}

.sec-fv .catch-box{
  margin-block: 3rem;
  & 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;
  }
@container allparts-container-wrapper (max-width: 800px) {
  & h2{ 
    font-size: 250%;
  }
}
@container allparts-container-wrapper (max-width: 414px) {
  & h2{ 
    font-size: 200%;
  }
}
}

.sec-fv .unit-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-block: 2rem;
  padding-inline: var(--pdin-common);
  padding-block: 2rem;
  background-color: var(--color-white);
@container allparts-container-wrapper (max-width: 800px) {
  flex-direction: column-reverse;
}
}

.sec-fv .text-block{
  flex: 1;
}

.sec-fv .heading{
  margin-bottom: 1rem;
  font-size: 150%;
  font-weight: bold;
  text-transform: uppercase;
}

.sec-fv .image-block{
  width: 350px;
  max-width: 100%;
}

/* Product -------------------- */
/* GUITAR HARDWARE */
.sec-product.guitar-hardware .product-list{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  & > li{
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    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.guitar-hardware .movie-block{
  width: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  & > .ui-movie-block{
    width: 400px;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto; 
  }
@container allparts-container-wrapper (max-width: 960px) {
  width: 100%;
  aspect-ratio: 16/9;
}
}

/* BASS HARDWARE */
.sec-product.bass-hardware .product-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
@container allparts-container-wrapper (max-width: 960px) {
  grid-template-columns: 100%;
  max-width: 600px;
  margin-inline: auto;
}
}

.sec-product.sec-product.bass-hardware .movie-block{
  overflow: hidden;
  border-radius: 1rem;
}

/* 共通 */
.sec-product .text-block{
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-inline: var(--pdin-common);
  padding-block: 2rem;
  border-radius: 1rem;
  background: no-repeat center / cover;
  overflow: hidden;
  color: var(--color-white);
  &::before{
    content: "";
    position: absolute;
    inset: 0;             
    background: rgba(0,0,0,.7);
  }
  > *{
  position: relative;
  z-index: 1;
  }
  &.gt-bg-01{background-image: url(../img/gt-bg-01.jpg);}
  &.gt-bg-02{background-image: url(../img/gt-bg-02.jpg);}
  &.gt-bg-03{background-image: url(../img/gt-bg-03.jpg);}
  &.gt-bg-04{background-image: url(../img/gt-bg-04.jpg);}
  &.ba-bg-01{background-image: url(../img/ba-bg-01.jpg);}
  &.ba-bg-02{background-image: url(../img/ba-bg-02.jpg);}
  &.ba-bg-03{background-image: url(../img/ba-bg-03.jpg);}

@container allparts-container-wrapper (max-width: 960px) {
  margin-bottom: 3rem;
}
}

.sec-product .sub-heading{
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 200%;
@container allparts-container-wrapper (max-width: 960px) {
  font-size: 150%;
}
}

.sec-product .ui-btncta{
  margin-top: 1rem;
  min-width: 50%;
  background-color: var(--color-white);
  color: var(--color-black);
  font-weight: bold;
}