/* カラーの定義 */
: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: 80vh;
    min-height: 680px;
    background-image: url("../image/hero_bg_02.png");
    backdrop-filter: brightness(10%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-sec::before {
    content: "";
    width: 100%;
    backdrop-filter: brightness(80%);
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-sec .hero-wrapper {
}

.hero-sec .hero-point {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    padding: 8px 50px;
    color: #fff;
    text-align: center;
    filter: drop-shadow(0 0.15rem 0.15rem #000000);
}

.hero-sec .hero-title {
    /* font-size: 96px; */
    font-size: clamp(84px, 5vw, 128px);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    filter: drop-shadow(0 0.15rem 0.15rem #000000);
}

.hero-sec .hero-archive {
    display: block;
    margin: 25px auto;
}

.hero-sec .hero-button {
    max-width: 400px;
    padding: 20px 0;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {

    .hero-sec .hero-point {
        font-size: 8vw;
        padding: 15px 20px;
        border-radius: 48px;
        text-align: center;
    }

    .hero-sec .hero-title {
        font-size: 15.5vw;
        line-height: 1.15;
        position: relative;
        z-index: 88;
    }

    .hero-sec .hero-title .dot {
        display: inline-block;
        margin: 0 -0.3em;
    }

    .hero-sec .hero-archive {
        width: 280px;
        position: relative;
        z-index: 88;
    }

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