/*背景*/
body {
    background-color: #8ac8eb;
}

/*タイトル*/
.top {
    padding-top: 10vw;
    margin-bottom: 5vw;
}

/*ステップバー*/
.step {
    width: 60%;
    position: relative;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5vw;
}
.step li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    color: #999;
    font-weight: bold;
    font-size: 1.25vw;
    counter-increment: steps;
}
.step li:before {
    display: block;
    width: 4vw;
    height: 4vw;
    content: '';
    line-height: 4vw;
    margin: 0.25vw auto 1vw auto;
    font-size: 2vw;
    text-align: center;
    border-radius: 50%;
    background-color: #eeefee;
    content: counter(steps);
}
.step li.active,
.step li.complete{
    color: #1da2ee;
}
.step li.active:before,
.step li.complete:before {
    background-color: #1da2ee;
    color: #eeefee;
}
.step li.active:after,
.step li.complete:after {
    background-color: #1da2ee;
}

/*ボタン*/
button.enter:disabled, input.enter:disabled {
    background-color: #c7c268; 
    cursor: not-allowed;
}
.enter_4 {
    width: 15vw;
    text-align: center;
    background-color: #FFF100;
    color: #5b4e5b;
    font-size: 1.25vw;
    border-radius: 1.5vw;
    padding: 1vw;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
    border-style: none;
}
.disabled {
    background-color: #c7c268; 
    cursor: not-allowed;
}

/*再検索フォーム*/
.re_search {
    width: 60vw;
    font-size: 1.25vw;
    background-color: #eeefeec5;
    margin: 0 auto;
    padding: 2.5vw;
    border-radius: 1vw;
    color: #5B4E4E;
    display: flex;
    flex-direction: column;
    margin-bottom: 5vw;
}
.rental_date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5vw;
}
.sankaku {
    margin-top: 1vw;
    margin-bottom: 1vw;
}
.vehicles,
.rental_item,
.vehicle_item {
    display: flex;
    justify-content: space-between;
}
.rental_item {
    width: 100%;
}
.rental_item h3,
.vehicle_item h3 {
    padding-top: 0.2vw;
    padding-bottom: 0.2vw;
}
.vehicle_item {
    width: 100%;
    margin-right: 7.9vw;
}
.rental_items {
    width: 12vw;
    background-color: #fff;
    color: #5B4E4E;
    padding: 0.2vw;
    border-radius: 0.2vw;
}
.select_items {
    width: 12vw;
    background-color: #fff;
    color: #5B4E4E;
    padding: 0.2vw;
    border-radius: 0.2vw;
    -moz-appearance: menulist-button;
    -webkit-appearance: menulist-button;
    appearance: menulist-button;
}
.vehicle_select_items {
    background-color: #fff;
    color: #5B4E4E;
    padding: 0.2vw;
    border-radius: 0.2vw;
    -moz-appearance: menulist-button;
    -webkit-appearance: menulist-button;
    appearance: menulist-button;
}
.re_btn {
    margin-right: 4vw;
}
.re_search_btn {
    background-color: #1da2ee;
    color: #fff;
    border-radius: 1.5vw;
    padding: 0.5vw 1vw;
    border-style: none;
    white-space: nowrap;
    transition: .3s;
}
.re_search_btn:hover {
    transform: scale(1.1);
    transition: .3s;
}
.alert {
    text-align: center;
    margin-top: 1.5vw;
}
/*検索結果表示*/
.search_results {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 15vw;
}
.search_results h2 {
    font-size: 2.5vw;
    color: #1da2ee;
    margin-top: 2vw;
    margin-bottom: 2vw;
}
.vehicle_list {
    width: 80vw;
    background-color: #eeefeec5;
    color: #5B4E4E;
    padding: 2.5vw;
    border-radius: 1vw;
    margin-bottom: 2.5vw;
}
.vehicle_info {
    display: flex;
    justify-content: space-between;
}
.vehicle_list h3 {
    font-size: 2vw;
    margin-bottom: 1.5vw;
    margin-left: 0.5vw;
}
.vehicle_img {
    width: 15vw;
    height: 10vw;
}
.vehicles_item table {
    width: 45vw;
    margin-bottom: 0.5vw;
    border-collapse: separate;
    border-spacing: 0.5vw;
    text-align: center;
    font-size: 1.25vw;
}
.vehicles_item th, .vehicles_item td {
    text-align: center;
    font-weight: bold;
    padding: 1vw;
}
.vehicles_item thead {
    background-color: #ffb743;
}
.vehicles_item tbody {
    background-color: #fff;
}
.vehicles_item p {
    line-height: 1.5vw;
}
.reserve_btn {
    align-self: flex-end;
}
.select_btn {
    background-color: #1da2ee;
    color: #fff;
    border-radius: 0.8vw;
    padding: 0.5vw 1vw;
    margin-bottom: 0.5vw;
    border-style: none;
    white-space: nowrap;
    transition: .3s;
}
.select_btn:hover {
    transform: scale(1.1);
    transition: .3s;
}
.no_vehicle {
    color: #5B4E4E;
    font-size: 2vw;
}
/*フォーム*/
.step_form {
    width: 80vw;
    color: #eeefee;
    margin: 0 auto;
    padding-bottom: 10vw;
    display: flex;
    flex-direction: column;
}
.hr {
    width: 70vw;
    margin-bottom: 2.5vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
/*オプション選択*/
.option {
    margin-bottom: 2.5vw;
    margin-left: 15%;
    display: flex;
}
.option_navi {
    margin-bottom: 2.5vw;
    margin-left: 15%;
    display: flex;
}
.option_loop {
    margin-bottom: 2.5vw;
    margin-left: 15%;
    display: flex;
}
.option_label {
    width: 20vw;
    font-size: 1.25vw;
}
.option_navi_label {
    width: 20vw;
    font-size: 1.25vw;
}
.option_loop_label {
    width: 20vw;
    display: flex;
    flex-direction: column;
}
.option_item {
    font-size: 1vw;
    color: #5B4E4E;
}
.option_navi_item {
    font-size: 1vw;
    color: #5B4E4E;
}
.option_child_item {
    font-size: 1vw;
    color: #5B4E4E;
}
.navi {
    display: flex;
    line-height: 1.5vw;
}
.loop {
    font-size: 1vw;
    color: #5B4E4E;
}
.option1 {
    margin-left: 0.25vw;
    font-size: 1.25vw;
    color: #f81850;
}
.option2 {
    font-size: 0.9vw;
}
.option3 {
    margin-right: 0.25vw;
    font-size: 1.25vw;
    color: #f81850;
}
.option_price {
    margin-top: 0.5vw;
    font-size: 1vw;
}
.select {
    background-color: #eeefee;
    color: #5B4E4E;
    padding: 0.5vw;
    border-radius: 0.2vw;
    -moz-appearance: menulist-button;
    -webkit-appearance: menulist-button;
    appearance: menulist-button;
}
.child {
    color: #5B4E4E;
}
.child p {
    margin-bottom: 0.5vw;
}
.child_item {
    display: flex;
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
}
.option_child {
    margin-top: 0.5vw;
    font-size: 1vw;
}
.child_pieces {
    width: 15vw;
    margin-right: 5vw;
}
.baby_seat,
.child_seat,
.junior_seat {
    width: 10vw;
}
.delivery {
    margin-bottom: 2.5vw;
}
.delivery_item {
    width: 25vw;
    height: 5vh;
    border-radius: 0.5vw;
    color: #5B4E4E;
}
/*お客様情報入力*/
.step_item {
    margin-bottom: 2.5vw;
    margin-left: 19%;
    margin-right: 19%;
    display: flex;
    justify-content: space-between;
}
.label {
    width: 20vw;
    font-size: 1.25vw;
}
.inputs {
    float: right;
    width: 25vw;
    height: 5vh;
    border-radius: 0.5vw;
    color: #5B4E4E;
}
.input {
    float: right;
    width: 25vw;
    height: 30vh;
    border-radius: 0.5vw;
    color: #5B4E4E;
}
.item_tel {
    display: flex;
    flex-direction: column;
}
.item_tel p {
    margin-top: 0.25vw;
    color: #5B4E4E;
}
.conf {
    display: flex;
    flex-direction: column;
} 
.conf p {
    margin-top: 1vw;
    margin-bottom: 0.25vw;
    color: #5B4E4E;
}
.jpg {
    color: #5B4E4E;
    margin-top: 0.5vw;
}
.license {
    margin-bottom: 2vw;
}
.license_item {
    margin-right: 1vw;
}
.radio input {
    margin-right: 0.5vw;
}
.radio div {
    margin-bottom: 0.5vw;
    white-space: nowrap;
    color: #5B4E4E;
}
.required {
    background-color: #f81850;
    font-size: 0.8vw;
    padding: 0.15vw;
    border-radius: 0.5vw;
    margin-right: 0.5vw;
}
.any {
    background-color: #2718f8;
    font-size: 0.8vw;
    padding: 0.15vw;
    border-radius: 0.5vw;
    margin-right: 0.5vw;
}
.infomation {
    width: 60vw;
    border: solid 0.35vw;
    padding: 1.25vw;
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;
}
.infomation p {
    font-size: 1vw;
}
.infomation h3 {
    font-size: 1.25vw;
}
.infomation input {
    margin-right: 0.25vw;
}
.info {
    color: #f81850;
    padding: 1.25vw;
    white-space: nowrap;
    font-size: 1vw;
    text-align: center;
}
/*ボタン*/
.btn_posi {
    width: 50vw;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}
.btn input[type="button"] {
    transition: .3s;
}
.btn input[type="button"]:hover {
    transform: scale(1.1);
    transition: .3s;
}
.btn button[type="button"] {
    transition: .3s;
}
.btn button[type="button"]:hover {
    transform: scale(1.1);
    transition: .3s;
}
.btn {
    margin: 1.5vw;
}
.btn input[type="submit"] {
    transition: .3s;
}
.btn input[type="submit"]:hover {
    transform: scale(1.1);
    transition: .3s;
}
.caution {
    text-align: center;
    color: #f81850;
}
.caution h2 {
    font-size: 2vw;
    margin-bottom: 0.5vw;
}
.caution p {
    font-size: 1.25vw;
    margin-bottom: 2.5vw;
}
.payjp_btn {
    text-align: center;
    margin-bottom: 2.5vw;
}

/*予約確認画面*/
.confirmation {
    width: 80vw;
    color: #eeefee;
    margin: 0 auto;
    padding-bottom: 10vw;
    display: flex;
    flex-direction: column;
}
.confirmation h2 {
    font-size: 2.5vw;
    color: #1da2ee;
    margin-top: 2vw;
    margin-bottom: 2vw;
}
.table_item {
    border-collapse:  collapse;
    border: solid 0.15vw;
    font-size: 1.5vw;
}
.table_item th,
.table_item td {
    border: solid 0.15vw;
    padding: 1vw;
    font-weight: bold;
}
.schedule {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2vw;
}
.schedule_table {
    margin-bottom: 2vw;
}
.schedule_table_th {
    width: 39vw;
    text-align: center;
    background-color: #999;
}
.table {
    width: 80vw;
    margin-bottom: 2vw;
}
.table th {
    width: 25vw;
}
.price {
    text-align: right;
}
.change_btn {
    text-align: right;
    display: flex;
    justify-content: space-between;
}
.change_btn_option {
    width: 20vw;
}
.change {
    background-color: #1da2ee;
    font-size: 1vw;
    border-radius: 1.5vw;
    padding: 0.5vw 1vw;
    border-style: none;
    white-space: nowrap;
    margin-bottom: 2.5vw;
    transition: .3s;
}
.change:hover {
    transform: scale(1.1);
    transition: .3s;
}
.charge_details {
    width: 80vw;
    margin-bottom: 2vw;
}
.charge_details th {
    width: 25vw;
}
.charge_details_td {
    width: 40vw;
}
.charge_table {
    width: 40vw;
    margin-left: 40vw;
    margin-bottom: 2vw;
}
.charge_table td {
    width: 15vw;
}
.table span {
    font-size: 1vw;
    font-weight: lighter;
}
.customer {
    margin-bottom: 5vw;
}

/*利用規定*/
.rule {
    width: 80vw;
    border: solid 0.15vw;
    padding: 1.25vw;
    margin: 0 auto;
    white-space: nowrap;
    margin-bottom: 2vw;
}
.rule h3 {
    font-size: 1.75vw;
    margin-bottom: 1vw;
}
.rule h4 {
    font-size: 1.5vw;
    margin-bottom: 0.75vw;
}
.rule p {
    font-size: 1.17vw;
    margin-bottom: 0.75vw;
}
.rule_flex {
    display: flex;
    align-items: center
}
.rule_table1 {
    width: 100%;
    border-collapse:  collapse;
    border: solid 0.15vw;
    font-size: 1.17vw;
    margin-bottom: 0.75vw;
}
.rule_table1 th {
    text-align: center;
    border: solid 0.15vw;
    background-color: #999;
    padding: 0.5vw;
}
.rule_table1 td {
    text-align: center;
    border: solid 0.15vw;
    padding: 0.5vw;
}
.rule_table2 {
    width: 100%;
    border: solid 0.15vw;
    font-size: 1.17vw;
    margin-bottom: 0.75vw;
}
.rule_table2 th {
    text-align: center;
    background-color: #999;
    padding: 0.5vw;
}
.rule_table2 td {
    text-align: center;
    border: solid 0.15vw;
    padding: 0.5vw;
}
.rule_flex h3 {
    margin-right: 0.5vw;
}
.rule_li1 {
    list-style-type: disc;
    font-size: 1.17vw;
    margin-left: 1.75vw;
    font-weight: bold;
}
.rule_li1 li {
    margin-bottom: 0.75vw;
}
.rule_li2 {
    list-style-type: decimal;
    font-size: 1.17vw;
    margin-left: 1.75vw;
    margin-bottom: 0.75vw;
}
.rule_li3 {
    list-style-type: disc;
    font-size: 1.17vw;
    margin-left: 1.75vw;
}
.rule_li3 li {
    margin-bottom: 0.75vw;
}
.license_img {
    width: 25vw;
}
/*予約完了*/
.complete_reserve {
    text-align: center;
    line-height: 21vw;
    font-size: 15vw;
    color: #eeefee;
    margin-top: 10vw;
    margin-bottom: 3vw;
}
.complete_reserve span {
    display: inline-block;
    background-color: #00cc33;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
}
.complete_title {
    font-size: 3vw;
    text-align: center;
    color: #5B4E4E;
    margin-bottom: 5vw;
}
.complete_box {
    width: 50vw;
    text-align: center;
    line-height: 2.5vw;
    background-color: #eeefeeab;
    color: #5B4E4E;
    padding: 1vw;
    border-radius: 1vw;
    font-size: 1.25vw;
    margin: 0 auto;
    margin-bottom: 5vw;
}
.top_btn {
    text-align: center;
    width: 20vw;
    margin: 0 auto;
    margin-bottom: 15vw;
    transition: .3s;
}
.top_btn:hover {
    transform: scale(1.1);
    transition: .3s;
}
/*カード情報を入力*/
.pay_title {
    color: #3f3f3f;
    margin-top: 5vw;
    font-size: 2.5vw;
    text-align: center;
}
.pay_p {
    color: #3f3f3f;
    font-size: 1.25vw;
    text-align: center;
}
.pay_form {
    margin: 0 auto;
    text-align: center;
}
/*タブレット*/
@media screen and (max-width: 1025px) and (min-width: 450px) {
    /*フォーム*/
    .step_form {
        width: 85vw;
    }
    .hr {
        width: 80vw;
    }
    /*ボタン*/

    .enter_4 {
        width: 22.5vw;
        font-size: 2vw;
        padding: 1.5vw;
        border-radius: 2.5vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }
    /*再検索フォーム*/
    .re_search {
        width: 80vw;
        font-size: 1.8vw;
    }
    .rental_date {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 4.5vw;
    }
    .sankaku {
        margin-top: 2vw;
        margin-bottom: 2vw;
    }
    .rental_item {
        width: 100%;
    }
    .vehicle_item {
        width: 100%;
        margin-right: 5vw;
    }
    .rental_items {
        width: 18vw;
    }
    .select_items {
        width: 18vw;
    }
    .re_btn {
        margin-right: 2vw;
    }
    /*検索結果表示*/
    .search_results {
        width: 85vw;
    }
    .vehicle_list {
        width: 85vw;
    }
    .vehicle_list h3 {
        font-size: 2.5vw;
    }
    .vehicle_img {
        width: 16vw;
        height: 11vw;
    }
    .vehicles_item {
        margin-left: 2.5vw;
        margin-right: 2.5vw;
    }
    .vehicles_item table {
        width: 47vw;
        margin-bottom: 1vw;
        font-size: 2vw;
    }
    .vehicles_item p {
        font-size: 2vw;
        line-height: 2.5vw;
    }
    .select_btn {
        font-size: 2vw;
        white-space: wrap;
    }
    /*オプション選択*/
    .child_pieces {
        width: 20vw;
    }
    .option {
        margin-left: 10%;
    }
    .option_navi {
        margin-left: 10%;
    }
    .option_loop {
        margin-left: 10%;
    }
    .option_label {
        font-size: 2vw;
        margin-right: 2.5vw;
    }
    .option_navi_label {
        font-size: 2vw;
        margin-right: 2.5vw;
    }
    .option_loop_label {
        font-size: 2vw;
        margin-right: 2.5vw;
    }
    .option_item {
        font-size: 1.35vw;
    }
    .option_price {
        font-size: 1.35vw;
    }
    .option_navi_item {
        font-size: 1.35vw;
    }
    .option_child_item {
        font-size: 1.35vw;
    }
    .option1 {
        font-size: 1.75vw;
    }
    .option3 {
        font-size: 1.75vw;
    }
    .option4 {
        font-size: 1.75vw;
    }
    .option_child {
        font-size: 1.5vw;
    }
    .option_child_p {
        font-size: 1.3vw;
    }
    .delivery_item {
        width: 35vw;
        height: 3vh;
    }
    /*お客様情報入力*/
    .step_item {
        margin-left: 10%;
        margin-right: 10%;
    }
    .inputs {
        width: 35vw;
        height: 3vh;
    }
    .label {
        font-size: 2vw;
    }
    .required {
        font-size: 1.25vw;
    }
    .license_img {
        width: 30vw;
    }
    /*予約完了*/
    .complete_title {
        font-size: 4.5vw;
    }
    .complete_box {
        width: 60vw;
        line-height: 3.5vw;
        padding: 2vw;
        border-radius: 1vw;
        font-size: 1.5vw;
    }
    /*カード情報を入力*/
    .pay_title {
        margin-top: 20vw;
        font-size: 2.8vw;
    }
    .pay_p {
        font-size: 1.8vw;
    }
}
/*スマホ*/
@media screen and (max-width: 450px) {
    /*ステップバー*/
    .step {
        width: 70%;
    }
    .step li {
        font-size: 1.8vw;
    }
    .step li:before {
        display: block;
        width: 5vw;
        height: 5vw;
        line-height: 5vw;
        font-size: 2.5vw;
    }
    /*フォーム*/
    .step_form {
        width: 95vw;
    }
    .hr {
        width: 95vw;
    }
    
    /*ボタン*/
    .enter_4 {
        width: 22.5vw;
        font-size: 2vw;
        padding: 1.5vw;
        border-radius: 2.5vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }
    /*再検索フォーム*/
    .re_search {
        width: 90vw;
        font-size: 2.5vw;
    }
    .rental_date {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5vw;
    }
    .sankaku {
        margin-top: 2.5vw;
        margin-bottom: 2.5vw;
    }
    .rental_item {
        width: 100%;
    }
    .rental_items {
        width: 22vw;
    }
    .select_items {
        width: 22vw;
    }
    .vehicle_item {
        width: 100%;
        margin-right: 5vw;
    }
    .re_btn {
        margin-right: 2vw;
    }
    /*検索結果表示*/
    .search_results {
        width: 85vw;
    }
    .search_results h2 {
        font-size: 3vw;
    }
    .vehicle_list {
        width: 85vw;
    }
    .vehicle_list h3 {
        font-size: 2.5vw;
    }
    .vehicle_img {
        margin-top: 1.5vw;
        width: 15vw;
        height: 10vw;
    }
    .vehicles_item {
        margin-left: 2.5vw;
        margin-right: 2.5vw;
    }
    .vehicles_item table {
        width: 47vw;
        margin-bottom: 1vw;
        font-size: 2vw;
    }
    .vehicles_item p {
        font-size: 2vw;
        line-height: 2.5vw;
    }
    .select_btn {
        font-size: 2vw;
        white-space: wrap;
    }
    /*オプション選択*/
    .required {
        font-size: 2vw;
        padding: 0.5vw;
        border-radius: 0.5vw;
        margin-right: 0.5vw;
    }
    .any {
        font-size: 2vw;
        padding: 0.5vw;
        border-radius: 0.5vw;
        margin-right: 0.5vw;
    }
    .child_pieces {
        width: 20vw;
    }
    .option {
        display: flex;
        flex-direction: column;
        margin-left: 5%;
        margin-right: 5%;
    }
    .option_navi {
        margin-left: 5%;
        margin-right: 5%;
    }
    .option_loop {
        margin-left: 5%;
        margin-right: 5%;
        justify-content: space-between;
        line-height: 2.5vw;
        margin-top: 3.5vw;
        margin-bottom: 3.5vw;
    }
    .option_label {
        width: 100%;
        display: flex;
        font-size: 3.5vw;
        line-height: 2.5vw;
        margin-top: 3.5vw;
        margin-bottom: 3.5vw;
    }
    .option_navi_label {
        width: 30vw;
        font-size: 3.5vw;
        line-height: 2.5vw;
        margin-top: 3.5vw;
        margin-bottom: 3.5vw;
    }
    .option_loop_label {
        width: 55vw;
        font-size: 3.5vw;
    }
    .navi {
        margin-top: 3.5vw;
        margin-bottom: 3.5vw;
    }
    .option_price {
        font-size: 2.5vw;
        margin-left: 5vw;
    }
    .option_item {
        font-size: 3.5vw;
        line-height: 5.5vw;
        font-weight: lighter;
        margin-bottom: 3.5vw;
    }
    .option_navi_item {
        font-size: 2.5vw;
        font-weight: lighter;
        line-height: 3.5vw;
    }
    .option_child_item {
        font-size: 2.7vw;
        font-weight: lighter;
        margin-bottom: 4vw;
    }
    
    .option1 {
        font-size: 4vw;
        font-weight: bold;
    }
    .option3 {
        width: 15vw;
        font-size: 4vw;
        line-height: 2.5vw;
        font-weight: bold;
        margin-bottom: 2vw;
    }
    .child_item {
        margin-top: 3vw;
        margin-left: 10vw;
        margin-bottom: 3.5vw;
    }
    .child_pieces {
        width: 35vw;
    }
    .option_child {
        font-size: 3vw;
    }
    .option_child_p {
        font-size: 2.7vw;
    }
    .baby_seat,
    .child_seat,
    .junior_seat {
        width: 20vw;
        margin-left: 2.5vw;
    }
    .loop {
        font-size: 3vw;
    }
    .delivery_item {
        width: 50vw;
        height: 3vh;
    }
    /*お客様情報入力*/
    .step_item {
        margin-left: 5%;
        margin-right: 5%;
    }
    .inputs {
        width: 50vw;
        height: 3vh;
    }
    .label {
        width: 30vw;
        font-size: 2.5vw;
    }
    .required {
        font-size: 1.7vw;
    }
    .form_p {
        font-size: 2vw;
    }
    .conf p {
        font-size: 2vw;
    }
    .item_tel p {
        font-size: 2vw;
    }
    .jpg p {
        font-size: 2vw;
    }
    .license_item {
        font-size: 2.5vw;
    }
    input {
        font-size: 2vw;
    }
    select {
        font-size: 2.5vw;
    }
    .radio div {
        font-size: 2vw;
    }
    /*予約確認画面*/
    .caution h2 {
        font-size: 3vw;
        margin-bottom: 1.5vw;
    }
    .caution p {
        font-size: 2vw;
        margin-bottom: 2.5vw;
    }
    .confirmation {
        width: 90vw;
        margin: 0 auto;
        padding-bottom: 10vw;
        display: flex;
        flex-direction: column;
    }
    .confirmation h2 {
        font-size: 3.5vw;
        margin-top: 2vw;
        margin-bottom: 2vw;
    }
    .table_item th,
    .table_item td {
        border: solid 0.25vw;
        padding: 1vw;
        font-weight: bold;
    }
    .table_item {
        border-collapse:  collapse;
        font-size: 2.5vw;
    }
    .schedule_table_th {
        width: 44vw;
    }
    .table {
        width: 90vw;
    }
    .change {
        font-size: 2vw;
        border-radius: 2.5vw;
        padding: 1vw 1.5vw;
        border-style: none;
    }
    .charge_details {
        width: 90vw;
    }
    .charge_table {
        width: 50vw;
    }
    .charge_table td {
        width: 25vw;
    }
    .table span {
        font-size: 2vw;
    }
    .license_img {
        width: 30vw;
    }
    /*利用規定*/
    .rule {
        width: 90vw;
        border: solid 0.25vw;
        white-space: normal;
    }
    .rule h3 {
        font-size: 3vw;
        margin-bottom: 1.5vw;
    }
    .rule h4 {
        font-size: 2.5vw;
        margin-bottom: 1.5vw;
    }
    .rule p {
        font-size: 2vw;
        margin-bottom: 1.5vw;
    }
    .rule_li1 {
        font-size: 2vw;
    }
    .rule_li1 li {
        margin-left: 2vw;
    }
    .rule_li2 {
        font-size: 2vw;
        margin-left: 2vw;
        margin-bottom: 1.5vw;
    }
    .infomation {
        width: 80vw;
        border: solid 0.5vw;
        padding: 2.5vw;
    }
    .infomation p {
        font-size: 2vw;
    }
    .infomation h3 {
        font-size: 2.5vw;
    }
    .info{
        font-size: 2vw;
    }
    /*予約完了*/
    .complete_title {
        font-size: 4.5vw;
    }
    .complete_box {
        width: 80vw;
        line-height: 3.5vw;
        padding: 2vw;
        border-radius: 1vw;
        font-size: 2.25vw;
    }
    /*カード情報を入力*/
    .pay_title {
        margin-top: 20vw;
        font-size: 3.5vw;
    }
    .pay_p {
        font-size: 2.25vw;
    }
}

