/*===========================================================================*/
/*  archive  */
/*===========================================================================*/
.p-voice {
    padding-top: 130px;
    padding-bottom: 100px;
    background-color: #EEF5F8;
}

.p-voice__cat {
    margin: 0 auto;
    max-width: 995px;
    background-color: #fff;
    border-radius: 18px;
    border: 1px solid #24ADE0;
}

.p-voice__cat--head {
    position: relative;
    padding: 26px 35px;
    cursor: pointer;
}

.p-voice__cat--head .--txt {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.p-voice__cat--head .--plus {
    position: absolute;
    width: 19px;
    height: 19px;
    right: 33px;
    top: 50%;
    transform: translate(0, -50%);
}

.p-voice__cat--head .--plus::before {
    background-color: #24ADE0;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    border-radius: 100vh;
    transform: translate(-50%, -50%);
}

.p-voice__cat--head .--plus::after {
    background-color: #24ADE0;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 3px;
    border-radius: 100vh;
    transform: translate(-50%, -50%);
    transition: transform .4s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-voice__cat--head.js-active .--plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.p-voice__cat--content {
    border-top: #24ADE0 solid 1px;
    padding: 25px 40px 40px;
    display: none;
}

.p-voice__finder {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.p-voice__finderTitle {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #002769;
}

.p-voice__serviceList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.p-voice__serviceList li a {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding: 12px 20px;
    position: relative;
    border-radius: 11px;
    border: 2px solid #E9EDF3;
    overflow: hidden;
    transition: box-shadow .4s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-voice__serviceList li a::before {
    background: linear-gradient(90deg, #2AB7EB 0%, #007DC5 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-voice__serviceList li a .--txt {
    color: #002769;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: color .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-voice__serviceList li a .--arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 10px;
}

.p-voice__serviceList li a .--arrow svg {
    stroke: #24ADE0;
    transition: stroke .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-voice__areaGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.p-voice__areaDropdown {
    width: calc((100% - 32px) / 3);
    border: 1px solid #BFD4EA;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.p-voice__areaDropdownHead {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 12px 14px;
    border: none;
    background: linear-gradient(180deg, #F8FCFF 0%, #F0F8FD 100%);
    cursor: pointer;
}

.p-voice__areaDropdownTitle {
    color: #002769;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.p-voice__areaDropdownNum {
    display: inline-flex;
    align-items: center;
}

.p-voice__areaDropdownNum span {
    padding: 3px 8px;
    border-radius: 100vh;
    border: 1px solid #BFD4EA;
    color: #17499D;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    background-color: #fff;
}

.p-voice__areaDropdownIcon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.p-voice__areaDropdownIcon::before,
.p-voice__areaDropdownIcon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #24ADE0;
    border-radius: 100vh;
    transform: translate(-50%, -50%);
}

.p-voice__areaDropdownIcon::before {
    width: 14px;
    height: 2px;
}

.p-voice__areaDropdownIcon::after {
    width: 2px;
    height: 14px;
    transition: transform .25s ease;
}

.p-voice__areaDropdown.is-open .p-voice__areaDropdownIcon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.p-voice__areaDropdownContent {
    border-top: 1px solid #DCE8F5;
    padding: 14px;
    background-color: #fff;
}

.p-voice__areaDropdownLinks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.p-voice__areaDropdownLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 8px;
    border: 1px solid #E0EBF6;
    color: #17499D;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

@media screen and (min-width: 901px) {
    .p-voice__serviceList li a:hover {
        box-shadow: 15px 15px 20px 0 rgba(30, 62, 96, 0.05);
    }
    .p-voice__serviceList li a:hover:before {
        opacity: 1;
    }

    .p-voice__serviceList li a:hover .--txt {
        color: #fff;
    }

    .p-voice__serviceList li a:hover .--arrow svg {
        stroke: #fff;
    }

    .p-voice__areaDropdownHead:hover {
        background: linear-gradient(180deg, #F1F8FF 0%, #E9F4FD 100%);
    }

    .p-voice__areaDropdownLink:hover {
        background-color: #17499D;
        border-color: #17499D;
        color: #fff;
    }
}

@media screen and (max-width: 900px) {
    .p-voice {
        padding-top: 74px;
        padding-bottom: 50px;
    }

    .p-voice__cat {
        border-radius: 10px;
    }

    .p-voice__cat--head {
        padding: 20px;
    }

    .p-voice__cat--head .--txt {
        font-size: 20px;
    }

    .p-voice__cat--head .--plus {
        width: 14px;
        height: 14px;
        right: 19px;
    }

    .p-voice__cat--head .--plus::before {
        height: 2px;
    }

    .p-voice__cat--head .--plus::after {
        width: 2px;
    }

    .p-voice__cat--content {
        padding: 20px;
    }

    .p-voice__finder {
        gap: 24px;
    }

    .p-voice__finderTitle {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .p-voice__serviceList {
        gap: 7px;
    }

    .p-voice__serviceList li a {
        gap: 13px;
        padding: 8px 13px;
        border-radius: 8px;
    }

    .p-voice__serviceList li a .--txt {
        font-size: 14px;
    }

    .p-voice__serviceList li a .--arrow {
        width: 9px;
    }

    .p-voice__areaGrid {
        gap: 10px;
    }

    .p-voice__areaDropdown {
        width: 100%;
        border-radius: 10px;
    }

    .p-voice__areaDropdownHead {
        min-height: 54px;
        padding: 10px 12px;
    }

    .p-voice__areaDropdownTitle {
        font-size: 14px;
    }

    .p-voice__areaDropdownNum span {
        font-size: 11px;
        padding: 2px 6px;
    }

    .p-voice__areaDropdownContent {
        padding: 10px;
    }

    .p-voice__areaDropdownLinks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .p-voice__areaDropdownLink {
        min-height: 30px;
        font-size: 12px;
    }
}

.p-voice__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.p-voice__list li {
    width: calc(100%/3 - 60px/3);
}

.p-voice__list li a {
    display: block;
    height: 100%;
    background-color: #fff;
    border-radius: 18px;
    padding: 10px 10px 71px;
    position: relative;
}

.p-voice__list--ba {
    display: flex;
    gap: 6px;
}

.p-voice__list--ba>div {
    position: relative;
    overflow: hidden;
    width: calc(50% - 3px);
    border-radius: 10px;
}
.p-voice__list--ba>div::before {
    background: url('../img/voice/before-bg.webp') no-repeat center center/contain;
    content: '';
    height: 21px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 78px;
    z-index: 1;
}
.p-voice__list--ba>div:nth-of-type(2):before {
    background: url('../img/voice/after-bg.webp') no-repeat center center/contain;
    width: 74px;
}

.p-voice__list--ba>div figure {
    aspect-ratio: 177/234;
}

.p-voice__list--ba>div figure img {
    height: 100%;
    object-fit: cover;
}

.p-voice__list--ba>div p {
    position: absolute;
    width: 100%;
    padding: 0 9px 3px;
    z-index: 2;
    left: 0;
    bottom: 0;
    color: #fff;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .05em;
}
.p-voice__list--ba>div:nth-of-type(2) p {
    padding: 0 13px 3px;
}

.p-voice__list--txts {
    margin-top: 15px;
    padding: 0 15px;
}

.p-voice__list--cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.p-voice__list--cats span {
    padding: 4px 10px 5px;
    border-radius: 6px;
    background: #EEF5F8;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-voice__list--head {
    margin-top: 5px;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: color .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-voice__list--details {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
}

.p-voice__list--detail {
    display: flex;
    gap: 6px;
    font-size: 13px;
    line-height: 1.45;
    min-width: 0;
}

.p-voice__list--detail dt {
    flex-shrink: 0;
    color: #17499D;
    font-weight: 700;
}

.p-voice__list--detail dd {
    margin: 0;
    color: #323232;
    font-weight: 500;
}

.p-voice__list--btn {
    position: absolute;
    width: 100%;
    height: 53px;
    left: 0;
    bottom: 0;
    border-top: #E9EDF3 solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.p-voice__list--btn .--txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    transition: color .4s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-voice__list--btn .--txt::before {
    background-color: #24ADE0;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    bottom: 0;
    width: 0;
    transform: translate(-50%, 0);
    transition: width .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-voice__list--btn .--arrow {
    width: 22px;
    height: 22px;
    border-radius: 100vh;
    background: linear-gradient(136deg, #2AB7EB 13.64%, #007DC5 87.52%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

.p-voice__list--btn .--arrow span {
    width: 7px;
    display: inline-flex;
}

.p-voice__list--btn .--arrow span svg {
    stroke: #fff;
}

.p-voice__listItem--post .p-voice__list--thumb {
    aspect-ratio: 3/2;
    border-radius: 10px;
    overflow: hidden;
}

.p-voice__listItem--post .p-voice__list--thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-voice__listItem--post .p-voice__list--meta,
.p-voice__listItem--casestudy .p-voice__list--meta {
    margin-bottom: 8px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #17499D;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .08em;
}

.p-voice__listItem--post .p-voice__list--meta .--label,
.p-voice__listItem--casestudy .p-voice__list--meta .--label {
    border: 1px solid #BFD4EA;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 10px;
}

.p-voice__listItem--post .p-voice__list--excerpt {
    margin-top: 8px;
    color: #516077;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.p-voice__empty {
    margin-top: 28px;
    text-align: center;
    font-size: 16px;
    color: #516077;
}

@media screen and (min-width: 901px) {
    .p-voice__list li a:hover .p-voice__list--head {
        color: #24ADE0;
    }

    .p-voice__list li a:hover .p-voice__list--btn .--txt {
        color: #24ADE0;
    }

    .p-voice__list li a:hover .p-voice__list--btn .--txt::before {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .p-voice__list {
        gap: 20px;
        margin-top: 20px;
    }

    .p-voice__list li {
        width: 100%;
    }

    .p-voice__list li a {
        border-radius: 10px;
        padding: 10px 10px 61px;
    }

    .p-voice__list--ba>div {
        border-radius: 6px;
    }
    .p-voice__list--ba>div::before {
        background: url('../img/voice/before-bg-sp.webp') no-repeat center center/contain;
    }
    .p-voice__list--ba>div:nth-of-type(2):before {
        background: url('../img/voice/after-bg-sp.webp') no-repeat center center/contain;
        width: 78px;
    }

    .p-voice__list--ba>div:nth-of-type(2) p {
        padding: 0 15px 3px;
    }

    .p-voice__list--txts {
        margin-top: 10px;
        padding: 0 10px;
    }

    .p-voice__list--cats {
        gap: 4px;
    }

    .p-voice__list--cats span {
        padding: 3px 8px 4px;
        border-radius: 6px;
    }

    .p-voice__list--head {
        font-size: 16px;
    }

    .p-voice__list--details {
        margin-top: 8px;
        gap: 4px 8px;
    }

    .p-voice__list--detail {
        gap: 6px;
        font-size: 12px;
    }

    .p-voice__list--btn {
        height: 47px;
        gap: 6px;
    }

    .p-voice__list--btn .--txt {
        font-size: 14px;
    }

    .p-voice__list--btn .--arrow {
        width: 16px;
        height: 16px;
        padding-left: 1px;
    }

    .p-voice__list--btn .--arrow span {
        width: 6px;
    }

    .p-voice__listItem--post .p-voice__list--meta,
    .p-voice__listItem--casestudy .p-voice__list--meta {
        margin-bottom: 6px;
        gap: 5px;
        font-size: 11px;
    }

    .p-voice__listItem--post .p-voice__list--meta .--label,
    .p-voice__listItem--casestudy .p-voice__list--meta .--label {
        font-size: 9px;
        padding: 2px 4px;
    }

    .p-voice__listItem--post .p-voice__list--excerpt {
        font-size: 13px;
    }
}

/*===========================================================================*/
/*  single  */
/*===========================================================================*/
.p-voiceSingle {
    padding-top: 154px;
    padding-bottom: 130px;
}

.p-voiceSingle__contents {
    max-width: 792px;
    margin: 0 auto;
}

.p-voiceSingle__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.p-voiceSingle__cats a {
    display: inline-block;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
    padding: 4px 10px 5px;
    background-color: #EEF5F8;
    border-radius: 6px;
}

.p-voiceSingle__head {
    margin-top: 10px;
    padding-bottom: 25px;
    border-bottom: #C3C3C3 solid 1px;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.55;
}

.p-voiceSingle__table {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
}

.p-voiceSingle__table dl {
    display: flex;
    gap: 22px;
}

.p-voiceSingle__table dl dt {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}
.p-voiceSingle__table dl dt::before {
    background-color: #c3c3c3;
    content: '';
    height: 17px;
    left: calc(100% + 10px);
    position: absolute;
    top: 50%;
    width: 1px;
    transform: translate(0, -50%) rotate(18deg);
}

.p-voiceSingle__table dl dd {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.p-voiceSingle__thumb {
    margin-top: 44px;
}

.p-voiceSingle__ba--wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.p-voiceSingle__ba--head {
    position: relative;
    padding-left: 25px;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.55;
}
.p-voiceSingle__ba--head::before {
    background-color: #24ADE0;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
}

.p-voiceSingle__ba--contents {
    display: flex;
    margin-top: 31px;
    gap: 14px;
}

.p-voiceSingle__ba--content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.p-voiceSingle__ba--content::before {
    background: url('../img/voice/single-bbg.webp') no-repeat center center/contain;
    content: '';
    height: 46px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 171px;
}
.p-voiceSingle__ba--contents .p-voiceSingle__ba--content:nth-of-type(2):before {
    background: url('../img/voice/single-abg.webp') no-repeat center center/contain;
    width: 163px;
}

.p-voiceSingle__ba--img {
    aspect-ratio: 388/514;
}

.p-voiceSingle__ba--img img {
    height: 100%;
    object-fit: cover;
}

.p-voiceSingle__ba--txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 0 30px 10px;
    color: #fff;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .05em;
    z-index: 2;
}
.p-voiceSingle__ba--contents .p-voiceSingle__ba--content:nth-of-type(2) .p-voiceSingle__ba--txt {
    padding: 0 38px 10px;
}

.p-voiceSingle__voice {
    margin-top: 70px;
}

.p-voiceSingle__voice--head {
    text-align: center;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
}

.p-voiceSingle__voice--head span {
    position: relative;
    padding: 0 50px;
}

.p-voiceSingle__voice--head span::before {
    background: url('../img/voice/txt-left.webp') no-repeat center center/contain;
    content: '';
    height: 63px;
    left: 0;
    position: absolute;
    bottom: -13px;
    width: 30px;
}

.p-voiceSingle__voice--head span::after {
    background: url('../img/voice/txt-right.webp') no-repeat center center/contain;
    content: '';
    height: 63px;
    right: 0;
    position: absolute;
    bottom: -13px;
    width: 30px;
}

.p-voiceSingle__voice--img {
    margin-top: 40px;
    background-color: #EEF5F8;
    border-radius: 10px;
    padding: 50px;
}

.p-voiceSingle__voice--list {
    margin-top: 5px;
}

.p-voiceSingle__voice--list li {
    padding: 30px 0;
    border-bottom: #C3C3C3 solid 1px;
}

.p-voiceSingle__voice--question {
    position: relative;
    padding-left: 38px;
}

.p-voiceSingle__voice--question h3 {
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .02em;
}

.p-voiceSingle__voice--question .u-en {
    color: #24ADE0;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    position: absolute;
    left: 0;
    top: 2px;
}

.p-voiceSingle__voice--answer {
    margin-top: 12px;
    padding-left: 38px;
    position: relative;
}

.p-voiceSingle__voice--answer p {
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .02em;
}

.p-voiceSingle__voice--answer .u-en {
    color: #EC4E2B;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    position: absolute;
    left: 0;
    top: 0;
}

.p-voiceSingle__staff {
    margin-top: 77px;
    position: relative;
    padding: 50px;
    border-radius: 20px;
    border: 6px solid #D4F1FB;
}

.p-voiceSingle__staff--head {
    position: absolute;
    width: 100%;
    left: 0;
    top: -29px;
    text-align: center;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    color: #fff;
}

.p-voiceSingle__staff--head span {
    padding: 13px 30px 15px;
    background-color: #24ADE0;
    border-radius: 100vh;
    position: relative;
    z-index: 2;
}
.p-voiceSingle__staff--head span::before {
    background: url('../img/voice/bubble-tri.webp') no-repeat center center/contain;
    content: '';
    height: 28px;
    left: 50%;
    position: absolute;
    bottom: -10px;
    width: 46px;
    transform: translate(-50%, 0);
    z-index: -1;
}

.p-voiceSingle__staff>div {
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .02em;
}

.p-voiceSingle__staff>div strong {
    font-weight: 700;
}

.p-voiceSingle__btns {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-voiceSingle__btn--prev {
    position: relative;
    padding-left: 36px;
}
.p-voiceSingle__btn--prev::before {
    background: url('../img/voice/prev-arrow.webp') no-repeat center center/contain;
    content: '';
    height: 26px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 26px;
}

.p-voiceSingle__btn--next {
    position: relative;
    padding-right: 36px;
}
.p-voiceSingle__btn--next::before {
    background: url('../img/voice/next-arrow.webp') no-repeat center center/contain;
    content: '';
    height: 26px;
    right: 0;
    position: absolute;
    top: 2px;
    width: 26px;
}
.p-voiceSingle__btn--prev.--inactive,
.p-voiceSingle__btn--next.--inactive {
    pointer-events: none;
    opacity: 0;
}

.p-voiceSingle__btn--prev span,
.p-voiceSingle__btn--next span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
}
.p-voiceSingle__btn--prev span::before,
.p-voiceSingle__btn--next span::before {
    background-color: #323232;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    bottom: 0;
    width: 0;
    transform: translate(-50%, 0);
    transition: width .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-voiceSingle__btn--back {
    width: 193px;
    height: 61px;
    background-color: #17499D;
    border-radius: 8px;
    border: #17499D solid 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    transition: background-color .4s 0s cubic-bezier(.44,.14,.09,1.02), color .4s 0s cubic-bezier(.44,.14,.09,1.02);
}

@media screen and (min-width: 901px) {
    .p-voiceSingle__btn--prev:hover span::before,
    .p-voiceSingle__btn--next:hover span::before {
        width: 100%;
    }

    .p-voiceSingle__btn--back:hover {
        background-color: #fff;
        color: #17499D;
    }
}

@media screen and (max-width: 900px) {
    .p-voiceSingle {
        padding-top: 84px;
        padding-bottom: 50px;
    }

    .p-voiceSingle__cats {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .p-voiceSingle__cats a {
        font-size: 13px;
        padding: 3px 10px 4px;
    }

    .p-voiceSingle__head {
        margin-top: 7px;
        padding-bottom: 12px;
        font-size: 22px;
    }

    .p-voiceSingle__table {
        margin-top: 15px;
        column-gap: 18px;
        row-gap: 8px;
    }

    .p-voiceSingle__table dl dt {
        font-size: 13px;
    }
    .p-voiceSingle__table dl dt::before {
        height: 14px;
    }

    .p-voiceSingle__table dl dd {
        font-size: 13px;
    }

    .p-voiceSingle__thumb {
        margin-top: 25px;
    }

    .p-voiceSingle__ba--wrapper {
        margin-top: 25px;
        gap: 25px;
    }

    .p-voiceSingle__ba--head {
        padding-left: 15px;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.55;
    }
    .p-voiceSingle__ba--head::before {
        width: 3px;
    }

    .p-voiceSingle__ba--contents {
        margin-top: 10px;
        gap: 6px;
    }

    .p-voiceSingle__ba--content {
        border-radius: 6px;
    }
    .p-voiceSingle__ba--content::before {
        background: url('../img/voice/single-bbg-sp.webp') no-repeat center center/contain;
        height: 21px;
        width: 78px;
    }
    .p-voiceSingle__ba--contents .p-voiceSingle__ba--content:nth-of-type(2):before {
        background: url('../img/voice/single-abg-sp.webp') no-repeat center center/contain;
        width: 78px;
    }

    .p-voiceSingle__ba--txt {
        padding: 0 10px 3px;
        font-size: 12px;
    }
    .p-voiceSingle__ba--contents .p-voiceSingle__ba--content:nth-of-type(2) .p-voiceSingle__ba--txt {
        padding: 0 15px 3px;
    }

    .p-voiceSingle__voice {
        margin-top: 44px;
    }

    .p-voiceSingle__voice--head {
        font-size: 26px;
    }

    .p-voiceSingle__voice--head span {
        position: relative;
        padding: 0 27px;
    }

    .p-voiceSingle__voice--head span::before {
        background: url('../img/voice/txt-left-sp.webp') no-repeat center center/contain;
        height: 35px;
        bottom: -6px;
        width: 16px;
    }

    .p-voiceSingle__voice--head span::after {
        background: url('../img/voice/txt-right-sp.webp') no-repeat center center/contain;
        height: 35px;
        bottom: -6px;
        width: 16px;
    }

    .p-voiceSingle__voice--img {
        margin-top: 23px;
        padding: 20px;
    }

    .p-voiceSingle__voice--list {
        margin-top: 10px;
    }

    .p-voiceSingle__voice--list li {
        padding: 20px 0;
    }

    .p-voiceSingle__voice--question {
        padding-left: 34px;
    }

    .p-voiceSingle__voice--question h3 {
        font-size: 18px;
    }

    .p-voiceSingle__voice--question .u-en {
        font-size: 20px;
        top: 2px;
    }

    .p-voiceSingle__voice--answer {
        margin-top: 12px;
        padding-left: 34px;
    }

    .p-voiceSingle__voice--answer p {
        font-size: 16px;
    }

    .p-voiceSingle__voice--answer .u-en {
        font-size: 20px;
        top: 0;
    }

    .p-voiceSingle__staff {
        margin-top: 63px;
        padding: 34px 21px 26px;
        border-radius: 10px;
        border: 4px solid #D4F1FB;
    }

    .p-voiceSingle__staff--head {
        top: -23px;
        font-size: 20px;
    }

    .p-voiceSingle__staff--head span {
        padding: 13px 30px 15px;
        background-color: #24ADE0;
        border-radius: 100vh;
    }
    .p-voiceSingle__staff--head span::before {
        background: url('../img/voice/bubble-tri.webp') no-repeat center center/contain;
        content: '';
        height: 28px;
        left: 50%;
        position: absolute;
        bottom: -10px;
        width: 46px;
        transform: translate(-50%, 0);
    }

    .p-voiceSingle__staff>div {
        font-size: 14px;
    }

    .p-voiceSingle__staff>div strong {
        font-weight: 700;
    }

    .p-voiceSingle__btns {
        margin-top: 40px;
        padding-bottom: 65px;
        position: relative;
    }

    .p-voiceSingle__btn--prev {
        padding-left: 30px;
    }
    .p-voiceSingle__btn--prev::before {
        height: 22px;
        top: 2px;
        width: 22px;
    }

    .p-voiceSingle__btn--next {
        padding-right: 30px;
    }
    .p-voiceSingle__btn--next::before {
        height: 22px;
        top: 2px;
        width: 22px;
    }

    .p-voiceSingle__btn--prev span,
    .p-voiceSingle__btn--next span {
        font-size: 16px;
    }

    .p-voiceSingle__btn--back {
        width: 164px;
        height: 49px;
        font-size: 16px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

.p-voiceSingle__other {
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #EEF5F8;
}

.p-voiceSingle__other--head {
    text-align: center;
    font-feature-settings: 'pwid' on, 'palt' on;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
}

@media screen and (max-width: 900px) {
    .p-voiceSingle__other {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .p-voiceSingle__other--head {
        font-size: 22px;
    }
}