@charset "UTF-8";

.img_adjust{
    max-width: 80%;
    height: auto;
    display: block;
}
.com_border p{
    padding: 0 30px;
}

.com_border h5{
    color: #000;
}

.com_border > ol:not(.step-flow), .com_border > ul:not(.step-flow){
    margin: 0 30px;
    color: #000;
}

.com_border > ol:not(.step-flow){
    list-style: decimal;
}

.com_border > ul:not(.step-flow){
    list-style: disc;
}

.com_border > ol:not(.step-flow) > li, .com_border > ul:not(.step-flow) > li{
    
    margin-bottom: 30px;
}

.com_border > ol:not(.step-flow) > li > p, .com_border > ul:not(.step-flow) > li > p{
    padding: 0;
}

.com_border table{
    max-width: 80%;
    margin: 0 auto;
}

.line-image {
    display: flex;
}

@media screen and (max-width: 600px) {
    .line-image{
        display: block;
    }
}

.layout1 {
    width: 80%;
    margin: 0 auto;
}

.frame {
    border: solid 3px #00c;
    border-radius: 10px;
    padding: 10px;
    margin: 30px 50px;
}

.blue {
    color: #00f;
}

.step-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-top: 30px;
}

.step-flow li {
  width: 100%;
  position: relative;
  text-align: center;
}

.step-flow li:not(:last-child) {
  margin-bottom: 35px;
}

.step-flow li a,
.step-flow li span {
  display: block;
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000080;
  text-decoration: none;
  font-size: 14px;
  box-sizing: border-box;
}

.step-flow li a:hover {
  background-color: #f5f5f5;
  text-decoration: underline;
}

.step-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  
  width: 18px;
  height: 22px;
  background-color: #004098;
  clip-path: polygon(
    35% 0%, 65% 0%, 
    65% 55%, 100% 55%, 
    50% 100%, 
    0% 55%, 35% 55%
  );
}