@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://fonts.googleapis.com/css?family=Oswald:400,700&display=swap);
@import url(https://use.fontawesome.com/releases/v5.10.2/css/all.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
    display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

li {
    list-style: none;
}

a,
a:link {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    height: auto;
    vertical-align: bottom;
}

button, input, select, textarea {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
    display: none;
}

i {
    font-style: normal;
}

textarea {
    resize: none;
    font-family: sans-serif;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
    font-size: 62.5%;
    overflow: auto;
}

body {
    margin: auto;
    width: auto;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, sans-serif;
    overflow-x: hidden;
}

a, b, dd, dt, li, p, span, td, th {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #646464;
}

h1, h2, h3, h4, h5, h6 {
    color: #646464;
}

.sp_only {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .sp_only {
        display: block !important;
    }
    .pc_only {
        display: none !important;
    }
}

.center {
    margin: auto;
    text-align: center;
    line-height: 180%;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.text-red,
.text-danger {
    padding: 10px 0;
    color: #ff0000;
}

*:placeholder-shown {
    color: #95989A;
}

*::-webkit-input-placeholder {
    color: #95989A;
}

*:-moz-placeholder {
    color: #95989A;
    opacity: 1;
}

*::-moz-placeholder {
    color: #95989A;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #95989A;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
    width: 92%;
    max-width: 500px;
    margin: auto;
}

section {
    padding-bottom: 120px;
}

.bg_green {
    background-color: #44D0AA;
}

.bg_blue {
    background-color: #588FE8;
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/********************************************/
/* Form layout*/
/********************************************/
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="datetime-local"] {
    width: 100%;
    min-height: 45px;
    border: 1px solid #44D0AA;
    border-radius: 3px;
    padding: 0.9em 1em;
    box-sizing: border-box;
    color: #646464;
}

textarea {
    height: 8em;
}

.submit_btn {
    background: #33b9c0;
    background: -moz-linear-gradient(left, #33b9c0 0%, #44d0aa 100%);
    background: -webkit-linear-gradient(left, #33b9c0 0%, #44d0aa 100%);
    background: linear-gradient(to right, #33b9c0 0%, #44d0aa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33b9c0', endColorstr='#44d0aa',GradientType=1 );
    font-family: 'Noto Sans JP', "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, sans-serif;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
}

.submit_btn a, .submit_btn input {
    font-weight: 700;
    color: #fff;
    padding: 1.2em 1em;
    font-size: 1.4rem;
}

.submit_btn a {
    display: block;
}

.link_txt a {
    text-decoration: underline;
    color: #588FE8;
    font-weight: 500;
}

/********************************************/
/* checkbox*/
/********************************************/
input[type=checkbox] {
    display: none;
}

.checkbox {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 10px 0px 30px;
    box-sizing: border-box;
    cursor: pointer;
}

.checkbox::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    margin: auto;
    background: #fff;
    border: 1px solid #44D0AA;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.checkbox::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
    display: block;
    content: '';
    width: 6px;
    height: 11px;
    margin: auto;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    opacity: 0;
    transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
}

input[type=checkbox]:checked + .checkbox::before {
    background-color: #44D0AA;
}

.check_box_btn label {
    font-size: 1.3rem;
    color: #646464;
}

/********************************************/
/* Select Box*/
/********************************************/
.select_box_layout {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/arrow-bottom-green.svg) no-repeat 97% center/13px 7px, #CCF8EC;
    border-radius: 5px;
}

.select_box_layout select {
    padding-right: 12%;
    border: 1px solid #CCF8EC;
    border-radius: 5px;
}

.select_box_layout.white_ver {
    background: url(../img/arrow-bottom-green.svg) no-repeat 97% center/13px 7px, #fff;
}

.select_box_layout.white_ver select {
    border: 1px solid #44D0AA;
}

/********************************************/
/* @Page Login Page*/
/********************************************/
.login_block .logo {
    margin-bottom: 30px;
    text-align: center;
}

.login_block .form_list li {
    margin-bottom: 30px;
}

.login_block .form_list li:last-child {
    margin-bottom: 20px;
}

.login_block .submit_btn {
    margin-bottom: 25px;
}

.login_block .check_box_btn {
    margin-bottom: 38px;
}

.form_list .ico_ver input {
    padding-left: 2.5em;
}

.form_list .ico_ver {
    position: relative;
}

.form_list .ico_ver:before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 1em;
    font-family: "Font Awesome 5 Free";
    width: 1em;
    height: 1em;
    margin: auto;
    line-height: 1em;
    font-weight: bold;
    color: #44D0AA;
}

.form_list .ico_ver.ico_id:before {
    content: '\f007';
}

.form_list .ico_ver.ico_pw:before {
    content: '\f084';
}

.form_list .ico_ver.ico_mail:before {
    content: '\f2b6';
    font-weight: lighter;
}

.form_list.mb_10ver li {
    margin-bottom: 10px;
}

.login_block {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/********************************************/
/*header */
/********************************************/
header {
    padding: 10px 0 25px;
}

header .logo {
    width: 57%;
    float: left;
    margin-right: 3%;
}

header .right {
    width: 40%;
    float: right;
}

header .right {
    position: relative;
    padding-right: 10%;
    box-sizing: border-box;
}

header .right .name {
    text-align: center;
    box-sizing: border-box;
}

header .right .name p {
    color: #44D0AA;
    font-size: 1rem;
    line-height: 1.5;
}

header .nav .menu_btn {
    position: absolute;
    right: 0;
    top: 0;
}

header .nav .menu_btn:before {
    content: '\f0c9';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #63AA36;
    font-size: 2.5rem;
}

header .nav .menu_btn.active:before {
    content: '\f00d';
}

header .right .nav ul {
    position: absolute;
    right: 0;
    display: none;
    background-color: rgba(99, 170, 54, 0.9);
    width: 18em;
    z-index: 2;
}

header .right .nav ul li a {
    display: block;
    padding: 0.8em 1em;
    box-sizing: border-box;
    color: #fff;
    text-align: right;
    border-bottom: 1px solid #fff;
}

header .right .nav ul li:last-child a {
    border-bottom: 0;
}

/********************************************/
/* Footer Fix Nav*/
/********************************************/
.foot_nav_fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 700px;
    margin: auto;
    border-top: 2px solid #fff;
}

.foot_nav_fix .nav_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.foot_nav_fix .nav_list li {
    width: 33.33%;
    text-align: center;
    position: relative;
    display: block;
    padding: 1em 0 1.2em;
    font-size: 1.1rem;
    background-color: #44D0AA;
    border-right: 1px solid #fff;
    box-sizing: border-box;
}

.foot_nav_fix .nav_list li.current {
    background-color: #588FE8;
}

.foot_nav_fix .nav_list li a {
    font-size: 1rem;
    display: block;
}

.foot_nav_fix .nav_list li:last-child a {
    border-right: 0;
}

.foot_nav_fix .nav_list li i {
    display: block;
    margin-bottom: 5px;
}

.foot_nav_fix .nav_list li span {
    position: absolute;
    bottom: 0.2em;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1em;
}

/********************************************/
/* Modal Message*/
/********************************************/
.modal_message {
    position: absolute;
    display: block;
    width: 100%;
    padding: 10px;
    top: 0;
    background: #44D0AA;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    opacity: .7;
    box-sizing: border-box;
    z-index: 99;
}

/********************************************/
/* @Page Calendar page*/
/********************************************/
.add_box {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px;
}

.add_box .btn {
    width: 35%;
    margin-right: 7%;
}

.add_box .price {
    width: 58%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.add_box .price .month {
    width: 40%;
    font-size: 1.2rem;
}

.add_box .price .txt {
    width: 60%;
}

.add_btn a {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 200px;
    background-color: #44D0AA;
    margin: auto;
    text-align: center;
    padding: 0.6em 0.5em;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    border-radius: 7px;
}

.add_btn a:first-child {
    margin-bottom: 5px;
}

.add_btn a span {
    position: relative;
    display: inline-block;
    font-size: 1em;
    color: inherit;
    padding-left: 1.5em;
}

.add_btn a span:before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: -3px;
    font-family: "Font Awesome 5 Free";
    width: 1em;
    height: 1em;
    margin: auto;
    line-height: 1em;
    content: '\f044';
    font-size: 1.1em;
}

.add_box .price {
    border-top: 1px solid #44D0AA;
    border-bottom: 1px solid #44D0AA;
}

.add_box .price .txt {
    padding: 0.2em;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #F7095C;
    text-align: right;
    word-wrap: break-word;
}

.add_box .price .txt small {
    margin-right: 0.2em;
    font-weight: 400;
    font-size: 0.6em;
}

.select_list {
    letter-spacing: -1em;
    margin-bottom: 30px;
}

.select_list > * {
    letter-spacing: normal;
}

.select_list li {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
}

.select_list li:nth-child(2n) {
    margin-right: 0;
}

.calendar_table {
    width: 100%;
}

.calendar_top_box {
    position: relative;
    text-align: center;
    padding: 0 0 20px;
}

.calendar_top_box .today {
    padding: 0 30px;
    font-size: 1.6rem;
}

.calendar_top_box .next_prev li {
    position: absolute;
    top: 0;
}

.calendar_top_box .next_prev li i {
    display: block;
    width: 23px;
    height: 23px;
}

.calendar_top_box .next_prev .next {
    right: 0;
}

.calendar_top_box .next_prev .prev {
    left: 0;
}

.calendar_table {
    margin-bottom: 30px;
}

.calendar_table th,
.calendar_table td {
    width: 14.28%;
    padding: 1em 0.2em 1.3em;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #EFEFEF;
    font-weight: 700;
    min-height: 4em;
}

.calendar_table td {
    vertical-align: top;
}

.calendar_table td a {
    display: block;
}

.calendar_table .week th {
    color: #44D0AA;
}

.calendar_table .week th.cell_satu {
    color: #588FE8;
}

.calendar_table .week th.cell_sun {
    color: #F7095C;
}

.calendar_table .gray {
    color: #EAEAEA;
}

.calendar_table .today {
    background: #eee;
}

.calendar_table .current {
    background: #ffd0df;
}

.calendar_table .ico_list {
    margin-top: 5px;
}

.calendar_table .ico_list li {
    margin-bottom: 3px;
}

.calendar_table .ico_list li:last-child {
    margin-bottom: 0;
}

.calendar_table .ico_list li p {
    display: inline-block;
    position: relative;
    font-weight: 700;
    padding-left: 1.1em;
    font-size: 1.2rem;
}

.calendar_table .ico_list li p:before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    width: 1em;
    height: 1em;
    margin: auto;
    line-height: 1em;
    content: '\f1b9';
    font-weight: bold;
    font-size: 0.8em;
}

.calendar_table .ico_list .car p {
    color: #44D0AA;
}

.calendar_table .ico_list .spanner p {
    color: #588FE8;
}

.calendar_table .ico_list .spanner p:before {
    content: '\f0ad';
}

.calendar_table .schedule_list {
    display: block;
    padding: 5px 3px;
    width: 95%;
    margin: 5px auto 0;
    border-radius: 3px;
    background: #ccc;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.repair_list_box .ttl {
    margin-bottom: 10px;
}

.repair_list_box .ttl .date {
    display: inline-block;
    float: left;
    padding-top: 0.3em;
    font-size: 1.7rem;
    font-weight: 700;
    vertical-align: middle;
}

.repair_list_box .ttl .total_price {
    display: inline-block;
    float: right;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #F7095C;
    vertical-align: middle;
}

.repair_list_box .ttl .total_price small {
    font-size: 0.6em;
    margin-right: 0.3em;
}

.repair_list_box .repair_list {
    border: 1px solid #44D0AA;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 1.4rem;
    height: 10em;
    overflow-y: scroll;
}

.repair_list_box .repair_list li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.repair_list_box .repair_list li {
    padding: 0 10px 10px;
    margin: 5px 0 10px;
    border-bottom: 1px solid #44D0AA;
    font-size: 1em;
}

.repair_list_box .repair_list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.repair_list_box .repair_list li i {
    width: 5%;
}

.repair_list_box .repair_list li .date {
    width: 20%;
}

.repair_list_box .repair_list li .link {
    width: 40%;
}

.repair_list_box .repair_list li .price {
    width: 35%;
    text-align: right;
}

.repair_list_box .repair_list li i {
    width: 1.2em;
    height: 1.2em;
    border-radius: 100px;
    margin-right: 10px;
    text-align: center;
}

.repair_list_box .repair_list li .link a {
    display: block;
    cursor: pointer;
}

.repair_list_box .repair_list li .link a span {
    position: relative;
    display: inline-block;
    color: #588FE8;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 1.5em;
}

.repair_list_box .repair_list li .link a span:before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: -1.5em;
    font-family: "Font Awesome 5 Free";
    width: 1em;
    height: 1em;
    margin: auto;
    line-height: 1em;
    content: '\f0ad';
    font-weight: bold;
}

/********************************************/
/* modal Window*/
/********************************************/
.modal_box {
    position: fixed;
    display: none;
    width: 90%;
    max-width: 700px;
    margin: 0;
    padding: 20px 50px 30px;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 10;
}

.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal_box p {
    line-height: 1.6;
}

.modal_box .date {
    display: inline-block;
    margin-right: 1em;
    margin-bottom: 1.5em;
}

.modal_box .time {
    display: inline-block;
    margin-bottom: 1.5em;
}

.modal_box .car_name {
    display: inline-block;
    margin-bottom: 1.5em;
}

.modal_box .price {
    display: inline-block;
    float: right;
}

.modal_box .add {
    display: block;
    margin-bottom: 1.5em;
}

.modal_box .close_btn {
    position: absolute;
    top: -13px;
    right: -13px;
}

.modal_box .close_btn i {
    width: 35px;
    height: 35px;
}

.modal_box .next_prev_link li {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 23px;
    height: 23px;
}

.modal_box .next_prev_link li.prev {
    left: 5px;
}

.modal_box .next_prev_link li.next {
    right: 5px;
}

.modal_box .btn_list {
    margin-top: 50px;
    text-align: center;
    letter-spacing: -1em;
}

.modal_box .btn_list > * {
    letter-spacing: normal;
}

.modal_box .btn_list li {
    display: inline-block;
    width: 47.5%;
    margin-right: 5%;
    vertical-align: top;
    border-radius: 5px;
}

.modal_box .btn_list li:nth-child(2n) {
    margin-right: 0;
}

.modal_box .btn_list li.add {
    background: #33b9c0;
    background: -moz-linear-gradient(left, #33b9c0 0%, #44d0aa 100%);
    background: -webkit-linear-gradient(left, #33b9c0 0%, #44d0aa 100%);
    background: linear-gradient(to right, #33b9c0 0%, #44d0aa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33b9c0', endColorstr='#44d0aa',GradientType=1 );
}

.modal_box .btn_list li.delete {
    background-color: #588FE8;
}

.modal_box .btn_list li a {
    display: block;
    padding: 1.3em 1em;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/********************************************/
/* @Page aggregate_block */
/********************************************/
.price_txt {
    margin-bottom: 0.6em;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #F7095C;
    text-align: right;
}

.price_txt small {
    margin-right: 0.2em;
}

.price_txt.right_ver {
    text-align: right;
}

.aggregate_block .select_list {
    margin-bottom: 10px;
}

.aggregate_list .list {
    border: 1px solid #44D0AA;
}

.aggregate_list .list li {
    padding: 0.8em 1em;
    border-bottom: 1px solid #44D0AA;
    overflow: hidden;
}

.aggregate_list .list li .date {
    float: left;
}

.aggregate_list .list li .price {
    float: right;
}

/********************************************/
/* @Page new_add_block */
/********************************************/
.column_2_btn_list {
    margin-bottom: 20px;
    letter-spacing: -1em;
}

.column_2_btn_list > * {
    letter-spacing: normal;
}

.column_2_btn_list li {
    display: inline-block;
    width: auto;
}

.column_2_btn_list li:nth-child(2n) {
    float: right;
}

.column_2_btn_list li a {
    padding: 1em 2em;
}

/********************************************/
/* @Page setting_block */
/********************************************/
.setting_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.setting_list li {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 5%;
}

.setting_list li:nth-child(2n) {
    margin-right: 0;
}

.setting_list li a {
    position: relative;
    display: block;
    height: 100%;
    padding: 40px 0 2.5em;
    background-color: #44D0AA;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.4rem;
}

.setting_list li i {
    display: block;
    margin-bottom: 25px;
}

.setting_list li i img {
    max-width: 75px;
}

.setting_list li span {
    position: absolute;
    right: 0;
    bottom: 1em;
    left: 0;
    display: block;
    text-align: center;
}

.setting_list li span b {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    color: #fff;
    font-weight: 700;
}

.setting_list li span b:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/arrow-right-white.svg) no-repeat center/100%;
}

/********************************************/
/* @Page user_admin_block */
/********************************************/
.center_ttl {
    margin: 0.8em 0 1.5em;
    font-size: 2.0rem;
    text-align: center;
    font-weight: 700;
}

.add_list {
    padding-top: 10px;
    border-top: 1px solid #44D0AA;
}

.add_list > li {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #44D0AA;
}

.add_list > li .name {
    width: 60%;
    float: left;
    margin-right: 5%;
    padding-top: 6px;
    padding-left: 1em;
    box-sizing: border-box;
}

.add_list > li .right {
    width: 35%;
    float: right;
    box-sizing: border-box;
    text-align: right;
}

.add_list li .ico_list li {
    display: inline-block;
    margin-right: 10px;
    border-radius: 100px;
}

.add_list li .ico_list li:last-child {
    margin-right: 0;
}

.add_list li .ico_list li a {
    display: block;
}

.add_list li .ico_list li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
}

/********************************************/
/* @Page forget Passwd */
/********************************************/
.bold_txt {
    margin-bottom: 1.5em;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.8;
}
