* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    text-shadow: 1px 1px 2px white;
  }
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
.main {
    flex: 1; /* メインが伸びて、フッターを下に押し下げる */
  }

body {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    z-index: 0;
}
  
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bk.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

/* ヘッダーだけど */
.home, .menu-text{
    color: rgb(46, 46, 46);
    text-decoration: none;
}
h2 {
    margin: 50px 0 30px 0;
    text-align: center;
}
.news-header {
    display: flex;
    justify-content: left;
    gap: 20px;
    padding: 30px;
    border-top: 1px solid rgb(235, 235, 235);
    width: 50%;
    margin: 0 auto;
}
.news-text {
    padding-bottom: 30px;
    /* width: 500px; */
    font-family: "Futura", "Avenir", "Helvetica", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}
.news-header:last-child {
    border-bottom: 1px solid rgb(235, 235, 235); /* この指定の仕方は無理？ */
}
.news-category-notice {
    color: rgb(255, 161, 38);
}
.news-category-event {
    color: rgb(38, 81, 255);
}
.news-main {
    display: flex;
    justify-content: center;
}
.hamburger, .mobile-menu{
    display: none;
}