/* @font-face {
    font-family: 'Kazuki';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url('./assets/fonts/KazukiReiwaRegular.ttf') format('truetype');
} */
@font-face {
    font-family: 'Kazuki';
    font-style: normal;
    font-display: swap;
    font-weight: 500;
    src: url('./assets/fonts/KazukiReiwaBold.ttf') format('truetype');
}
html,
body {
    font-family: 'Space Mono', sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    margin: 0;
    height: 100vh;
    width: 100%;
}
*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.body-overlay {
    z-index: -1;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
}
.body-overlay__image {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.1) scaleY(1.1);
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.body-overlay__absolute {
    background-color: rgba(0, 0, 0, 0.2);
    inset: 0;
    position: absolute;
}
.content {
    margin: 0 auto;
    margin-top: 40px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    max-width: 580px;
    width: 100%;
    box-shadow:
        0 24px 32px 0px rgba(0, 0, 0, 0.15),
        0 0 #0000,
        0 24px 32px 0px rgba(0, 0, 0, 0.15);
    position: fixed;
    inset: 0px;
    background-position: center -50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(144, 110, 96);
    background-image: url('./assets/images/bg.jpeg');
}
.content-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    inset: 0;
    position: absolute;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.main {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 14px;
    padding: 28px;
}
.header {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
}
.header-logo {
    border-radius: 9999px;
    object-fit: contain;
}
.header-title {
    font-size: 1.5rem;
    color: #e9e6dd;
    font-weight: 500;
    font-family: 'Kazuki';
    letter-spacing: 0.05em;
}
.main-link {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 48px auto;
    padding: 0 8px;
    gap: 8px;
    border-radius: 16px;
    background-color: #e9e6dd;
    text-decoration: none;
    transition: background-color 0.2s;
    height: 64px;
}
.main-link:hover {
    background-color: #ded9ce;
}
.main-link__img {
    border-radius: 12px;
}
.main-link__text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #574531;
    text-align: center;
    padding: 0 120px 0 80px;
}

@media (max-width: 768px) {
    .content {
        margin-top: 0;
        border-radius: 0;
        background-position: center top;
    }
    .content-overlay {
        border-radius: 0;
    }
    .main {
        padding-left: 12px;
        padding-right: 12px;
    }
    .main-link__text {
        padding: 0 42px 0 0;
        font-size: 14px;
    }
}
