@charset "UTF-8";
/* ----------------  header ---------------- */
.header {
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background: #187fc4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
  width: 100%;
  height: 64px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header__logo a {
  display: block;
  text-decoration: none;
}
.header__logo .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo img {
  display: block;
  width: 122px;
}
.header__logo span {
  color: #fff;
  display: block;
  font-weight: 700;
}

@media (max-width: 1239px) {
  .header__logo {
    margin: 0 auto;
  }
  .header__logo img {
    width: 96px;
  }
  .header__logo span {
    font-size: 10px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  height: 100%;
}
.header__menu a {
  display: block;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 64px;
  padding: 0 1em;
  transition-duration: 0.3s;
}
.header__menu a:hover {
  background-color: rgb(0, 41, 113);
}
.header__menu a .icon {
  display: inline-block;
  padding-left: 0.8em;
  width: 1.5em;
}

@media (max-width: 1239px) {
  .header__menu {
    display: none;
  }
}
/* ---------------- footer ---------------- */
.footer {
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.footer .inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.footer .footer__item {
  padding: 1.4em 0;
}
.footer .footer__item .col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11%;
}
.footer .footer__item .footer__logo {
  margin: 0;
}
.footer .footer__item .footer__logo a {
  text-decoration: none;
}
.footer .footer__item .footer__logo .logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.footer .footer__item .footer__logo .logo img {
  width: 180px;
}
.footer .footer__item .footer__logo .logo span {
  color: #000;
  font-size: 11px;
}
.footer .footer__item .footer__txt {
  font-size: 14px;
}
.footer .footer__menu {
  background: #00aaeb;
  text-align: center;
  padding: 1.6em 0;
}
.footer .footer__menu .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.footer .footer__menu .menu a {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0 1em;
}
.footer .footer__menu .menu li:last-child a {
  padding-right: 0;
}
.footer .footer__menu .menu li:not(:first-child) {
  -webkit-border-start: 1px solid #fff;
  border-inline-start: 1px solid #fff;
}
.footer .footer__menu .copy {
  color: #fff;
  font-size: 12px;
}

@media (max-width: 767px) {
  .footer .footer__item .footer__txt {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .footer .footer__menu .menu a {
    font-size: 10px;
  }
}
/* ----------------  breadcrumb ---------------- */
.breadcrumb {
  background: #f5f5f5;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.breadcrumb .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  list-style: none;
  padding: 16px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin-left: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
}
.breadcrumb li a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  transition-duration: 0.3s;
}
.breadcrumb li a:hover {
  opacity: 0.6;
}

/* ----------------  main ---------------- */
.chaosmap {
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  line-height: 1.6;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;
  max-width: 1100px;
  margin: 0 auto;
  /* 共通 */
  /* メインカラム */
}
@media (max-width: 1239px) {
  .chaosmap {
    flex-direction: column;
    font-size: 14px;
    /*padding: 0 20px;*/
  }
}
.chaosmap .column_01 {
  padding: 1em 0;
  max-width: 600px;
  width: 100%;
}
@media (max-width: 1239px) {
  .chaosmap .column_01 {
    max-width: none;
  }
}
.chaosmap .column_02 {
  max-width: 440px;
  width: 100%;
}
@media (max-width: 1239px) {
  .chaosmap .column_02 {
    max-width: none;
  }
}
.chaosmap img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.chaosmap a {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}
.chaosmap a:hover {
  opacity: 0.7;
}
.chaosmap a[href^="tel:"] {
  cursor: default;
  opacity: 1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.chaosmap strong {
  font-weight: 700;
}
.chaosmap .is_sp {
  display: none !important;
}
@media (max-width: 1239px) {
  .chaosmap .is_sp {
    display: block !important;
  }
}
.chaosmap .mg_l {
  margin: 80px 0;
}
@media (max-width: 1239px) {
  .chaosmap .mg_l {
    margin: 60px 0;
  }
}
.chaosmap .chaosmap__ttl {
  font-size: 20px;
  font-weight: 700;
  margin: 0.6em 0 1em;
}
.chaosmap .sec_ttl {
  background: #187fc4;
  border-radius: 100px;
  position: relative;
  padding: 10px 10px 10px 60px;
  height: 50px;
  margin-bottom: 1.4em;
}
.chaosmap .sec_ttl::before {
  content: "";
  background: url(../images/icon_sec_ttl.svg) no-repeat center/contain;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
}
.chaosmap .sec_ttl span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1239px) {
  .chaosmap .sec_ttl {
    padding: 7px 10px 7px 45px;
    height: 40px;
    margin-bottom: 1em;
  }
  .chaosmap .sec_ttl::before {
    width: 30px;
    height: 30px;
  }
  .chaosmap .sec_ttl span {
    font-size: 16px;
  }
}
.chaosmap .sub_ttl {
  font-size: 18px;
  font-weight: 700;
  padding: 4px 4px 10px 76px;
  position: relative;
  margin: 60px 0 40px;
}
.chaosmap .sub_ttl::before {
  content: "";
  background: url(../images/bg_sub_ttl.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 44px;
}
@media (max-width: 1239px) {
  .chaosmap .sub_ttl {
    font-size: 15px;
    margin: 40px 0 20px;
  }
  .chaosmap .sub_ttl::before {
    width: 100%;
    max-width: 600px;
  }
  .chaosmap .sub_ttl::after {
    content: "";
    display: block;
    background: #187fc4;
    width: 100%;
    height: 2px;
    position: relative;
    bottom: -14px;
  }
}
@media (max-width: 767px) {
  .chaosmap .sub_ttl {
    padding-left: 11.4vw;
  }
  .chaosmap .sub_ttl::after {
    content: none;
  }
}
.chaosmap .txt {
  margin-bottom: 1.6em;
}
.chaosmap .note {
  font-size: 12px;
  letter-spacing: 0;
  margin: 1em 0;
}
.chaosmap .note a {
  text-decoration: underline;
}
.chaosmap .chaosmap__summary {
  background: #e7f2f9;
  padding: 2em 1.8em;
  margin: 40px 0 50px;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__summary {
    margin: 30px 0;
  }
}
.chaosmap .chaosmap__summary .ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__summary .ttl {
    font-size: 16px;
  }
}
.chaosmap .chaosmap__index {
  background: #f1f1f1;
  padding: 2em 1.8em;
  margin: 50px 0;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__index {
    margin: 30px 0;
  }
}
.chaosmap .chaosmap__index .ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__index .ttl {
    font-size: 16px;
  }
}
.chaosmap .chaosmap__index .list li a {
  display: block;
  padding: 0.14em 0;
}
.chaosmap .chaosmap__index .list li > p {
  padding-left: 1em;
}
.chaosmap .chaosmap__about .list li {
  padding: 0.6em 0;
}
.chaosmap .chaosmap__about .list strong {
  display: block;
  font-size: 110%;
  font-weight: 700;
  margin-bottom: 0.1em;
}
.chaosmap .table_box {
  padding-bottom: 6px;
  overflow-x: scroll;
  display: block;
}
.chaosmap .table_box::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
.chaosmap .table_box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
  margin: 0;
}
.chaosmap .table_box::-webkit-scrollbar-thumb {
  background: #626262;
  border-radius: 5px;
}
.chaosmap .table_box table {
  border-collapse: separate;
  border-spacing: 2px;
  margin: 0 auto;
  width: 990px;
}
@media (max-width: 1239px) {
  .chaosmap .table_box table {
    width: 1060px;
  }
}
@media (max-width: 767px) {
  .chaosmap .table_box table {
    width: 800px;
  }
}
.chaosmap .table_box table th,
.chaosmap .table_box table td {
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 10px;
  vertical-align: middle;
}
@media (max-width: 1239px) {
  .chaosmap .table_box table th,
  .chaosmap .table_box table td {
    font-size: 12px;
  }
}
.chaosmap .table_box table thead th {
  background: #187fc4;
  color: #fff;
}
.chaosmap .table_box table tbody th {
  background: #8a8a8a;
  color: #fff;
  width: 10%;
}
.chaosmap .table_box table tbody td {
  width: 22.5%;
}
.chaosmap .table_box table tbody td:nth-of-type(even) {
  background: #e7f2f9;
}
.chaosmap .table_box table tbody td .star {
  color: #f6b900;
  letter-spacing: 0.1em;
}
.chaosmap .chaosmap__find .tab_block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 0.6%;
  /* アクティブなタブ */
  /* アクティブなコンテンツ */
}
.chaosmap .chaosmap__find .tab_block > label {
  order: -1;
  background: #f8f8f8;
  border-top: 1px solid #b7b7b7;
  border-left: 1px solid #b7b7b7;
  border-right: 1px solid #b7b7b7;
  border-radius: 10px 10px 0 0;
  color: #626262;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 6px;
  text-align: center;
  width: 24%;
  height: 54px;
}
.chaosmap .chaosmap__find .tab_block > label:hover {
  opacity: 0.8;
}
.chaosmap .chaosmap__find .tab_block > label span {
  display: block;
  font-size: 75%;
  line-height: 1.2;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__find .tab_block > label {
    font-size: 12px;
    padding: 2px;
    height: 46px;
  }
}
.chaosmap .chaosmap__find .tab_block input {
  display: none;
}
.chaosmap .chaosmap__find .tab_block > #tab_radio1:checked ~ label[for=tab_radio1], .chaosmap .chaosmap__find .tab_block > #tab_radio2:checked ~ label[for=tab_radio2], .chaosmap .chaosmap__find .tab_block > #tab_radio3:checked ~ label[for=tab_radio3], .chaosmap .chaosmap__find .tab_block > #tab_radio4:checked ~ label[for=tab_radio4] {
  background: #187fc4;
  border: 0;
  color: #fff;
  font-size: 104%;
  width: 26%;
  height: 58px;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__find .tab_block > #tab_radio1:checked ~ label[for=tab_radio1], .chaosmap .chaosmap__find .tab_block > #tab_radio2:checked ~ label[for=tab_radio2], .chaosmap .chaosmap__find .tab_block > #tab_radio3:checked ~ label[for=tab_radio3], .chaosmap .chaosmap__find .tab_block > #tab_radio4:checked ~ label[for=tab_radio4] {
    font-size: 13px;
    height: 50px;
  }
}
.chaosmap .chaosmap__find .tab_block #tab_radio1:checked ~ div:nth-of-type(1),
.chaosmap .chaosmap__find .tab_block #tab_radio2:checked ~ div:nth-of-type(2),
.chaosmap .chaosmap__find .tab_block #tab_radio3:checked ~ div:nth-of-type(3),
.chaosmap .chaosmap__find .tab_block #tab_radio4:checked ~ div:nth-of-type(4) {
  display: block;
}
.chaosmap .chaosmap__find .tab_block .tab_item {
  border-top: 2px solid #187fc4;
  display: none;
  width: 100%;
  padding: 10px;
  background-color: #f8f8f8;
  overflow-x: scroll;
}
.chaosmap .chaosmap__find .tab_block .tab_item::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
.chaosmap .chaosmap__find .tab_block .tab_item::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
  margin: 0;
}
.chaosmap .chaosmap__find .tab_block .tab_item::-webkit-scrollbar-thumb {
  background: #626262;
  border-radius: 5px;
}
.chaosmap .chaosmap__find .tab_block .tab_item__inner {
  width: 834px;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__find .tab_block .tab_item__inner {
    width: 1000px;
  }
}
@media (max-width: 767px) {
  .chaosmap .chaosmap__find .tab_block .tab_item__inner {
    width: 532px;
  }
}
.chaosmap .chaosmap__find .tab_block .logo_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chaosmap .chaosmap__find .tab_block .logo_box .logo_item {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__find .tab_block .logo_box .logo_item {
    max-width: 125px;
  }
}
.chaosmap .chaosmap__find .tab_block .btn_box {
  padding: 20px;
  display: flex;
  gap: 1em;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__find .tab_block .btn_box {
    padding: 16px 0;
    gap: 0.6em;
  }
}
.chaosmap .chaosmap__find .tab_block .btn_box .tab_btn {
  background: #187fc4;
  border-radius: 5px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  text-align: center;
  padding: 6px;
  width: 160px;
  cursor: pointer;
}
.chaosmap .chaosmap__find .tab_block .btn_box .tab_btn span {
  display: block;
  font-size: 75%;
}
.chaosmap .chaosmap__find .tab_block .btn_box .tab_btn:hover {
  opacity: 0.8;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__find .tab_block .btn_box .tab_btn {
    font-size: 12px;
    width: 100px;
  }
}
.chaosmap .chaosmap__others {
  margin: 80px 0;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__others {
    margin: 30px 0 0;
  }
}
.chaosmap .chaosmap__others .logo {
  display: block;
  margin-bottom: 26px;
  width: 222px;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__others .logo {
    width: 180px;
  }
}
.chaosmap .chaosmap__others .link_txt {
  text-decoration: underline;
}
.chaosmap .chaosmap__others .arrow {
  background: #187fc4;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  top: 3px;
  right: -10px;
  width: 18px;
  height: 18px;
}
.chaosmap .chaosmap__others .arrow::before {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__others .arrow {
    width: 14px;
    height: 14px;
  }
  .chaosmap .chaosmap__others .arrow::before {
    right: 6px;
    width: 5px;
    height: 5px;
  }
}
.chaosmap .chaosmap__others .txt_link {
  padding-bottom: 10px;
}
.chaosmap .chaosmap__others .txt_link li {
  margin-bottom: 0.6em;
  transition: all 0.3s;
}
.chaosmap .chaosmap__others .txt_link li a:hover {
  opacity: 1;
}
.chaosmap .chaosmap__others .txt_link li:hover {
  opacity: 0.6;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__others .txt_link li {
    font-size: 13px;
  }
}
.chaosmap .chaosmap__others .thumb_link {
  padding-bottom: 10px;
}
.chaosmap .chaosmap__others .thumb_link li {
  margin-bottom: 0.4em;
  transition: all 0.3s;
}
.chaosmap .chaosmap__others .thumb_link li a:hover {
  opacity: 1;
}
.chaosmap .chaosmap__others .thumb_link li:hover {
  opacity: 0.6;
}
.chaosmap .chaosmap__others .thumb_link a {
  display: flex;
  align-items: center;
}
.chaosmap .chaosmap__others .thumb_link a .link_txt {
  display: block;
  font-size: 14px;
  margin-left: 1.2em;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__others .thumb_link a .link_txt {
    font-size: 13px;
  }
}
.chaosmap .chaosmap__others .thumb_link img {
  width: 80px;
}
@media (max-width: 1239px) {
  .chaosmap .chaosmap__others .thumb_link img {
    width: 70px;
  }
}

/* サブカラム(ダミー) */
.share_item {
  margin-top: 1.75rem;
  padding: 0.6em 0 2.6em;
}
@media (max-width: 1239px) {
  .share_item {
    margin-top: 0;
  }
}
.share_item img {
  display: block;
  margin: 0 0 0 auto;
}
@media (max-width: 1239px) {
  .share_item {
    padding-bottom: 2em;
  }
  .share_item img {
    width: 170px;
  }
}

.form_item img {
  width: 100%;
}

/* 表示崩れ調整 */
@media (max-width: 1239px) {
  .relative.flex > main.shrink {
    max-width: 100% !important;
  }
}/*# sourceMappingURL=style.css.map */