@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,900&display=swap');

/*---------------------------------
Color
-----------------------------------

Main : #2E5284
Sub : #3E7BDD #BCEAFF #FFEB79
Accent : #D52D1F

-----------------------------------
Font
-----------------------------------

ja : 'Noto Sans JP', sans-serif;
en : 'Roboto', sans-serif;

---------------------------------*/

html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
    color: #333;
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f2f6f6;
}

div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:visited {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
}

input[type="text"],
input[type="email"],
select,
input[type="tel"] {
    -webkit-appearance:none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    -webkit-appearance:none;
}

textarea {
    -webkit-appearance:none;
}

input[type="submit"]:focus {
    outline: 0;
}

/*---------------------------------
Common
---------------------------------*/

#wrapper {
    position: relative;
    min-height: 100%;
    height: auto;
}

.obj-fit-img {
    object-fit: cover;
    object-position: center;
    font-family: 'object-fit: cover; object-position: center;'
}

.container {
    max-width: 94%;
    margin: 0 auto;

}

.display_pc {
    display: none;
}

.display_sp {
    display: block;
}

.underline {
    background: linear-gradient( transparent 60% , #FFEB79 0% );
}

.link_underline {
    text-decoration: underline;
}

.bg_gray {
    background: #EFEFEF;
}

.-fc_red {
    color: #D52D1F !important;
}

.-fc_navy {
    color: #004ea2;
}

.-fc_white {
    color: #fff;
}

.-fc_gray {
    color: #999;
}

.-f_normal {
    font-weight: 400 !important;
}

.bold {
    font-weight: bold;
}

.-fs_11 {
    font-size: 1.1rem;
}

.-fs_12 {
    font-size: 1.2rem;
}

.-fs_14 {
    font-size: 1.4rem !important;
}

.-fs_16 {
    font-size: 1.6rem !important;
}

.-fs_18 {
    font-size: 1.8rem;
}

.highlight {
    background: linear-gradient(transparent 60%, rgba(255, 240, 0, 0.5) 60%);
}

@media (min-width: 768px) {
    #wrapper {
        /* margin-top: 100px; */
    }

    .display_pc {
        display: block;
    }

    .display_sp {
        display: none;
    }
}


@media (min-width: 1149px) {
    #wrapper {
        /* margin-top: 100px; */
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
    }
}

/*
Form
-------------------*/
input::-webkit-input-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
input:-moz-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
input::-moz-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
input:-ms-input-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}

input[type="submit"] {
    cursor: pointer;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form_group_wrapper {
    width: 500px;
    margin: 0 auto;
}

.form_group_wrapper_wide {
    width: 600px;
    margin: 0 auto;
}

.form_group.formField_Error label {
    color: #bf0003;
}

.form_group.formField_Error input, .form_group.formField_Error select, .form_group.formField_Error textarea {
    background:#fff4f4;
}

.-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form_label {
    display: inline-block;
    max-width: 100%;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 8px;
}

.-row .form_label {
    margin: 6px 0 0;
}

.form_label.strong {
    font-size: 1.8rem;
}

.form_control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 4px 8px;
    font-size: 1.8rem;
    background: #F8F8F8;
    border: solid #ddd 1px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07);
    box-sizing: border-box;
}

.form_check_label {
    display: inline-block;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form_group + .form_group {
    margin-top: 16px;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form_control[size],
select.form_control[multiple] {
    height: auto;
}

textarea.form_control {
    min-height: 100px;
    padding: 8px;
}

.select_wrapper {
    position: relative;
}

.select_wrapper::after {
    content: "\f078";
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.6rem;
    pointer-events: none;
}

input[type=checkbox].large_checkbox {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    vertical-align: middle;
}

@media (max-width: 767px) {
    
    .form_control {
        font-size: 1.6rem;
    }
    
    .form_group_wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .form_group_wrapper_wide {
        width: 100%;
        margin: 0 auto;
    }
    
    .-row .form_control {
        width: 70%;
    }

    .-row .form_label {
        margin: 6px 0 0;
        width: 100%;
    }
}


@media (min-width: 768px) {
    input::-webkit-input-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    input:-moz-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    input::-moz-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    input:-ms-input-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .form {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form .form_group {
        margin-top: 16px;
        margin-right: 16px;
    }

    .-row .form_control {
        margin-left: 16px;

    }

    .-row .form_label {
        width: auto;
    }
    
    .form_label.strong {
        font-size: 2.3rem;
    }

    .form_checkboxs {
        margin-left: 16px;
    }

    .form_radios {
        margin-left: 16px;
    }

}

/*
Table
-------------------*/

.table {
    width: 100%;
    max-width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.table_simple th,
.table_simple td {
    border: 1px solid #4d4d4d;
    padding: 6px;
    font-weight: 500;
}

.table_simple > tbody > tr:nth-of-type(2n+1) {
    background: #f8f8f8;
}

.table_scroll_wrapper {
    overflow-x: scroll;
    padding: 8px 0;
}

.table_scroll th,
.table_scroll td {
    border: 1px solid #4d4d4d;
    padding: 6px;
    font-weight: 500;
    white-space: nowrap;
}

.table_scroll > thead th {
    background: #6E7A85;
    color: #fff;
    font-weight: 700;
}

.align_right td {
    text-align: right;
}

td.align_right {
    text-align: right;
}

td.align_center {
    text-align: center;
}

.table_scroll > tbody > tr:nth-of-type(2n+1) td {
    background: #f8f8f8;
}

.table .tatami {
    display: block;
    margin: 4px 0 0;
    background: #609143;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    border-radius: 3px;
    padding: 0;
    font-weight: 700;
    text-align: center;
    min-width: 48px;
    max-width: 80px;
}

.table .floor {
    display: block;
    margin: 4px 0 0;
    background: #916f43;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    border-radius: 3px;
    padding: 0;
    font-weight: 700;
    text-align: center;
    min-width: 48px;
    max-width: 80px;
}

.table .all {
    display: block;
    margin: 4px 0 0;
    background: #ff8a00;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    border-radius: 3px;
    padding: 0;
    font-weight: 700;
    text-align: center;
    min-width: 48px;
    max-width: 80px;
}

.nowrap {
    white-space: nowrap;
}

.table_accordion {
    min-width: 100%;
}

.table_accordion th, .table_accordion td {
    padding: 8px;
    line-height: 1.4em;
    vertical-align: middle;
    border: 1px solid #4d4d4d;
}

.table_accordion td {
    white-space: nowrap;
}

.table_accordion th {
    background: #6E7A85;
    color: #fff;
    font-weight: 700;
}

.table_accordion th + th {
    border-left: 1px solid #e2e2e2;
}

.table_accordion th:last-child {
    border-right: 1px solid #43444D;
}



.table_accordion > tbody > tr:nth-of-type(4n+1) {
    background: #fbfbfb;
}

.table_accordion > tbody > tr:nth-of-type(2n+2) {
    background: #fbfbfb;
}

.table_accordion > tbody > tr:nth-of-type(2n+2) .accordion_detail_item_table td {
    background: #fbfbfb;
}

.table_accordion > tbody > tr:nth-of-type(4n+4) {
    background: #fff;
}

.table_accordion > tbody > tr:nth-of-type(4n+4) .accordion_detail_item_table td {
    background: #fff;
}

.table_accordion > tbody > tr:nth-of-type(2n+2) > td:first-child {
    width: 34px;
    padding: 0;
    border-top: none !important;
}

.table_accordion > tbody > tr > td.-show {
    border-bottom: 2px solid #c7c7c7;
    padding-bottom: 16px;
}

.accordion_toggle {
    position: relative;
    cursor: pointer;
    display: block;
    height: 100%;
    width: 16px;
}

.accordion_toggle::before {
    position: absolute;
    top: -8px;
    content: "\f13a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.8rem;
    color: #009de1;
    border-radius: 50%;
}

.accordion_toggle.-open::before {
    content: "\f139";
    color: #c80000;
}

.accordion_toggle:hover {
    text-decoration: none;
    opacity: 0.7;
}

.accordion_detail {
    display: none;
}

.-show.accordion_detail {
    display: table-cell;
}

.accordion_detail_heading {
    margin: 5px 0;
    padding: 0 0 5px 5px;
    font-size: 1.6rem;
    color: #004ea2;
}

.accordion_detail_heading i {
    margin: 0 3px 0 0;
}

.accordion_detail_item_table {
    width: 100%;
}

.accordion_detail_item_table .-w_160 {
    width: 150px;
}










.table_history {
    width: 100%;
    box-sizing: border-box;
}

.table_history th, .table_history td {
    padding: 0px;
    line-height: 1.4em;
    border: none;
    vertical-align: top;
}

.table_history td {
    /*white-space: nowrap;*/
    display: block;
}

/*
.table_history td::before {
    content: attr(data-label);
    font-size: .9rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}*/

.table_history td+td {
    border-top: none;
}

.table_history > tbody > tr:nth-of-type(2n+2) {
    background: #fbfbfb;
}



/*
.table_history th {
    display: none;
}



.table_history td.index {
    background: #aabed0;
}*/

.table_history .table_history_title_area {
    color: #828282;
    font-size: 1.5rem;
    line-height: 2.0;
    margin: 12px 0 6px;
    border-bottom: 1px solid #bebebe;
}

    
.table_history .table_history_title_inner {
    font-size: 1.8rem;
    padding: 0 20px 0 0;
}

.table_history .table_history_title_inner i {
    color: #828282;
    margin: 0 5px 0 0;
}

.table_history .table_history_date_area {
    width: 100%;
}
    
.table_history .-w_110 {
    width: 110px;
}
    
.table_history .-w_180 {
    width: 180px;
}
    
.table_history .-w_210 {
    width: 210px;
}
    
.table_history .-w_160 {
    width: 160px;
}

.btn_inline_icon_spacer {
    margin-top: 8px;
}

.history_item_area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border: 1px solid #bebebe;
    padding: 0;
}

.history_item_area + .history_item_area {
    margin: 20px auto 0;
}

.history_item_area .history_item_left_area {
    width: 100%;
    border-top: 8px solid #f1f6ff;
    padding: 0px 15px 10px;
}

.history_item_area .history_item_right_area {
    width: 100%;
    padding: 15px 0 0;
    padding: 0px 15px 10px;
    text-align: right;
}

.history_item_area .status_btn, .detail_history_item_area .status_btn {
    display: inline-block;
    border-radius: 3px;
    padding: 4px 10px 6px;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 8px 0 0;
}

.history_item_area .history_item_left_area .table_history > tbody > tr:nth-of-type(2n+2) {
    background: #fff;
}

.detail_history_item_area .status_btn {
    margin: 0px 0 0;
    padding: 6px 12px 8px;
    font-size: 1.6rem;
}

.status_btn.status_btn_red {
    background: #D52D1F;
    color: #fff;
}

.status_btn.status_btn_navy {
    background: #004ea2;
    color: #fff;
}

.status_btn.status_btn_gray {
    background: #999;
    color: #fff;
}

.status_btn.status_btn_orange {
    background: #f4b64a;
}

.status_winning {
    display: inline-block;
    border-radius: 3px;
    padding: 4px 10px 6px;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 8px 0 0;
    color: #b68900;
}

.status_winning i, .status_resettlement i {
    margin: 0 5px 0 0;
}

.status_resettlement {
    display: inline-block;
    border-radius: 3px;
    padding: 12px 10px 14px;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 8px 0 0;
    color: #D52D1F;
    background: #fcff00;
    animation: blinking 1s ease-in-out infinite alternate;
}

@keyframes blinking {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.blinking {
    animation: blinking 1s ease-in-out infinite alternate;
}

.history_item_area .btn_small {
    display: inline-block;
    width: auto;
    min-width: inherit;
    padding: 4px 10px 6px;
    height: inherit;
    line-height: inherit;
}

@media (min-width: 1149px) {
    .table_simple th,
    .table_simple td {
        padding: 8px;
    }

    .table_scroll_wrapper {
        overflow-x: auto;
        padding: 16px 0;
    }

    .table .width_min {
        width: 160px;
    }

    .table .tatami {
        display: inline-block;
        margin: 0 0 0 8px;
        font-size: 1.6rem;
    }

    .table .floor {
        display: inline-block;
        margin: 0 0 0 8px;
        font-size: 1.6rem;
    }
    
    .table .all {
        display: inline-block;
        margin: 0 0 0 8px;
        font-size: 1.6rem;
    }
    
    .table_history {
        margin: 0 auto;
    }
    
    .table_history th, .table_history td {
        padding: 0px;
        line-height: 1.4em;
        border: none;
    }
    
    
    
    .table_history th {
        display: table-cell;
        background: #6E7A85;
        color: #fff;
        font-weight: 700;
    }
    
    .table_history td {
        display: table-cell;
    }

    .table_history .table_history_date_area {
        width: 210px;
    }
    
    /*
    .table_history td::before {
        content: '';
    }*/
/*
    .table_history td+td {
        border-top: 1px solid #4d4d4d;
    }
    
    .table_history th + th {
        border-left: 1px solid #e2e2e2;
    }

    .table_history th:last-child {
        border-right: 1px solid #43444D;
    }*/
    
    /*
    .table_history td.index {
        background: inherit;
    }*/


    .btn_inline_icon_spacer {
        margin-top: 0px !important
    }

    .history_item_area {
        max-width: 1000px;
        margin: 0 auto;
        flex-direction: row;
    }
    
    .history_item_area + .history_item_area {
        margin: 30px auto 0;
    }

    .history_item_area .history_item_left_area {
        width: calc( 100% - 330px );
        padding: 10px 0px 10px 15px;
    }

    .history_item_area .history_item_right_area {
        width: 330px;
        padding: 10px 15px 10px 0;
        border-top: 8px solid #f1f6ff;
    }
    
    .table_history .table_history_title_area {
        font-size: 1.5rem;
        line-height: 2.0;
        margin: 0 0 6px;
    }
    
}

.detail_history_item_area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
}

.detail_history_item_area.borderd {
    border: 1px solid #bebebe;
}

.detail_history_item_area .select_section_card.top_border {
    border-top: 8px solid #f1f6ff;
}

.detail_history_item_area .select_section_card:last-child {
    padding-bottom: 4px;
}

.detail_history_item_area .select_section_card, .detail_history_item_area .detail_select_section_card {
    align-items: center;
    background: #f9f9f9;
    margin-bottom: 0px;
}

.detail_history_item_area .select_section_card:nth-child(odd), .detail_history_item_area .detail_select_section_card:nth-child(odd) {
    background: #fff;
}

.detail_history_item_area .select_section_card .detail_card_name {
    color: #828282;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
}

.detail_history_item_area .select_section_card .detail_card_name i, .section h3.history_item_title i {
    margin: 0 5px 0 0;
}

.detail_history_item_area .select_section_card .detail_card_name_use {
    font-size: 1.8rem;    
}

.detail_history_item_area .detail_select_section_card .detail_section_card_name {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.6rem;
    padding: 0 0 0 10px;
}

.detail_history_item_area .detail_select_section_card .detail_section_card_price {
    display: inline-block;
    width: 100%;
    text-align: right;
    padding: 4px 2px 4px 0;
}

.detail_history_item_area .detail_select_section_card .detail_section_card_choice {
    width: 100%;
    text-align: right;
    padding: 0 10px 0 0;
}

.detail_history_item_area .detail_select_section_card .detail_section_deadline_area {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    line-height: 1.4;
    color: #D52D1F;
    text-align: right;
    padding: 5px 8px 5px 0;
}

.detail_history_item_area .detail_select_section_card .detail_section_card_btn {
    width: 100%;
    text-align: right;
    padding: 5px 0px 5px 0;
}

.section h3.history_item_title {
    background: #f1f6ff;
    color: #333;
    margin: 0;
    padding: 6px 10px;
    font-size: 1.8rem;
    text-align: left;
    border-left: inherit;
    border-bottom: 1px solid #e2ecff;
}

@media (min-width: 1149px) {
    .detail_history_item_area {
        max-width: 700px;
    }
    
    .detail_history_item_area .select_section_card {
        min-height: inherit;
        line-height: inherit;
    }
    
    .detail_history_item_area .detail_select_section_card {
        min-height: inherit;
        line-height: 3;
    }
    
    
    
    .detail_history_item_area .detail_select_section_card .detail_section_card_name {
        display: inline-block;
        width: calc(100% - 310px);
        font-weight: bold;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-size: 1.6rem;
        padding: 0 0 0 10px;
    }
    
    .detail_history_item_area .detail_select_section_card .detail_section_card_price {
        display: inline-block;
        width: 160px;
        text-align: right;
    }
    
    .detail_history_item_area .detail_select_section_card .detail_section_card_choice {
        width: 150px;
        text-align: center;
        margin: 0 0 0 0;
        line-height: 1.5;
    }

    .detail_history_item_area .detail_select_section_card .detail_section_deadline_area {
        text-align: left;
        padding: 0 10px 5px 0;
    }

    .detail_history_item_area .detail_select_section_card .detail_section_deadline {
        width: 325px;
        font-size: 1.5rem;
    }
    
    .detail_history_item_area .detail_select_section_card .detail_section_card_btn {
        width: 150px;
        vertical-align: middle;
        padding: 0 10px 10px 0;
    }
    
    .section h3.history_item_title {
        padding: 8px 14px;
        font-size: 2.2rem;
        border-left: inherit;
        border-bottom: 1px solid #e2ecff;
    }
}









/*
Btn
---------------------------------*/

.btn_wrapper {
    text-align: center;
}

a.btn {
    transition: opacity .3s;
}

.btn_large {
    /*display: block;
    text-align: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: none;
    background: #F4754A;
    margin: 24px 0 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 6px;
    border-bottom: 3px solid #D45024;
    cursor: pointer;*/
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: none;
    background: #F4754A;
    margin: 24px auto 0;
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700 !important;
    border-radius: 6px;
    border-bottom: 3px solid #D45024;
    cursor: pointer;
}

.btn_middle {
    display: inline-block;
    padding: 4px 0;
    width: 50%;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: bold !important;
    background: #fff;
    color: #fff !important;
    border: none;
    cursor: pointer;
    transition: background-color .3s;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.btn_group > .btn_middle {
    width: 30%;
}

.btn_group > .btn_middle + .btn_middle {
    width: 66%;
}

a.btn_large {
    color: #fff !important;
    display: block;
    text-align: center;
}

a.btn_middle {
    color: #fff !important;
}

.btn_small {
    display: block;
    text-align: center;
    width: 100%;
    /*height: 24px;
    line-height: 22px;*/
    height: 30px;
    line-height: 28px;
    border: none;
    background: #F4754A;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 4px;
    border-bottom: 3px solid #D45024;
    cursor: pointer;
    min-width: 62px;
    padding: 0 5px;
}

.btn_thin {
    display: block;
    text-align: center;
    width: 100%;
    height: 34px;
    line-height: 32px;
    border: none;
    background: #F4754A;
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 4px;
    border-bottom: 3px solid #D45024;
    cursor: pointer;
    min-width: 62px;
    padding: 0 5px;
}

.btn_inline {
    display: inline-block !important;
    width: auto !important;
    padding: 0 15px;
}

.btn_inline_icon {
    display: inline-block;
    padding: 4px 15px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    font-size: 1.6rem;
    background: #3E7BDD;
    color: #fff !important;
    border: none;
    cursor: pointer;
    transition: background-color .3s;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-bottom: 3px solid #264d8d;
    font-family: "Font Awesome 5 Free";
    font-weight: 900 !important;
}

.btn_orange {
    background: #F4754A !important;
    border-bottom: 3px solid #D45024 !important;
}

.btn_blue {
    background: #3E7BDD !important;
    border-bottom: 3px solid #264d8d !important;
}

.btn_gray {
    background: #777 !important;
    border-bottom: 3px solid #555 !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.btn_light_gray {
    background: #dcdcdc !important;
    border-bottom: 3px solid #c8c8c8 !important;
    color: #333 !important;
    font-weight: 500 !important;
}

.btn_red {
    background: #c80000 !important;
    border-bottom: 3px solid #640000 !important;
}

a.btn_small {
    color: #fff;
}

.btn:hover {
    text-decoration: none;
}

.btn_group {
    display: flex;
    justify-content: center;
}

.btn_group .btn + .btn {
    margin-left: 4px;
}

.btn_group input + input {
    margin-left: 4px;
}

.btn_group_column {
    display: flex;
    flex-direction: column;
}

.btn_group_column .btn + .btn {
    margin-top: 4px;
}

.btn_au_next {
    cursor: pointer;
    display: block;
    width: 250px;
    height: 45px;
    border: none;
    text-indent: -9999px;
    background: url(../../gpg/logo/logo_130px_01.png) no-repeat 0 0;
}
.btn_icon {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}


@media (min-width: 768px) {

    .btn_large {
        width: 100%;
        height: 60px;
        line-height: 60px;
        border: none;
        margin: 48px auto 0;
        color: #fff;
        font-size: 1.8rem;
        font-weight: 700;
        border-radius: 6px;
        border-bottom: 3px solid #D45024;
        transition: opacity .3s;
        max-width: 670px;
    }
    
    .btn_small {
        display: block;
        text-align: center;
        width: 100%;
        height: 24px;
        line-height: 22px;
        border: none;
        background: #F4754A;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        border-radius: 4px;
        border-bottom: 3px solid #D45024;
        cursor: pointer;
        min-width: 56px;
    }
    
    .btn_middle {
        padding: 10px 0;
        font-size: 1.6rem;
    }

    .btn:hover {
        opacity: .7;
    }
}

/*
Title Text List
---------------------------------*/

.section_title {
    position: relative;
    text-align: center;
    color: #1A1A1A;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 32px;
    padding-bottom: 5px;
}

.section_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: #758389;
    height: 1px;
    width: 80%;
}

.section_title span {
    font-size: 2.4rem;
    color: #2F7BE3;
}

.section h3 {
    background: #43444D;
    color: #fff;
    margin: 0;
    padding: 6px 10px;
    font-size: 1.8rem;
    text-align: left;
    border-left: 4px solid #009de1;
}

.section h4 {
    color: #43444D;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.section h4:before, .section h4:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #43444D;
    display: block;
}

.section h4:before {
    margin-right: 15px;
}

.section h4:after {
    margin-left: 15px;
}

.note p {
    font-size: 1.2rem;
}



@media (min-width: 768px) {
    .section_title {
        font-size: 2.8rem;
        margin: 0 0 40px;
    }

    .section_title::after {
        width: 50%;
    }

    .section_title span {
        font-size: 3.2rem;
    }

    .section h3 {
        padding: 8px 20px;
        font-size: 2.2rem;
        border-left: 8px solid #009de1;
    }
    
    .section h4 {
        font-size: 1.8rem;
    }

    .note p {
        font-size: 1.4rem;
    }

    .note_flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .note_flex p {
        width: 48%;
    }

}

@media (min-width: 1149px) {
    .section_title {
        font-size: 3.0rem;
    }

    .section_title::after {
        width: 50%;
    }

    .section_title span {
        font-size: 3.0rem;
    }

}

/*
Card
---------------------------------*/

.card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 6px;
    background: #fff;
}

.card_header {
    background: #43444D;
    color: #fff;
    text-align: left;
    padding: 12px 15px;
    font-weight: bold;
    margin: 0;
    font-size: 1.8rem;
}

.card_header i {
    color: #2F7BE3;
    margin-right: 6px;
}

.card_body {
    padding: 16px;
    background: #fff;
    padding: 0 15px;
    margin: 24px 0;
}

@media (min-width: 768px) {
    .card {
        box-shadow: rgba(0, 0, 0, 0.1) 0 0 12px;
    }

}



/*---------------------------------
Header Footer
---------------------------------*/
/*
Header
---------------------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    background: #fff;
    width: 100%;
    z-index: 99;
}

.header.active {
    /*box-shadow: rgba(0 ,0 ,0 ,0.2) 0 0 5px;*/
    /* border-bottom: 1px solid #eaeef2; */
}

.header_inner {
    width: 97%;
    margin: 0 0 0 3%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_site_name {
    margin: 3px 0 0 0;
}

.header_site_name span {
    display: block;
    margin: 2px 0 0 38px;
    font-size: 1rem;
    transform: scale(0.8);
    font-weight: 700;
    transform-origin: left;
    color: #004ea2;
    letter-spacing: 0.5px;
}

.header_logo {
    display: block;
    width: 160px;
    height: auto;
    margin: 0;
    transition: opacity .3s;
}

@media (min-width: 767px) {
    .header {
        height: 100px;
        transition: box-shadow .3s;
    }

    .header_site_name span {
        margin: 2px 0 0 57px;
        font-size: 1.3rem;
        transform: scale(1);
    }

    .header_logo {
        padding-top: 4px;
        width: 248px;
        transition: opacity .3s;
    }

    .header_logo:hover {
        opacity: 0.7;
    }
}

@media (min-width: 1149px) {

    .header_inner {
        max-width: 1120px;
        margin: 0 auto;
        position: relative;
    }

    .header_site_name span {
        font-size: 1.5rem;
        transform: scale(1);
    }

    .header_logo {
        padding-top: 4px;
        width: 280px;
        transition: opacity .3s;
    }

}

/*
Menu Btn
---------------------------------*/

.btn_menu {
    display: block;
    height: 40px;
    width: 100%;
    position: absolute;
    top: 60px;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: opacity .3s;
    text-decoration: none;
    background: #43444D;
}

.btn_menu:hover {
    text-decoration: none;
}

.btn_menu span {
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    margin: 12px auto 0;
    transition: transform .3s;
    transform-origin: left;
    border-radius: 1px;
}

.btn_menu span:nth-child(2) {
    margin-top: 5px;
    transition: opacity.3s;
}

.btn_menu span:nth-child(3) {
    margin-top: 5px;
    transform-origin: left;
}

.btn_menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -5px);
    width: 26px;

}

.btn_menu.active span:nth-child(2) {
    opacity: 0;
}

.btn_menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 5px);
    width: 26px;

}

@media (min-width: 767px) {
    .btn_menu {
        display: none;
    }
}

@media (min-width: 1001px) {

}

/*
Global Nav
---------------------------------*/

.global_nav {
    position: relative;
    width: 120px;
    /*height: 0;
    min-height: 0;
    transition: .3s;*/
    background: #fff;
    overflow: hidden;
}

/*
.global_nav.active {
    min-height: 100vh;
}
*/
.global_nav_inner {
    /*border-top: solid #ddd 2px;
    overflow: scroll;
    height: 100%;
    padding-bottom: 120px;*/
}

.global_nav_list {
    /*border-bottom: solid #ddd 2px;
    margin-bottom: 32px;*/
    display: flex;
    justify-content: flex-end;
}

.global_nav_item {
}

.global_nav_item a {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    font-size: 3.0rem;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eaeef2;
    border-left: 1px solid #eaeef2;
}

.global_nav_item + .global_nav_item a {
    border-left: none;
}

.header.active .global_nav_item a {
    border-bottom: 1px solid #eaeef2;
}

.global_nav_item a:hover {
    text-decoration: none;
}

.global_nav_item.current a {
    /*border-top: solid #ddd 2px;*/
}

.global_nav_item i {
    color: #747474;
}

@media (min-width: 767px) {
    .global_nav {
        width: 200px;
    }

    .global_nav_item a {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1149px) {

}

/*
Local Nav
---------------------------------*/

.local_nav {
    background: #43444D;
    height: 0;
    min-height: 0;
    transition: height .3s;
    overflow: hidden;
    margin-top: 40px;
}

.local_nav.active {
    min-height: 320px;
}

.local_nav_inner {
    max-width: 94%;
    margin: 0 auto;
    position: relative;
}

.local_nav_list {
    margin: 16px 0;
}

.local_nav_item + .local_nav_item {
    margin-top: 8px;
}

.local_nav_item a {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}

.local_nav_item a:hover {
    text-decoration: none;
}

.local_nav_item i {
    font-size: 1.8rem;
    margin-right: 8px;
}

@media (min-width: 767px) {
    .local_nav {
        height: auto;
        margin: 0;
    }

    .local_nav.active {
        min-height: auto;
    }

    .local_nav_list {
        display: flex;
        margin: 0;
    }

    .local_nav_item + .local_nav_item {
        margin-left: 14px;
        margin-top: 0;
    }

    .local_nav_item a {
        font-size: 1.4rem;
        padding: 6px 0 7px;
        transition: opacity .3s;
    }

    .local_nav_item a:hover {
        opacity: .7;
    }

    .local_nav_item i {
        font-size: 2rem;
    }

}

@media (min-width: 1149px) {
    .local_nav_inner {
        max-width: 1149px;
        margin: 0 auto;
        position: relative;
    }

    .local_nav_item + .local_nav_item {
        margin-left: 20px;
        margin-top: 0;
    }
    
    .local_nav_item a {
        font-size: 1.5rem;
        padding: 6px 0 7px;
    }
}

/*
Footer
---------------------------------*/

.footer {
    background: #43444D;
    padding: 16px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.footer_inner {
    max-width: 90%;
    margin: 0 auto;
}

.copyright {
    color: #fff;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
}

#return_top {
    position: fixed;
    right: 5%;
    bottom: 0;
    z-index: 5;
    text-align: center;
}

#return_top a {
    background: #333;
    width: 48px;
    height: 48px;
    display: block;
    border-radius: 4px;
}

#return_top i {
    color: #fff;
    font-size: 3rem;
    margin-top: 8px;
}

.law_area {
    width: 94%;
    margin: 0 auto;
    padding: 15px 0 0;
    font-size: 1.3rem;
}

@media (min-width: 768px) {



    .copyright {
        font-size: 1.4rem;
    }

    #return_top i {
        font-size: 4rem;
        margin-top: 12px;
    }

    #return_top a {
        width: 64px;
        height: 64px;
        transition: opacity.3s;
    }

    #return_top a:hover {
        opacity: .7;
    }
}

@media (min-width: 1001px) {
    .footer_nav_item {
        width: auto;
    }

    .footer_nav_item a {
        font-size: 2rem;
    }
}
@media (min-width: 1121px) {
    .footer_inner {
        max-width: 1120px;
        margin: 0 auto;
        position: relative;
    }

    .law_area {
        max-width: 1100px;
    }
}

/*---------------------------------
Main
---------------------------------*/

.main {
    padding-top: 60px;
    padding-bottom: 78px;
    height: 100%;
    background: #f2f6f6;
}

.login {
    padding-bottom: 0;
}

.local_nav_show {
    padding-top: 100px;
}

.section {
    padding: 30px 0 0 0;
}

.section.section_search {
    padding: 10px 0 0 0;
}

.section > .container > .inner {
    background: #fff;
    border-radius: 6px;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
}

@media (min-width: 768px) {
    .main {
        padding-top: 100px;
        padding-bottom: 94px;
    }

    .login {
        padding-bottom: 0;
    }

    .local_nav_show {
        padding-top: 140px;
    }

    .section > .container > .inner {
        border-radius: 8px;
        padding: 16px;
        box-shadow: rgba(0, 0, 0, 0.2) 0 0 8px;
    }

    .section {
        padding: 40px 0 0 0;
    }

    .section.section_search {
        padding: 15px 0 0 0;
    }
}

.main_head {
    background: #eaeef2;
    height: 44px;
    line-height: 42px;
    text-align: center;
}

.main_head h1 {
    margin: 0;
    font-size: 1.4rem;
}

.main_head i {
    margin: 0 5px 0 0;
    font-size: 1.4rem;
    color: #2F7BE3;
}

@media (min-width: 1149px) {
    .main_head {
        background: #eaeef2;
        height: 64px;
        line-height: 62px;
        text-align: center;
    }

    .main_head h1 {
        margin: 0;
        font-size: 2.0rem;
    }

    .main_head i {
        margin: 0 8px 0 0;
        font-size: 2.0rem;
        color: #2F7BE3;
    }
}



/*
Section Calendar
---------------------------------*/

.section_calendar {
    background: url(../img/mv_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
}

.section_calendar .inner {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    padding: 24px 10px 18px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
}

.current_month {
    height: 30px;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 20px 0;
    position: relative;
}

.section_calendar .current_month input {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
    border: 1px solid #707070;
    background: #f8f8f8;
    position: absolute;
    right: 0;
    border-radius: 4px;
}

.section_calendar .current_month input:first-child {
    left: 0;
}
.section_calendar .current_month select {
    padding: 5px 12px;
    font-size: 2.4rem;
    border: 1px solid #707070;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 900;
}
.section_calendar table {
    width: 100%;
    border-collapse:collapse;
    text-align: center;
}

.section_calendar table th {
    padding-bottom: 8px;
    border-bottom: solid #ddd 1px;
}

.section_calendar table td {
    padding: 4px 1px;
}

.section_calendar table tr:nth-of-type(2) td {
    padding-top: 8px;
}

.section_calendar table td input {
    width: 90%;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 2.0rem;
    border-radius: 4px;
    border: solid #ddd 1px;
}

.section_calendar table .cell_saturday {
    color:#2544cc;
}

.section_calendar table .cell_sunday {
    color:#cc2525;
}

.section_calendar table td.cell_today input {
    background: #fbfcc1;
    border-radius: 4px;

}

.section_calendar table td.cell_selected {
    background: #fff;
}

.section_calendar table td.cell_saturday input {
    color:#2544cc;
}

.section_calendar table td.cell_sunday input {
    color:#cc2525;
}

.section_calendar table td.cell_disabled input {
    border: none;
}

.section_calendar table td.cell_selected input,
.section_calendar table td:not(.cell_disabled) input:hover {
    /* border-radius: 15px;
    width: 30px; */
    background: #009de1;
    color: #fff;
    font-weight: 700;
    border: solid 1px #2544cc;
}

.section_calendar .inner.notification {
    padding: 17px 15px 15px;
    margin: 0 auto 20px;
}

.section_calendar .inner.notification h2 {
    line-height: 1;
    font-size: 1.6rem;
    margin: 0 0 8px;
    padding: 0;
    color: #2F7BE3;
}

.section_calendar .inner.notification h2 i {
    margin: 0 5px 0 0;
    font-size: 1.5rem;
    color: #2F7BE3;
}

.section_calendar ul.top_notification_list {
    margin: 0 0 10px;
}

.section_calendar ul.top_notification_list li {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #eaeef2;
    font-size: 1.6rem;
}

.section_calendar ul.top_notification_list li .top_notification_date {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0 14px 0 0;
    color: #565656;
}

.section_calendar .inner.notification .top_notification_link {
    text-align: right;
}

.section_calendar .inner.notification .top_notification_link a {
    color: #2F7BE3;
    font-size: 1.4rem;
    transition: color .3s;
}

.section_calendar .inner.notification .top_notification_link a:hover {
    color: #2562b6;
}

.section_calendar .inner.notification .top_notification_link i {
    margin: 0 5px 0 0;
}

@media (min-width: 768px) {
    .section_calendar .inner {
        width: 500px;
    }



    .current_month {
        font-size: 1.9rem;
    }

    .section_calendar table th {
        font-size: 1.6rem;
    }
    
    .section_calendar table td {
        padding: 4px 1px;
    }

    .section_calendar table td input {
        font-size: 2.4rem;
        height: 50px;
    }
}

@media (min-width: 1149px) {
    .section_calendar .inner {
        width: 700px;
        background: #fff;
        border-radius: 6px;
        padding: 24px 15px;
        box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
    }
    
    .section_calendar .inner.notification {
        padding: 16px 24px 12px;
    }

    .section_calendar .inner.notification h2 {
        font-size: 2.0rem;
        margin: 0 0 10px;
    }

    .section_calendar .inner.notification h2 i {
        margin: 0 6px 0 0;
        font-size: 1.7rem;
    }

    .section_calendar ul.top_notification_list li {
        margin: 0;
        padding: 6px 0;
        border-bottom: 1px solid #eaeef2;
        font-size: 1.8rem;
    }

    .section_calendar .inner.notification .top_notification_link a {
        font-size: 1.6rem;
    }
    
}

/*
Section Choice
---------------------------------*/

.section_choice_area {
    text-align: center;
    background: #f2f6f6;
}

.section_table {
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 6px;
}

.section_table + .section_table {
   margin-top: 30px;
}

.section_choice_area img {
    width: 100%;
    height: auto;
    margin-top: 16px;
}

.section_choice_area input[type="submit"] {
    width: 100%;
    height: 40px;
    border: none;
    background: #F4754A;
    margin: 30px 0 60px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 6px;
    border-bottom: 3px solid #D45024;
    cursor: pointer;
}

.section_choice_area table {
    width: 100%;
    height: 100%;
    border-collapse:collapse;
    text-align: center;
    margin-top: 16px;
}

.section_choice_area table th {
    border: 1px solid #4d4d4d;
    font-size: 1.6rem;
    font-weight: 700;
    width: 20%;
    background: #6E7A85;
    color: #fff;
    padding: 8px;
    height: 60px;
}

.section_choice_area table td {
    border: 1px solid #4d4d4d;
    font-size: 1.4rem;
    min-width: 20%;
    height: 100%;
    padding: 0;
    background: #ecfaff;
}

.section_choice_area table td.light_green {
    background: #e8f8d9;
}

.section_choice_area table td.light_brown {
    background: #f5e7d5;    
}

.section_choice_area table td.light_purple {
    background: #f5e2f7;    
}

.section_choice_area table td.light_orange {
    background: #fff0cd;    
}

.section_choice_area p {
    margin: 0;
    padding: 0;
}

.section_choice_area .vertical {
    display: block;
    margin: 0 auto;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.section_choice_area .tatami {
    display: inline-block;
    margin: 4px auto 0;
    background: #609143;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    border-radius: 3px;
    padding: 0;
}

.section_choice_area .floor {
    display: inline-block;
    margin: 4px auto 0;
    background: #916f43;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    border-radius: 3px;
    padding: 0;
}

.area_checkbox {
    display: none;
}

.area_checkbox_parts {
    position:relative;
    margin-right: 30px;
}
.area_checkbox_parts:before{
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #707070;
    background: #fff;
    border-radius: 4px;
}
.area_checkbox:checked + .area_checkbox_parts{
    color: #d01137;
}
.area_checkbox:checked + .area_checkbox_parts:after{
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 10px;
    width: 10px;
    height: 18px;
    transform: rotate(40deg);
    border-right: 3px solid #009de1;
    border-bottom: 3px solid #009de1;
}

.section_choice_area .reserved {
    color: #666666;
    background: #f8f8f8;
    font-size: 2.6rem;
    font-weight: 900;
    height: 100%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    

    .area_checkbox_parts {
        position:relative;
        margin-right: 30px;
    }
    .area_checkbox_parts:before{
        content: "";
        display: block;
        position: absolute;
        top: -4px;
        left: 0;
        width: 30px;
        height: 30px;
        border: 2px solid #707070;
        background: #fff;
        border-radius: 4px;
    }
    .area_checkbox:checked + .area_checkbox_parts{
        color: #d01137;
    }
    .area_checkbox:checked + .area_checkbox_parts:after{
        content: "";
        display: block;
        position: absolute;
        top: 0px;
        left: 10px;
        width: 10px;
        height: 18px;
        transform: rotate(40deg);
        border-right: 3px solid #009de1;
        border-bottom: 3px solid #009de1;
    }
    
}


.reserve_section_name {
    font-size: 1.8rem;
    margin-bottom: 0px;
    line-height: 1.4;
    font-weight: 500;
    /*background: linear-gradient(transparent 60%, rgba(255, 235, 121, 1) 60%); 202411 */
}

/*
.stripe {
    font-size: 2.3rem;
    width: 100%;
    padding: 3px 8px;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, .5);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 235, 121, .5) 8px, rgba(255, 235, 121, .5) 16px );
}*/



.select_section_card,.select_total_card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
    padding: 2px 0;
}

.select_section_card:nth-child(odd) {
    background: #f1f1f1;
}

.select_section_card.row {
    flex-direction: row;
}

.select_section_card.row .section_card_name_use {
    width: 100%;
    padding: 8px 0 0 10px;
}

.select_total_card > div {
    padding-top: 10px;
    padding-bottom: 10px;
    background: #FFEB79;
}

.select_total_card > .section_card_price {
    font-size: 1.8rem;
    font-weight: bold;
}

.section_card_name {
    display: flex;
    align-items: center;
    width: calc( 100% - 155px );
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.3rem;
    padding: 0 0 0 10px;
    line-height: 1.4;
}


.section_card_price {
    display: inline-block;
    width: 155px;
    text-align: right;
}

.section_card_name_use {
    display: inline-block;
    width: 155px;
}



.select_equipment_card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
    padding: 2px 0;
}

.select_equipment_card:nth-child(odd) {
    background: #f7f7f7;
}

.equipment_card_name,.select_equipment_card_name {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.4rem;
    padding: 0 0 0 10px;
}

.equipment_card_price {
    display: inline-block;
    width: calc( 100% - 155px );
    text-align: right;
}

.equipment_card_choice {
    width: 150px;
    text-align: right;
    margin: 0 5px 0 0;
}

.select_equipment_card_tamokuteki_tab {
    font-weight: bold;
    font-size: 1.4rem;
    border-radius: 5px 5px 0 0;
    padding: 6px 5px 6px 10px;
    border-top: 1px solid #43444d;
    border-right: 1px solid #43444d;
    border-left: 1px solid #43444d;
    background: #f1f1f1;
}

.select_equipment_card_tamokuteki {
    
    border-right: 1px solid #43444d;
    border-left: 1px solid #43444d;
    border-bottom: 1px solid #43444d;
    border-radius: 0 0 5px 5px;
}

.select_equipment_card_tamokuteki + .select_equipment_card_tamokuteki_tab {
    margin: 15px 0 0 0;
}

.equipment_card_tamokuteki {
    padding: 6px 0;
}

.equipment_card_tamokuteki + .equipment_card_tamokuteki {
    border-top: 1px dashed #dfdfdf;
}

.equipment_card_name_tamokuteki {
    display: inline-block;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.3rem;
    padding: 0 0 0 10px;
}

.equipment_card_price_tamokuteki {
    display: inline-block;
    width: calc( 100% - 145px );
    text-align: right;
}

.equipment_card_check_tamokuteki {
    display: inline-block;
    width: 140px;
    padding: 0 6px 0 0;
    text-align: right;
}

.tamokuteki_checkbox {
    display: none;
}

.tamokuteki_checkbox_parts {
    position:relative;
    margin-right: 26px;
}
.tamokuteki_checkbox_parts:before{
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    left: 0;
    width: 26px;
    height: 26px;
    border: 2px solid #707070;
    background: #fff;
    border-radius: 4px;
}
.tamokuteki_checkbox:checked + .tamokuteki_checkbox_parts{
    color: #d01137;
}
.tamokuteki_checkbox:checked + .tamokuteki_checkbox_parts:after{
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: 8px;
    width: 10px;
    height: 18px;
    transform: rotate(40deg);
    border-right: 3px solid #009de1;
    border-bottom: 3px solid #009de1;
}







.select_short {
    width: 100px;
    display: inline-block;
}

.select_short form_control {
    display: inline-block;
}

.select_settlement_image {
    text-align: center;
    margin: 8px 0 0 0;
}

.select_settlement_image + form > .btn_large {
    margin: 18px 0 0;
}

.detail_group_wrapper {
    width: 100%;
    margin: 0 auto;
}

.detail_card_name {
    display: inline-block;
    width: 50%;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.3rem;
    padding: 0 0 0 10px;
}

.detail_card_name_use {
    display: inline-block;
    width: 50%;
}


.detail_select_section_card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
    padding: 2px 0;
}

.detail_select_section_card:nth-child(odd) {
    background: #f1f1f1;
}

.detail_section_card_name {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.3rem;
    padding: 0 0 0 10px;
}

.detail_section_card_price {
    display: inline-block;
    width: 100%;
    text-align: right;
    padding: 0 10px 0 0;
}

.detail_section_card_choice {
     width: 100%;
    text-align: right;
    padding: 0 10px 0 0;
}

.detail_section_card_btn {
    width: 100%;
    text-align: right;
    padding: 0 10px 5px 0;
}

.detail_section_card_btn .btn {
    width: 50%;
    display: inline-block;
}

.detail_select_section_card .tatami {
    display: inline-block;
    margin: 4px 0 0;
    background: #609143;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 3px;
    padding: 0 5px;
    font-weight: 700;
    text-align: center;
    min-width: 48px;
    max-width: 80px;
}

.detail_select_section_card .floor {
    display: inline-block;
    margin: 4px 0 0;
    background: #916f43;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 3px;
    padding: 0 5px;
    font-weight: 700;
    text-align: center;
}

.detail_select_section_card .all {
    display: inline-block;
    margin: 4px 0 0;
    background: #ff8a00;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 3px;
    padding: 0 5px;
    font-weight: 700;
    text-align: center;
    min-width: 48px;
    max-width: 80px;
}


@media (min-width: 768px) {
    .section_table {
        padding: 16px;
        box-shadow: rgba(0, 0, 0, 0.1) 0 0 12px;
    }

    .section_table + .section_table {
       margin-top: 60px;
    }

    .section_choice_area table th {
        font-size: 1.8rem;
    }

}

@media (min-width: 1149px) {
    
    .section_choice_area .vertical {
        display: inline-block;
        margin: 0 auto;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        -o-writing-mode: inherit;
        writing-mode: inherit;
    }

    .section_choice_area input[type="submit"] {
        width: 50%;
        height: 60px;
        border: none;
        margin: 60px 0 80px;
        color: #fff;
        font-size: 1.8rem;
        font-weight: 700;
        border-radius: 6px;
        border-bottom: 3px solid #D45024;
    }

    .section_choice_area .tatami {
        display: inline-block;
        margin: 4px auto 0;
        background: #609143;
        color: #fff;
        font-size: 1.6rem;
        width: 60px;
        border-radius: 3px;
        padding: 0;
    }

    .section_choice_area .floor {
        display: inline-block;
        margin: 4px auto 0;
        background: #916f43;
        color: #fff;
        font-size: 1.6rem;
        width: 60px;
        border-radius: 3px;
        padding: 0;
    }
    
    .reserve_section_name {
        font-size: 2.0rem;
    }
    
    .select_section_card {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8px;
        min-height: 40px;
        line-height: 40px;
        
    }
    
    .select_section_card.row {
        height: auto;
        line-height: 1.6;
        min-height: 40px;
    }
    
    .section_card_name {
        width: calc( 100% - 190px );
        font-size: 1.6rem;
    }

    .section_card_price {
        width: 190px;
        /*margin: 0 10px 0 0;*/
        padding: 0 10px 0 0;
        text-align: right;
    }
    

    .section_card_name_use {
        width: 150px;
        margin: 0 10px 0 0;
    }
    
    
    
    
    .select_equipment_card {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8px;
        min-height: 40px;
        /*line-height: 40px;*/
        align-items: center;
    }
    
    .equipment_card_name {
        width: 210px;
    }

    .select_equipment_card_name {
        width: calc( 100% - 135px );
    }
    
    .equipment_card_price {
        width: 125px;
        margin: 0 10px 0 0;
        text-align: right;
    }

    .equipment_card_choice {
        width: 150px;
    }
    
    .equipment_card_choice.select_wrapper::after {
        top: 9px;
    }
    

    .select_equipment_card_tamokuteki_tab {
        font-size: 1.5rem;
    }
    
    .select_settlement_image {
        margin: 15px 0 0 0;
    }
    
    .select_settlement_image img {
        width: auto;
        max-width: 100%;
    }
    
    .detail_group_wrapper {
        width: 700px;
        margin: 0 auto;
    }
    
    .detail_select_section_card {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8px;
        min-height: 40px;
        line-height: 40px;
    }
    
    .detail_section_card_name {
        display: inline-block;
        width: calc( 100% - 430px );
        font-weight: bold;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-size: 1.3rem;
        padding: 0 0 0 10px;
    }

    .detail_section_card_price {
        display: inline-block;
        width: 160px;
        text-align: right;
    }

    .detail_section_card_choice {
        width: 120px;
        text-align: center;
        margin: 0 0 0 0;
    }
    
    .detail_section_card_btn {
        width: 150px;
        vertical-align: middle;
        padding: 0 10px 0 0;
    }
    
    .detail_section_card_btn .btn {
        width: 100%;
        display: block;
        margin: 5px 0 0 0;
    }
    .detail_select_section_card .tatami {
        line-height: 28px;
    }

    .detail_select_section_card .floor {
        line-height: 28px;
    }

    .detail_select_section_card .all {
        line-height: 28px;
    }
}

/*---------------------------------
Login
---------------------------------*/

.section_login {
    background: url(../img/mv_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    height: calc(100vh - 151px);
}

.section_login .inner {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    padding: 24px 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
}

.section_login .form_control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    font-size: 1.6rem;
    background: #F8F8F8;
    border: solid #ddd 1px;
    border-radius: 2px;
    box-sizing: border-box;
}

.section_login .form_group + .form_group {
    margin: 10px 0 0 0;
}

.login_info_area {
    margin: 50px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #efefef;
}

.login_info_area a + a {
    margin: 0 0 0 15px;
}

.login_info_area a:hover {
    text-decoration: none;
}

.login_info_area a::before {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.8rem;
    color: #3E7BDD;
    vertical-align: middle;
    margin: 0 2px 0 0;
}

@media (min-width: 768px) {
    .section_login {
        height: calc(100vh - 217px);
    }

    .section_login > .container > .inner {
        max-width: 700px;
    }

    .section_login .form_control {
        height: 56px;
        padding: 8px 12px;
        border: solid #ddd 2px;
        border-radius: 4px;
    }
    
    .section_login .form_group + .form_group {
        margin: 20px 0 0 0;
    }
}

/*---------------------------------
Dashboard
---------------------------------*/

/*
section news
---------------------------------*/

.section_news {
    background: url(../img/mv_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0;
}

.section_news .inner {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    padding: 24px 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 3px;
}

.section_news .inner.notification {
    padding: 17px 15px 15px;
    margin: 0 auto 20px;
}

.section_news .inner.notification h2 {
    line-height: 1;
    font-size: 1.6rem;
    margin: 0 0 8px;
    padding: 0;
    color: #2F7BE3;
}

.news_item {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.news_item a {
    display: block;

}

.news_item a:hover {
    text-decoration: none;
}

.news_item_date {
    display: block;
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
    margin-left: 8px;
}

.news_item_title {
    margin: 0;
    margin-left: 8px;
    font-size: 1.5rem;
}

.news_item.important .news_item_title {
    color: #EA454E;
}

.news_item_title i {
    color: #EA454E;
    margin-right: 8px;
}

.dashboard .section_news {
    height: 150px;
}

@media (min-width: 768px) {
    .section_news {
        padding: 30px 0;
    }

    .news_item a {
        display: flex;
        align-items: center;
    }

    .news_item_date {
        font-size: 1.5rem;
    }

    .news_item_title {
        margin-left: 16px;
        font-size: 1.6rem;
    }


}

/*---------------------------------
Contact
---------------------------------*/

/* .form_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
    text-align: left;
}

.form_table th {
    width: 100%;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
}

.form_table tr:nth-child(n+2) th {
    margin-top: 24px;
}

.form_table td {
    width: 100%;
    display: block;
    margin-top: 8px;
} */

/* .required {
    color: #fff;
    font-size: 1.2rem;
    background: #2F7BE3;
    margin-left: 8px;
    padding: 0 8px 1px;
    border-radius: 2px;
} */



/* input::-webkit-input-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
input:-moz-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
input::-moz-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}
input:-ms-input-placeholder {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
} */

/* .form_radio + .form_radio {
    margin-top: 8px;
}

.form_radio input[type=radio] {
    display: none;
}

.label_radio {
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 24px;
    display: inline-block;
}

.form_radio input[type=radio] + .label_radio::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    background: #F8F8F8;
    border: solid #ddd 1px;
    border-radius: 50%;
}

.form_radio input[type=radio] + .label_radio::after {
    content: "";
    position: absolute;
    left: -21px;
    top: -0px;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    background: #2F7BE3;
    opacity: 0;
    border-radius: 50%;
    transition: opacity .3s;
}

.form_radio input[type=radio]:checked + .label_radio::after {
    opacity: 1;
}

.form_control + .form_control {
    margin-top: 8px;
}

.form_checkbox input[type=checkbox] {
    display: none;
}

textarea.form_control {
    height: 90px;
}

.form_note {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 8px 0 0;
}

@media (min-width: 768px) {
    .page_contact {
        background: url(../img/bg_03.png);
        background-position: center;
        background-size: 120px;
    }

    .page_contact .page_title {
        margin-bottom: 40px;
    }

    .page_contact .inner {
        border-radius: 8px;
        padding: 40px;
        box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
    }

    .contact_catch {
        font-size: 3.2rem;
        width: 412px;
    }

    .contact_catch span {
        font-size: 4.8rem;
    }

    .contact_catch::before,
    .contact_catch::after {
        height: 80px;
        width: 4px;
    }

    .contact_catch::before {
        left: -32px;
    }

    .contact_catch::after{
        right: -32px;
    }

    .contact_note {
        font-size: 2rem;
        margin: 16px 0 32px;
    }

    .form_table {
        border-collapse:collapse;
    }

    .form_table tr {
        border-top: 2px solid #ddd;
        border-bottom: 2px solid #ddd;
    }

    .form_table th {
        width: auto;
        display: table-cell;
        font-size: 1.8rem;
        padding: 32px 0 16px 16px;
        width: 40%;
        vertical-align: top;
    }

    .form_table th div {
        position: relative;
    }

    .form_table tr:nth-child(n+2) th {
        margin-top: 24px;
    }

    .form_table td {
        margin-top: 0;
        padding: 16px 16px 16px 24px;
        width: auto;
        display: table-cell;
    }

    .required {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        font-size: 1.4rem;
        padding: 0 16px;
        border-radius: 4px;
        height: 20px;
        line-height: 20px;
        margin-top: 3px;
    }


    input::-webkit-input-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    input:-moz-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    input::-moz-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }
    input:-ms-input-placeholder {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .form_radio + .form_radio {
        margin-top: 16px;
    }

    .label_radio {
        font-size: 1.8rem;
        margin: 0 0 0 40px;
    }

    .form_radio input[type=radio] + .label_radio::before {
        left: -40px;
        width: 24px;
        height: 24px;
        border: solid #ddd 2px;
    }

    .form_radio input[type=radio] + .label_radio::after {
        left: -36px;
        width: 16px;
        height: 16px;
    }

    .form_control + .form_control {
        margin-top: 16px;
    }

    textarea.form_control {
        height: 140px;
    }

    .form_note {
        font-size: 1.6rem;
        margin: 16px 0 0;
    }
}

@media (min-width: 1001px) {
    .form_table th {
        font-size: 2rem;
        padding: 24px 0 24px 24px;
    }

    .required {
        font-size: 1.6rem;
        padding: 0 16px;
        height: 24px;
        line-height: 24px;
        margin-top: 4px;
    }

    .form_table td {
        padding: 24px 24px 24px 32px;
    }

    .label_radio {
        font-size: 2rem;
    }

    .form_note {
        font-size: 2rem;
    }
} */




/*
Common Class
---------------------------------*/
.-f_small {
    font-size: 1.2rem;
}

.-f_large {
    font-size: 2.0rem;
}

.-f_midium {
    font-size: 1.8rem;
}




.-mt_0 {
    margin-top: 0px !important;
}

.-mt_8 {
    margin-top: 8px !important;
}

.-mt_12 {
    margin-top: 12px !important;
}

.-mt_16 {
    margin-top: 16px !important;
}

.-mt_24 {
    margin-top: 24px !important;
}

.-mt_36 {
    margin-top: 36px !important;
}

.-mt_50 {
    margin-top: 50px !important;
}

.-mb_8 {
    margin-bottom: 8px !important;
}

.-mb_16 {
    margin-bottom: 16px !important;
}

.-mb_24 {
    margin-bottom: 24px !important;
}

.-mb_36 {
    margin-bottom: 36px !important;
}

.-p_10 {
    padding: 10px !important;
}

.-pt_0 {
    padding-top: 0px !important;
}

.-pt_10 {
    padding-top: 10px !important;
}

.-pr_10 {
    padding-right: 10px !important;
}

.-align_right {
    text-align: right;
}

.-align_left {
    text-align: left;
}

.-align_center {
    text-align: center;
}

.-margin_center {
    margin: 0 auto;
}

.icon_left {
    margin-right: 4px;
}

.icon_right {
    margin-left: 4px;
}

.-w_30 {
    width: 30px;
}

.-w_160 {
    width: 160px;
}

.-w_500 {
    width: 100%;
}

.-w_600 {
    width: 100%;
}

.-w_100p {
    width: 100%;
}


@media (min-width: 768px) {
    .-w_500 {
        width: 500px;
    }
    
    .-w_600 {
        width: 600px;
    }
}

/* message
-------------------*/

.message {
    font-weight: bold;
    margin: 0;
    padding: 15px;
    border-radius: 5px;
}

.error_message_wrap {
    background:#fff4f4;
    border: 1px solid #cc5a5c;
    border-radius: 5px;
    padding: 15px;
    line-height: 1.6;
}

.error_message a {
    color: #bf0003;
    text-decoration: underline;
}

.error_message {
    color: #bf0003;
    font-weight: bold;
}

.complete_message_wrap {
    background:#f9fbff;
    border: 1px solid #2f6eb2;
    border-radius: 5px;
    margin: 0;
    padding: 15px;
    line-height: 1.6;
}

.complete_message {
    color: #004ea2;
    font-weight: bold;
}

.info_message_wrap {
    background:#f9f9f9;
    border: 1px solid #6c6c6c;
    border-radius: 5px;
    margin: 0;
    padding: 15px;
    line-height: 1.6;
}

.info_message {
    color: #333;
    font-weight: bold;
}

.info_message_yellow_wrap {
    background: #ffffef;
    border: 1.5px solid #cdcd3b;
    border-radius: 8px;
    margin: 0;
    padding: 15px;
    line-height: 1.6;
    position: relative;
}

.balloon_message, balloon_message_bottom {
    margin-top: 20px;
}

.info_message_yellow_wrap.balloon_message:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 100px;
    border: 10px solid transparent;
    border-bottom: 10px solid #ffffef;
    margin: 0 0 0 -15px;
    z-index: 2;
}

.info_message_yellow_wrap.balloon_message:after {
    content: "";
    position: absolute;
    top: -25px;
    left: 100px;
    border: 12px solid transparent;
    border-bottom: 12px solid #cdcd3b;
    margin: 0 0 0 -17px;
    z-index: 1;
}


.info_message_yellow_wrap.balloon_message_bottom:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50% !important;
    transform: translateX(-50%);
    margin: 0;
    border: 10px solid transparent;
    border-top: 10px solid #ffffef;
    z-index: 2;
}

.info_message_yellow_wrap.balloon_message_bottom:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    border: 12px solid transparent;
    border-top: 12px solid #cdcd3b;
    z-index: 1;
}

.info_message_yellow_wrap table {
    width: 100%;
    border-collapse:collapse;
}

.info_message_yellow_wrap table td {
    padding: 3.5px 0;
    vertical-align: top;
}

/* pagination
-------------------*/

.pagination {
    margin: 8px 0 0;
    display: inline-block;
}

.pagination_list {
    display: flex;
    width: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.page_link {
    position: relative;
    display: block;
    padding: 8px;
    min-width: 34px;
    text-align: center;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    border: none;
}

.page_item+.page_item {
    border-left: 1px solid #ccc;
}

.page_link:hover {
    background-color: #f1f4ff;
    text-decoration: none;

}
.disabled .page_link {
    color: #ddd;
    pointer-events: none;
}

.active .page_link {
    background: #c4c6d0;
    color: #fff;
}

.pagination .page_item:first-child .page_link {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination .page_item:last-child .page_link {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination .page_item input[type="submit"] {
    position: relative;
    display: block;
    padding: 8px;
    min-width: 34px;
    text-align: center;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    border: none;
    font-size: 1.6rem;
}

/*
Section Notification
---------------------------------*/
.notification_list_top_img{
    background: url(../img/mv_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
}

ul.notification_list {
    margin: 10px 3% 10px;
}

ul.notification_list li {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #eaeef2;
    font-size: 1.5rem;
}

ul.notification_list li a {
    display: flex;
}

ul.notification_list li .notification_date {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0 12px 0 0;
    color: #909090;
    font-size: 1.5rem;
    white-space: nowrap;
}

ul.notification_list li p {
    margin: 0;
    padding: 0;
}

.section_notification_detail > .container > .inner {
    padding: 20px 6%;
}

.section_notification_detail h2.notification_title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.section_notification_detail .notification_date {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0;
    color: #909090;
    font-size: 1.5rem;
    text-align: right;
}

.section_notification_detail .notification_txt {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 15px 0;
}

.section_notification_detail .notification_txt a {
    color: #2F7BE3;
    text-decoration: underline;
}

@media (min-width: 1149px) {
    
    .notification_list_top_img{
        height: 200px;
        font-size: 2.4rem;
    }
    
    ul.notification_list {
        margin: 20px 35px;
    }
    
    ul.notification_list li {
        margin: 0;
        padding: 15px 15px;
        border-bottom: 1px solid #eaeef2;
        font-size: 1.6rem;
    }

    ul.notification_list li .notification_date {
        margin: 0 18px 0 0;
        font-size: 1.6rem;
    }
    
    .section_notification_detail > .container > .inner {
        padding: 40px 50px;
    }

    .section_notification_detail h2.notification_title {
        font-size: 2.0rem;
    }

    .section_notification_detail .notification_date {
        font-size: 1.6rem;
    }

    .section_notification_detail .notification_txt {
        font-size: 1.6rem;
        line-height: 1.8;
        margin: 20px 0;
    }
    
}

/* 202409様子見
input:is([type="button"], [type="submit"], [type="reset"]), input[type="file"]::file-selector-button, button {
    padding: 0;     
}
*/


input[type="submit"], input[type="submit"]:active, button[type="submit"], button[type="submit"]:active, button[type="menu"], button[type="menu"]:active{
    color: #333;
    font-weight: 400;
}

select {
    color: #333;
    background: transparent;
}

.agree_area {
    width: 700px;
    margin: 0 auto;
    padding: 4px 0;
    font-size: 1.7rem;
    line-height: 1.5;
}

.agree_area .btn_large {
    max-width: 700px;
    margin: 20px 0 0;
}

.agree_title {
    font-size: 1.9rem;
    font-weight: bold;
    text-align: center;
}

.agree_area ol {
    margin: 0;
    padding: 0 0 0 18px;
}

.agree_area li + li {
    padding: 22px 0 0 0;
}

.agree_box {
    margin: 15px 0 15px 8px;
    padding: 10px;
    border: 1px solid #1A1A1A;
}

.agree_checkbox {
    display: none;
}

.agree_checkbox_parts {
    position:relative;
    padding-left: 25px;
}

.agree_checkbox_parts:before{
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #707070;
    background: #fff;
    border-radius: 4px;
}

.agree_checkbox:checked + .agree_checkbox_parts:after{
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-right: 3px solid #009de1;
    border-bottom: 3px solid #009de1;
}

.agree_checkbox_area {
    padding: 40px 0 20px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 767px) {
    
    .agree_area {
        width: 100%;
        margin: 0 auto;
        font-size: 1.6rem;
    }
    
    .agree_title {
        font-size: 1.7rem;
    }

    .agree_box {
        margin: 15px 0 15px 0px;
    }

    .agree_checkbox_area {
        padding: 30px 0 12px;
    }

    .agree_checkbox_parts:before{
        top: 1px;
    }

    .agree_checkbox:checked + .agree_checkbox_parts:after{
        top: 3px;
    }
}

.section_reservation .reservation_title_area, .section_settlement .reservation_title_area {
    color: #828282;
    font-size: 1.6rem;
    line-height: 2.0;
    margin: 12px 0 10px;
    border-bottom: 1px solid #bebebe;
}

.section_reservation .reservation_title_area i, .section_settlement .reservation_title_area i {
    color: #828282;
    margin: 0 5px 0 0;
}

.section_reservation .reservation_contents, .section_settlement .reservation_contents {
    font-size: 2.0rem;
    margin: 0px 0 25px;
}

.section_reservation h3, .section_settlement h3 {
    background: #2F7BE3;
    color: #fff;
    margin: 0 auto;
    padding: 0px;
    font-size: 1.7rem;
    text-align: left;
    border-left: none;
    height: 34px;
    line-height: 34px;
    border-radius: 17px;
    text-align: center;
}

.section_settlement h3 {
    background: #eef2f6;
    color: #333;
}

.section_reservation h4, .section_settlement h4 {
    margin: 35px 0 20px;
}

.select_settlement_area {
    background: #ebf0f4;
    border-radius: 14px;
    margin: 25px 0 0;
    padding: 16px;
}

.select_settlement_area_card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 12px;
}

.select_settlement_area_card + .select_settlement_area_card {
    margin-top: 25px;
}

@media (min-width: 768px) {

    .section_reservation h3, .section_settlement h3 {
        padding: 0px;
        font-size: 2.0rem;
        border-left: none;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
    }

    .section_reservation h4, .section_settlement h4 {
        margin: 40px 0 20px;
    }
    
    .section_reservation .reservation_contents, .section_settlement .reservation_contents {
        font-size: 2.2rem;
    }
    
    .section_reservation h4, .section_settlement h4 {
        margin: 35px 0 20px;
    }

    .select_settlement_area {
        border-radius: 15px;
        margin: 35px 0 0;
        padding: 20px;
    }

    .select_settlement_area_card {
        border-radius: 15px;
        padding: 25px 15px;
    }

    .select_settlement_area_card + .select_settlement_area_card {
        margin-top: 25px;
    }
}

.section_reservation .select_section_card:nth-child(odd), .section_settlement .select_section_card:nth-child(odd) {
    background: #f7f7f7;
}

.section_reservation .section_card_name, .section_settlement .section_card_name {
    font-weight: bold;
    font-size: 1.6rem;
}

.section_reservation .section_card_price, .section_settlement .section_card_price {
    font-size: 1.9rem;
}

.section_reservation .equipment_card_name, .section_settlement .equipment_card_name {
    font-size: 1.6rem;
    padding: 0 0 0 10px;
}

.section_reservation .equipment_card_price, .section_settlement .equipment_card_price {
    font-size: 1.9rem;
}

.section_reservation .select_equipment_card_tamokuteki_tab, .section_settlement .select_equipment_card_tamokuteki_tab {
    font-weight: 600;
    font-size: 1.6rem;
    border-radius: 5px 5px 0 0;
    padding: 6px 5px 6px 10px;
    border-top: 1px solid #bebebe;
    border-right: 1px solid #bebebe;
    border-left: 1px solid #bebebe;
    background: #f7f7f7;
}

.section_reservation .select_equipment_card_tamokuteki, .section_settlement .select_equipment_card_tamokuteki {
    border-right: 1px solid #bebebe;
    border-left: 1px solid #bebebe;
    border-bottom: 1px solid #bebebe;
    border-radius: 0 0 5px 5px;
}

.section_reservation .equipment_card_name_tamokuteki, .section_settlement .equipment_card_name_tamokuteki {
    display: inline-block;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.6rem;
    padding: 0 0 0 10px;
}

.section_reservation .equipment_card_price_tamokuteki, .section_settlement .equipment_card_price_tamokuteki {
    font-size: 1.8rem;
}

.section_reservation .equipment_card_check_tamokuteki, .section_settlement .equipment_card_check_tamokuteki {
    display: inline-block;
    width: 140px;
    padding: 0 6px 0 0;
    text-align: right;
}

.section_reservation .tamokuteki_checkbox_parts:before, .section_settlement .tamokuteki_checkbox_parts:before{
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    width: 26px;
    height: 26px;
    border: 2px solid #707070;
    background: #fff;
    border-radius: 4px;
}

@media (min-width: 768px) {

    .section_reservation .section_card_name_use, .section_settlement .section_card_name_use {
        width: 180px;
    }
    
    .section_reservation .equipment_card_name, .section_settlement .equipment_card_name {
        width: 310px;
    }
    
    .section_reservation .select_equipment_card_tamokuteki_tab, .section_settlement .select_equipment_card_tamokuteki_tab {
        font-size: 1.5rem;
    }
}

.line_through {
    text-decoration: line-through;
}

