@charset "utf-8";

body {
    background-color: #3c1313;
}
/* メインビジュアルの設定 */

.looks-mainvs {
    width: 100%;
    margin: 0 auto;
    background-image: url(../img/conceptimg-bc.png);
}

.section-title h2 {
    text-align: center;
    font-size: 4rem;
    padding: 80px 0;
    font-weight: bold;
}



/* 上部メインビジュアルの設定 */
.top-box {
    height: 100vh;
    position: relative;
}

/* 写真1 */
.img1 img {
    width: 20%;
    position: absolute;
    top: 5%;
    left: 10%;
}

.img1 .text1 {
    position: absolute;
    top: 20%;
    left: 5%;
    color: #8FE0F6;
    font-family: "Lekton", monospace;
    font-size: 1.7rem;
}

/* 写真2 */
.img2 img {
    width: 11%;
    position: absolute;
    top: 45%;
    left: 25%;
}


.img2 .text2 {
    position: absolute;
    top: 40%;
    left: 20%;
    color: #0d0e0e;
    font-family: "MuseoModerno", sans-serif;
    font-size: 1.7rem;
    font-weight: bold;

}

/* 写真3 */
.img3 img {
    width: 14%;
    position: absolute;
    top: 0px;
    left: 45%;
}

.img3 .text3 {
    position: absolute;
    top: 40%;
    left: 55%;
    color: #8FE0F6;
    font-family: "Bodoni Moda", serif;
    font-size: 2rem;
}

/* 写真4 */
.img4 img {
    width: 10%;
    position: absolute;
    top: 50%;
    right: 25%;
}


/* 写真5 */
.img5 img {
    width: 15%;
    position: absolute;
    top: 10%;
    right: 10%;
}

.img5 .text5 {
    position: absolute;
    top: 6%;
    right: 5%;
    color: #060606;
    font-family: "Lacquer", system-ui;
    font-size: 1.8rem;
}


/* 下部メインビジュアルの設定 */

.top-line-img,
.bottom-line-img {
    list-style-type: none;
    display: grid;
    gap: 70px;   
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    
}
.bottom-box {
    min-height: 1000px;
}
.bottom-box img{
    min-width: 250px;
}
.top-line ul{
    display: flex;
   
}
.top-line img {
    width: 100%;
    animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
      100%{  transform: translateX(200%);
    }
}


.bottom-line ul{
    display: flex;
   
}
.bottom-line img {
    width: 100%;
    animation: scroll-right 10s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(200%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.middle-line p{
    font-size: 5rem;
    position: relative;
    width: 200%;
    top: 40px;
    left: 25%;
    overflow: hidden;
    z-index: 20;
    font-family: "MuseoModerno", sans-serif;
    font-weight: bold;

}



/* ---------------------------------- */
/* 製品カード共通スタイル */
/* ---------------------------------- */
.product-card {
    background-color: #EFEFEF;
    padding: 10px;
    width: 90%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    aspect-ratio: 2 / 3;
    max-height: 350px;
}
.product-image {

    width: 100%;
    height: 60%;
    background-color: #fff;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
}

.product-image img {

    width: 100%;
    height: 100%;

}

.product-name {
    font-size: 1rem;
    color: #333;
    padding: 5px 0;
}

.product-name-jp {
    font-size: 0.6rem;
    padding-bottom: 30px;
}

.color {
    font-size: 0.7rem;
    text-align: left;
}

.price {
    font-size: 0.8rem;
}

.bottomtext {
    display: flex;
    justify-content: space-between;

}

/* LOOK 全体の設定 */
#look1,
#look2,
#look3 {
    min-height: 1000px;
    display: flex;
    padding: 20px 150px;
}
#look1 {
    background-color: #838383;
}
#look2{
    background-color: #D9D9D9;
}
#look3 {
    background-color: #DAF1FF;
}

.title-grid h3{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.look-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 70%;
    justify-content: right;
    margin: 0 auto;
    max-width: 600px;
}
.leftside,
.rightside {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 100px auto;
    text-align: center;

}
.photo-box {
    width: 85%;
    padding: 30px;
    max-width: 600px;

}

.look1-text h3 {
    font-family: "Bodoni Moda", serif;
    font-size: 3rem;
    font-weight: bold;
    animation: text-flicker-in-glow 5s infinite linear both;

}
.look2-text h3 {
    font-family: "Lacquer", system-ui;
    font-size: 3rem;
    animation: text-flicker-in-glow 5s infinite linear both;

 }
.look3-text h3 {
    font-family: "Londrina Sketch", sans-serif;
    font-size: 3rem;
    animation: text-flicker-in-glow 5s infinite linear both;

}

@keyframes text-flicker-in-glow {
    0% {
      opacity: 1;
    }
    10% {
      opacity: 1;
      text-shadow: none;
    }
    10.1% {
      opacity: 1;
      text-shadow: none;
    }
    10.2% {
      opacity: 0;
      text-shadow: none;
    }
    20% {
      opacity: 0;
      text-shadow: none;
    }
    20.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    }
    20.6% {
      opacity: 1;
      text-shadow: none;
    }
    30% {
      opacity: 0;
      text-shadow: none;
    }
    30.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }
    30.5% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }
    30.6% {
      opacity: 0;
      text-shadow: none;
    }
    45% {
      opacity: 0;
      text-shadow: none;
    }
    45.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }
    50% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }
    55% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
    }
    55.1% {
      opacity: 0;
      text-shadow: none;
    }
    57% {
      opacity: 0;
      text-shadow: none;
    }
    57.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }
    60% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
    }
    60.1% {
      opacity: 0;
      text-shadow: none;
    }
    65% {
      opacity: 0;
      text-shadow: none;
    }
    65.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }
    75% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
    }
    75.1% {
      opacity: 0;
      text-shadow: none;
    }
    77% {
      opacity: 0;
      text-shadow: none;
    }
    77.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }
    85% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
    }
    85.1% {
      opacity: 0;
      text-shadow: none;
    }
    86% {
      opacity: 0;
      text-shadow: none;
    }
    86.1% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }
    100% {
      opacity: 1;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    }
  }
  
/* LOOK1の設定 *//* LOOK3の設定 */
.look1-text,
.look3-text {
    align-self: flex-start;
    text-align: left;
    margin: 20px 40px;
}






/* LOOK2の設定 */
.look2-text {
    align-self: flex-end;
    text-align: right;
    margin: 20px 40px;
}

/* deco-textの設定 */
.deco-text h4{
    font-size: 3.4rem;
    text-align: center;
    letter-spacing: 25px;
    padding: 40px 0;
    background-image: url(../img/conceptimg-bc.png);
    color: #ecf5fc;
    font-family: "MuseoModerno", sans-serif;
    font-weight: bold;
}