@font-face {
  font-family: "notoSans400";
  src: url("../font/NotoSansJP-Regular.woff");
}
@font-face {
  font-family: "notoSans500";
  src: url("../font/NotoSansJP-Medium.woff");
}
@font-face {
  font-family: "NotoSans700";
  src: url("../font/NotoSansJP-Bold.woff");
}
@font-face {
  font-family: "zenKakuGothicNew400";
  src: url("../font/ZenKakuGothicNew-Regular.woff");
}
@font-face {
  font-family: "zenKakuGothicNew500";
  src: url("../font/ZenKakuGothicNew-Medium.woff");
}
@font-face {
  font-family: "zenKakuGothicNew700";
  src: url("../font/ZenKakuGothicNew-Bold.woff");
}
@media screen and (min-width: 768px) {
  .company-section {
    padding: 20px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .company-section {
    padding: 20px 0 40px;
  }
}

@media screen and (min-width: 768px) {
  .company-section__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .company-section__item {
    width: 48%;
  }
  .company-section__item:nth-child(2n) {
    margin-left: 4%;
  }
  .company-section__item:nth-child(n+3) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .company-section__item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.company-section__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-family: notoSans500, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  border-radius: 10px;
}
.company-section__anchor:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 10px;
  right: 3px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid #064EA2;
  border-radius: 1000px;
}
.company-section__anchor:after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 11px;
  z-index: 4;
  pointer-events: none;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #064EA2;
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .company-section__anchor {
    height: 190px;
  }
  .company-section__anchor:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .company-section__anchor {
    height: 160px;
  }
}
@media screen and (min-width: 768px) {
  .company-section__anchor:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}
.company-section__anchor img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.company-section__anchorTitle {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border-radius: 10px 0 0 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .company-section__anchorTitle {
    width: 272px;
    height: 50px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .company-section__anchorTitle {
    width: 222px;
    height: 45px;
    font-size: 15px;
  }
}
.company-section__anchorTitle span {
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  overflow: hidden;
}
.company-section__anchorTitle span:before {
  content: "";
  width: 200%;
  height: 200%;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 10px 10px 0 0 #FFF;
          box-shadow: 10px 10px 0 0 #FFF;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.company-section__anchorTitle span:first-child {
  bottom: 0;
  left: -10px;
}
.company-section__anchorTitle span:nth-child(2) {
  bottom: 50px;
  right: 0;
}