


.p-timetable .c-accordion__title {
    font-weight: 700;
}
.p-timetable .c-accordion__content {
    padding-top: 0;
}
.p-timetable__content {
    background-image : linear-gradient(to right, #DDDDDD 2px, transparent 2px);
    background-size: 4px 2px;
    background-repeat: repeat-x; 
    background-position: left top;
    padding-top: 20px;
}
.p-timetable__item-wrap {
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin-bottom: 56px;
}
.p-timetable__item-wrap.p-style01::after {
    content: '';
    width: calc(100% - 240px);
    height: 5px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -26px;
    margin: auto;
    background: linear-gradient(to right, #A7E2FF, #FFD183);
    z-index: -1;
}
.p-timetable__item-wrap.p-style02::after {
    content: '';
    width: calc(100% - 150px);
    height: 5px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -26px;
    margin: auto;
    background-image: linear-gradient(to right, #A7E2FF, #FFD183 33%, #E6E6E6 34% 66%, #A7E2FF 67%, #FFD183);
    z-index: -1;
}
.p-timetable__pause {
    color: var(--ncb-red);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #BCBCBC;
    border-radius: 10px;
    width: 90px;
    height: 26px;
    line-height: 26px;
    background: var(--white);
    position: absolute;
    bottom: -36px;
    margin: auto;
}
.p-timetable__item-wrap.p-style01 .p-timetable__pause {
    right: 0;
    left: 0;
}
.p-timetable__item-wrap.p-style02 .p-timetable__pause:nth-child(2) {
    left: 25%;
    transform: translate(-50%);
}
.p-timetable__item-wrap.p-style02 .p-timetable__pause:nth-child(6) {
    right: 25%;
    transform: translate(50%);
}
.p-timetable__available {
    font-size: 14px;
    font-weight: 700;
    background: var(--lt-gray);
    border: 1px solid #BCBCBC;
    border-radius: 10px;
    width: 90px;
    height: 26px;
    line-height: 26px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -36px;
    margin: auto;
}
.p-timetable__item {
    width: 226px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 700;
}
.p-timetable__note {
    text-align: center;
    font-size: 14px;
}
.p-timetable__item::after {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -36px;
    margin: auto;
}
.p-timetable__item.p-start::after {
    background: url(../img/icon_circle_blue.svg);
}
.p-timetable__item.p-end::after {
    background: url(../img/icon_circle_orange.svg);
}
.p-timetable .p-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin-bottom: 0;
}
.p-timetable .p-list .c-list__item {
    margin-bottom: 0;
    padding-left: 12px;
}
.p-atm {
    background: var(--lt-gray);
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.p-atm__title {
    width: 155px;
    height: 26px;
    line-height: 27px;
    border-radius: 5px;
    text-align: center;
    background: var(--white);
}
.p-list__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
@media screen and (min-width: 768px) and (max-width: 982px){
    .p-atm .p-list{
        width: 286px;
        gap: 12px 20px;
    }
    .p-atm .p-list .c-list__item:nth-child(2n+1) {
        width: 155px;
    }
}
@media screen and (max-width: 767.9px){
    .p-timetable .c-accordion__content {
        padding: 0 16px 16px;
    }
    .p-timetable__item-wrap.p-style01 {
        width: fit-content;
        min-width: 300px;
        flex-direction: column;
        height: 96px;
        margin: 0 auto 30px;
    }
    .p-timetable__item-wrap.p-style02 {
        width: fit-content;
        min-width: 300px;
        flex-direction: column;
        height: 238px;
        margin: 0 auto 30px;
    }
    .p-timetable__item {
        width: fit-content;
        text-align: left;
        padding-left: 100px;
        font-size: 14px;
    }
    .p-timetable__item.p-start::after,
    .p-timetable__item.p-end::after {
        bottom: 0;
        right: auto;
        left: 30px;
    }
    .p-timetable__item.p-start::before,
    .p-timetable__item.p-end::before {
        content: "";
        width: 34px;
        height: 2px;
        background-size: 4px 2px;
        background-repeat: repeat-x; 
        background-position: left top;
        position: absolute;
        left: 55px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .p-timetable__item.p-start::before {
        background-image : linear-gradient(to right, #A7E2FF 2px, transparent 2px);
    }
    .p-timetable__item.p-end::before {
        background-image : linear-gradient(to right, #FFD183 2px, transparent 2px);
    }
    .p-timetable__item-wrap.p-style01::after {
        width: 5px;
        height: calc(100% - 40px);
        right: auto;
        left: 40px;
        bottom: 0;
        top: 0;
        background: linear-gradient(to bottom, #A7E2FF, #FFD183);
    }
    .p-timetable__item-wrap.p-style02::after {
        width: 5px;
        height: calc(100% - 40px);
        right: auto;
        left: 40px;
        bottom: 0;
        top: 0;
        background-image: linear-gradient(to bottom, #A7E2FF 0% 16%, #FFD183 17% 33%, #E6E6E6 34% 66%, #A7E2FF 67% 83%, #FFD183 84% 100%);
    }
    .p-timetable__item-wrap.p-style01 .p-timetable__pause {
        right: auto;
        bottom: 0;
        top: 0;
    }
    .p-timetable__item-wrap.p-style02 .p-timetable__pause:nth-child(2) {
        right: auto;
        top: 33px;
        left: 0;
        bottom: auto;
        transform: none;
    }
    .p-timetable__item-wrap.p-style02 .p-timetable__pause:nth-child(6) {
        right: auto;
        bottom: 33px;
        left: 0;
        top: auto;
        transform: none;
    }
    .p-timetable__available {
        right: auto;
        top: 105px;
        left: 0;
        bottom: auto;
        transform: none;
    }
    .p-atm {
        padding: 12px 10px;
        gap: 0;
    }
    .p-atm__title {
        width: 136px;
    }
    .p-atm .p-list {
        width: 256px;
        gap: 9px;
    }
    .p-atm .p-list .c-list__item:nth-child(2n+1) {
        width: 136px;
    }
}
.c-list--note.p-num .c-list__item {
    padding-left: 25px;
}
.c-list--note .c-list__item.p-num01::before{
    content: '※1';
}
.c-list--note .c-list__item.p-num02::before{
    content: '※2';
}
.c-list--note .c-list__item.p-num03::before{
    content: '※3';
}
.p-border {
    background-image : linear-gradient(to right, #DDDDDD 2px, transparent 2px);
    background-size: 4px 2px;
    background-repeat: repeat-x; 
    background-position: left bottom;
    padding-bottom: 20px;
}
.tel_box {
    display: table;
    margin: 0 auto;
}
.tel_box dt {
    display: table-cell;
    vertical-align: middle;
}
.tel_box dt span {
    display: inline-block;
    background: var(--ncb-blue);
    padding: 4px 7px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}
.tel_box .tel {
    display: table-cell;
    font-size: 45px;
    font-size: 4.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-left: 30px;
    line-height: 1.3;
}
.tel_box .tel .icon_free:before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 24px;
    background: url(../img/ico-freedial.webp) no-repeat;
    vertical-align: 5px;
    margin-right: 5px;
    position: relative;
}
.c-table--th.toiawase th{
    padding: 10px;
    vertical-align: center;
    text-align: center;
}
.c-table--th.toiawase td{
    padding: 10px;
    vertical-align: center;
    /* text-align: center; */
}
.float_l {
    float: left;
    margin-right: 20px;
}
.over_h {
    overflow: hidden;
}
.c-table--th.toiawase .c-info__box {
    background-color: var(--white);
    border-radius: 0 0 10px 10px;
    padding: 15px 0 15px;
}
@media only screen and (max-width: 736px){
    .tel_box dt {
        display: block;
        text-align: center;
        padding-top:10px;
        padding-bottom: 10px;

    }
    .tel_box .tel {
        display: block;
        font-size: 30px;
        font-size: 3.0rem;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        padding-left: 0;
        line-height: 1.3;
    }
    .tel_box .tel .icon_free:before {
        content: "";
        display: inline-block;
        width: 30px;
        height: 19px;
        background: url(../img/ico-freedial.webp) no-repeat;
        background-size: 100%;
        vertical-align: 2px;
        margin-right: 5px;
    }
}
