.pc {
    display: block;
}

.sp {
    display: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

html,
body {
    margin: 0;
    font-family: "Roboto Condensed", "Noto Sans JP", Arial, Helvetica, sans-serif !important;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.07em;
    color: #2E3035;
    scroll-behavior: smooth;
}

.header {
    width: 100%;
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255 255 255 / 100%);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.header__inner {
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    width: 120px;
    transition: 0.3s;
}

.header .logo:hover {
    opacity: 0.6;
}

.imgArea {
    text-align: center;
    margin: 48px 0;
}

.imgArea img {
    width: 100%;
    max-width: 560px;
}

.textArea {
    text-align: center;
    margin-bottom: 40px;
}

.textArea h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.textArea h1::after {
    content: "";
    display: block;
    width: 20px;
    border-bottom: 1px solid #363636;
    margin: 0 auto;
    margin-top: 8px;
}

.textArea p {
    font-size: 16px;
}

.form {
    margin: 0 auto;
    margin-bottom: 72px;
    width: 100%;
    max-width: 800px;
    padding: 40px 40px;
    background-color: #F7F8FA;
    border-radius: 8px;
}

@media screen and (max-width: 720px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    main {
        width: calc(350 / 390 * 100vw);
        margin: 0 auto;
    }

    .header__inner {
        padding: 16px;
    }

    .header .logo {
        width: 100px;
    }

    .imgArea {
        text-align: center;
        margin: 40px 0;
    }

    .imgArea img {
        max-width: 400px;
    }

    .textArea h1 {
        line-height: 1.5;
    }

    .textArea h1::after {
        margin-top: 12px;
    }

    .textArea p {
        font-size: 15px;
    }

    .form {
        padding: 16px;
    }


}