.section-inner a[target="_blank"] img.icon-blank {
    display: none;
}


/* Navi */
.section-1.navigation,
.section-2.navigation {
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid #efefef;
}
.navigation li {
    display: inline-block;
    margin: 0 50px;
}
.navigation li a {
    font-size: 1.4em;
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0;
    text-decoration: none;
    color: #0a603b;
}
.navigation li a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    top:100%;
    left: 0;
    border-radius: 3px;
    background: #0a603b;
    transition: .2s;
}
.navigation li a:hover:before {
    top: -webkit-calc(100% - 3px);
    top: calc(100% - 3px);
}
#case,#results,#effect {
    padding-top: 50px;
    margin-top: -50px;
}
@media (max-width: 767px) {
    .navigation li {
        margin: 0 20px;
    }
    #case,#results,#effect {
        padding-top: 30px;
        margin-top: -30px;
    }   
}
.card {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 5px rgba(204, 204, 204, 1);
  -moz-box-shadow: 0px 2px 5px rgba(204, 204, 204, 1);
  box-shadow: 0px 2px 5px rgba(204, 204, 204, 1);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.card.shadow:hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}
.card-img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.card-img img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.card.shadow .card-img .mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color:	rgba(0,0,0,0.4);
  position: absolute;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.card.shadow:hover .card-img .mask {
  opacity: 1;
}
.card.shadow .card-img .mask > span{
  color: #fff;
  font-family:  sans-serif;
  font-size: 1.3em;
}
.card.shadow:hover .card-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
  opacity: .6;
}
.card-industry {
  background-color: #eee;
  padding: 10px;
}
.card-title {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: 20px;
  color: #333;
  width: 100%;
  height: 4.5em;
}
.card-company {
  display: flex;
  display: -webkit-flex;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px 20px;
  margin: 0 auto;
}
.card-case-company-name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: 20px;
  color: #333;
  width: 100%;
  padding: 25px 0;
}
.card-detail {
  display: flex;
  display: -webkit-flex;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px 30px;
  margin: 0 auto;
}
.card-company table tr th,
.card-company table tr td {
    padding: 0 5px 10px;
}
.card-company table tr:last-child th,
.card-company table tr:last-child td {
    padding: 0 5px;
}
.card-module {
  border-top: 1px solid #eee;
  padding: 20px;
}
.card-module ul {
    margin-top: 0.5em;
} 
.card-module ul li {
    display: inline-block;
    font-size: 13px;
    padding: .2em .4em;
    margin: .2em;
    border: 1px solid;
    border-radius: 3px;
    line-height: 1.3em;
}
.card-module ul li.use {
    color: #064d2d;
    border-color: #064d2d;
}
.card-module ul li.non-use {
    color: #bbb;
    border-color: #bbb;
}