section {
    position: relative;
    margin-bottom: 80px;
}

section .header {
    margin-bottom: 35px;
}
section h1 {
    font-size: 50px;
    font-weight: 400;
    color: #A9A9A9;
}

section h1 .highlight {
    color: #1C1C1C;
    margin-left: 5px;
}

@media (prefers-color-scheme: dark) {
    section h1 {
        color: #666;
    }

    section h1 .highlight {
        color: #EEE;
    }
}
    
section .short-description {
    font-size: 28px;
}
section .description {
    color: #333;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 30px;
}
@media (prefers-color-scheme: dark) {
    section .description {
        color: #CCC;
    }
}

section .freeware-notice {
    color: #7A7A7A;
    font-size: 14px;
}

section .download {
    position: absolute;
    right: 0;
    top: 15px;
    text-align: center;
}

section .download .guide {
    margin-top: 20px;
    font-size: 13px;
}

section .download .guide a {
    border: 1px solid #106CF8;
    padding: 3px 5px;
    border-radius: 3px;
}

section .visual {
    text-align: left;
    margin-top: 50px;
}

.button-download {
    display: inline-block;
    background-color: #106CF8;
    height: 50px;
    line-height: 50px;
    width: 156px;
    border-radius: 25px;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
}

.button-download:hover {
    background-color: #095cd8;
}

.ver {
    font-size: 14px;
    margin-top: 8px;
}

.download-sub {
    font-size: 11px;
    margin-top: 10px;
    color: #ccc;
}

.download-sub a {
    text-decoration: none;
    color: #AAA;
}

.download-sub a:hover {
    text-decoration: underline;
    color: #999;
}

.update-date {
    font-size: 11px;
}

@media screen and (max-width: 500px) {
    section {
        position: relative;
        margin-bottom: 80px;
    }
    
    section .header {
        margin-bottom: 30px;
    }

    section h1 {
        font-size: 36px;
        font-weight: 400;
    }
    
    section h1 .highlight {
        margin-left: 5px;
    }
 
    section .short-description {
        font-size: 16px;
    }
    section .description {
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 30px;
    }
 
    section .visual {
        text-align: center;
        margin-top: 50px;
    }
    section .visual img {
        width: 80%;
    }
 
    section .download {
        position: inherit;
        right: 10px;
        top: 15px;
        text-align: center;
    }
 
    .button-download {
        display: inline-block;
        height: 30px;
        line-height: 30px;
        width: 120px;
        border-radius: 25px;
        border: none;
        font-size: 15px;
    }
    
}