@charset "utf-8";
@import url("normalize.css");

.wrapper{
    background: #FFF;
}
.banner{
    position: relative;
}
.banner img{
    width: 100%;
}
.mobile{
    display: none;
}
.banner_text{
    width: 270px;
    padding-top: 20px;
    padding-bottom: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFF;
    text-shadow: 1px 1px 12px rgba(0,0,0,0.9);
    transform: translate(-50%,-50%);
}
.banner_text h1{
    font-size: 33px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 5px;
}
.banner_text h4{
    font-size: 24px;
    text-align: center;
    font-weight: normal;
}
.news_wrap{
    background:#f7f7f7;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 0px;
    min-height: 600px;
}
.news_box{
    max-width: 1230px;
    width: 95%;
    background: #ffffff;
    margin: 0 auto;
    padding: 70px 120px 20px;
    box-shadow: 1px 1px 18px rgba(0,0,0,0.1);
}
.date{
    font-size: 18px;
    color: #5a5a5a;
    padding-bottom: 11px;
}
.title{
    font-size: 24px;
    color: #8d8757;
    font-weight: bold;
    border-bottom: 1px solid #8d8757;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.content{
    font-size: 18px;
    color: #5d5d5d;
    letter-spacing: 1px;
    line-height: 180%;
}
.content p{
    margin-bottom: 30px;
}
.content a{
    color: #5d5d5d;
    text-decoration: underline;
    word-break: keep-all;
    word-break: break-word;
}
.content .img{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 0;
}
.content .img img{
    max-width: 100%;
    max-height: 650px;
}
.content .img .comment{
    font-size: 13px;
    margin-top: -5px;
    line-height: 160%;
}

.back_btn{
    width: 130px;
    height: 40px;
    margin: 30px auto;
    background: #404040;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;    
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease-out;
}
.back_btn .top_btn{
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;    
}
.back_btn .top_btn{
    position: relative;
    z-index: 1;
    transition: 0.2s;
}
.back_btn:hover .top_btn{
    letter-spacing: 0.2rem;
    transition: 0.7s;
}
.back_btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292929;
    transition: 0.2s;
    animation: backbtn 0.4s cubic-bezier(0.17, 0.000, 0.3, 1.000) forwards;
}
.back_btn:hover:before {
    box-shadow: 1px 1px 15px rgba(0,0,0,0.1);
		animation: backbtn-2 0.4s cubic-bezier(0.17, 0.000, 0.3, 1.000) forwards;
	}

@keyframes backbtn {
	0% {
		transform-origin: right top;
		transform: scaleX(1.0);
	}
	100% {
		transform-origin: right top;
        transform: scaleX(0.0);
        
	}
}
@keyframes backbtn-2 {
	0% {
		transform-origin: left top;
		transform: scaleX(0.0);
	}
	100% {
		transform-origin: left top;
		transform: scaleX(1.0);
	}
}

@media screen and (max-width: 1300px) {
.news_wrap {
    padding-bottom: 40px;
}
.news_box {
    padding: 40px 60px;
}

}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 768px) {
.mobile{
    display: block;
}
.desktop{
    display: none;
}
.news_box {
    padding: 30px 30px 10px;
}
.content .img img {
    max-width: 100%;
    max-height: 500px;
}

}
@media screen and (max-width: 610px) {

}
@media screen and (max-width: 460px) {
.news_box {
    padding: 30px 14px 10px;
}
.content .img {
    margin-bottom: 10px;
}
.news_wrap {
    padding-top: 20px;
}


}
@media screen and (max-width: 420px) {
.news_wrap {
    padding-bottom: 10px;
}
.banner_text {
    width: 200px;
}
.banner_text h1 {
    font-size: 22px;
}
.banner_text h4 {
    font-size: 16px;
}
}