@charset "UTF-8"; /* header-globals */
:root {
    --header-bg: #fff;
    --header-inner: 1600px;
    --header-pd: 50px;
    --tel-bg: green;
    --mail-bg: #000;
    --text-color: #000;
    --hide-pc: none;
    --header-height: 80px;
}

/* main {
  padding-top: 90px;
} */
.hide-pc {
    display: none;
}

.header-main {
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: var(--header-bg);
    padding-left: 7%;
    z-index: 10;
    height: 90px;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 0 3%;
}

.header-main.active {
    /* border-bottom: solid 1px #000; */
    box-shadow: 0px 0px 10px 6px rgba(0,0,0,0.5);
}

.header-main .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--header-inner);
    width: 100%;
    height: 100%;
    margin-right: unset;
    max-width: 1400px;
    margin: 0 auto;
}

.h1_logo {
}

.h1_logo img {
    max-width: 300px;
    width: 100%;
}

.header-main .nav-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    width: 100%;
    height: 100%;
}

.header-main .header-nav .link-wrap {
    display: flex;
    gap: 25px;
}

.header-main .header-nav .link-wrap a {
    font-size: 14px;
    color: #000;
}

.header-main .header-nav .link-wrap .separator {
    width: 1px;
    height: 16px;
    background-color: #000;
}

.header-main .contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 320px;
    width: 100%;
    /* height: 100%; */
    position: relative;
    max-width: 200px;
}

.header-main .contact-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
}

.header-main .contact-box a.contact-tel {
    background-color: var(--shade2-bg-color);
    color: #fff;
    font-size: 24px;
    gap: 10px;
    height: 100%;
    font-size: 20px;
}

.header-main .contact-box a.contact-tel span {
    font-size: 16px;
}

.header-main .contact-box a.w-border {
    /* border-bottom: 1px solid #fff; */
}

.footer {
    background: #1d5ba8;
    color: #fff;
    text-align: center;
}

.footer .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer .contactcta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    transition: 0.5s ease;
}

.footer .contactcta:hover {
    transform: scale(0.95);
    opacity: 0.8;
}

.footer .contactcta:active {
    transform: scale(0.92);
}

.footer p {
    font-size: 18px;
}

p.copyright {
    font-size: 14px;
}

.footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.footer ul li {
    display: flex;
    align-items: center;
}

.footer ul a {
    color: #fff;
    transition: 0.5s ease;
}

.footer ul a:hover {
    transform: scale(0.96);
    opacity: 0.8;
}

.footer ul a:active {
    transform: scale(0.93);
}

.footer ul li::before {
    content: "";
    width: 1px;
    height: 25px;
    background-color: #fff;
    display: block;
    margin: 0 15px;
}

.mv-parts {
}

.mv-parts img {
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .h1_logo img {
        max-width: 250px;
    }

    .header-main .contact-box {
        max-width: 250px;
    }

    .header-main .header-nav .link-wrap {
        gap: 15px;
    }

    .header-main .contact-box a.contact-tel {
        font-size: 20px;
    }


}

@media screen and (max-width: 1250px) {
    .header-main {
        /* padding-left: 20px; */
    }
}

@media screen and (max-width: 1100px) {
    .header-main {
        min-height: 80px;
        /* padding-right: 20px; */
    }

    .h1_logo img {
        padding-left: 0;
        width: 35vw;
        max-width: 250px;
        min-width: 200px;
    }

    .header-main .nav-box {
        display: none;
        position: absolute;
        left: 0;
        top: 80px;
        background-color: var(--shade2-bg-color);
        width: 100%;
        height: 250px;
        gap: 0;
        padding: 0 0 20px;
    }

    .header-main .header-nav .link-wrap {
        padding: 20px 0px;
        justify-content: center;
    }

    .header-main .header-nav .link-wrap .link-item {
        width: fit-content;
    }

    .header-main .header-nav .link-wrap a {
        color: #fff;
    }

    .header-main .header-nav .link-wrap .separator {
        background-color: #fff;
    }

    .header-main .contact-box {
        max-width: 100%;
    }

    .sp-menu.hide-pc {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        background-color: var(--main-bg-color);
        transition: 0.5s ease;
    }

    .sp-menu span {
        display: block;
        width: 50%;
        height: 2px;
        background-color: #fff;
        transition: 0.5s ease;
    }

    .sp-menu.active {
        gap: 0;
    }

    .sp-menu.active span:nth-of-type(1) {
        transform: rotate(-45deg);
    }

    .sp-menu.active span:nth-of-type(2) {
        display: none;
    }

    .sp-menu.active span:nth-of-type(3) {
        transform: rotate(45deg);
        margin-top: -2px;
    }
}

@media screen and (max-width: 768px) {
    .footer ul {
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 0;
    }

    .footer ul li::before {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .header-main .header-nav .link-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-main .header-nav .link-wrap .separator {
        width: 100%;
        height: 1px;
        max-width: 300px;
    }
}

    main {
        padding-top: 80px;
    }


    @charset "UTF-8"; /* header-globals */
:root {
    --header-bg: #fff;
    --header-inner: 1600px;
    --header-pd: 50px;
    --tel-bg: green;
    --mail-bg: #000;
    --text-color: #000;
    --hide-pc: none;
    --header-height: 80px;
}

/* main {
  padding-top: 90px;
} */
.hide-pc {
    display: none;
}

.header-main {
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: var(--header-bg);
    padding-left: 7%;
    z-index: 10;
    height: 90px;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 0 3%;
}

.header-main.active {
    /* border-bottom: solid 1px #000; */
    box-shadow: 0px 0px 10px 6px rgba(0,0,0,0.5);
}

.header-main .inner {
    display: flex;
    justify-content: space-between;
    max-width: var(--header-inner);
    width: 100%;
    height: 100%;
    margin-right: unset;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.h1_logo {
}

.h1_logo img {
    max-width: 300px;
    width: 100%;
}

.header-main .nav-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    width: 100%;
    height: 100%;
}

.header-main .header-nav .link-wrap {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-main .header-nav .link-wrap a {
    font-size: 13px;
    color: #000;
}

.header-main .header-nav .link-wrap .separator {
    width: 1px;
    height: 16px;
    background-color: #000;
    display: flex;
    align-items: center;
    align-content: center;
    height: 50px;
}

.header-main .contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 320px;
    width: 100%;
    /* height: 100%; */
    position: relative;
    max-width: 200px;
}

.header-main .contact-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
}

.header-main .contact-box a.contact-tel {
    background-color: var(--shade2-bg-color);
    color: #fff;
    font-size: 24px;
    gap: 10px;
    height: 100%;
    font-size: 20px;
}

.header-main .contact-box a.contact-tel span {
    font-size: 16px;
}

.header-main .contact-box a.w-border {
    /* border-bottom: 1px solid #fff; */
}

.footer {
    background: #1d5ba8;
    color: #fff;
    text-align: center;
}

.footer .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer .contactcta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    transition: 0.5s ease;
}

.footer .contactcta:hover {
    transform: scale(0.95);
    opacity: 0.8;
}

.footer .contactcta:active {
    transform: scale(0.92);
}

.footer p {
    font-size: 18px;
}

p.copyright {
    font-size: 14px;
}

.footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.footer ul li {
    display: flex;
    align-items: center;
}

.footer ul a {
    color: #fff;
    transition: 0.5s ease;
}

.footer ul a:hover {
    transform: scale(0.96);
    opacity: 0.8;
}

.footer ul a:active {
    transform: scale(0.93);
}

.footer ul li::before {
    content: "";
    width: 1px;
    height: 25px;
    background-color: #fff;
    display: block;
    margin: 0 15px;
}

.mv-parts {
}

.mv-parts img {
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .h1_logo img {
        max-width: 250px;
    }

    .header-main .contact-box {
        max-width: 250px;
    }

    .header-main .header-nav .link-wrap {
        gap: 15px;
    }

    .header-main .contact-box a.contact-tel {
        font-size: 20px;
        background: #bd3960;
        height: 60px;
        max-width: 200px;
        margin: 0 auto 110px;
    }


}

@media screen and (max-width: 1250px) {
    .header-main {
        /* padding-left: 20px; */
    }
}

@media screen and (max-width: 1100px) {
    .header-main {
        min-height: 80px;
        /* padding-right: 20px; */
    }

    .h1_logo img {
        padding-left: 0;
        width: 35vw;
        max-width: 250px;
        min-width: 200px;
    }

    .header-main .nav-box {
        display: none;
        position: absolute;
        left: 0;
        top: 80px;
        background-color: var(--shade2-bg-color);
        width: 100%;
        height: 120px;
        gap: 0;
        padding: 0 0 20px;
        box-shadow: 1px 20px 20px 0px rgb(121 121 121 / 7%);
    }

    .header-main .header-nav .link-wrap {
        padding: 20px 0px;
        justify-content: center;
        background: #fcfcfc;
    }

    .header-main .header-nav .link-wrap .link-item {
        width: fit-content;
    }

    .header-main .header-nav .link-wrap a {
        color: #000000;
    }

    .header-main .header-nav .link-wrap .separator {
        background-color: #000000;
    }

    .header-main .contact-box {
        max-width: 100%;
    }

    .sp-menu.hide-pc {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        background-color: var(--main-bg-color);
        transition: 0.5s ease;
    }

    .sp-menu span {
        display: block;
        width: 50%;
        height: 2px;
        background-color: #fff;
        transition: 0.5s ease;
    }

    .sp-menu.active {
        gap: 0;
    }

    .sp-menu.active span:nth-of-type(1) {
        transform: rotate(-45deg);
    }

    .sp-menu.active span:nth-of-type(2) {
        display: none;
    }

    .sp-menu.active span:nth-of-type(3) {
        transform: rotate(45deg);
        margin-top: -2px;
    }
}

@media screen and (max-width: 768px) {
    .footer ul {
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 0;
    }

    .footer ul li::before {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .header-main .header-nav .link-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fcfcfc;
    }

    .header-main .header-nav .link-wrap .separator {
        width: 100%;
        height: 1px;
        max-width: 300px;
    }
}

    main {
        padding-top: 80px;
    }


@media screen and (min-width: 576px) and (max-width: 1000px) {
    .header-main .nav-box {
        height: 140px !important;
    }

    .header-main .contact-box a.contact-tel {
        font-size: 20px;
        background: #bd3960;
        height: 60px;
        max-width: 200px;
        margin: 0 auto 110px;
    }

    .header-main .contact-box {
        height: 70%;
    }
    
    .header-main .nav-box {
        height: 140px!important;
    }

}


@media screen and (max-width: 1000px){
.header-main .contact-box a.contact-tel {
    background: #bd3960;
    height: 60px;
}}


@media screen and (min-width: 1001px){
    .header-main .contact-box a.contact-tel {
        background: var(--shade2-bg-color);
        height: 100%;
    }}