/* きょうつう */
:root {
    --base-color: #fff;
    --main-color: #e88887;
    --sub-color: #f7efea;
    --accent-color: #edc4c1;
    --font-color: #333;
    --xl-margin: 120px;
    --l-margin: 80px;
    --m-margin: 40px;
    --s-margin: 32px;
    --xs-margin: 16px;
    --xl-text: 2rem;
    --l-text: 2rem;
    --m-text: 1rem;
    --s-text: .8rem;
    --xs-text: .8rem;
    --transition: .3s ease;
}

/* .zen-maru-gothic-light {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-maru-gothic-medium {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.zen-maru-gothic-bold {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-maru-gothic-black {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 900;
    font-style: normal;
} */

html {
    height: 100%;
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    color: var(--font-color);
    line-height: 1.7;
    background-color: var(--base-color);
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--font-color);
}

span {
    display: inline-block;
}

.pc {
    display: none;
}

.wrapper {
    width: 95%;
    margin: auto;
}

/* 準備中ページ */
.scroll_wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--base-color);
}

.main_content {
    min-height: 100vh;
    position: relative;
    text-align: center;
    padding-top: 30vh;
}

h1 {
    width: 35%;
    min-width: 150px;
    margin: auto;
}

p {
    margin-top: 32px;
    font-size: 1.25rem;
    color: var(--main-color);
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 640px;
    background-color: var(--accent-color);
    padding: 16px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--base-color);
}

body::before {
    content: "";
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--sub-color);
    background-image: url("../img/main-bg.webp");
    background-repeat: no-repeat;
    background-size: 95% calc(100vh - 59.2px * 2);
    background-position: center;
    z-index: -1;
}

/* れすぽんしぶ */
@media (min-width: 1025px) {
    .pc {
        display: block !important;
    }

    .sp {
        display: none !important;
    }
}