/* 全体のスタイル */
body {
    background: #000;
    color: #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  /* ヒーローイメージ */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/soccer.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* 黒フィルター */
  }
  
  .hero_content {
    position: relative;
    z-index: 1;
  }
  
  .hero_content h1 {
    font-size: 5rem;
    font-weight: bold;
    margin: 0;
  }
  
  .hero_content p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  /* ヘッダー */
  .header {
    background: #111;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
  .header .logo h1 {
    font-size: 2rem;
    margin: 0;
    text-align: center;
    color: #fff;
  }
  
  .header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  
  .header nav ul li {
    margin: 0 20px;
  }
  
  .header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    transition: all 0.3s;
  }
  
  .header nav ul li a:hover,
  .header nav ul li a.now_page {
    color: #00ffff;
    border-bottom: 2px solid #00ffff;
  }
  
  /* ニュースセクション */
  .container_service {
    padding: 40px 0;
    background-color: #222;
  }
  
  .container_service h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
  }
  
  .news_list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .news_list_item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: #333;
    border-radius: 5px;
  }
  
  .news_list_date {
    margin-right: 20px;
  }
  
  .news_list_date time {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .news_item {
    font-size: 1rem;
  }
  
  .news_list_item a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .news_list_item a:hover {
    background-color: #444;
  }
  
  /* フッター */
  .footer {
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer .copy {
    font-size: 1rem;
  }
  /* プロフィールセクション */
.profile_section {
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-color: #222;
  }
  
  .profile_image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 30px;
    object-fit: cover;
    border: 5px solid #fff;
  }
  
  .profile_info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .profile_info p {
    font-size: 1.2rem;
    color: #ccc;
    margin: 5px 0;
  }
  
  .profile_info strong {
    color: #00ffff;
  }
  