body {
    font-family: sans-serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.logo a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 24px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
}

.hero {
    background-image: url('https://www.jhcc.co.jp/images/mv.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.news, .about-us, .solutions {
    padding: 50px 20px;
    text-align: center;
}

.news-container, .about-us-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.news-item, .about-us-item {
    width: 30%;
    border: 1px solid #eee;
    padding: 20px;
}

.view-more {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
}

footer {
    background-color: #f8f8f8;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.footer-right li {
    margin-left: 20px;
}

.footer-right a {
    text-decoration: none;
    color: #333;
}