/*-----------------------------*/
/* header */
/*-----------------------------*/
.header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

@media screen and (min-width: 768px) {
    .header {
        height: 80px;
    }
}


.logo {
    width: 70px;
}

@media screen and (min-width: 768px) {
    .logo {
        width: 85px;
    }
}
.logo:hover {
    opacity: 0.5;
}

.logo a {
    display: flex;
}

.icon-cart {
    width: 24px;
}

@media screen and (min-width: 768px) {
    .icon-cart {
        width: 25px;
    }
}

.icon-cart:hover {
    transform: scale(1.2,1.2);
}

/*-----------------------------*/
/* footer */
/*-----------------------------*/
.footer {
    font-size: 0.75rem;
    font-weight: 400;
    background-color: #BAA8A2;
    color: #FFF;
    display: flex;
    flex-direction: column;
    padding: 40px 0 20px 0;
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 56px 0px 24px 0px;
    }
}

.footer-container {
    width: 90%;
    margin: 0 auto;
    display: block;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer-container {
        width: 80%;
        max-width: 1080px;
        margin: 0 auto;
    }
}
.footer-logo {
    display: block;
    width: 84px;
    margin: 0 auto 28px auto;
}

@media screen and (min-width: 768px) {
    .footer-logo {
        margin: 0 auto 24px 0;
    }
}

.footer-logo:hover {
    opacity: 0.5;
}

.footer-list {
    letter-spacing: 0.96px;
    max-width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 12px;
    text-decoration: none;
    margin: 0 auto 20px auto;
}

@media screen and (min-width: 768px) {
    .footer-list {
        max-width: 100%;
        justify-content: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
}

.footer-text:hover {
    opacity: 0.5;
}

.footer-line {
    border-bottom: solid #EEE 1px;
    margin: 0 auto 20px auto;
}

@media screen and (min-width: 768px) {
    .footer-line {
        max-width: 1080px;
        margin-bottom: 24px;
    }
}

.footer-copyright {
    text-align: center;
}
/*-----------------------------*/
/* mainvisual */
/*-----------------------------*/
.main-container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 16px;
    margin-bottom: 96px;
}

@media screen and (min-width: 768px) {
    .main-container {
        margin-bottom: 160px;
    }
}

.main-img {
    width: 100%;
    object-fit: cover;
    order: 1;
}

@media screen and (min-width: 768px) {
    .main-img {
        width: 66%;
        height: 10%;
        margin-right: 0;
        margin-left: auto;
        z-index: 1;
    }
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 2;
}

@media screen and (min-width: 768px) {
    .main-wrapper {
        position: absolute;
        top: 156px;
        left: 143px;
        gap: 96px;
        z-index: 10;
    }
}
.main-text {
    color: #333;
    font-family: "Noto Serif JP";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: 4.8px;
    margin-left: 19px;
}

@media screen and (min-width: 768px) {
    .main-text {
        font-size: 2.5rem;
        line-height: 96px;
    }
}

.main-btn {
    display: inline-block;
    color: #FFF;
    background-color: #BAA8A2;
    width: 260px;
    height: 55px;
    line-height: 55px;
    font-weight: 400;
    letter-spacing: 1.6px;
    text-align: center;
    margin: 0 81px 0 19px;
}

.main-btn:hover {
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
    .main-btn {
        font-size: 1.125rem;
        max-width: 360px;
        letter-spacing: 1.8px;
    }
}
/*-----------------------------*/
/* FEATURE */
/*-----------------------------*/
.feature-container {
    width: 90%;
    margin: 0 auto 96px auto;
}

@media screen and (min-width: 768px) {
    .feature-container {
        width: 80%;
        margin-bottom: 160px;
    }
}

.feature-wrapper {
    margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
    .feature-wrapper {
        margin-bottom: 80px;
    }
}

.feature-title {
    text-align: center;
    font-family: Lato;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 8px;
}

@media screen and (min-width: 768px) {
    .feature-title {
        font-size: 2rem;
        letter-spacing: 12.8px;
    }
}

.feature-text {
    text-align: center;
    font-family: Noto Serif JP;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.12px;
}

@media screen and (min-width: 768px) {
    .feature-text {
        font-size:1.125rem;
        letter-spacing: 1.44px;
    }
}

.feature-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}


@media screen and (min-width: 768px) {
    .feature-list-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
        gap: 80px;
        margin-bottom: 80px;
    }
}

.feature-list-img {
    order: 1;
}

.coconut-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    order: 2;
}

@media screen and (min-width: 768px) {
    .coconut-text {
        gap: 8px;
    }
}

.list-name {
    color: #BAA8A2;
    font-family: Lato;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.68px;
}

@media screen and (min-width: 768px) {
    .list-name {
        font-size: 1rem;
        letter-spacing: 1.92px;
    }
}

.list-title {
    color: #333;
    font-family: Noto Serif JP;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1.44px;
    /* margin-bottom: 8px; */
}

@media screen and (min-width: 768px) {
    .list-title {
        font-size: 1.25rem;
        letter-spacing: 1.6px;
    }
}

.list-text {
    color: var(--5-d-5-d-5-d, #5D5D5D);
    font-family: Noto Serif JP;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.12px;
}

@media screen and (min-width: 768px) {
    .list-text {
        font-size: 1rem;
        letter-spacing: 1.28px;
    }
}

.sub-list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 48px;
}

@media screen and (min-width: 768px) {
    .sub-list {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 60px;
    }
}


.feature-list-sub {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .list-wrapper {
        gap: 8px;
    }
}

.list-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media screen and (min-width: 768px) {
    .list-top {
        gap: 8px;
    }
}

/*-----------------------------*/
/* LINE UP */
/*-----------------------------*/
.pg-lineup {
    margin-bottom: 96px;
}

@media screen and (min-width: 768px) {
    .pg-lineup {
        margin-bottom: 160px;
    }
}


.lineup-container {
    display: block;
    width: 90%;
    margin: 0 auto 96px auto;
}

@media screen and (min-width: 768px) {
    .lineup-container {
        width: 70%;
        margin: 0 auto 160px auto;
    }
}

.lineup-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
    .lineup-wrapper {
        gap: 20px;
        margin-bottom: 80px;
    }
}

.lineup-title {
    color: #333;
    font-family: Lato;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 8px;
}

@media screen and (min-width: 768px) {
    .lineup-title {
        font-size: 2rem;
        letter-spacing: 12.8px;
    }
}

.lineup-text {
    color: #333;
    font-family: Noto Serif JP;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.12px;
}

@media screen and (min-width: 768px) {
    .lineup-text {
        font-family: Source Han Serif;
        font-size: 1.125rem;
        letter-spacing: 1.44px;
    }
}

.lineup-list-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto 96px auto;
    gap: 48px;
}

@media screen and (min-width: 768px) {
    .lineup-list-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        margin: 0 auto 160px auto;
        gap: 80px;
    }
}

.lineup-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item-img {
    order: 1;
}

.lineup-list-item {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 2;
}

.product-title {
    color: #333;
    font-family: Noto Serif JP;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1.44px;
}

@media screen and (min-width: 768px) {
    .product-title {
        font-size: 1.25rem;
        letter-spacing: 1.6px;
    }
}

.product-text {
    color: #5D5D5D;
    font-family: Noto Serif JP;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1.12px;
}

@media screen and (min-width: 768px) {
    .product-text {
        font-size: 1rem;
        letter-spacing: 1.28px;
    }
}

.common-btn {
    background-color: #BAA8A2;
    width: 260px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: var(--ffffff, #FFF);
    font-family: Lato;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.common-btn:hover {
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
    .common-btn {
        font-size: 1.125rem;
        letter-spacing: 1.8px;
    }
}
/* ---------------------------------------- */
/* INSTAGRAM */
/* ---------------------------------------- */
.pg-instagram {
    display: flex;
    flex-direction: column;
    margin: 0 auto 96px auto;
}

@media screen and (min-width: 768px) {
    .pg-instagram {
        margin: 0 auto 160px auto;
    }
}

.insta-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto 96px auto;
    gap: 48px;
}

@media screen and (min-width: 768px) {
    .insta-container {
        width: 80%;
        max-width: 1080px;
        margin: 0 auto 160px auto;
        gap: 80px;
    }
}

.insta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 768px) {
    .insta-wrapper {
        gap: 20px;
    }
}

.insta-title {
    color: #333;
    font-family: Lato;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 8px;
}

@media screen and (min-width: 768px) {
    .insta-title {
        font-size: 2rem;
        letter-spacing: 12.8px;
    }
}

.insta-text {
    color: #333;
    font-family: Noto Serif JP;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1.12px;
}

@media screen and (min-width: 768px) {
    .insta-text {
        font-family: Source Han Serif;
        font-size: 1.125rem;
        letter-spacing: 1.44px;
    }
}

.insta-img {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 0 auto;
    gap: 9px;
}

@media screen and (min-width: 768px) {
    .insta-img {
        gap: 24px;
    }
}
