#top .flex {
  display: flex;
}
#top .left, #top .right {
  border: solid 1px #ccc;
  padding: 8px;
}
#top .left {
  width: 25%;
  background-color: #EEEEEE;
}
#top .left .ButtonList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 5px;
}
#top .left .ButtonList li {
  width: 49%;
  margin-bottom: 1px;
}
#top .left .ButtonList li button {
  appearance: none;
  display: block;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: solid 1px #c9c9c9;
  color: #000;
  font-size: 1.4rem;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}
#top .left .ButtonList li button:hover {
  background: #e7f7ff;
}
#top .right {
  width: 75%;
  background-color: #fff;
  padding: 8px;
  text-align: center;
}
#top .right img {
  height: auto;
}
#top .right p {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
  color: #045F8E;
}
#top .right p span {
  color: #000;
  font-size: 1.5rem;
  font-weight: normal;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  #top .flex {
    flex-direction: column;
  }
  #top .left {
    width: 100%;
  }
  #top .right {
    width: 100%;
    border-top: none;
  }
}


#top .PageList {
  margin-top: 30px;
}
#top .PageList ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
#top .PageList ul::after {
  content: '';
  display: block;
  width: 31%;
}
#top .PageList li {
  width: 31%;
  max-width: 360px;
  border: solid 1px #E1E1E1;
  border-radius: 5px;
  overflow: hidden;
}
#top .PageList li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}
#top .PageList li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background: url(../img/common/arrow.svg) no-repeat right/contain;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
#top .PageList .img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
#top .PageList .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
#top .PageList a:hover .img-wrap img {
  transform: scale(1.07);
}
#top .PageList .text {
  padding: 15px 20px 32px;
  background: #fff;
}
#top .PageList p.pagetitle {
  font-size: 2.0rem;
  color: #045F8E;
  font-weight: bold;
}
#top .PageList p {
  color: #000;
}

@media screen and (max-width: 768px) {
  #top .PageList li {
    width: 48%;
  }
  #top .PageList p.pagetitle {
    font-size: 1.6rem;
  }
  #top .PageList p {
    font-size: 1.4rem;
  }
  #top .PageList .text {
    padding: 10px 15px 27px;
  }
  #top .PageList li a::after {
    bottom: 15px;
  }
}