@charset "utf-8";




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    background-color: #F2F2F2;
    color: #231815;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    font-size: min(2vw , 20px);
}
.container {
    background-color: #ffffff;
    padding: 2em;
    border-radius: 2vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 90%;
}
h1 {
    font-size: 2em;
    line-height: 1.2;
    color: #333;
    margin-bottom: .25em;
    font-weight: 700;
}
p {
    font-size: 1em;
    line-height: 1.8;
    color: #333;
}
.note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 25px;
}

.sp {
    display: none;
}

.container img {
    width: 50%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1em;
}


@media screen and (max-width: 768px) {
    body {
        font-size: min(3.75vw , 16px);
    }

    .sp {
        display: block;
    }
}