@charset "UTF-8";

body {
    overflow: visible;
}

/****header****/
header.dark .logo .white {
    opacity: 1;
}

header.dark .logo .black {
    opacity: 0;
}

/****聯絡我們****/
.contact {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/**表單區域**/
.contact__content {
    display: block;
    width: 100%;
    max-width: 770px;
    margin: 0 280px 0 0;
    padding: 85px 0 0 0;
    flex: 0 1 auto;
    order: 2;
}

.contact__content::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, #fff 70%);
    pointer-events: none;
}

.contact__content__title {
    display: block;
    width: 100%;
    font-size: 60px;
    line-height: 1;
    color: var(--titleColor);
    font-family: "Italiana";
}

.contact__content__text {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    color: #474747;
}

.contact__content__text::before {
    content: '';
    position: relative;
    display: block;
    width: 50px;
    height: 1px;
    margin: 20px 0;
    background: #cdcdcd;
}

.contact__content__form {
    margin: 35px 0 0 0;
}

/**側欄**/
.contact__aside {
    position: sticky;
    top: 0;
    left: 0;
    display: block;
    width: calc(45% - 60px);
    max-width: 660px;
    height: 100vh;
    margin: 0 50px 0 0;
    flex: 0 0 auto;
}

.contact__aside__bg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact__aside__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, .6) 60%);
}

.contact__aside__bg img {
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.contact__aside__bg .pad,
.contact__aside__bg .mb {
    display: none;
}

.contact__aside__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 60px);
    max-width: 570px;
    height: 100%;
    margin: 0 auto;
    padding: 65px 0;
    color: #fff;
}

.contact__aside__content__title {
    display: block;
    width: 100%;
    font-size: 60px;
    line-height: 1;
    font-family: "Italiana";
}

.contact__aside__content__info {
    display: block;
    width: 100%;
    margin: 30px 0 0 0;
}

.contact__aside__content__info__item {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 1.5;
}

.contact__aside__content__info__item:last-child {
    margin: 0;
}

@media screen and (max-width: 1600px) {

    /**表單區域**/
    .contact__content {
        margin: 0 180px 0 0;
    }
}

@media screen and (max-width: 1200px) {

    /**表單區域**/
    .contact__content {
        margin: 0 100px 0 0;
    }
}

@media screen and (max-width: 991px) {
    body {
        overflow: hidden;
    }

    /****header****/
    header.dark .logo .white {
        opacity: 0;
    }

    header.dark .logo .black {
        opacity: 1;
    }

    /****聯絡我們****/
    .contact {
        display: block;
        padding: 240px 0 0 0;
    }

    /**表單區域**/
    .contact__content {
        width: calc(100% - 60px);
        max-width: none;
        margin: 0 auto;
        padding: 0;
    }

    .contact__content::after {
        display: none;
    }

    /**側欄**/
    .contact__aside {
        position: relative;
        width: 100%;
        max-width: none;
        height: 655px;
        margin: 70px auto 0 auto;
    }

    .contact__aside__bg::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, #fff 5%, rgba(255, 255, 255, 0) 40%);
        z-index: 10;
    }

    .contact__aside__bg::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .7) 60%);
        z-index: 20;
    }

    .contact__aside__bg .pc {
        display: none;
    }

    .contact__aside__bg .pad {
        display: block;
    }

    .contact__aside__content {
        width: calc(100% - 160px);
        max-width: none;
        z-index: 30;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {

    /****聯絡我們****/
    .contact {
        padding: 160px 0 0 0;
    }

    /**表單區域**/
    .contact__content {
        width: calc(100% - 40px);
    }

    .contact__content__title {
        font-size: 35px;
    }

    .contact__content__text {
        font-size: 14px;
    }

    .contact__content__text::before {
        margin: 15px 0;
    }

    /**側欄**/
    .contact__aside {
        height: 450px;
        margin: 0;
    }

    .contact__aside__bg::before {
        background: linear-gradient(to bottom, #fff 15%, rgba(255, 255, 255, 0) 50%);
    }

    .contact__aside__bg .pad {
        display: none;
    }

    .contact__aside__bg .mb {
        display: block;
    }

    .contact__aside__content {
        width: calc(100% - 40px);
        padding: 45px 0;
    }

    .contact__aside__content__title {
        font-size: 35px;
    }

    .contact__aside__content__info {
        margin: 20px 0 0 0;
    }

    .contact__aside__content__info__item {
        font-size: 14px;
    }
}

/****觸控螢幕****/
@media (any-hover: none) {}

/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}