@import url("./tokens.css");

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: var(--fs-16);
    line-height: var(--lh-normal);
    color: var(--c-text);
    background: var(--c-bg);
}


html,
body {
    height: 100%;
}

body>footer {
    position: sticky;
    top: 100vh;
}


/* __FONTS
================================================*/
/* Typography__Adobe */
.ff-acumin {
    font-family: acumin-pro-extra-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.ff-vdl {
    font-family: "vdl-logomaru-jr", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ================================================
 __FONTS */


.header-inner,
.content-inner,
.crumb-list,
.container {
    max-width: calc(1156px + 16px * 2);
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.content {
    width: 100%;
    padding: 1rem 4rem;
    text-align: center;
}


.content-inner {
    padding: 2rem;
    border-radius: 10px;
}

::selection {
    background-color: var(--c-primary);
    color: #fff;
}


/* common
================================================ */

button {
    margin-top: 1rem;
}

.basic-btn {
    border-radius: 4px;
    background-color: var(--c-primary);
    color: #ffffffff;
    font-weight: bold;
    filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.3));
    padding: 10px 40px;
}

.disabled-btn {
    pointer-events: none;
    cursor: default;
    border-radius: 4px;
    background-color: var(--c-primary);
    color: #ffffffff;
    font-weight: bold;
    filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.3));
    padding: 10px 40px;
    opacity: 0.4;
}

.sp-br {
    display: none;
}

/* ================================================
common*/



/* __SP
================================================*/

@media (min-width: 768px) {
    .pc-no-display {
        display: none;
    }
}

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

    p {
        font-size: 14px;
    }

    .content {
        padding: 20px;
    }

    .content-inner {
        padding: 1.25rem;
    }

    .sp-column {
        display: flex;
        flex-direction: column;
    }

    .sp-br {
        display: block;
    }

}
