@charset "utf-8";
/* CSS Document */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote{margin:0;padding:0;}
h1,h2,h3,h4,h5{font-size:100%;}






h1{
    margin: 2rem 0 0;
}




h3.wash_title{
    background-color: #fff;
    max-width: 600px;
    color:#6087bf;
    border: 2px solid #6087bf;
    border-radius: 50px;
    padding: 10px 50px;
    margin: 40px auto 0;
    font-size: 1.5em;
    position: relative;
    text-align: center;
}




@media screen and (max-width: 570px){
    
    
    h3.wash_title{
        font-size: 1em;
        padding: 10px 30px;
        width: 100%;
        text-align: center;
    }
    
    
}




/*お手入れ方法ここから*/


.care-page{
    background-color: #fff;
    padding: 70px 50px;
}



.wash_list{
    max-width:600px;
    margin: 30px auto 100px;
    text-align: center;
}


.wash_list2{
    max-width:920px;
    margin: 30px auto 100px;
    text-align: center;
}

.wash-table{
    display: table;
    padding: 50px 0px 20px;
    /*background-color: aquamarine;*/
    /*border-bottom: 1px dotted #C1C1C1;*/
    text-align: left;
}

.wash-table_icon{
    display: table-cell;
    padding-right: 20px;
}

.wash-table_icon img{
    width: 80px;
    vertical-align: middle;
}



.wash-table_text{
    display: table-cell;
    vertical-align: middle;
}


@media screen and (max-width: 400px){
    
    
    
    .wash-table{
        display: block;
    }
    
    .wash-table_icon{
        display: block;
        padding-right:0;
        text-align: center;
        width: 100%;
    }
    
   .wash-table_icon img{
            width: 50px;
   }
    
    .wash-table_text{
        display: block;
        width: 100%;
        padding-top: 20px;
        
    }
}

.wash_list_title{
    font-weight: 600;
    color: #6087bf;
}


.text_sub2{
    text-align: left;
    padding:50px 0px 0px;
}

.text_left{
    text-align: left;
}

/*リストNO*/


ol.no_list{
    counter-reset:list;
    list-style-type:none;
    margin-top: 50px;
    
}
ol.no_list li{
    position:relative;
    /*padding: 0 0px 0 40px;*/
    margin: 7px 0 40px 0px;
    text-align: left;
}
ol.no_list li:before{
    counter-increment: list;
    content: counter(list);
    position: absolute;
    /*left: 0px;*/
    width: 45px;
    height: 45px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    line-height:45px;
    background: #6087bf;
    border-radius: 50%;
    top:-30%;
    
}


ol.no_list li p{
    padding-left: 55px;
}



@media screen and (max-width: 1178px){
    ol.no_list li:before{
        top:0;
        
    }
    
}


@media screen and (max-width: 600px){
    
    ol.no_list li{
        margin: 7px 0 25px 0px;
    }
    
    
    ol.no_list li:before{
        width: 30px;
        height: 30px;
        line-height:30px;
        
    }
    
    ol.no_list li p{
        padding-left: 40px;
    }
    
}





/*リストアルファベット*/

.text_sub{
    text-align: left;
    padding-bottom: 20px;
}


.text_sub a{
    color: #6087bf;
    text-decoration: underline;
}

.text_sub a:hover{
    opacity: 0.5;
}

section.a_list{
    display: table;
    margin:20px 0px;
    width: 100%;
    line-height: 1.5em;
}


section.a_list div.abc{
    display:table-cell;
    text-align: center;
    color: #fff;
    background: #6087bf;
    width: 5%;
    font-weight: 600;
    vertical-align: middle;
}


section.a_list div.a_list_text{
    display:table-cell;
    border: 2px solid #6087bf;
    color: #6087bf;
    text-align: left;
    padding: 10px;
    height: 70px;
    vertical-align: middle;
}


@media screen and (max-width: 900px){
    
    section.a_list div.abc{
        width: 8%;
    }
    
    section.a_list div.a_list_text{
        height: 100px;
    }
    
    
}


@media screen and (max-width: 588px){
    
    section.a_list{
        display: block;
    }
    
    section.a_list div.abc{
        display: block;
        width: 100%;
        text-align: center;
    }
    
    section.a_list div.a_list_text{
        display: block;
        height: auto;
    }
    
    
}



.category {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: top;
    gap: 10px 20px;
    margin: 20px 0px 80px;
}

.category .category_box {
    width: 30%;
    padding:10px 0px;
    border-bottom: dotted 1px #333;
}

.category:after {
   content: "";
   display: block;
   width: 30%;
   height: 0;
}
    
    
.category_box:before {
    content: "";
    display: block;
    width: 30%;
    height: 0;
    order: 1;
}

.category_detail{
    display: flex;
    justify-content: space-between;
    gap:10px;
    padding: 0px 10px;
}


.detail_text{
    max-width: 70%;
    text-align: left;
    font-size: 0.8em;
}

.detail_symbol{
    /*width:40%;*/
    text-align: right;
}

.category_detail div span{
    background-color: #6087bf;
    color: #fff;
    font-weight: 600;
    padding: 5px;
    font-size: 0.8em;
}


@media screen and (max-width: 1140px){
    .category .category_box {
    width: 47%;
    }

    .category:after {
        width: 47%;
    }
    
    .category_box:before {
    width: 47%;
    }
    
}

@media screen and (max-width: 830px){
    .category .category_box {
        width: 100%;
    }
    
    .category:after {
        width: 100%;
    }
    
    .category_box:before {
    width: 100%;
    }
    
}


.result rt{
    line-height: 2;
    font-size: 0.6em;
    letter-spacing: 0em;
    
}


.text_h{
    text-align: left;
    font-size: 0.9em;
    line-height: 1.2em;
    padding-bottom: 50px;
    color: #6087bf;
}


.text_small{
    font-size: 0.8em;
    background-color: none;
}