/* --------------------
 Front
-------------------- */
.header {
    display: none !important;
}

.front {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    min-height: 100svh;
}

.front-container {
    padding: 60px var(--c-pad);
    width: 100%;
}

@media (min-width: 768px) {
    .front-container {
        padding: 80px var(--c-pad);
    }
}

.front__logo {
    margin: 0 0 8vw;
    text-align: center;
}

@media (min-width: 768px) {
    .front__logo {
        margin: 0 0 40px;
    }
}

.front__logo svg {
    display: block;
    height: auto;
    margin: 0 auto;
    width: 32vw;
}

@media (min-width: 768px) {
    .front__logo svg {
        width: 150px;
    }
}

.front__logo svg #logo path {
    fill: var(--color-teal);
}

.front__title {
    margin: 0 0 16vw;
    text-align: center;
}

@media (min-width: 768px) {
    .front__title {
        margin: 0 0 60px;
    }
}

.front__title picture {
    display: block;
    width: 100%;
}

.front__title img {
    width: 64vw;
}

@media (min-width: 768px) {
    .front__title img {
        width: 580px;
    }
}

.front__content {
    margin: 0 0 16vw;
}

@media (min-width: 768px) {
    .front__content {
        margin: 0 0 70px;
    }
}

.front__content p {
    font-size: var(--fs12);
    font-weight: 400;
    letter-spacing: 0.13em;
    line-height: 2.14;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .front__content p {
        font-size: var(--fs15);
    }
}

.front__action a {
    align-items: center;
    aspect-ratio: 320/60;
    color: inherit;
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs20);
    font-weight: 700;
    height: auto;
    justify-content: center;
    letter-spacing: 0.12em;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 80vw;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    width: 100%;
}

@media (min-width: 768px) {
    .front__action a {
        font-size: var(--fs24);
        max-width: 320px;
    }
}

.front__action a svg {
    aspect-ratio: 320/60;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.front__action a svg path {
    fill: none;
    stroke: var(--color-teal);
    stroke-width: 1.0666666667vw;
}

@media (min-width: 768px) {
    .front__action a svg path {
        stroke-width: 4px;
    }
}

.front__action a span[data-shape] {
    background-color: var(--color-white);
    bottom: auto;
    display: block;
    height: 5.3333333333vw;
    left: 5.3333333333vw;
    position: absolute;
    top: -2.6666666667vw;
    transform-origin: center;
    width: 5.3333333333vw;
    z-index: 1;
}

@media (min-width: 768px) {
    .front__action a span[data-shape] {
        height: 30px;
        left: 35px;
        top: -15px;
        width: 30px;
    }
}

.front__action a span[data-text] {
    display: block;
    opacity: 0;
    position: relative;
    z-index: 2;
}