@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;
  width: 100%;
  height: auto;
}
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;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.nav img + span {
  display: block;
  text-align: center;
  margin-top: 1em;
  line-height: 1.5;
}

.nav > li > img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1em;
}
.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;
  margin-top: 2em;
}
.sub a[href$=".pdf"] {
  background: none;
  padding-right: 0;
}

#initiatives .nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2em;
  width: 100%;
}
#initiatives .nav li {
  width: calc(calc(100% - 4em) / 3);
}
#initiatives .nav li a {
  position: static;
}

.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__bg{
  background: rgba(222,233,243,0.9);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content{
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 60%;
}
#initiatives .nav .modal__content ul {
  margin-top: 1em;
  list-style: disc;
  margin-left: 1.2em;
}
#initiatives .nav .modal__content li {
  width: 100%;
}
#initiatives  .nav .modal__content li a[href$=".pdf"] {
  padding: 1em 2em 1em 0;
  background: url(/common/img/icon/icon_link_pdf.png) center right no-repeat;
  background-size: 32px;
}
#initiatives .modal h4 {
  margin-top: 0;
}



@media screen and (max-width: 1255px) {
  .nav.colmun {
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  #initiatives .nav li {
    width: calc(calc(100% - 2em) / 2);
  }
}
@media screen and (max-width: 599px) {
  #initiatives .nav li {
    width: 100%;
  }
  .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;
  }
  .modal__content {
    width: 90%;
  }
  .modal__content {
    padding: 20px;
    top: calc(50% + 40px);
    max-height: 80%;
    overflow-y: scroll;
  }
}