@charset "utf-8";

.history_list{
  padding-left: 1.2em;
  
  &.numList {
    > li {
    padding-left: 2.5em;
    
    &::before {
      width: 2em;
      display: block;
      text-align: right;
      }
    }
  }
  
  &.history_list-node {
    padding-left: 2em;
    margin-bottom: 0;
  }
}

.history__aco {
  border-bottom: 1px solid #00699B;
  padding-bottom: 20px;
  margin: 20px 0;
  
  & .textLink {
    padding-right: 24px;
    
    &.arrow-right {
      background-position-y: 5px;
    }
  }
  
  > * {
    &:only-child {
      margin-bottom: 0;
    }
  }
  
  > dt {
    position: relative;
    padding-right: 60px;
    cursor: pointer;
    
    &:not(.js-acd_btn) {
      padding-right: 0;
    }
    
    > *:last-child {
      margin-bottom: 0;
    }
    
    > i {
      position: absolute;
      width: 30px;
      height: 30px;
      background: #00699B;
      border-radius: 100%;
      top: -2px;
      right: 5px;
      display: inline-block;
      transition: opacity .2s ease;
      
      &:hover {
        opacity: .7;
      }
      
      &::before,
      &::after {
        position: absolute;
        content: '';
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
      }
      
      &::before {
        width: 50%;
        height: 2px;
        transition: all .2s ease;
      }
      
      &::after {
        width: 2px;
        height: 50%;
      }
      
    }
  }  
  
  > dd {
    padding-top: 15px;
    
    &.js-acd_box {
      display: none;
    }
  }
  
  &:has(dd.active) {
    > dt {
        > i {
        &::before {
          transform: translate(-50%,-50%) rotate(180deg);
        }
        &::after {
          opacity: 0;
        }
      }
    }
  }
}

.history__aco_inner {
  margin-left: 2.1em;
  
  & .textLink:not(:last-child) {
    margin-bottom: 15px;
  }
  
  & .history__aco {
    border-bottom-style: dotted;
    
    &:first-child {
      margin-top: 0;
    }
    
    &:last-child {
      border-bottom-width: 0;
      padding-bottom: 0;
      margin-bottom: 0;
    }
  }
  
  & .history__aco_inner {
    margin-left: 2.9em;
  }
}