@charset "utf-8";
/*PCサイズ1080px以上*/
.pc_on{
    display: block;
}
.mob_on{
    display: none;
}
.btn-burger,.nav-toggle {
    display: none;
}

#main{
    background-color: #000;
    width: 1080px;
    margin: 10px auto 0;
}
.top_nav{
    display: block;
}
#schedule dl{
    width: fit-content;
    padding: 25px;
    margin: 20px auto;
}
#schedule dt{
    float: left;
    font-size: 2rem;
}
#schedule dd{
    margin: 0 0 10px 200px;
    padding: 7px 20px;
    border-left: solid #eee 2px;
    font-size: 1.8rem;
}
#offer p{
    margin: 10px 40px 20px 50px;
}
#offerbox{
    margin: 100px auto 20px;
    width: 80%;
    
}
.twitter_area{
    margin: 20px auto;
    width: 50vw;
    height: 270px;
    padding: 10px;
    background-color: #0f0f0f;
    border-radius: 15px;
}
/*モバイルサイズ1080px以下*/
@media screen and (max-width: 1080px) {
    .pc_on{
        display: none;
    }
    .mob_on{
        display: block;
    }
    #main{
        width: 100%;
        min-width: 375px;
        margin: 10px 0 0;
    }
    .twitter_area{
        width: 90vw;
    }
    #schedule dl{
        width: fit-content;
        padding: 25px;
        margin: 20px auto;
    }
    #schedule dt{
        float: none;
        font-size: 1.6rem;
    }
    #schedule dd{
        margin: 0 0 10px 0px;
        padding: 7px 20px;
        border-left: solid #eee 2px;
        font-size: 1.4rem;
    }
    .thanks_text{
        font-size: 1.6rem;
    }
    #offer p{
        margin: 10px 10px 20px;
    }
    #offerbox{
        margin: 20px auto;
        width: 95%;
        
    }
    .mob_guid{
        font-size: 2rem;
        display: block;
        padding: 10px;
        background-color: #eee;
    }
    #sitemap{
        display: none;
    }
    /*ハンバーガーアイコン*/
.btn-burger {
    display: block;
    width: 56px;
    height: 60px;
    position: absolute;
    top: 5px;
    right: 10px;
}

/*ハンバーガーアイコン三本線*/
.icon, .icon:before, .icon:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 35px;
    background-color: #eee;
    border-radius: 2px;
    display: block;
    content: '';
    margin: auto;
}
.icon:before {
    top: 20px;
}
.icon:after {
    top: -20px;
}

/*クリック後の動作*/
.nav-toggle:checked ~ .btn-burger .icon {
    background: transparent;
}
.nav-toggle:checked ~ .btn-burger .icon:before {
    transform: rotate(-45deg);
    top: 0;
}
.nav-toggle:checked ~ .btn-burger .icon:after {
    transform: rotate(45deg);
    top: 0;
}
.icon,
.icon:before,
.icon:after {
    transition: all .8s;
}

/*中身*/
.top_nav {
    background-color: #1f1e27;
}
.nav-list a {
    display: block;
    text-decoration: none;
    color: #fff;
}
.nav-list {
    list-style: none;
    display: none;
    margin: 0;
    padding-left: 20px;
}
.nav-list li {
    margin: 0;
    padding: 5px 10px;
}
.nav-toggle:checked ~ .nav .nav-list {
    display: block;
}

}