/* ==================================================
Mixin
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");
.download .dl-img {
  position: relative;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download .dl-img::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: #1E2124;
  content: "";
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download .dl-img::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  background-color: #1E2124;
  content: "";
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download .dl-img a {
  position: relative;
  display: block;
  border: 1px solid #ddd;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download .dl-img a::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #1E2124;
  content: "";
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download .dl-img a::after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background-color: #1E2124;
  content: "";
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download .dl-img a:hover::before {
  width: 100%;
}
.download .dl-img a:hover::after {
  height: 100%;
}
.download .dl-img:hover::before {
  width: calc(100% - 1px);
}
.download .dl-img:hover::after {
  height: calc(100% - 1px);
}
.download div li {
  list-style: disc;
  font-size: 1.4rem;
  line-height: 2.25;
}
.download div .dl-link a {
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid #1E2124;
  font-size: 1.2rem;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.download div .dl-link a::before {
  position: absolute;
  top: -3px;
  left: -28px;
  width: 24px;
  height: 24px;
  background: url(https://mitsuishiriron.com/wp-content/themes/mitsuishi/assets/images/common/icon_pdf.png) no-repeat center;
  content: "";
}
.download div .dl-link a:hover {
  opacity: 0.7;
}
@media all and (max-width: 1023px) {
  .dl-img a img {
    padding: 24px 48px;
  }
  .download div:first-child {
    margin-bottom: 38px;
  }
  .download ul, .download .dl-link {
    padding-left: 28px;
  }
}
@media all and (min-width: 1024px) {
  .download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .download .dl-img a img {
    padding: 58px 96px;
  }
  .download div {
    width: 46%;
  }
}
