@charset "UTF-8";

.img_incont {
  margin-bottom: 2em;
  width: 100%;
  height: auto;
}
.img__wrap {
  position: relative;
}
.img__wrap p {
  font-size: 27px;
  color: var(--link-color);
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 2em;
  transform: translateY(-3em);
}
.remark + img {
  margin-top: 2em;
}
h4 {
  color: var(--link-color);
}
img + p {
  margin-top: 1em;
}
a[href$=".pdf#view=fitH"] {
  background: url(/common/img/icon/icon_link_pdf.png) center right 0.5em no-repeat;
  background-size: 37px;
  padding: .5em 3em .5em 0;
}

.nav {
  display: flex;
  width: 100%;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 2em;
}

.nav img {
  border: 1px solid #ddd;
}
.nav img + span {
  display: block;
  text-align: center;
  margin-top: 1em;
  line-height: 1.5;
}

.nav > li {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 2em;
}
.nav > li:first-child{
}
.nav > li > img {
  max-width: 220px;
}
.nav > li .right h4 {
  margin: 0;
}
.nav .sub {
  list-style: disc;
  margin-top: .5em;
  margin-left: 1.5em;
  font-size: 15px;
}
.banner div {
  margin-top: 1em;
}
.banner div a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100px;
  background: var(--gradation-horizontal);
  color: var(--light-color);
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 5px;
  position: relative;
}
.banner div a span {
  position: absolute;
  right: .7em;
  bottom: auto;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-left: 1em;
  border-radius: 50%;
  background: #fff;
  transition: var(--transition);
}
.banner div a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-image: url(/common/img/icon/icon_link_arrow_blue.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 13px;
  height: 9px;
  transform: translate(-6px, -4px);
}
.banner div a:hover {
  background: right center no-repeat, linear-gradient(90deg, rgba(43, 87, 174, 1), rgba(43, 87, 174, 1));
  border-left: none;
  color: var(--light-color);
  font-weight: normal;
}
.banner div a:hover span {
  scale: .8;
}


.right h4 {
  color: var(--color);
  font-size: 17px;
}
.sub a[href$=".pdf"] {
  background: none;
  padding-right: 0;
}

.right .colmun ul {
  width: 100%;
}
.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: 7em;
  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: 56%;
  right: 1.5em;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradation-horizontal);
  margin-left: -24px;
  margin-top: -24px;
  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;
  }
}