@charset "UTF-8";
/* ==========================================================================//
//
// Company
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
/* セクションタイトル */
.sec_ttl {
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media all and (max-width: 750px) {
  .sec_ttl {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
@media all and (min-width: 751px) {
  .sec_ttl {
    font-size: 26px;
  }
}

/* 会社概要
---------------------------------------------------------- */
@media all and (min-width: 751px) {
  .sec_profile .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (min-width: 751px) {
  .sec_profile .profile_list {
    width: 75%;
  }
}
.sec_profile .profile_list .profile_detail {
  padding: 20px 0;
  border-bottom: 1px solid #E6E6E6;
}
@media all and (min-width: 751px) {
  .sec_profile .profile_list .profile_detail {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sec_profile .profile_list .profile_detail:first-child {
  border-top: 1px solid #E6E6E6;
}
@media all and (max-width: 750px) {
  .sec_profile .profile_list .profile_detail .contents {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 751px) {
  .sec_profile .profile_list .profile_detail .contents {
    width: 31.5%;
  }
}
@media all and (min-width: 751px) {
  .sec_profile .profile_list .profile_detail .detail {
    width: 68.4%;
  }
}
@media (hover: hover) {
  .sec_profile .profile_list .profile_detail .detail a {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(32, 32, 32, 0.6)), to(rgba(32, 32, 32, 0.6)));
    background-image: linear-gradient(90deg, rgba(32, 32, 32, 0.6), rgba(32, 32, 32, 0.6));
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.4s;
    transition: background-size 0.4s;
  }
  .sec_profile .profile_list .profile_detail .detail a:hover {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}