*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;
}
.pc {
    display: block;
    width: 100%;
    overflow: hidden;
}
.pc .first{
    position: relative;
}
.pc .pcImg{
    width: 100%;
    display: block;
}
.pc .footer{
    background: linear-gradient(0deg, #FFFFFF 0%, #FEF5EE 100%);
    width: 100%;
    text-align: center;
    color: #333333;
    font-size: 14px;
    line-height: 30px;
    padding: 10px 0;
}

.mobile {
    text-align: center;
    display: none;
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
}
.mobile .mobileImg {
    display: block;
    width: 100%;
}
.mobile .first{
    position: relative;
}
.mobile .download{
    width: 250px;
    height: 45px;
    position: absolute;
    bottom: 60px;
    left: calc(50% - 125px);
    background: linear-gradient(64deg, #E94059, #FF525A);
    border-radius: 23px;
    font-size: 16px;
    color: #fff;
    line-height: 45px;
}
.mobile .footer{
    width: 100%;
    text-align: center;
    color: #333333;
    font-size: 12px;
    line-height: 30px;
    padding: 60px 0;
}
.mobile .footer .email{
    margin-bottom: 10px;
    color: #9A4848;
}

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

    .mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }
}
