@charset "UTF-8";
.c-area {
    margin-bottom: 64px;
}
.c-section .c-area:last-of-type {
    margin-bottom: 120px;
}


.p-otherinfo__accordion-title {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    padding: 0 32px 16px 11px;
    border-bottom: 1px solid #E0DEDC;
    position: relative;
    align-items: center;
}

.p-otherinfo__accordion-title::before {
     content: '';
    position: absolute;
    top: calc(50% - 9px);
    right: 10px;
    width: 10px;
    height: 2px;
    background-color:  #CC0000;
  }
  .p-otherinfo__accordion-title::after {
     content: '';
    position: absolute;
    top: calc(50% - 13px);
    right: 14px;
    width: 2px;
    height: 10px;
    background-color:  #CC0000;
  }
  .p-otherinfo__accordion-title:has(+ .acc-open)::after{
    content: none;
  }
.p-otherinfo__accordion-title span {
    
    position: relative;
}
.p-otherinfo__accordion-title span:first-of-type {
    position: absolute;   
    height: 100%;
}
.p-otherinfo__accordion-title span:first-of-type::before {
    content: '';
    position: absolute;
    width: 3px;
    height: calc(100% - 16px);
    background-color: #CC0000;
    left: -11px;
    top: 8px;
    border-radius: 2px;    
}
.p-otherinfo__accordion-title span:last-of-type {
    display: inline-block;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.4;
}
.p-otherinfo__accordion-content {
    padding: 0 16px 24px;
    margin-bottom: 24px;
}