@charset "UTF-8";

.block-link {
  display: grid;
  gap: 40px;
}
.block-link:not(:last-child) {
  margin-bottom: 40px;
}
.block-link.-col2 {
  grid-template-columns: 1fr 1fr;
}
.block-link.-col3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.block-link-col {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  transition: box-shadow .15s ease-in-out;
}
.block-link-col:has(a):hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.block-link-head {
  flex-shrink: 0;
  padding: 20px 24px;
  position: relative;
}
.block-link-head .box-txt {
  padding: 0 0 10px;
}
.block-link-head.-green {
  background-color: #E1F5EA;
}
.block-link-head.-green .img {
  align-items: center;
  bottom: 0;
  display: flex;
  margin: auto;
  right: 46px;
  top: 0;
}
.block-link-head.-blue {
  background-color: #E4ECF8;
}
.block-link-head.-blue .img {
  align-items: center;
  bottom: 0;
  display: flex;
  margin: auto;
  right: 33px;
  top: 0;
}
.block-link-head.-yellow {
  background-color: #FDF5C1;
}
.block-link-head.-yellow .img {
  right: 0;
  top: 30px;
  width: 91px;
}
.block-link-head.-orange {
  background-color: #FDE7CD;
}
.block-link-head.-orange .img {
  right: 10px;
  top: 30px;
  width: 100px;
}
.block-link-head.-red {
  background-color: #FAE7E4;
}
.block-link-head.-red .img {
  right: 12px;
  top: 30px;
  width: 58px;
}

.block-link-head-title {
  font-size: 2.0rem;
  font-weight: 600;
}
.block-link.-col3 .block-link-head-title {
  font-size: 1.8rem;
}
.block-link-head-title:not(:last-child) {
  margin-bottom: 10px;
}

.block-link-body {
  flex-grow: 1;
}
.block-link-body .img img {
  width: 100%;
}
.block-link-body .box-txt {
  padding: 20px 24px;
}
@media screen and (max-width: 767px) {
  .block-link {
    display: block;
  }
  .block-link-col:not(:last-child) {
    margin-bottom: 40px;
  }
  .block-link-head.-green .img {
    width: 90px;
  }
  .block-link-head.-blue .img {
    width: 108px;
  }
  .block-link-head.-yellow .img {
    align-items: center;
    bottom: 0;
    display: flex;
    margin: auto;
    top: 0;
    width: 129px;
  }
  .block-link-head.-orange .img {
    align-items: center;
    bottom: 0;
    display: flex;
    margin: auto;
    top: 0;
    width: 120px;
  }
  .block-link-head.-red .img {
    align-items: center;
    bottom: 0;
    display: flex;
    margin: auto;
    right: 28px;
    top: 0;
    width: 68px;
  }
  .block-link-head-title {
    font-size: 1.8rem;
  }
  .block-link.-col3 .block-link-head-title {
    font-size: 1.6rem;
  }
}