/* 主に配下ページ */
html, body {
  font-family: 'Noto Sans JP', sans-serif;
}
.my_nav_link {
  font-family: 'Noto Serif JP', sans-serif !important;
  background-color: #FFFFFF !important;
  font-size: 1.5rem !important;
  padding-left: 20px !important;
  box-shadow: none;
  height: auto;
  width: auto;
  margin: 0;
}
.my_nav_link p {
  font-size: 0.75rem !important;
  text-align: left;
}
.sub_page_home {
  font-size: 2rem !important;
  font-weight: bold;
  text-decoration: none;
  color: black;
  font-family: 'Noto Serif JP', sans-serif;
}
.title_box {
  height: 350px;
}
.policy_title_box, .contact_title_box {
  height: 300px;
}
.title_box h1 {
  position: absolute;
  top: 65%;
  left: 50%;
  font-size: 3rem;
  color: #004466;
  font-weight: bold;
  font-family: 'Noto Serif JP', sans-serif;
}
.policy_title_box h1 {
  position: absolute;
  top: 65%;
  left: 50%;
  font-size: 2.75rem;
  color: #004466;
  font-weight: bold;
  font-family: 'Noto Serif JP', sans-serif;
}
.contact_title_box h1 {
  position: absolute;
  top: 65%;
  left: 50%;
  font-size: 2.75rem;
  color: #004466;
  font-weight: bold;
  font-family: 'Noto Serif JP', sans-serif;
}
@media screen and (max-width: 991px) {
  .title_box, .policy_title_box {
    height: 200px;
  }
  .title_box h1 {
    top: 80%;
    font-size: 1.75rem;
  }
  .policy_title_box h1 {
    font-size: 1.5rem;
  }
  .contact_title_box h1 {
    font-size: 1.75rem;
    top: 55%;
    left: 40%;
    right: -40%;
  }
}
@media screen and (max-width: 575px) {
  .title_box h1 {
    /* top: 55%; */
    font-size: 22px;
  }
  .policy_title_box h1 {
    top: 55%;
    left: 40%;
    right: -40%;
    font-size: 1.5rem;
  }
  .contact_title_box h1 {
    font-size: 1.5rem;
    top: 55%;
    left: 40%;
    right: -40%;
  }
}

.recruit_title {
    font-size: 16rem;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    color: #c3eefc;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
}
.policy_title {
  font-size: 12rem;
  font-weight: bold;
  font-family: 'Bebas Neue', sans-serif;
  color: #c3eefc;
  opacity: 0.4;
  position: absolute;
  top: 20px;
  left: 0;
}
@media screen and (max-width: 991px) {
  .recruit_title {
    font-size: 8rem;
    margin-top: 50px;
  }
  .policy_title {
    font-size: 6rem;
    margin-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .policy_title {
    font-size: 4rem;
    margin-top: 30px;
  }
}


#policy_container {
  border: 1px solid #555;
  border-radius: 10px;
  width: 90%;
}
#policy_container p {
  font-size: 13px;
}
.occupation_title {
  font-size: 1.5rem;
  border-bottom: 5px solid #f8caca;
  padding-bottom: 25px;
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: bold;
}
.table-responsive {
  font-family: 'Noto Sans JP', sans-serif;
  padding: 20px 100px;
}
th {
  font-size: 14px;
}
.notice_section, .recruit_section {
  padding: 0px 150px;
}
@media screen and (max-width: 575px) {
  .table-responsive {
    padding: 20px 0px !important;
  }
}


.notice_box {
  padding: 0px 0 0 0;
}
.notice strong {
  padding: 5px 15px;
  font-weight: bold;
  /* font-weight: initial; */
  color: white;
  background-color: #f8caca;
}
@media screen and (max-width: 991px) {
  .notice_box {
    padding: 60px 0 0 0;
  }
  .notice_section, .recruit_section {
    padding: 0 50px;
  }
  .table-responsive {
    padding: 20px 10px;
  }
  .recruit_section p {
    margin: 0 auto 1rem;
  }
}
@media screen and (max-width: 575px) {
  .notice_section, .recruit_section {
    padding: 0 20px;
  }
  .notice strong {
    padding: 0px 5px;
  }
}

.contact_form_box {
  padding: auto 100px;
}
#sitemap a {
  color: #555;
  text-decoration: none;
}
.sitemap_box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  position: relative; /* 疑似要素の基準位置 */
  background-color: #c3eefc;
  padding: 10px 30px;
  /* font-weight: bold; */
}
.sitemap_box::after {
  content: ""; 
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%; /* 初期状態では幅0 */
  height: 1px;
  background-color: #555;
  transition: width 0.3s ease-in-out; /* 左から右へのアニメーション */
}
.sitemap_box:hover::after {
  width: 100%; /* ホバー時に100%まで広がる */
}

/* 管理画面ログイン */
#login_section {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_box {
  max-width: 575px;
  width: 100vw;
  height: 300px;
  margin: 0 auto;
  border: 1px solid #ced4da;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
} 

/* フォームのスタイル */
.login_form {
  display: flex;
  flex-direction: column; /* フォーム項目を縦に並べる */
  gap: 20px; /* 各項目の間に20pxのスペースを追加 */
  align-items: center; /* 水平方向中央揃え */
  text-align: center;
}

/* 入力フィールドとラベルのスタイル */
.login_form label {
  margin-bottom: 5px; /* ラベルと入力フィールドの間に少しスペースを追加 */
}

.login_form input {
  width: 200px; /* 入力フィールドの幅を指定 */
  padding: 10px; /* パディングを追加 */
  margin-bottom: 10px; /* 各入力フィールドの下にスペースを追加 */
}

/* ボタンのスタイル */
.login_form button {
  padding: 10px 20px; /* ボタンにパディングを追加 */
  width: 200px; /* ボタンの幅を入力フィールドと合わせる */
  cursor: pointer;
  background-color: #4CAF50; /* ボタン背景色 */
  color: white; /* ボタンの文字色 */
  border: none;
  border-radius: 5px; /* ボタンの角を丸く */
  font-size: 16px;
  margin: 20px auto 10px;
}
/* 送信完了ページ */
#contact_section {
  margin: 180px auto 50px;
}
@media screen and (max-width: 991px) {
  #contact_section {
  margin: 140px auto 50px;
  }
}
@media screen and (max-width: 575px) {
  #contact_section {
  margin: 120px auto 50px;
  }
}