html {
    font-size: 100%;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

:root {
    --ff-main: "M PLUS 2", system-ui, sans-serif;
}

img {
    width: 100%;
}

ul {
    list-style: none;

}

a {
    text-decoration: none;
}

/* body */
body {
    background: #fff;


}





/* main */
main {
    padding-top: 150px;
}

.wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.inner {
    max-width: 1300px;
    margin: 0 auto;
}

.store-hero {
    text-align: center;
    color: #222
}

.sp-only {
    display: none;
}

.accent {
    color: #4fc3d8;
    padding: 0px 10px;
}

.store-feature {
    margin-top: 70px;
}

.store-feature h2 {
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 30px 0px;
    gap: 40px;

}

.feature-list img {
    width: 100px;
    height: auto;
}

.feature-list li {
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.products h2 {
    text-align: center;
    margin-top: 100px;
}

.products-list {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 20px;

}

.products-item {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
}

.products-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.products {
    margin-bottom: 100px;
}

.products-image {
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding-bottom: 30px;
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-desc {
    flex: 1;
}

.products-desc {
    padding: 10px;
}

.btn {
    color: #121212;
    padding: 7px;
    border: 2px solid;
    margin: 10px 0px;
    border-radius: 4px;
}

.products-item .btn {
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.products-item .btn:hover {
    background: #f4a261;
    color: #fff;
    border-color: #f4a261;
}


.sns-share-title {
    margin-bottom: 15px;
}

.contents {
    text-align: center;
}

.sns-share-list {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 20px;
}

.sns-share-item {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.11);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;

}

.sns-share-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.sns-share-image {
    height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding-bottom: 25px;
}

.sns-share-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.sns-share {
    margin-bottom: 100px;

}

.share-user {
    display: block;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #333;

}

.share-text {
    padding: 0px 20px 20px 20px;
    border-top: 1px solid #eee;
}

/* footer */






/* privacy page */

.privacy {
    max-width: 900px;
    margin: 150px auto 0px;
    padding: 30px;
    border: 1px solid #ddd;
}

.privacy-title {
    text-align: center;
    padding-bottom: 70px;
}

.privacy-lead {
    font-size: 18px;
    font-weight: 500;

}

.privacy-heading {
    padding-bottom: 3px;
    font-weight: 500;
    font-size: 20px;
    color: #333;
    padding-top: 30px;
}

/* fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 1000px) {

    .feature-list {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    padding: 100px 30px 0px;
    gap: 40px;

}

.feature-list li {
    max-width: 280px;
    display: flex;
    
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
    .products-list {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 32px;
        padding: 0 20px;
    }
    .products-item {
        width: 100%;
        max-width: 320px;
    }
    .products-image {
        height: 260px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        width: 100%;
        padding-bottom: 30px;
    }
    .sns-share-list {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: 50px;
        padding: 20px;
        gap: 50px;
    }
    .sns-share-item {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brand-info {
        width: 60%;
    }
    .site-end {
        flex-direction: column;
        align-items: center;
    }
    .sns-area {
        margin-top: 100px;
    }
    .copyright {
        margin-top: 120px;
        text-align: center;
        font-size: 12px;
    }
    .privacy {
    
    border: 0px solid #ddd;
}
}

@media(max-width: 780px) {
    .sp-only {
        display: block;
    }

    .is-sp {
        display: none;
    }
    footer img {
    width: 60px;
}

}

@media(max-width: 490px) {

    .text-sp {
        display: block;

    }
    .site-logo img {
    width: 80px;
}
.privacy-title {
    font-size: 25px;
}
}
