@charset "utf-8";

.businessBiz-potal__spLBox {
  width: fit-content;
  margin: 0 auto;
}

.businessBiz-potal__point {
    display: flex;
    align-items: center;
    gap: 30px;
    
    > .hd {
      margin-bottom: 0;
      font-weight: bold;
      
      & em {
        margin-left: 5px;
        font-size: 128%;
      }
    }
    
    > dd {
      font-size: 143%;
      
      > span {
        color: #009e94;
        font-weight: bold;
        
        > strong {
          color: #333;
        }
      }
    }
  }

.businessBiz-potal__service_title {
  border-bottom: solid 1px #009e94;
  padding-bottom: 5px;
}

.businessBiz-potal__contact {
  & .handle {
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
    width: fit-content;
    margin: 0 auto;
  }
}


@media screen and (min-width: 801px) {
  .businessBiz-potal__firstUse {
    display: flex;
    flex-direction: column;
    
    > .flowList {
      flex: 1;
      display: flex;
      flex-direction: column;
      
      > li {
        flex: 1;
        
        .box_dl {
          display: flex;
          flex-direction: column;
          
          > dd {
            .linkBtn.color.orange .btn {
              height: 84px;
            }
          }
        }
      }
    }
  }
  
  .businessBiz-potal__contact {
    & .hours {
      display: flex;
      justify-content: center;
    }
  }
  
}

@media screen and (max-width: 800px) {
  .businessBiz-potal__spLBox {
    > * {
      text-align: left;
    }
  }
  
  .businessBiz-potal__point {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    
    > dd {
      font-size: 128%;
    }
  }
  
}