/*
高大連携用CSS
*/
.item-relation {
  position: relative;
  display: block;
}
.h2-relation {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 20px;
  font-size: 2.6rem;
}
.h2-relation span {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 25px 0 0;
  min-width: 300px;
}
.h2-relation::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: #A4A4A4;
}
.imgtxt-relation {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
}
.imgtxt-relation .txt-cmn-16 {
  width: 57%;
}
.imgtxt-relation img {
  width: calc(43% - 30px);
}
.item-relation-blue {
  position: relative;
  display: block;
  background: #E8E6F3;
  padding: 35px 70px;
}
.h2-relation-blue {
}
.h2-relation-blue::after {
  content: none;
}
.item-relation-blue ul li {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 3px;
}
.item-relation-blue ul li::before {
  content: "■";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
/*-------------------------------------------------
break point 960px Tablet
--------------------------------------------------*/
@media only screen and (max-width: 960px) {
  .imgtxt-relation .txt-cmn-16 {
    width: 100%;
  }
  .imgtxt-relation img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .item-relation-blue {
    padding: 40px;
  }
  .h2-relation {
    font-size: 2.4rem;
  }
  .item-relation-blue .h2-relation {
    margin-bottom: 10px;
  }
}
/*-------------------------------------------------
break point 800px SP
--------------------------------------------------*/
@media only screen and (max-width: 800px) {
  
}
/*-------------------------------------------------
break point 520px SP
--------------------------------------------------*/
@media only screen and (max-width: 520px) {
  .h2-relation {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
  .h2-relation::after {
    content: none;
  }
  .imgtxt-relation {
    row-gap: 15px;
  }
  .item-relation-blue {
    background: none;
    padding: 0;
  }
  .item-relation-blue .h2-relation {
    justify-content: center;
  }
}