@charset "utf-8";
/* CSS Document */

/*------------navi-clm------------*/

#navi-clm .header-logo {
  display: none;
}

.fix-header {
  padding: 0;
}

#navi-clm {
  position: relative;
  width: 96%;
  margin: 0 2%;
  padding: 2% 0;
}

#navi-clm ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

#navi-clm ul li {
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid rgb(0, 129, 91);
  transition: 1s;
  margin-bottom: 2px;
  flex: auto;
}

#navi-clm ul li:nth-child(2) {
  border-left: none;

}

#navi-clm ul li a:hover {
  color: #fff;
  background: rgba(0, 161, 114);
}

#navi-clm ul li a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding: 10px 2px;
  font-size: 1.4rem;
  justify-content: center;
  letter-spacing: normal;
}

#navi-clm ul li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 0.5rem;
}

#navi-clm ul li .img {
  flex-basis: 26%;
}

#navi-clm ul li .txt {
  border-top: solid 2px #a1deef;
  border-bottom: solid 2px #72cfea;
  flex-basis: 69%;
  display: flex;
  align-items: center;
  position: relative;
}

#navi-clm ul li .txt h4 {
  color: #217bb6;
  font-weight: bold;
  font-size: 2.4rem;
  font-style: italic;
}

#navi-clm ul li .txt p {
  font-size: 1.5rem;
  color: #72cfea;
  font-weight: bold;
}

#navi-clm ul li .txt p.arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 2.4rem;
}


@media screen and (min-width: 1280px) {

  /*------------navi-clm------------*/

  #navi-clm {
    width: 100%;
    margin: 0 auto;
    z-index: 100;
    position: relative;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  #navi-clm .header-logo {
    flex-basis: 10%;
    display: inline-block;
    max-width: 132px;
    padding: 1rem;
  }

  #navi-clm ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    flex-basis: 90%;
  }

  #navi-clm ul li {
    flex: 0 0 22%;

  }

  #navi-clm ul li a {
    color: #00a172;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    padding: 10px 0;
    justify-content: center;
  }

#navi-clm ul li a:hover {
  color: #fff;
  background: rgba(0, 161, 114);
}}