/*--------------------------------------------
    Color
---------------------------------------------*/
/*--------------------------------------------
	Common Parts
---------------------------------------------*/
.pcNon {
  display: none;
}
@media screen and (max-width: 767px) {
  .pcNon {
    display: block !important;
  }
}

.spNon {
  display: block;
}
@media screen and (max-width: 767px) {
  .spNon {
    display: none !important;
  }
}

.flex, .flex_b, .flex_ib, .flex_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .flex_b {
    display: block !important;
  }
  .flex_ib {
    display: inline-block !important;
  }
  .flex_c {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
ul, ol, dl {
  list-style: none;
}

.companySec01 .inner {
  max-width: 1080px;
}
.menuList_title {
  width: 33%;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .menuList_title {
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.menuList_detail {
  width: 67%;
  padding: 3.5% 0 5%;
}
@media screen and (max-width: 767px) {
  .menuList_detail {
    width: 100%;
    padding: 2.5% 0 6%;
  }
}
.menuList p {
  line-height: 2;
}