@charset "UTF-8";


.line {
    justify-content: left;
}

/* hero */

.inner {
    max-width: 1240px;
}

.hero {
    background-image: url(/img/cmn/bg-hero.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 150px 0 72px;
}

.hero_body {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hero_txt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero_ttl h2 {
    font-size: 40px;
    color: #007edf;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero_txt {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}


/* service */

.service {
    margin-bottom: 187px;
}

.section_head {
    margin-bottom: 80px;
}

.section_ttl {
    color: #007EDF;
    text-align: left;
    margin-bottom: 35px;
}

.service_comment {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

.service_cat ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.service_cat ul li {
    color: #007EDF;
    background-color: #fff;
    border: solid 1px #007EDF;
    border-radius: 15px;
    transition-duration: 0.5s;
    padding: 10px 25px;
    font-weight: bold;
    transition-duration: 0.5s;
}

.service_cat ul li.-open {
    background-color: #007EDF;
    color: #fff;
}

.service_cat ul li:hover {
    background-color: #007EDF;
    color: #fff;
    cursor: pointer;
}

.service_list ul {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service_list_item {
    border-radius: 15px;
    width: 370px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.service_list_item_table:hover {
    cursor: pointer;
}

.service_list_img {
    background: linear-gradient(to right top, #E4F2FB, #F5FBFF);
    border-radius: 15px 15px 0 0;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.service_list_img img {
    transition-duration: 0.5s;
}

.service_list_item:hover .service_list_img img {
    transform: scale(1.1);
}

.service_list_cnt {
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 105px;
    padding: 0 32px;
    position: relative;
}

.service_list_cnt p {
    color: #007EDF;
    font-weight: bold;
    font-size: 20px;
    padding-top: 30px;
}

.service_list_cnt button {
    color: #BABABA;
    text-decoration: underline;
    text-align: right;
    position: relative;
    padding-right: 20px;
    position: absolute;
    right: 10%;
    bottom: 10%;
}

.service_list_cnt button::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url(/img/cmn/icon-plus.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 30%;
}

.service_list_cnt button:hover {
    cursor: pointer;
}


/* bnr_service */

.bnr_service {
    margin-bottom: 187px;
}

.bnr_service_cnt {
    border-radius: 15px;
    background-image: url(/img/system/bg-bnr_service.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 73px 0 60px;
    text-align: center;
}

.bnr_service_ttl.-small {
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 20px;
}

.bnr_service_ttl {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    line-height: 50px;
}

.bnr_service_cnt .btn_more {
    margin: 0 auto;
}


/* system */

.system {
    margin-bottom: 150px;
}

.system_cnt {
    background-color: #E4F2FB;
    border-radius: 30px;
    padding: 70px 60px;
}

.system_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.system_list .system_list_item {
    background-color: #fff;
    border-radius: 5px;
    width: 340px;
    height: 340px;
    display: flex;
    flex-flow: column;
    gap: 15px;
    justify-content: start;
    align-items: center;
    padding: 35px 10px;
}

.system_list_item_head {
    display: flex;
    flex-flow: column;
    gap: 20px;
    align-items: center;
}

.system_list_ttl {
    font-size: 20px;
    font-weight: bold;
    color: #007EDF;
}

.system_list_txt {
    text-align: center;
    font-size: 16px;
}



/* structure */

.structure {
    background-color: #F5FBFF;
    border-radius: 130px;
    padding: 120px 0 245px;
}

.structure .section_ttl {
    text-align: center;
}

.structure .line {
    justify-content: center;
}

.section_head {
    text-align: center;
    margin-bottom: 50px;
}

.structure_logo {
    margin: 33px 0;
}

.structure_intro {
    font-size: 16px;
    font-weight: bold;
}

.structure_comment_cnt {
    background-color: rgb(174, 223, 255, 0.3);
    border: solid 3px #3DC0FF;
    border-radius: 15px;
    padding: 50px;
    position: relative;
    margin-bottom: 48px;
}

.structure_comment_cnt::after {
    content: '';
    width: 26px;
    height: 88px;
    background-image: url(/img/cmn/icon-line_structure.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -18.5%;
    transform: translateX(50%);
    right: 50%;
}

.structure_comment ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.structure_comment ul li {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
}

.structure_comment_txt p {
    background-color: #fff;
    border: solid 1px #DDDDDD;
    padding: 10px 14px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 10px;
    max-width: 288px;
}

/* solution

.solution .inner {
    max-width: 1350px;
}

.solution_body {
    background-color: #fff;
    border-radius: 15px;
    padding: 90px 56px;
    margin-bottom: 86px;
}

.solution_ttl {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #3DC0FF, #003F70);
    background: -webkit-linear-gradient(-80deg, #3DC0FF, #003F70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution_cnt {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 43px;
}

.solution_cnt_row::before {
    content: '';
    width: 84px;
    height: 16px;
    background-image: url(/img/cmn/icon-line_structure_small.svg);
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
}

.solution_cnt_row.-left::before {
    right: -26%;
    top: 32%;
}

.solution_cnt_row.-right::before {
    left: -26%;
    top: 32%;
    transform: rotate(180deg);
}

.solution_cnt_row.-center::before {
    content: none;
}

.solution_cnt_row.-bottom::before {
    transform: rotate(-90deg) translateX(50%);
    right: 47%;
    top: -1%;
}

.solution_cnt_row.-left,
.solution_cnt_row.-right {
    width: 320px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 34px 20px;
    position: relative;
    z-index: 10;
}

.solution_cnt_row.-bottom {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 34px 20px;
    position: relative;
    z-index: 10;
}

.solution_cnt_row.-center {
    margin-top: 360px;
}

.solution_cnt_row.-center img {
    position: absolute;
    transform: translateX(50%);
    right: 50%;
    bottom: 40%;
    z-index: 0;
}

.solution_cnt_row_ttl {
    color: #007EDF;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.solution_cnt_row.-left ul li {
    background-color: #E4F2FB;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.solution_cnt_row.-right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.solution_cnt_row.-right ul li {
    background-color: #E4F2FB;
    border-radius: 10px;
    height: 100px;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-align: center;
}

.step {
    margin-bottom: 50px;
}

.step_ttl {
    font-size: 16px;
    font-weight: bold;
    background: #E4F2FB;
    border-radius: 15px;
    width: 100%;
    padding: 13px 20px;
    margin-bottom: 33px;
}

.step_ttl .blue {
    font-family: 'Montserrat', serif;
    font-size: 17px;
    color: #007EDF;
    font-weight: bold;
    margin-right: 20px;
}

.step_img {
    text-align: center;
}

.kind {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.kind_head {
    color: #007EDF;
    font-size: 16px;
    font-weight: bold;
    padding: 9px 15px;
    background-color: #F5FBFF;
    border: solid 1px #007EDF;
    line-height: 24px;
}

.kind_txt {
    color: #007EDF;
    font-size: 16px;
    font-weight: bold;
}

.kind_txt span {
    font-size: 87px;
    line-height: 142px;
    font-family: 'Montserrat', serif;
} */


/* effect */

.effect .section_ttl {
    text-align: center;
}

.effect_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.effect_list li {
    background-color: #E4F2FB;
    border-radius: 15px;
    padding: 23px 15px;
    text-align: center;
    max-width: 275px;
    width: 100%;
    height: 425px;
}

.effect_list li img {
    margin-bottom: 40px;
}

.effect_list li p {
    font-size: 16px;
    font-weight: 500;
}


/* konw */

.know {
    position: relative;
    background-color: #fff;
    border-radius: 130px;
    margin-top: -100px;
    padding-bottom: 70px;
}

.know::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #F3FAFF;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

.know .section_ttl {
    text-align: center;
    margin-bottom: 35px;
    line-height: 40px;
}

.know .line {
    justify-content: center;
    margin-bottom: 35px;
}

.know_cnt {
    padding-bottom: 107px;
    /* border-bottom: solid 1px #BABABA; */
}

.know_label {
    color: #fff;
    background-color: #007EDF;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 15px 112px;
    text-align: center;
    width: 402px;
    margin: 0 auto;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 80px;
}

.know_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 48px;
}

.know_list li {
    padding: 27px 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 370px;
    height: 394px;
    text-align: center;
}

.know_list li img {
    margin-bottom: 10px;
}

.know_list_ttl {
    font-size: 20px;
    font-weight: bold;
    color: #FA529D;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.know_intro_arrow {
    transform: rotate(90deg);
}

.know_list_txt {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    text-align: left;
}

.know .btn_more {
    width: 300px;
    margin: 0 auto;
}


@media screen and (max-width:767px) {

    .hero {
        padding-top: 100px;
    }

    .hero_body {
        flex-flow: column-reverse;
        gap: 30px;
    }

    .hero_ttl h2 {
        font-size: 25px;
    }

    .section_head {
        margin-bottom: 20px;
    }

    .section_ttl {
        margin-bottom: 20px;
    }



    /* service */

    .service {
        margin-bottom: 50px;
    }

    .service_cat ul {
        margin-bottom: 15px;
        width: 420px;
    }

    .service_cat ul li {
        padding: 10px 24px;
    }

    .service_cat {
        overflow: scroll;
    }

    .service_list {
        margin-top: 15px;
    }

    .service_list ul {
        gap: 12px;
    }

    .service_list_item_table {
        display: flex;
        height: 149px;
    }

    .service_list_img {
        border-radius: 15px 0 0 15px;
        width: 100%;
        max-width: 100px;
        height: 149px;
    }

    .service_list_img img {
        width: 60%;
    }

    .service_list_cnt {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        height: unset;
        width: 100%;
        padding: 0 21px;
    }

    .service_list_popup_cnt {
        flex-flow: column;
    }

    .service_list_popup_cnt_img {
        border-radius: 15px 15px 0 0;
        padding: 30px;
    }

    .service_list_popup_cnt_img img {
        width: 40%;
    }

    .service_list_popup_sentence {
        padding: 20px 24px;
    }

    .service_list_popup_ttl {
        margin-bottom: 10px;
    }

    .service_list_popup_txt {
        margin-bottom: 15px;
    }

    .btn_close {
        top: -5%;
        right: -17%;
    }

    .btn_close img {
        width: 50%;
    }


    /* bnr */

    .bnr_service_cnt {
        background-image: url(/img/system/bg-bnr_service_sp.png);
        height: unset;
        padding: 30px 0 160px;
    }

    .bnr_service_ttl {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .bnr_service_ttl.-small {
        margin-bottom: 10px;
    }


    /* system */

    .system {
        margin-bottom: 50px;
    }

    .system_cnt {
        padding: 23px 25px;
    }

    .system_list .system_list_item {
        padding: 17px;
        height: 230px;
    }

    .system_list_item_head {
        flex-flow: row-reverse;
        width: 100%;
        justify-content: flex-end;
    }

    .system_list_item_head img {
        width: 27%;
    }

    .system_list_txt {
        text-align: left;
    }


    /* structure */

    .structure {
        border-radius: 53px 53px 0 0;
        padding: 100px 0 120px;
    }

    .structure_comment_cnt {
        padding: 34px 15px;
    }

    .structure_comment ul {
        gap: 10px;
    }

    .structure_comment ul li {
        gap: 15px;
    }

    .structure_comment ul li img {
        width: 27%;
    }

    .structure_comment::after {
        bottom: -5.2%;
        width: 20px;
        height: 68px;
    }


    .solution_body {
        padding: 25px;
    }

    .solution_cnt {
        flex-flow: column;
        gap: 20px;
    }

    .solution_cnt_row.-left,
    .solution_cnt_row.-right {
        width: 100%;
    }

    .solution_cnt_row.-center {
        margin-top: 0px;
    }

    .solution_cnt_row.-center img {
        position: unset;
        transform: unset;
    }

    .kind_txt span {
        font-size: 77px;
    }

    .solution_cnt_row.-right ul li {
        width: 47%;
    }

    .solution_cnt_row::before {
        content: none;
    }

    .structure_comment_cnt::after {
        bottom: -7.5%;
        width: 19px;
        height: 65px;
    }


    /* effect */

    .effect_body {
        overflow: scroll;
    }

    .effect_list {
        width: 1200px;
    }

    /* know */

    .know {
        border-radius: 70px;
        padding-bottom: 0px;
        margin-top: -50px;
    }

    .know_label {
        width: 80%;
        padding: 10px 20px;
    }

    .know .line {
        margin-bottom: 14px;
    }

    .know_intro {
        text-align: left;
    }

    .know_list {
        flex-flow: column;
    }

    .know_list li {
        width: 100%;
    }


}