@charset "UTF-8";
/***********************共通設定************************/
/* ==========================================================================//
//
//　サイトマップ
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
.sitemap {
  padding-bottom: 90px;
}

.sec_title {
  margin: 26px 0 24px;
  font-size: 18px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_title {
    margin: 32px 0 34px;
    font-size: 24px;
  }
}

/* リスト
---------------------------------------------------------- */
.sitemap_list {
  text-align: left;
  /* 診療科目 */
}
.sitemap_list .list_item:not(:first-child) {
  margin-top: 18px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sitemap_list .list_item:not(:first-child) {
    margin-top: 28px;
  }
}
.sitemap_list .list_item .item_name {
  font-size: 16px;
  font-weight: bold;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sitemap_list .list_item .item_name {
    font-size: 18px;
  }
}
.sitemap_list .hospital_list {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sitemap_list .hospital_list {
    width: 95%;
  }
}
.sitemap_list a {
  padding-left: 12px;
  display: inline-block;
}
.sitemap_list a.nolink {
  pointer-events: none;
}
.sitemap_list a.nolink span {
  color: #cbcbcb;
}
.sitemap_list a .item_name {
  position: relative;
  color: #303030;
}
.sitemap_list a .item_name::before {
  position: absolute;
  content: "";
  background-image: url(../images/sitemap/ico_sitemap_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -12px;
  width: 5px;
  height: 8px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sitemap_list a .item_name::before {
    left: -12px;
  }
}
.sitemap_list a .item_name::after {
  position: absolute;
  content: "";
  background-color: #303030;
  width: 0;
  height: 1px;
  bottom: 4px;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .sitemap_list a:hover .item_name::after {
    width: 100%;
  }
}

/* リストの中のリスト */
.sub_list {
  margin: 20px 0 0 13px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sub_list {
    margin: 20px 0 0 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px 22px;
  }
}
.sub_list:not(:first-of-type) {
  margin: 10px 0 0 13px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sub_list:not(:first-of-type) {
    margin: 15px 0 0 13px;
  }
}
.sub_list .sub_item {
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .sub_list .sub_item {
    margin-top: 10px;
  }
}
.sub_list .sub_item a .item_name {
  font-size: 14px;
  font-weight: 400;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sub_list .sub_item a .item_name {
    font-size: 16px;
  }
}