@charset "UTF-8";

body {
    padding: 0;
    margin: 0;
    background-color: #fcd4d8;
    font-family: 'Noto serif JP', ;
}

.eyeshadow-top {
    position: relative;
    text-align: center;
}
.eyeshadow-top img {
    width: 100%;
    object-fit: cover;
    height: 750px;
}
.eyeshadow-text h2{
   margin-top: -300px;
}
.eyeshadow-header {
    position: absolute;
    top: 65%;
    right: 45%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 40px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.eyeshadow-description {
    font-size: 20px;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 200px;
    line-height: 40px;
}
.eyeshadow-variation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 300px;
}
.eyeshadow-variation img {
   width: 15%;
   margin: 0 60px;
   transition: transform 0.2s ease;
}
.eyeshadow-variation img:hover {
    transform: scale(1.1);
}

.product-card {
    background: #fff;
    width: 300px;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}
.product-card:hover {
    opacity: 0.7;
}
.product-card img {
    width: 100%;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.fade-up {
    opacity: 0;
    transform: translateY(20px) ;
    transition: opacity 1.2s ease-out, transform 1s ease;
}
.fade-up.visible{
    opacity: 1;
    transform: translateY(0);    
}


.product-section {
    text-align: center;
    margin-top: 170px;
}
.product-title {
     color: rgb(90, 90, 90);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 0 auto;
   align-items: center;
   gap: 50px;
   padding: 50px;
}
.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}
.product-item img {
    width: 100%;
    display: block;
    transition: 0.3s ease;
    margin: 0 auto;
}

.product-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
   
}
.product-item:hover img {
    filter: brightness(50%);
}
.product-item:hover .overlay {
    opacity: 1;
}


@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    80% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.product-card {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.product-card:hover {
    opacity: 0.7 !important;
    transition: opacity 0.3s ease;
}
.product-card.show {
   opacity: 1;
   transform: scale(1);
   animation: popIn 0.6s ease-out forwards;
}

@media screen and (max-width: 480px) {
  
  .eyeshadow-top {
    margin-bottom: 0;
  }
    .eyeshadow-top img {
    height: auto;
    margin-bottom: 0;
    }
   
    .eyeshadow-text {
        top: auto;
        position: static;
        text-align: center;
    }
    .eyeshadow-description {
        font-size: 8px ;
        line-height: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .eyeshadow-variation {
    margin-top: 40px !important;
}
.eyeshadow-variation img {
   width: 20%;
}
.eyeshadow-header {
    right: 38%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 12px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-size: 12px;
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.product-section {
    margin-top: 100px;
    font-size: 8px;
}
.product-card {
    max-width: 70px;
    padding: 20px 50px;
}
.product-card img {
    width: 100%;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 30px;
   
   
    
}
.product-name {
    font-size: 10px;
}
.product-price {
    font-size: 10px;
} 
}

@media screen and (min-width:480px) and (max-width: 768px) {
  
  .eyeshadow-top {
    margin-bottom: 0;
  }
    .eyeshadow-top img {
    height: auto;
    margin-bottom: 0;
    }
    .eyeshadow-text {
        top: auto;
        position: static;
        text-align: center;
    }
    .eyeshadow-description {
        font-size: 8px ;
        line-height: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .eyeshadow-variation {
    margin-top: 40px !important;
}
.eyeshadow-variation img {
   width: 20%;
}
.eyeshadow-header {
    right: 35%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 20px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-size: 20px;
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.product-section {
    margin-top: 100px;
    font-size: 10px;
}
.product-card {
    max-width: 100px;
    padding: 20px 40px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 50px;
   
   
    
}
.product-name {
    font-size: 10px;
}
.product-price {
    font-size: 10px;
} 
}

@media screen and (min-width:769px) and (max-width: 1023px) {
  
  .eyeshadow-top {
    margin-bottom: 0;
  }
    .eyeshadow-top img {
    height: auto;
    margin-bottom: 0;
    }
   
    .eyeshadow-text {
        top: auto;
        position: static;
        text-align: center;
    }
    .eyeshadow-description {
        font-size: 8px ;
        line-height: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .eyeshadow-variation {
    margin-top: 40px !important;
}
.eyeshadow-variation img {
   width: 20%;
}
.eyeshadow-header {
    right: 43%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 20px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-size: 20px;
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.product-section {
    margin-top: 100px;
    font-size: 10px;
}
.product-card {
    max-width: 100px;
    padding: 20px 40px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 100px;
   
   
    
}
.product-name {
    font-size: 10px;
}
.product-price {
    font-size: 10px;
} 
}


@media screen and (min-width:1024px){
  
  .eyeshadow-top {
    margin-bottom: 0;
  }
    .eyeshadow-top img {
    height: auto;
    margin-bottom: 0;
    }
   
    .eyeshadow-text {
        top: auto;
        position: static;
        text-align: center;
    }
    .eyeshadow-description {
        font-size: 10px ;
        line-height: 20px;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .eyeshadow-variation {
    margin-top: 40px !important;
}
.eyeshadow-variation img {
   width: 20%;
}
.eyeshadow-heading {
    right: 43%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 20px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-size: 20px;
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.product-section {
    margin-top: 100px;
    font-size: 15px;
}
.product-card {
    max-width: 100px;
    padding: 20px 40px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 50px;
   
   
    
}
.product-name {
    font-size: 10px;
}
.product-price {
    font-size: 10px;
} 
}


@media screen and (min-width:1200px){
  
  .eyeshadow-top {
    margin-bottom: 0;
  }
    .eyeshadow-top img {
    height: auto;
    margin-bottom: 0;
    }
   
    .eyeshadow-text {
        top: auto;
        position: static;
        text-align: center;
    }
    .eyeshadow-description {
        font-size: 10px ;
        line-height: 20px;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .eyeshadow-variation {
    margin-top: 40px !important;
}
.eyeshadow-variation img {
   width: 20%;
}
.eyeshadow-header {
    right: 43%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 20px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-size: 20px;
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.product-section {
    margin-top: 100px;
    font-size: 15px;
}
.product-card {
    max-width: 100px;
    padding: 20px 40px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 100px;
   
   
    
}
.product-name {
    font-size: 10px;
}
.product-price {
    font-size: 10px;
} 
}


@media screen and (min-width:1440px){
  
  .eyeshadow-top {
    margin-bottom: 0;
  }
    .eyeshadow-top img {
    height: 800px;
    margin-bottom: 0;
    }
   
    .eyeshadow-text {
        top: auto;
        position: static;
        text-align: center;
    }
    .eyeshadow-description {
        font-size: 16px ;
        line-height: 30px;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .eyeshadow-variation {
    margin-top: 40px !important;
}
.eyeshadow-variation img {
   width: 20%;
}
.eyeshadow-header {
    right: 45%;
    transform: translateY(-50%);
}
.eyeshadow-header h2 {
    font-size: 30px;
    color: rgb(90, 90, 90);
    margin-bottom: -10px;
}
.eyeshadow-header h1 {
    font-size: 30px;
    font-weight: 300;
    color: rgb(90, 90, 90);
}
.product-section {
    margin-top: 100px;
    font-size: 15px;
}
.product-card {
    max-width: 200px;
    padding: 20px 40px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 80px;
   
   
    
}
.product-name {
    font-size: 12px;
}
.product-price {
    font-size: 12px;
} 
}






























