/* header */
.header {}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15px 0 5px;
    width: 100%;
}
.header-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2%;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}
.header-left .logo {
    display: block;
    line-height: 0;
}
.header-nav__top {
    border-bottom: 1px solid #cdcdcd;
    margin: 0 0 15px;
    padding: 0 0 10px;
}
.header-nav__top p {
    color: #000;
    font-size: 30px;
    font-weight: 900;
    margin: 0;
}
.header-nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-nav__list li {
    display: inline-block;
}
.header-nav__list li:not(:last-child) {
    margin-right: 15px;
}
.header-nav__list li a {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding-right: 15px;
    position: relative;
    text-decoration: none;
}
.header-nav__list li a::after {
    background: url(../images/arrow.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 10px;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 10px;
}
.contact-btn {
    margin-left: 25px;
}
.contact-btn a {
    background: #000;
    border-radius: 10px 0 0 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.contact-btn a:hover {
	background: rgb(193,224,43);
background: linear-gradient(90deg, rgba(193,224,43,1) 0%, rgba(227,234,20,1) 100%);
	transition:0.3s;
	color:#000;
}
.contact-btn a::before {
    background: url(../images/contact.svg) no-repeat;
    background-position: center;
    background-size: 65%;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin-right: 15px;
    width: 50px;
}
.contact-btn a p {
    font-size: 22px;
    margin: 0;
}
.contact-btn a span {
    display: block;
    font-size: 18px;
}
.header-menu,
.nav-bg {
    display: none;
}
@media screen and (max-width: 1267px) {
    .header-nav__top {
        margin: 0 0 12px;
        padding: 0 0 8px;
    }
    .header-nav__top p {
        font-size: 24px;
    }
    .header-nav__list li a {
        font-size: 14px;
    }
    .contact-btn a {
        padding: 10px 15px;
    }
    .contact-btn a::before {
        height: 40px;
        margin-right: 10px;
        width: 40px;
    }
    .contact-btn a p {
        font-size: 18px;
    }
    .contact-btn a span {
        font-size: 14px;
    }
}
@media screen and (max-width: 987px) {
    .header-nav__top p {
        font-size: 18px;
    }
    .header-nav__list li:not(:last-child) {
        margin-right: 10px;
    }
    .header-nav__list li a {
        font-size: 13px;
    }
    .contact-btn {
        margin-left: 15px;
    }
    .contact-btn a::before {
        height: 35px;
        width: 35px;
    }
    .contact-btn a p {
        font-size: 16px;
    }
    .contact-btn a span {
        font-size: 12px;
    }
}
@media screen and (max-width: 767px) {
    .header-inner {
        width: 92%;
    }
    .header-left .logo {
        width: 80px;
    }
    .header-right {
        background: #fff;
        display: block;
        height: 100%;
        padding: 100px 20px 0;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 300px;
        z-index: 99;
    }
    .header-right.open {
        right: 0;
    }
    .header-nav__top {
        display: none;
    }
    .header-nav__list {
        display: block;
    }
    .header-nav__list li {
        width: 100%;
    }
    .header-nav__list li:not(:last-child) {
        margin: 0 0 20px;
    }
    .contact-btn {
        margin: 35px 0 0;
    }
    /* hamberger */
    .header-menu {
        display: inline-block;
        position: relative;
        text-align: center;
        z-index: 100;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 28px;
        height: 23px;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 1px;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: -2px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -7px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -12px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    .nav-bg {
        background: rgb(0 0 0 / 65%);
        display: none;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 98;
    }
}

/* footer */
.footer {
    margin-top: 100px;
    padding: 0 0 50px;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1400px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-left {
    width: 35%;
}
.footer-right {
    padding-top: 25px;
    width: 60%;
}
.footer-left .logo-f {
    display: block;
    margin: 0 0 35px;
}
.footer-left p {
    color: #000;
    font-size: 18px;
}
.footer-left .tel {
    color: #000;
    font-size: 33px;
    margin: 20px 0 0;
}
.footer-left .tel a {
    color: #000;
    font-size: 33px;
    text-decoration: none;
}

.footer-right__top {
    border-bottom: 1px solid #bcbcbc;
    margin: 0 0 25px;
    padding: 0 0 25px;
}
.footer-top__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-top__links li a {
    color: #000;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}
.footer-right__bottom {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-block {
    width: 25%;
}
.footer-block:not(:last-child) {
    margin-right: 45px;
}
.footer-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-block ul li a {
    color: #000;
    text-decoration: none;
}
.footer-block ul .footer-ttl {
    margin: 0 0 20px;
}
.footer-block ul .footer-ttl a {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 20px;
}
.footer-block ul .footer-links:not(:last-child) {
    margin-bottom: 10px;
}
.footer-block ul .footer-links a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
}
.footer-block ul .footer-links a::before {
    background: #000;
    content: "";
    display: inline-block;
    height: 1px;
    margin-right: 10px;
    width: 10px;
}
@media screen and (max-width: 987px) {
    .logo-f {
        width: 200px;
    }
    .footer-left {
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .footer-left p {
        font-size: 16px;
    }
    .footer-left .tel {
        font-size: 24px;
    }
    .footer-left .tel a {
        font-size: 24px;
    }
}
@media screen and (max-width: 767px) {
    .logo-f {
        width: 160px;
    }
    .footer-left p {
        font-size: 14px;
    }
    .footer-left .tel {
        font-size: 21px;
    }
    .footer-left .tel a {
        font-size: 21px;
    }
    .footer-top__links li {
        margin-top: 20px;
        width: 49%;
    }
    .footer-top__links li:nth-child(-n+2) {
        margin-top: 0;
    }
    .footer-block {
        margin-top: 25px;
        width: 49%;
    }
    .footer-block:nth-child(-n+2) {
        margin-top: 0;
    }
    .footer-block:not(:last-child) {
        margin-right: 0;
    }
}
@media screen and (max-width: 367px) {
    .footer-block {
        width: 100%;
    }
    .footer-block:nth-child(-n+2) {
        margin-top: 25px;
    }
    .footer-block:first-child {
        margin-top: 0;
    }
    .footer-block:not(:last-child) {
        margin-right: 0;
    }
}

