.header-block {
    background-image: url(/tf/images/mv_top.png);
    padding-top: 190px;
}

.site-top {
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
}

.header-block > .inner {
    justify-content: center;
}

.header-block > .inner.login {
    height: 45px;
}

.site-top > .about {
    width: 195px;
    margin: 25px auto 0;
}

.site-top > .link {
    left: 20px;
    top: 80px;
}

.inner.login > .site-top > .link {
    top: 60px;
}

.site-top > .link > .image {
    height: 110px;
}

.site-top > .about > .item.col1 {
    font-size: 0.8rem;
}

.site-top > .about > .item.col2 {
    font-size: 1.2rem;
}

.site-top > .about > .item.col3 {
    font-size: 0.8rem;
}

.main-contents {
    margin: 0 20px 80px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.main-contents .article {
    width: 32%;
    box-shadow: 0 0 4px #565656;
}

.main-contents .article .title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #d74d54;
    color: #fff;
    height: 45px;
}

.main-contents .article.col1 .title {
    background-color: #00967b;
}

.main-contents .article.col2 .title:before,
.main-contents .article.col2 .title:after,
.main-contents .article.col3 .title:before,
.main-contents .article.col3 .title:after {
    content: "";
    background-image: url(/tf/images/icon_stopwatch.png);
    display: inline-block;
    width: 22px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: contain;
}

.main-contents .article .content {
    height: 300px;
    text-align: left;
    background-color: #fff;
}

.main-contents .article .content .items {
    height: 250px;
    font-size: 13px;
    line-height: 16px;
    padding: 10px;
    overflow-y: auto;
}

.main-contents .article .content .items .item {
    margin-bottom: 10px;
}

.main-contents .article .content .items .item .name {
    font-weight: bold;
}

.main-contents .article .content .items .item .buy {
    color: #d74d54;
    font-weight: bold;
}

.main-contents .article .content .items .item a {
    color: #da5e64;
    text-decoration: underline;
}

.main-contents .article .content .items .item a:hover {
    opacity: 0.7;
}

.main-contents .article .content .btn {
    display: block;
    text-align: center;
    margin: 10px 30px;
    padding: 10px;
    background-color: #00967b;
    font-size: 0.9rem;
    color: #fff;
}

.main-contents .article .content .btn:hover {
    background-color: #00b07d;
}

.new-info {
    width: 32%;
    float: left;
    font-size: 0.8rem;
    margin: 0 0 15px 20px;
}

.new-info h1 {
    text-align: left;
    font-weight: bold;
    margin-bottom: 10px;
}

.new-info h1:before,
.new-info h1:after {
    content: "";
    display: inline-block;
    height: 2px;
    background-color: #333;
    vertical-align: middle;
}

.new-info h1:before {
    width: 10px;
    margin-right: 5px;
}

.new-info h1:after {
    width: 215px;
    margin-left: 5px;
}

.new-info .items {
    height: 200px;
    text-align: left;
    background-color: #fff;
    overflow-y: auto;
    padding: 10px;
    box-shadow: 0 0 4px #565656;
}

.new-info .items .item {
    margin-bottom: 10px;
}

.new-info .items .item .date {
    color: #d74d54;
    font-weight: bold;
}

.modal-wrap input {
    display: none;
}

.modal-show-trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}

.modal-overlay {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.1s, transform 0s 0.1s;
    transform: scale(0);
}

.modal-wrap input:checked ~ .modal-overlay.exponential {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.1s;
}

.modal-wrap input:checked ~ .modal-overlay.attack {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.1s;
}

.modal-content {
    position: relative;
    align-self: center;
    width: 70%;
    max-width: 800px;
    padding: 30px 30px 15px;
    box-sizing: border-box;
    color: #fff;
    background: rgba(0,0,0,0.88);
    line-height: 1.4em;
    transition: 0.5s;
}

.modal-close-button {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content .description {
    margin: 30px 40px;
}

.modal-content .description .title {
    font-weight: bold;
    padding: 8px 0;
    font-size: 1.2rem;
}

.modal-content .description .text {
    padding: 20px 10px;
    text-align: left;
}