/* カラーの定義 */
: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::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    min-height: 680px;
    background: url("../image/hero_bg_01.png");
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}

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

.hero-sec .hero-point {
    width: fit-content;
    /* font-size: 36px; */
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 900;
    padding: 8px 50px;
    background: #fff;
    color: var(--secondry-color);
    border-radius: 36px;
}

.hero-sec .hero-title {
    /* font-size: 96px; */
    font-size: clamp(32px, 10vw, 48px);
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    padding: 30px 0;
}

.hero-sec .hero-title .big {
    /* font-size: 108px; */
    font-size: clamp(42px, 5vw, 84px);
    letter-spacing: 0.04em;
}

.hero-sec .hero-archive {
    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: 80px 10px 0 10px;
    }

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

    .hero-sec .hero-point {
        padding: 5px 60px;
        border-radius: 48px;
        text-align: center;
    }

    .hero-sec .hero-title {
        font-size: 24px;
        position: relative;
        z-index: 88;
        margin: 0 0 10px;
    }

    .hero-sec .hero-title .big {
        font-size: 9.5vw;
        letter-spacing: 0.01em;
    }

    .hero-sec .hero-archive {
        width: 200px;
        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;
    }
}
