@charset "UTF-8";

header {
    background: none;
}

.header_logo {
    color: #000!important;
}

ul.header_menu li a {
    color: #000!important;
}

ul.header_menu li a span {
	background: #000;
}

a.headercontact {
    border: 1px solid #242422;
}

.reading_inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding: 100px 0;
}

section.reading {
    padding: 88px 0 0;
}

.reading_inner h2 {
    font-size: 2.4rem;
    margin-bottom: 35px;
    font-weight: 400;
}

.reading_inner h2 span {
    display: block;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
}

ul.reading_contents {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

ul.reading_contents li {
    width: 31%;
    margin-bottom: 35px;
    margin-right: 3.5%;
}
ul.reading_contents li:nth-child(3n) {
	margin-right: 0;
}
ul.reading_contents li a {
    color: #242422;
}

.reading_info h3 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 25px;
    margin: 15px 0;
}

.reading_tag {
    display: flex;
    margin-top: 20px;
}

.reading_tag span {
    display: block;
    font-size: 1.1rem;
    padding: 0px 7px;
    border: 1px solid;
    font-weight: 400;
    border-radius: 3px;
    margin-right: 5px;
}

ul.reading_contents li a:hover .reading_thumb img {
	opacity: 1;
	transform: scale(1.025);
}

.reading_thumb img {
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.reading_info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 20px;
}

.reading_date {
    text-align: right;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.reading_thumb {
    width: 100%;
    border-radius: 8px;
    background: #fff;
    box-shadow: 12px 12px 24px rgba(0,0,0,0.05), 3px 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

a.viewmore_link {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: #000;
    letter-spacing: 0.5px;
    border: 0.5px solid;
    padding: 20px;
    max-width: 500px;
    font-family: "aileron", sans-serif;
    border-radius: 4px;
    margin: 50px auto 0;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

a.viewmore_link:hover {
	background: #000;
	color: #fff;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.reading_inner {
    padding: 50px 0 0;
}

ul.reading_contents {
    display: block;
}

ul.reading_contents li {
    width: 100%;
    margin-bottom: 30px;
}

a.viewmore_link {
    padding: 14px 0;
    margin: 0;
}

}