:root {
    --shadow: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

* {
    box-sizing: border-box;
    font-family: 'Zen Maru Gothic', serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img,
button:hover {
    opacity: .8;
    transition-duration: .2s;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.ft-robot {
    font-family: 'Roboto', sans-serif;
}
.dropshadow {
    filter: var(--shadow);
}

/* header */
.header {
    margin: auto;
    padding: 25px 0;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    width: 92%;
    z-index: 11;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1070px;
}
.headers {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}
.nav {
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 0;
    padding: 10px 35px;
    width: 75%;
}
.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-list li {
    text-align: center;
}
.nav-list li {
    margin-right: 25px;
}
.nav-list li.tel {
    border-left: 2px dotted #44B7BE;
    margin-right: 10px;
    padding-left: 20px;
    text-align: left;
}
.nav-list li a {
    color: #44B7BE;
    display: block;
    font-size: 16px;
    font-weight: bold;
}
.nav-list li.tel a .number {
    font-size: 20px;
    font-weight: 400;
}
.nav-list li.tel a span {
    display: block;
    font-size: 12px;
    font-weight: 100;
}
.nav-list li.tel a .number::before {
    background: url(../images/icon-tel.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    width: 18px;
}
.contact {
    background: #44B7BE;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    text-align: center;
    width: 25%;
}
.contact a {
    display: block;
}
.contact span {
    color: #fff;
    display: block;
    font-size: 14px;
}
.contact .contacts {
    color: #fff;
    font-size: 16px;
}
.contact .contacts::before {
    background: url(../images/icon-contact.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    width: 18px;
}
.header-menu,
.hamburger-panel {
    display: none;
}
@media screen and (max-width: 1160px) {
    .nav-list li {
        margin-right: 15px;
    }
    .nav-list li a {
        font-size: 14px;
    }
    .nav-list li.tel a .number {
        font-size: 18px;
    }
    .nav-list li.tel a span {
        font-size: 11px;
    }
    .contact span {
        font-size: 12px;
    }
    .contact .contacts {
        color: #fff;
        font-size: 14px;
    }
}
@media screen and (max-width: 960px) {
    .header {
        background: #fff;
        border-radius: 50px;
        padding: 10px 20px;
        width: 88%;
    }
    .headers {
        justify-content: flex-end;
    }
    .nav {
        align-items: flex-start;
        background: #fff;
        border-radius: 0;
        height: 100%;
        margin: 0;
        padding: 120px 20px 50px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 400px;
        z-index: 8;
    }
    .nav.open {
        right: 0;
    }
    .nav-list {
        display: block;
    }
    .nav-list li {
        display: block;
    }
    .nav-list li:not(:last-child) {
        margin: 0 0 15px 0;
    }
    .nav-list li.tel {
        border-left: 0;
        margin-right: 0;
        padding-left: 0;
        text-align: center;
    }
    .nav-list li a {
        color: #333;
    }
    .nav-list li.login a::before {
        background: url(../images/icon-login-b.svg) no-repeat;
        height: 16px;
        margin-right: 0;
    }
    .nav-list li.btn a {
        border: 1px solid #333;
        padding: 15px 20px;
        text-align: center;
        width: 100%;
    }
    /* hamberger */
    .header-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 15px;
        position: relative;
        text-align: center;
        width: 28px;
        z-index: 9;
    }
    .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: #333;
        border-radius: 4px;
    }
    .header-menu___trigger.active span {
        background-color: #333;
    }
    .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: 7;
    }
    .contact {
        padding: 8px 0;
        width: 180px;
    }
}


/* footer */
.footer {
    background: #596464;
    margin-top: auto;
    padding: 80px 0 0;
}
.footer-inner {
    margin: 0 auto;
    padding: 0 0 45px;
    width: 92%;
    max-width: 1200px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-left {
    width: 50%;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
}
.footer-logo {
    margin: 0 0 55px;
    width: 100%;
}
.footer-logo a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.footer-links__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links__list li:not(:last-child) {
    margin-right: 35px;
}
.footer-links__list li a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.footer-tel {
    margin-right: 35px;
}
.footer-tel a .number {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
.footer-tel a span {
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: 100;
}
.footer-tel a .number::before {
    background: url(../images/icon-tel-w.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    width: 18px;
}
.footer-contact {
    background: #44B7BE;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    text-align: center;
    width: 250px;
}
.footer-contact a {
    display: block;
}
.footer-contact span {
    color: #fff;
    display: block;
    font-size: 14px;
}
.footer-contact .contacts {
    color: #fff;
    font-size: 16px;
}
.footer-contact .contacts::before {
    background: url(../images/icon-contact.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    width: 18px;
}
.copyright {
    background: #53565A;
    color: #fff;
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
}

@media screen and (max-width: 1068px) {
    .footer-left {
        margin: 0 0 25px;
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .footer {
        padding: 0 0 250px;
    }
    .footer-tel,
    .footer-contact {
        width: 100%;
    }
    .footer-tel {
        margin: 0 0 25px;
    }
    .footer-links__list li:not(:last-child) {
        margin-right: 0;
    }
    .footer-links__list li {
        width: 48%;
    }
}