@charset "utf-8";
/* CSS Document */

#toushin {
  & .toushinOnline-guide__sec {
    & .main {
      & h1 {
        color: #fff;
        text-align: left;
        font-size: 32px;
        font-weight: bold;
        padding-top: 40px;
        
        > span {
          font-size: .5em;
          line-height: 1.5;
          display: block;
          font-weight: normal;
          margin-top: 5px;
        }
      }
    }
    
    & h2.toushinOnline-guide__merit_title {
      text-align: left;
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 0;
    }
  }
}

.toushinOnline-guide__merit_sec {
  border: solid 1px #c1c5c6;
  padding: 15px;
  
  & + .toushinOnline-guide__merit_sec {
    margin-top: 40px;
  }
}

.toushinOnline-guide__merit_head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
  
  > i {
    flex-shrink: 0;
    background: #e80000;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    width: 54px;
    height: 54px;
    line-height: 1;
    
    > span {
      font-size: 11px;
      margin-top: 10px;
    }
    
    > b {
      font-size: 24px;
    }
  }
}

.toushinOnline-guide__cando {
}

.toushinOnline-guide__table {
  & table {
    width: 100%;
  }
  
  & th,td {
    border: 1px solid #e5e5e5;
    padding: 16px 19px;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    background: #fff;
  }
  
  & th {
    text-align: center;
  }
  
  & td {
    &[rowspan] {
      text-align: center;
    }
  }
  
  & thead {
    th {
      background: #f8f8f8;
      font-weight: bold;
    }
  }
}

.toushinOnline-guide__table_list {
  > li {
    list-style-type: disc;
    margin: 0 0 3px 2em;
    
    &:last-child {
      margin-bottom: 0;
    }
  }
}

.toushinOnline-guide__noteNum {
  counter-reset: number4;
  margin-top: 40px;
  
  > li {
    padding-left: 2em;
    counter-increment: number4;
    list-style: none !important;
    margin-left: 0;
    position: relative;
    margin: 0 0 10px 0;
    display: flex;
    
    &::before {
      content: "\203B" counter(number4);
      display: inline-block;
      position: relative;
      margin-right: 0.4em;
      left: 0;
      margin-left: -2em;
    }
    
    & dt {
      margin-bottom: 5px;
    }
  }
}

.toushinOnline-guide__fundLink {
  > a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid #ffc400;
    padding: 20px 80px;
    border-radius: 10px;
  }
}


@media only screen and (max-width: 740px) {
  #toushin {
    & .toushinOnline-guide__sec {
        & .main {
            & h1 {
              padding-bottom: 10px;
              
              > span {
                  font-size: 13px;
              }
            }
        }
    }
}
  .toushinOnline-guide__merit_sec {
    & + .toushinOnline-guide__merit_sec {
        margin-top: 20px;
      }
  }
  .toushinOnline-guide__merit_head {
    gap: 10px;
    margin-bottom: 17px;
    
    > i {
      width: 48px;
      height: 48px;
      
      > span {
        font-size: 10px;
      }
      
      > b {
        font-size: 18px;
      }
    }
  }
  
  .toushinOnline-guide__table {
    & th,td {
      padding: 10px;
      font-size: 14px;
    }
  }
  
  .toushinOnline-guide__noteNum {
    margin-top: 20px;
    
    > li {
      font-size: 14px;
    }
  }
  
  .toushinOnline-guide__fundLink {
    > a{
      font-size: 16px;
      padding: 10px 30px;
    }
  }
}