@charset "UTF-8";
/*------------------------------about------------------------------*/
#about {
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#about .img {
    width: 40%;
    margin-right: 10%;
}
#about .text {
    width: 50%;
}
#about .text p {
    line-height: 1.8;
    margin-bottom: 40px;
}
#about .text p:last-child {
    margin-bottom: 0;
}
#about .text .bold {
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: solid 1px #666;
    margin-right: 3px;
}

/*------------------------------concept------------------------------*/
#concept {
    margin-bottom: 120px;
}
#concept .detail {
    line-height: 1.8;
    margin-bottom: 80px;
}
#concept .blank {
    margin-bottom: 20px;
    display: inline-block;
}
#concept .bottom-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
#concept .moisture,
#concept .sensitive {
    flex: 1;
}
#concept .line {
    width: 1px;
    background: #666;
    margin: 0 50px;
}
#concept .bottom-box .title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}
#concept .bottom-box .text {
    line-height: 1.8;
}

/*--------------------------------------our-care-----------------------------------*/
#our-care {
    margin-bottom: 120px;
}
#our-care .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
#our-care .text {
    width: 50%;
}
#our-care .text dt {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.15rem;
}
#our-care .text dd {
    margin-bottom: 30px;
    line-height: 1.8;
}
#our-care .img {
    width: 40%;
    margin-left: 10%;
}
#our-care .btn {
    font-weight: 500;
    color: #fff;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 35px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0px 4px 0px 0px rgba(170, 156, 142, 0.5);
}
#our-care .btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}



/*---------------------------------------
--------------スマートフォン-----------------------------*/
@media screen and (max-width: 767px) {
/*------------------------------about------------------------------*/
    #about {
        margin-bottom: 80px;
        flex-direction: column-reverse;
    }
    #about .img {
        width: 90%;
        margin-right: 0;
    }
    #about .img img {
        aspect-ratio: 16 / 9;
    }
    #about .text {
        width: 100%;
        margin-bottom: 50px;
    }
    #about .text p {
        margin-bottom: 30px;
    }

/*------------------------------concept------------------------------*/
    #concept {
        margin-bottom: 80px;
    }
    #concept .detail {
        margin-bottom: 50px;
    }
    #concept .bottom-box {
        flex-direction: column;
    }
    #concept .moisture {
        margin-bottom: 40px;
    }
    #concept .bottom-box .title {
        font-size: 2rem;
        margin-bottom: 20px;
        display: inline-block;
        border-bottom: solid 1px #666;
    }
    #concept .blank {
    margin-bottom: 15px;
}

    /*--------------------------------------our-care-----------------------------------*/
    #our-care {
        margin-bottom: 80px;
    }
    #our-care .inner {
        flex-direction: column;
        margin-bottom: 50px;
    }
    #our-care .text {
        width: 100%;
        margin-bottom: 30px;
    }
    #our-care .img {
        width: 90%;
        margin-left: 0;
    }
    #our-care .img img {
        aspect-ratio: 16 / 9;
    }
    #our-care .btn {
        box-shadow: none;
    }
}