#OVERVIEW .sub-ttl {
  text-align: center;
  font-size: 1.5em;
}
#OVERVIEW .container {
  margin: 8% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#OVERVIEW .container .img {
  width: 40%;
}
#OVERVIEW .container .content {
  width: 55%;
}
#OVERVIEW .container .content .ttl {
  font-size: 2em;
}
#OVERVIEW h2 {
  text-align: center;
}
#OVERVIEW .block {
  margin: 8% 0;
}
#OVERVIEW .block .ttl {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 2%;
}
#OVERVIEW .block .sub-ttl {
  font-size: 1.5em;
  font-weight: bold;
}
#OVERVIEW .block .text {
  margin: 0 0 2%;
}
#OVERVIEW .block .text .sub {
  font-size: 1.3em;
  padding-left: 16px;
  position: relative;
}
#OVERVIEW .block .text .sub:after {
  content: "";
  width: 4px;
  height: 30px;
  background-color: #474c52;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #OVERVIEW .sub-ttl {
    font-size: 1.2em;
  }
  #OVERVIEW .container {
    flex-direction: column;
  }
  #OVERVIEW .container .content {
    width: 100%;
  }
  #OVERVIEW .block .ttl {
    font-size: 1.5em;
  }
  #OVERVIEW .block .sub-ttl {
    font-size: 1.2em;
  }
  #OVERVIEW .block .text .sub {
    font-size: 1.1em;
  }
}
@media (max-width: 620px) {
  #OVERVIEW .sub-ttl {
    font-size: 1em;
  }
}
@media (max-width: 500px) {
  #OVERVIEW .container {
    flex-direction: column;
  }
  #OVERVIEW .container .img {
    width: 100%;
  }
  #OVERVIEW .container .content {
    width: 100%;
  }
  #OVERVIEW .container .content .ttl {
    font-size: 1.5em;
  }
  #OVERVIEW .block {
    margin-top: 16%;
  }
  #OVERVIEW .block .ttl {
    font-size: 1.2em;
  }
  #OVERVIEW .block .sub-ttl {
    font-size: 1.1em;
  }
  #OVERVIEW .block .text {
    font-size: 14px;
    margin-bottom: 8%;
  }
  #OVERVIEW .block .text .sub {
    padding-left: 5px;
    letter-spacing: 2px;
  }
  #OVERVIEW .block .text .sub:after {
    height: 20px;
    width: 2px;
  }
}