html {
    font-size: 62.5%;
}

body {
    background-color: #fefefe;
    color: #333;
    font-family: "メイリオ", Meiryo,"Noto Sans", "sans-serif";
    font-size: 1.6rem;
    line-height: 1.5;
}

a {
    color: #333;

/*
    display: block;
*/
    text-decoration: none;
}

a.color {
    color: #006dd9;
}
a.color:hover {
    color: #f90;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: baseline;
}

figure {
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.br_pc {
    display: block;
}

.br_sp {
    display: none;
}

.header {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 1200px;
    width: 80%;
}

.logo {
    display: flex;
}

.logo .name {
    color: #737373;
    font-size: 16px;
    font-weight: bold;
    margin-left: 20px;
}

.logo .tel {
    color: #1f2f54;
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
}

.inner {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.read_text {
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
}

.read_text img {
    margin: 0 auto;
}

.menu {
    margin: 0 auto;
    width: 80%;
}

.menu .list {
    display: flex;
    flex-wrap: wrap;
    margin: 60px 0;
    padding: 0;
}

.menu .list .list_items {
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
    width: 33%;
}

.menu .list .list_items .name {
    color: #1f2f54;
    margin: 5px 0;
}

.menu .list .list_items .link {
    color: #0086fa;
    margin: 5px 0;
}

.sns .list {
    display: flex;
    justify-content: center;
    padding: 0;
}

.sns .list .list_items:not(:last-child) {
    margin-right: 20px;
}

.banner {
    margin: 30px 0;
    text-align: center;
}

.images {
    display: flex;
}

.images .left {
    margin-right: 20px;
    position: relative;
}

.gear {
    left: -50px;
    position: absolute;
    top: -50px;
}

.information {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.information h2 {
    width: 20%;
}

.information ul {
    padding: 0;
    width: 70%;
}

.information .list {
    height: 10em;
    overflow: auto;
}

.information .list_items:not(:first-child) {
    margin-top: 20px;
}

.information .list_items a {
    display: inline-block;
}

.about {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.about h2 {
    width: 20%;
}

.about ul {
    width: 70%;
}

.about .list {
    display: flex;
}

.about .list .list_items:not(:last-child) {
    margin-right: 20px;
}

.end_text {
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
}

.footer {
    background-color: #1f2f54;
    padding-top: 60px;
}

.footer_title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

.footer_text {
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}

.footer_icon {
    margin-bottom: -60px;
    text-align: center;
}

.banner_list .list {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
}

.banner_list .list .list_items:not(:last-child) {
    margin-right: 20px;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
    cursor: pointer;
    display: block;
    height: 45px;
    position: fixed;
    right: 12%;
    text-align: center;
    top: 40px;
    width: 45px;
    z-index: 3;
}
.hamburger .span {
    display: none;
    height: 2px ;
    left: 10px;
    position: absolute;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 30px;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}
.hamburger .menu_text {
    display: block;
}

.hamburger .close {
    display: none;
}

/* スマホメニューを開いてる時のボタン */

.hamburger .span {
    display: block;
}

.hamburger.active span:nth-child(1) {
    background: #fff;
    left: 10px;
    top: 16px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    background: #fff;
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active .menu_btn {
    display: none;
}

.hamburger.active .menu_text {
    display: none;
}

.hamburger.active .close {
    color: #fff;
    display: block;
    margin-top: 40px;
}

/* メニュー背景　*/
nav.globalMenuSp {
    background: #1f2f54;
    color: #fff;
    display: none;
    font-weight: bold;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    text-align: center;
    top: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    width: 100%;
    z-index: 2;
}

nav.globalMenuSp .list {
    margin: 0 auto;
    margin-top: 100px;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    transition: 0.4s all;
    width: 100%;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
    background: #ddd;
}

nav.globalMenuSp ul li a {
    color: #fff;
    display: block;
    padding: 10px 0;
    text-decoration: none;
}

nav.globalMenuSp ul li a:hover {
    color: #1f2f54;
}


nav.globalMenuSp .sns .list {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 600px;
    width: 100%;
}


/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
    display: block;
    opacity: 100;
}



@media screen and (max-width: 425px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .br_pc {
        display: none;
    }

    .br_sp {
        display: block;
    }

    .logo {
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .sp_readtext {
        margin-top: 20px;
        width: 200px;
    }

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

    .menu .list {
        margin: 30px 0;
    }

    .sns .list {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
        width: 90%;
    }

    .banner_hospital {
        margin: 30px auto;
        width: 90%;
    }

    .images .left {
        margin-right: 0;
    }

    .gear {
        left: 10px;
        position: absolute;
        top: -30px;
    }
    .gear img {
        width: 70%;
    }

    .information {
        align-items: center;
        background-color: #eee;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 30px 0;
    }
    .information h2 {
        margin: 0 auto;
        text-align: center;
        width: 90%;
    }
    .information ul {
        margin: 0 auto;
        margin-top: 30px;
        width: 90%;
    }

    .footer_banner {
        margin: 20px auto;
        width: 90%;
    }

    .banner_list .list {
        flex-direction: column;
        justify-content: center;
    }

    .banner_list .list .list_items img {
        width: 170px;
    }

    .banner_list .list .list_items:not(:last-child) {
        margin: 0;
        margin-bottom: 10px;
    }
}

.container {
    margin: 45px auto;
}

.mainimg img {
    display: block;
    height: auto;
    margin: 10px auto;
    max-width: 960px;
    width: 100%;
}


/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 12px 0 !important;
    padding: 0;
}
.breadcrumb ul {
    margin-bottom: 0 !important;
    padding: 0;
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    color: #959fa5;
    display: inline-block;
}

#site-ttl {
    display: flex;
    flex-flow: column;
    height: 70px;
    justify-content: center;
    margin: 0 0 0 50px;
    padding-left: 80px;
    position: relative;
}

#site-ttl .com-name {
    font-size: 16px;
    line-height: 1.4;
}
#site-ttl .com-tel {
    color: #1f2f53;
    font-size: 18px;
    line-height: 1.4;
}
#site-ttl::before {
    content: '';
    display: block;
    left: 0;
    padding-top: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
#site-ttl::after {
    background-image: url(../img/logo-pc.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: url("../img/logo-pc.png");
    content: '';
    display: block;
    height: 70px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#home-head {
    background: #fff;
    /*
	background: linear-gradient(180deg, #F2F2F2 0%, #F2F2F2 50%, #fff 50%, #fff 100%);
	height: 400px;
*/
}

#contact {
    background: #f3f3f3;
    padding: 3rem;
}

.tbl_inq {
    width: 100%;
}
.tbl_inq td {
    width: auto;
}

.dt {
    background-color: #eee;
    font-weight: bold;
    padding: 10px 0 10px 15px;
}

.dd {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 20px;
}

.bold {
    font-weight: bold;
}

.contact-type {
    background-color: #222;
    color: #fff;
    font-size: 12px;
    margin-right: 20px;
    padding: 5px 10px 5px 5px;
}

#contact_form {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.dt2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
    margin-top: 20px;
}

.dd2 input {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
}

.wpcf7-form-control-wrap #pref3 {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 10px;
    width: 320px;
}

.zip {
    background-color: #fff;
    border: 1px solid #ccc;
    display: inline-block;
    padding: 10px 0;
    width: 150px !important;
}

.buttons {
    font-weight: bold;
    margin: 0 auto;
    margin-top: 40px;
    width: 50%;
}

.wpcf7c-elm-step1 {
    background-color: #222 !important;
    color: #fff;
}

textarea {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 0;
    width: 100%;
}

.required {
    color: red;
    margin-left: 5px;
}


.wpcf7-form-control.wpcf7-radio {
    display: flex;
}

span.wpcf7-list-item {
    margin-right: 20px;
    position: relative;
}
.wpcf7-list-item-label {
    color: #333;
    cursor: pointer;
    font-size: 13px;
}
input[type="radio"] {
    opacity: 0;
    position: absolute;
}
.wpcf7-list-item-label:before {
    background: #fff;
    border: 1px solid #888;
    border-radius: 100%;
    content: '';
    cursor: pointer;
    display: inline-block;
    height: 1.4em;
    margin-right: 10px;
    position: relative;
    text-align: center;
    top: -0.2em;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    vertical-align: middle;
    width: 1.4em;
}

.check {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.check .acceptance input {
    display: none;
}

.check input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
    background-color: #222;
    box-shadow: inset 0 0 0 2px #fff;
}


@media screen and (max-width: 425px) {
    .sub .inner {
        padding: 0.3%;
    }

    .wpcf7-form-control-wrap #pref3 {
        width: 100%;
    }

    .buttons {
        width: 80%;
    }
    .zip {
        background-color: #fff;
        border: 1px solid #ccc;
        display: inline-block;
        padding: 10px 0;
        width: 40% !important;
    }
}

.buttons {
    font-weight: bold;
    margin: 0 auto;
    margin-top: 40px;
    width: 50%;
}
.buttons input {
    background-color: #222 !important;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #fff;
    line-height: 2;
    width: 100%;
}

.privacy > p {
    margin-left: 2em !important;
}

.privacy p.intro {
    margin-left: 0 !important;
}

.privacy ol {
    margin: 0.5em 0 0.75em 1.25em !important;
}

.privacy ol li {
    list-style: decimal !important;
}

/*
.privacy li{
	margin-left: 1.4em;
	text-indent: -1.4em;
}
*/

/* 共通 */
.corner-ttl {
    color: #1f2f53;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
    text-align: center;
}
.corner-icon {
    height: 80px;
    margin-right: 20px;
    vertical-align: middle;
    width: 80px;
}

#philosophy dl.main {
    margin: 20px auto;
    width: 95%;
}

#philosophy dl.main dt {
    background: #1f2f53;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 32px;
    padding: 3px 0;
    text-align: center;
    width: 8em;
}
#philosophy dl.main dd {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0.5em 1em 1.5em 3em;
    text-align: left;
}

#philosophy dl.sub {
    margin: 5px auto 60px;
    width: 93%;
}
#philosophy dl.sub dt {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}
#philosophy dl.sub dt span {
    color: #1f2f53;
}
#philosophy dl.sub dd {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 1.5em 1em;
}
#philosophy dl.sub dd strong {
    font-weight: normal;
}

#outline table.tbl_com {
    margin: 20px auto 60px;
    max-width: 600px;
    width: 100%;
}
#outline .tbl_com th {
    background: #f3f3f3;
    border: #ccc 1px solid;
    color: #1f2f53;
    padding: 10px;
}
#outline .tbl_com td {
    border: #ccc 1px solid;
    padding: 0.5em 1em;
}
.map {
    height: 0;
    margin: 20px auto 60px;
    max-width: 800px;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}
.map iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#staff .staff-area {
    margin: 30px auto 60px;
    width: 100%;
}
#staff .member {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px 20px ;
    justify-content: center;
    margin-bottom: 60px;
}


#staff .member img {
    height: auto;
    max-width: 166px;
    width: 100%;
}

#staff table.tbl_staff {
    margin: 0;
    max-width: 600px;
    width: 100%;
}
#staff .tbl_staff th {
    background: #f3f3f3;
    border: #ccc 1px solid;
    color: #1f2f53;
    padding: 10px;
    width: 20%;
}
#staff .tbl_staff td {
    border: #ccc 1px solid;
    padding: 0.5em 1em;
}
#staff .tbl_staff .type {
    font-size: 14px;
    font-weight: bold;
}
#staff .tbl_staff .type::after {
    content: "\A" ;
    white-space: pre ;
}

.text_center {
    text-align: center;
}

@media screen and (max-width: 768px) {
    #philosophy dl.main {
        width: 90%;
    }
    #philosophy dl.main dt {
        letter-spacing: 0.1em;
        width: 100%;
    }
    #philosophy dl.main dd {
        font-size: 16px;
        margin: 0.5em 1em 1.5em 1em;
        width: 100%;
    }
    #outline .tbl_com {
        width: 80%;
    }
    #outline .tbl_com th,
    #outline .tbl_com td {
        border-bottom: none !important;
        display: block;
        width: 100%;
    }
    #outline .tbl_com .last td {
        border-bottom: #ccc 1px solid !important;
        width: 100%;
    }
    #staff .tbl_staff {
        width: 80%;
    }
    #staff .tbl_staff th,
    #staff .tbl_staff td {
        border-bottom: none !important;
        display: block;
        width: 100%;
    }
    #staff .tbl_staff .last td {
        border-bottom: #ccc 1px solid !important;
        width: 100%;
    }
}


/* car_sales */

.page-intro {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 1em auto;
    max-width: 800px;
    width: 90%;
}
p.start {
    margin-top: 2em;
}
p.last {
    margin-bottom: 2em;
}

.maker .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 50px auto;
    max-width: 820px;
    padding: 0;
    text-align: center;
    width: 90%;
}


.maker .list .list_items {
    max-width: 180px;
    text-align: center;
}

.maker .list .list_items img {
    border: #ccc 3px solid;
    height: auto;
    width: 100%;
}
.maker .list .list_items img:hover {
    border: #a1c7dc 3px solid;
}

.maker .list .list_items p {
    font-size: 14px;
    margin: 10px;
    text-align: initial;
}
@media screen and (max-width: 768px) {
    .maker .list {
        justify-content: center;
    }
    .maker .list .list_items {
        width: 45%;
    }
}

/* csr */
.page-ttl {
    color: #1f2f54;
    font-size: 30px;
    font-weight: bold;
    margin: 50px 0 30px;
    padding: 0;
    text-align: center;
}

h2.csr::before {
    content: url("../csr/img/ttl-ico01.png");
    padding-right: 10px;
    vertical-align: middle;
}
h2.bp::before {
    content: url("../bodywork_paint/img/icon-bodywork_paint.png");
    padding-right: 10px;
    vertical-align: middle;
}
h2.diagnosis::before {
    content: url("../computer_diagnosis/img/icon-computer_diagnosis.png");
    padding-right: 10px;
    vertical-align: middle;
}
h2.rust::before {
    content: url("../anti-rust_coating/img/icon-anti-rust_coating.png");
    padding-right: 10px;
    vertical-align: middle;
}


.sub-ttl {
    display: inline-block;
    font-size: 26px;
    margin: 0 0 0 1em;
    padding: 0 1.25em;
    position: relative;
    text-align: center;
}

.sub-ttl:before,
.sub-ttl:after {
    color: #eb6100;
    font-family: 'Font Awesome 5 Free';
    line-height: 1;
    position: absolute;
    top: calc(50% - 0.5em);
}

.sub-ttl:before {
    content: '\f101';
    left: 0;
}

.sub-ttl:after {
    content: '\f100';
    right: 0;
}

dl.csr {
    margin: 30px auto;
    max-width: 860px;
    width: 90%;
}

dl.csr dt {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 32px;
    text-align: left;
}
dl.csr dd {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0.5em 1em 0.5em 3em;
    text-align: left;
}
dl.last {
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    dl.csr {
        width: 90%;
    }
    dl.csr dt {
        letter-spacing: 0.1em;
        width: 100%;
    }
    dl.csr dd {
        font-size: 16px;
        margin: 0.5em 1em 1.5em 1em;
        width: 100%;
    }
    .sub-ttl {
        font-size: 20px;
        margin: 0 auto;
    }
}

/* computer_diagnosis */
.basic-price-txt {
    font-weight: bold;
    margin-top: 2em!important;
    text-align: center!important;
}
.basic-price {
    color: #1f2f53;
    font-size: 1.6em;
    text-align: center!important;
}
.basic-price span {
    color: #fea800;
    font-size: 2em;
}

.obd {
    margin: 50px 0;
}
.obd .explanation {
    background-color: #1f2e52;
    border-radius: 90px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 30px;
    text-align: center;
}

.obd .title {
    border-bottom: #1f2e52 solid 1px;
    color: #1f2e52;
    font-weight: bold;
    margin-top: 40px;
    padding-bottom: 5px;
}


.option-area {
    background-color: #f3f3f3;
    margin: 60px 0;
    padding: 12px;
}
.option-area h2 {
    color: #1f2f53;
    font-size: 24px;
    text-align: center;
}
.option-area h3 {
    color: #1f2f53;
    font-size: 20px;
    text-align: center;
}
.diagnosis-list {
    list-style: none;
    margin: 10px 0 40px!important;
    padding: 0 !important;
}
.diagnosis-list li {
    background-color: #fff;
    border: #1f2f53 1px solid;
    border-radius: 100vh;
    color: #1f2f53;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    margin: 0.75em auto !important;
    max-width: 24em;
    padding: 5px 1em 0 !important;
    text-align: center;
    width: 100%;
}

.no-border {
    border: none!important;
}

@media screen and (max-width: 768px) {
    .obd .explanation {
        font-size: 16px;
    }
}



/* bodywork_paint */

.images-ba {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.images-ba .left {
    margin-right: 20px;
    position: relative;
}

.price-area {
    background-color: #f3f3f3;
    margin: 60px 0;
    padding: 12px;
}
.price-area h2 {
    color: #1f2f53;
    font-size: 24px;
    text-align: center;
}
.price-area h3 {
    color: #1f2f53;
    font-size: 20px;
    text-align: center;
}

.price-area dl {
    margin: 10px auto 30px;
    max-width: 800px;
    width: 100%;
}
.price-area dl dt {
    border-bottom: #1f2e52 1px solid;
    color: #1f2e52;
    font-size: 2rem;
    font-weight: bold;
}

.recycle {
    line-height: 1.6;
    margin: 0 auto 80px;
    max-width: 800px;
    width: 90%;
}
.recycle dt {
    font-weight: bold;
    margin-top: 1em;
}
.recycle dd {
    padding: 0.5em 0.5em 0.75em;
}


.maintenance-area {
    margin: 60px 0;
    padding: 12px;
}
.maintenance-area h2 {
    color: #1f2f53;
    font-size: 28px;
    text-align: center;
}
.maintenance-area h3 {
    color: #1f2f53;
    font-size: 24px;
    line-height: 1.4;
    margin-top: 20px!important;
    text-align: center;
}
.maintenance-area h3 img {
    height: auto;
    margin-bottom: 15px;
    max-width: 180px;
    width: 100%;
}

.maintenance-area .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto 80px;
}

.maintenance-area a {
    width: fit-content;
}

.price-short {
    background: #1f2e52;
    border-radius: 15px;
    padding: 12px;
}
.price-short:hover {
    background: #4d7aff;
    color: #4d7aff!important;
}
.price-short .ps-class {
    background: #fff;
    font-weight: bold;
    margin: 0 2em;
    padding: 0.25em 1em;
    text-align: center;
}
.price-short .ps-ex {
    color: #fff;
    font-weight: bold;
    margin: 0;
    padding: 0.5em 0;
    text-align: center;
}
.price-short .ps-price {
    color: #ffa705;
    font-weight: bold;
    margin: 0;
    padding: 5px 0;
    text-align: center;
}
.price-short .ps-price span {
    font-size: 2em;
}
@media screen and (max-width: 768px) {
    .maintenance-area .flex {
        flex-direction: column;
    }

    .maintenance-area a {
        width: 100%;
    }
}

.maintenance-flow h3 {
    background-color: #1f2f53;
    color: #fff;
    margin: 0;
    padding: 10px 0;
    text-align: center;
}

.maintenance-flow .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

.maintenance-flow .list .list_items {
    border: #1f2f53 solid 1px;
    margin-bottom: 10px;
    text-align: center;
    width: 33%;
}

.maintenance-flow .list .list_items img {
    margin: 10px;
}
.maintenance-flow .list .list_items p {
    font-size: 14px;
    margin: 10px;
    text-align: initial;
}

@media screen and (max-width: 425px) {
    .maintenance-flow .list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }
    .maintenance-flow .list .list_items {
        width: 100%;
    }
}

.tbl-scroll {
    max-width: 960px;
    overflow: auto;
    white-space: nowrap;
}

.tbl_prc1 {
    border: 1px solid #ccc;
    border-collapse: separate;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

.tbl_prc1_title {
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}

.tbl_prc1 tr:nth-child(odd) td {
    background: #f6faff;
    border-left: 1px solid #ccc;
}

.tbl_prc1 tr:nth-child(even) td {
    background: #fff;
    border-left: 1px solid #ccc;
}

.tbl_prc1 tr td {
    border-bottom: 1px solid #ccc;
    padding: 10px 1em;
    text-align: center;
}

/*それぞれの車のクラス*/
.tbl_prc1 tr td.car_k {
    background: #deff9b !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 10px 0 !important;
}
.tbl_prc1 tr td.car_ss {
    background: #d0e4ff !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc1 tr td.car_s {
    background: #d0e4ff !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc1 tr td.car_m {
    background: #ffe4d0;
    border-left: 1px solid #ccc !important;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc1 tr td.car_l {
    background: #ffe4d0 !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc1 tr td.car_ll {
    background: #f8ff90 !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}


/*最後の合計の行に色を付ける*/
.tbl_prc1 tr:last-child td {
    border-bottom: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    /*  background-color: #ffd83D;*/
}
.tbl_prc1 tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}
.tbl_prc1 tr:last-child {
    border: none;
}
.tbl_prc1 tr {
    border-bottom: 1px solid #ccc;
}
.tbl_prc1 tr th:first-child {
    background-color: #f7f7f7;
}
/*最初の行の左端の見出しは左下の角を丸くする*/
.tbl_prc1 tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}
/*最初の行の右端のセルは左下の角を丸くする*/
.tbl_prc1 tr:first-child td:last-child {
    border-radius: 0 10px 0 0;
}
/*最後の合計の行の見出しは左下の角を丸くする*/
.tbl_prc1 tr:last-child th:first-child {
    border-bottom: none;
    border-radius: 0 0 0 9px;

/*  background-color: #FFD83D;*/
    font-weight: bold;

    /* border-top: 1px solid #fff; */
    /* font-size: 16px; */
}
/*最後の合計の行の右端のセルは右下の角を丸くする*/
.tbl_prc1 tr:last-child td:last-child {
    border-bottom: none;
    border-radius: 0 0 9px 0;
    /*  background-color: #FFD83D;*/
}
/*.tbl_prc1 tr:last-child td:first-child {
  border-radius: 0px 0px 9px 9px;
	border-left: none;
}*/

.tbl_prc1 tr:last-child td span.total {
    color: #f00;
    font-weight: bold;
}


/*ここからオプションのスタイル*/
.tbl_prc2 {
    border: 1px solid #ccc;

/*  -moz-box-shadow: 0px 0px 1px rgb(50,50,50);
	-ms-box-shadow: 0px 0px 1px rgb(50,50,50);
	-webkit-box-shadow: 0px 0px 1px rgb(50,50,50);
	box-shadow: 0px 0px 1px rgb(50,50,50);*/
    border: 1px solid #ccc;
    border-collapse: separate;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

.tbl_prc2_title {
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(255,255,255,0.7);
}

.tbl_prc2 tr:nth-child(odd) td {
    background: #f6faff;
    border-left: 1px solid #ccc;
}

.tbl_prc2 tr:nth-child(even) td {
    background: #fff;
    border-left: 1px solid #ccc;
}

.tbl_prc2 tr td {
    border-bottom: 1px solid #ccc;
    padding: 10px 1em;
    text-align: center;
}

/*それぞれの車のクラス*/
.tbl_prc2 tr td.car_k {
    background: #deff9b !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 10px 0 !important;
}
.tbl_prc2 tr td.car_ss {
    background: #d0e4ff !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc2 tr td.car_s {
    background: #d0e4ff !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc2 tr td.car_m {
    background: #ffe4d0;
    border-left: 1px solid #ccc !important;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc2 tr td.car_l {
    background: #ffe4d0 !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}
.tbl_prc2 tr td.car_ll {
    background: #f8ff90 !important;
    border-left: 1px solid #ccc;
    font-weight: bold;
    padding: 5px 0 !important;
}


/*最後の合計の行に色を付ける*/
.tbl_prc2 tr:last-child td {
    border-bottom: none;
    padding: 10px 0;
    /*  background-color: #ffd83D;*/
}
.tbl_prc2 tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}
.tbl_prc2 tr:last-child {
    border: none;
}
.tbl_prc2 tr {
    border-bottom: 1px solid #ccc;
}
.tbl_prc2 tr th {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ccc;
}
/*最初の行の左端の見出しは左下の角を丸くする*/
.tbl_prc2 tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}
/*最初の行の右端のセルは左下の角を丸くする*/
.tbl_prc2 tr:first-child td:last-child {
    border-radius: 0 10px 0 0;
}
/*最後の合計の行の見出しは左下の角を丸くする*/
.tbl_prc2 tr:last-child th:first-child {
    /*  background-color: #FFD83D;*/
    border-bottom: none;
    border-radius: 0 0 0 9px;
    /* border-top: 1px solid #fff; */
    /* font-size: 16px; */
}
.tbl_prc2 tr:last-child th {
    border-bottom: none;
}
/*最後の合計の行の右端のセルは右下の角を丸くする*/
.tbl_prc2 tr:last-child td:last-child {
    border-bottom: none;
    border-radius: 0 0 9px 0;
    /*  background-color: #FFD83D;*/
}

.tbl_prc2 tr:last-child td span.total {
    color: #f00;
    font-weight: bold;
}
