/* CSS Document */

article{
    padding-bottom: 80px; 
}

#fv{
    margin-bottom: 50px; 
}
#fv h2{
    text-align: left;
    color: #fff;
    padding: 30px 0 30px 20px;
    background: rgba(89, 134, 198, .8);
    font-size: 140%;
    margin-bottom: 50px;
}

#line{
    margin-bottom: 50px; 
}
#line h3 {
    font-size: 140%;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    color: #5986C6;
    align-items: center;
    gap: 10px;
    padding: 0 5px 15px;
    position: relative;
    margin-bottom: 20px;
}
#line h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #5986C6;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}
#line h4 {
    font-size: 120%;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #5986C6;
    margin: 30px 0 10px;
    text-indent: -1.1em;
	padding-left: 1.1em;
}
#line  .img{
    margin: 10px 0;
}

#line .line-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
#line .line-steps li {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 95%;
  color: #333;
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.05);
  position: relative;
}
#line .line-steps li:not(:last-child)::after {
  content: "▶";
  color: #999;
  font-size: 90%;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 480px) {
   #line .line-steps {
        flex-direction: column;
        align-items: center;
    }
    #line .line-steps li {
        width: fit-content;
    }
    #line .line-steps li:not(:last-child)::after {
        content: "▼";
        right: 50%;
        top: auto;
        bottom: -24px;
        transform: translateX(50%);
    }
    
    #line  .img{
        text-align: center;
    }

	
}
