@charset "utf-8";
*{
	box-sizing: border-box;
}

/*-----------------------------------------------------------*/
/* update_complete */
/*-----------------------------------------------------------*/
.update_complete,
.update_fail{
	background: #f39700;
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	animation: updatealert 10s forwards;
}
.update_fail{
	background: #c50000;
}
@keyframes updatealert {
	70% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		display: none;
		opacity: 0;
	}
}

/*-----------------------------------------------------------*/
/* modal_wrapper */
/*-----------------------------------------------------------*/
.modal_wrapper{
	display: none;
	position: absolute;
	z-index: 300;
}
.modal_wrapper .inner{
	background: rgba(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 20;
}
.modal_wrapper .box_white{
	border-radius: 1rem;
	margin: 0 auto;
	overflow: auto;
	max-height: 100%;
	width: 30rem;
}
.modal_wrapper .title_B{
	margin-bottom: 2rem;
}
.modal_wrapper input[type=text],
.modal_wrapper input[type=password]{
	font-size: 1.2rem;
}
.modal_wrapper .btn_submit{
	margin-bottom: 1rem;
}
.modal_wrapper .btn_return{
	margin: auto;
}

/*-----------------------------------------------------------*/
/* cp_dashboard */
/*-----------------------------------------------------------*/
/* cp_dashboard_summary */
#cp_dashboard_summary .form_basic{
	display: flex;
}
#cp_dashboard_summary .form_basic select{
	background: #F4F4F4;
	border: none;
	margin: 0;
}
#cp_dashboard_summary .form_basic .t_wrapper{
	display: flex;
}
#cp_dashboard_summary .form_basic .t_wrapper label{
	background: #F4F4F4;
	border: none;
	font-weight: normal;
	margin: 0 0 0 0.75em;
	padding: 0.5em 1em 0.4em;
	width: fit-content;
	white-space: nowrap;
}
#cp_dashboard_summary .form_basic .t_wrapper input:checked + label{
	background: #F39702;
	color: #fff;
	font-weight: bold;
}
#cp_dashboard_summary .loader{
	margin: 15em auto;
}

/* total_wrapper */
.total_wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1;
	margin-top: 24px;
}
.total_wrapper dl{
	padding: 15px 20px 10px;
}
.total_wrapper .title{
	font-size: 20px;
}
.total_wrapper .title .link_arrow{
	font-size: 1rem;
}

/* result_number */
.result_number{
	width: 29.82625%;
}
.result_number .total{
	margin-top: 40px;
}
.result_number .total .num{
	font-size: 70px;
	line-height: 0.9;
	white-space: nowrap;
}
.result_number .total .num.digit_4{
	font-size: 60px;
}
.result_number .total .num.digit_5{
	font-size: 50px;
}
.result_number .total .unit{
	font-size: 29px;
}
.result_number .rate{
    border-spacing: 1em 0.3em;
    border-collapse: separate;
    margin: 1.5em auto 0;
    width: fit-content;
}
.result_number .rate .num{
	font-size: 24px;
	text-align: right;
	white-space: nowrap;
}

/* highrate_percent */
.highrete_percent{
	width: 26.9305%
}
.highrete_percent dd{
	padding-top: 5px;
	position: relative;
}
.highrete_percent #myPieChart{
	margin: 1em 7%;
	position: relative;
	z-index: 3;
}
.highrete_percent .text{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 1em;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
}
.highrete_percent .text .name{
	display: block;
	margin-bottom: 0.7em;
}
.highrete_percent .text .num{
	font-size: 46px;
	line-height: 0.8;
}
.highrete_percent .text .unit{
	font-size: 18px;
	margin-left: 0.2em;
}
.highrete_percent .star1 img,
.highrete_percent .star2 img{
	height: auto;
	width: 100%;
}
.highrete_percent .star1{
	animation: star1 2s infinite forwards;
	position: absolute;
	top: 0em;
	right: 5%;
	z-index: 1;
	width: 14.2%;
}
.highrete_percent .star2{
	animation: star2 2s infinite forwards;
	position: absolute;
	top: 15%;
	right: 0;
	z-index: 1;
	width: 7.8%;
}
@keyframes star1 {
	0%{
		opacity: 0;
		transform: scale(0) translate(-100%, 150%) rotate(-180deg);
	}
	20%{
		opacity: 1;
		transform: scale(1) translate(0, 0) rotate(0);
	}
}
@keyframes star2 {
	10%{
		opacity: 0;
		transform: scale(0) translate(-100%, 50%) rotate(-180deg);
	}
	30%{
		opacity: 1;
		transform: scale(1) translate(0, 0) rotate(0);
	}
}

/* recent_comments */
.total_wrapper dl.recent_comments{
	display: flex;
	flex-direction: column;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	width: 40.34749%;
}
.recent_comments .title{
	border-bottom: 1px solid #DDDDDD;
	flex: 0;
	padding: 0 20px 12px;
}
.recent_comments .text{
	flex: 1;
	padding: 0 !important;
	position: relative;
}
.recent_comments .text .inner{
	border-radius: 0 0 8px 8px;
	overflow: auto;
	position: absolute;
	height: 100%;
	width: 100%;
}

/* answer_dl */
.total_wrapper dl.answer_dl{
	line-height: 1.4;
	padding: 1em 20px;
}
.answer_dd{
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	margin-top: 0.5em;
}
.rate_good,
.rate_bad{
	background: url(../img/ic_good.svg) no-repeat center center;
	background-size: contain;
	display: inline-block;
	flex-shrink: 0;
	height: 24px;
	width: 24px;
	margin-right: 0.3em;
}
.rate_bad{
	background-image: url(../img/ic_bad.svg);
}

/* answer_graph */
.answer_graph{
	margin-top: 1.45%;
	width: 100%;
}

/* legend & graph_wrapper */
.legend ul{
	margin: 2em auto 0.5em;
	display: flex;
	justify-content: center;
}
.legend li{
	align-items: center;
	display: flex;
	font-size: 12px;
	margin: 0 1em;
}
.legend li:before{
	content: "";
	display: block;
	margin-right: 0.5em;
}
.legend .total:before{
	background: rgba(120, 120, 120, 0.4);
	border-radius: 50%;
	height: 0.7em;
	width: 0.7em;
}
.legend .high:before{
	background: rgba(243, 151, 2, 0.4);
	height: 0.8em;
	width: 2em;
}
.legend .low:before{
	background: rgba(74, 95, 214, 0.4);
	height: 0.8em;
	width: 2em;
}
.graph_wrapper{
	padding-bottom: 50%;
	position: relative;
	height: 0;
	width: 100%;
}
.graph_wrapper canvas{
	position: absolute;
	height: 100%;
	width: 100%;
}

/* cp_dashboard_google & cp_dashboard_tabelog*/
#cp_dashboard_google,
#cp_dashboard_tabelog{
	column-count: 2;
}
#cp_dashboard_google .title_A,
#cp_dashboard_tabelog .title_A{
	background: url(../img/logo_google.png) no-repeat left center;
	background-size: 38px 38px;
	margin-bottom: 0.9em;
	padding: 0 0 0 2em;
}
#cp_dashboard_tabelog .title_A{
	background-image: url(../img/logo_tabelog.png);
}

.review_num.flex_block{
	flex-wrap: wrap;
	justify-content: flex-start;
}

.icon_review{
	background: url(../img/ic_review.svg) no-repeat left center;
	background-size: 20px 18px;
	margin-left: 1em;
	padding: 0 0 0 30px;
}
.icon_bookmark{
	background: url(../img/ic_bookmark.svg) no-repeat left center;
	background-size: 13px 18px;
	margin-left: 1em;
	padding: 0 0 0 23px;
}

.review_average.flex_block{
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	line-height: 1;
}

.stars{
	margin: 0 0.5em 0 1em;
	position: relative;
	width: 164px;
}
.stars img{
	height: auto;
	width: 100%;
}
.stars .stars_mask{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
}
.stars .bar{
	background: #FFAA01;
	border: 1px solid transparent;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;	
	z-index: 2;
}
.stars .stars_bg{
	position: relative;
	z-index: 1;
}

.review_average .num{
	color: #E10000;
	font-size: 36px;
}

.review_average_start{
	margin-top: 0.5em;
}

.review_average_start .date{
	border: 1px solid #445561;
	border-radius: 3em;
	font-size: 14px;
	padding: 0.3em 1em;
}

.review_average_start .stars{
	width: 116px;
}

.review_average_start .num{
	font-size: 18px;
}

/* csvdownload */
/*
.csvdownload_dl {
	margin-top: 1rem;
}
.csvdownload_dl .csvdownload{
	background: #333;
	cursor: pointer;
}
.csvdownload_dl .csvdownload:hover{
	background: #666;
}
.csvloader{
	display: inline-block;
}
.csvloader > div{
	display: inline-block;
}
.csvloader .loader{
	margin: -15px -30px;
	transform: scale(0.5) translateY(-50%);
}
*/

/* cp_dashboard_faq */
/*
#cp_dashboard_faq .column_block + .column_block{
	margin-top: 1.5rem;
}
#cp_dashboard_faq .column_block a{
	border-top: 1px solid #DDDDDD;
	display: block;
	padding: 6px 0;
}
#cp_dashboard_faq .column_block li:last-child a{
	border-bottom: 1px solid #DDDDDD;
}
#cp_dashboard_faq .column_block a:hover{
	background: #F4F4F4;
	opacity: 1;
}
#cp_dashboard_faq .column_block .title{
	font-size: 18px;
	margin-bottom: 20px;
}
#cp_dashboard_faq .column_block .date{
	color: #A1A0A3;
	font-size: 80%;
	margin-left: 1em;
}
*/

/*-----------------------------------------------------------*/
/* cp_enquete */
/*-----------------------------------------------------------*/
.cp_create_enq{
	margin: 0 0 0 auto;
}
.cp_create_enq .btn_submit{
	margin-left: 10px;
}
.make_enquete_fromtpl_btn{
	position: relative;
}
.make_enquete_fromtpl_body .btn_submit{
}

/* status_btn */
.status_btn{
	background: #8D99A2;
	border-radius: 5rem;
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: bold;
	padding: 10px;
	text-align: center;
	width: 82px;
}
.status_btn.status_1{
	background: #25BF61;
}
.status_btn.status_limitover{
	background: #a00;
}
.status_btn:hover{
	opacity: 0.7;
}
.status_body{
	display: none;
    padding: 12px 0;
    position: absolute;
    width: 100px;
    left: -76px;
    bottom: 0;
    text-align: left;
    z-index: 2;
}
.status_body form{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.status_body form input[type=radio]{
	display: none;
}
.status_body form label{
	background: url(../img/ic_circle.svg) no-repeat left 10px center;
	background-size: 15px;
	padding-left: 30px;
	width: 100%;
}
.status_body form input[type=radio]:checked + label{
	background-image: url(../img/ic_circle_dot.svg);
}
.status_body form label:hover{
	background-color: #F4F4F4;
}
.status:hover .status_body{
	display: block;
}


/* qr */
.enquetelist_table .qr_btn{
	background: url(../img/ic_qr.svg) no-repeat center center;
	background-size: contain;
	cursor: pointer;
	display: block;
	height: 36px;
	width: 36px;
}

/* menu */
.enquetelist_table .menu{
	position: relative;
	width: 84px;
}
.enquetelist_table .menu_btn{
	background: url(../img/ic_menudott.svg) no-repeat center center;
	background-size: 21px 5px;
	border-radius: 50%;
	height: 36px;
	width: 36px;
}
.enquetelist_table .menu:hover .menu_btn{
	background-color: #F4F4F4;
}
.enquetelist_table .menu_body{
	display: none;
	padding: 12px 0;
	position: absolute;
	width: 100px;
	left: -76px;
	bottom: 0;
	text-align: left;
	z-index: 2;
}
.enquetelist_table .menu:hover .menu_body{
	display: block;
}
.enquetelist_table .menu .edit,
.enquetelist_table .menu .copy,
.enquetelist_table .menu .delete{
	border: none;
	padding: 5px 0 5px 44px;
	width: 100%;
	text-align: left;
}
.enquetelist_table .menu .edit:hover,
.enquetelist_table .menu .copy:hover,
.enquetelist_table .menu .delete:hover{
	background-color: #F4F4F4;

}
.enquetelist_table .menu .edit{
	background: url(../img/ic_edit.svg) no-repeat left 16px center;
	background-size: 16px 16px;
}
.enquetelist_table .menu .copy{
	background: url(../img/ic_copy.svg) no-repeat left 16px center;
	background-size: 18px 18px;
}
.enquetelist_table .menu .delete{
	background: url(../img/ic_delete.svg) no-repeat left 16px center;
	background-size: 14.86px 16.35px;
	color: #E81C5B;
}

/*-----------------------------------------------------------*/
/* cp_enquete_edit */
/*-----------------------------------------------------------*/

.couponID_block input[name=couponFlag]{
	display: inline-block;
	position: relative;
	visibility: visible;
}
.couponID_block label{
	display: flex;
	align-items: center;
}

/* input_dl */
.cp_makeform .input_dl{
	cursor: grab;
}
.cp_makeform .input_dl dl{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.cp_makeform .input_dl dt{
	padding: 3px;
	position: relative;
	width: 6em;
}
.cp_makeform .input_dl dd{
	display: flex;
	align-items: center;
	padding: 3px;
	position: relative;
	width: calc(100% - 6em);
}
.cp_makeform .input_dl .half{
	display: flex;
	align-items: center;
	padding-right: 2em;
	width: 50%;
}
.cp_makeform .enqueteInput_block{
	cursor: auto;
	margin: 3rem auto 2rem;
}
.cp_makeform .pageTitle_block input[type=text]{
	font-size: 1.5rem;
}

/* enqueteKeyword */
.cp_makeform .enqueteKeyword1_block.input_dl,
.cp_makeform .enqueteKeyword2_block.input_dl,
.cp_makeform .enqueteKeyword3_block.input_dl{
	margin: 1rem 0 1rem;
	width: 31%;
}
.cp_makeform .enqueteKeyword1_block.input_dl dl,
.cp_makeform .enqueteKeyword2_block.input_dl dl,
.cp_makeform .enqueteKeyword3_block.input_dl dl{
	display: block;
}
.cp_makeform .enqueteKeyword1_block.input_dl dt,
.cp_makeform .enqueteKeyword1_block.input_dl dd,
.cp_makeform .enqueteKeyword2_block.input_dl dt,
.cp_makeform .enqueteKeyword2_block.input_dl dd,
.cp_makeform .enqueteKeyword3_block.input_dl dt,
.cp_makeform .enqueteKeyword3_block.input_dl dd{
	width: 100% !important;
}

/* enquete */
.cp_makeform .input_dl.enqueteInput_block dt{
	width: 12em;
}
.cp_makeform .input_dl.enqueteInput_block dd{
	width: calc(100% - 12em);
}
.cp_makeform .input_dl.pageBGImage_block .dbimage_block,
.cp_makeform .input_dl.bannerImageURL_block .dbimage_block{
	position: relative;
	width: fit-content;
}
.cp_makeform .input_dl.pageBGImage_block dd,
.cp_makeform .input_dl.bannerImageURL_block dd{
	display: block;
	padding: 1%;
}
.cp_makeform .input_dl.pageBGImage_block dd input,
.cp_makeform .input_dl.bannerImageURL_block dd input{
	margin: 0;
}

/* group */
.cp_makeform .group{
	padding: 20px 0;
	position: relative;
	transition: all 0.3s ease-out;
}
.cp_makeform .group > .box_border{
	background: #fff;
	border-color: #999;
	border-width: 2px;
	cursor: grab;
	position: relative;
	transition: all 0.3s ease-out;
	z-index: 2;
}

/* item */
.cp_makeform .item{
	padding: 12px 0;
	transition: all 0.3s ease-out;
}
.cp_makeform .item .input_dl{
	background: #fff;
	padding-top: 40px;
	padding-bottom: 15px;
	position: relative;
}
.cp_makeform .item .input_dl .flex_block{
	flex-wrap: wrap;
}
.cp_makeform .item .input_dl .title{
	width: 100%;
}

/* sortnum */
.cp_makeform .group_sortnum,
.cp_makeform .item_sortnum{
	background: #666;
	color: #fff;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.8rem;
	padding: 0 0.3rem 0 0.1rem;
	position: absolute;
	top: -1px;
	left: -1px;
}
.cp_makeform .group_sortnum{
	top: -2px;
	left: -2px;
}
.cp_makeform .item_sortnum{
	background: #AAA;
	border-radius: 8px 0;
}
.cp_makeform .num{
	display: none;
	font-size: 0.9em;
	margin-right: 1em;
	padding-left: 0.9rem;
}

/* arrow */
.cp_makeform .arrow_up,
.cp_makeform .arrow_down{
	background: #888;
	cursor: pointer;
	font-size: 0.5rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 0.2rem;
	height: 1.2rem;
	width: 1.2rem;
}
.cp_makeform .item_sortnum .arrow_up,
.cp_makeform .item_sortnum .arrow_down{
	border-radius: 50%;	
}
.cp_makeform .arrow_up:hover,
.cp_makeform .arrow_down:hover{
	background: #f39700;
}

.groups .group:first-child .group_sortnum .arrow_up,
.groups .group:last-child .group_sortnum .arrow_down,
.groups .group:first-child .group_sortnum .arrow_up:hover,
.groups .group:last-child .group_sortnum .arrow_down:hover{
	background: transparent;
	color: transparent;
	cursor: auto;
}
.groups .group:first-child .item:first-child .item_sortnum .arrow_up,
.groups .group:last-child .item:last-child .item_sortnum .arrow_down,
.groups .group:first-child .item:first-child .item_sortnum .arrow_up:hover,
.groups .group:last-child .item:last-child .item_sortnum .arrow_down:hover{
	background: transparent;
	color: transparent;
	cursor: auto;
}

/* detail */
.cp_makeform .qItemName{
	width: 66% !important;
}
.cp_makeform .qItemName + select{
	width: 30%;
}
.cp_makeform .choices_block{
	background: #F4F4F4;
	display: flex;
	margin: 15px -25px;
	padding: 15px 25px;
	width: calc(100% + 50px);
}
.cp_makeform .choices_block.basic_choice dd{
	display: block;
}
.cp_makeform .choices_block.star_choice{
	justify-content: space-between;
}
.cp_makeform .item .input_select{
	background: url("../img/inputtype_text.svg") no-repeat left 16px center;
	background-size: 20px auto;
	padding-left: 44px;
}
.cp_makeform .item .input_select:disabled{
	background-color: #ccc;
}
.cp_makeform .item .input_select.set_textarea{
	background-image: url("../img/inputtype_textarea.svg");
}
.cp_makeform .item .input_select.set_radio{
	background-image: url("../img/inputtype_radio.svg");
}
.cp_makeform .item .input_select.set_checkbox{
	background-image: url("../img/inputtype_checkbox.svg");
}
.cp_makeform .item .input_select.set_star{
	background-image: url("../img/inputtype_star.svg");
}
.cp_makeform .input_star{
	width: 19%;
}
.cp_makeform .must_delete .toggle::after{
	content: "必須";
	margin-left: 0.5em;
}
.cp_makeform .btn_delete,
.cp_makeform .btn_groupdelete{
	border: 1px solid #E91B5B;
	border-radius: 8px;
	color: #E91B5B;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	height: 48px;
	width: 110px;
	transition: all 0.3s ease-out;
}
.cp_makeform .btn_delete:hover,
.cp_makeform .btn_groupdelete:hover{
	background: #E91B5B;
	color: #fff;
}
.cp_makeform .btn_groupdelete{
	margin: 1rem 0 0 auto;
	width: fit-content;
}

/* role */
.cp_makeform .role_rating .input_dl,
.cp_makeform .role_comment .input_dl{
	border-color: #f39700;
}
.cp_makeform .role_nickname .input_dl::before,
.cp_makeform .role_rating .input_dl::before,
.cp_makeform .role_comment .input_dl::before{
	background: #f39700;
	font-size: 0.8rem;
	font-weight: bold;
	line-height: 1.5rem;
	padding: 0 2rem;
	position: absolute;
	right: -1px;
	top: -1px;
}
.cp_makeform .role_nickname .input_dl::before{
	background: #aaa;
	color: #fff;
}
select[name=nickname_inputType]:disabled,
input[name=rating_inputType]:disabled,
select[name=comment_inputType]:disabled{
	background-color: #ccc;
	opacity: 1;
	
}
.cp_makeform .role_nickname .input_dl::before{
	content: "ニックネーム";
}
.cp_makeform .role_rating .input_dl::before{
	content: "総合評価（この項目は削除できません）";
}
.cp_makeform .role_comment .input_dl::before{
	content: "総合コメント（この項目は削除できません）";
}
.cp_makeform .role_rating .btn_delete,
.cp_makeform .role_comment .btn_delete{
	display: none;
}

/* plus */
.cp_makeform .plus,
.cp_makeform .plus_group{
	background: #152A3A;
	border-radius: 5rem;
	color: #fff;
	cursor: pointer;
	margin: 1rem auto 0;
	padding: 10px 30px;
	transition: 0.3s all;
	width: fit-content;
}
.cp_makeform .plus:hover,
.cp_makeform .plus_group:hover{
	background: #f39700;
}

/* displayNone */
.displayNone{
	display: none;
}

/* groupTitle */
.input_dl .groupTitle{
	margin-bottom:20px;
}
.input_dl .groupTitle dt{
	width: 100%;
}
.input_dl .groupTitle .title{
	font-size: 22px;
}
.input_dl .groupTitle dd{
	width: 100%;
}
.input_dl .groupTitle dd input{
	border-color: #999;
	font-size: 25px;
	font-weight: bold;
}

/* submit_btns */
.cp_enquete_edit .submit_btns,
.cp_coupon_edit .submit_btns{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
}
.cp_enquete_edit .submit_btns .btn_submit,
.cp_enquete_edit .submit_btns .btn_return,
.cp_coupon_edit .submit_btns .btn_submit,
.cp_coupon_edit .submit_btns .btn_return{
	margin:0 0 0 1em;
}
.cp_enquete_edit .submit_btns .btn_submit.btn_private,
.cp_coupon_edit .submit_btns .btn_submit.btn_private{
	background: #F4F4F4;
	color: #152A3A;
}

/* preview_btn */
.cp_enquete_edit .preview_btn,
.cp_coupon_edit .preview_btn{
	background: #fff;
	border: 0.2rem solid #ccc;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	height: 5rem;
	width: 5rem;
	transition: all 0.3s ease-out;
	z-index: 10;
}
.cp_enquete_edit .preview_btn:hover,
.cp_coupon_edit .preview_btn:hover{
	opacity: 0.7;
}
.cp_enquete_edit .preview_btn::before,
.cp_coupon_edit .preview_btn::before{
	background: #fff url(../img/ic_eye.svg) no-repeat center center;
	background-size: contain;
	content: "";
	height: 2.2rem;
	width: 3.5rem;
	margin-bottom: 0.1rem;
}

/* item_plusdata */
.item_plusdata{
	border-top: 1px solid #999;
	display: none;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
}
.role_comment .item_plusdata{
	display: block;
}

/*-----------------------------------------------------------*/
/* dragover */
.item.dragover,
.group.dragover{
	position: relative;
}
.item.dragover:not(.dragging):after,
.group.dragover:not(.dragging)::after{
	border: 3px dashed #333;
	border-radius: 10px;
	content: "";
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	left: 0;
	box-sizing: border-box;
}
.item.dragover.upside:not(.dragging),
.group.dragover.upside:not(.dragging){
	padding-top: 70px;
}
.item.dragover.downside:not(.dragging),
.group.dragover.downside:not(.dragging){
	padding-bottom: 70px;
}
.item.dragover.upside::after,
.group.dragover.upside::after{
	top: 7px;
}
.item.dragover.downside::after,
.group.dragover.downside::after{
	bottom: 7px;
}

.group.dragover::after{
	max-width: 840px;
	left: 50% !important;
	transform: translateX(-50%);
}

/* dragging */
.dragging{
	opacity: 0.1;
}

/*-----------------------------------------------------------*/
/* cp_coupon */
/*-----------------------------------------------------------*/
.cp_coupon .status_btn{
	width: 120px;
}
.cp_coupon .input_dl{
	margin: 2rem 0;
}

/* couponLimitFlag */
.cp_coupon #couponMakeForm dd{
	display: flex;
	align-items: center;
}
.cp_coupon #couponMakeForm input{
	margin-left: 1%;
	position: static;
	visibility: visible;
}
.cp_coupon #couponMakeForm input + label{
	border: none;
	padding: 0;
	width: fit-content;
}
.cp_coupon #couponMakeForm input + label:hover,
.cp_coupon #couponMakeForm input:checked + label{
	background: transparent;
	color: #333;
}
.cp_coupon #couponMakeForm #couponLimitFlag-1{
	margin-left: 3rem;
}
label[for=couponLimitFlag-1]{
	display: flex;
	align-items: center;
	white-space: nowrap;
}
input:not(:checked) + label[for=couponLimitFlag-1] input{
	color: #fff;
	pointer-events: none;
}

/* couponImage */
.couponImage_wrapper{
	display: flex;
	align-items: center;
}
.cp_coupon #couponMakeForm .couponImageOriginal_block dd{
	display: block;
}
.couponImage_wrapper .modal_btn{
	background: url(../img/ic_upload.svg) no-repeat center center;
	background-size: 1.5rem;
	border: 2px #333 dotted;
	border-radius: 1rem;
	cursor: pointer;
	margin: 1.5rem 0 0 3rem;
	height: 4rem;
	width: 4rem;
}
.couponImageURL_block label{
	margin: 1rem 1.5rem 1rem 0.5rem;
}

/*-----------------------------------------------------------*/
/* cp_contact */
/*-----------------------------------------------------------*/
.cp_contact .form_basic label{
	width: auto;
}
.cp_contact .item{
	margin-bottom: 20px;
}
.cp_contact .privacy_body{
	margin: 40px  auto 0;
	display: flex;
	position: relative;
	width: fit-content;
}
.cp_contact #privacy{
    visibility: visible;
    width: 20px;
    height: 20px;
	top: calc(50% - 10px);
	left: 15px;
    font-size: 20px;
}
.cp_contact .privacy_body label.input_privacy{
	padding-left: 40px;
	width: fit-content;
	white-space: nowrap;
}
.cp_contact .privacyformError{
	top: 2rem !important;
}

/*-----------------------------------------------------------*/
/* cp_contract */
/*-----------------------------------------------------------*/
.cp_contract .basic_table .btn_submit{
	font-size: 90%;
}


/*-----------------------------------------------------------*/
/* firstguide */
/*-----------------------------------------------------------*/
.firstguide{
	position: relative;
	z-index: 1;
}
.firstguide .mark{
	background: #152A3A;
	border-radius: 5em;
	color: #fff;
	font-size: 18px;
	margin-bottom: 0.5em;
	padding: 3px 20px;
	width: fit-content;
}
.firstguide .text{
	font-size: 32px;
	line-height: 1.375;
	letter-spacing: 0;
}

/* 1 */
#firstguide_1 .text{
	padding-right: 40%;
}
#firstguide_1 .btn_submit{
	margin: 1em auto 0 0;
	text-align: center;
	width: 48%;
}
#firstguide_1 .image{
	position: absolute;
	bottom: 0;
	right: 9.815%;
	width: 35.65%;
}
#firstguide_1 .logo{
	position: absolute;
	bottom: 18px;
	right: 1.5%;
	width: 7.4%;
}

/* 2 - 5 */
#firstguide_2,
#firstguide_3,
#firstguide_4,
#firstguide_5{
	border: 2px solid #666;
	position: absolute;
	top: calc(100% + 20px);
	right: -20px;
	width: 400px;
}
#firstguide_2::before,
#firstguide_3::before,
#firstguide_4::before,
#firstguide_5::before{
	border:20px solid transparent;
	border-bottom: 20px solid #666;
	content: "";
	position: absolute;
	height: 0;
	top: -40px;
	right: 80px;
}
#firstguide_2.firstguide .mark,
#firstguide_3.firstguide .mark,
#firstguide_4.firstguide .mark,
#firstguide_5.firstguide .mark{
	font-size: 16px;
}
#firstguide_2.firstguide .text,
#firstguide_3.firstguide .text,
#firstguide_4.firstguide .text,
#firstguide_5.firstguide .text{
	font-size: 16px;
}

/* 3 */
#firstguide_3::before{
	right: 90px;
}

/* 4 - 5 */
#firstguide_4,
#firstguide_5{
	top: auto;
	bottom: 5px;
	z-index: 1;
}
#firstguide_4{
	right: auto;
	left: -20px;
}
#firstguide_4::before,
#firstguide_5::before{
	border:20px solid transparent;
	border-top: 20px solid #666;
	top: auto;
	bottom: -40px;
}
#firstguide_4::before{
	right: auto;
	left: 40px;
}
#firstguide_5::before{
	right: 40px;
}

/*-----------------------------------------------------------*/
/* cp_analysis */
/*-----------------------------------------------------------*/
/* analysis_selects */
.analysis_selects{
	align-items: center;	
}
.analysis_selects dd{
	flex-grow: 1;
	padding: 0 2rem 0 1rem;
}
.analysis_selects dd:last-child{
	padding-right: 0;
}

/* analysiscount */
.analysiscount{
	overflow: auto;
}
.analysiscount .line{
	display: flex;
	margin-top: 2.5rem;
	min-width: 700px;
}
.analysiscount dl,
.analysiscount .blank{
	display: flex;
    flex-direction: column;
	width: 18%;
	margin-right: 2.5%;
	border-radius: 0.5rem;
	line-height: 1.2;
	padding: 0.2rem;
	position: relative;
	text-align: center;
}
.analysiscount dl.size2{
	width: 38.5%;
}
.analysiscount dl.size5{
	width: 100%;
}
.analysiscount .line :last-child{
	margin-right: 0;
}
.analysiscount dt{
	color: #fff;
	font-weight: bold;	
	flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
	min-height: 3.5rem;
	padding: 0.5rem;
}
.analysiscount dd{
	border-radius: 0 0 0.4rem 0.4rem;
	padding: 0.5rem;
	font-size: 2rem;
}
.analysiscount dd .ratio{
	font-size: 1.2rem;
}
.analysiscount dd .unit{
	font-size: 1rem;
}
.analysiscount .bg_blue{
	background: #36e;
}
.analysiscount .bg_blue dd{
	background: #cef;
}
.analysiscount .bg_red{
	background: #a00;
}
.analysiscount .bg_red dd{
	background: #fdd;
}
.analysiscount .bg_gray{
	background: #999;
}
.analysiscount .bg_gray dd{
	background: #e2e2e2;
}
.analysiscount .arrow_straight::before,
.analysiscount .arrow_slanting::before,
.analysiscount .border_center::before{
	background: #333;
	content: "";
	width: 2px;
	height: 2.5rem;
	position: absolute;
	top: -2.5rem;
	left: 50%;
}
.analysiscount .arrow_slanting::before{
	transform: rotate(-45deg);
	transform-origin: left bottom;
	top: calc(-2.5rem * 1.41421356);
	left: 0.5rem;
	height: calc(2.5rem * 1.41421356);
}
.analysiscount .border_center::before{
	height: calc(2.5rem + 100%);
}
.analysiscount .step1_d2 .border_center:first-child::before,
.analysiscount .step1_d3 .border_center:first-child::before{
		height: calc(5rem + 100%);
}
.analysiscount .step2 .arrow_straight:first-child::before{
	left: 76.62338%;
}

/* analysisdetail */
.analysisdetail th,
.analysisdetail td{
	border-bottom: 1px solid #ddd;
	font-size: 80%;
	line-height: 1.25;
	padding: 0.3em;
	text-align: center;
}
.analysisdetail th{
	width: 14%;
	white-space: nowrap;
}
.analysisdetail th:first-child{
	font-size: 70%;
	width: 16%;
}
.analysisdetail td{
}
.analysisdetail th:nth-child(2n),
.analysisdetail td:nth-child(2n){
	background: #F4F4F4;
}

/*-----------------------------------------------------------*/
/* cp_answerlist */
/*-----------------------------------------------------------*/
.cp_answerlist .load_wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 180px);;
	width: 100%;
}
.cp_answerlist .wrapper_m{
	box-sizing: border-box;
	width: 100%;
}
/* select */
.cp_answerlist .form_basic select {
    background: #F4F4F4;
    border: none;
    margin: 0;
}
.cp_answerlist .form_basic #summary_e{
    margin-bottom: 1em;
}

/* table */
.table_scroll{
	min-height: 400px;
	height: calc(100vh - 180px - 120px);
	overflow: auto;
}
.answerlist_table{
	font-size: 80%;
	line-height: 1.3;
}
.answerlist_table th,
.answerlist_table td{
	border-right: #eee 1px solid;
	padding: 0.5em 1em;
}
.answerlist_table th{
	background: #eee;
	min-width: 12em;
	position:sticky;
	top: 0;
	left: 0;
	z-index: 1;
}
.answerlist_table tr:nth-child(2n+1) td{
	background: #fafafa;
}
.answerlist_table .answeredTimestamp_td{
	font-size: 80%;
}
.answerlist_table th.delete_th{
	min-width: auto;
}
.answerlist_table .delete_td .btn_submit{
	background: #c00;
	font-size: 80%;
	padding: 0.5em 1em;
	white-space: nowrap;
}
.answerlist_table .delete_td .modal_wrapper p{
	font-size: 120%;
	line-height: 1.8;
}
.answerlist_table .delete_td .modal_wrapper .btn_submit{
	font-size: 150%;
	padding: 1em 2em;
}

/* filter_pager */
.cp_answerlist .filter_pager{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1em;
}
.cp_answerlist .filter_pager .modal_wrapper .box_white{
	width: fit-content;
    max-width: none;
}
.cp_answerlist .filter_pager select[name=p]{
	min-width: 5em;
	width: auto;
}
.cp_answerlist .filter_pager .btn_filter{
	background: #F4F4F4;
	color: #000;
	font-weight: normal;
	margin: 0 2em;
}
.cp_answerlist .filter .basic_table{
	font-size: 80%;
}
.cp_answerlist .filter .basic_table tr > *{
	padding: 0.5rem 1rem;
}
.cp_answerlist .filter_pager input[type=text]{
	font-size: 100%;
}
.cp_answerlist .filter_pager .csv{
	margin-left: 2em;
}

@media screen and (max-width: 900px) {
    .basic_table.answerlist_table  tr{
		display: table-row;
	}
	.basic_table.answerlist_table  th,
	.basic_table.answerlist_table  td {
        display: table-cell;
    }
}


/* ------------------------------------------------------------ */
/* 開発中のため非表示 */
.answerlist_table td.delete_td,
.answerlist_table th.delete_th{
	display: none;
}
/* ------------------------------------------------------------ */
