/* --------------------
 Question - Simulation
-------------------- */
.layout-main {
    margin: 0;
}

@media (max-width: 767px) {
    .com-page-head__title {
        font-size: var(--fs26);
    }
}

.sim {
    padding: 0 0 120px;
}

.sim-container {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .sim-container {
        padding: 0 30px;
    }
}

.sim__item-wrapper {
    margin: 0 0 120px;
}

@media (min-width: 992px) {
    .sim__item-wrapper {
        margin: 0 0 180px;
    }
}

.sim__item {
    margin: 0 0 120px;
    padding: 0 0 120px;
    position: relative;
}

@media (min-width: 992px) {
    .sim__item {
        margin: 0 0 180px;
        padding: 0 0 180px;
    }
}

.sim__item:after {
    background-color: #F58700;
    bottom: -25px;
    content: "";
    display: block;
    height: 56px;
    left: 0;
    margin: auto;
    -webkit-mask-image: url(../../images/icons/icon-black-angle-right.svg);
    mask-image: url(../../images/icons/icon-black-angle-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 0;
    top: auto;
    transform: rotate(90deg);
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 28px;
}

@media (min-width: 992px) {
    .sim__item:after {
        bottom: -40px;
        height: 84px;
        width: 42px;
    }
}

.sim__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.sim__item:last-child:after {
    display: none;
}

.sim__item .com-title {
    padding-left: 55px;
}

@media (min-width: 768px) {
    .sim__item .com-title {
        padding-left: 75px;
    }
}

@media (min-width: 992px) {
    .sim__item .com-title {
        padding-left: 80px;
    }
}

.sim__item .com-title:before {
    align-items: center;
    background-color: #F58700;
    border-radius: 50%;
    bottom: 0;
    color: #fff;
    content: "Q";
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs20);
    font-weight: 700;
    height: 36px;
    justify-content: center;
    left: 10px;
    margin: auto 0;
    padding: 0 0 0.25em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 36px;
}

@media (min-width: 768px) {
    .sim__item .com-title:before {
        font-size: var(--fs24);
        height: 44px;
        left: 20px;
        width: 44px;
    }
}

@media (min-width: 992px) {
    .sim__item .com-title:before {
        font-size: var(--fs28);
        height: 50px;
        width: 50px;
    }
}

.sim__item__field {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 40px auto 0;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .sim__item__field {
        gap: 30px;
        margin: 60px auto 0;
    }
}

@media (min-width: 992px) {
    .sim__item__field {
        gap: 50px;
    }
}

.sim__item__field label, .sim__item__field__button {
    background: none;
    background-color: #F7F7F7;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: block;
    font-size: var(--fs16);
    font-weight: 700;
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -webkit-user-select: none;
    user-select: none;
    width: calc(50% - 10px);
}

@media (min-width: 768px) {
    .sim__item__field label, .sim__item__field__button {
        border-radius: 20px;
        font-size: var(--fs18);
        width: calc(33.33333% - 20px);
    }
}

@media (min-width: 992px) {
    .sim__item__field label, .sim__item__field__button {
        font-size: var(--fs22);
        width: calc(33.33333% - 33.33333px);
    }
}

.sim__item__field label input {
    cursor: pointer;
    opacity: 0 !important;
    padding: 0;
    position: absolute;
}

.sim__item__field label > span, .sim__item__field__button-inner {
    align-items: center;
    aspect-ratio: 300/250;
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .sim__item__field label > span, .sim__item__field__button-inner {
        padding: 30px 20px;
    }
}

@media (min-width: 992px) {
    .sim__item__field label > span, .sim__item__field__button-inner {
        padding: 40px 20px;
    }
}

.sim__item__field label > span:after, .sim__item__field__button-inner::after {
    background-color: rgba(245, 135, 0, 0.2);
    border: 2px solid #F58700;
    border-radius: 10px;
    bottom: 0;
    content: "";
    display: block;
    height: auto;
    left: 0;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: auto;
    z-index: 0;
}

@media (min-width: 768px) {
    .sim__item__field label > span:after, .sim__item__field__button-inner::after {
        border-radius: 20px;
        border-width: 4px;
    }
}

.sim__item__field label > span img {
    position: relative;
    z-index: 1;
}

.sim__item__field label > span span {
    display: block;
    position: relative;
    z-index: 1;
}

.sim__item__field label > span span .-small {
    font-size: var(--fs10);
    font-weight: 500;
}

@media (min-width: 768px) {
    .sim__item__field label > span span .-small {
        font-size: var(--fs12);
    }
}

@media (min-width: 992px) {
    .sim__item__field label > span span .-small {
        font-size: var(--fs16);
    }
}

.sim__item__field label:focus {
    background-color: #dedede;
}

@media (hover: hover) and (pointer: fine) {
    .sim__item__field label:hover {
        background-color: #dedede;
    }
}

.sim__item__field label input:checked ~ span, .selected > .sim__item__field__button-inner {
    background-color: #F7F7F7;
}

.sim__item__field label input:checked ~ span:after, .selected > .sim__item__field__button-inner::after {
    opacity: 1;
}

.sim__item.-q1 .sim__item__field label:nth-child(1) img {
    width: 120px;
}

@media (min-width: 768px) {
    .sim__item.-q1 .sim__item__field label:nth-child(1) img {
        width: 200px;
    }
}

.sim__item.-q1 .sim__item__field label:nth-child(2) img {
    width: 120px;
}

@media (min-width: 768px) {
    .sim__item.-q1 .sim__item__field label:nth-child(2) img {
        width: 200px;
    }
}

.sim__item.-q1 .sim__item__field label:nth-child(3) img {
    width: 90px;
}

@media (min-width: 768px) {
    .sim__item.-q1 .sim__item__field label:nth-child(3) img {
        width: 150px;
    }
}

.sim__item.-q1 .sim__item__field label:nth-child(4) img {
    width: 132px;
}

@media (min-width: 768px) {
    .sim__item.-q1 .sim__item__field label:nth-child(4) img {
        width: 220px;
    }
}

.sim__item.-q2 .sim__item__field label:nth-child(1) img {
    width: 49px;
}

@media (min-width: 768px) {
    .sim__item.-q2 .sim__item__field label:nth-child(1) img {
        width: 82px;
    }
}

.sim__item.-q2 .sim__item__field label:nth-child(2) img {
    width: 49px;
}

@media (min-width: 768px) {
    .sim__item.-q2 .sim__item__field label:nth-child(2) img {
        width: 82px;
    }
}

.sim__item.-q2 .sim__item__field label:nth-child(3) img {
    width: 39px;
}

@media (min-width: 768px) {
    .sim__item.-q2 .sim__item__field label:nth-child(3) img {
        width: 64px;
    }
}

.sim__item.-q2 .sim__item__field label:nth-child(4) img {
    width: 42px;
}

@media (min-width: 768px) {
    .sim__item.-q2 .sim__item__field label:nth-child(4) img {
        width: 70px;
    }
}

.sim__item.-q3 .sim__item__field label:nth-child(1) img {
    width: 51px;
}

@media (min-width: 768px) {
    .sim__item.-q3 .sim__item__field label:nth-child(1) img {
        width: 84px;
    }
}

.sim__item.-q3 .sim__item__field label:nth-child(2) img {
    width: 51px;
}

@media (min-width: 768px) {
    .sim__item.-q3 .sim__item__field label:nth-child(2) img {
        width: 84px;
    }
}

.sim__item.-q3 .sim__item__field label:nth-child(3) img {
    width: 51px;
}

@media (min-width: 768px) {
    .sim__item.-q3 .sim__item__field label:nth-child(3) img {
        width: 84px;
    }
}

.sim__item.-q3 .sim__item__field label:nth-child(4) img {
    width: 49px;
}

@media (min-width: 768px) {
    .sim__item.-q3 .sim__item__field label:nth-child(4) img {
        width: 82px;
    }
}

.sim__item.-q3 .sim__item__field label:nth-child(5) img {
    width: 32px;
}

@media (min-width: 768px) {
    .sim__item.-q3 .sim__item__field label:nth-child(5) img {
        width: 52px;
    }
}

.sim__item.-q4 .sim__item__field label:nth-child(1) img {
    width: 32px;
}

@media (min-width: 768px) {
    .sim__item.-q4 .sim__item__field label:nth-child(1) img {
        width: 52px;
    }
}

.sim__item.-q4 .sim__item__field label:nth-child(2) img {
    width: 32px;
}

@media (min-width: 768px) {
    .sim__item.-q4 .sim__item__field label:nth-child(2) img {
        width: 52px;
    }
}

.sim__item.-q5 .sim__item__field label:nth-child(1) img {
    width: 52px;
}

@media (min-width: 768px) {
    .sim__item.-q5 .sim__item__field label:nth-child(1) img {
        width: 87px;
    }
}

.sim__item.-q5 .sim__item__field label:nth-child(2) img {
    width: 52px;
}

@media (min-width: 768px) {
    .sim__item.-q5 .sim__item__field label:nth-child(2) img {
        width: 87px;
    }
}

.sim__item.-q5 .sim__item__field label:nth-child(3) img {
    width: 52px;
}

@media (min-width: 768px) {
    .sim__item.-q5 .sim__item__field label:nth-child(3) img {
        width: 87px;
    }
}

.sim__item.-q5 .sim__item__field label:nth-child(4) img {
    width: 52px;
}

@media (min-width: 768px) {
    .sim__item.-q5 .sim__item__field label:nth-child(4) img {
        width: 87px;
    }
}

.sim__item.-q5 .sim__item__field label:nth-child(5) img {
    width: 32px;
}

@media (min-width: 768px) {
    .sim__item.-q5 .sim__item__field label:nth-child(5) img {
        width: 52px;
    }
}

.sim__action .com-button {
    max-width: 600px;
}

.sim__item.-q4 .visually-hidden {
    visibility: hidden;
}

.sim__item.-q4  ~ .sim__item__field__button-inner  {
    cursor: pointer;
}

.sim__item__field__button {
    width: 100%;
}

@media (min-width: 768px) {
    .sim__item__field__button {
        width: calc(66.66666% - 33.33333px);
    }
}

.sim__item__field__button-inner {
    aspect-ratio: 650 / 250;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 10px;
}

.sim__item__field__button-inner > input  {
    border: 2px solid #333333;
    border-radius: 0px;
    display: block;
    font-size: var(--fs20);
    font-weight: 700;
    height: 60px;
    padding-right: 0.5em;
    text-align: right;
    width: auto;
    width: min(240px, 60%);
    z-index: 1;
}

@media (min-width: 768px) {
    .sim__item__field__button-inner > input  {
        font-size: var(--fs40);
        height: 80px;
    }
}

.sim__item__field__button-inner > input::-webkit-inner-spin-button,
.sim__item__field__button-inner > input::-webkit-outer-spin-button {
    -webkit-appearance: none;
       -moz-appearance: textfield;
            appearance: none;
    margin: 0;
}

.sim__item__field__button-inner > input:disabled, .sim__item__field__button-inner > .select-wrapper > select:disabled  {
    opacity: 0.7;
}

.sim__item__field__button-inner > .select-wrapper > select  {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 2px solid #333333;
    border-radius: 0px;
    display: block;
    font-size: var(--fs20);
    font-weight: 700;
    height: 60px;
    padding: 5px 25px 5px 10px;
    position: relative;
    width: auto;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .sim__item__field__button-inner > .select-wrapper > select  {
        font-size: var(--fs40);
        height: 80px;
    }
}

.sim__item__field__button-inner > .select-wrapper {
    position: relative;
    width: min(140px, 30%);
}

.sim__item__field__button-inner > .select-wrapper::after {
    background: #F58700;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    content: "";
    display: block;
    height: 13px;
    inset: 0 10px 0 auto;
    margin: auto;
    pointer-events: none;
    position: absolute;
    width: 15px;
    z-index: 2;
}

@media (min-width: 768px) {
    .sim__item__field__button-inner > .select-wrapper::after {
        height: 26px;
        width: 30px;
    }
}

.sim__item__field__button-inner > .select-wrapper > select::-ms-expand {
    display: none;
}

.ec-errorMessage {
    color: #D50000;
}