@charset "utf-8";

/* ==================================================================

    plan.css

=================================================================== */

/* --------------------------------
■共通
-------------------------------- */

/* ◇ accent
-------------------------------- */
.contents .accent{
    background-image: url("../../images/plan/accent.jpg");
}

.car_at_student_speed .contents .accent,
.car_at_student .contents .accent{
    background-image: url("../../images/plan/accent_car_at_student.jpg");
    background-position: 50% 50%;
}

.car_at_normal_speed .contents .accent,
.car_at_normal .contents .accent{
    background-image: url("../../images/plan/accent_car_at_normal.jpg");
    background-position: 50% 50%;
}

.car_mt_student_speed .contents .accent,
.car_mt_student .contents .accent{
    background-image: url("../../images/plan/accent_car_mt_student.jpg");
    background-position: 50% 50%;
}

.car_mt_normal_speed .contents .accent,
.car_mt_normal .contents .accent{
    background-image: url("../../images/plan/accent_car_mt_normal.jpg");
    background-position: 50% 50%;
}

.bike_at_speed .contents .accent,
.bike_at .contents .accent{
    background-image: url("../../images/plan/accent_bike_at.jpg");
    background-position: 50% 50%;
}

.bike_mt_speed .contents .accent,
.bike_mt .contents .accent{
    background-image: url("../../images/plan/accent_bike_at.jpg");
    background-position: 50% 50%;
}

/* ◇ contactArea_tel
-------------------------------- */

main #contactArea_tel {
    margin-top: 24px;
}
main #contactArea_tel dl {
    display: flex;
    width: 80%;
    margin-inline:auto; 
    padding: 10px 20px;
    background: #fff;
    align-items: center;
    justify-content: space-between;
}
    main #contactArea_tel dl dt {
        font-size: 1.7rem;
        font-weight: bold;
    }
    main #contactArea_tel dl dd .tel {
        font-family: "Figtree", sans-serif;
        font-weight: 500;
        letter-spacing: 0.1em;
        margin-bottom: 4px;
    }
    main #contactArea_tel dl dd .tel a {
        font-size: 2.4rem;
    }
    main #contactArea_tel dl dd .tel a::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        margin-right: 5px;
        margin-bottom: -3px;
        background: url(../../images/common/icon/tel_b.svg) no-repeat left center;
        background-size: contain;
    }
    main #contactArea_tel dl dd .hours {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0;
    }

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

    main #contactArea_tel {
        margin-top: 20px;
    }
    main #contactArea_tel dl {
        display: block;
        padding: 32px 22px;
        width: revert;
    }
        main #contactArea_tel dl dt {
            text-align: center;
            margin-bottom: 16px;
        }
        main #contactArea_tel dl dd .tel {
            text-align: center;
        }
}


/* ◇ #simulation
-------------------------------- */
#simulation{

    .leadText{
        text-align: center;
    }
    .leadText + *{
        margin-top: 53px;
    }
    
    #questions{
        .question{
            background: var(--bg-color-gray);
            padding: 52px 8.9%;
        }
        
        .question .title{
            font-size: 2.2rem;
            text-align: center;
        }
        .question .title + *{
            margin-top: 43px;
        }
        .question .title .step{
            font-size: 1.6rem;
            display: inline-block;
            margin-bottom: 14px;
            padding: 4px 20px;
            border-radius: 80px;
            line-height: 1.1;
            color: #fff;
            background: var(--bg-color-red);
        }
    
        .question .flex_box{
            justify-content: center;
            gap:25px 2%;
        }
        .question .flex_box li{
            width: 32%;
        }

        .question .flex_box label{
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 75px;
            border: 1px solid #CECECE;
            background: #fff;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            transition: .4s;
            padding-left: 29px;
            box-sizing: border-box;
        }

        .question .flex_box label input{
            position: absolute;
            top: 50%;
            left: 12px;
            transform: translateY(-50%);
        }
        
        .question .flex_box label:has(:checked){
            color: #670000;
            border: 2px solid #670000;
        }
        
        @media only screen and
        (max-width : 767px) {

            .question{
                background: var(--bg-color-gray);
                padding: 8vw 4vw;
            }

            .question .title{
                font-size: 1.6rem;
            }
            .question .title + *{
                margin-top: 5vw;
            }
            .question .title .step{
                font-size: 1.3rem;
            }

            .question .flex_box{
                gap:2vw 4%;
            }
            .question .flex_box li{
                width: 47%;
            }

            .question .flex_box label{
                font-size: 1.4rem;
                height: 3.4em;
                line-height: 1.2;
                padding-left: 20px;
                text-align: left;
            }

            .question .flex_box label input{
                left: 0px;
                vertical-align: top;
            }

        }

        
        
    }
 

    #results{
        margin-top: 93px;
        padding: 63px 0 100px 0;
        background: #670000;
        
        .title{
            font-size: 2.8rem;
            color: #fff;
        }
        .title::before{
            display: block;
            margin-inline:auto;
            margin-bottom: 19px;
            content: "";
            background: url("../../images/common/icon/simulation.svg") 0 0 no-repeat;
            background-size: 100% auto;
            width: 31px;
            height: 39px;
        }
        
        @media only screen and
        (max-width : 767px) {

            margin-top: 12vw;
            padding: 10vw 0 10vw 0;

            .title{
                font-size: 2.0rem;
            }
            .title::before{
                margin-bottom: 9px;
            }

        }
                
        .view_contact{
            display: none;
        }
        
        .viewer{
            background: #fff;
            
            .recommend{
                width: 42.6%;
                padding: 66px 10px;
            }
            
            .recommend h3{
                font-size: 2.2rem;
                text-align: center;
                margin-bottom: 44px;
            }
            .recommend h3 em{
                margin-top: 12px;
                display: inline-block;
                font-size: 3.2rem;
            }
            
            @media only screen and
            (max-width : 767px) {

                .recommend{
                    width: 100%;
                    padding: 10vw 6vw;
                }

                .recommend h3{
                    font-size: 1.8rem;
                    margin-bottom: 5vw;
                }
                .recommend h3 em{
                    margin-top: 8px;
                    font-size: 2.2rem;
                }

            }

            .estimate{
                flex-grow: 1;
                background: #F3F1EE;
                padding: 66px 10px;
            }
            
            .estimate .priceBox{
                margin-inline:auto;
                margin-bottom: 36px;
            }
            
            .estimate .priceBox dt span{
                display: inline-block;
                padding: 7px 12px;
                line-height: 1.1;
                color: #fff;
                background: #000;
                border-radius: 80px;
            }
            .estimate .priceBox .price{
                font-size: 2.6rem;
                padding-left: 14px;
            }
            .estimate .priceBox .price em{
                font-size: 4.6rem;
            }
            
            @media only screen and
            (max-width : 767px) {

                .estimate{
                    padding: 10vw 6vw;
                }

                .estimate .priceBox{
                    margin-bottom: 24px;
                }

                .estimate .priceBox dt span{
                    font-size: 1.3rem;
                }
                .estimate .priceBox .price{
                    font-size: 2.0rem;
                    padding-left: 14px;
                }
                .estimate .priceBox .price em{
                    font-size: 3.0rem;
                }

            }
        }
    }
    
    .explanation{
        margin-top: 80px;
    }
    
    @media only screen and
    (max-width : 767px) {

        .explanation{
            margin-top: 10vw;
        }

    }
    
}

/* ◇ #course
-------------------------------- */
#course{

    /* ◇ courseList
    -------------------------------- */
    .courseList ul.navigation{
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap:0 20px;
    }

        .courseList ul.navigation li{
            width: 265px;
            max-width: 50%;
        }
        .courseList ul.navigation li a{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            border-radius: 0 12px 0 0;
            background: #BFBFBF;
            color: #fff;
            transition: .4s;
        }
        .courseList ul.navigation li a:hover{
            background: #CFCFCF;
        }
        .courseList ul.navigation li.active a{
            background: #B72B2F;
        }
        .courseList ul.navigation li.active a:hover{
            background: #A1282C;
        }

     /* ◇ content
    -------------------------------- */
    .content{
        border-top:3px solid #B72B2F;
        padding: 64px 8.55%;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
    }

    .content section + section{
        margin-top: 56px;
    }

    .content .lead_text + section{
        margin-top: 45px;
    }

    @media only screen and
    (max-width : 767px) {
        
        .content{
            padding: 8vw 6vw;
        }

        .content section + section{
            margin-top: 8vw;
        }

        .content .lead_text{
            font-size: var(--font-size-m);
        }
        
        .content .lead_text + section{
            margin-top: 8vw;
        }
    }
    

     /* ◇ priceIn
    -------------------- */
    .content .setList > li{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 95px;
        background: #F3F1EE;
        text-align: center;
        text-wrap: balance;
        font-size: var(--font-size-s);
    }

     /* ◇ priceTable
    -------------------- */
    table.priceTable th{
        font-size: var(--font-size-m);
    }

    table.priceTable thead .mini{
        width: 12.5%;
    }    

    table.priceTable tbody th,
    table.priceTable tbody td{
        text-align: center;
        padding:23px 10px;
    }

    table.priceTable tbody td{
        text-align: center;
        padding:23px 10px;
    }

    table.priceTable tbody td.price em{
        font-size: 2.8rem;
        font-family: "Figtree", sans-serif;
        font-weight: 500;
        letter-spacing: 0.1em;
    }

    table.priceTable ._s{
        font-size: var(--font-size15);
    }

    * + ul.asterisk{
        margin-top: 20px;
        font-size: var(--font-size-ss);
    }
    
    @media only screen and
    (max-width : 767px) {
        
        table.priceTable tbody th,
        table.priceTable tbody td{
            padding:12px 10px;
            font-size: var(--font-size-s);
        }

        table.priceTable tbody td.price em{
            font-size: 2.0rem;
        }
        
        .tableOuter table.priceTable th,
        .tableOuter table.priceTable td{
            white-space: nowrap;
        }
    }
    
     /* ◇ optionTable
    -------------------- */
    table.optionTable th{
        font-size: var(--font-size-m);
    }
    table.optionTable tbody td.price{
        font-size: var(--font-size-ss);
    }
    table.optionTable tbody td.price em{
        font-size: 2.3rem;
        font-family: "Figtree", sans-serif;
        font-weight: 500;
        letter-spacing: 0.1em;
    }

    @media only screen and
    (max-width : 767px) {
        table.optionTable tbody th,
        table.optionTable tbody td{
            padding:12px 10px;
            font-size: var(--font-size-s);
        }
        
        table.optionTable tbody td.price em{
            font-size: 1.8rem;
        }
    }
    
     /* ◇ buttonStyle.more
    -------------------- */
    .content > .buttonStyle.more{
        margin-top: 60px;
    }
    @media only screen and
    (max-width : 767px) {
        
        .content > .buttonStyle.more{
            margin-top:8vw;
        }
    }
}

/* ◇ .menu
-------------------------------- */
.menus{
    
    padding:62px 73px;
    background: #F3F1EE;
    
    .titleArea .title._lv1 + *{
        margin-top: 28px;
    }
    .titleArea .text{
        line-height: 1.75;
    }
 
    nav dl.list + dl.list{
        margin-top: 28px;
    }
    
    nav dl.list dt{
        position: relative;
        padding-left: 20px;
        font-size: var(--font-size-l);
    }
    nav dl.list dt::before{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 12px;
        height: 3px;
        background: #000;
        transform: translateY(-50%);
    }
    nav .links{
        gap:34px;
    } 
    nav .links li a{
        position: relative;
        display: block;
        font-size: var(--font-size17);

        padding: 17px 23px 17px 0;
        border-bottom: 1px solid #DBDAD8;
    }
    nav .links li a::before{
        content: "";

        position: absolute;
        top: 50%;
        right: 2%;
        transform: translateY(-50%);

        width: 22px;
        height: 22px;

        background: url("../../images/common/icon/circle_arrow.svg") 0 0 no-repeat;
        background-size: 100% auto;
        transition: .4s;
    }
    nav .links li a:hover::before{
        right: 0%;
        transform: scale(1.1) translateY(-50%);
    }
    
    @media only screen and
    (max-width : 767px) {
        
        padding:8vw;
        
        nav{
            margin-top: 5vw;
        }
        nav dl.list + dl.list{
            margin-top: 8vw;
        }
            nav .links{
            gap:2vw;
        } 
    }
}




/* --------------------------------
■ tb
-------------------------------- */ 
@media (max-width: 1000px) and (min-width: 768px) {

}


/* --------------------------------
■ sp
-------------------------------- */ 
@media only screen and
(max-width : 767px) {

}