@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

body {
    color: #232323;
    font-weight: normal !important;
}

body, ul, li {
    margin: unset;
    padding: unset;
}

/* 固定ヘッダ */
#new_head {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.top-item-title {
    text-align: center;
    margin-top: 25px;
}
.new-item-title {
    font-size: 26px;
    margin: unset;
}
.new-item-subtitle {
    font-size: 14px;
    padding: 15px 0px 40px;
    margin: unset;
}

.contents {
    width: 800px;
}

.data-info {
    text-align: left;
    font-size: 16px;
    margin-top: 16px;
    font-weight: bold;
}
.info-text {
    text-align: left;
    margin: 20px 0 80px;
    font-size: 12px;
    font-weight: 100;
}

.vis-phone {
    display: none;
}
.vis-desk {
    display: inherit;
}

@media (max-width: 480px) {
    .vis-phone {
        display: inherit !important;
    }
    .vis-desk {
        display: none !important;
    }
    
    .contents {
        width: 90%;
    }

    /* トップタイトル */
    .new-item-title {
        font-size: 23px;
        margin: unset !important;
    }
    .new-item-subtitle {
        font-size: 13px;
        margin: unset !important;
        padding: 5px 0px 20px;
    }

    .data-info {
        font-size: 14px;
    }
}