@charset "UTF-8";
/* ---------------------------------------------
*   c-list-acc（※）
--------------------------------------------- */
.c-list-acc {
    margin-top: 30px;
}
@media screen and (max-width: 750px) {
    .c-list-acc {
        margin-top: 20px;
    }
}
.c-list-acc__item:nth-of-type(n+2) {
    margin-top: 20px;
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-acc__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 30px 20px 40px;
    color: #1669b2;
    border-radius: 4px;
    background: #fff;
    border: 2px solid #1669b2;
    text-align: left;
    touch-action: manipulation;
    cursor: pointer;
    border-radius: 0;
}
.is-open .c-acc__head{
    background-color: #1669b2;
    color: #fff;
}
.c-acc__head-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #1669b2;
    background: #fff;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: ease .23s;
    padding: 10px 11px 12px .25px;
    text-align: left;
    touch-action: manipulation;
    cursor: pointer;
    border-radius: 4px;
}
.c-acc__head-1::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    color: #0072BC;
    background: transparent;
    border: 2px solid #0072BC;
    border-radius: 4px;

}

@media screen and (max-width: 750px) {
    .c-acc__head {
        padding: 15px 15px 15px 15px;
    }
}



@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-acc__head,
    .c-acc__head-1 {
        position: relative;
    }
    .c-acc__head::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        opacity: 0;
        transition: opacity 300ms;
        z-index: 2;
    }
    .c-acc__head:hover::before {
        opacity: 1;
    }
    .c-acc__head-1:hover {
        color: #FFFFFF;
        border: none;
        background-color: transparent;
    }
    .c-acc__head-1:hover::before {
        transform-origin: left top;
        transform: scaleX(1);
        border-radius: 4px;
    }
}
.c-acc__btn-txt {
    font-weight: 500;
    font-size: 16px;
    /* color: #1669b2; */
    font-weight: 700;
    display: flex;
    align-items: center;
}
.c-acc__head-1 .c-acc__btn-txt {
    z-index: 2;
}
.c-acc__head-1:hover .c-acc__btn-txt {
    /* color: #0072BC; */
}
.c-acc__btn-txt-no{
    font-size: 27px;
    margin-right: 30px;
}
.c-acc__btn-img {
    transform: translateY(1px);
    transition: transform 0.5s;
    filter: brightness(0) saturate(100%) invert(21%) sepia(80%) saturate(3202%) hue-rotate(196deg) brightness(90%) contrast(83%);
}
.is-open .c-acc__btn-img {
    transform: translateY(1px) rotate(45deg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(220deg) brightness(104%) contrast(104%);
}
.c-acc__head-1:hover .c-acc__btn-img img {
    filter: invert(30%) sepia(72%) saturate(5681%) hue-rotate(188deg) brightness(70%) contrast(100%);
}

.c-acc__body-inner {
    padding: 30px 25px 30px 40px;
    background-color: #ecf5ff;
    display: flex;
}
.c-acc__body-inner .c-list-dot-1__item {
    margin-bottom: 10px;
}
.c-acc__body-inner .c-list-dot-1__item::before {
    top: 5px;
}
.c-acc__txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8571428571;
    color: #333333;
}
.c-acc__body-txt-no{
    font-size: 27px;
    color: #1669b2;
    margin-right: 30px;
    font-weight: 700;
}

@media screen and (max-width: 750px) {
    .c-acc__btn-txt-no{
        font-size: 20px;
        margin-right: 15px;
    }
    .c-acc__body-inner{
        padding: 15px 15px 15px 15px;
    }
    .c-acc__body-txt-no{
        font-size: 20px;
        margin-right: 15px;
        width: 56px;
        white-space: nowrap;
    }
    .c-acc__body-txt{
        width: calc(100% - 56px);
    }
}

/* ---------------------------------------------
*   js-acc-target
--------------------------------------------- */
.js-acc-target {
    --acc-body-height: 0px;
    height: 0;
    overflow: hidden;
}
.js-acc-scope.is-close .js-acc-target {
    animation: closeAccAnim 0.5s forwards;
}

.js-acc-scope.is-open .js-acc-target {
    animation: openAccAnim 0.5s forwards;
}

@keyframes openAccAnim {
    0% {
        height: 0px;
        visibility: hidden;
    }
    99% {
        visibility: visible;
        height: var(--acc-body-height);
    }
    100% {
        height: auto;
    }
}
@keyframes closeAccAnim {
    0% {
        height: var(--acc-body-height);
    }
    99% {
        visibility: visible;
    }
    100% {
        height: 0px;
        visibility: hidden;
    }
}