/* 全体 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
    line-height: 1.6;
  }


  #pattern1 {
    background-color:#7fffd4;
    width:300px;
    }


  
  /* メイン */
  .hero {
    background: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .hero-logo img {
    width: 100%;
    height: auto;
  }
  
  .hero-text {
    color: #0066cc;
    font-size: 1.5rem;
    margin: 15px 0;
  }
  
  .hero-subtext {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
  }

  .site-map{
    margin: 20px;
  }
  .site-map-title{
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .nav-menu {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: left; /* メニューを左寄せにする場合 */
  }
  
  .nav-item {
    display: block; /* 各リンクをブロック要素に */
    padding: 15px 10px;
    margin: 5px 0; /* 各リンクの間隔を追加 */
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
  }
  
  .nav-item:last-child {
    border-bottom: none; /* 最後の要素にボーダーを付けない */
  }
  
  .nav-item:hover {
    background-color: #e6e6e6; /* ホバー時の背景色 */
  }
  
  .nav-item-detail {
    display: block; /* スパンを縦に配置 */
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
  }

  .course-title {
    background: #e74c3c;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 0;
}

.course-title span {
  text-decoration: underline;
}


  
/* フッター */
footer {
  background-color: rgb(173, 231, 249);
  color: rgb(0, 0, 0);
  padding: 20px 10px;
  text-align: center;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
}

.footer-menu-list li {
  display: inline-block;
  margin: 0 10px;
}

.footer-menu-list a {
  text-decoration: none;
  color: #333;
}

.copyright {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
  
  /* メディアクエリ */
  @media (min-width: 768px) {
    .hero-text {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .site-title {
        font-size: 16px;
    }

    .sub-title {
        font-size: 18px;
    }

    .footer-menu-list li {
        display: block; /* フッターメニューを縦並びに */
        margin: 5px 0;
    }
}
  