/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #65656b;
} */

#news{
    border-style: groove;
    padding: 0px 20px;
	margin-bottom: 20px;
}

main h1{
    font-family: 'Hiragino Kaku Gothic ProN';
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

/* -------------- aタグリンクのcss --------------*/
/* ベースのリンクスタイル */
.styled-link {
    text-decoration: none; /* 下線を消す */
    color: #1E90FF; /* リンクの基本色（青） */
    font-weight: 500; /* 太字 */
    transition: color 0.3s ease, transform 0.3s ease; /* 色とトランスフォームのアニメーション */
}

/* ホバー時のスタイル */
.styled-link:hover {
    color: #4682b4; /* ホバー時の色（少し暗い青） */
    text-decoration: underline; /* ホバー時に下線を表示 */
    transform: translateY(-3px); /* 少し上に移動 */
}

/* アクティブ時のスタイル */
.styled-link:active {
    color: #003366; /* クリック時の色 */
    transform: translateY(0); /* アクティブ時に移動を元に戻す */
}

/* -------------- aタグリンクのcss --------------*/

  /* ---------------- お知らせのcss -----------*/
.news-list{
    list-style: none outside;
    margin: 0;
    padding: 0;
  }
  .news-list .item a{
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 20px 20px;
  }
  .news-list .item:first-child a{
    border-top: 1px solid #CCC;
  }
  .news-list .item .date{
    margin: 0;
    min-width: 140px;
    font-size: 16px;
    color: #999;
    padding: 0 20px 0 0;
  }
  .news-list .item .category{
    margin: 0;
    min-width: 140px;
    padding: 0 20px 0 0;
  }
  .news-list .item .category span{
    background: #999;
    color: #FFF;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
  }
  .news-list .item .title{
    margin: 0;
    width: 100%;
  }
  .news-list .item a:hover .title{
    color: #00F;
  }
  
  @media screen and (max-width: 767px){
  .news-list .item a{
    flex-wrap: wrap;
  }
  .news-list .item .date{
    min-width: 100px;
  }
  .news-list .item .title{
    margin-top: 10px;
  }
  }
  
  /* 装飾 */
   
  *{
    box-sizing: border-box;
  }
  a{
    text-decoration: none;
  }
  body{
    margin: 20px;
  }

  /* ---------------- お知らせのcss -----------*/

  /* ---------------- 募集要項のcss -----------*/

        /* body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f4f4f9;
        } */
        /* h1 {
            color: #333;
            text-align: center;
        } */
        .recuiment {
            background-color: #fff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        /* h2 {
            color: #555;
        }
        p, ul {
            color: #666;
            line-height: 1.6;
        } */
        ul {
            list-style-type: disc;
            margin-left: 20px;
        }

  /* ---------------- 募集要項のcss -----------*/
