/* 単一選択 シンプル | グレー */

.simple_d .answer.gray input[type=radio]:checked+span::before {
    border-color: #222222 !important;
    background-color: #222222 !important;
    box-shadow: inset 0 0 0 7px #fff;
}

.simple_d .answer.gray input[type=radio]:checked+strong::before {
    border-color: #222222 !important;
    background-color: #222222 !important;
    box-shadow: inset 0 0 0 7px #fff;
}

.simple_d .answer.gray input[type=radio]:checked+em::before {
    border-color: #222222 !important;
    background-color: #222222 !important;
    box-shadow: inset 0 0 0 7px #fff;
}


/* 単一選択 シンプル | アオ */

.simple_d .answer.blue input[type=radio]:checked+span::before {
    border-color: #1181C5 !important;
    background-color: #1181C5 !important;
    box-shadow: inset 0 0 0 7px #fff;
}

.simple_d .answer.blue input[type=radio]:checked+strong::before {
    border-color: #1181C5 !important;
    background-color: #1181C5 !important;
    box-shadow: inset 0 0 0 7px #fff;
}

.simple_d .answer.blue input[type=radio]:checked+em::before {
    border-color: #1181C5 !important;
    background-color: #1181C5 !important;
    box-shadow: inset 0 0 0 7px #fff;
}


/* 単一選択 シンプル | ピンク */

.simple_d .answer.pink input[type=radio]:checked+span::before {
    border-color: #E91D61 !important;
    background-color: #E91D61 !important;
    box-shadow: inset 0 0 0 7px #fff;
}

.simple_d .answer.pink input[type=radio]:checked+strong::before {
    border-color: #E91D61 !important;
    background-color: #E91D61 !important;
    box-shadow: inset 0 0 0 7px #fff;
}

.simple_d .answer.pink input[type=radio]:checked+em::before {
    border-color: #E91D61 !important;
    background-color: #E91D61 !important;
    box-shadow: inset 0 0 0 7px #fff;
}


/* 複数選択 シンプル | グレー */

.simple_d .answer.gray input[type=checkbox]:checked+span::before {
    background: #fff !important;
    border-color: #222222 !important;
    color: #222222 !important;
}

.simple_d .answer.gray input[type=checkbox]:checked+strong::before {
    background: #fff !important;
    border-color: #222222 !important;
    color: #222222 !important;
}

.simple_d .answer.gray input[type=checkbox]:checked+em::before {
    background: #fff !important;
    border-color: #222222 !important;
    color: #222222 !important;
}


/* 複数選択 シンプル | アオ */

.simple_d .answer.blue input[type=checkbox]:checked+span::before {
    background: #fff !important;
    border-color: #1181C5 !important;
    color: #1181C5 !important;
}

.simple_d .answer.blue input[type=checkbox]:checked+strong::before {
    background: #fff !important;
    border-color: #1181C5 !important;
    color: #1181C5 !important;
}

.simple_d .answer.blue input[type=checkbox]:checked+em::before {
    background: #fff !important;
    border-color: #1181C5 !important;
    color: #1181C5 !important;
}


/* 複数選択 シンプル | ピンク */

.simple_d .answer.pink input[type=checkbox]:checked+span::before {
    background: #fff !important;
    border-color: #E91D61 !important;
    color: #E91D61 !important;
}

.simple_d .answer.pink input[type=checkbox]:checked+strong::before {
    background: #fff !important;
    border-color: #E91D61 !important;
    color: #E91D61 !important;
}

.simple_d .answer.pink input[type=checkbox]:checked+em::before {
    background: #fff !important;
    border-color: #E91D61 !important;
    color: #E91D61 !important;
}

.simple_d input[type=checkbox]:checked+span::before {
    font-size: 22px;
}

.simple_d input[type=checkbox]:checked+strong::before {
    font-size: 22px;
}

.simple_d input[type=checkbox]:checked+em::before {
    font-size: 22px;
}

.simple_d input[type=radio] {
    display: none;
}

.simple_d input[type=radio]+span::before {
    width: 30px;
    height: 30px;
    display: inline-block;
    content: "";
    display: flex;
    border-radius: 17px;
    vertical-align: middle;
    border: 2px solid #dddddd;
    background-color: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}


/*チェックボックス*/

.simple_d input[type=checkbox] {
    display: none;
    /*checked時の見た目*/
}

.simple_d .answer {
    padding: 0.35rem 0.5rem;
}

.simple_d label span {
    cursor: pointer;
    /*通常時の見た目*/
    display: flex;
    align-items: center;
    /*hover時の見た目*/
}

.simple_d input[type=checkbox]+span::before {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    content: "✓";
    color: transparent;
    padding: 0;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*太い文字用ラジオボタン*/

.simple_d input[type=radio]+strong::before {
    width: 30px;
    height: 30px;
    display: inline-block;
    content: "";
    border-radius: 17px;
    vertical-align: middle;
    border: 2px solid #dddddd;
    background-color: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}


/*太い文字用チェックボタン*/

.simple_d input[type=checkbox]+strong::before {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    content: "✓";
    color: transparent;
    padding: 0;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*ふと文字のチェック時*/

.simple_d label span strong {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple_d label strong {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple_d label strong span {
    cursor: pointer;
    align-items: center;
    display: flex;
}


/*イタリックのチェック時*/

.simple_d label span em {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple_d label em {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple_d label em span {
    cursor: pointer;
    align-items: center;
    display: flex;
}


/*イタリック文字用ラジオボタン*/

.simple_d input[type=radio]+em::before {
    width: 30px;
    height: 30px;
    display: inline-block;
    content: "";
    border-radius: 17px;
    vertical-align: middle;
    border: 2px solid #dddddd;
    background-color: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}


/*太い文字用チェックボタン*/

.simple_d input[type=checkbox]+em::before {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    content: "✓";
    color: transparent;
    padding: 0;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*ラジオボタン*/

.frame_d .answer {
    padding: 0.35rem 0.5rem;
}

.frame_d input[type=radio] {
    display: none;
}


/*チェックボックス*/

.frame_d input[type=checkbox] {
    display: none;
}

.frame_d label span {
    padding-left: 10px;
}

.frame_d label {
    cursor: pointer;
    align-items: center;
    padding: 1rem 0.5rem;
    display: flex;
    border-radius: 100vh;
}


/* フレーム | グレー */

.frame_d .answer.gray label {
    color: #000000;
    border: solid 3px #000000;
    background-color: #ffffff;
}

.frame_d .answer.gray label:hover {
    color: #ffffff;
    background-color: #808080;
    border: solid 3px #000000;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 50%);
}

.frame_d .answer.gray label.selected {
    color: #ffffff;
    background-color: #808080;
    border: solid 3px #000000;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 50%);
}


/* フレーム | アオ */

.frame_d .answer.blue label {
    color: #000000;
    border: solid 3px #000000;
    background-color: #ffffff;
}

.frame_d .answer.blue label:hover {
    color: #ffffff;
    background-color: #1181C5;
    border: solid 3px #ffffff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 50%);
}

.frame_d .answer.blue label.selected {
    color: #ffffff;
    background-color: #1181C5;
    border: solid 3px #ffffff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 50%);
}


/* フレーム | ピンク */

.frame_d .answer.pink label {
    color: #E91D61;
    border: solid 3px #E91D61;
    background-color: #ffffff;
}

.frame_d .answer.pink label:hover {
    color: #ffffff;
    background-color: #E91D61;
    border: solid 3px #ffffff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 50%);
}

.frame_d .answer.pink label.selected {
    color: #ffffff;
    background-color: #E91D61;
    border: solid 3px #ffffff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 50%);
}


/* アンケート結果 */

* {
    box-sizing: border-box
}

.result {
    padding: 10px;
}

.container {
    width: 100%;
    display: relative;
    border-radius: 100vh;
    padding-bottom: 10px;
}

.skills {
    text-align: right;
    padding-right: 20px;
    font-size: 20px;
    line-height: 40px;
    color: rgb(0, 0, 0);
    white-space: nowrap;
}

.result .answer {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem 0rem 0.35rem;
}


/* 質問のタイトル※現在は未使用 */

.simple_d .question_header {
    padding: 0.25rem 0.5rem;
    background: #e6e6e6;
    display: flex;
    align-items: top;
}

.simple_d .question_header .question_num {
    color: #808080;
    padding-right: 10px;
    font-size: 30px;
    vertical-align: middle;
    min-width: 40px;
}

.simple_d .question_header .question_context {
    display: flex;
    align-items: center;
}

/* 無料版用 */
.simple .question_header {
    padding: 0.25rem 0.5rem;
    background: #e6e6e6;
    display: flex;
    align-items: top;
}

.simple .question_header .question_num {
    color: #808080;
    padding-right: 10px;
    font-size: 30px;
    vertical-align: middle;
    min-width: 40px;
}

.simple .question_header .question_context {
    display: flex;
    align-items: center;
}


/*ラジオボタン*/

.simple input[type=radio] {
    display: none;
    /*checked時の見た目*/
}

.simple input[type=radio]+span::before {
    width: 30px;
    height: 30px;
    display: inline-block;
    content: "";
    display: flex;
    border-radius: 17px;
    vertical-align: middle;
    border: 2px solid #dddddd;
    background-color: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.simple input[type=radio]:checked+span::before {
    border-color: #36bbe7 !important;
    background-color: #36bbe7 !important;
    box-shadow: inset 0 0 0 7px #fff;
}


/*チェックボックス*/

.simple input[type=checkbox] {
    display: none;
    /*checked時の見た目*/
}

.simple .answer {
    padding: 0.35rem 0.5rem;
}

.simple label span {
    cursor: pointer;
    /*通常時の見た目*/
    display: flex;
    align-items: center;
    /*hover時の見た目*/
}

.simple input[type=checkbox]+span::before {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    content: "✓";
    color: transparent;
    padding: 0;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.simple input[type=checkbox]:checked+span::before {
    font-size: 14px;
    background: #fff !important;
    border-color: #36bbe7 !important;
    color: #36bbe7 !important;
}


/*太い文字用ラジオボタン*/

.simple input[type=radio]+strong::before {
    width: 30px;
    height: 30px;
    display: inline-block;
    content: "";
    border-radius: 17px;
    vertical-align: middle;
    border: 2px solid #dddddd;
    background-color: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.simple input[type=radio]:checked+strong::before {
    border-color: #36bbe7 !important;
    background-color: #36bbe7 !important;
    box-shadow: inset 0 0 0 7px #fff;
}


/*太い文字用チェックボタン*/

.simple input[type=checkbox]+strong::before {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    content: "✓";
    color: transparent;
    padding: 0;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.simple input[type=checkbox]:checked+strong::before {
    font-size: 14px;
    background: #fff !important;
    border-color: #36bbe7 !important;
    color: #36bbe7 !important;
}


/*ふと文字のチェック時*/

.simple label span strong {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple label strong {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple label strong span {
    cursor: pointer;
    align-items: center;
    display: flex;
}


/*イタリックのチェック時*/

.simple label span em {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple label em {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.simple label em span {
    cursor: pointer;
    align-items: center;
    display: flex;
}


/*イタリック文字用ラジオボタン*/

.simple input[type=radio]+em::before {
    width: 30px;
    height: 30px;
    display: inline-block;
    content: "";
    border-radius: 17px;
    vertical-align: middle;
    border: 2px solid #dddddd;
    background-color: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.simple input[type=radio]:checked+em::before {
    border-color: #36bbe7 !important;
    background-color: #36bbe7 !important;
    box-shadow: inset 0 0 0 7px #fff;
}


/*太い文字用チェックボタン*/

.simple input[type=checkbox]+em::before {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    content: "✓";
    color: transparent;
    padding: 0;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #f0f0f0;
    margin: -2px 5px 0 0;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.simple input[type=checkbox]:checked+em::before {
    font-size: 14px;
    background: #fff !important;
    border-color: #36bbe7 !important;
    color: #36bbe7 !important;
}