@charset "UTF-8";


/* section
-----------------------------------------------*/
section h2 {
  position: relative;
  font-size: 20px;
  padding-left: 20px;
  line-height: 32px;
}
section h2::before {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 32px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #003459;
}
section > p {
  font-size: 14px;
  line-height: 2;
}
section > p:not(:first-child) {
  margin-top: 30px;
}
section .box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}
section .box .txt {
  text-align: right;
  padding-right: 20px;
}
section .box .txt p {
  font-size: 14px;
  line-height: 1.5;
}
section .box .txt span {
  /* display: block; */
  margin-left: 12px;
  font-size: 18px;
}
section .box .img {
  width: 140px;
}
section.link {
  margin-top: 60px;
  padding: 20px 30px;
  background: #f8f8f8;
}
section.link h2 {
  position: inherit;
  padding: 0;
  margin-bottom: 15px;
}
section.link h2::before {
  display: none;
}
section.link ul li {
  line-height: 1.5;
}
section.link ul li:not(:last-child) {
  margin-bottom: 5px;
}
section.link ul li span {
  display: block;
  padding-left: 1em;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  section h2 {
    font-size: 16px;
    padding-left: 15px;
  }
  section h2::before {
    height: 25px;
  }
  section p {
    font-size: 13px;
  }
  section > p:not(:first-child) {
    margin-bottom: 25px;
  }
  section .box {
    margin-top: 20px;
  }
  section .box .txt p {
    font-size: 13px;
  }
  section .box .txt span {
    font-size: 16px;
  }
  section .box .img {
    width: 100px;
  }
  section.link {
    padding: 20px;
  }
  section.link h2 {
    margin-bottom: 5px;
  }
}