/** @format */

@charset "utf-8";

/*  static.css
Roboto
Regular 400
Medium 500
Bold 700
Black 900
---------------------------------------------- */

/*  pc
---------------------------------------------- */

/* static */
#static {
    padding-top: 0;
}

#static h2 {
    text-align: center;
}

/* about */
#about .logo {
    display: flex;
    justify-content: center;
    margin: 100px 0;
}

#about .logo img {
    width: 30%;
}

#about #usage .plan_list {
    width: 83%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#about #usage .works_list h2 {
    font-size: 4.2rem;
    margin-bottom: 20px;
}

#about #usage .works_list .plan_list {
    gap: 60px;
}

#about #usage .works_list .plan_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 60px) / 2);
}

#about #usage .works_list .plan_list li .work_icon {
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #eef9ff;
}

#about #usage .works_list .plan_list li .work_icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

#about #usage .works_list .plan_list li .work_cont {
    width: calc(100% - 160px);
}

#about #usage .works_list .plan_list li .work_cont .ttl {
    margin-bottom: 10px;
    font-size: 2.6rem;
    font-weight: 700;
}

#about #usage .works_list .plan_list li .work_cont .txt {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #858a99;
}
#terms {
    font-size: 1.6rem;
    width: 83%;
    margin: 100px auto 0;
}
#terms h3 {
    margin: 20px 0;
}
#terms .timestamp {
    margin-top: 20px;
    text-align: end;
}
#privacy {
    font-size: 1.6rem;
    width: 83%;
    margin: 100px auto 0;
}
#privacy h3 {
    margin: 20px 0;
}
#privacy .timestamp {
    margin-top: 20px;
    text-align: end;
}
#help h3 {
    text-align: center;
    margin-top: 50px;
}
#commercial {
    font-size: 1.8rem;
}
#commercial table {
    width: 80%;
    margin: 40px auto;
    background-color: #fff;
}
#commercial table td {
    border: 1px solid #000;
    padding: 10px;
}
/* about */
/*  mobile & smart phone
---------------------------------------------- */
@media only screen and (max-width: 959px) {
    #about .logo img {
        width: 90%;
    }

    #about #usage .works_list h2 {
        font-size: 3.5rem;
    }

    #about #usage .works_list .plan_list {
        gap: 25px;
    }

    #about #usage .works_list .plan_list li {
        align-items: flex-start;
        width: 100%;
    }

    #about #usage .works_list .plan_list li .work_icon {
        width: 70px;
        height: 70px;
    }

    #about #usage .works_list .plan_list li .work_icon img {
        width: 38px;
        height: 38px;
    }

    #about #usage .works_list .plan_list li .work_cont {
        width: calc(100% - 80px);
    }

    #about #usage .works_list .plan_list li .work_cont .ttl {
        font-size: 2.1rem;
    }

    #about #usage .works_list .plan_list li .work_cont .txt {
        font-size: 1.6rem;
    }

}