/* 共通 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif;
    background: transparent;

}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
    background: transparent;
}

.background-wrapper {
    
    background: url('public/background.png') center center / cover;
    width: 100%;
    height: 100vh;
}

.main-content {
    width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 40px;
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background: #f8f9fa;
}

.flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    position: relative;
    flex-direction: column;
}

.lead-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    width: 100%;
}

.left-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.right-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    width: 100%;
}

.catch-image {
    width: 600px;
    height: auto;
    max-width: 100%;
}

.lead-image {
    width: 560px;
    height: auto;
    max-width: 100%;
    margin-top: 60px;
}

@media (max-width: 1280px) {
    .main-content {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .catch-image {
        width: 70%;
    }

    .lead-image {
        width: 70%;

    }
}


@media (max-width: 640px) {
    .background-wrapper {
        background: url('public/background-sp.png') center center / cover;
    }

    .catch-image {
        width: 100%;
    }

    .lead-image {
        width: 100%;
    }

    .main-content {
        padding: 100px 16px 16px;
    }

}