@charset "utf-8";
.g_warp{
    width: 100%;
    background-color: #F9F9F9;
}
.guide__standalone{
    height: 100vh;
    overflow-y: auto;
}
.guide__content{
    width: 600px;
    margin: 30px auto 50px;
}
.guide__header{
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 64px;
    display: flex;align-items: center;
}
.guide__header .header_cnts{
    width: 600px;margin: 0 auto;
    display: flex;align-items: center;
}
.guide__header .btn_prev{
    margin-right: 10px;
}
.guide__content .btn_go_install{
    /* background: url(/images/guide/btn_bg.jpg)no-repeat center center / cover;
    background-image: linear-gradient(to bottom, #1548A1, #137DA6);*/
    width: 600px;
    border-radius: 20px;
}
.guide__content .btn_go_install .stxt{
    font-size: 14px; color: #666;
    padding: 15px 20px 0;
}
.guide__content .contentBox{
    margin: 50px 0;
}
.guide__content h2{
    color: #222;
    font-weight: bold; font-size: 24px;
    width: 100%;
    line-height: 150%;
    padding: 0 10px 20px;
}
.guide__content .guide__steplist{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.guide__content .guide__steplist .step_cnts{
    border: 1px solid #438AE5;
    border-radius: 20px;
    background-color: #fff;
    padding: 12px 15px 20px;
    position: relative;
}
.guide__content .guide__steplist .step_cnts::after{
    content: "";
    width:  24px; height: 24px;
    background: url(/images/guide/ico_next_guide.png);
    top:50%;
    transform: translateY(-50%);
    position: absolute;
    right: -23px;
}
.guide__content .guide__steplist .step_cnts:last-child::after{
    content:none;
    background-image: none;
}
.guide__content .guide__steplist .step_cnts{
    display: flex; align-items: center;
    justify-content: center; flex-direction: column;
}
.guide__content .guide__steplist .step_cnts .step_point{
    color: #2A7AE2; font-size: 14px; font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 1px solid #2A7AE2;
    text-align: center; width: 100%;
}
.guide__content .guide__steplist .step_cnts .step_txt{
    font-size: 14px; font-weight: bold;
    color: #222; text-align: center;
    padding-top: 5px;
}
.guide__content .way_cont li{
    font-weight: bold; color: 222;
    font-size: 16px;
    background-color: #fff;
    border:1px solid #ddd;
    border-left: 5px solid #2A7AE2;
    padding: 17px 0 17px 30px;
    margin-bottom: 15px;
}
.guide__content .way_cont li span{
    color: #2A7AE2;
}
.btn_warp{
    text-align: center;
}
.btn_warp .txt{
    font-size: 18px; font-weight: bold;
    color: #222;
    align-items: center;
    padding: 15px 0;
}
.btn_warp .btn_txt{
    font-size: 20px;
    font-weight: bold;
    background-color: #2A7AE2; color: #fff;
    padding: 15px 25px;
    display: inline-block;
    border-radius:5px;
}