*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    background:#050505;

    color:#f5e8d0;

    font-family:

    "Yu Mincho",

    serif;

    overflow-x:hidden;

}

/* HERO */

.news-hero{

    position:relative;

    height:60vh;

    background:

    linear-gradient(

    rgba(0,0,0,.55),

    rgba(0,0,0,.75)

    ),

    url("news-bg.jpg");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

}

.hero-nav{

    position:absolute;

    top:40px;

    right:80px;

    display:flex;

    gap:40px;

    z-index:10;

}

.hero-nav a{

    color:#f5e8d0;

    text-decoration:none;

    font-size:14px;

    letter-spacing:3px;

}

.hero-nav a:hover{

    color:#d7b27a;

}

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:

    translate(-50%,-50%);

    text-align:center;

}

.hero-sub{

    font-size:18px;

    letter-spacing:3px;

}

.hero-content h1{

    font-size:110px;

    color:#d7b27a;

    font-weight:300;

}

.hero-line{

    width:220px;

    height:1px;

    background:#d7b27a;

    margin:20px auto;

}

.hero-message{

    font-size:26px;

}

/* NEWS */

.news-section{

    padding:120px 10%;

}

.news-container{

    max-width:1200px;

    margin:auto;

}

.news-card{

    display:flex;

    align-items:center;

    gap:50px;

    padding:40px 0;

    border-bottom:

    1px solid rgba(215,178,122,.2);

    text-decoration:none;

    color:#f5e8d0;

    transition:.4s;

}

.news-card:hover{

    transform:

    translateX(10px);

}

.news-date{

    min-width:140px;

    color:#d7b27a;

    font-size:15px;

}

.news-info{

    flex:1;

}

.news-info h2{

    font-size:32px;

    font-weight:400;

    margin-bottom:10px;

}

.news-info p{

    color:#ccc;

    line-height:1.8;

}

.news-card span{

    color:#d7b27a;

    font-size:14px;

    letter-spacing:2px;

}

/* FOOTER */

footer{

    text-align:center;

    padding:100px 20px;

    border-top:

    1px solid rgba(215,178,122,.2);

}

footer p{

    color:#d7b27a;

    margin-bottom:20px;

}

footer h2{

    font-size:50px;

    color:#d7b27a;

    font-weight:400;

}

/* スマホ */

@media(max-width:900px){

.news-card{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

}

.hero-content h1{

    font-size:70px;

}

.hero-nav{
    position:static;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px 20px;
    width:90%;
    margin:20px auto;
}

.hero-nav a{
    display:block;
    text-align:center;
    font-size:13px;
    letter-spacing:2px;
}

.hero-overlay{
    pointer-events:none;
}

.news-info h2{

    font-size:24px;

}

}