@charset "UTF-8";

html {
    font-size: 62.5%;
    height: 100%;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    cursor: pointer;
    color: #e52828;
}

a:hover {
    opacity: 0.8;
}

strong {
    font-weight: 700;
}


body {
    font-family: "TBUDゴシック R", tbudgothic-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1;
    color: #1c1c1c;
    position: relative;
    z-index: 1;
}

.sp {
    display: none;
}

.wrap {
    padding: 60px 0 80px;
    width: 85%;
    max-width: 800px;
    margin: 0 auto;
}

.wrap p.logo {
    padding: 0 0 40px;
}

.wrap h2 {
    font-size: 2.8rem;
    line-height: 1.5;
    margin: 0 0 30px;
    text-align: center;
}

.wrap h2 span {
    background: linear-gradient(transparent 50%, #fff9c5 0%);
}

.wrap p {
    font-size: 1.8rem;
    line-height: 2;
    padding: 0 0 15px;
    text-align: center;
}

.wrap p small {
    font-size: 1.4rem;
    line-height: 2;
    color: #888;
}

.wrap p.link {
    font-size: 2.0rem;
}



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

    .sp {
        display: inherit;
    }

    .wrap p.logo img {
        max-width: 90%;
        height: auto;
    }

    .wrap h2 {
        font-size: 2.0rem;
    }

    .wrap p {
        font-size: 1.5rem;
    }

    .wrap p small {
        font-size: 1.3rem;
    }

    .wrap p.link {
       font-size: 1.8rem;
    }


}