/* 診断画面 */
.shindan-content-inner {
    display: none;
}
.shindan-content-inner.is-active {
    display: block;
}

/* エラー */
.js-vali-err-elm {
    color: #d00;
    font-weight: bold;
}

@media screen and (min-width: 640px) {
    .kv_shindan {
        background: #f5f2ef;
        text-align: center;
        padding: 20px 50px 0 0;
    }
    .shindan-content-inner {
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
        max-width: 700px;
        margin: 30px auto 0;
        overflow: hidden;
    }
    .progress-unit {
        padding: 20px 15px 10px;
        background: #faf6f3;
    }
    .progress-bar-parent {
        position: relative;
        width: 300px;
        height: 12px;
        margin: 0 auto 10px;
        border-radius: 40px;
        background-color: #fff;
        border: 1px solid #ddd;
    }
    .progress-bar-inner {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        height: 12px;
        margin: auto 0;
        border-radius: 40px;
        background-color: #fa7921;
    }
    .progress-bar-inner.bar-1 {
        width: calc(100% / 6 * 1);
    }
    .progress-bar-inner.bar-2 {
        width: calc(100% / 6 * 2);
    }
    .progress-bar-inner.bar-3 {
        width: calc(100% / 6 * 3);
    }
    .progress-bar-inner.bar-4 {
        width: calc(100% / 6 * 4);
    }
    .progress-bar-inner.bar-5 {
        width: calc(100% / 6 * 5);
    }
    .progress-bar-inner.bar-6 {
        width: calc(100% / 6 * 6);
    }
    .percentage-completed {
        display: flex;
        justify-content: center;
        font-size: 14px;
        gap: 10px;
    }
    .shindan-note-top {
        font-size: 12px;
        max-width: 700px;
        margin: 40px auto 0;
        background: #f6f6f6;
        padding: 15px 20px;
    }
    .shindan-note-top-label {
        display: block;
        text-align: center;
    }
    .question-container {
        margin: 30px 30px 40px;
    }
    .question-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 30px;
    }
    .q-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #fa7921;
        color: #fff;
        font-weight: bold;
        display: flex;
        align-items: center;
        font-size: 17px;
        justify-content: center;
        line-height: 1;
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    }
    .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .radio-group input[type="radio"] {
        display: none;
    }
    .radio-group label{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: calc((100% - 20px) / 3);
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 15px 10px;
        background-color: #fff;
        box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: bold;
    }
    .radio-group-twocolumn {
        margin: 30px 50px 0;
    }
    .radio-group-twocolumn label {
        width: calc((100% - 10px) / 2);
    }
    .radio-group label:hover {
        background-color: #f6f6f6;
        transform: translateY(3px);
        box-shadow: none;
    }
    .radio-group label:has(input[type="radio"]:checked) {
        background-color: #f6f6f6;
        transform: translateY(3px);
        box-shadow: none;
    }
    .form-btn-unit {
        margin-top: 30px;
        text-align: center;
    }
    .back-btn {
        display: inline-block;
        cursor: pointer;
        font-weight: bold;
        color: #999;
    }
    .back-btn::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        font-family: FontAwesome;
        font-weight: 400;
        content: "\f060";
        margin-right: 5px;
    }
    .question-sub-title {
        font-weight: bold;
        margin-bottom: 10px;
    }
    .multiple-question {
        margin-bottom: 30px;
    }
    .multiple-question:has(+ .multiple-question) {
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .shindan-note-text {
        background: #faf6f3;
        margin: 30px;
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 5px;
    }
    .diagnosis-content-inner {
        padding-bottom: 40px;
    }
    .input-info-heading{
        text-align: center;
        font-weight: bold;
        margin: 30px 30px 20px;
        font-size: 20px;
        border-bottom: solid 1px #ddd;
        padding-bottom: 5px;
    }
    .form-group__wrap {
        margin: 0 30px 30px;
    }
    .form-group__row {
        margin-bottom: 20px;
    }
    .form-note {
        font-size: 12px;
    }
    .text-attention-label {
        background: #d00;
        color: #fff;
        padding: 6px 5px;
        border-radius: 3px;
        font-size: 13px;
        line-height: 1;
    }
    .form-group__label {
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .form-group__body {
        display: flex;
        gap: 10px;
    }
    .form-control {
        width: 100%;
        height: 50px;
        border: 1px solid #ddd;
        background: #f6f6f6;
        border-radius: 5px;
        padding: 5px 15px;
        font-size: 16px;
    }
    .form-group__accept_checkbox {
        margin-top: 40px;
    }
    .form-group__accept_checkbox input {
        display: none;
    }
    .form-group__accept_checkbox label {
        cursor: pointer;
        font-weight: bold;
        position: relative;
        padding: 15px 15px 15px 60px;
        display: block;
        font-size: 15px;
        background: #faf6f3;
        border-radius: 5px;
    }
    .form-group__accept_checkbox label:not(:last-child) {
        margin-bottom: 15px;
    }
    .form-group__accept_checkbox label:hover {
        opacity: 0.8;
    }
    .form-group__accept_checkbox_txt::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 3px;
        background-color: #fff;
    }
    .check-field:checked + .form-group__accept_checkbox_txt::before {
        background-color: #fa7921;
        border-color: #fa7921;
    }
    .check-field:checked + .form-group__accept_checkbox_txt::after {
        content: "";
        position: absolute;
        left: 28px;
        top: calc(50% - 3px);
        transform: translateY(-50%) rotate(45deg);
        width: 6px;
        height: 14px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .submit-button {
        display: block;
        padding: 15px 50px;
        background: #fa7921;
        box-shadow: 0 3px 0 #ddd;
        color: #fff;
        border-radius: 5px;
        font-weight: bold;
        font-size: 18px;
        text-align: center;
        cursor: pointer;
        margin: 0 auto 20px;
        position: relative;
    }
    .q6-next-button {
        display: block;
        padding: 15px 50px;
        background: #b8b8b8;
        box-shadow: 0 3px 0 #ddd;
        color: #fff;
        border-radius: 5px;
        font-weight: bold;
        font-size: 18px;
        text-align: center;
        margin: 0 auto 20px;
        border: 0;
        cursor: not-allowed;
    }
    .q6-next-button:disabled {
        background: #b8b8b8;
    }
    .q6-next-button.submit-button {
        background: #fa7921;
        cursor: pointer;
    }
    .submit-button::after {
        content: "";
        position: absolute;
        font-family: FontAwesome;
        content: "\f061";
        font-weight: 400;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        color: #fff;
    }
    .form-menseki {
        background-color: #fff;
        border: 1px solid #ddd;
        font-size: 12px;
        height: 100px;
        overflow: auto;
        padding: 15px;
        margin-top: 20px;
        text-align: left;
    }
}
@media screen and (max-width: 639px) {
    .shindan-content-inner {
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
        margin: 30px 15px 40px;
        overflow: hidden;
    }
    .progress-unit {
        padding: 15px 10px 8px;
        background: #faf6f3;
    }
    .progress-bar-parent {
        position: relative;
        width: 100%;
        max-width: 280px;
        height: 10px;
        margin: 0 auto 8px;
        border-radius: 40px;
        background-color: #fff;
        border: 1px solid #ddd;
    }
    .progress-bar-inner {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        height: 10px;
        margin: auto 0;
        border-radius: 40px;
        background-color: #fa7921;
    }
    .progress-bar-inner.bar-1 {
        width: calc(100% / 6 * 1);
    }
    .progress-bar-inner.bar-2 {
        width: calc(100% / 6 * 2);
    }
    .progress-bar-inner.bar-3 {
        width: calc(100% / 6 * 3);
    }
    .progress-bar-inner.bar-4 {
        width: calc(100% / 6 * 4);
    }
    .progress-bar-inner.bar-5 {
        width: calc(100% / 6 * 5);
    }
    .progress-bar-inner.bar-6 {
        width: calc(100% / 6 * 6);
    }
    .percentage-completed {
        display: flex;
        justify-content: center;
        font-size: 12px;
        gap: 8px;
    }
    .shindan-note-top {
        font-size: 12px;
        margin: 30px 15px 0;
        background: #f6f6f6;
        padding: 15px 20px;
    }
    .shindan-note-top-label {
        display: block;
        text-align: center;
    }
    .question-container {
        margin: 20px 10px 30px;
    }
    .question-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .q-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        background-color: #fa7921;
        color: #fff;
        font-weight: bold;
        display: flex;
        align-items: center;
        font-size: 15px;
        justify-content: center;
        line-height: 1;
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    }
    .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .radio-group input[type="radio"] {
        display: none;
    }
    .radio-group label {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: calc((100% - 10px) / 2);
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 15px 5px;
        background-color: #fff;
        box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: bold;
        font-size: 15px;
    }
    .radio-group-twocolumn {
        margin: 20px 0 0;
    }
    .radio-group-twocolumn label {
        width: calc((100% - 10px) / 2);
    }
    .radio-group label:active {
        background-color: #f6f6f6;
        transform: translateY(3px);
        box-shadow: none;
    }
    .radio-group label:has(input[type="radio"]:checked) {
        background-color: #f6f6f6;
        transform: translateY(3px);
        box-shadow: none;
    }
    .form-btn-unit {
        margin-top: 20px;
        text-align: center;
    }
    .back-btn {
        display: inline-block;
        cursor: pointer;
        font-weight: bold;
        color: #999;
        font-size: 14px;
        padding: 10px;
    }
    .back-btn::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        font-family: FontAwesome;
        font-weight: 400;
        content: "\f060";
        margin-right: 5px;
    }
    .question-sub-title {
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .multiple-question {
        margin-bottom: 25px;
    }
    .multiple-question:has(+ .multiple-question) {
        padding-bottom: 25px;
        border-bottom: 1px solid #ddd;
    }
    .shindan-note-text {
        background: #faf6f3;
        margin: 20px 15px;
        padding: 12px 15px;
        font-size: 12px;
        border-radius: 5px;
        line-height: 1.6;
    }
    .diagnosis-content-inner {
        padding-bottom: 30px;
    }
    .input-info-heading {
        text-align: center;
        font-weight: bold;
        margin: 20px 15px 15px;
        font-size: 16px;
        border-bottom: solid 1px #ddd;
        padding-bottom: 5px;
    }
    .form-group__wrap {
        margin: 0 15px 20px;
    }
    .form-group__row {
        margin-bottom: 15px;
    }
    .form-note {
        font-size: 11px;
    }
    .text-attention-label {
        background: #d00;
        color: #fff;
        padding: 5px 4px;
        border-radius: 3px;
        font-size: 11px;
        line-height: 1;
    }
    .form-group__label {
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .form-group__body {
        display: flex;
        gap: 8px;
        flex-direction: column;
    }
    .form-control {
        width: 100%;
        height: 45px;
        border: 1px solid #ddd;
        background: #f6f6f6;
        border-radius: 5px;
        padding: 5px 12px;
        font-size: 16px;
    }
    .form-group__accept_checkbox {
        margin-top: 30px;
    }
    .form-group__accept_checkbox input {
        display: none;
    }
    .form-group__accept_checkbox label {
        cursor: pointer;
        font-weight: bold;
        position: relative;
        padding: 12px 12px 12px 50px;
        display: block;
        font-size: 13px;
        background: #faf6f3;
        border-radius: 5px;
        line-height: 1.5;
    }
    .form-group__accept_checkbox label:not(:last-child) {
        margin-bottom: 12px;
    }
    .form-group__accept_checkbox label:active {
        opacity: 0.8;
    }
    .form-group__accept_checkbox_txt::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border: 2px solid #ddd;
        border-radius: 3px;
        background-color: #fff;
    }
    .check-field:checked + .form-group__accept_checkbox_txt::before {
        background-color: #fa7921;
        border-color: #fa7921;
    }
    .check-field:checked + .form-group__accept_checkbox_txt::after {
        content: "";
        position: absolute;
        left: 22px;
        top: calc(50% - 3px);
        transform: translateY(-50%) rotate(45deg);
        width: 5px;
        height: 12px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .submit-button {
        display: block;
        padding: 15px 40px;
        background: #fa7921;
        box-shadow: 0 3px 0 #ddd;
        color: #fff;
        border-radius: 5px;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        cursor: pointer;
        margin: 0 auto 15px;
        position: relative;
        width: calc(100% - 30px);
        max-width: 300px;
    }
    .q6-next-button {
        display: block;
        padding: 15px 40px;
        background: #b8b8b8;
        box-shadow: 0 3px 0 #ddd;
        color: #fff;
        border-radius: 5px;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        margin: 0 auto 15px;
        border: 0;
        width: calc(100% - 30px);
        max-width: 300px;
        cursor: not-allowed;
    }
    .q6-next-button:disabled {
        background: #b8b8b8;
    }
    .q6-next-button.submit-button {
        background: #fa7921;
        cursor: pointer;
    }
    .submit-button::after {
        content: "";
        position: absolute;
        font-family: FontAwesome;
        content: "\f061";
        font-weight: 400;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        color: #fff;
    }
    .form-menseki {
        background-color: #fff;
        border: 1px solid #ddd;
        font-size: 11px;
        height: 100px;
        overflow: auto;
        padding: 12px;
        margin-top: 15px;
        text-align: left;
        line-height: 1.5;
    }
}

/* 結果画面 */
@media screen and (min-width: 640px) {
    .result-bubble-wrap {
        text-align: center;
        margin: 40px auto 10px;
        text-align: center;
    }
    .result-bubble {
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        background: #ffebb1;
        padding: 5px 30px;
        border-radius: 20px;
        position: relative;
    }
    .result-bubble::before {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #ffebb1;
        background: transparent;
    }
    .result-amount {
        max-width: 460px;
        margin: 0 auto;
        font-size: 18px;
        font-weight: bold;
    }
    .result-amount-inner {
        display: block;
        text-align: center;
        color: #ed680c;
        border-bottom: solid 4px #ddd;
    }
    .result-amount-number {
        font-size: 42px;
    }
    .result-amount-right{
        display: block;
        text-align: right;
        margin-top: 5px;
    }
    .result-complete {
        background: #f6f6f6;
        padding: 30px 30px 40px;
        margin-top: 25px;
    }
    .result-complete__ttl {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
    }
    .result-complete__ttl-inner {
        position: relative;
        padding-left: 50px;
    }
    .result-complete__ttl-inner::before {
        content: "";
        display: inline-block;
        width: 37px;
        height: 37px;
        background: url('/isharyou/shitai/shindan/img/icon-send.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .result-complete__tel_wrap {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }
    .result-complete__tel_ttl {
        text-align: center;
        padding-bottom: 5px;
        border-bottom: solid 1px #ddd;
        margin-bottom: 10px;
    }
    .result-complete__tel_box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    .result-complete__tel_item a {
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        position: relative;
        padding-left: 40px;
    }
    .result-complete__tel_item a:before {
        content: "";
        display: inline-block;
        width: 29px;
        height: 29px;
        background: url('/isharyou/shitai/shindan/img/icon_tel.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .result-complete__telbtn-wrap {
        text-align: center;
        margin: 30px 0 0;
    }
    .result-complete__txt {
        margin: 0 0 5px;
    }
    .result-complete__tel {
        position: relative;
        font-size: 24px;
        font-weight: bold;
        padding-left: 40px;
    }
    .result-complete__tel:before {
        content: "";
        display: inline-block;
        width: 29px;
        height: 29px;
        background: url('/isharyou/common/img/icon-freecall.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .result-complete__tel_time {
        font-size: 14px;
    }
    .result-second__ttl {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        border-bottom: dashed 1px #333;
    }
    .result-second__sm {
        font-size: 18px;
    }
    .result-flow {
        margin-top: 60px;
    }
    .result-flow-box {
        display: grid;
        gap: 0 20px;
        grid-template-columns: auto 210px;
        grid-template-rows: auto 1fr;
        align-items: start;
        padding: 40px 30px;
        position: relative;
    }
    .result-flow-box:not(:last-child)::after {
        content: "";
        display: block;
        width: 33px;
        height: 33px;
        background: url('/isharyou/shitai/shindan/img/icon-flow-arrow.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        bottom: -16px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
    .result-flow-box:nth-child(odd) {
        background: #fbf8ef;
    }
    .result-flow-img {
        grid-row: span 2;
    }
    .result-flow-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .result-flow-text:last-child {
        margin-bottom: 0;
    }
    .result-case-box {
        background: #ffebb1;
        border-radius: 10px;
        padding: 30px;
        margin-top: 30px;
    }
    .result-case-profile {
        display: flex;
        gap: 30px;
    }
    .result-case-img {
        width: 100px;
        height: auto;
    }
    .result-case-name {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 8px;
    }
    .result-case-info li {
        position: relative;
        padding-left: 12px;
    }
    .result-case-info li::before {
        content: "";
        display: inline-block;
        width:5px;
        height: 5px;
        background: #fa7921;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 0;
    }
    .result-case-amount {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background: #fff;
        padding: 20px 10px;
        margin: 10px 0 25px;
    }
    .result-case-amount-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        background: #fa7921;
        color: #fff;
        padding: 2px 20px;
        border-radius: 20px;
    }
    .result-case-fee {
        font-size: 30px;
        font-weight: bold;
        color: #fa7921;
        line-height: 1;
    }
    .result-case-number {
        font-size: 52px;
    }
    .result-request {
        padding: 30px 10px;
        border: solid 2px #fa7921;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        margin-top: 50px;
    }
    .result-request .lg {
        background: #fa7921;
        color: #fff;
        padding: 8px 5px;
        margin: 0 5px;
        display: inline-block;
        line-height: 1;
    }
}
@media screen and (max-width: 639px) {
    .result-bubble-wrap {
        text-align: center;
        margin: 30px auto 0;
    }
    .result-bubble {
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        background: #ffebb1;
        padding: 10px 20px;
        margin-bottom: 20px;
        line-height: 1.4;
        border-radius: 20px;
        position: relative;
    }
    .result-bubble::before {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #ffebb1;
        background: transparent;
    }
    .result-amount {
        margin: 0 3%;
        font-size: 18px;
        font-weight: bold;
    }
    .result-amount-inner {
        display: block;
        text-align: center;
        color: #ed680c;
        border-bottom: solid 4px #ddd;
        padding-bottom: 5px;
    }
    .result-amount-number {
        font-size: 42px;
        line-height: 1;
    }
    .result-amount-right {
        display: block;
        text-align: right;
        margin-top: 5px;
    }
    .result-complete {
        background: #f6f6f6;
        padding: 30px 15px;
        margin-top: 30px;
    }
    .result-complete__ttl {
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
    }
    .result-complete__ttl-inner {
        position: relative;
        padding-left: 40px;
    }
    .result-complete__ttl-inner::before {
        content: "";
        display: inline-block;
        width: 30px;
        height: 30px;
        background: url('/isharyou/shitai/shindan/img/icon-send.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .result-complete__tel_wrap {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }
    .result-complete__tel_ttl {
        text-align: center;
        padding-bottom: 5px;
        border-bottom: solid 1px #ddd;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .result-complete__tel_box {
        display: block;
    }
    .result-complete__tel_item {
        text-align: center;
    }
    .result-complete__tel_item:not(:last-child) {
        margin-bottom: 10px;
    }
    .result-complete__tel_item a {
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        position: relative;
        padding-left: 38px;
    }
    .result-complete__tel_item a:before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 28px;
        background: url('/isharyou/shitai/shindan/img/icon_tel.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .result-complete__telbtn-wrap {
        text-align: center;
        margin: 20px 0 0;
    }
    .result-complete__txt {
        margin: 0 0 15px;
    }
    .result-complete__tel {
        position: relative;
        font-size: 20px;
        font-weight: bold;
        padding-left: 35px;
    }
    .result-complete__tel:before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 24px;
        background: url('/isharyou/common/img/icon-freecall.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .result-complete__tel_time {
        font-size: 12px;
    }
    .result-second__ttl {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        border-bottom: dashed 1px #333;
        padding-bottom: 5px;
    }
    .result-second__sm {
        font-size: 16px;
    }
    .result-flow {
        margin-top: 30px;
    }
    .result-flow .result-second__ttl {
        margin: 0 3%;
    }
    .result-flow-box {
        display: block;
        padding: 30px 3%;
        position: relative;
    }
    .result-flow-box:not(:last-child)::after {
        content: "";
        display: block;
        width: 28px;
        height: 28px;
        background: url('/isharyou/shitai/shindan/img/icon-flow-arrow.svg') no-repeat center center;
        background-size: contain;
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
    .result-flow-box:nth-child(odd) {
        background: #fbf8ef;
    }
    .result-flow-img {
        margin: 15px;
    }
    .result-flow-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .result-flow-text {
        font-size: 14px;
    }
    .result-flow-text:last-child {
        margin-bottom: 0;
    }
    .result-case {
        margin: 0 3%;
    }
    .result-case-box {
        background: #ffebb1;
        border-radius: 10px;
        padding: 15px;
        margin-top: 20px;
    }
    .result-case-profile {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }
    .result-case-img {
        width: 100px;
        height: auto;
        flex-shrink: 0;
    }
    .result-case-name {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .result-case-info {
        font-size: 14px;
    }
    .result-case-info li {
        position: relative;
        padding-left: 12px;
    }
    .result-case-info li::before {
        content: "";
        display: inline-block;
        width: 5px;
        height: 5px;
        background: #fa7921;
        border-radius: 50%;
        position: absolute;
        top: 8px;
        left: 0;
    }
    .result-case-amount {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background: #fff;
        padding: 15px 10px;
        margin: 15px 0 20px;
    }
    .result-case-amount-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
        background: #fa7921;
        color: #fff;
        padding: 2px 15px;
        border-radius: 20px;
    }
    .result-case-fee {
        font-size: 24px;
        font-weight: bold;
        color: #fa7921;
        line-height: 1;
    }
    .result-case-number {
        font-size: 42px;
    }
    .result-request {
        padding: 15px;
        border: solid 2px #fa7921;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        margin: 30px 3%;
        line-height: 1.8;
    }
    .result-request .lg {
        background: #fa7921;
        color: #fff;
        padding: 6px 5px;
        margin: 0 3px;
        display: inline-block;
        line-height: 1;
    }
}