/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu
/* =========================================================================================================================================== */
.lst_menu {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 4列表示 */
.lst_menu li {
  width: calc((100% - 48px) / 4);
  height: 80px;
  margin-bottom: 20px;
}

.lst_menu li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 4px #D3D3D3;
  padding-left: 33px;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
  line-height: 1.2;
}

.lst_menu li a:hover {
  background-color: #ededed;
}
.lst_menu li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 15px;
  font-size: 13px;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu
/*----------------------------------------------------------*/
/* 3列 */
@media screen and (max-width: 821px) {
  .lst_menu li {
    width: calc((100% - 32px) / 3);
  }
}
/* 2列 */
@media screen and (max-width: 542px) {
  .lst_menu li {
    width: calc((100% - 16px) / 2);
  }
}
/* 1列 */
@media screen and (max-width: 480px) {
  .lst_menu li {
    width: 100%;
    height: 70px;
    margin-bottom: 6px;
   }
   .lst_menu li a {
     padding-left: 30px;
   }
   .lst_menu li a::before {
      left: 10px;
      font-size: 12px;
  }
}



/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン2
/* セレクタ : .lst_menu2
/* =========================================================================================================================================== */
.lst_menu2 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 4列表示 */
.lst_menu2 li {
  width: calc((100% - 44px) / 4);
  height: 40px;
  margin-bottom: 13px;
}
.lst_menu2 li.dummy {
  height: 0;
  margin: 0;
}

.lst_menu2 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 1px #000000;
  padding-left: 36px;
  font-weight: normal;
  text-decoration: none;
  color: #343434;
  font-size: 1.4rem;
  line-height: 1.285;
}
.lst_menu2 li a:hover {
  background-color: #ededed;
}
.lst_menu2 li a::before,
.lst_menu2 li a::after {
  content: "";
  position: absolute;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  display: block;
  width: 8px;
  border-top: solid 2px black;
  margin-top: 1px;
  top: 16px;
}
.lst_menu2 li a::before {
  transform: rotate(-45deg);
  left: 20px;
}
.lst_menu2 li a::after {
  transform: rotate(45deg);
  left: 15px;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu2
/*----------------------------------------------------------*/
/* 3列 */
@media screen and (max-width: 980px) {
  .lst_menu2 li {
    width: calc((100% - 32px) / 3);
  }
}
/* 2列 */
@media screen and (max-width: 750px) {
  .lst_menu2 li {
    width: calc((100% - 16px) / 2);
  }
}
/* 1列 */
@media screen and (max-width: 520px) {
  .lst_menu2 li {
    width: 100%;
    max-width: 266px;
    height: 40px;
    margin: 0 auto;
    margin-bottom: 5px;
   }
   .lst_menu2 li a {
     padding-left: 28px;
   }
  .lst_menu2 li a::before,
  .lst_menu2 li a::after {
    top: 18px;
  }
  .lst_menu2 li a::before {
    left: 13px;
  }
  .lst_menu2 li a::after {
    left: 8px;
  }
}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu3
/* =========================================================================================================================================== */

.lst_menu3 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 17px;
  padding-bottom: 62px;
}
/* <!-- 2022.06.22 ここから --> */
.lst_menu3::after {
  content: "";
  width: calc((100% - 86px) / 3);
}
/* <!-- 2022.06.22 ここまで --> */

/* 3列表示 */
.lst_menu3 li {
  width: calc((100% - 86px) / 3);
  height: 51px;
}

.lst_menu3 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border-top: solid 1px #d9d9d9;
  padding-left: 28px;
  font-weight: bold;
  text-decoration: none;
  color: #343434;
  line-height: 1;
}
.lst_menu3 li:nth-last-child(-n+3) a {
  border-bottom: solid 1px #d9d9d9;
}
.lst_menu3 li a:hover {
  color: #939393;
}
.lst_menu3 li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 8px;
  font-size: 14px;
  color: black;
  top: 18px;
}
.lst_menu3 li a:hover::before {
  color: #939393;
}

/* 2列 */
@media screen and (max-width: 920px) {
  .lst_menu3 li {
    width: calc((100% - 43px) / 2);
  }
  .lst_menu3 li:nth-last-child(3) a {
    border-bottom: none;
  }
}
/* 1列 */
@media screen and (max-width: 480px) {
  .lst_menu3 li {
    width: 100%;
    height: 45px;
  }
  .lst_menu3 li a {
     padding-left: 18px;
  }
  .lst_menu3 li:nth-last-child(2) a {
    border-bottom: none;
  }
  .lst_menu3 li a::before {
    left: 1px;
    font-size: 11px;
    top: 15px;
  }
}

/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン２
/* セレクタ : .lst_menu4
/* =========================================================================================================================================== */
.lst_menu4 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 17px;
  padding-bottom: 62px;
}

/* 3列表示 */
.lst_menu4 li {
  width: calc((100% - 54px) / 2);
  height: 51px;
}

.lst_menu4 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border-top: solid 1px #d9d9d9;
  padding-left: 28px;
  font-weight: normal;
  text-decoration: none;
  color: #343434;
  line-height: 1.2;
}
.lst_menu4 li a:hover {
  color: #939393;
}

.lst_menu4 li:nth-last-child(-n+2) a {
  border-bottom: solid 1px #d9d9d9;
}
.lst_menu4 li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 8px;
  font-size: 14px;
  font-weight: bold;
  color: black;
  top: 18px;
}
.lst_menu4 li a:hover::before {
  color: #939393;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu4
/*----------------------------------------------------------*/
/* 1列 */
@media screen and (max-width: 768px) {
  .lst_menu4 li {
    width: 100%;
    height: 45px;
  }
  .lst_menu4 li a {
     padding-left: 18px;
  }
  .lst_menu4 li:nth-last-child(2) a {
    border-bottom: none;
  }
  .lst_menu4 li a::before {
    left: 1px;
    font-size: 11px;
    top: 15px;
  }
}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン3
/* セレクタ : .lst_menu5
/* =========================================================================================================================================== */
.lst_menu5 {
  display : flex;
  justify-content: flex-start;
  padding-top: 4px;
  padding-bottom: 30px;
}

/* 4列表示 */
.lst_menu5 li {
  width: 218px;
  height: 40px;
  margin-bottom: 13px;
  margin-right: 12px
}
.lst_menu5 li.dummy {
  height: 0;
  margin: 0;
}

.lst_menu5 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 1px #000000;
  padding-left: 36px;
  font-weight: normal;
  text-decoration: none;
  color: #343434;
  font-size: 1.4rem;
  line-height: 1.285;
}
.lst_menu5 li a:hover {
  background-color: #ededed;
}

.lst_menu5 li a::before,
.lst_menu5 li a::after {
  content: "";
  position: absolute;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  display: block;
  width: 8px;
  border-top: solid 2px black;
  margin-top: 1px;
  top: 17px;
}
.lst_menu5 li a::before {
  transform: rotate(-45deg);
  left: 20px;
}
.lst_menu5 li a::after {
  transform: rotate(45deg);
  left: 15px;
}

/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu5
/*----------------------------------------------------------*/
/* 1列 */
@media screen and (max-width: 768px) {
  .lst_menu5 {
    display: block;
  }
  .lst_menu5 li {
    width: 100%;
    max-width: 266px;
    height: 40px;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  .lst_menu5 li a {
     padding-left: 28px;
  }
  .lst_menu5 li a::before,
  .lst_menu5 li a::after {
    top: 18px;
  }
  .lst_menu5 li a::before {
    left: 13px;
  }
  .lst_menu5 li a::after {
    left: 8px;
  }
}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン４
/* セレクタ : .lst_menu6
/* =========================================================================================================================================== */
.lst_menu6 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 62px;
}
/* 1列表示 */
.lst_menu6 li {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  border-top: solid 1px #d9d9d9;
  padding-top: 16px;
  padding-bottom: 10px;
}
.lst_menu6 li:nth-last-child(1) {
  border-bottom: solid 1px #d9d9d9;
}
.lst_menu6 li .group {
  flex: 1 1 0%;
  line-height: 1.2;
}
.lst_menu6 li .group a {
  display: block;
  font-weight: normal;
  position: relative;
  padding-left: 27px;
  text-decoration: none;
  color: #343434;
  padding-bottom: 4px;
}
.lst_menu6 li .group a:hover {
  color: #939393;
}
.lst_menu6 li .group a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 4px;
  font-size: 14px;
  color: black;
  top: 0;
  font-weight: bold;
}
.lst_menu6 li .group a:hover::before {
  color: #939393;
}
.lst_menu6 li .companies {
  flex: 1.65 1 0%;
}
.lst_menu6 li .companies .company {
  line-height: 1.2;
  padding-bottom: 4px;
}

/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu6
/*----------------------------------------------------------*/
/* 1列 */
@media screen and (max-width: 768px) {
  .lst_menu6 li {
    flex-wrap: wrap;
  }
  .lst_menu6 li .group {
    width: 100%;
    flex: unset;
  }
  .lst_menu6 li .group a {
    padding-left: 18px;
  }
  .lst_menu6 li .group a::before {
    left: 1px;
    font-size: 11px;
    top: 4px;
  }
  .lst_menu6 li .companies {
    width: 100%;
    flex: unset;
    padding-left: 18px;
  }
  .lst_menu6 li .company {
    position: relative;
    padding-left: 14px;
  }
  .lst_menu6 li .company::before {
    content: "";
    position: absolute;
    left: 3px;
    width: 6px;
    height: 6px;
    display: block;
    top: 6px;
    background-color: #51a5c7;
  }
}

/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン5
/* セレクタ : .lst_menu7
/* =========================================================================================================================================== */
.lst_menu7 {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}
.lst_menu7 li {
  width: calc((100% - 9px) / 3);
  height: 48px;
}
.lst_menu7 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #d3d3d3;
  text-decoration: none;
  font-weight: bold;
  color: #343434;
  line-height: 20px;
  text-align: center;
}
.lst_menu7 li.current a {
  position: relative;;
  background-color: #034577;
  color: #ffffff;
}
.lst_menu7 li.current a:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #034577 transparent transparent transparent;
  border-width: 10px 5px 0 5px;
}
.lst_menu7:hover li.current a {
  background-color: #d3d3d3;
  color: #343434;
}
.lst_menu7:hover li.current a:after{
  border-color: #d3d3d3 transparent transparent transparent;
  color: #343434;
}
.lst_menu7 li:hover a,
.lst_menu7 li.current:hover a {
  position: relative;;
  background-color: #034577;
  color: #ffffff;
}

.lst_menu7 li.current:hover a:after {
  border-color: #034577 transparent transparent transparent;
  color: #ffffff;
}
/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン6
/* セレクタ : .lst_menu8
/* =========================================================================================================================================== */
.lst_menu8 {
  display : flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 17px;
  padding-bottom: 10px;
}

/* 4列表示 */
.lst_menu8 li {
  width: 157px;
  height: 40px;
  margin-bottom: 13px;
  margin-right: 8px;
}
.lst_menu8 li.dummy {
  height: 0;
  margin: 0;
}

.lst_menu8 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 1px #000000;
  padding-left: 55px;
  font-weight: normal;
  text-decoration: none;
  color: #343434;
  font-size: 1.4rem;
  line-height: 1.285;
}
.lst_menu8 li a:hover {
  background-color: #ededed;
}
.lst_menu8 li a::before {
  position: absolute;
  left: 37px;
  font-size: 1.2rem;
  font-weight: bold;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu8
/*----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .lst_menu8 {
    display: block;
  }
  .lst_menu8 li {
    margin: 0 auto;
    margin-bottom: 8px;
  }
}

/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu9
/* =========================================================================================================================================== */

.lst_menu9 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 5px;
}

/* 4列表示 */
.lst_menu9 li {
  width: 263px;
  min-width: 263px;
  margin-bottom: 18px;
}
.lst_menu9 li.dummy {
  height: 0;
  margin: 0;
  padding: 0;
}
.lst_menu9 li a.now {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  border: solid 4px #D3D3D3;
  padding-left: 63px;
  font-size: 1.4rem;
  font-weight: normal;
  text-decoration: none;
  color: #333333;
  line-height: 20px;
  padding-top: 19px;
}
.lst_menu9 li a.now.red {
  background-color: #ffe1d9;
}
.lst_menu9 li a.now:hover {
  background-color: #ededed;
}
.lst_menu9 li a.now::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 37px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: normal;
  position: absolute;
  top: 19px;
  left: 12px;
  color: #ffffff;
}
.lst_menu9 li.xls a.now::before {
  content: "XLS";
  background-color: #2E8300;
}
.lst_menu9 li.pdf a.now::before {
  content: "PDF";
  background-color: #A10022;
}
.lst_menu9 li a.now span {
  font-size: 1.6rem;
  font-weight: bold;
}

.lst_menu9 li a.past {
  position: relative;
  display: block;
  width: 100%;
  color: #323333;
  font-size: 1.4rem;
  padding-left: 43px;
  padding-top: 9px;
}
.lst_menu9 li a.past:hover {
  color: #939393;
}
.lst_menu9 li a.past .fas {
  font-size: 1.1rem;
  padding-right: 6px;
  text-decoration: none;
  display: inline-block;
}
/*
.lst_menu9 li a.past::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 43px;
  font-size: 1.1rem;
  color: #000000;
  font-weight: bold;
  top: 11px;
  display: block;
}
.lst_menu9 li a.past:hover::before {
  color: #939393;
}
*/
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu9
/*----------------------------------------------------------*/
/* 3列 */
@media screen and (max-width: 1094px) {
  .lst_menu9 li {
    width: calc((100% - 32px) / 3);
  }
}
/* 2列 */
@media screen and (max-width: 830px) {
  .lst_menu9 li {
    width: calc((100% - 16px) / 2);
  }
}
/* 1列 */
@media screen and (max-width: 566px) {
  .lst_menu9 li {
    width: 100%;
    margin-bottom: 6px;
  }
  .lst_menu9 li a.now {
    height: 70px;
    padding-left: 64px;
    padding-top: 11px;
  }
  .lst_menu9 li a.now::before {
    top: 13px;
  }
  .lst_menu9 li a.past {
    padding-left: 18px;
  }
  .lst_menu9 li a.past::before {
    left: 2px;
  }

}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu10
/* =========================================================================================================================================== */
.lst_menu10 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 19px;
  padding-bottom: 53px;
}

/* 3列表示 */
.lst_menu10 li {
  width: calc((100% - 32px) / 3);
  height: 80px;
  margin-bottom: 18px;
}
.lst_menu10 li.dummy {
  height: 0;
  margin: 0;
  padding: 0;
}

.lst_menu10 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 4px #D3D3D3;
  padding-left: 33px;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
  line-height: 20px;
}
.lst_menu10 li a:hover {
  background-color: #ededed;
}
.lst_menu10 li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 15px;
  font-size: 13px;
}
.lst_menu10 li a small {
  font-size: 1.4rem;
  font-weight: normal;
}


/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu10
/*----------------------------------------------------------*/
/* 2列 */
@media screen and (max-width: 900px) {
  .lst_menu10 li {
    width: calc((100% - 16px) / 2);
  }
}
/* 1列 */
@media screen and (max-width: 600px) {
  .lst_menu10 li {
    width: 100%;
    height: 70px;
    margin-bottom: 6px;
   }
   .lst_menu10 li a {
     padding-left: 30px;
   }
   .lst_menu10 li a::before {
      left: 10px;
      font-size: 12px;
  }
}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu11
/* =========================================================================================================================================== */
.lst_menu11 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 46px;
  padding-bottom: 53px;}

/* 2列表示 */
.lst_menu11 li {
  width: 263px;
  height: 80px;
  margin: 0 8px;
}
.lst_menu11 li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 4px #D3D3D3;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
  line-height: 20px;
}
.lst_menu11 li a:hover {
  background-color: #ededed;
}
.lst_menu11 li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  padding-right: 7px;
  font-size: 12px;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu11
/*----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .lst_menu11 {
    padding-top: 33px;
  }
  .lst_menu11 li {
    width: 185px;
    height: 70px;
    margin: 0 7px;
    margin-bottom: 14px;
  }
}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu12
/* =========================================================================================================================================== */

.lst_menu12 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 5px;
}

/* 4列表示 */
.lst_menu12 li {
  width: 263px;
  min-width: 263px;
  margin-bottom: 18px;
}
.lst_menu12 li.dummy {
  height: 0;
  margin: 0;
  padding: 0;
}
.lst_menu12 li a.now {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.2;
  width: 100%;
  height: 80px;
  border: solid 4px #D3D3D3;
  padding-left: 63px;
  font-size: 1.4rem;
  font-weight: normal;
  text-decoration: none;
  color: #333333;
  padding-top: 0;
}
.lst_menu12 li.none a.now {
  padding-left: 12px;
}
.lst_menu12 li a.now.red {
  background-color: #ffe1d9;
}
.lst_menu12 li a.now:hover {
  background-color: #ededed;
}
.lst_menu12 li a.now::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 37px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: normal;
  position: absolute;
  top: 17.5px;
  left: 12px;
  color: #ffffff;
}
.lst_menu12 li.xls a.now::before {
  content: "XLS";
  background-color: #2E8300;
}
.lst_menu12 li.pdf a.now::before {
  content: "PDF";
  background-color: #A10022;
}
.lst_menu12 li a.now span {
  font-size: 1.6rem;
  font-weight: bold;
}

.lst_menu12 li a.past {
  position: relative;
  display: block;
  width: 100%;
  color: #323333;
  font-size: 1.4rem;
  padding-left: 43px;
  padding-top: 9px;
}
.lst_menu12 li a.past:hover {
  color: #939393;
}
.lst_menu12 li a.past .fas {
  font-size: 1.1rem;
  padding-right: 6px;
  text-decoration: none;
  display: inline-block;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu12
/*----------------------------------------------------------*/
/* 3列 */
@media screen and (max-width: 1094px) {
  .lst_menu12 li {
    width: calc((100% - 32px) / 3);
  }
}
/* 2列 */
@media screen and (max-width: 830px) {
  .lst_menu12 li {
    width: calc((100% - 16px) / 2);
  }
}
/* 1列 */
@media screen and (max-width: 566px) {
  .lst_menu12 li {
    width: 100%;
    margin-bottom: 6px;
  }
  .lst_menu12 li a.now {
    height: 70px;
    padding-left: 64px;
    padding-top: 0;
  }
  .lst_menu12 li a.now::before {
    top: 13px;
  }
  .lst_menu12 li a.past {
    padding-left: 18px;
  }
  .lst_menu12 li a.past::before {
    left: 2px;
  }

}


/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト
/* セレクタ : .lst_menu13
/* =========================================================================================================================================== */

.lst_menu13 {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 360px;
  margin: 0 auto;
  padding-top: 40px;
}

/* 4列表示 */
.lst_menu13 li {
  width: 100%;
  height: 80px;
  margin-bottom: 20px;
}

.lst_menu13 li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 4px #D3D3D3;
  padding-left: 33px;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
  line-height: 1.2;
}

.lst_menu13 li a:hover {
  background-color: #ededed;
}
.lst_menu13 li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 15px;
  font-size: 13px;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu
/*----------------------------------------------------------*/
/* 3列 */
/* 1列 */
@media screen and (max-width: 480px) {
  .lst_menu13 li {
    width: 100%;
    height: 70px;
    margin-bottom: 6px;
   }
   .lst_menu13 li a {
     padding-left: 30px;
   }
   .lst_menu13 li a::before {
      left: 10px;
      font-size: 12px;
  }
}



/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : メニューリスト デザイン２
/* セレクタ : .lst_menus14
/* =========================================================================================================================================== */
.lst_menus14 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lst_menus14 article {
  width: calc((100% - 40px) / 3);
  max-width: 340px;
}
.lst_menus14 article h2 {
  font-size: 18px;
  font-weight: bold;
  color: #343434;
  text-decoration: none;
}
.lst_menus14 article > ul {
  display : flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 62px;
}
.lst_menus14 article > ul > li {
  width: 100%;
  min-height: 52px;
}

.lst_menus14 article > ul > li > a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 52px;
  border-top: solid 1px #d9d9d9;
  padding-left: 28px;
  font-weight: normal;
  text-decoration: none;
  color: #343434;
  line-height: 1.2;
}
.lst_menus14 article > ul > li > a:hover {
  color: #939393;
}
.lst_menus14 article > ul > li > a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 8px;
  font-size: 14px;
  font-weight: bold;
  color: black;
  top: 18px;
}
.lst_menus14 article > ul > li > a:hover::before {
  color: #939393;
}
.lst_menus14 article > ul > li > .submenu li:last-child {
  padding-bottom: 12px;
}

.lst_menus14 article > ul > li > .submenu li a {
  display: block;
  font-size: 14px;
  color: #343434;
  text-decoration: none;
  padding: 8px 0;
  width: 100%;
  padding-left: 42px;
  line-height: 1.2;
  position: relative;
}
.lst_menus14 article > ul > li > .submenu li a::before {
  content: "・";
  position: absolute;
  left: 28px;
  font-size: 14px;
  color: #343434;
}
.lst_menus14 article > ul > li > .submenu li a:hover {
  color: #939393;
}
.lst_menus14 article > ul > li > .submenu li a:hover::before {
  color: #939393;
}



/*----------------------------------------------------------*/
/* レスポンシブデザイン .lst_menu4
/*----------------------------------------------------------*/
/* 2列 */
@media screen and (max-width: 1023px) {
  .lst_menus14 article {
    width: calc((100% - 20px) / 2);
    max-width: none;
  }
}
/* 1列 */
@media screen and (max-width: 768px) {
  .lst_menus14 article {
    width: 100%;
    max-width: none;
  }
}
  
  
  