@charset "UTF-8";




.right .colmun ul {
  width: 100%;
  margin-top: 2em;
}
.right .colmun li {
  border: 1px solid #ddd;
  border-radius: 10px;
}
.right .colmun li:not(:first-child) {
  margin-top: 1em;
}
.right .colmun li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 4em;
  background-color: #fff;
  border-radius: 9px;
  padding: 1em 2em;
  position: relative;
  transition: var(--transition);
}
.right .colmun li a:not([href$=".pdf"])::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradation-horizontal);
  margin-left: -16px;
  margin-top: -16px;
  transition: var(--transition);
}
.right .colmun li a:not([href$=".pdf"])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 13px;
  height: 9px;
  background-image: url(/../common/img/icon/icon_link_arrow.png);
  background-size: 13px 9px;
  background-repeat: no-repeat;
  background-position: 0;
  transform: translate(0, -4px);
  z-index: 2;
}
.right .colmun li a:hover {
  background-color: #dee9f3;
}
.right .colmun li a:hover:not([href$=".pdf"])::before {
  scale: .8;
}



@media screen and (max-width: 1255px) {
  .nav.colmun {
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .nav > li {
    width: calc(calc(100% - 2em) / 2);
    width: 100%;
  }
  .nav.colmun {
    flex-direction: column;
  }
}


@media screen and (max-width: 599px) {
  .nav > li {
    flex-direction: column;
  }
  .nav > li > img {
    margin: 0 auto 1em;
  }
  .nav .sub {
    text-align: left;
  }
  .right {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2em;
  }
  .nav > li h4 {
    border: none;
    padding: 0;
  }
}