.hero {
    padding-top: 80px;
}
.hero_content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_text {
    width: 44%;
}
.hero_text .hero_catch {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 15px;
}
.hero_text .hero_catch .ls {
    letter-spacing: -.05em;
}
.hero_text .hero_description {
    font-size: 1.4rem;
}
.hero_img {
    width: 56%;
}


.section_title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.section_title_wrap .title_en {
    font-size: 1.5rem;
    line-height: 1;
    color: #284add;
}
.section_title_wrap .title_jp {
    font-size: 3.2rem;
    font-weight: 900;
}

#service {
    padding: 100px 0;
}
.service_list {
    width: 100%;
    display: flex;
    gap: 30px;
}
.service_list .service_item {
    width: calc((100% - 60px) / 3);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service_list .service_item .service_ttl {
    text-align: center;
    color: #284add;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
}
.service_list .service_item .service_ttl .min {
    font-size: 1.6rem;
}
.service_list .service_item .service_img {
    width: 200px;
    margin: 20px 0;
}
.service_list .service_item .service_description {
    font-size: 1.5rem;
}

#company {
    padding: 100px 0;
    background-color: #f7f9fc;
}
.company_table {
    width: 100%;
    border-radius: 12px;
    background-color: #fff;
    padding: 55px;
}
.company_table .row {
    display: flex;
    border-bottom: solid 1px #d1d7da;
    padding: 20px 0;
}
.company_table .row:first-child {
    padding-top: 0;
}
.company_table .row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.company_table .row .th {
    width: 180px;
    padding-left: 15px;
    font-size: 1.7rem;
    font-weight: 700;
}
.company_table .row .td {
    font-size: 1.6rem;
}

#contact {
    padding: 100px 0;
}
.contact_description {
    text-align: center;
}
.contact_form {
    width: 100%;
    margin-top: 40px;
}
.contact_form .row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
}
.contact_form .row.fs {
    align-items: flex-start;
}
.contact_form .row.fs .th {
    padding-top: 20px;
}
.contact_form .row .th {
    width: calc(100% - 470px);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    text-align: right;
}
.contact_form .row .th .req {
    font-size: 1.1rem;
    color: #fff;
    background-color: #284add;
    border-radius: 20px;
    line-height: 1;
    padding: 0px 10px 2px;
    margin-right: 5px;
}
.contact_form .row .td {
    width: 440px;
}
.contact_form .row .td input[type="text"],
.contact_form .row .td input[type="email"],
.contact_form .row .td input[type="tel"],
.contact_form .row .td textarea {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    width: 100%;
    border-radius: 6px;
    border: solid 1px #eaeef4;
    background-color: #f7f9fc;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 15px;
}
.contact_form .row .td textarea {
    height: 14em;
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    resize: none;
}
.submit_wrap {
    width: 300px;
    margin: 40px auto 0;
}
.submit_wrap input[type="submit"] {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background-color: #284add;
    border-radius: 30px;
    padding: 15px 0;
    border: none;
    outline: none;
    border-bottom: solid 6px #1732ac;
}

@media screen and (max-width: 640px) {
    .hero {
        padding-top: 40px;
    }
    .hero_content {
        flex-direction: column;
        gap: 20px;
    }
    .hero_text {
        width: 100%;
        text-align: center;
    }
    .hero_text .hero_catch {
        font-size: 6vw;
    }
    .hero_text .hero_description {
        font-size: 1.2rem;
    }
    .hero_img {
        width: 100%;
    }

    .section_title_wrap {
        margin-bottom: 20px;
    }
    .section_title_wrap .title_jp {
        font-size: 2.6rem;
    }
    #service {
        padding: 60px 0;
    }
    .service_list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .service_list .service_item {
        width: 80%;
        padding: 25px;
    }
    .service_list .service_item .service_ttl {
        font-size: 1.8rem;
    }
    .service_list .service_item .service_ttl .min {
        font-size: 1.4rem;
    }
    .service_list .service_item .service_description {
        font-size: 1.3rem;
    }

    #company {
        padding: 60px 0;
    }
    .company_table {
        padding: 25px;
    }
    .company_table .row {
        padding: 15px 0;
    }
    .company_table .row .th {
        width: 100px;
        font-size: 1.5rem;
    }
    .company_table .row .td {
        width: calc(100% - 100px);
        font-size: 1.3rem;
    }

    #contact {
        padding: 60px 0 40px;
    }
    .contact_description {
        font-size: 1.4rem;
    }
    .contact_form {
        margin-top: 20px;
    }
    .contact_form .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    .contact_form .row .th {
        width: 100%;
        text-align: left;
    }
    .contact_form .row .td {
        width: 100%;
    }
}