.main_full {
    width: 100%;
    max-width: 1360px;
    min-width: 320px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.main_full .c-top-title1 {
    padding-top: 40px;
}
.c-top-title1__mainLabel1 {
  line-height: 1.5;
}

.page-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px auto 80px;
}
.list-col {
    position: relative;
    border: 1px solid #011A98;
    border-radius: 12px;
    background: #fff;
    width: 100%;
}
.list-col::before {
    content: "";
    background: url(/assets/images/ico_arrow1_1.svg);
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 24px;
    height: 24px;
}
.list-col a {
  color: #000;
}
.list-col a:hover {
  color: #c03d20;
}
.list-btn {
  display: block;
  box-sizing: border-box;
  padding: 20px 20px 20px 20px;
}
.list-title {
  color: #011A98;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
}
.list-text {
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .main_full {
      padding-left: 0;
      padding-right: 0;
    }
    .list-col {
      width: 48.8%;
      height: 124px;
      transition: all .7s cubic-bezier(.23, 1, .32, 1);
    }
    .list-btn {
      padding: 20px 60px 20px 24px;
    }
    .list-col:hover {
      opacity: .6;
    }
}


