@charset "UTF-8";

.point{
    padding: 0 6rem 2rem 3rem;
    background-image: url("../image/point_brush.png");
    margin-left: 3rem;
}
h3, h3 + p{
    text-align: center;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:890px){
    .about_image{
        width: 25%;
        height: auto;
        object-fit: contain;
    }
    .about_content{
        width: 50%;
        height: auto;
        margin: auto 2.5%;
    }
    .flex_point{
        justify-content: space-evenly;
    }
    .point_border{
        width: 25%;
        height: auto;
        border: solid 2px #ABE8C9;
        border-radius: 8rem;
        padding: 2%;
    }
    table{
        width: 70%;
        height: auto;
        margin: 5rem auto 0 auto;
    }
    th{
        width: 15%;
        height: auto;
        text-align: right;
        padding: 3% 0;
    }
    td{
        width: 55%;
        height: auto;
        text-align: left;
        padding: 3% 0 3% 10%;
    }
    table + div{
        text-align: center;
        margin-top: 5rem;
    }

}
/* スマホ */
@media screen and (max-width:889px){
    .flex_item{
        text-align: center;
    }
    .about_image{
        width: 80%;
        height: auto;
        object-fit: contain;
    }
    .about_content{
        width: 80%;
        height: auto;
        text-align: left;
        margin: auto;
    }
    .point_border{
        width: 50%;
        height: auto;
        border: solid 2px #ABE8C9;
        border-radius: 5rem;
        padding: 5%;
        margin: 5rem auto;
    }
    .point_font{
        text-align: left;
    }
    table{
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    th{
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    td{
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 3rem;
    }
    table + div{
        text-align: center;
    }
}


/* font */
/* PC */
@media screen and (min-width:1231px){
    h3 + p{
        font-size: clamp(2rem, calc(0.25vw + 2rem), 2.5rem);
    }
    .point_font{
        font-size: clamp(1.5rem, calc(0.25vw + 2rem), 2.5rem);
    }
}
/* タブレット */
@media screen and (min-width:890px) and (max-width:1230px){
    h3 + p{
        font-size: clamp(1.5rem, calc(0.1vw + 1.5rem), 2.3rem);
    }
    .point_font{
        font-size: clamp(1rem, calc(0.5vw + 1rem), 1.5rem);
    }
}
@media screen and (min-width:465px) and (max-width:889px){
    h3{
        margin-top: 0;
    }
    h3 + p{
        font-size: clamp(1.3rem, calc(0.75vw + 1.3rem), 2rem);
    }
    .point_font{
        font-size: clamp(1rem, calc(0.5vw + 1rem), 1.5rem);
    }
}
/* スマホ */
@media screen and (max-width:464px){
    h3 + p{
        font-size: 1.3rem;
    }
    .pont_font{
        font-size: 1rem;
    }
}