/* カラーの定義 */
:root {
    --gradation_main: linear-gradient(90deg, #38dfa5, #25c3a2 50%, #10a69e);
    --orange--color: #f95b01;
    --primary--color: #00a19a;
    --secondry-color: #3bcdab;
    --primary--bg--color: #dcf1ef;
    --default--bg--color: #444444;
    --title--text--color: #f0f0f0;
    --title--text--color--g: #dcf1ef;
}

/* ----------------------- */
/* ヒーローview */
/* ----------------------- */
.hero-sec {
    width: 100%;
    height: 80svh;
    min-height: 680px;
    background: var(--gradation_main);
    position: relative;
}

.hero-sec .hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 180px;
}

.hero-sec::before {
    content: "";
    display: block;
    width: 60vw;
    height: 100%;
    background: url("../image/hero_bg_11.png");
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}

.hero-sec .hero-point {
    font-size: clamp(32px, 10vw, 48px);
    color: #fff;
    font-weight: 900;
}

.hero-sec .hero-title {
    /* font-size: 96px; */
    font-size: clamp(64px, 10vw, 108px);
    font-weight: 900;
    color: #fff;
}

.hero-sec .hero-archive {
    width: 420px;
    display: block;
    margin: 25px 0;
}

.hero-sec .hero-button {
    width: 400px;
    margin: 20px 0;
}

.achievements-button{
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .hero-sec {
        height: 50svh;
    }

    .hero-sec .hero-wrapper {
        width: 95%;
        margin: 0 auto;
        padding: 150px 10px 0 10px;
    }

    .hero-sec::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: url("../image/hero_bg_11.png");
        background-position: 130px bottom;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
    }

    .hero-sec .hero-point {
        font-size: 24px;
        border-radius: 48px;
    }

    .hero-sec .hero-title {
        font-size: 42px;
        position: relative;
        z-index: 88;
        margin: 20px 0;
    }
    
    .hero-sec .hero-archive {
        width: 250px;
        position: relative;
        z-index: 88;
    }

    .hero-sec .hero-button {
        min-width: inherit;
        font-size: 18px;
        width: 220px;
        padding: 10px 30px;
        line-height: 1.2;
        border-radius: 36px;
    }
}
