@charset "utf-8";
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 220px;
}
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8em;
  background:
    linear-gradient(45deg, rgba(200, 200, 200, 0.3) 25%, transparent 25%, transparent 75%, rgba(200, 200, 200, 0.3) 75%), linear-gradient(-45deg, rgba(200, 200, 200, 0.3) 25%, transparent 25%, transparent 75%, rgba(200, 200, 200, 0.3) 75%);
  background-size: 2px 2px; /* メッシュの細かさを調整 */
  background-color: #EAE9E9; /* ベースの薄いグレー */
  margin: 0;
}
li {
  list-style-type: none;
}
/*ヘッダー*/
.header {
  position: fixed;
  inset: 0;
  height: 180px;
  z-index: 1000;
}
.header_innner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #E7ECFE;
}
.logo {
  width: 17%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.logo a img {
  width: 70%;
  height: auto;
  display: block;
}
.title {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title img {
  width: 80%;
  height: auto;
}
.company {
  width: 17%;
  display: flex;
  justify-content: center;
  align-items: center
}
.company img {
  width: 90%;
  position: relative;
  top: -30px; /* 少し上へ */
}
/*メニュー*/
.g-nav {
  text-align: right;
  margin-left: auto;
  margin-right: auto;
}
li {
  list-style: none;
}
#h-menu {
  display: none;
}
.menu {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  padding: 0px;
  width: 100%;
}
.menu_list {
  display: flex;
  justify-content: center;
  line-height: 40px;
  background-color: #005bac;
  width: 100%;
  height: 40px;
  position: relative;
  padding-left: 0; /* 左側の余白をなくす */
  margin: 0;
  overflow: visible;
}
/*#members_list {
  background-color: #F05E20;
}*/
/*#members_list a:hover {
  background-color: #842B1C;
  transition: 0.3s ease-in-out;
}
#members-children {
  background-color: #F05E20;
}*/
.menu_link {
  width: 100%;
  height: 100%;
  display: block;
}
.menu_list a:link {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
}
.menu_list a:visited {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
}
.menu_list a:hover {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  background-color: #3F414E;
  transition: 0.3s ease-in-out;
}
.menu-children {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  list-style: none;
  padding-left: 0;
  margin: 0;
  background-color: #005bac;
}
.menu-child {
  text-align: center;
  border-top: 0.5px dashed #FFFFFF;
}
.menu-child a {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}
.menu_list:hover .menu-children {
  display: block;
}
/* タイトルボックス */
.privacy_box {
  margin-top: 170px; /* 固定ヘッダーの高さ分 */
  width: 100%;
  height: 255px;
  background-color: #FFFFFF; /* 薄グレー */
  display: flex;
  align-items: center;
  padding-left: 200px;
}
/* タイトル全体のラップ */
.title_wrapper {
  display: flex;
  align-items: center;
}
/* 縦線を作るエリア */
.vertical_lines {
  width: 10px; /* 線の幅 */
  height: 100px; /* 線の高さ */
  display: flex;
  flex-direction: column;
  gap: 4px; /* 縦線の間隔 */
  margin-right: 50px; /* タイトルとの間隔 */
}
/* 縦線1 */
.vertical_lines::before {
  content: "";
  width: 4px; /* 線の幅 */
  height: 100%;
  background-color: #000000;
  display: block;
}
/* 縦線2 */
.vertical_lines::after {
  content: "";
  width: 4px; /* 線の幅 */
  height: 100%;
  background-color: #005bac;
  display: block;
}
/* タイトルのスタイル */
.page_title {
  font-size: 48px;
  font-weight: bold;
  color: #005bac;
}
.main {
  margin-top: 70px; /* 固定ヘッダーの高さ分の余白を追加 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  height: 1100px;
  background-color: #FFFFFF;
  margin-bottom: 100px;
}
.info_title {
  position: relative;
  top: 7rem;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #333;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* ← これで中央寄せ */
}
.info_title::before, .info_title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 2px;
  background: #005BAC;
  transform: translateY(-50%) rotate(115deg);
}
.info_title::before {
  left: 380px;
}
.info_title::after {
  right: 380px;
}
.privacy_policy {
  max-width: 1200px;
  margin: 180px auto;
  padding: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.privacy_policy p {
  font-size: 16px;
  margin-top: 40px;
  margin-right: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
}
.privacy_policy_list li {
  counter-increment: item; /* 各項目にカウンターをインクリメント */
  margin-bottom: 20px; /* 項目間のスペース */
  padding-top: 10px; /* 項目上部にスペースを追加 */
  display: flex; /* 横並びにする */
  align-items: flex-start; /* 上揃えにする */
  font-size: 16px;
  margin-top: 40px;
  margin-left: 40px;
}
.privacy_policy_list li::before {
  content: counter(item) ". "; /* 番号の形式 */
  margin-right: 5px; /* 番号とテキストの間にスペースを追加 */
  display: inline-block; /* 番号とテキストを分ける */
  min-width: 25px; /* 番号の幅を確保 */
}
@media only screen and (max-width:1024px) {

  /*ヘッダー*/
  .logo {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo a img {
    width: 100%;
  }
  .title {
    width: 100%;
  }
  .company {
    display: none;
  }
  /*メニュー*/
  #h-menu {
    background-color: #E7ECFE;
    color: #005bac;
    font-weight: bold;
    font-size: 32px;
    margin-right: 20px;
    display: block;
  }
  .menu {
    display: none;
    flex-direction: column;
  }
  .menu_list {
    flex-direction: column;
    position: static;
    height: auto;
  }
  .menu-children {
    display: none;
    background-color: #005bac;
    width: 100%;
    position: static;
    z-index: auto;
  }
  .menu_list.active .menu-children {
    display: block;
    position: static;
  }
  .menu-child a {
    display: block;
    padding: 10px;
    white-space: normal;
    color: #fff;
    text-decoration: none;
  }
  .menu-child a:hover {
    background-color: #003f7f;
  }
  .menu_list:hover .menu-children {
    display: block;
  }
  /* 項目分け*/
  .privacy_box, .main {
    align-items: center;
    width: 95%;
    height: auto;
  }
  .main {
    margin-top: 30px;
  }
  .privacy_box {
    height: 300px;
    padding-left: 20px;
    margin-top: 10px; /* 固定ヘッダーの高さ分 */
    width: 100%;
	justify-content: center;
  }
  .privacy_policy_list {
    align-items: center;
    width: 90%;
    padding-left: 0px;
  }
  /* タイトル*/
  .title_wrapper {
    display: flex;
    justify-content: center;
	gap: 0px;
    margin-top: 50px;
  }
  .info_title, .page_title {
    width: 100%;
    font-size: 32px;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    padding: 0;
  }
  .info_title::before, .info_title::after {
    content: "";
    position: static;
    top: 50%;
    width: 60px;
  }
  .vertical_lines {
  margin-right: 20px; /* タイトルとの間隔 */
}
}
@media only screen and (min-width:1024px) {
  #h-menu {
    display: none;
  }
  nav ul.menu {
    display: flex !important;
    justify-content: space-around;
  }
  .menu_list {
    position: relative;
  }
  .menu-children {
    top: 100%;
    left: 0;
    z-index: 10;
  }
}
/*フッター*/
.sitemap {
  display: flex;
  justify-content: space-around;
  background-color: #E7ECFE;
  color: #3264DD;
  list-style: none;
  height: auto;
  font-style: oblique;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 500;
  padding-top: 0px;
  padding-bottom: 20px;
}
.footer-children {
  padding-left: 0;
  list-style: none;
}
.footer-child {
  margin-top: 10px;
}
.footer-child a {
  text-decoration: none;
  color: #6578BB;
  font-weight: 300;
}
.footer_menu {
  text-decoration: none;
  margin-top: 20px;
}
.footer_menu a {
  text-decoration: none;
}
.footer_copy {
  background-color: #005BAC;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.footer_copy a {
  color: #FCFCFC;
  font-size: 16px;
  text-align: center;
}