@charset "UTF-8";


/*--------------------------------------------------
**************************************************
top
**************************************************
--------------------------------------------------*/
#top {
    position: relative;
    overflow: hidden;
}

#top .top-bg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}

.angled-bg {
    position: absolute;
    top: -200px;
    left: -10px;
    width: 73%;
    height: 100%;
    background: url(../imgs/angled-sp.svg) no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
    animation: slideDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    will-change: top, opacity;
}

.top-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    top: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInTop 1s ease-out forwards;
    animation-delay: 1.2s;
    z-index: 1;
    will-change: opacity, transform;
}

@keyframes slideDown {
    from {
        top: -200px;
        opacity: 0;
    }

    to {
        top: 10px;
        opacity: 0.8;
    }
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-content .title-wrap {
    position: relative;
    width: 37%;
    color: #ffffff;
    margin-left: 20px;
}

.top-content .title-area .cach-text {
    font-size: 2rem;
}

.top-content .title-area h1 {
    font-size: 4.5rem;
}

.top-content .text-area {
    font-size: 1.8rem;
    font-style: italic;
}

.top-content .btn-wrap {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 10%;
    margin: auto;
    justify-content: center;
}

.inquire-button {
    position: relative;
    display: inline-block;
    width: 25rem;
    font-size: 2rem;
    text-align: center;
    text-decoration: none;
    line-height: 6rem;
    outline: none;
    cursor: pointer;
    color: #FFFFFF;
    background: linear-gradient(to right, #1B85FB, #FB4D8A);
    background-position: 0% 50%;
    background-size: 200% auto;
    transition: all 0.3s ease-out;
    box-shadow: 0px 0px 15px -5px #777777;
}

.inquire-button:hover {
    color: #fff;
    background-position: 100% 51%;
}

.scroll-down {
    display: none;
}


/*--------------------------------------------------
**************************************************
Business Outline
**************************************************
--------------------------------------------------*/
.business {
    position: relative;
    width: calc(100% - 2rem);
    margin: 8rem auto;
}

.business .title-area {
    width: calc(100% - 4rem);
    text-align: center;
    margin: 0 auto;
}

.business .title-area p {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
}

.business .business-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8rem;
}

.business .business-info .business-cont {
    position: relative;
    display: flex;
    width: 40rem;
    justify-content: flex-start;
    padding: 0 1rem;
    box-sizing: border-box;
    margin-bottom: 5rem;
}

.business .business-info .business-cont a {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 1s;
}

.business .business-info .business-cont a:hover {
    opacity: 0.8;
}

.business .business-info .business-cont::before {
    position: absolute;
    content: "";
    width: 35rem;
    height: 35rem;
    top: 0;
    left: 0;
    background: #87CFFB;
    z-index: -1;
}

.business .business-info .business-cont a .title {
    width: 35rem;
    height: 8rem;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    padding-top: 10px;
    box-sizing: border-box;
}

.business .business-info .business-cont a .img-wrap {
    width: 35rem;
    height: 35rem;
    margin-left: 5rem;
}