@charset "utf-8";

/* ===============
first viewスタイル
=============== */

.first-view {
    height: calc(100vh - 110px);
    background-image: url(../images/index/bg-main-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.first-view-text {
    width: 100%;
    /* max-width: 1200px; */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #000;
}

.first-view-text h1 {
    font-family: serif;
    font-size: 56px;
    line-height: 72px;
}

/* ===============
aboutスタイル
=============== */
.about {
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
}

.about-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    line-height: 2;
    margin-top: 18px;
}

.link-button-area {
    margin-top: 40px;
}

.link-button {
    background-color: #00a1e9;
    display: inline-block;
    min-width: 180px;
    line-height: 48px;
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.link-button:hover {
    opacity: 0.7;
}

/* ===============
businessスタイル
=============== */
.business {
    background-image: url(../images/index/business-bg-img3.jpg);
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 450px;
    text-align: center;
}

.business-title {
    padding-top: 60px;
}

.business-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.business-content p {
    margin-top: 20px;
    line-height: 1.5;
}

.business-content ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}
.business-content ul li {
    margin-top: 15px;
}

@media (max-width: 800px) {
    .first-view {
        height: calc(100vh - 50px);
    }

    .first-view-text {
        padding-left: 20px;
        padding-right: 20px;
    }

    .first-view-text h1 {
        font-size: 29px;
        line-height: 48px;
    }

    .about-text {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .business-content p {
        padding-left: 20px;
        padding-right: 20px;
    }
}