html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: var(--colorBlack);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--familySans);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

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

.for-sp {
    display: none;
}

.fixedBanner {
    display: flex;
    flex-direction: column;
    left: 0;
    position: fixed;
    row-gap: 8px;
    top: 40%;
    z-index: 900;
}

.fixedBanner__img img {
    height: auto;
    width: 50px;
}

@media screen and (max-width: 767px) {
    .for-sp {
        display: block;
    }

    .fixedBanner {
        bottom: 0;
        display: flex;
        flex-direction: unset;
        left: 0;
        position: fixed;
        row-gap: 8px;
        top: auto;
        z-index: 900;
    }

    .fixedBanner__img img {
        height: auto;
        width: 100%;
    }
}
/*___________________________
Header
___________________________*/

.header {
    background: #fff;
    display: block;
    position: relative;
    z-index: 10;
}

.headerBar {
    align-items: center;
    box-sizing: content-box;
    display: flex;
    height: 85px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 70px;
}

.headerLogo img {
    max-width: 180px;
}

.headerLogo p {
    padding-left: 14px;
}

.headerContact {
    display: grid;
    gap: 24px;
    grid-template-columns: auto 240px;
}

.headerTel__link {
    display: flex;
    gap: 4px;
}

.headerTel__link img {
    max-width: 26px;
}

.headerTel__link p,
.headerTel__text {
    color: var(--colorBlue);
    font-size: 32px;
    line-height: 1;
}

.headerTel__text {
    font-size: 16px;
    margin-top: 6px;
}

@media screen and (max-width: 900px) {
    .headerBar {
        padding: 0 16px;
    }
    .headerContact {
        gap: 12px;
        grid-template-columns: auto 220px;
    }
}

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

/*___________________________
Footer
___________________________*/

.footer {
    box-sizing: border-box;
    padding: 40px 16px 64px;
    position: relative;
    z-index: 1;
}

.footerBG {
    height: 100%;
    left: 0;
    object-fit: cover;
    opacity: 0.1;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.footerBG__filter {
    background: var(--linearGradientBlue);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.footer .container {
    max-width: 1080px;
}

.footer__contents {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer__nav {
    display: flex;
    gap: 20px;
}

.footer__nav a {
    align-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.copywrite {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-top: 60px;
    text-align: end;
}

@media screen and (max-width: 767px) {
    .footer__nav {
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .copywrite {
        font-size: 12px;
        margin-top: 40px;
    }
}

/*___________________________
Button
___________________________*/

.gradientButton {
    align-items: center;
    background: var(--linearGradientBlue);
    border-radius: 4px;
    box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.25);
    color: #fff;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    width: 100%;
}

.linkArrow {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 8px;
    transform: translateY(-3px) rotate(45deg);
    width: 8px;
}

.gradientButton.hover {
    display: none;
}

@media screen and (max-width: 767px) {
    .gradientButton {
        font-size: 20px;
    }
    .gradientButton.hover {
        bottom: 60px;
        display: flex;
        gap: 10px;
        left: 50%;
        max-width: 300px;
        position: fixed;
        transform: translateX(-50%);
    }
}
