 .q-container {
        max-width: 1010px;
        margin: 0 auto;
        padding: 0 10px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 40px;

        h2 {
            margin-bottom: 16px;
        }
    }
	#questions{
		position:relative;
	}
    #questions p {
        font-size: 16px;
        text-align: left;
        padding-bottom: 5px;
    }
	.one-word{
		font-weight:bold;
		color:#000!important;
		padding-bottom:5px;
		width:fit-content;
		margin:0 auto!important;
		position:relative;
	}
	.one-word::before {
	content: "";
    display: inline-block;
    width: 8px;
    height: 20px;
    border-right: 2px solid black;
    transform: rotate(-35deg);
    margin-right: 15px;
    top: 6px;
    position: relative;
}

.one-word::after {
	content: "";
    display: inline-block;
    width: 8px;
    height: 20px;
    border-right: 2px solid black;
    transform: rotate(35deg);
    top: 1px;
    position: relative;
  margin-left: 15px; /* 文字との間隔調整 */
}
	.q-progress{
		font-size:14px;
		position:absolute;
		top:0px;
		right:0%;
	}

    .question {
        display: none;
    }

    .question.active {
        display: block;
    }

    .form-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #dee2e6;
        border-radius: 5px;
        font-size: 16px;
        margin-bottom: 28px;
    }

    #progress {
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    #prev {
        margin-top: 10px;
        background: #6c757d;
        padding: 10px;
        border: none;
        color: white;
        cursor: pointer;
        border-radius: 5px;
    }

    #diagnose,
    #diagnose-return {
        text-align: center;
        padding: 4px 0px 3px 0px;
        margin: 16 0 16px;
        border-radius: 3px;
        display: block;
        background: #166f94;
        color: #ffffff;
        /* box-shadow: 0 2px 0px 0px #166f94; */
        width: 100%;
        position: relative;
        margin-bottom: 40px;

        &:hover {
            opacity: .8;
            cursor: pointer;
        }
    }


    .result {
        display: block !important;

        img {
            width: 80px;
            object-fit: cover;
        }
    }

    .dl {
        text-align: center;
        width: 75%;

        a {
            display: block;
            color: #fff;
            height: 100%;
            background-color: #166f94;
            text-decoration: none;
            padding: 8px;
            width: 97%;
        }
    }

    .result-item {
        .result-item__wrap {
            display: flex;
            align-items: center;
            gap: 24px;
            border: 1px solid #c0c9d0;
            color: #448acb;
            padding: 16px;
            max-width: 480px;
            margin: 0 auto;
            position: relative;

            img {
                width: 100px;
                height: 100%;
                object-fit: cover;
            }
        }

        .result-item__label {
            display: none;
            position: absolute;
            top: 0;
            right: 0;
            font-size: 12px;
        }

        p {
            margin: 0;
            color: #448acb;
        }
    }

    .secret {
        display: none;
    }

    img {
        max-width: 100%;
    }
	
@media screen and (max-width: 810px) {
    .q-progress {
        left: auto;
        right: 0;
        transform:unset;
    }
    #questions p{
        padding-right: 48px;
    }
}