@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.background{
    background-color: #445883;
    width: 100%;
    height: 100vh;
    display: flex; /* 要素をflexboxに対応させる */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    flex-direction: column; /* 子要素の並びを上から下にする（要素の改行に対応） */
}
.text{
    font-family: 'Noto Sans JP', sans-serif;
    color:#F9DB75;
}
.text h1{
    text-align: center;
    font-weight: 500;
    margin: 0.5rem 0;
}
.text h2{
    text-align: center;
    font-weight: 400;
}
.center{
    text-align: center;
}
.text p{
    font-family: 'Noto Sans JP', sans-serif;
    color: #F9DB75;
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0.5rem 0;
} 
.textbox {
    width: 40%;
    padding: 8px 10px;
    border: 2px solid #003366;
    color: #333;
    font-size: 1rem;
    line-height: 1.5rem;
}
.center h2{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 25px 0 0 25px;
    padding-left: 1em;
    color: #F9DB75;
    margin: 1rem 29% 0;
}
.center h2::before {
  position: absolute;
  content: '〇';
  left: 0;
  font-size: 100%;
  color: #F9DB75;
}
/*ボックス型のリンクの設定部分*/
/*ボックス型のリンク関連の設定部分*/
.box_link{
  padding: 10px 50%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
  border-radius: 5px;
  justify-content: center;
}
.item_link{
  display: flex;
  font-size: 1rem;
  font-family: 'Suisse Int','Noto Sans JP', sans-serif;
  position: relative;
  color: #003366;
  height: 3rem;
  width: 10rem;
  border-radius: 20px;
  justify-content: center;
  text-decoration: none;
  border: #445883 solid 3px;
  background-color: #ffffff;
  text-align: center;
  transition: 0.3s;
}
.item_link:hover{
  color:#003366;
  background-color: #F9DB75;
}
.item_link_pic{
  object-fit: cover;
  width: 120px;
  height: 60px;
}
.item_linkp{
    display: flex;
    color: #003366;
    justify-content: center;   /* 横方向中央 */
    align-items: center;    /* 縦方向中央 */
    font-family: 'Suisse Int','Noto Sans JP', sans-serif;
    font-size: 1.0rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-block-start: 1em;
    margin-block-end: 1em;
}
a{
text-decoration: underline;
 color:#F9DB75;
}