@charset "utf-8";

.linkList {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 48px;
}
.linkList .item {
  width: calc(50% - 48px / 2);
}
.linkList .item a {
  display: flex;
  border: 1px solid var(--site-color-main);
  min-height: 150px;
  height: 100%;
  text-decoration: none;
  color: #000;
}
.linkList .item .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100%;
  background: #e5eaf5;
}
.linkList .item .textArea {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  padding: 20px;
}
.linkList .item .detail {
  font-weight: 500;
  margin-bottom: 29px;
}
.linkList .item .link {
  text-align: right;
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.linkList .item .link .title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-right: 10px;
}
.linkList .item .link .c-link-arrow01 {
  flex-shrink: 0;
  top: -2px;
}

@media screen and (max-width: 1023px) {
  .linkList {
    gap: 20px 0;
  }
  .linkList .item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .linkList .item .icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100%;
    background: #eaeef7;
  }
  .linkList .item .icon01 {
    width: 82px;
    height: auto;
  }
  .linkList .item .icon02 {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  .linkList .item .textArea {
    padding: 15px;
  }
  .linkList .item .detail {
    font-weight: 500;
    margin-bottom: 29px;
  }
}
