@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
    --inner-height: 100vh;
}


/*ここからフレックスの設定*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex_jc_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex_jc_space_btwn {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_jc_space_around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex_jc_flex_end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex_ai_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_ai_flex_end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex_ac_center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.flex_dirc_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex_wrap_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/*ここまでフレックスの設定*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: 'Noto Sans JP',sans-serif;
}

body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    color: #333;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 2px;
    width: 100%;
    height: 100%;
    position: relative;
}

li {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.hidden {
    display: none;
}

.wrap {
    background-color: #F2F2F2;
    min-height: var(--inner-height);
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

header {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 100px;
    background-color: #FFF;
    position: relative;
}

header .content::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    background-image: url(../image/tablet.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top 0 left 0;
}

h1 {
    font-size: 32px;
    padding-left: 50px;
}

h2 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 18px;
}

.font_size_content_wrap {
    width: 100%;
    height: var(--inner-height);
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 2000;
    pointer-events: none;
}

div#font_size_content {
    width: 400px;
    height: 200px;
    padding: 40px;
    background-color: #fff;
    z-index: 3000;
    pointer-events: auto;
}

div#font_size_content > div:nth-of-type(1),
div#font_size_content > div:nth-of-type(3) {
    text-align: center;
}

div#font_size_content > div:nth-of-type(1) {
    margin-bottom: 5px;
}

div#font_size_content > div:nth-of-type(3) {
    margin-top: 30px;
}

#font_size_content_close {
    cursor: pointer;
}

#font_size_content_close > i {
    font-weight: 600;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(86,85,83,0.8);
}

.display_none {
    display: none;
}

input,
button,
select,
textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: inherit;
}

input:focus,
button:focus,
select:focus {
    outline: none;
}

button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.active {
    background-color: rgb(121, 195, 238);
}

button:hover,
button.active:hover,
.type_PictureCamera label:hover {
    color: #fff;
    background-color: blue;
}

.btn {
    padding: 10px 8px;
    background-color: #ccc;
    border-radius: 8px;
    color: blue;
    font-size: 1.2em;
    font-weight: 800;
}

.btn_wrap {
    padding: 10px 20px;
}

.back_btn,
.next_btn,
.info_back_btn,
.send_btn {
    width: 140px;
}

.back_btn,
.info_back_btn {
    float: left;
}

.next_btn,
.send_btn {
    float: right;
}

#info_next_btn {
    width: 170px;
}

.font_size_btn {
    font-size: 0.8em;
    width: 100px;
}

.font_btn {
    width: 80px;
    padding: 4px;
    margin: 2px;
}

.change_font {
    margin-right: 2px;
    font-size: 0.8em;
}

.clear_btn {
    width: 100px;
}

.clear_btn_wrap {
    width: 94%;
    margin-bottom: 20px;
}

.type_Number .clear_btn_wrap {
    width: 96%;
}

.type_PictureCamera .clear_btn_wrap {
    width: 98%;
    margin-top: 10px;
}

.font_large,
.font_large .question_wrap,
.font_large .info_form,
.font_large .confirm_content {
    font-size: 20px;
}

.font_middle,
.font_middle .question_wrap,
.font_middle .info_form,
.font_middle .confirm_content {
    font-size: 16px;
}

.font_small,
.font_small .question_wrap,
.font_small .info_form,
.font_small .confirm_content  {
    font-size: 12px;
}

input[type="text"],
select {
    background-color: #FFF;
    border: 1px solid #888;
    padding: 5px 10px;
    border-radius: 3px;
}

input[type="text"][readonly],
select[readonly] {
    background-color: #DDD;
    border: 1px solid #888;
    padding: 5px 10px;
    border-radius: 3px;
}

.info_form {
    margin-bottom: 30px;
}

#info_area .info_title_wrap {
    width: 100%;
    position: relative;
}

.name_wrap {
    width: calc(100% / 2 - 10px);
}

#patient_id,
#last_name,
#first_name,
#last_name_kana,
#first_name_kana,
#phone_no,
#zipcode,
#address {
    width: 100%;
}

.birthday_wrap {
    width: calc(100% / 3 - 20px);
}

#birthday_year,
#birthday_month,
#birthday_day {
    width: 100%;
}

.hyphen {
    padding: 5px 0;
}

/*問診内容のラジオボタン・チェックボックスの指定(ボタン形式で表示)*/
.interview_list_wrap input[type="radio"],
.interview_list_wrap input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
}

.interview_list_wrap input[type="radio"] + label,
.interview_list_wrap input[type="checkbox"] + label,
.type_PictureCamera label {
    padding: 20px;
    text-align: center;
    background-color: #ccc;
    color: blue;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interview_list_wrap input[type="radio"]:hover + label,
.interview_list_wrap input[type="checkbox"]:hover + label,
.type_PictureCamera label:hover {
    opacity: 0.8;
}

.interview_list_wrap input[type="radio"]:checked + label,
.interview_list_wrap input[type="checkbox"]:checked + label {
    background-color: blue;
    color: #fff;
}

.type_PictureCamera label:hover {
    background-color: blue;
    color: #fff;
}

/*ここまで問診内容のラジオボタン・チェックボックスの指定(ボタン形式で表示)*/

.question {
    width: calc(100% - 20px);
    position: relative;
}

#interview_sheet_area,
#info_area {
    background-color: #ddf1eb;
}

.interview_list {
    display: none;
    min-height: calc(var(--inner-height) - 230px);
    position: relative;
}

#info_area .interview_list {
    display: block;
}

#info_area .question {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    font-size: 1.2em;
    position: relative;
}

#info_area .info_title_wrap::before,
ul[data-mode="Single"] .question::before {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url(../image/bear2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top 0 left 10px;
    bottom: 5px;
}

#info_area .info_title,
ul[data-mode="Single"] .question > div {
    padding: 26px 20px 26px 100px;
    background-color: #102b10;
    color: #FFF;
    font-size: 1.6em;
    margin-top: 38px;
}

#info_area input[type="radio"] + label {
    width: 40%;
}

.multiple_answers,
.required {
    position: absolute;
    bottom: 2px;
    right: 20px;
    font-size: 0.8em;
    color: red;
}

ul[data-mode="Single"] .multiple_answers,
ul[data-mode="Single"] .required {
    color: yellow;
}

.input_wrap {
    width: 100%;
    padding: 20px;
}

/*1_問診内容_区分1：2択の質問*/
.type_Bool input[type="checkbox"] + label {
    width: 40%;
    padding: 50px 20px;
}

/*2_問診内容_区分2：単一選択(単語)*/
/*4_問診内容_区分4：複数選択(単語)*/
.type_Single input[type="checkbox"] + label,
.type_Multi input[type="checkbox"] + label {
    width: calc((100% - 10px) / 3);
    margin-bottom: 5px;
}

.type_Single .input_wrap:after,
.type_Multi .input_wrap:after {
    content: "";
    display: block;
    width: calc((100% - 10px) / 3);
}

/*3_問診内容_区分3：単一選択(長文)*/
/*5_問診内容_区分5：複数選択(長文)*/
.type_SingleL input[type="checkbox"] + label,
.type_MultiL input[type="checkbox"] + label,
.type_PictureCamera label {
    width: 96%;
    margin-bottom: 5px;
}


/*10_問診内容_区分10：日付選択機能(日付選択ピッカー)*/
.type_Date input[type="text"] {
    width: 98%;
    height: 80px;
    margin: 2px;
    border: 3px solid blue;
    font-size: 1.6em;
}

/*6_問診内容_区分6：数値入力*/
.type_Number input[id*="unit"] {
    width: 82px;
    height: 50px;
    margin-left: 10px;
}

.type_Number input[type="text"]:not([id*="unit"]) {
    width: 82%;
    height: 60px;
    margin: 2px;
    border: 3px solid blue;
    font-size: 1.6em;
}

.input_num {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.input_num button {
    width:15%;
    height: 60px;
    margin-bottom: 5px;
    font-size: 1.6em;
}

.type_Number .clear_btn {
    font-size: 1.4em;
    vertical-align: top;
}

/*7_問診内容_区分7：テキストエリア*/
.type_TextEditor textarea {
    width: 98%;
    height: 300px;
    margin: 2px;
    padding: 10px;
    border: 3px solid blue;
}

.type_TextEditor textarea:focus {
    outline: none;
}

/*8_問診内容_区分8：ビジュアルアナログスケール型入力機能*/
/*9_問診内容_区分9：ニューメリックレーティングスケール型入力機能*/
.type_Scale .input_wrap,
.type_NRS .input_wrap {
    padding: 100px 20px 150px;
    max-width: 680px;
}

.vas_text,
.nrs_text {
    margin-bottom: 10px;
}

.vas_text > div:last-child,
.nrs_text > div:last-child {
    text-align: right;
}

.vas_center_text,
.nrs_center_text {
    text-align: center;
}

.vas_center_text {
    margin-top: 20px;
}

.nrs_center_text {
    margin-top: 40px;
}

.ui-slider-handle.ui-corner-all.ui-state-default.ui-state-focus {
    outline: none;
}

.ui-slider-range.ui-slider-range-min,
.ui-slider-range.ui-slider-range-max {
    background-color: rgba(0, 0, 0, 0) !important;
}

.progressbar.ui-widget.ui-widget-content,
.type_Scale .ui-widget.ui-widget-content,
.type_NRS .ui-widget.ui-widget-content {
    border: none;
    width: calc(100% - 1.2em);
    margin: 0 auto;
}

.progressbar.ui-widget.ui-widget-content {
    background-color: #ccc !important;
    height: 2px;
    border-radius: 2px;
}

.type_Scale .ui-widget.ui-widget-content,
.type_NRS .ui-widget.ui-widget-content {
    background-color: rgba(0, 0, 0, 0) !important;
    height: 50px;
    position: relative;
}

.type_Scale .ui-widget.ui-widget-content::after,
.type_NRS .ui-widget.ui-widget-content::after {
    content: "";
    background-color: #333 !important;
    height: 5px;
    width: 100%;
    border-radius: 0;
    position: absolute;
    top: 21px;
}

.ui-slider .ui-slider-handle {
    background-color:rgba(0,0,0,0);
    color: rgba(0,0,0,0);
    border: none;
    width: 2.6em;
    height: 2.6em;
    top: 0.2em;
    margin-left: -1.15em;
}

.ui-slider .ui-slider-handle::before {
    font-family: "Font Awesome 5 Free";
    content: '\f00d';
    font-weight: 600;
    font-size: 60px;
    color: blue;
    position: absolute;
    top: -0.4em;
}

.ui-slider .ui-slider-handle-small::before {
    font-family: "Font Awesome 5 Free";
    content: '\f00d';
    font-weight: 600;
    font-size: 43px;
    color: blue;
    position: absolute;
    top: -0.3em;
    margin-left: 0;
}

.ui-slider .ui-slider-handle-large::before {
    font-family: "Font Awesome 5 Free";
    content: '\f00d';
    font-weight: 600;
    font-size: 68px;
    color: blue;
    position: absolute;
    top: -0.45em;
    margin-left: 0.03em;
}

/*9_問診内容_区分9：ビジュアルアナログスケール型入力機能*/
.slider_line {
    position: relative;
    width: calc(100% - 1.2em);
    margin: 0 auto;
}

.slider_line::before,
.slider_line::after {
    content: "";
    height: 50px;
    width: 4px;
    background-color: #333;
    position: absolute;
    top: -50px;
}

.slider_line::before {
    left: 0;
}

.slider_line::after {
    right: 0;
}

/*10_問診内容_区分10：ニューメリックレーティングスケール型入力機能*/
.marks_wrap,
.numbers_wrap {
    position: relative;
    width: calc(100% - 1.2em);
    margin: 0 auto;
}

.marks {
    position: absolute;
    top: -20px;
    width: 100%;
}

.marks > div {
    position: relative;
}

.marks > div::before,
.marks > div:last-of-type::after {
    content: "";
    height: 50px;
    width: 4px;
    background-color: #333;
    position: absolute;
    top: 20px;
}

.numbers {
    position: absolute;
    top: 50px;
    width: calc(100% + (4px + 1em));
    left: -0.5em;
}

.numbers > div {
    width: 1.3em;
    text-align: center;
}

/*10_問診内容_区分10：日付選択機能(日付選択ピッカー)*/
/*11_問診内容_区分11：日付選択機能(カレンダー)*/

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 67px !important;
}

.ui-state-default.ui-state-highlight.ui-state-active {
    border: 1px solid #003eff!important;
    background: #007fff!important;
    font-weight: normal!important;
    color: #fff!important;
}

/*11_問診内容_区分11：日付選択機能(カレンダー)*/

.type_Calendar .ui-widget.ui-widget-content {
    width: 80%;
    margin: 20px auto;
}

.type_Calendar .ui-datepicker-title {
    padding: 10px;
}

.type_Calendar .ui-state-highlight,
.type_Calendar .ui-state-default {
    padding: 0.5em 0;
    text-align: center;
    font-size: 1.2em;
}

/*12_問診内容_区分12：画像アップロード機能*/
.type_PictureCamera .img_upload {
    display: none;
}

.type_PictureCamera label {
    display: block;
}

.type_PictureCamera .file_img_wrap {
    margin-bottom: 20px;
}

.type_PictureCamera .file_img_wrap img {
    max-width: 100%;
}

ul[data-mode="Multi"] .question {
    width: 100%;
    background-color: #fff;
    padding: 30px 20px;
    font-size: 1.2em;
    position: relative;
}

#info_area .question_wrap,
ul[data-mode="Multi"] .question_wrap {
    width: calc(100% - 20px);
    margin: 5px auto;
    border: 2px solid #ccc;
    border-radius: 3px;
}

#info_area .info_attention,
ul[data-mode="Multi"] .attention {
    border: 4px solid red;
}


/*13_問診内容_区分13：人体ポインティング機能*/


/*14_問診内容_区分14：ポインティング機能*/


/*15_問診内容_区分15：スケッチ機能*/

.canvas_wrap {
    width: 500px;
    overflow: hidden;
    position: relative;
}

.canvas_wrap canvas, .lower-canvas {
    border: 2px solid #ccc;
}

.loading {
    background-color: #ddf1eb;
    position: absolute;
    width: inherit;
    z-index: 9;
    height: 100%;
}

.loading .spinner {
    width: 1.5em;
    height: 1.5em;
    border: 4px #ddd solid;
    border-top: 4px #79c3ee solid;
    border-radius: 50%;
    animation: loading_anime 0.8s infinite linear;
    margin-right: 10px;
}

@keyframes loading_anime {
    100% {
        transform: rotate(360deg);
    }
}

.canvas-container {
    display: inline-block;
}

canvas.upper-canvas.pointing_canvas {
    cursor: crosshair!important;
}

.type_BodyPointing .input_wrap,
.type_Pointing .input_wrap,
.type_Sketch .input_wrap {
    text-align: center;
    position: relative;
}

.type_BodyPointing .btn_content,
.type_Pointing .btn_content,
.type_Sketch .btn_content {
    margin-left: 50px;
    width: 130px;
}

.type_BodyPointing .btn_content > div,
.type_Pointing .btn_content > div,
.type_Sketch .btn_content > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.type_BodyPointing .clear_content,
.type_Pointing .clear_content,
.type_Sketch .clear_content {
    margin-bottom: 60px;
}

.type_BodyPointing .btn_content .btn:not(:last-child),
.type_Pointing .btn_content .btn:not(:last-child),
.type_Sketch .btn_content .btn:not(:last-child) {
    margin-bottom: 15px;
}

.type_BodyPointing .btn_content .btn.active,
.type_Pointing .btn_content .btn.active,
.type_Sketch .btn_content .btn.active {
    color: #fff;
    background-color: blue;
}

/*16_問診内容_区分16：Web機能*/
.type_Web iframe {
    width: 100%;
    height: calc(var(--inner-height) - 380px);
    min-height: 200px;
}

/*17_問診内容_区分17：WebFull機能*/
.type_WebFull iframe {
    width: 100%;
    height: calc(var(--inner-height) - 280px);
    min-height: 300px;
}

/*18_問診内容_区分18：説明機能*/
.type_Description .card_wrap {
    width: 100%;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px #ccc;
}

.type_Description .card_item {
}

/*19_問診内容_区分19：電話番号機能*/
.type_Phone input[type="text"] {
    width: 100%;
    height: 60px;
    margin: 2px;
    border: 3px solid blue;
    font-size: 1.6em;
    text-align: center;
}

.type_Number .clear_btn {
    font-size: 1.4em;
    vertical-align: top;
}


/*20_問診内容_区分20：メールアドレス入力機能*/
.type_Email .input_wrap {
    padding: 20px 50px;
}

.type_Email input[type="text"] {
    width: 100%;
    height: 50px;
    margin: 2px;
    font-size: 1.4em;
}

.type_Email label {
    width: 100%;
    margin: 2px;
    font-size: 1.6em;
}

/*21_問診内容_区分21：日付入力機能*/
.type_DateInput .input_wrap {
    padding: 20px 10px 0px 15px;
    font-size: 1.1em;
}

.dateinput_wrap input {
    width: 100%;
    text-align: center;
}

.dateinput_wrap div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dateinput_text.selected {
    border: 3px solid blue !important;
}

/* 年月日 */
.YearMonthDay .dateinput_wrap {
    display: grid;
    grid-template-columns: 2fr 40px 1fr 40px 1fr 40px;
}

/* 年月 */
.YearMonth .dateinput_wrap {
    display: grid;
    grid-template-columns: 2fr 30px 1fr 30px;
}

.YearMonth .day_wrap {
    display: none;
}

/* 月日 */
.MonthDay .dateinput_wrap {
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px;
}

.MonthDay .year_wrap {
    display: none;
}

/*2択選択(マルチ質問)*/

ul[data-mode="Multi"] .type_Bool input[type="checkbox"] + label {
    width: 40%;
    padding: 50px 20px;
}

/*数値入力(マルチ質問)*/

ul[data-mode="Multi"] .type_Number input[id*="unit"] {
    width: 70px;
    height: 40px;
}

ul[data-mode="Multi"] .type_Number .input_num {
    margin-bottom: 20px;
}

/*ビジュアルアナログスケール型入力機能(マルチ質問)*/
/*ニューメリックレーティングスケール型入力機能(マルチ質問)*/
ul[data-mode="Multi"] .type_Scale .input_wrap,
ul[data-mode="Multi"] .type_NRS .input_wrap {
    padding: 60px 20px 0;
    margin-bottom: 100px;
    max-width: 680px;
}

ul[data-mode="Multi"] .type_TextEditor .clear_btn,
ul[data-mode="Multi"] .type_Scale .clear_btn,
ul[data-mode="Multi"] .type_NRS .clear_btn,
ul[data-mode="Multi"] .type_Date .clear_btn {
    margin-bottom: 20px;
}

/*.interview_list_footer*/

.interview_list_footer {
    position: relative;
    background-color: transparent;
}

.interview_list_footer .btn_wrap {
    background-color: #102b10;
}

.interview_form {
    min-height: calc(var(--inner-height) - 230px);
}

.visited_confirm {
    min-height: calc(var(--inner-height) - 180px);
}

.info_visited_confirm {
    min-height: auto;
}

.progressbar_wrap {
    width: 100%;
    padding: 10px;
    height: 50px;
}

.progressbar_wrap .progressbar {
    width: 100%;
}

.progressbar_wrap .ui-progressbar-value.ui-corner-left.ui-widget-header {
    border: none;
    background-color: #2196F3;
    margin: 0;
}

.progressbar_text_start,
.progressbar_text_end {
    width: 3em;
}

.progressbar_text_start {
    text-align: left;
}

.progressbar_text_end {
    text-align: right;
}

/* 確認画面 */
.confirm_top_content,
.hyouka_complete_top_content {
    padding: 20px;
    background-color: #102b10;
    text-align: center;
}

.confirm_top_content > div,
.hyouka_complete_top_content > div {
    color: #FFF;
    font-size: 1.6em;
}

.confirm_content,
.hyouka_complete_content {
    background-color: #ddf1eb;
    padding: 10px 15px 0;
}

.content_title {
    padding: 20px 20px 20px 70px;
    font-weight: bold;
    background-color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.content_title::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    background-image: url(../image/minibear.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: calc(50% - 25px);
    left: 10px;
}

.content_title_inner {
    font-size: 1.2em;
}

.content_title .back_btn {
    position: absolute;
    width: 4em;
    top: 10px;
    right: 10px;
}

.confirm_table thead th,
.confirm_table thead td {
    font-size: 0.9em;
    font-weight: bold;
    padding: 0 15px;
}

.confirm_table tr:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.confirm_table th,
.confirm_table td {
    text-align: left;
    font-weight: normal;
    padding: 10px 15px;
    word-break: break-all;
}

.confirm_table .confirm_answer {
    width: 250px;
    padding: 10px 0 10px 10px;}

.confirm_table .confirm_btn_wrap {
    width: 5.5em;
    text-align: right;
    padding-right: 5px;
}

.confirm_table .confirm_btn_wrap button {
    width: 4em;
    float: none;
}

.type_Scale .confirm_answer_inner,
.type_NRS .confirm_answer_inner {
    width: 230px;
    font-size: 16px;
}

.type_Scale .confirm_answer_inner {
    height: 55px;
}

.type_NRS .confirm_answer_inner {
    height: 70px;
}

.type_Scale .confirm_answer,
.type_NRS .confirm_answer {
    padding-top: 20px;
}

.type_Scale .confirm_answer_inner .input_wrap,
.type_NRS .confirm_answer_inner .input_wrap {
    min-width: 360px;
    transform: scale(0.7) translateX(-25%) translateY(-32%);
    padding: 0;
    word-break: normal;
}

.confirm_answer_inner .vas_text,
.confirm_answer_inner .nrs_text {
    margin-bottom: 20px;
}

.confirm_answer_inner .nrs_center_text {
    margin-top: 48px;
    line-height: 1.2;
}

.confirm_answer_inner .slider_line::before,
.confirm_answer_inner .slider_line::after {
    height: 30px;
    top: -17px;
}

.confirm_answer_inner .ui-slider .ui-slider-handle::before {
    font-size: 40px;
    top: -0.75em;
    left: 0.15em;
}
.confirm_answer_inner .marks > div::before,
.confirm_answer_inner .marks > div:last-of-type::after {
    height: 30px;
    top: 8px;
}

.type_NRS .confirm_answer_inner .numbers {
    top: 25px;
}

.type_Scale .confirm_answer_inner .ui-widget.ui-widget-content,
.type_NRS .confirm_answer_inner .ui-widget.ui-widget-content {
    pointer-events: none;
    height: 5px;
}

.type_Scale .confirm_answer_inner .ui-widget.ui-widget-content::after,
.type_NRS .confirm_answer_inner .ui-widget.ui-widget-content::after {
    top: 0;
}

.type_PictureCamera .confirm_answer > img {
    max-width: 100%;
}

.type_BodyPointing .confirm_answer > div,
.type_Pointing .confirm_answer > div,
.type_Sketch .confirm_answer > div {
    text-align: center;
}

.type_BodyPointing .confirm_answer canvas,
.type_Pointing .confirm_answer canvas,
.type_Sketch .confirm_answer canvas {
    pointer-events: none;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}


/* 評価結果画面 */

.hyouka_complete_wrap {
    min-height: calc(var(--inner-height) - 100px);
}

.hyouka_complete_top_content,
.hyouka_complete_wrap .interview_list_footer {
    height: 80px;
}

.hyouka_complete_content {
    min-height: calc(var(--inner-height) - 260px);
}

.hyouka_complete_content th {
    text-align: left;
}

.hyouka_complete_content thead th:nth-of-type(2),
.hyouka td {
    width: 25%;
    min-width: 80px;
}

.hyouka_complete_content thead th {
    font-weight: 500;
}

.hyouka {
    font-size: 1.6em;
    font-weight: 600;
} 

.hyouka th,
.hyouka td {
    padding-top: 10px;
}

.hyouka_text td {
    padding: 20px 10px;
}

:not(:last-child).hyouka_text td {
    border-bottom: 1px solid #ccc;
}

.complete_btn {
    width: 200px;
}


/* 完了画面 */
.complete_name,
.complete_text {
    border-radius: 3px;
}

.complete_content_wrap {
    width: 100%;
    min-height: calc(var(--inner-height) - 100px);
    background-color: #ddf1eb;
}

.complete_content {
    padding: 30px;
}

.complete_content img {
    width: 220px;
    margin: -50px;
    z-index: 500;
}

.complete_name {
    width: 350px;
    background: #e8df6f;
    padding: 10px;
    margin-bottom: 60px;
    text-align: center;
}

.complete_name_empty {
    width: 350px;
    padding: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.complete_text {
    background: #102b10;
    padding: 50px 20px 20px;
    text-align: center;
    color: #fff;
    width: 500px;
}

.complete_text > div:nth-of-type(1) {
    font-size: 1.6em;
    margin-bottom: 20px;
}

.complete_text > div:nth-of-type(3) {
    font-size: 0.8em;
    margin-top: 20px;
}

.complete_profile {
    padding: 20px 0;
    text-align: center;
    color: #fff;
    width: 500px;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:10px 10px;
}

.complete_profile > div {
    color: #333;
    background: #e8df6f;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* エラー画面 */
.error_content {
    padding: 30px;
}

.error_content .error_msg {
    width: 100%;
    max-width: 350px;
    background: #e86f6f;
    color: #fff;
    padding: 10px;
    margin-bottom: 60px;
    text-align: center;
    margin: 0 auto 60px;
}

.error_content img {
    width: 220px;
    margin: -50px;
    z-index: 500;
}

.error_text {
    background: #102b10;
    padding: 75px 20px 50px;
    text-align: center;
    color: #fff;
    width: 500px;
}

@media screen and (max-width: 749px) {

    .flex_dirc_column_for_sp {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    header .content {
        margin-top: 16px;
    }

    header .content::before {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 24px;
        padding-left: 40px;
    }

    h2 {
        font-size: 16px;
    }

    div#font_size_content {
        width: 280px;
        height: 150px;
        padding: 20px;
        top: 200px;
    }

    div#font_size_content > div:nth-of-type(3) {
        margin-top: 15px;
    }

    header .font_size_btn {
        width: 80px;
        font-size: 0.6em;
    }

    .back_btn,
    .next_btn,
    .info_back_btn,
    .send_btn {
        width: 116px;
    }

    .name_wrap {
        width: 100%;
    }

    .hyphen {
        padding: 5px 0px;
    }

    #info_area .info_title_wrap::before,
    ul[data-mode="Single"] .question::before {
        width: 60px;
        height: 60px;
        background-position: top 0 left 0;
    }

    ul[data-mode="Single"] .question::before {
        top: 12px;
    }

    #info_area .info_title_wrap::before {
        bottom: 20px;
    }

    #info_area .info_title,
    ul[data-mode="Single"] .question > div {
        padding: 18px 18px 22px 60px;
        font-size: 1em;
    }

    ul[data-mode="Multi"] .question,
    #info_area .question {
        padding: 18px;
        font-size: 1em;
    }

    .multiple_answers,
    .required {
        bottom: 2px;
        right: 10px;
        font-size: 0.8em;
    }

    .btn,
    .interview_list_wrap input[type="radio"] + label,
    .interview_list_wrap input[type="checkbox"] + label,
    .type_PictureCamera label {
         font-size: 1em;
    }

    .type_Single input[type="checkbox"] + label,
    .type_Multi input[type="checkbox"] + label {
        width: calc(50% - 5px);
    }

    #info_area input[type="radio"] + label,
    ul[data-mode="Single"] .type_Bool input[type="checkbox"] + label,
    ul[data-mode="Multi"] .type_Bool input[type="checkbox"] + label {
        width: 100%;
        margin-bottom: 5px;
        padding: 20px;
    }

    .type_Number input[id*="unit"] {
        height: 30px;
        margin-left: 5px;
    }

    .type_Number input[type="text"]:not([id*="unit"]) {
        width: 74%;
        height: 50px;
    }

    .type_Number .input_num {
        margin-top: 10px;
    }

    .input_num button {
        width:25%;
        height: 50px;
        font-size: 1.1em;
    }

    .type_Number .clear_btn {
        font-size: 0.9em;
    }

    .type_Scale .input_wrap, .type_NRS .input_wrap {
        padding: 60px 20px 80px;
    }

    .vas_text > div,
    .nrs_text > div,
    .vas_center_text,
    .nrs_center_text {
        font-size: 0.8em;
    }

    .type_Date input[type="text"] {
        height: 50px;
        font-size: 0.8em;
    }

    .type_TextEditor textarea {
        height: 150px;
    }

    .type_Calendar .ui-widget.ui-widget-content {
        width: 100%;
        margin: 0;
    }

    .type_Calendar .ui-datepicker-title {
        padding: 0;
    }

    .type_Calendar .ui-state-highlight,
    .type_Calendar .ui-state-default {
        padding: 4px;
        font-size: 1em;
    }
    .type_BodyPointing .input_wrap,
    .type_Pointing .input_wrap,
    .type_Sketch .input_wrap {
        display: block;
        padding-left: 40px;
        padding-right: 40px;
    }
    .canvas_wrap {
        width: calc(100vw - 100px);
        margin: 0 auto;
    }
    .type_BodyPointing .btn_content,
    .type_Pointing .btn_content,
    .type_Sketch .btn_content {
        margin: 30px 0 0;
        width: 100%;
    }
    .type_BodyPointing .btn_content > div,
    .type_Pointing .btn_content > div,
    .type_Sketch .btn_content > div {
        margin-bottom: 30px;
    }
    .type_BodyPointing .btn_content .btn:not(:last-child),
    .type_Pointing .btn_content .btn:not(:last-child),
    .type_Sketch .btn_content .btn:not(:last-child) {
        margin-bottom: 10px;
    }
    /* 確認画面 */
    .confirm_table thead {
        display: none;
    }

    .confirm_top_content > div {
        font-size: 1em;
    }

    .confirm_table .confirm_question {
        display: block;
        width: 100%;
        background-color: #102b10;
        color: #fff;
    }

    .confirm_table .confirm_answer {
        width: 33%;
        display: inline-block;
        width: calc(100% - 5.5em);
    }

    #info_area .confirm_table .confirm_answer {
        width: 100%;
    }

    .confirm_table .type_Scale .confirm_answer,
    .confirm_table .type_NRS .confirm_answer {
        padding-bottom: 60px;
    }

    .type_Scale .confirm_answer_inner,
    .type_NRS .confirm_answer_inner {
        width: auto;
    }

    .type_Scale .confirm_answer_inner {
        height: 60px;
    }

    .type_NRS .confirm_answer_inner {
        height: 90px;
    }

    .type_Scale .confirm_answer_inner .input_wrap,
    .type_NRS .confirm_answer_inner .input_wrap {
        min-width: auto;
        transform: initial;
        padding: 0 5px;
    }

    .confirm_answer_inner .nrs_text {
        margin-bottom: 20px;
    }
    .confirm_btn_wrap {
        display: inline-block;
    }

    /* 評価結果画面 */

    .hyouka_complete_wrap {
        min-height: calc(var(--inner-height) - 110px);
    }

    .hyouka_complete_content {
        min-height: calc(var(--inner-height) - 230px);
    }

    .hyouka_complete_top_content,
    .hyouka_complete_wrap .interview_list_footer {
        height: 60px;
    }

    .hyouka_complete_top_content {
        padding: 10px;
    }

    .hyouka {
        font-size: 1.3em;
    }

    .hyouka_text td {
        font-size: 0.8em;
    }

    /*完了画面*/
    .complete_name {
        margin-bottom: 50px;
        width: 250px;
    }

    .complete_text {
        width: 450px;
    }

    .complete_text > div:nth-of-type(1) {
        font-size: 1.2em;
    }
    .complete_text > div:nth-of-type(2) {
        font-size: 0.8em;
    }
    
    .complete_text > div:nth-of-type(3) {
        font-size: 0.6em;
    }

    .complete_profile {
        width: 450px;
    }

    .complete_profile > div {
        font-size: 0.8em;
    }

    .complete_content img {
        width: 150px;
        margin: -40px;
    }

    /* エラー画面 */
    .error_content .error_msg {
        margin-bottom: 50px;
    }

    .error_content img {
        width: 150px;
        margin: -40px;
    }

    .error_text > div {
        display: inline-block;
        text-align: left;
    }


}
