@charset "UTF-8";

.ftNoto{ font-family: 'Noto Sans JP', sans-serif;}
.ftPoppin{ font-family: 'Poppins', sans-serif;}
.ftShip{ font-family: 'Shippori Mincho', serif;}

#sec-corp{
  padding: 80px 0 160px;
}

#sec-corp ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sec-corp ul li{
  width: 48%;
  margin-bottom: 100px;
}

#sec-corp ul li:nth-of-type(5),
#sec-corp ul li:nth-of-type(6){
  margin-bottom: 0;
}

#sec-corp ul li a{
  display: block;
  position: relative;
}

#sec-corp ul li img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#sec-corp ul li img:hover {
    opacity: 0.6;
}

#sec-corp ul li h3 span{
    display: block;
    position: relative;
}

#sec-corp ul li h3 span:after {
    position: absolute;
    content: '';
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 8px;
    background-image: url(../../img/red_arrow_icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
    right: 7px;
}

#sec-corp ul li h3 {
    position: relative;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background-size: 14px;
    border-bottom: 2px solid #dddddd;
    padding: 6% 1%;
}

#sec-corp ul li h3::after {
    position: absolute;
    display: block;
    right: 0;
    bottom: -2px;
    content: "";
    width: 10%;
    border-bottom: 2px solid #c32d12;
}


@media only screen and (max-width: 1080px) {
}

@media only screen and (max-width: 768px) {

#sec-corp {
    padding: 50px 0 80px;
}

#sec-corp ul {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    flex-wrap: wrap;
}

#sec-corp ul li{
  margin-bottom: 40px;
}

#sec-corp ul li h3 {
    font-size: 1.4rem;
}
}

@media only screen and (max-width: 480px) {

}