@charset "utf-8";
br.sp-br {
	display: none;
}
/* radioボタン */
input[type=radio] {
	display: none;	/* 標準スタイル */
}
.radio-label {
	position: relative;	/* ボックスの位置を指定する */
	padding: 0 0 0 45px;
	z-index: 10;
	cursor: pointer;
}
.radio-label:after, .radio-label:before {
	position: absolute;	/* ボックスの位置を指定する */
	content: "";	/* ボックスのコンテンツ */
	display: block;	/* ブロックレベル要素化する */
	top: 50%;	/* 上部から配置の基準位置を決める */
}
.radio-label:after {
	left: 15px;	/* 左から配置の基準位置を決める */
	margin-top: -10px;	/* チェック枠の位置 */
	width: 16px;	/* ボックスの横幅を指定する */
	height: 16px;	/* ボックスの高さを指定する */
	border: 2px solid #ccc;	/* ボックスの境界線を実線で指定する */
	border-radius: 50%;	/* ボックスの角丸を指定する */
}

.radio-label:before {
	left: 20px;	/* 左から配置の基準位置を決める */
	margin-top: -5px;	/* チェックマークの位置 */
	width: 10px;	/* ボックスの横幅を指定する */
	height: 10px;	/* ボックスの高さを指定する */
	background: #0156b1;/* ボックスの背景色を指定する */
	border-radius: 50%;	/* ボックスの角丸を指定する */
	opacity: 0;	/* 要素を透過指定する */
}
input[type=radio]:disabled + .radio-label:after {
	border: 2px solid #d7d7d3;
	background-color:rgba(235,235,228, 0.5);
}
input[type=radio]:disabled.conf-disabled + .radio-label:after {
	border: 2px solid #d7d7d3;
	background-color:transparent;
}
input[type=radio]:checked + .radio-label:before {
	opacity: 1;	/* 要素を表示する */
}
.radio-label:hover:after {
	border-color: #80868b;	/* ボックスの境界線を実線で指定する */
}

/* チェックボックス */
input[type=checkbox] {
	display: none;	/* checkboxを非表示にする */
}
.checkbox-label {
	cursor:pointer;
	position: relative;	/* ボックスの位置を指定する */
	padding: 0 0 0 42px;	/* ボックス内側の余白を指定する */
}
.checkbox-label:hover:after {
	border-color: #80868b;	/* ボックスの境界線を実線で指定する */
}
.checkbox-label:after, .checkbox-label:before{
	position: absolute;	/* ボックスの位置を指定する */
	content: "";	/* ボックスのコンテンツ */
	display: block;	/* ブロックレベル要素化する */
	top: 50%;	/* 上部から配置の基準位置を決める */
}
.checkbox-label:after {
	left: 13px;	/* 左から配置の基準位置を決める */
	margin-top: -10px;	/* チェック枠の位置 */
	width: 15px;	/* ボックスの横幅を指定する */
	height: 15px;	/* ボックスの高さを指定する */
	border: 2px solid #80868b;	/* ボックスの境界線を実線で指定する */
	border-radius: 1px;	/* ボックスの角丸を指定する */
}
.checkbox-label:before {
	left: 19px;	/* 左から配置の基準位置を決める */
	margin-top: -7px;	/* チェックマークの位置 */
	width: 5px;	/* ボックスの横幅を指定する */
	height: 9px;	/* ボックスの高さを指定する */
	border-right: 3px solid #0156b1;	/* 境界線（右）のスタイルを指定する */
	border-bottom: 3px solid #0156b1;	/* 境界線（下）のスタイルを指定する */
	transform: rotate(45deg);	/* 要素を回転させる */
	opacity: 0;	/* 要素を透過指定する */
}
input[type=checkbox]:disabled + .checkbox-label:after,
input[type=checkbox].edit-disabled + .checkbox-label:after {
	border: 2px solid #d7d7d3;
	background-color:rgba(235,235,228, 0.5);
}
input[type=checkbox]:checked + .checkbox-label:before {
	opacity: 1;	/* 要素を表示する */
}
#side{
	display:none;
}
#container{
	padding-right:0px;
	text-align:center;

}
#main{
	height:100%;

}
.pagetop{
	z-index: 2000;
}
#container{
	display:flex;
	flex-direction:column;
	/*min-height:-webkit-calc( 100vh - 110px );
	min-height:calc( 100vh - 110px );*/
}

.entry-box{
	padding-top:40px;
	text-align:center;
	padding-bottom:40px;

}

#entry-menu{
	width:60%;
	margin: 0 auto;
	max-width: 600px;
}
#entry-menu li{
	margin-bottom:20px;
}

#entry-menu li a{
	color: #202124;
	font-weight:500;
	text-decoration:none;
	background-color:#fff;

}
#entry-menu li a:hover{
	background-color:#f5f5f5;
}
#entry-menu a{
	display:block;
	height:100%;
	border-radius:5px;
	vertical-align:middle;
}

#entry-menu li{
	display:inline-block;
	width:100%;
	height:100px;
	position:relative;
	text-align:center;
	font-size:18px;
	border-radius:5px;
	color:black;
}
#entry-menu li dl{
	height:100%;
}
#entry-menu li dl dt{
	padding-top:25px;
	vertical-align:middle;
}
#entry-menu li dl dd{
	padding-top:12px;
	font-size:12px;
}

ul.menu-link{
	background-color:rgba( 255,255,255,0.7);
	display:block;
	width:60%;
	margin:0 auto;
}

ul.menu-link  li{
	display:inline-block;
	font-size:10px;
	padding:1em;
}
ul.menu-link.noback{
	background-color:transparent ;
}

footer{
	margin-top:auto;
}

footer .logo img{
	margin:0 auto;
	display:block;
	height:26px;
}


.contents-inner p.label{
	background-color: rgba(255, 255, 255, 0.7);
	padding-bottom: 0;
	/*font-size: 19px;*/
	margin-bottom: 20px;
	text-align: center;
}
.contents-inner li.label {
	margin-bottom: 20px;
	text-align: center;
}
.contents-inner li.label > p.label {
	padding: 0;
	margin: 0;
}
.contents-inner p.label.left, .contents-inner li.label.left {
	text-align: left;
}
.contents-inner div.message,
.contents-inner p.message {
	border: solid 1px #ffffff;
	font-weight:500;
	font-size: 13px;
	background: #ffffff;
	width: 80%;
	margin: 0 auto 0;
	/*padding: 5px 0;*/
}
.contents-inner .entry-form{
	width:80%;
	/*min-height:450px;*/
	/*background-color:rgba( 255,255,255,0.7);*/
	background: #fff;
	border-radius:5px;
	color:black;
	margin:0 auto;
	/* margin-top:30px; */
}
.entry-form{
	position:relative;
	padding:30px;
}
.w800-wrap .entry-form{
	padding: 0;
	width: 70%;
}
.entry-form p{
	/*font-size:12px;*/
	/*padding-bottom:20px;*/
}
.payments-bottom p{
	font-size:12px
}
.form-bottom{
	width:80%;
	position:absolute;
	bottom:0;
	margin: 40px auto;
	left:0;
	right:0;
}
.entry-form ul.form li{
	display:block;
	padding-bottom:5px;
	text-align:left;
	position:relative;
	vertical-align:middle;
}

.entry-form ul.form ul.csv_form{
    width: 100%;
    padding: 3px 0;
}
.entry-form ul.form ul.csv_form.dragging{
    background-color: #aed8e3;
    opacity: 0.5;
}
.entry-form ul.form ul.csv_form input.i3 {
    width: 38%;
}
.entry-form ul.form ul.csv_form span.extra_button_area{
    margin-left: 27px;
}
form .material-icons.i-list_drag{
    opacity: 0;
    cursor: default;
}

.entry-form ul li label{
	/*margin-right:10px;
	width:20%;
	float:left;
	line-height:2.5em;*/
	/*vertical-align: top;*/
	width: 16%;
	font-size: 12px;
	display: inline-block;
	color: #80868b;
	position: relative;
	/*top: 1rem;*/
	vertical-align: middle;
}

.entry-form ul li label.left{
	padding-left: 40px;
	position:unset;
	text-align: left;
}
.entry-form ul li span.req-area {
	display: inline-block;
	width: 10%;
	text-align: center;
	max-width: 45px;
	/*vertical-align: top;*/
	position: relative;
	/*top: 0.5rem;*/
	/*position: absolute;
	left: 0;*/
}

.entry-form ul li span.req-area span {
	display: none;
}
.entry-form ul li span.required span{
	background: #005ca2;
	display: inline-block;
	border-radius: 3px;
	padding: 5px;
	width: 80%;
	color: #fff;
	font-size: 10px;
	line-height: 1rem;
	letter-spacing: -0.5px;
}

.entry-form ul.form li div.form-input_line {
	display: inline-block;
	width: 82%;
	vertical-align: middle;
	/*min-height: 40px;
	line-height: 40px;*/
	/*padding-left: 7%;
	position: relative;*/
}
.entry-form ul li label input.i1{
	width: 100%;
}
.entry-form ul.form li.form-underline {
	border-bottom: solid 1px #80868b;
	margin: 20px 0 10px;
}
/*上部フォーム2columnレイアウト*/
/*右小さ目エリア*/
.entry-form.input.top ul.form:last-of-type{
	width: 30%;
	min-width: 380px;
}
.entry-form.input.top ul.form:last-of-type li label{
	width: 30%;
}
.entry-form.input.top ul.form:last-of-type div.form-input_line{
	width: 68%;
}
.entry-form.input.top ul.form:last-of-type .err_pos2{
	margin-left: 43%;
}
.entry-form.input.top ul.form:last-of-type input.i2,
.entry-form.input.top ul.form:last-of-type select.i2{
	width: 70%!important;
}
/*top共通*/
.entry-form.input.top ul{
	position: relative;
}
.entry-form.input.top ul li span.req-area{
	width: 30%;
}

/*left*/
.entry-form.input.top ul.left-form{
	width: 60%;
}
li.form-col2-l {
	width: 50%;
	display: inline-block!important;
	position: absolute!important;
	left: 0;
}
li.form-col2-r {
	width: 42%;
	display: inline-block!important;
	position: absolute!important;
	right: 0;
}
li.form-col2-l label{
	width: 32%!important;
}
li.form-col2-r label{
	width: 18%!important;
}
li.form-col2-l .form-input_line{
	width: 66%!important;
}
li.form-col2-r .form-input_line{
	width: 79%!important;
}
.entry-form.input.top ul.left-form .err_right{
	margin-left: 72%!important;
}
.entry-form.input.top ul.left-form input.i2,
.entry-form.input.top ul.left-form select.i2{
	width: 70%!important;
}

li.form-col2-r + li {
	margin-top: 40px;
}

li.form-col2-l + li {
	margin-top: 45px;
}

li.form-col2-l + li.form-col2-r {
	margin-top: 0!important;
}


/*電話番号横チェック*/
.horizontal_field_child + label {
	position: absolute;
	top: -35px;
	left: 360px;
}
.err_li + .horizontal_field_parent .horizontal_field_child + label {
	top: -68px;
}
.horizontal_field_parent{
	height: 0;
	margin: 0!important;
	padding: 0!important;
}
.has_helptext.horizontal_field_parent {
	height: 25px;
}
.horizontal_field_parent.has_helptext .help_text {
	position: absolute;
	top: -5px;
	margin-left: 5.6%!important;
}
.has_helptext + .horizontal_field_parent .horizontal_field_child + label {
	position: absolute;
	top: -64px;
	left: 560px;
}
.has_helptext + .err_li + .horizontal_field_parent .horizontal_field_child + label {
	top: -86px;
}
label.v-a-top + .form-input_line {
	vertical-align: top;
}
/*微調整*/
label.v-a-top + .form-input_line .questionnaire-check {
	margin-top: -0.2em;
}
.form-input_line .disabled-always + .btn {
	margin: 0;
}

/*会員情報特殊見出し*/
li.label_field label {
	border-bottom: solid 1px #80868b!important;
	font-size: 14px!important;
	color: #202124!important;
	width: 100%!important;
}
#contents li.label_field p.help_text{
	margin-left: 0!important;
}
/*検索欄*/
#side-menu li.form-underline {
	font-size: 12px;
	margin-top: 20px;
	padding-bottom: 5px;
}

.entry-form select, .result-info-area select {
	display:inline;
	height:2.5em;
	font-size: 1em;
	padding: 0.4em 1.7em 0.4em 0.8em;
	width: 61%;
	border-radius:0px;
	border: 2px solid #80868b;
}

/*ie*/
@media screen and (-ms-high-contrast: none) {
	.entry-form  select{
		padding: 0.4em 0.5em 0.4em 0.8em;
	}
}

.entry-form  input[type=text],
.entry-form  input[type=password],
.entry-form  textarea
{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: none;
	border: 2px solid #80868b;
	border-radius: 0;
	color: inherit;
	/*font-family: inherit;*/
	font-size: 1em;
	padding: 0.4em 0.8em;
}

.entry-form  input:focus {
	border: 2px solid #80868b;
	box-shadow: none;
	outline: none;
}

.entry-form textarea.normal{
	width: 89%;
	/*max-width:550px;
	height:150px;
	resize: vertical;*/
}
.entry-form textarea.i1{
	/*width:450px;*/
	width: 61%;
	height:150px;
	resize: vertical;
}
#contents.w800-wrap .entry-form textarea.i1 {
    width: 87%;
}
.entry-form textarea.reject_comment {
    width: 89%;
}
.entry-form input.split-tel {
	/*width: 7em;*/
	width: 19%;
}

.entry-form input.i1{
	/*width:450px;*/
	width: 61%;
}
.entry-form input.i2,
.entry-form select.i2{
	width: 30%!important;
	margin-right: 1%;
}
.entry-form input.i2:last-of-type,
.entry-form select.i2:last-of-type{
	margin-right: 0;
}
.entry-form input.i3{
	width:213px;
}

.entry-form select.i3 {
	width: 100px;
	margin-right: 8px;
}
.form.login input.i1{
	width:400px;
}
.entry-form input.i4{
	width:111px;
}
.entry-form input.i4_2{
	width:333px;
}
.entry-form select.i4{
	width:111px;
}
.entry-form select.i4_2{
	width:333px;
}
.entry-form input.split-date{
	width:140px;
	margin-right: 5px;
}
.entry-form input.split-time{
	width:90px;
}
.entry-form .drop_zone.big{
	width:720px;
}
.entry-form .drop_zone.normal{
	width: 545px;
}
.entry-form .drop_zone.normal2 {
	width: 450px;
}
.entry-form .drop_zone.drop_zone_conf{
	height:250px;
}
.entry-form .drop_zone_conf .upload_preview_conf {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}


p.i2 {
	width: 222px;
}
.prewarn {
	border: 1px solid #80868b;
	margin: 1em;
	padding: 1em;
}

/* timepicker */
.ui-timepicker-wrapper{
	width: 90px;
}
.ui-timepicker-list li{
	font-size: 16px;
	padding: 0.4em 0.8em;
}

.error {
	position: absolute;
	top: -2.0em;
	right: 0;
	padding: .5em 1em .4em;
	background-color: #f66;
	border: 1px solid #f00;
	border-radius: 5px;
	color: #fff;
}
.error:after,
.error:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 15px;
	border: solid transparent;
}
.error:after {
	margin-left: 1px;
	border-top-color: #f66;
	border-width: 7px;
}
.error:before {
	border-top-color: #f00;
	border-width: 8px;
}
/*ご登録情報の見出し*/
.entry-form li>p.label{
	font-weight:500;
	font-size: 18px;
}

p.strong{
	word-break : break-all;
	font-size:20px;
	font-weight:500;
	margin-top:40px;
}


ul.subinfo{
	font-size:12px;
	margin:0 auto;
}
ul.subinfo li{
	width:80%;
	list-style-type: square;
	text-align:left;
}
.form.login{
	width:80%;
	margin:0 auto;
}
.form.login label,
.form.input label
{
	width:120px;
}
select.i1,
.form.login .i1,
.form.input .i1
{
	display:inline-block;
}
p.modal-title{
	font-size:22px;
	font-weight:500;
	margin:0 auto;
	text-align:center;
}
.entry-form.input .form-bottom{
	position:relative !important;
}

#drop_zone, .drop_zone{
	text-align:center;
	font-size:18px;
	display:inline-block;
	/*background-color:#cccccc;*/
	padding:10px;
	width: 880px;
	min-height: auto;
}

.drop_zone .drop_in i{
	color: #f5f5f5;
	font-size:72px;
	margin-top: 0;
}
#drop_zone, .drop_zone,
.entry-form #drop_zone,
.entry-form .drop_zone,
.entry-form .drop_zone.big,
.entry-form .drop_zone.normal,
.entry-form .drop_zone.normal2 {
	width: 320px!important;
	vertical-align: top;
	color: #f5f5f5;
	background: #747578;
}
.entry-form .drop_zone,
.entry-form .drop_zone.normal2 {
	width: 89%;
}

.drop_zone input[type="hidden"] ~ .drop_in{
	display: block;
}
.drop_zone input[type="hidden"][value] ~ .drop_in{
	display: none;
}
.drop_zone input[type="hidden"] ~ .drop_out{
	display: none;
}
.drop_zone input[type="hidden"][value] ~ .drop_out{
	display: block;
}
.drop_zone .drop_out{
	position: relative;
}
.drop_zone .drop_out i{
	color: red;
	font-size: 32px;
	position: absolute;
	top: 0;
	right: 0;
	transition: all .3s;
}
.drop_zone .drop_out:hover i{
	opacity: 1;
}
.drop_zone .drop_out img{
	max-width: 100%;
	filter: grayscale(0);
	transition: all .3s;
}
.drop_zone .drop_out:hover img{
	opacity: 0.8;
	filter: grayscale(60%);
}
.drop_zone .drop_out object{
	max-width: 100%;
	filter: grayscale(0);
	transition: all .3s;
}
.drop_zone .drop_out:hover object{
	opacity: 0.8;
	filter: grayscale(60%);
}

td.left{
	text-align:left !important;
}
td.center{
	text-align:center !important;
}
td.right{
	text-align:right !important;
	white-space:nowrap;
}

.checkbox-label,
.radio-label
{
	width:auto !important;
	vertical-align: middle!important;
}
p.red{
	color:red;
}
.input .label{
	padding:5px 15px;
	margin-bottom:10px;
}
.ref{
	display:inline-block;
	font-size: 1em !important;
	padding-bottom:0px !important;
	padding: 0.4em 0.8em !important;
}
select.ref {
	-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
	-moz-appearance: none;	/* ベンダープレフィックス(Firefox用) */
	appearance: none;	/* 標準のスタイルを無効にする */
}
select.ref:disabled{
	color: #202124;
}
select:disabled::-ms-expand,
select:disabled::-ms-value {
	/* select要素のデザインを無効にする（IE用） */
	display: none;
	color: #202124;
}
.pagetop{
	width: 70px;
	height: 70px;
	background-color: #0156b1;
	position: fixed;
	bottom: 70px;
	right: 70px;
	cursor:pointer;
}
.pagetop:hover{
	opacity: .8;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.pagetop p{
	position: absolute;
	top: 40%;
	left: 30%;
	margin: 0;
	width: 25px;
	height: 25px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(-45deg);
}
input[type=checkbox]:disabled,
input[type=checkbox].edit-disabled,
input[type=radio]:disabled,
input[type=radio].edit-disabled,
.checkbox-label.disabled,
.radio-label.disabled{
	cursor:default !important;
}
.checkbox-label.disabled:after,
.radio-label.disabled:after{
	border-style:none !important;
}

#menu{
	background-color:#ffffff;
}

span.red{
	font-size:12px; color:red;
}
input:-ms-input-placeholder{
	color:#999;
}
input::-ms-input-placeholder{
	color:#999;
}
input::placeholder
{
	color:#999;
}
.attension{
	height:2.5em;
	line-height:2.5em;
	background-color:#ffff55;
	color:red;
	font-size:1.5em;
	vertical-align:middle;
}
.block{
	background-color:rgba( 255,255,255,1);
}
.col2>.info{
	background-color:#ffffff;
	text-align:left;
	padding-bottom: 25px;
}

.info>p{
	font-weight:500;
	/*padding:15px 15px;*/
	padding-bottom:20px;
}
.info-box{
	overflow: hidden;
	width: 90%;
	/* height: 200px; */
	background-color: #ffffff;
	position: relative;
	display: block !important;
	vertical-align: top;
	margin: 0 auto 20px;
	padding: 0;
}
.info-box>.category{
	position:absolute;
	right:0;
}
.info-box>img{
	padding:0px;
	margin:0px;
	padding-left:20px;
}
.info-box .inner{
	vertical-align:top;
	position:relative;
	margin:0px;
	display:inline-block;
	padding:0px;
	padding-left:15px;
}
.info-box .date,
.info-box .team,
.info-box .theme{
	font-size:12px;
}
.info-box .date,.info-box .team {
	/*display: inline;*/
	display: block;
}
.info-box .team {
	/*margin-left: 10px;*/
	display: block;
	margin-top: 5px;
	line-height: 0.8rem!important;
	max-height: 1.3rem;
	overflow: hidden;
}
.info-box .title {
	word-break: break-all;
	margin: 20px auto 5px;
	font-size: 16px;
	font-weight: 500;
	text-overflow: ellipsis;
	line-height: unset!important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.info-box .detail {
	word-break: break-all;
	font-size: 14px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	line-height: 1.4 !important;
	overflow: hidden;
}
.col2 > div:nth-child(2){
	border-style:none;
	width: calc(24.3% + 60px);
}
.settlement-info{
	background-color:#ffffff;
	text-align:left;
	margin-bottom:20px;
	padding-bottom: 30px;
	padding: 30px;
}
.settlement-info .title{
	font-weight:500;
	margin: 0 auto;
}
.settlement-info .upd {
	margin: 0 auto;
}
.joined-events .title{
	font-weight:500;
	padding: 30px 0 0 0;
	margin: 0 auto;
}
.joined-events a{
	text-decoration: none;
}

.joined-events .event-box{
	color: #202124;
	margin: 0 auto;
}
.joined-events .event-box ul{
	padding: 0 10px 5px;
}
.joined-events .event-box:first-of-type{
	margin-top: 20px;
}
.joined-events .event-box .thumbnail-wrap {
	overflow: hidden;
	position: relative;
	margin: 0 auto;
}
.joined-events .event-box .thumbnail-wrap .thumbnail {
	height: 0;
	padding-top: 75.3%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-color: #eaedf7;
}
.joined-events .price-badge{
	padding: 0 10px;
}

.joined-lms{
	margin-top: 20px;
}

.settlement-info li label{
	float:left;
	width:30%;
	line-height: 1.8;
}
.settlement-info li span.s{
	font-size:0.5rem;
	padding:0 2px;
}
.settlement-info li .btn{
	min-width:60px;
	margin-left:10px;
}

.settlement-info li p{
	display:block;
	text-align:right;
	font-weight:500;
}
.settlement-info .last_settlement{
	text-align:left;
	font-weight:300;
	margin-bottom:10px;
	margin-top:10px;
	padding-top:10px;
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#dadce0;
	font-size: 16px;
}
.joined-events{
	background-color:#ffffff;
	text-align:left;
	padding: 0 30px 30px;
}
.joined-events .image {
	background-color: #d3d3d3;
}
.joined-events .image > .no-image {
	width: 276px;
	height: 155px;
	color: #fff;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.event-box{
	text-align:left;
	margin:10px;
	/*border: 1px solid #80868b;*/
}
.event-box.applied {
	border: 1px solid #80868b;
}
.event-box ul{
	padding: 0 20px 20px;
}
.event-box>img{
	width:100%;
}
.event-box p{
	font-size:0.8rem;
	margin-left:0;
}
.event-box p.home{
	margin-left:0;
}
/* .admin.col2{
	padding:30px;
} */
.event-list-area .event_subcategory, .joined-events .event-box .event_subcategory {
	font-size: 12px;
	text-align: left;
	background: #9cd1f9;
	background-color: rgba(0, 0, 0, 0.3);
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	padding: 0 10px;
	width: 100%;
	z-index: 1;
	height: 27px;
	line-height: 27px!important;
}
/*.event-box .event_subcategory.cat2{
	background: #8adca8;
}
.event-box .event_subcategory.cat3{
	background: #f1e58a;
}
.event-box .event_subcategory.cat4{
	background: #ddd;
}*/
.admin.col2 .info{
	padding:30px;
	line-height: 2em;
	position: relative;
}
.breamcrumb{
	display:block;
	width:100%;
	text-align:left;
}
.breadcrumb:after{
	display:block;
	content:"";
	clear:both;
}
.breamcrumb li{
	display:inline-block;
	font-size:0.9rem;
}
.breamcrumb li:not(:last-child):after{
	content:" >"
}
.user_type_ul{
	display: block;
	width: 100%;
	text-align: left;
	margin-top: 15px;
}
.user_type_ul li{
	display: inline-block;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}
.user_type_ul li a{
	text-decoration: none;
}
.col1{
	display:block;
	padding:30px 0;
	text-align:left;
	/*width:980px;*/
	max-width: 1280px;
	margin:0 auto;
	position:relative ;
}
.result-info-area {
	margin: 30px auto 0;
}
.result-info-area .search-result select {
	width: 15rem;
	margin-left: 2rem;
}
.result-info-area .search-result .search-txt {
	display: inline-block;
	width: 10rem;
}
.search-result {
	display:table;
	border-collapse:collapse;
	min-width:100%;
	width:100%;
}
.search-result .btn {
	min-width: 4rem;
	margin-left: 1%;
}
.search-result th{
	vertical-align:middle;
	text-align:center;
}
.search-result th.th-catogory {
	width: 10rem;
}
.search-result th.th-organization {
	width: 12rem;
}
.search-result th.period_datetime {
	width: 12rem;
}
.search-result th.th-datetime {
	width: 10rem;
}
.search-result th.th-event_status {
	width: 7rem;
}
.search-result th.th-icon {
	width: 4rem;
}
.search-result th.is_onoff {
	width: 105px;
}
.search-result .th-user_number {
	width: 6rem;
}
.search-result .th-full_name {
	min-width: 10rem;
}
.search-result .th-organization {
	min-width: 10rem;
}
.search-result .th-membership_category {
	min-width: 7rem;
}
.search-result .th-membership_status {
	width: 7rem;
}
.search-result .th-charge_status {
	width: 6rem;
}
.search-result .th-date {
	width: 7rem;
}
.search-result .th-date_jp {
	width: 9rem;
}
.search-result .th-datetime {
	width: 10rem;
}
.search-result .th-icon, .search-result .th-app_icon {
	width: 4rem;
}
.search-result .th-price, .search-result .th-layer_price {
	width: 7rem;
}
.search-result thead .sort,
.search-result a.icon  {
	color: #8e8e8e;
}
.search-result thead .sort.search_on,
.search-result a.icon.on {
	color: #0e79dd;
}
.search-result a.icon-report_problem, .search-result i.icon-report_problem,
.search-result a.icon-warning, .search-result i.icon-warning {
	/* 中止 */
	color: #dc2a00;
}
.search-result a.icon-visibility_off, .search-result i.icon-visibility_off {
	/* 非公開 */
	color: #8e8e8e;
}
.search-result a.icon-timer, .search-result i.icon-timer {
	/* 公開前 */
	color: #094a86;
}
.search-result a.icon-visibility, .search-result i.icon-visibility {
	/* 公開中 */
	color: #0e79dd;
}
.search-result a.icon-timer_off, .search-result i.icon-timer_off {
	/* 公開後 */
	color: #8e8e8e;
}
.search-result a.icon-link_off, .search-result i.icon-link_off {
	/* 連携解除 */
	color: #82622b;
}

.search-result i.material-icons.i-rm_edit.disabled {
	/* 判定 */
    color: #8e8e8e;
}

.search-result th,
.search-result td
{
	padding:5px 15px;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
}
.search-result td.disabled
{
	background-color: #ececec;
}
.search-result.rowspan tbody:hover tr{
	background-color:#aed8e3;
	cursor:pointer;
}
.search-result tbody tr:hover {
	background-color:#aed8e3;
	cursor:pointer;
}
.search-result.nohover tbody tr:hover {
	background-color:inherit;
	cursor:inherit;
}
.search-result tr.total{
	border-top-style:solid;
	border-top-width:2px;
	border-top-color:#80868b;
	background-color:#feffaa;
}
.search-result td.accept {
	background-color:#b3f2ff;
}
.search-result td.applyied, .search-result td.approving {
	background-color:#ffbd3d;
}
.search-result td.reject {
	background-color:#cccccc;
}
.search-result td form {
	display: inline-block;
}
.search-result td.break {
	word-break: break-word;
}

.event-box.upd,
.event-box.new,
ul.upd,
ul.new
{
	display:none;
}
p.nosettlement{
	display:block;
	font-size:0.8rem !important;
	font-weight:300 !important;
	text-align:center !important;
	padding:20px 0px;
	padding-bottom:50px;
	margin:0 auto;
}
.event-box.new{
	height:200px;
	border-style:none;
}
.event-box.new p{
	font-size:0.8rem !important;
	display:block;
	width:100%;
	text-align:center;
	padding:40px 0px;
}
.right_button{
	display:inline-block;
	right:10px;
	top:0px;
	position:absolute;
}
label.left{
	position:relative;
}
.btn.red.small{
	width: auto !important;
	min-width: 0px;
	margin: 0;
	background: #0e79dd;
	box-sizing: border-box;
	font-size: 11px;
}
.btn.clipcopy, .btn.auto_increment {
	min-width: 0px;
	width: 70px;
}
nav li{
	position:relative;
}

.radio-label:after{
	border:2px solid #80868b ;
}
li.center{
	text-align:center !important;
}
.label.large{
	font-size:19px;
	padding: 0;
}

a.btn.disabled {
	background-color:gray!important;
	opacity:0.5;
}
a.disabled button{
	background-color:gray!important;
	opacity:0.5;
}
button.disabled{
	background-color:gray!important;
	opacity:0.5;
}
.amount_table{
	border-collapse:collapse;
	margin:0 auto;
	width:80%;
}
.amount_table th,
.amount_table td
{
	padding:5px 15px;
	/*font-size:0.8rem;*/
	vertical-align:middle;
	min-width: 120px;
}
span.right{
	position:absolute;
	right:10px;
}
.amount_table p.total{
	margin-top:20px;
	position:relative;
	font-weight:500;
}
tr.total{
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:#80868b;
}

ul.info{
	width:70%;
	display:block;
	margin:0 auto;
	font-size:0.7rem;
}
span.label.s{
	font-size:0.8rem;
}
button.btn.transparent{
	border-color:#80868b;
	color: #202124;
	border-style:solid;
	border-width:1px;
	background-color:transparent;
}
.sttype.selected{
	background-color:rgba( 250 , 250 , 111 , 0.5) !important;
}
.mail_checked {
	display:inline;
	font-size: 16px;
}
.mail-limit{
	font-size:0.9rem;
}
.mail-count{
	font-size:1.2rem;
	font-weight:500;
}
.search-count{
	font-size:1.2rem;
	font-weight:500;
}
.table-control{
	display:table;
	width:100%;
}
.table-control li.pages{
	display:table-cell;
}
.table-control li.perpage{
	text-align:right;
	display:table-cell;
	padding-bottom:20px;
}
.admin-right.active {
	margin-left:160px !important;
	width:-webkit-calc( 100% - 160px) !important;
	width:calc( 100% - 160px) !important;
}
table{
	transition:margin-left 0.2s;
}
.admin-right{
	transition:margin-left 0.2s;
	max-width:100% !important;
}

.search-result th{
	background-color:#ececec;
}
.search-result th,
.search-result td
{
	height:1.5rem;
}
.search-result th div{
	position:relative;
}
th i{
	position:absolute;
	right:-13px;
	top:-5px;
}
p.result-count{
	font-size:0.9rem;
}
.result-count select{
	width:100px;
	margin-left:20px;
}
tr.selected{
	background-color:#bfe9f4;
}
div.personal{
	width:1000px;
	position:relative;
	vertical-align:top;
	display:table;
	clear:both;
	margin:0px;
	padding:0px;
}
div.person>ul.form{
	display:table-cell;
}
div.personal ul label{
	width:150px;
	font-size:14px;

}
div.personal ul{
	width:50%;
	padding-right:20px;
}
.clearfix { content:""; clear:both; display:block;}

div.personal label{
}
.personal.entry-form.input{
	display:block;
}
.personal.entry-form.input ul.form{
	min-width:640px;
	/*float:left;*/
	display:inline-block;

}
.personal.entry-form.input ul {
	vertical-align:top;
}
.personal.entry-form.input ul:nth-child(2) {
	min-width:330px;
	width:330px;
	padding:0px;
}
.personal.entry-form.input ul:nth-child(2) label{
	width:80px;
}
.personal_detail{
	margin-top:10px;
	border: 1px solid #80868b;
	display:block;
	/*width:1001px;*/
	width:100%;

}
.personal_detail ul.tabs {
	display:table;
	/*width:1000px;*/
	width:100%;
}
/*IE用*/
input[type=text]:disabled{
	cursor:default !important;
	border: 1px solid #d7d7d3!important;
	color: #999!important;
	background-color: #ebebe4!important;
}
select:disabled {
	cursor: default !important;
	border: 1px solid #d7d7d3!important;
	color: #999!important;
	background-color: #ebebe4!important;
}
div.disabled,
input[type=text]:disabled,
input[type=password]:disabled,
textarea:disabled,
textarea:read-only,
input:read-only,
select:disabled{
	cursor:default !important;
	border: 1px solid #d7d7d3!important;
	color: #999!important;
	-webkit-text-fill-color: #999!important;
	background-color: #ebebe4!important;
}
input::placeholder,
select::placeholder{
	color: #999;
}
/* IE */
input:-ms-input-placeholder,
select:-ms-input-placeholder{
	color: #999;
}
/* Edge */
input::-ms-input-placeholder,
select::-ms-input-placeholder{
	color: #999;
}
.conf-disabled{
	background-color:transparent !important;
	color:#000 !important;
}
.edit-disabled{
	cursor:default !important;
	background-color:#f5f5f5;
}
.personal_detail ul.tabs li{
	display:table-cell;
	width:200px;
	text-align:center;
	vertical-align:middle;
	background-color:#f5f5f5;
	cursor:pointer;
}
.personal_detail ul.tabs li:nth-child(n+2){
	padding:10px;
	border-left-style:solid;
	border-left-color:#80868b;
	border-left-width:1px;
}
.personal_detail ul.tabs li:last-child{
	width:200px;
	border-right-style:solid;
	border-right-color:#80868b;
	border-right-width:0px;
}

.personal_detail ul.tabs li.current{
	background-color:#ffffff;
	cursor:default;
}
.personal.entry-form{
	padding-top:0px !important;
}
.personal_detail .tab{
	display:none;
}
.personal_detail .tab.current{
	display:block;
}

.sub_table td{
	padding:0 5px;
}
.add_comp{
	cursor:pointer;
}
.agency{
	display:none;
	position:relative;
	height:52px;
	background-color:#9933aa;
	font-size:1.0rem;
	line-height:52px;
	vertical-align:middle;
	color:white;
	text-align:right;
}
.agency-close{
	position:absolute;
	top:7px;
	left:10px;
}
.agency i{
	color:#0e79dd;
	font-size:34px;
	opacity:1;
}
.agency-close i{
	color:#ffffff;
	cursor:pointer;
}
.agency span{
	margin-right:10px;
}


.agency-login{
	position:absolute;
	right:0px;
	top:20px;
}
.search-form{
	padding:10px 5px 10px 20px;
	text-align:left;
}
.search-form div:first-of-type {
	padding-right: 15px;
	padding-bottom: 30px;
	max-height: calc(100vh - 200px)!important;
	scrollbar-width: none;
}
.search-form div:first-of-type::-webkit-scrollbar {
	display:none;
}
.search-form label{
	display:block;
	font-size:0.8rem;
	margin-top:15px;
	color:#555;
}
.search-form .inline_checkbox label {
	display: inline-block;
}
.search-form input[type=text],
.search-form select{
	font-size:0.9rem;
	padding:2px;
	line-height:1.3rem;
	width:100%;
	margin-top:5px;
	border: 1px solid rgba(0,0,0,0.16);
}
.search-form select{
	height:28px;
}
.search-form .split-tel{
	width: 30%!important;
}
.search-form h2{
	padding:10px 0px;
	font-size:20px;
	display:inline-flex;
	vertical-align:middle;
	line-height:32px;
	text-align:left;
}
.search-form h2 i{
	font-size:32px;
	margin-right:10px;
}

.search-form .i2{
	width:50% !important;
}
.search-form .i3{
	width:45% !important;
}
.btn.search{
	display:inline-flex;
	font-size:1rem;
	line-height:1.0rem;
	font-weight:300;
	text-align:center !important;
	padding:10px 10px;
	margin:0 auto;
}
.btn.search p{
	margin:0 auto;
}
.btn.search i{
	font-size:1rem;
	color:#ffffff;
	opacity:1;
	margin-right:5px;
}
.search-form .btn-area{
	width: 100%;
    padding: 15px;
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    background: #fff;
    border-top: solid 1px #80868b;
}
.search-form label[for="id_search-paginate"],
.search-form label[for="id_paginate"],
.search-form select[name="search-paginate"],
.search-form select[name="paginate"]{
	display: none;
}
.search-form .inline_checkbox {
	padding-bottom: 10px;
}
/*単体チェックボックス*/
.search-form .new-line-check + input + label.form-check-label.checkbox-label{
	margin: 15px 0 20px 0;
	min-height: 10px;
}

.year-month-control{
	position:relative ;
	width:100%;
	/*height:30px;*/
	font-size:30px;
	font-weight:500;
	text-align:center;
	margin:20px 0px;
	padding-top:10px;
	padding-bottom:0px;
	border-top-style:solid;
	border-bottom-style:solid;
	border-color:#80868b;
	border-width:1px;
	line-height:60px;

}
.year-month-control span.small{
	font-size:16px;
}
.year-month-control i{
	margin:0 20px;
}

.prevnext{
	cursor:pointer;
}
.bulk-buttons.settlement{
	text-align:right;
	margin-top:0px;
	margin-bottom:0px;
	padding:0px;
}


/* イベント管理、お知らせ管理　期間表示 */
td.fromto {
	text-align: right;
}
td.fromto span.yeardate {
	margin-right: 0.5em;
	margin-left: 0.5em;
}
td.fromto span.noyeardate {
	margin-right: 0.5em;
}
td.fromto span.time {
	width: 2.5em;
	display: inline-block;
	font-size: 14px;
}
td.fromto span.deftime {
	width: 2.5em;
	display: inline-block;
	font-size: 14px;
	color: transparent;
}
td.fromto span.notime {
	width: 2.5em;
	display: none;
	font-size: 14px;
}

/* イベント、チケット ステータス */
.status-badge,
.event-box p.time_status-badge {
	display:block;
	position:absolute;
	bottom:0;
	right:0;
	text-align:center;
	z-index: 1000;
	margin: 0;
	font-size: 14px!important;
	font-weight: 500;
	color: #fff!important;
	width: 100px;
	height: 30px;
	line-height: 30px!important;
}
.event-box p.time_status-badge{
	top: 0;
	bottom: auto;
	height: 27px;
	line-height: 27px!important;
	font-size: 12px!important;
	width: auto;
	padding: 0 10px;
}

.status-badge.slightly,
.status-badge.closed,
.status-badge.before-term,
.status-badge.after-term,
.status-badge.canceled,
/* .status-badge.not_target_before-term, */
/* .status-badge.not_target_after-term, */
.status-badge.not_target

{
	/*background-color:#ffaa22;*/
	background: #e61616!important;
}
.status-badge.slightly:before{
	content:"残りわずか";
}
.status-badge.closed:before{
	content:"満員御礼";
}
.status-badge.before-term:before{
	content:"受付開始前";
}
.status-badge.before-term,
.status-badge.after-term{
	/*background-color:#d8d8d8;*/
}
.status-badge.after-term:before{
	content:"受付終了";
}
.status-badge.canceled{
	/*background-color:#ff0000;*/
}
.status-badge.canceled:before{
	content:"開催中止";
}
.status-badge.not_target:before{
	content:"申込不可";
}

/*  */
.event-box.event{
	background-color:#ffffff;
	/*max-width:300px;*/
}
ul.event-wrapper>li{
	float:left;
}
.event-box img{
	padding:0px;
	margin:0px;
	display: block;
}
/*.event-box-inner>ul{
	margin-top: 10px;
}*/
.event-box-inner>ul>li {
	margin:0;
}
.event-box-inner{
	/*margin-top:-6px;*/
	position:relative;
}
.event-wrapper a{
	text-decoration: none;
}

.event-box p.time_status-badge.new_release{
	background-color: #ff8100;
}
.event-box p.time_status-badge.new_release:after{
	border-color: transparent #ff8100 transparent transparent;
}
.event-box p.time_status-badge.new_release:before{
	content:"NEW";
}
.event-box p.time_status-badge.reccomend{
	background-color: #ff8100;
}
.event-box p.time_status-badge.reccomend:after{
	border-color: transparent #ff8100 transparent transparent;
}
.event-box p.time_status-badge.reccomend:before{
	content:"オススメ";
}
.event-box p.time_status-badge.close_deadline{
	background-color:#9064ce;
}
.event-box p.time_status-badge.close_deadline:after{
	border-color: transparent #9064ce transparent transparent;
}
.event-box p.time_status-badge.close_deadline:before{
	content:"締切間近";
}
p.price-badge {
	display: block;
	position: absolute;
	width: 100%;
	height: 30px;
	line-height: 22px;
	background-color: rgba(0, 0, 0, 0.3);
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0 20px;
	color: #fff;
	z-index:999;
	font-size: 16px;
}
.event-box p.event_datetime,
.event-box p.event_pref{
	font-size: 12px;
	display: block;
}
.event-box p.event_pref{
	text-align: right;
}
.event-box p.event_datetime{
	font-size: 11px;
	color: #999;
	line-height: 1!important;
}
ul.event-wrapper > li:first-child .event-box p.event_datetime,
ul.event-wrapper > li:nth-child(2) .event-box p.event_datetime{
	font-size: 12px;
}
.event-box p.event_name {
	font-weight: 500;
	font-size: 16px;
	display: block;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.4!important;
	max-height: calc(24px*5);
}
.event-box p.event_summary {
	word-break: break-all;
	font-size: 14px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.4!important;
	max-height: calc(24px*5);
	overflow: hidden;
	display: none;
}
.event-wrapper > li:first-child p.event_summary,
ul.event-wrapper > li:nth-child(2) p.event_summary {
	display: -webkit-box;
}
.event-search #contents{
	padding-top: 20px;
	padding: 20px 0;
}
.event-list-area{
	width: 100%;

}
ul.event-wrapper{
	width:100%;
	margin:0 auto;
	padding:0;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.event-wrapper > li {
	width: 24.3%;
	margin: 0 0 10px 0;
	background: #fff;
	overflow: hidden;
	position: relative;

}
ul.event-wrapper::before {
	content: "";
	display: block;
	width: 24.3%;
	height: 0;
	order: 1;
}
ul.event-wrapper::after {
	display: block;
	content: "";
	width: 24.3%;
}

ul.event-wrapper li li {
	margin: 5px 0 0;
	width: 100%;
}
.event-wrapper .event-box{
	color: #202124;
	margin: 0;
	/*padding-top: calc(10px + 1rem);*/
}

.event-wrapper .event-box>img{
	max-width:300px;
	max-height: 169px;
}
.event-wrapper .event-box .thumbnail-wrap{
	overflow: hidden;
	min-height: 169px;
	position: relative;
	vertical-align: bottom;
}
.event-wrapper .event-box .thumbnail-wrap .thumbnail{
	height: 0;
	padding-top: 75.3%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-color: #eaedf7;
	width: 100%;
	margin: 0;
}

.event-box.open{
	cursor: pointer;
	position: relative;
}

/* event detail */
.event-detail-wrapper{
	width: 100%;
	margin:0 auto;
	display:inline-block;
	padding: 20px;
	max-width: 980px;
}

.event-detail-wrapper > li > img{
	max-width: 300px;
	max-height: 169px;
}
/*先頭スタイル*/
ul.event-wrapper > li:first-child,
ul.event-wrapper > li:nth-child(2){
	width: 49.5%;
	background: #fff;
}

.btn.red{
	color:#fff;
}
button.action-btn{
	cursor:pointer;
}

.center-area {
	text-align: center;
}
.center-area .btn-area {
	margin-top: 20px;
}
.action-area{
	margin-top:5px;
	margin-bottom:15px;
	height: 52px;

	display:block;
	text-align:right;
	border-top:solid 1px #80868b;
	border-bottom:solid 1px #80868b;
	padding: 10px 0;
	position:relative;
}
.action-area .action {
	display: inline;
}
.action-btn.disabled{
	opacity:0.2;
	cursor:default !important;
	pointer-events:none;
}
.action-area .chart_switch {
	display: inline-block;
    margin-top: -5px;
}
.action-area .chart_switch button.btn {
	min-width: auto!important;
}
.action-area .chart_switch .material-icons {
	font-size: 1.8rem!important;
    vertical-align: middle;
    margin-top: -3px;
    opacity: 1;
    cursor: pointer;
}
.perpage select{
	border: 1px solid rgba(0,0,0,0.16);
	font-size:14px;
	padding:5px;
}
.sub_table{
	width:100%;
}
.button-area{
	display:inline-block;
	position:absolute;
	left:5px;
	top:5px;
}
.action-area .button-area {
	top: 3px;
}
.year-month-control > .action-area{
	border-style:none;
	position:absolute;
	top:5px;
	right:10px;
}
.table-area {
	position: relative;
}
.table-area_none {
	position: absolute;
	top: 0;
}
.event.attension{
	background-color:#ffff00;
}
.event-main{
	position:relative;
	padding:20px;
	margin:0px;
	border-width:0px;

}
.event-main img{
	margin:0px;
	padding:0px;
	vertical-align:bottom;
	max-width:980px;
	max-height:300px;
}
.event-info{
	text-align:left;
	position:absolute;
	width:30%;
	height:-webkit-calc( 100% - 40px );
	height:calc( 100% - 40px );
	top:0px;
	right:0px;
	background-color:rgba(255,255,255,0.5);
	padding:20px;
	margin:0;
}
.event-footer{
	/* position:absolute; */
	left:0px;
	line-height:40px;
	color:#fff;
	height:40px;
	background-color:rgba(0,0,0,0.5);
	width:100%;
	bottom:0px;
	padding-left:40px;
	text-align:left;
}
.contents-inner.event{
	background-color:#ffffff;
	padding: 30px;
}
.event-info>p{
	font-size:14px;
	font-weight:500;
	padding-bottom:20px;
}
.event-info>ul>li{
	font-size:14px;
}
.event-title{
	margin:20px;
	word-break: break-word;
}
.event-box.detail img{
	float:left;
}
.event-detail {
	/*min-width:580px;*/
	width:100%;
	height:auto;
	text-align:left;
	padding-left:40px;
	position:relative;
	display:block;

}
.event-detail label{
	float:left;
	width:120px;
	display:inline-block;
	font-size:14px !important;
	line-height:1.8;
	vertical-align:middle;
}
.event-detail p{
	font-size:14px !important;
	display:inline-block;
}
.event-detail li{
	margin-bottom:20px;
}
.event-detail >ul.event-detail-text>li{
	clear:both;
}
.event-detail>.event-status {
}
.event-detail>.event-status li{
	float:left;
	margin-right:10px;
}
.event-detail>.event-status p.status-badge{
	top:0px;
	left:0px;
	position:relative;
	font-size:12px !important;
	height:25px !important;
	line-height:25px !important;
}
.event-detail>.event-detail-text {
	width:100%;
	position:relative;
	display:block;
	padding: 0 30px 0 0;
}
.event-detail>.event-status{
	all:unset;
	width:100%;
	position:relative;
	display:block;
	min-height:40px;
}
.event-status .status-badge.wanted{
	background-color:#ff9944;
}
.event-status .status-badge.wanted:before{
	content:"募集中";
}
.event-status .status-badge.close-deadline{
	background-color:#ffb6c1;
	width:140px;
}
.event-detail .status-badge.close-deadline:before{
	content:"締め切り間近!";
}
.event-detail-text>li>ul>li{
	clear:both;
}
.ticket{
	display:table;
	width:100%;
}
.ticket>label{
	display:table-cell;
}
.ticket>ul{
	display:table-cell;
}
.ticket>ul>li label{
	width:180px;
}
.ticket>ul>li p.price{
	width: 130px;
}
.ticket>ul>li select{
	margin-left:20px;
	padding:5px;
	border: 1px solid rgba(0,0,0,0.16);
	width:80px;
}
.event-synopsis{
	clear:both;
	width:100%;
	text-align:left;
	font-size:14px;
	margin-top: 50px;
	margin-bottom: 150px;
	border: 1px solid #8e8e8e;
}
.event-synopsis ul{
	width:100%;
	display:table;
	border-bottom: 1px solid #8e8e8e;
}
.event-synopsis ul:last-of-type{
	border-bottom:none;
}
.event-synopsis ul>li{
	display:table-cell;
	width:30%;
	/*line-height:1.8rem;*/
	line-height: 1.5rem;
}
.event-synopsis ul >li:nth-child(odd){
	border-right: 1px solid #8e8e8e;
	padding: 4px 10px;
}
.event-synopsis ul >li:nth-child(even){
	width:auto;
	padding: 4px 10px;
}
.event-synopsis.ticket {
	width:70%;
	margin: 50px auto;
}
.event-synopsis.ticket li {
	word-break: break-word;
}
.event-confirm_box {
	padding: 30px 0;
}
.event-confirm_box table {
	/*width: 70%;*/
	margin: 20px auto;
}
.event-confirm_box table.applicant_table td:nth-child(1):before {
	content: none;
}
.event-confirm_box .event-synopsis.confirm {
	width:90%;
	margin: 20px auto;
}
span.out > select{
	display:none;
	disabled:true;
}
span.out:before {
	background-color:red;
	content:"対象外";
	margin-left:20px;
	padding:5px 15px;
	border: 1px solid rgba(0,0,0,0.16);
	font-size:14px;
	color:#ffffff;
	width:80px;
}
.numeric,
.price input{
	text-align:right;
}

/* フロント側 イベント */
.search-highlight {
	background-color: yellow!important;
    margin: 0!important;
}
.front-event.index{
	padding-top: 0!important;
}
.front-event input[type=text],
.front-event select{
	font-size: 13px;
}
.front-event .contents-inner,
.front-payments .contents-inner{
	padding: 0;
}
.front-event #event_form{
	display: flex;
}
.front-event #event_form .search-left-area{
	width: 90%;
}
.front-event #event_form .search-right-area{
	width: 20%;
}
.list_tile_btn{
	position: absolute;
	top: 0;
	right: 0;
}
.list_tile_btn div, .chart_switch div {
	display: flex;
	justify-content: flex-end;
	align-items: center;

}
.front-event .contents-inner{
	margin: 0 auto;
	border-radius: 0;
	padding: 20px 0;
}
.front-event .contents-inner .form,
.front-payments .contents-inner .form{
	padding-bottom: 20px;
}

.front-event .contents-inner .entry-form {
	min-height: auto;
	width: 90%!important;
	background-color: #fff;
	max-width: 1280px;
	padding: 0;
	margin: 0 auto;
	border-radius: 0;
}

.front-event .entry-form .freeword {
	width: 315px;
	vertical-align: middle;
}
.front-event .entry-form .select_field {
	display: inline-block;
	position: relative;
	z-index: 1;
	vertical-align: middle;
}
.front-event .entry-form #place_proxy {
	color:#999;
	display: inline-block;
	text-align: left;
	/*height: 2.4em;*/
	font-size: 1em;
	padding: 0.3em 0.8em;
	width: 200px;
	border-radius: 0px;
	border: 2px solid rgb(127, 135, 139);;
	line-height: 1.8em;
	position: relative;
	word-break: break-word;
	overflow-wrap: break-word;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%666666'><polygon points='0,0 100,0 50,50'/></svg>");
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}
.front-event .entry-form #place_proxy.selected {
	color: inherit;
}
.front-event .entry-form #select_list {
	display: block;
	width: 100%;
	max-height: 240px;
	overflow-y: auto;
	list-style: none;
	padding: 0;
	background: #fff;
	border: 1px solid #aeaeae;
	position: absolute;
	top: 100%;
	left: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}
.front-event .entry-form #select_list li {
	width: 100%;
	min-height: 40px;
	padding: 6px 12px;
	border-bottom: 1px solid #e1e1e1;
	cursor: pointer;
	text-align: initial;
}
.front-event .entry-form #select_list li:hover, #select_list li.selected {
	background-color: #9fd6ff;

color: #fff;
}
.front-event .entry-form .btnarea {
	display: inline-block;
}
.front-event .entry-form .btnarea > button {
	min-width: auto;
	background: #d4d4d4;
	margin-left: -44px;
	width: 40px;
	border-radius: 0 2px 2px 0;
}
.front-event .entry-form .btnarea > button:hover{
	background: #ddd;
}
.front-event .entry-form ul.form {
	width: 90%;
	margin: 0 auto;
}

.front-event .entry-form ul.form {
	/*width: 620px;*/
	margin: 20px auto 0;
}

.front-event .entry-form .search-details-btn > a {
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	display: block;
	color: #005ca2;
	border-radius: 20px;
	width: auto;
	padding: 10px;
}

.front-event .entry-form ul li label{
	width: 20%;
}
.front-event .entry-form ul li .form-input_line{
	width: 78%;
}
.front-event .entry-form ul li .form-input_line input.i1,
.front-event .entry-form ul li .form-input_line select{
	width: 100%;
}
.front-event .entry-form ul li .form-input_line input.i3{
	width: 30%;
}
.front-event .more {
	padding: 18px 12px 0 12px;
}

.front-event .more > .loader {
	margin: 0 auto;
}
.front-event .data-none {
	margin-top: 18px;
	font-size: 18px;
	font-weight:500;
	border: 1px solid #000;
	padding: 10px 30px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.7);
	display: inline-block;
}
.front-event .kikan {
	margin-left: 8px;
	margin-right: 8px;
}

.list_tile_btn button, .chart_switch button {
	background: #005ca2;
	padding: 10px;
	font-size: 12px;
	cursor: pointer;
	width: 60px;
	color: #fff;
	min-width: auto;
	margin: 0 0 0 5px;
	border-radius: 3px 0 0 3px;
	height: 40px;
}
.list_tile_btn button a,
.list_tile_btn button a:hover,
.chart_switch button a,
.chart_switch button a:hover {
	text-decoration: none;
	color: #fff;
}
.list_tile_btn button:nth-of-type(2),
.chart_switch button:nth-of-type(2) {
	border-radius: 0 3px 3px 0;
	margin-left: 0;
}
.list_tile_btn button.active,
.chart_switch button.active {
	background: #d4d4d4;
	cursor: auto;
}
#event_form input,
#event_form select,
.front-event .entry-form #place_proxy {
	border: 1px solid #d4d4d4;
	border-radius: 2px;
	width: 100%;
	border-right: none;
	height: 40px!important;
}
#event_form select{
	border-radius: 0;
	cursor: pointer;
}
.event_form_set .free_word{
	display: flex;
	position: relative;
	width: 40%;
}
.event_form_set {
	display: flex;
	align-items: center;
	margin: 0;
	padding-right: 50px;
	position: relative;
}
.event_form_set > div{
	width: 20%;
}
.event_form_set button{
	position: absolute;
	right: 0;
	margin: 0;
	background: #005ca2;
	width: 50px!important;
	min-width: auto;
	border-radius: 0 3px 3px 0;
	height: 100%;
}
#event_form .material-icons{
	font-size: 1.8rem!important;
}


/* イベント管理 */
.search-result .th-count {
	width: 6rem;
}
.search-result .th-show_type {
	width: 10rem;
}
.search-result .th-release {
	width: 4rem;
}
.search-result.tbl-events .th-event_subcategory {
	min-width: 8rem;
}
.search-result.tbl-events .th-name {
	min-width: 14rem;
}
.entry-form.event textarea.free_comment {
	width: 880px;
	height: 350px;
	margin: 0 auto;
}
.trumbowyg-editor[contenteditable="false"] {
	background-color: #ebebe4;
	color: #999!important;
}
#addExtra, .add_field {
	vertical-align: middle;
	line-height: 1.5rem;
	cursor: pointer;
	padding-bottom: 0;
	display: inline-block;
}
.applicant_table, .companion_table {
	width: 100%;
	font-size: 0.7rem;
	border-collapse:collapse;
	margin:0 auto;
}
.applicant_table th, .applicant_table td,
.companion_table th, .companion_table td
{
	padding:5px 15px;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
	text-align:center;
	font-size:0.8rem;
}
.c_from .companion_count_wrap {
	margin: 10px 0;
}

/* イベント管理　チケット編集　会員種別テーブル */
.division_table {
	width: 89% !important;
	display: inline-block;
	font-size: 0.7rem;
	border-collapse:collapse;
	margin:0 auto;
}
.division_table thead {
	background-color: #eaeaea;
}
.division_table tr.selected {
	background-color: unset;
}
.division_table th,
.division_table td {
	padding:5px 15px;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
	text-align:center;
	font-size:0.8rem;
	line-height: 1rem;
	min-width: 90px;
}
.division_table .err_txt {
	margin: 0;
}
.division_table th:first-child, .division_table td:first-child {
	min-width: 40px;
}

/* イベント管理　チケット編集　料金分割テーブル */
.price_breakdown_table {
	width: auto;
	display: inline-block;
	font-size: 0.7rem;
	border-collapse:collapse;
	margin:0 auto;
}
.price_breakdown_table td {
	padding:5px 15px;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
	text-align:center;
	font-size:0.8rem;
	line-height: 1rem;
}

/* イベント管理 申込一覧テーブル */
.responses_table .th-user_number{
	width: 7rem;
}
.responses_table .th-organization{
	width: 10rem;
}
.responses_table .th-status{
	width: 7rem;
}
.responses_table .th-app-date{
	width: 8rem;
}
.responses_table .th-course_completion_status{
	width: 6rem;
}
.responses_table .th-course_last_access_datetime{
	width: 10rem;
}
.search-result.tbl-responses .th-ticket {
	min-width: 7rem;
}
.search-result.tbl-responses .th-attendance_status {
	width: 8rem;
}
.search-result.tbl-responses .th-result_status {
	width: 8rem;
}
.search-result.tbl-responses .th-response_attendance_status,
.search-result.tbl-responses .th-response_result_status,
.search-result.tbl-responses .th-response_approval {
	width: 5rem;
}
.search-result.tbl-responses .th-response_note {
	width: 4rem;
}
.search-result.tbl-responses .th-response_check {
	width: 3rem;
}

/* 申込詳細 参加者テーブル */
.r_members_table {
	width: 100%;
	font-size: 0.7rem;
	/*border-collapse:collapse;*/
	margin:0 auto;
	border-collapse: separate;
	border-spacing:0;
	empty-cells:show;
	border-top:1px solid #80868b;
	border-right:none;
	border-bottom:none;
	border-left:1px solid #80868b;
}
.r_members_table th,
.r_members_table td {
	padding:5px 15px;
	/*border-style:solid;
	border-width:1px;
	border-color:#80868b;*/
	font-size:0.8rem;
	border-top:none;
	border-right:1px solid #80868b;
	border-bottom:1px solid #80868b;
	border-left:none;
}
.r_members_table th {
	width: 15em;
	text-align:center;
}
.r_members_table td {
	text-align:left;
}

/* イベント管理 イベント申込条件 */
.search-result.tbl-terms .th-name {
	width: 320px;
}
.search-result.tbl-terms .th-description {
	min-width: 10rem;
}

/* 会員管理 */
.personal_detail ul.tabs li.error_tab {
	background-color: #ff9d9d;
}
.personal_detail ul.tabs li.error_tab.current{
	background-color: #ffffff;
	color: red;
}
.search-result.tbl-members .th-full_name {
	min-width: 192px;
}
.search-result.tbl-members .th-organization {
	width: 256px;
	min-width: 256px;
}
.search-result.tbl-members .th-membership_category {
	width: 192px;
	min-width: 192px;
}
.search-result.tbl-members .th-applicant_reason {
	width: 6rem;
}

/* 会員　オプションテーブル */
.option_table {
	width: 100%;
	font-size: 0.7rem;
	border-collapse:collapse;
	margin:0 auto;
}
.option_table th,
.option_table td
{
	padding:5px 15px;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
	font-size:0.8rem;
}
.option_table th {
	width: 15em;
	text-align:center;
}
.option_table td {
	text-align:left;
}
.option_table .th-checkbox {
	width: 4rem;
}
.option_table .th-name {
	width: 10rem;
}
.option_table .th-option_fee {
	width: 7rem;
}

/* 承認管理 */
.action-area.approvals .cancel {
	background-color:#CCC;
}
.action-area.approvals .history {
	background-color:#999;
}
.action-area.approvals .button-area {
	width:99%;
}
.action-area.approvals .left-right {
	display:flex;
	justify-content:space-between;
}

/* 承認管理(モーダル) */
.modal .approval-history .history ul{
	max-height:60vh;
	overflow-y:scroll;
}
.modal .approval-history .history ul li{
	padding:0.5em 0;
	border-bottom:1px dashed #CCC;
}
.modal .approval-history .history ul li h3 span{
	display:inline-block;
	background-color:#0EA0ED;
	color:#FFF;
	border-radius:5px;
	padding:5px 10px;
	margin-left:1em;
	font-weight:300;
	font-size:14px;
	line-height:1em;
}
.modal .approval-history .history ul li h3 span.reject{
	background-color:#FF0000;
}
.modal .approval-history .history ul li h3 span.apply{
	background-color:#ffbd3d;
}
.modal .approval-history h1{
	margin-bottom:0.3em;
	line-height:1em;
	border-bottom:1px solid #0EA0ED;
}

/* お知らせ 公開用一覧 */

.info.pages-detail_list .info-box .category {
	display: inline-block;
	margin-bottom: 1px;
	max-height: 2.3rem;
}
.info.pages-detail_list .info-box .image {
	padding: 0px;
	margin: 0px;
	display: inline-block;
	width: 38.8%;
	min-height: 158px;
	overflow: hidden;
	vertical-align: bottom;
	max-width: 310px;
}
.info.pages-detail_list .info-box .image > .thumbnail {
	height: 0;
	padding-top: 75.3%;
	background-repeat: no-repeat;
	/*background-position: right;*/
	background-position: center;
	background-size: contain;
	background-color: #eaedf7;
}
.info.pages-detail_list .info-box .inner {
	position: absolute;
}

.pages-detail hr {
	display: block;
	background-color: #0156b1;
	border: 0;
	width: 100%;
	height: 2px;
}
.pages-detail .detail_inner {
	word-break: break-word;
	padding: 20px 20px;
}
.pages-detail .title_wrap {
	position: relative;
	padding-bottom: 20px;
}
.pages-detail .title_wrap > .title {
	font-weight:500;
	max-width: -webkit-calc(100% - 80px);
	max-width: calc(100% - 80px);
	font-size: 19px;
}
.pages-detail .title_wrap > .category-box {
	position: absolute;
	right: 0;
	top: 0;
}
.pages-detail .title_wrap > .category-box .category {
	display: inline-block;
	margin-bottom: 1px;
}
.pages-detail .detail_wrap {
	position: relative;
	padding-bottom: 20px;
}
.pages-detail .detail_wrap > .source {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 10px;
}
.pages-detail .detail_wrap > .detail {
	padding: 20px 0;
}
.pages-detail div.image {
	text-align: center;
}
.pages-detail div.image > img {
	max-width: 100%;
}
.pages-detail div.download_files p.upload_file, .event-detail-wrapper div.download_files p.upload_file {
	font-size: 12px;
}
.pages-detail div.download_files .btn.download, .event-detail-wrapper div.download_files .btn.download {
	min-width: auto;
	margin-left: 10px;
	padding: 4px 10px 0 10px;
	line-height: initial;
	vertical-align: middle;
}
.pages-detail div.download_files .btn.download i, .event-detail-wrapper div.download_files .btn.download i {
	opacity: 1;
}


/* 団体管理 */
.search-result.tbl-organizations .th-level {
	width: 8rem;
}
.search-result.tbl-organizations .th-name {
	min-width: 10rem;
}
/* 団体編集 */
.entry-form #price_table input.i_price {
	width: 100px;
}
#price_table.search-result .th-org_price {
	width: 8rem;
}
#price_table.search-result .th-term {
	width: 5rem;
}

/* お知らせ管理 */
.search-result.tbl-pages .th-title {
	min-width: 20rem;
}
.search-result.tbl-pages .th-show_type {
	width: 258px;
}
.search-result.tbl-pages .th-notice_type {
    min-width: 5rem;
}
/* お知らせ編集 */
.entry-form.input textarea.page_body {
	width: 685px;
}
.entry-form .form-input_line.file input.ajax-upload {
	display: none;
}
.entry-form .form-input_line.file .action-btn.upload {
	float: none;
	cursor: pointer;
	width: auto;
	margin-left: 55px;
}
.entry-form .form-input_line.file p.upload_file {
	font-size: inherit;
	padding: 0;
	margin: 5px 0 0 0;
}
.entry-form .form-input_line.file p.upload_file .drop_remove i {
	color: red;
}
.entry-form .form-input_line.file .btn.download {
	min-width: auto;
	padding: 5px 10px;
	margin-left: 10px;
	vertical-align: baseline;
}
.modal-box.preview-box {
	height: 800px;
	max-height: 90%;
	padding: 30px;
	width: 850px;
	max-width: 80%;
}
.modal-box.preview-box.event_detail {
	width: 1280px;
}
.modal-box.preview-box.event_detail .modal-inner h1 {
	font-size: 19px!important;
	margin: 0;
}
.modal-box.preview-box .modal-inner {
	height: 100%;
	overflow-y: auto;
	padding: 0;
	margin: 20px auto;
	width: 98%;
}
.modal-box.preview-box .admin.col2 {
	padding: 0;
}
.modal-box.preview-box .admin.col2 .info {
	width: 100%;
}

/* 請求管理、決済管理 */
.search-result.tbl-payments .th-paid_type {
	width: 10rem;
}
.search-result.tbl-charges .th-summary,
.search-result.tbl-payments .th-summary {
	min-width: 15rem;
}

/* メール管理 */
.search-result.tbl-mails .th-full_name {
	width: 192px;
}
.search-result.tbl-mails .th-title {
	min-width: 15rem;
}
.search-result.tbl-mails .th-count {
	width: 7rem;
}
.search-result.tbl-mails .th-error_count {
	width: 7rem;
}
.search-result.tbl-mails .th-delivered_status {
	width: 7rem;
}
.entry-form.input textarea.mail_body {
	width: 90%;
    height: 300px;
}
/* メール管理 詳細 */
.search-result.tbl-mail_children .th-mail {
	width: 17rem;
}
.search-result.tbl-mail_children .th-send_status {
	width: 11rem;
}
.search-result.tbl-mail_children .th-is_opened {
	width: 7rem;
}

/* ヘルプ */
.entry-form.help .item_line {
	padding-bottom: 15px;
}
.entry-form.help a.item_title_wrap {
	text-decoration: none;
	font-weight:500;
}
.entry-form.help i.arrow {
	position: absolute;
	top: -2px;
}
.entry-form.help .item_title {
	margin-left: 30px;
}
.entry-form.help .item_detail {
	margin: 10px 0 15px 30px;
	font-size: 0.9em;
	word-break: break-word;
}
.entry-form.help .item_detail i {
	font-size: 0.9em;
}
.entry-form.help .return_help_index {
	margin-left: 8px;
	font-weight:300;
}

form .material-icons {
	font-size:22px;
	vertical-align:middle;
	margin-top:-3px;
	opacity:1;
	cursor: pointer;
}
.err_pos1, .err_pos2, .err_pos3, .err_pos4, .err_pos5, .err_pos300 {
	position: unset;
	padding: 0px;
	height: 100%;
	min-width: 250px;
}
.err_pos1 {
	padding-left: 160px;
}
.err_pos2 {
	/*padding-left: 230px;*/
	/*padding-left: 22%;*/
}
.err_pos3 {
	padding-left: 390px;
}
.err_pos4 {
	padding-left: 460px;
}
.err_pos5 {
	padding-left: 90px;
}
.err_pos130 {
	padding-left: 130px;
}
.err_pos300 {
	padding-left: 300px;
}

/* IE11 */
input[readonly] {
	background-color:#ebebe4;
	cursor: not-allowed;
	border: 1px solid #d7d7d3!important;
	color: #999!important;
}
input:-ms-input-placeholder {
	color: #d7d7d3 !important;
}
textarea[readonly] {
	cursor: not-allowed;
	border: 1px solid #d7d7d3;
	color: #999!important;
	background: #ebebe4!important;
}

/* 必須入力 */

.entry-form input:not(:read-only):required, .entry-form select:not(:read-only):required, .entry-form textarea:not(:read-only):required {
	border: 2px solid #005ca2;
	background-color: #e7f5ff;
	outline: 0;
}
.entry-form input:not([readonly='readonly']):required, .entry-form textarea:not([readonly='readonly']):required {
	border: 2px solid #005ca2;
	background-color: #e7f5ff;
	outline: 0;
}
select:not([style*='user-select: none']):required {
	border: 2px solid #005ca2;
	background-color: #e7f5ff;
	outline: 0;
}

.entry-form input:not([readonly='readonly']):required:valid, .entry-form textarea:not([readonly='readonly']):required:valid {
	border: 2px solid #80868b;
	outline: 0;
	background-color: #fff;
}
.entry-form select:not[read-only]:required:valid {
	border: 2px solid #80868b;
	outline: 0;
	background-color: #fff;
}
select:not([style*='user-select: none']):required:valid {
	border: 2px solid #80868b;
	outline: 0;
	background-color: #fff;
}
select[style*='user-select: none'] {
	color: #999;
	background-color: #ebebe4;
	border: 1px solid #d7d7d3;
}
input[type=radio]:disabled + .radio-label:after {
	border: 2px solid #d7d7d3;
	background-color:transparent;
}
input[type=radio]:disabled + .radio-label,
input[type=checkbox]:disabled + label,
input[type=checkbox]:disabled + label + label{
	color: #999;
	cursor: default;
}
input[type=radio]:required:invalid:not(:disabled) + .radio-label:after {
	border: 2px solid #015ca2;
	/*background-color: #e7f5ff;*/
}
input[type=checkbox]:disabled + .checkbox-label:after {
	border: 2px solid #d7d7d3;
	background-color:transparent;
}
input[type=checkbox]:required:valid + .checkbox-label:after {
	border: 2px solid #d7d7d3;
	background-color:transparent;
}
input[type=checkbox]:required:valid:not(:disabled) + .checkbox-label:after {
	border: 2px solid #80868b;
	background-color:transparent;
}
input[type=checkbox]:required:invalid:not(:disabled) + .checkbox-label:after {
	border: 2px solid #015ca2;
	/*background-color: #e7f5ff;*/
}

/*見出し統一*/
.n_ttl_style {
	background-color: rgba(255, 255, 255, 0.7);
	padding-bottom: 0;
	font-size: 19px;
}
.info>p.n_ttl_style{
	width: 90%;
	margin: 0 auto;
	padding: 30px 0 0;
}

/*イベントページ新規スタイル*/
.left-area {
	/*width: 30%;*/
	width: 300px;
	display: inline-block;
	vertical-align: top;
}
.left-area img{
	width: 100%;
}
.right-area {
	/*width: 60%;*/
	width : -webkit-calc(100% - 330px) ;
	width : calc(100% - 330px) ;
	display: inline-block;
	vertical-align: top;
	margin-left: 20px;
	text-align: left;
	/*font-size: 14px;*/
}
ul.img-area li {
	margin: 0 auto 10px;
}

.date-area{
	font-size: 12px;
}
.date-area p{
	display: inline-block;
	width: 68%;
}
.date-area p:last-child{
	text-align: right;
	width: 30%;
	vertical-align: top;
}
.event_date {
	margin-bottom: 15px;
}
.event-title {
	margin: 10px auto 10px!important;
	font-size: 19px!important;
}
.event-verview2 {
	margin: 0 auto 20px;
}
.event-verview2 h2 {
	margin-bottom: 10px;
	word-break: break-word;
}
.event-verview2 div {
	word-break: break-word;
	padding: 0!important;
}
.ticket-area {
	margin: 20px auto 0;
	padding: 20px;
	border: solid 1px #999;
	position: relative;
}
.ticket-area h2 {
	margin-bottom: 5px;
	font-size: 16px;
}
.ticket-area button{
	margin: 0 auto;
	display: block;
	width: 80%;
	max-width: 300px;
}
.ticket-area .status-badge{
	top: 0;
	bottom: auto;
	line-height: 1em;
	margin: 15px;
}
.money {
	text-align: center;
	margin: 10px auto;
}
.money span{
	font-size: 23px;
	font-weight:500;
	color: #ff5959;
	margin-left: 10px;
}
.details-btn, .details-close-btn {
	text-align: center;
	color: #0156b1;
	font-weight:500;
	text-decoration: underline;
	cursor: pointer;
	padding-top: 20px;
}
.details-btn:hover, .details-close-btn:hover {
	text-decoration: none;
}
.ticket-details {
	height:50px;
	margin: 0 auto 10px;
	overflow-y:hidden;
	line-height: 1.7em;
	word-break: break-word;
}

.login_select_str{
	margin-bottom: 20px;
	font-size: 14px;
}
.login_select #entry-menu li a:hover {
	background-color: #dbf9ff;
}

.line p {
	display: inline-block;
	width: 70%;
	vertical-align: top;
}
.line p.left {
	display: inline-block;
	width: 30%!important;
	vertical-align: top;
}

.footer-banner{
	display:block;
	width:80%;
	margin:0 auto 30px auto;
}

.footer-banner div.slick-slide{
	display:inline-block;
}
.sidebar-banner{
	display:block;
	width:100%;
	margin:0 auto 20px auto;
}
.sidebar-banner div.slick-slide{
	display:inline-block;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
	color: #000;
}
.slick-slide{
	text-align:center;
}
.slick-slide a {
	display:block;
	margin:0 auto;
}
.slick-slide img {
	display:inline-block;
	width:100%;
	max-width:300px;
	margin:0 auto;
}

/* リッチエディタ用 */
.ck.ck-reset.ck-editor, #editor-wrap, .editor-wrap{
    display:inline-block;
    width:670px;
}
#editor-container, .editor-container{
    border:2px solid #80868b;
}
.ck-content ol, .ck-content.ul{
    padding: revert;
}

.ck-content ol li, .ck-content ul li{
    display: list-item;
    list-style: unset;
}
.ck-content hr{
    display: block;
    background-color: #0156b1;
    border: 0;
    width: 100%;
    height: 2px;
}
.ck-editor__editable_inline {
    min-height: 300px;
}
.ck-read-only{
	background-color: #ebebe4;
	color: #999!important;
}
/* blockquote indent */
.ck-content blockquote.idt1, .idt1, .ck-content .image.image-style-align-left.idt1, .ck-content .table.idt1[style='float:left;']{ margin-left: 40px; }
.ck-content blockquote.idt2, .idt2, .ck-content .image.image-style-align-left.idt2, .ck-content .table.idt2[style='float:left;']{ margin-left: 80px; }
.ck-content blockquote.idt3, .idt3, .ck-content .image.image-style-align-left.idt3, .ck-content .table.idt3[style='float:left;']{ margin-left: 120px; }
.ck-content blockquote.idt4, .idt4, .ck-content .image.image-style-align-left.idt4, .ck-content .table.idt4[style='float:left;']{ margin-left: 160px; }
.ck-content blockquote.idt5, .idt5, .ck-content .image.image-style-align-left.idt5, .ck-content .table.idt5[style='float:left;']{ margin-left: 200px; }
.ck-content blockquote.idt6, .idt6, .ck-content .image.image-style-align-left.idt6, .ck-content .table.idt6[style='float:left;']{ margin-left: 240px; }
.ck-content blockquote.idt7, .idt7, .ck-content .image.image-style-align-left.idt7, .ck-content .table.idt7[style='float:left;']{ margin-left: 280px; }
.ck-content blockquote.idt8, .idt8, .ck-content .image.image-style-align-left.idt8, .ck-content .table.idt8[style='float:left;']{ margin-left: 320px; }
.ck-content blockquote.idt9, .idt9, .ck-content .image.image-style-align-left.idt9, .ck-content .table.idt9[style='float:left;']{ margin-left: 360px; }
.ck-content blockquote.idt10, .idt10, .ck-content .image.image-style-align-left.idt10, .ck-content .table.idt10[style='float:left;']{ margin-left: 400px; }

.ck-content blockquote .idt1{ margin-left: auto; }
.ck-content blockquote .idt2{ margin-left: auto; }
.ck-content blockquote .idt3{ margin-left: auto; }
.ck-content blockquote .idt4{ margin-left: auto; }
.ck-content blockquote .idt5{ margin-left: auto; }
.ck-content blockquote .idt6{ margin-left: auto; }
.ck-content blockquote .idt7{ margin-left: auto; }
.ck-content blockquote .idt8{ margin-left: auto; }
.ck-content blockquote .idt9{ margin-left: auto; }
.ck-content blockquote .idt10{ margin-left: auto; }

/* table */
.ck-content .table{
    width: 100%;
}
.ck-content .table span, .ck-content .table p{
    word-wrap: break-word;
    word-break: break-all;
}

/* layout table */
/* .ck .insert-layout-table.ck-insert-table-dropdown__grid{
    flex-direction: column;
} */
.ck-content .table.table-container{
    /* width: calc(100% + 1.2cm + 1.2cm);
    margin-left: -1.2cm; */
    width: calc(100% + var(--skm-editor-spacing) + var(--skm-editor-spacing));
    margin-left: calc(-1 * var(--skm-editor-spacing));
}
.ck-content .table.table-container > table  th,
.ck-content .table.table-container > table  td{
    padding: var(--skm-editor-spacing);
}
@media (max-width: 767px) {
    .ck-content > .table.table-container > table > tbody > tr > td{
        width: 100% !important;
        display: block;
    }
}
.ck-content .table.table-container + .table.table-container{
    margin-top: -1em;
}
/* list font */
li.listfontsize-huge{
    font-size: 24px;
}
li.listfontsize-big{
    font-size: 20px;
}
li.listfontsize-default{
    font-size: 18px;
}
li.listfontsize-small{
    font-size: 16px;
}
li.listfontsize-tiny{
    font-size: 14px;
}

/* list style */
.ck-content ul[data-list-type="disc"] > li{
    margin-left: -1.5em;
    list-style: none !important;
}
.ck-content ul[data-list-type="disc"] > li:before{
    margin-right: 0.5em;
    content: '●';
    content: '⚫︎';
}
.ck-content ul[data-list-type="disc"] > li > ol,
.ck-content ul[data-list-type="disc"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ul[data-list-type="circle"] > li{
    margin-left: -1.5em;
    list-style: none !important;
}
.ck-content ul[data-list-type="circle"] > li:before{
    margin-right: 0.5em;
    content: '○';
    content: '⚪︎';
}
.ck-content ul[data-list-type="circle"] > li > ol,
.ck-content ul[data-list-type="circle"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ul[data-list-type="square"] > li{
    margin-left: -1.5em;
    list-style: none !important;
}
.ck-content ul[data-list-type="square"] > li:before{
    margin-right: 0.5em;
    content: '■';
    content: '◾️';
}
.ck-content ul[data-list-type="square"] > li > ol,
.ck-content ul[data-list-type="square"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ul[data-list-type="diamond"] > li{
    margin-left: -1.5em;
    list-style: none !important;
}
.ck-content ul[data-list-type="diamond"] > li:before{
    margin-right: 0.5em;
    content: '◆';
}
.ck-content ul[data-list-type="diamond"] > li > ol,
.ck-content ul[data-list-type="diamond"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ul[data-list-type="dot"] > li{
    margin-left: -1.5em;
    list-style: none !important;
}
.ck-content ul[data-list-type="dot"] > li:before{
    margin-right: 0.5em;
    content: '・';
}
.ck-content ul[data-list-type="dot"] > li > ol,
.ck-content ul[data-list-type="dot"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ul[data-list-type="kome"] > li{
    margin-left: -1.5em;
    list-style: none !important;
}
.ck-content ul[data-list-type="kome"] > li:before{
    margin-right: 0.5em;
    content: '※';
}
.ck-content ul[data-list-type="kome"] > li > ol,
.ck-content ul[data-list-type="kome"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ol[data-list-type="upper-latin"]{
    counter-reset: upper-latin-counter;
}
.ck-content ol[data-list-type="upper-latin"] > li{
    margin-left: -1.5em;
    list-style: none !important;
    counter-increment: upper-latin-counter;
}
.ck-content ol[data-list-type="upper-latin"] > li:before{
    margin-right: 0.5em;
    content: counter(upper-latin-counter, upper-alpha) ")";
}
.ck-content ol[data-list-type="upper-latin"] > li > ol,
.ck-content ol[data-list-type="upper-latin"] > li > ul{
    margin-left: 1.5em;
}

.ck-content ol[data-list-type="numbered-circle-number"]{
    list-style-type: none !important;
}
.ck-content ol[data-list-type="numbered-circle-number"] > li{
    margin-left: -1.5em;
}
.ck-content ol[data-list-type="numbered-circle-number"] > li:before{
    margin-right: 0.5em;
}
.ck-content ol[data-list-type="numbered-circle-number"] > li > ol,
.ck-content ol[data-list-type="numbered-circle-number"] > li > ul{
    margin-left: 1.5em;
}
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(1):before{ content: '①'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(2):before{ content: '②'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(3):before{ content: '③'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(4):before{ content: '④'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(5):before{ content: '⑤'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(6):before{ content: '⑥'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(7):before{ content: '⑦'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(8):before{ content: '⑧'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(9):before{ content: '⑨'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(10):before{ content: '⑩'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(11):before{ content: '⑪'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(12):before{ content: '⑫'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(13):before{ content: '⑬'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(14):before{ content: '⑭'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(15):before{ content: '⑮'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(16):before{ content: '⑯'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(17):before{ content: '⑰'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(18):before{ content: '⑱'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(19):before{ content: '⑲'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(20):before{ content: '⑳'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(21):before{ content: '㉑'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(22):before{ content: '㉒'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(23):before{ content: '㉓'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(24):before{ content: '㉔'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(25):before{ content: '㉕'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(26):before{ content: '㉖'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(27):before{ content: '㉗'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(28):before{ content: '㉘'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(29):before{ content: '㉙'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(30):before{ content: '㉚'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(31):before{ content: '㉛'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(32):before{ content: '㉜'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(33):before{ content: '㉝'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(34):before{ content: '㉞'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(35):before{ content: '㉟'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(36):before{ content: '㊱'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(37):before{ content: '㊲'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(38):before{ content: '㊳'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(39):before{ content: '㊴'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(40):before{ content: '㊵'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(41):before{ content: '㊶'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(42):before{ content: '㊷'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(43):before{ content: '㊸'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(44):before{ content: '㊹'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(45):before{ content: '㊺'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(46):before{ content: '㊻'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(47):before{ content: '㊼'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(48):before{ content: '㊽'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(49):before{ content: '㊾'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(50):before{ content: '㊿'; }
.ck-content ol[data-list-type="numbered-circle-number"] > li:nth-of-type(n+51):before{ content: '◯'; }


/* font size toolbar */
.ck-font-size-dropdown .ck.ck-list__item .ck-button .ck-button__label{
    line-height: 1;
    font-size: 16px !important;
}

/* color grid */
.ck.ck-color-grid{
    grid-template-columns: repeat(10, 1fr) !important;
}

/* html raw */
.ck-content .raw-html-embed{
    text-align: center;
}

/* iframe */
iframe[src^="https://www.google.com/maps/"]{
    max-width: 100%;
}

.trumbowyg-editor p {
	font-size: unset;
	padding: 0;
}
.event-detail .trumbowyg-editor p {
	display: block;
}
.ticket-details.trumbowyg-editor {
	height:50px;
	min-height:50px;
	margin: 0 auto 10px;
	overflow-y:hidden;
	line-height: 1.7em;
	word-break: break-word;
}
.trumbowyg-editor img {
	width: auto;
	max-width: 100%;
}

/* 管理画面コンテンツ内アラートバー */
div.admin_content_alert {
	background-color: #ffe549;
	line-height: 3em;
	font-size: 18px;
}

.info .right-area .detail {
	width: 100%;
}

.date-source .source {
	font-size: 11px;
}

.upload_file {
	background: #f1f1f1;
	padding: 10px;
	margin: 10px auto 0;
}

/*カテゴリバッジ最前面*/
.category-box{
	z-index: 1;
}
.sp-img-slick li {
	width: 300px;
	height: 225px;
	overflow: hidden;
	margin-bottom: 10px;
	position: relative;
	background: #efefef;
}
.sp-img-slick li img{
	height: auto;
	width: auto;
	max-width: 300px;
	max-height: 225px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}


/* 編集画面 画像＋動画URL */
.entry-form input.movies {
	width: 545px;
	display: block;
	margin-top: 5px;
}

/* 表示画面 画像＋動画URL */
.info.pages-detail_list .info-box .image div.no_thumbnail {
	max-width: 100%;
}
div.no_thumbnail {
	width: 100%;
	text-align: center;
	background-color: #efefef;
	position: relative;
	margin: 0 auto;
	max-width: 300px;
}
div.no_thumbnail:before {
	content:"";
	display: block;
	padding-top: 75%; /* 4:3 */
}
div.no_thumbnail > i {
	font-size: 5em;
	color: #aaa;
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
/*その他 登録項目*/
.questionnaire ul.form li{
	line-height: 1.5em;
}
.questionnaire input.i1,
.questionnaire select{
	width: 91%;
}
.questionnaire ul li label{
	line-height: 1.5em;
	color: #202124;
	font-size: 14px;
}

.questionnaire ul li label.radio-label{
	float: none;
	display: block;
}
.questionnaire ul.form li div.form-input_line{
	width: 100%;
	margin: 10px auto 20px;
}

.questionnaire-check {
	width: 90%;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.8;
}

.entry-form.questionnaire .questionnaire-check {
	vertical-align: top;
}
.admin-questionnaire select[id*="id_form_enquete-"]{
	width: 100%!important;
	margin-left: 77px;
}
/*ログイン個別調整*/

#contents.login-wrap{
	width: 600px;
}
#contents.login-wrap .form-bottom p {
	font-size: 12px;
	width: 100%;
}
#contents.login-wrap .form-bottom p:last-of-type{
	margin-top: 10px;
}
#contents.login-wrap .form-bottom{
	margin-bottom: 0;
}
#contents.login-wrap .contents-inner .entry-form{
	min-height: auto;
	padding: 0 30px;
}
#contents.login-wrap .entry-form input.i1 {
	width: 100%;
}

/*#contents.login-wrap .entry-form ul.form li:last-of-type {
	margin-top: 10px;
}*/
#contents.login-wrap .entry-form ul.form li.center {
	padding: 0;
}
#contents.login-wrap .entry-form ul.form li.login-input-area{
	text-align: right;
}
#contents.login-wrap .entry-form ul.form li label,
#contents.login-wrap .entry-form ul.form li .form-input_line {
	text-align: left;
}
#contents.login-wrap .s-text{
	font-size: 12px;
}
#contents.login-wrap .entry-form.input .form-bottom{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	text-align: left;
}

#contents.login-wrap .btn{
	padding: 8px;
	font-size: 12px;
	min-width: 120px;
	height: 40px;
	position: absolute;
	bottom: 0;
	right: 0;
}
#contents.login-wrap p.small{
	font-size: 11px!important;
	line-height: 1.2em;
}

/*sns-login*/
.sns-login-wrap{
	width: 800px!important;
}
.sns-login-wrap .login-h{
	margin-bottom: 10px!important;
}
.sns-login-wrap .s-text {
	text-align: right;
	width: 89%;
	display: block;
	font-size: 12px;
}
.sns-login-wrap .contents-inner{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 40px 20px!important;
}
.sns-login-wrap .entry-form{
	width: 500px;
	padding-top: 25px;
	margin: 0 auto;
}
.sns-login-area {
	width: 260px;
	padding: 30px 0 0;
}
.sns-login-area h3{
	font-size: 12px;
	height: 25px;
}
.sns-btn li {
	margin: 0 auto 10px;
	max-width: 200px;
}
.sns-btn li:last-child {
	margin-bottom: 0;
}
.sns-btn li a{
	text-decoration: none;
	display: block;
	border-radius: 3px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	height: 0;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 23%;
}
.sns-btn li:hover{
	opacity: 0.8;
}

.sns-login-wrap .btn {
	margin-top: 20px;
}

.sns-btn li a.twitter{
	background-image: url(../img/btn_twitter.png);
}
.sns-btn li a.facebook{
	background-image: url(../img/btn_facebook.png);
}
.sns-btn li a.instagram {
	background-image: url(../img/btn_instagram.png);
}

.sns-btn li a.google{
	background-image: url(../img/btn_google.png);
}

.sns-btn li a.line{
	background-image: url(../img/btn_line.png);
}

/*member*/
#contents.login-wrap.member .entry-form.input .form-bottom{
	margin-top: 10px;
}

/*width800*/
#contents.w800-wrap{
	width: 100%;
	max-width: 800px!important;
}
#contents.w800-wrap h2 {
	margin-bottom: 20px;
	font-size: 18px;
}
.w800-wrap form {
	margin-top: 20px;
}
#contents.w800-wrap .entry-form input.i2,
#contents.w800-wrap .entry-form select.i2 {
	width: 43%!important;
	margin-right: 1%;
}
#contents.w800-wrap .entry-form input.i2:last-of-type,
#contents.w800-wrap .entry-form select.i2:last-of-type {
	margin-right: 0;
}
#contents.w800-wrap .entry-form input.i1,
#contents.w800-wrap .entry-form select.i1 {
	width: 87%;
}

.d-text-area{
	margin: 50px auto 0;
}
.d-text-area p{
	margin: 0 auto 20px;
}
#contents .domain_links {
    text-align: left;
    display: inline-block;
    margin: 0;
}

/*おしらせ*/
.admin-top-title-notice{
	width: 96%;
	margin: 0 auto;
	text-align: left;
	display: block;
	height: 80px;
}
.admin-top-title-notice span{
	padding-left: 110px;
}
.admin-top-title.admin-top-title-notice span.notification_more{
	text-align: right;
	font-size: 12px;
}
.admin-top-title.admin-top-title-notice span.notification_more a{
	text-decoration: underline;
}
.admin-top-title.admin-top-title-notice span.notification_more a:hover{
	text-decoration: none;
}
.admin-top-title-notice .material-icons{
	left: 23px;
}

.notice-contents{
	width: 1280px!important;
}
.admin-settings-top .block .notice-list{
	text-align: left;
	width: 96%;
	margin: 0 auto 20px;
	padding: 10px 0;
}

.notice-list div {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.admin-settings-top .block ul li{
	padding: 10px;
	cursor: pointer;
	margin: 0 auto!important;
}
.admin-settings-top .block ul li:hover{
	background: #e7f5ff;
}
.admin-settings-top .block ul li a{
	text-decoration: none;
	color: #202124;
}
.admin-settings-top .block ul.notice-list li .new-area{
	width: 10%;
	color: #fff;
	text-align: center;
	display: inline-block;
}
.admin-settings-top .block ul.notice-list li .category{
	position: relative;
	width: 10%;
	min-width: 60px;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0;
	padding: 8px 0;
	line-height: 0.9rem;
	max-height: 30px;
	background: #ffa800;
}
.notice-list .new{
	background: #005ca2;
	color: #fff;
	text-align: center;
	width: 80px;
	display: inline-block;
	padding: 5px;
}
.notice-list span.date {
	width: 11rem;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 0 0;
}
.notice-list .notice-link{
	width: 57%;
	margin-left: 1%;
	margin-right: 1%;
	vertical-align: middle;
	display: inline-block;
	max-height: 3em;
	overflow: hidden;
}
.notice-list .r-span{
	display: inline-block;
	width: 16%;
	max-width: 190px;
	vertical-align: middle;
	min-width: 12rem;
	max-height: 3em;
	overflow: hidden;
	line-height: 1.5em;
}

/*一覧*/

/*戻るボタン*/

.back-btn{
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 13px;
}
.back-btn a{
	color: #202124;
	display: block;
}
/*お知らせソート*/
.sort-position{
	position: relative;
	width: 90%;
	margin: 20px auto 10px;
}
.sort-area {
	position: absolute;
	top: 0;
	right: 0;
	width: 80%;
}
.sort-area span{
	font-weight:500;
	margin-left: 10px;
	font-size: 12px;
}
.sort-area select {
	padding: 5px 20px 5px 5px;
	border: 1px solid rgba(0,0,0,0.16);
	font-size: 14px;
	margin-bottom: 10px;
}

.sort-area select:last-child {
	width: 100px;
	position: absolute;
	top: 0;
	right: 0;
}
.front_home .sort-area select:last-child {
	top: -50px;
}
.sort-area .btn{
	width: 60px;
	display: inline-block;
	text-align: center;
	min-width: auto;
}
.front_home .sort-area {
	position: relative;
	width: 100%;
}
.pages-detail_list .admin-top-title-notice{
	width: 90%;
}
.info-box{
	position: relative;
}
.info-box_add-style:hover{
	background: #e7f5ff;
	opacity: 0.8;
}
.info-box_add-style p.title {
	font-size: 16px;
}
.info-box_add-style a{
	display: block;
	color: #202124;
}
.info-box .category.new {
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
}
.info-box .category-box {
	position: absolute;
	right: 0;
	top: 0;
}
select.page_search {
	width: 25%;
}

/*お知らせ一覧*/
.notice-list-contents .sort-position{
	margin-bottom: 40px;
}

/*詳細*/

.notice-detail-top{
	width: 90%;
	margin: 20px auto 0;
	position: relative;
	height: 80px;
}
.date-source{
	text-align: right;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
}
.notice-detail-top .new{
	position: absolute;
	top: 0;
}
.info .detail_inner {
	width: 90%;
	margin: 0 auto;
	padding: 0;
}


.info .detail_inner .category-box .category{
	line-height: normal;
}


/*shikumi loading*/

#circular-g{
	position: relative;
	width: 180px;
	height: 180px;
	margin: auto;
	top: 30%;
}
.circular-g{
	position:absolute;
	background-color:#005ca2;
	width:10px;
	height:10px;
	border-radius:10px;
	animation-name:bounce_circular-g;
	-o-animation-name:bounce_circular-g;
	-ms-animation-name:bounce_circular-g;
	-webkit-animation-name:bounce_circular-g;
	-moz-animation-name:bounce_circular-g;
	animation-duration:1.1s;
	-o-animation-duration:1.1s;
	-ms-animation-duration:1.1s;
	-webkit-animation-duration:1.1s;
	-moz-animation-duration:1.1s;
	animation-iteration-count:infinite;
	-o-animation-iteration-count:infinite;
	-ms-animation-iteration-count:infinite;
	-webkit-animation-iteration-count:infinite;
	-moz-animation-iteration-count:infinite;
	animation-direction:normal;
	-o-animation-direction:normal;
	-ms-animation-direction:normal;
	-webkit-animation-direction:normal;
	-moz-animation-direction:normal;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
@keyframes bounce_circular-g{
	0%{
		transform:scale(3.5);
	}
	100%{
		transform:scale(1);
	}
}
@-o-keyframes bounce_circular-g{
	0%{
		transform:scale(3.5);
	}
	100%{
		transform:scale(1);
	}
}
@-ms-keyframes bounce_circular-g{
	0%{
		transform:scale(3.5);
	}
	100%{
		transform:scale(1);
	}
}
@-webkit-keyframes bounce_circular-g{
	0%{
		transform:scale(3.5);
	}
	100%{
		transform:scale(1);
	}
}

@-moz-keyframes bounce_circular-g{
	0%{
		transform:scale(3.5);
	}
	100%{
		transform:scale(1);
	}
}
#loading {
	width: 100vw;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: 0.1S;
	animation: fadeIn 0.2s ease 0.3s 1 normal;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
#loading.l-show{
	opacity: 1!important;
}
._1 {
	position: absolute;
	left: 9px;
	top: 57px;
	animation-delay:0.41s;
	-o-animation-delay:0.41s;
	-ms-animation-delay:0.41s;
	-webkit-animation-delay:0.41s;
	-moz-animation-delay:0.41s;
}
._2 {
	position: absolute;
	left: 43px;
	top: 17px;
	animation-delay:0.55s;
	-o-animation-delay:0.55s;
	-ms-animation-delay:0.55s;
	-webkit-animation-delay:0.55s;
	-moz-animation-delay:0.55s;
}
._3 {
	position: absolute;
	left: 96px;
	top: 8px;
	background: #fcc929;
	animation-delay:0.69s;
	-o-animation-delay:0.69s;
	-ms-animation-delay:0.69s;
	-webkit-animation-delay:0.69s;
	-moz-animation-delay:0.69s;
}
._4 {
	position: absolute;
	left: 141px;
	top: 35px;
	animation-delay:0.83s;
	-o-animation-delay:0.83s;
	-ms-animation-delay:0.83s;
	-webkit-animation-delay:0.83s;
	-moz-animation-delay:0.83s;
}
._5 {
	position: absolute;
	left: 159px;
	top: 84px;
	animation-delay:0.97s;
	-o-animation-delay:0.97s;
	-ms-animation-delay:0.97s;
	-webkit-animation-delay:0.97s;
	-moz-animation-delay:0.97s;
}
._6 {
	position: absolute;
	left: 141px;
	top: 135px;
	background: #fcc929;
	animation-delay:1.1s;
	-o-animation-delay:1.1s;
	-ms-animation-delay:1.1s;
	-webkit-animation-delay:1.1s;
	-moz-animation-delay:1.1s;
}
._7 {
	position: absolute;
	left: 95px;
	top: 161px;
	animation-delay:1.24s;
	-o-animation-delay:1.24s;
	-ms-animation-delay:1.24s;
	-webkit-animation-delay:1.24s;
	-moz-animation-delay:1.24s;
}
._8 {
	position: absolute;
	left: 42px;
	top: 152px;
	animation-delay:1.38s;
	-o-animation-delay:1.38s;
	-ms-animation-delay:1.38s;
	-webkit-animation-delay:1.38s;
	-moz-animation-delay:1.38s;
}
._9 {
	position: absolute;
	left: 9px;
	top: 110px;
	background: #fcc929;
	animation-delay:1.4s;
	-o-animation-delay:1.4s;
	-ms-animation-delay:1.4s;
	-webkit-animation-delay:1.4s;
	-moz-animation-delay:1.4s;
}
/*tdローディング*/
table td.t-loading{
	position: relative;
}
.circular-g-s-wrap{
	position: relative;
	width: 30px;
	height: 30px;
}
.circular-g-s{
	position:absolute;
	background-color:#005ca2;
	width:5px;
	height:5px;
	border-radius:50%;
	animation-name:bounce_circular-g-s;
	-o-animation-name:bounce_circular-g-s;
	-ms-animation-name:bounce_circular-g-s;
	-webkit-animation-name:bounce_circular-g-s;
	-moz-animation-name:bounce_circular-g-s;
	animation-duration:1.1s;
	-o-animation-duration:1.1s;
	-ms-animation-duration:1.1s;
	-webkit-animation-duration:1.1s;
	-moz-animation-duration:1.1s;
	animation-iteration-count:infinite;
	-o-animation-iteration-count:infinite;
	-ms-animation-iteration-count:infinite;
	-webkit-animation-iteration-count:infinite;
	-moz-animation-iteration-count:infinite;
	animation-direction:normal;
	-o-animation-direction:normal;
	-ms-animation-direction:normal;
	-webkit-animation-direction:normal;
	-moz-animation-direction:normal;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
@keyframes bounce_circular-g-s{
	0%{
		transform:scale(1.5);
	}
	100%{
		transform:scale(0.5);
	}
}
@-o-keyframes bounce_circular-g-s{
	0%{
		transform:scale(1.5);
	}
	100%{
		transform:scale(0.5);
	}
}
@-ms-keyframes bounce_circular-g-s{
	0%{
		transform:scale(1.5);
	}
	100%{
		transform:scale(0.5);
	}
}
@-webkit-keyframes bounce_circular-g-s{
	0%{
		transform:scale(1.5);
	}
	100%{
		transform:scale(0.5);
	}
}
@-moz-keyframes bounce_circular-g-s{
	0%{
		transform:scale(1.5);
	}
	100%{
		transform:scale(0.5);
	}
}
.td_loading {
	position: absolute;
	z-index: 9999;
	transition: 0.1S;
	animation: fadeIn 0.2s ease 0.3s 1 normal;
	top: calc(50% - 15px);
	left: calc(50% - 15px);
}
.td_loading.l-show{
	opacity: 1!important;
}
.td_1 {
	position: absolute;
	left: 0px;
	top: 7px;
	animation-delay:0.41s;
	-o-animation-delay:0.41s;
	-ms-animation-delay:0.41s;
	-webkit-animation-delay:0.41s;
	-moz-animation-delay:0.41s;
}
.td_2 {
	position: absolute;
	left: 6px;
	top: 1px;
	animation-delay:0.55s;
	-o-animation-delay:0.55s;
	-ms-animation-delay:0.55s;
	-webkit-animation-delay:0.55s;
	-moz-animation-delay:0.55s;
}
.td_3 {
	position: absolute;
	left: 13px;
	top: 0px;
	background: #fcc929;
	animation-delay:0.69s;
	-o-animation-delay:0.69s;
	-ms-animation-delay:0.69s;
	-webkit-animation-delay:0.69s;
	-moz-animation-delay:0.69s;
}
.td_4 {
	position: absolute;
	left: 21px;
	top: 4px;
	animation-delay:0.83s;
	-o-animation-delay:0.83s;
	-ms-animation-delay:0.83s;
	-webkit-animation-delay:0.83s;
	-moz-animation-delay:0.83s;
}
.td_5 {
	position: absolute;
	left: 23px;
	top: 12px;
	animation-delay:0.97s;
	-o-animation-delay:0.97s;
	-ms-animation-delay:0.97s;
	-webkit-animation-delay:0.97s;
	-moz-animation-delay:0.97s;
}
.td_6 {
	position: absolute;
	left: 21px;
	top: 19px;
	background: #fcc929;
	animation-delay:1.1s;
	-o-animation-delay:1.1s;
	-ms-animation-delay:1.1s;
	-webkit-animation-delay:1.1s;
	-moz-animation-delay:1.1s;
}
.td_7 {
	position: absolute;
	left: 13px;
	top: 24px;
	animation-delay:1.24s;
	-o-animation-delay:1.24s;
	-ms-animation-delay:1.24s;
	-webkit-animation-delay:1.24s;
	-moz-animation-delay:1.24s;
}
.td_8 {
	position: absolute;
	left: 6px;
	top: 22px;
	animation-delay:1.38s;
	-o-animation-delay:1.38s;
	-ms-animation-delay:1.38s;
	-webkit-animation-delay:1.38s;
	-moz-animation-delay:1.38s;
}
.td_9 {
	position: absolute;
	left: 0px;
	top: 16px;
	background: #fcc929;
	animation-delay:1.4s;
	-o-animation-delay:1.4s;
	-ms-animation-delay:1.4s;
	-webkit-animation-delay:1.4s;
	-moz-animation-delay:1.4s;
}
/*新規会員登録*/
div.policy {
	overflow:scroll;
	width:100%;
	height:100px;
	padding:5px;
	line-height:1.5em;
	font-size: 10px;
}
.form-bottom p {
	margin-bottom: 10px;
}

.entry-form ul.form li ul.h-adr li:last-child{
	padding-bottom: 0;
}

.entry-form select.i3 {
	width: 16% !important;
}

.entry-form ul li .radio-label {
	position: relative;
	padding: 0 0 0 45px;
	z-index: 10;
	cursor: pointer;
	top: 0!important;
	margin-bottom: 0;
}
li.admin-questionnaire select[id*="id_form_enquete-"] {
	width: 46%!important;
}

/*管理側form*/

.entry-form ul.form li div.form-input_line.check-type input {
	width: 61%;
}

.form-input_line table {
	width: 100%;
}
ul#creditform input {
	width: 100%;
}
li#creditform{
	max-width: 600px!important;
	margin: 0 auto!important;
}
li#creditform div{
	width: 100%!important;
	margin: 0 auto!important;
}
li#creditform div div{
	margin-bottom: 10px!important;
}
li#creditform label{
	width: 20%!important;
}
li#creditform input{
	width: 78%;
}
.entry-form ul.form li div.form-input_line.body{
	display: inline-block!important;
	margin-top: 10px!important;
}
.trumbowyg-box {
	width: 90%!important;
	display: inline-block!important;
}
.form-input_line.body .required {
	vertical-align: top;
}

/*影響個別解除*/

.entry-form ul li table label {
	top: 0;
}

/*.entry-form select,
.entry-form input.i1{
	max-width: 450px;
}
.entry-form select.i2,
.entry-form input.i2{
	max-width: 222px;
}*/

.free_list li {
	display: inline-block!important;
	width: 78%;
}
.event ul.form li div.form-input_line label {
	top: 0!important;
}

.event2 ul.form li div.form-input_line label.v-a-middle{
	vertical-align: middle;
}
.event2 ul li ul {
	width: 74%;
}

/*その他 登録項目管理側*/
.form-enquete_label {
	display: inline-block;
	width: 16%!important;
}
.form-enquete_value {
	width: 81%!important;
}
.form-enquete_label label{
	top: 0!important;
}

#contents .entry-form.input.event ul.form li div.form-input_line labe {
	top: 0.3rem;
}
#contents .entry-form.input.event ul li .radio-label:nth-child(4) {
	padding-right: 20px;
}
/*管理側固定*/
.col1.admin {
	width: 100%;
	min-width: 980px;
}

/*支払い方法*/
.aiueo {
	padding-top: 20px;
}
.entry-form .payment_types{
	padding: 30px!important;
	width: 80%!important;
}
.entry-form .payment_types ul li label {
	width: 20%!important;
	white-space: normal!important;
}

.entry-form .payment_types ul li input {
	width: 75%!important;
}
.entry-form .payment_types select{
	max-width: 100%;
}
.entry-form .payment_types input#bank-bracd,
.entry-form .payment_types select#bank-actype{
	width: 100px!important;
}
ul#directwform {
	margin-top: -10px;
}

div#credit-input input.i2 {
	width: 75%!important;
	max-width: 100%;
}
div#credit-input input.i4 {
	width: 23%!important;
}
ul#creditform li:last-child{
	margin: 30px auto 10px!important;
}
ul#directwform li:last-child{
	margin: 30px auto 0!important;
}
.t-center{
	text-align: center;
}
/*クレジットエラー*/
.entry-form .payment_types label.input{
	width: 80%!important;
	border: none!important;
}
/*フロー下スタイル*/
.entry-form-type2{
	padding: 0!important;
}
.entry-form-type2 .err_txt{
	margin-left: 0!important;
}
/*会員種別のご選択*/
table.r_members_table tr th.w-choice {
	width: 40px;
}
table.r_members_table tr th.w-requirements {
	width: 50%!important;
}
table.m-category-table td{
	padding: 20px 10px;
}
table.m-category-table td:first-child{
	text-align: center;
}
table.m-category-table td:last-child{
	text-align: right;
}
/*お支払い確認*/
.payments-bottom{
	margin: 20px auto 0;
	width: 80%;
}
.payments-bottom-btn{
	text-align: center;
	margin: 20px auto 0;
}
#creditdisp{
	margin: 20px auto!important;
}
#creditdisp label {
	width: 30%!important;
	margin: 0 auto 20px;
	font-size: 14px;
}

#creditdisp div {
	width: 80%;
	margin: 0 auto!important;
	padding: 20px!important;
}
#creditdisp div div {
	padding: 0 0 10px!important;
}
#creditdisp div div:last-child {
	padding: 0!important;
}
#creditdisp label:nth-of-type(even){
	width: 60% !important;
}

.v-a-top{
	vertical-align: top!important;
    padding-top:16px;
}

li.m-t-10 {
	margin-top: 10px;
}

.form-input_line textarea{
	vertical-align: top;
}

button.btn-clear {
	min-width: auto!important;
	background-color: #ff0000!important;
	width: 40px!important;
}

li.free_images_li .form-input_line{
	margin-bottom: 10px;
}

/*会員側会員情報編集*/
.front-members-edit .form {
	max-width: 800px;
	margin: 0 auto;
}
/*.front-members-edit .form input.i1,
.front-members-edit .form select{
	width: 90%;
}*/

.front-confirm .form{
	max-width: 800px;
	margin: 0 auto;
}
.front-members-edit .form li label,
.front-confirm .form li label{
	width: 25%;
}

.front-members-edit .form li div.form-input_line,
.front-confirm .form li div.form-input_line{
	width: 74%!important;
}
.front-confirm .entry-form ul.form li {
	width: 90%;
	margin-left: 15%;
}
.front-confirm .entry-form ul.form li.form-underline,
.front-confirm .entry-form ul.form li:first-child{
	width: 100%;
	margin-left: 0;
}
.front-confirm .entry-form ul.form li.no{
	width: 100%;
	margin: 0 auto;
}
.front-members-edit .form li .front_picture_from_wrap div.form-input_line{
	width: 74%!important;
}
/*.front-confirm .form .form-input_line p:first-child {
	margin-left: 10%;
}*/
.front-confirm .form .form-input_line p.i2{
	width: 30%;
}

.front-pass .form{
	max-width: 500px;
	margin: 0 auto;
}
/*フリー画像front*/
.front_picture_from_wrap{
	width: 100%;
}
.front_picture_from_wrap .req-area{
	vertical-align: top;
	width: 11%!important;
}

.front_picture_from_wrap .form-input_line{
	margin-top: 10px;
	width: 74%!important;
}

ul.picture_from_wrap .form-input_line input {
	max-width: 320px;
}

ul.picture_from_wrap li.err_li{
	padding: 0;
	margin-bottom: 0;
}
ul.picture_from_wrap li div.form-input_line:last-child{
	margin-bottom: 0;
}
ul.picture_from_wrap.member{
	width: 100%;
}
ul.picture_from_wrap.member .form-input_line{
	margin-top: 10px;
	width: 74%!important;
}
ul.picture_from_wrap.member p.help_text{
	margin-left: 0;
}
/*２番目以降のずれ応急処置*/
/*ul.picture_from_wrap .form-input_line .drop_zone{
	margin-left: 5px;
}
ul.picture_from_wrap li:first-of-type .form-input_line .drop_zone{
	margin-left: 0!important;
}*/
/*画像投稿内のinput*/
ul.picture_from_wrap .form-input_line input.ajax-upload{
	width: 80%!important;
}
/*パスワード*/
.front-pass .entry-form ul.form li div.form-input_line{
	width: 77%;
}
.front-pass .entry-form ul li label{
	width: 20%;
}
.front-pass .entry-form ul li span.req-area{
	width: 12%;
}
.front-pass .entry-form input.i1 {
	width: 88%;
}
/*エラー枠線*/
input.err_color,
select.err_color,
textarea.err_color{
	border-color: #ff0000!important;
	background-color: #fff!important;
}
.form-check-input.err_color + .radio-label:after,
.form-check-input.err_color + .checkbox-label:after {
	border-color: #ff0000!important;
}
span.req-area.required.err_color+div .trumbowyg-editor,
.err_color.trumbowyg-editor{
	border: #ff0000 solid 2px!important;
}

.entry-form .drop_zone.normal.err_color {
	border: solid 2px #ff0000;
}
input.err_color:read-only {
	border-color: #d7d7d3!important;
	color: #999!important;
	background-color: #ebebe4!important;
}
select[style*='user-select: none'].err_color {
	border-color: #d7d7d3!important;
	color: #999!important;
	background-color: #ebebe4!important;
}
/*ie*/
input[readonly].err_color {
	border-color: #d7d7d3!important;
	color: #999!important;
	background-color: #ebebe4!important;
}


/*全中央寄せ*/
ul.form {
	max-width: 910px;
	margin: 0 auto;
}
.tab.entry-form ul.form{
	max-width: 1100px;
	margin: 0 auto;
}
.entry-form input.i2, .entry-form select.i2 {
	width: 44%!important;
	margin-right: 1%;
}
.entry-form input.i1 {
	width: 89%;
}
.entry-form select {
	width: 89%;
}
/*幅個別設定*/
input#id_eurl {
	width: 61%;
}
input.i1#id_purl {
	width: 79%!important;
}
.admin-settings-sub input#id_eurl {
	width: 79%;
}

.admin-settings-sub .free_list li input{
	width: 77%;
}
.extra_from select.user_group_select {
	width: 83%;
}

/*お問い合わせ*/
.contact textarea.i1 {
	width: 89%!important;
}

/*画像追加*/
ul.picture_from_wrap li {
	margin: 0 auto 10px;
}
ul.picture_from_wrap li:last-child {
	margin: 0 auto;
}

/*管理側上部追加フォーム*/
button.btn-clear.disabled {
	background-color: gray!important;
}
.entry-form.input.top {
	width: 100%;
	max-width: 1100px;
	padding: 20px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.entry-form.input.top ul {
	vertical-align: top;
	width: 48%;
	display: inline-block;
	margin: 0;
}
/* .entry-form.input.top ul.form:last-of-type div.form-input_line{
	text-align: right;
} */
@media screen and (max-width: 1300px) {
	.entry-form.input.top ul{
		margin-left: 30px;
	}
}
/* エラー */
.err_txt {
	display:block;
	font-size:12px;
	font-weight:500;
	color:#f00;
	margin-left: 22%;
}
.search-form .err_txt{
	padding:10px 0;
	margin-left: 0;
}
#contents.login-wrap .err_txt {
	/* padding-left: 25%; */
	font-size: 12px;
	margin-left: 19%;
}
#contents.w800-wrap .err_txt{
	margin-left: 28%;
	font-size: 12px;
	margin-top: -5px;
}
.err_txt.err_center {
	margin-left: unset;
	text-align: center;
}
/*管理側その他*/
li.free_images_li .err_txt {
	margin-left: 10%!important;
}
.front-members-edit .err_txt{
	margin-left: 32%;
}
.front_picture_from_wrap .err_txt {
	margin-left: 9%;
}

table.companion_table .err_txt {
	margin-left: 6%!important;
}
table + .err_li .err_txt,
table + .err_txt,
.tab table + .err_txt{
	margin-left: 0!important;
	margin-top: 5px;
}
/*イベント申し込み　その他 登録項目*/
.entry-form.questionnaire .err_txt {
	margin-left: 8%;
}
/*管理タブ*/
/*.tab .err_txt {*/
/*	margin-left: 21.2%!important;*/
/*}*/
.entry-form.input.top .err_txt {
	margin-left: 25%;
}
.front-pass .err_txt {
	margin-left: 31%;
}
/*イベント申し込み条件*/
/*イベント申し込み情報*/
.entry-form.input.event.event2 .err_txt {
	margin-left: 22%;
}
.event2 .err_txt.err_pos2 {
	margin-left: 21.5%;
}
.entry-form.input.event.event2 .extra_from + li .err_txt{
	margin-left: 10%;
}
/* イベントキャンセル */
.delete_response {
    position: relative;
    padding: 30px;
}
.delete_response ul {
	margin: 0 18%;
}
.delete_response ul li{
    text-align: left;
}
.delete_response ul li label.modal-label {
    width: 28%;
    font-size: 15px;
    display: inline-block;
    color: #80868b;
    position: relative;
    vertical-align: middle;
}
.delete_response ul li label.term{
    width: 17%;
}
.delete_response ul li span.term{
    font-size: 14px;
}
/*マスター管理*/
.free_list li + li .err_txt{
	margin-left: 28%;
}

/*help_text*/
.entry-form p.help_text {
	padding: 0;
	color: #777;
}

#contents p.help_text {
	width: 89%;
	margin-left: 7%;
	display: block!important;
	font-size: 11px;
}
#contents p.help_text.images {
/* 画像複数投稿(help_textの位置が異なる) */
	margin-left: 8.2%;
}
#contents p.help_text.not_width {
	width: auto;
	margin-left: 8%;
	line-height: 1.8rem;
}
#contents p.help_text.not_width {
	margin-left: 9%;
}
.event2 ul.form li div.form-input_line .help_text {
	position: relative!important;
	left: 16%!important;
}
.event2 p.help_text {
	top: 0!important;
}

p.help_text.m-left,
.add_field.m-left {
	margin-left: 22%!important;
}
p.help_text.m-left2,
.add_field.m-left2{
	margin-left: 16%!important;
}
/*その他 登録項目*/
.enquete_help_text {
	margin-left: 6%;
	margin-bottom: 20px;
}

.front-members-edit .help_text{
	margin-left: 8%;
}

/*管理側上部追加フォーム*/
#contents p.help_text.inline {
	width: auto;
	display: inline-block;
	line-height: 3.3em;
}
/*管理側タブ*/
/*.tab .help_text {
	margin-left: 6%!important;
}*/

/*ログイン関係*/
#contents.w800-wrap p.help_text{
	margin-left: 12%;
}
.w800-wrap .entry-form ul li label{
	width: 18%;
}
.w800-wrap .entry-form ul.form li div.form-input_line{
	width: 80%;
}
.front-pass p.help_text{
	margin-left: 14% !important;
}

.btn.one-btn {
	margin: 30px auto!important;
	display: block!important;
}
/*同行者縦並びテーブル*/
.companion_table2 {
	width: 90%;
}
.companion_table2 tr {
	display: block;
	float: left;
	width: 100%;
}
.companion_table2 thead tr {
	border-left: solid 1px #8e8e8e;
}
.companion_table2 tr td,
.companion_table2 tr th {
	border-left: none;
	display: block;
	height: 50px;
	text-align: left;
	border-bottom: none;
}
.companion_table2 tr th {
	border-bottom: none;
}
.companion_table2 thead {
	display: block;
	float: left;
	width: 30%;
}
.companion_table2 thead tr {
	width: 100%;
}
.companion_table2 tbody {
	display: block;
	float: left;
	width: 70%;
}
.companion_table2 tr td + td {
	border-left: none;
}
.companion_table2 thead tr th:last-child,
.companion_table2 tbody tr td:last-child{
	border-bottom: solid 1px #8e8e8e!important;
}
.companion_table2 tr .companion-free1,
.companion_table2 tr .companion-free2,
.companion_table2 tr .companion-free3,
.companion_table2 tr .companion-free4,
.companion_table2 tr .companion-free5 {
	height: 100px;
	overflow: scroll;
}

.extra_from select {
	width: 77%!important;
}

iframe {
	max-width: 100%;
}


.center-area .red.event-cancel-reason{
	margin: 20px auto;
}
.center-area .red.event-cancel-reason p {
	max-width: 100%;
	margin: 0!important;
	width: 100%!important;
}

/*マスター管理*/
.admin-master ul.bulk-buttons.mem.edit_wrap li {
	display: inline-block;
}
.admin-master h2 {
	font-size: 16px;
	margin: 20px auto 5px;
}
.cell-small{
	width: 50px!important;
}
.cell-large{
	width: 34%!important;
}
.cell-medium{
	width: 22%!important;
}
.master_table .cell-small input{
	width: 100px!important;
	margin-bottom: 10px;
}
.master_table .cell-small .checkbox-label{
	padding: 0 0 0 50px;
}
.master_table input.i3,
.master_table select{
	width: 100%!important;
	margin-bottom: 10px;
}
.master_table textarea{
	margin-bottom: 5px;
}
.master_table {
	width: 100%;
	min-width: 1200px;
	font-size: 0.7rem;
	border-collapse:collapse;
	margin:0 auto 20px;
}
.master_table th,
.master_table td {
	padding:5px 15px;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
	font-size:0.8rem;
}
.master_table th {
	width: 15em;
	text-align:center;
}
.master_table td {
	text-align:left;
	vertical-align: top;
	padding: 20px;
	position: relative;
}
#contents table.master_table td .help_text{
	margin: 0!important;
	text-align: left;
	display: inline-block!important;
	width: 300px;
	vertical-align: middle;
}
.master_table td .err_txt{
	margin: 0!important;
}
.master_table td textarea {
	width: 100%;
}
.master_table td textarea + input + .checkbox-label {
	margin-left: -15px;
}
.master_table select {
	display: block;
	width: 100%;
}
.master_table .err_pos1,.master_table .err_pos2, .master_table .err_pos3, .master_table .err_pos4, .master_table .err_pos5, .master_table .err_pos300{
	min-width: auto!important;
}
#contents table.master_table td.help_text_balloon .checkbox-label:hover + .help_text,
#contents table.master_table td.help_text_balloon input:hover + .help_text,
#contents table.master_table td.help_text_balloon select:hover + .help_text{
	display: block!important;
}
#contents table.master_table td.help_text_balloon .help_text {
	display: none!important;
	width: 100px;
	position: absolute;
	top: -30px;
	right: 20px;
	padding: 8px 10px;
	border-radius: 5px;
	background: #015da2;
	color: #fff;
	font-weight:500;
	text-align: center;
}
#contents table.master_table td.help_text_balloon .help_text:after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 42%;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #015da2;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
#contents table.master_table td.help_text_balloon .checkbox-label + .help_text{
	top: -48px;
	right: -14px;
	left: auto;
	width: 120px!important;
}

p.not_option {
	margin: 20px 0;
}
.entry-form ul li p.not_option > label {
	color: unset;
}
.center {
	text-align: center;
}
/*width600*/
#contents.w600-wrap{
	width: 100%;
	max-width: 600px!important;
}
.w600-wrap .contents-inner {
	padding-bottom: 0!important;
}
.w600-wrap .entry-form input.i1 {
	width: 100%!important;
}
/*会員お知らせsnsあり*/
.sns-info-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 98%;
	margin: 0 auto;
}
.sns-info-wrap .info-box {
	width: 32%;
	height: 500px;
	overflow: scroll;
	margin-left: 1%;
}
.sns-info-wrap:after {
	content: "";
	display: block;
	width: 32%;
	height: 0;
	margin: 1%;
}
.sns-info-wrap a{
	border: solid 1px #ddd;
}
.info.pages-detail_list .sns-info-wrap .info-box .image{
	width: 100%;
}
.info.pages-detail_list .sns-info-wrap .info-box .inner {
	width: 100%;
	position: relative;
	padding: 10px;
}
.sns-info-wrap .sns > div {
	margin-top: 0!important;
}
.sns-info-wrap .sns + .inner {
	display: none;
}
.sns-info-wrap .info-box_add-style:hover {
	background: none;
}
.sns-info-wrap iframe{
	min-width: 200px!important;
}

/*sns-cooperation-area*/
.sns-cooperation-area h2{
	margin:0 auto 20px;
	font-size: 16px;
}
.sns-cooperation-area{
	width: 520px;
	margin: 0 auto;
}
.sns-cooperation-area li{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: solid 1px #ddd;
	padding: 5px 0;
}
.sns-cooperation-area li:first-of-type{
	border-top: solid 1px #ddd;
}
.sns-cooperation-area li span{
	width: 500px;
	vertical-align: middle;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
	font-size: 14px;
	font-weight:500;
}
.sns-cooperation-area li a{
	width: 100px;
	margin-left: 20px;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}
.sns-cooperation-area .active-btn{
	background: #f00;
}
.sns-cooperation-area .active-btn:hover {
	background: #ff9f9f;
}

.sns-cooperation-area .twitter{
	color: #1da1f2;
	background-image: url(../img/twitter_icon.png);
	background-repeat: no-repeat;
	-webkit-background-size: 34px auto;
	-moz-background-size: 34px auto;
	-o-background-size: 34px auto;
	background-size: 34px auto;
	background-position: 5px 6px;
	padding-left: 50px;
}
.sns-cooperation-area .twitter:before{
	content: "";

}
.sns-cooperation-area .facebook{
	color: #1877f2;
	background-image: url(../img/fb_icon.png);
	background-repeat: no-repeat;
	-webkit-background-size: 29px auto;
	-moz-background-size: 29px auto;
	-o-background-size: 29px auto;
	background-size: 29px auto;
	background-position: 10px 8px;
	padding-left: 50px;
}
.sns-cooperation-area .instagram {
	color: #f00075;
	background-image: url(../img/insta_icon.png);
	background-repeat: no-repeat;
	-webkit-background-size: 29px auto;
	-moz-background-size: 29px auto;
	-o-background-size: 29px auto;
	background-size: 29px auto;
	background-position: 10px 8px;
	padding-left: 50px;
}

.sns-cooperation-area .google{
	color: #000;
	background-image: url(../img/google_icon.png);
	background-repeat: no-repeat;
	-webkit-background-size: 29px auto;
	-moz-background-size: 29px auto;
	-o-background-size: 29px auto;
	background-size: 27px auto;
	background-position: 10px 6px;
	padding-left: 50px;
}

.sns-cooperation-area .line{
	color: #02c301;
	background-image: url(../img/line_icon.png);
	background-repeat: no-repeat;
	-webkit-background-size: 29px auto;
	-moz-background-size: 29px auto;
	-o-background-size: 29px auto;
	background-size: 29px auto;
	background-position: 10px 8px;
	padding-left: 50px;
}

/*グレーアウト時placeholder*/
input[type=text]:disabled::placeholder,
input[type=password]:disabled::placeholder,
textarea:disabled::placeholder,
textarea:read-only::placeholder,
input:read-only::placeholder{
	color: #ebebe4!important;
	-webkit-text-fill-color: #ebebe4!important;
}
/*ie*/
input[type=text]:disabled:-ms-input-placeholder,
input[type=password]:disabled:-ms-input-placeholder,
textarea:disabled:-ms-input-placeholder,
textarea:read-only:-ms-input-placeholder,
input:read-only:-ms-input-placeholder {
	color: #ebebe4!important;
}

/* trumbowyg エディタ */
/* エディタ内の改行に影響が出るためコメントアウト */
/* .trumbowyg-editor p{
	display: inline;
} */
.column_area{
	width: 100%;
	display: flex!important;
	flex-wrap: wrap;
}
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_1_1,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_2_1,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_2_2,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_3_1,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_3_2,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_3_3{
	border: dotted 1px #999;
}

.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_2_2,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_3_2,
.trumbowyg-box.trumbowyg-editor-visible.trumbowyg-ja.trumbowyg .column_area #column_3_3{
	border-left: none;
}

#column_1_2,
#column_1_3,
#column_2_3{
	display: none;
}
.column_area #column_1_1 {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 20px 0;
	vertical-align: top;
	display: block;
}

.column_area #column_2_1,
.column_area #column_2_2{
	width: 50%;
	margin: 0 0 10px 0;
	padding: 20px 0;
	vertical-align: top;
	justify-content: space-between;
}
#column_3_1,
#column_3_2,
#column_3_3{
	width: 33.3%;
	margin: 0 0 10px 0;
	padding: 20px 0;
	vertical-align: top;
	justify-content: space-between;
}


.addline_1{
	border-style: solid;
	display: block;
	margin: 10px auto;
}
/* trumbowyg エディタここまで */

/*グレーアウト時placeholder*/
input[type=text]:disabled::placeholder,
input[type=password]:disabled::placeholder,
textarea:disabled::placeholder,
textarea:read-only::placeholder,
input:read-only::placeholder{
	color: #ebebe4!important;
	-webkit-text-fill-color: #ebebe4!important;
}
/*ie*/
input[type=text]:disabled:-ms-input-placeholder,
input[type=password]:disabled:-ms-input-placeholder,
textarea:disabled:-ms-input-placeholder,
textarea:read-only:-ms-input-placeholder,
input:read-only:-ms-input-placeholder {
	color: #ebebe4!important;
}

/* license_table */
.license_table {
	width: 100%;
	font-size: 0.7rem;
	border-collapse:collapse;
	margin:0 auto;
	margin-bottom: 10px;
}
.license_table th,
.license_table td {
	padding:5px 0.5rem;
	border-style:solid;
	border-width:1px;
	border-color:#80868b;
	text-align:center;
	font-size:0.8rem;
}
.license_table .th-full_name {
	min-width: 8rem;
}
.license_table .th-date {
	width: 7rem;
}
.license_table .th-datetime {
	width: 9rem;
}
.license_table .th-price{
	width: 6rem;
	white-space:nowrap;
}

/*license_table、search-result調整 シクミネットポリシー*/
.license_table th.height_adjustment,
.license_table td.height_adjustment,
.search-result th.height_adjustment,
.search-result td.height_adjustment {
	width: 0;
	border: none;
	padding: 5px 0;
}
.license_table th.height_adjustment.row2:before,
.search-result th.height_adjustment.row2:before {
	display: block;
	float: left;
	height: 2.5rem;
	content: "";
}
.license_table td.height_adjustment:before,
.search-result td.height_adjustment:before {
	display: block;
	float: left;
	height: 2rem;
	content: "";
}
.license_table td.height_adjustment.row3:before,
.search-result td.height_adjustment.row3:before {
	height: 3rem;
}
/* 会員管理 詳細 承認履歴 */
.license_table.tbl-approvals .th-applicant_reason {
	min-width: 8rem;
}
.license_table.tbl-approvals .th-status {
	width: 6rem;
}
/* 会員管理 詳細 イベント申込履歴 */
.license_table.tbl-responses .th-event {
	min-width: 10rem;
}
.license_table.tbl-responses .th-ticket {
	min-width: 10rem;
}
.license_table.tbl-responses .th-period_datetime {
	width: 7rem;
}
.license_table.tbl-responses .th-buy_count {
	width: 5rem;
}
.license_table.tbl-responses .th-status {
	width: 7rem;
}
.license_table.tbl-responses .th-attendance_status {
	width: 4rem;
}
.license_table.tbl-responses .th-result_status {
	width: 5rem;
}
.license_table.tbl-responses .th-approvals {
	width: 6rem;
}
/* 会員管理 詳細 イベント申込履歴 アンケート用 enquete_table */
.is_enquete:hover {
	background-color: #aed8e3!important;
	cursor: pointer;
}
tr.target {
	background-color: #e7f5ff!important;
}
table.enquete_table{
	width: 100%;
}
table.enquete_table th{
	text-align: left;
}
table.enquete_table th{
	border: none;
	border-bottom: 1px solid black;
}
table.enquete_table td{
	border:none;
	padding-bottom: 1%;
}
/* 会員管理 詳細 ご請求内容、お支払い履歴　license_table調整 */
.license_table .th-charge-status {
	width: 4rem;
}
.license_table .th-charge-price,
.license_table .th-payment-price {
	width: 6rem;
	white-space:nowrap;
}
.license_table .th-payment-paid_type {
	width: 9rem;
}
.license_table .th-payment-status {
	width: 6rem;
	white-space:nowrap;
}
.license_table .th-payment-receipt {
	width: 4rem;
}

/*イベント申込履歴*/
.front-event.history .contents-inner {
	max-width: 100%;
}
.front-event.history .entry-form ul.form{
	max-width: 100%;
}
/*イベント申込履歴　license_table調整*/
.history .license_table .th-event{
	min-width: 10rem;
}
.history .license_table .th-ticket{
	min-width: 18rem;
}
.history .license_table .th-period_datetime {
	width: 7rem;
}
.history .license_table .th-app-price, .lms-api_table .th-app-price {
	width: 5rem;
	white-space:nowrap;
}
.history .license_table .t-app-price{
	text-align: right;
}
.history .license_table .th-app-number{
	width: 4rem;
}
.history .license_table .th-app-date, .lms-api_table .th-app-date{
	width: 7rem;
}
.history .license_table .th-app-status{
	width: 7rem;
}
.history .license_table .th-attendance{
	width: 3rem;
}
/*参加者*/
.history .license_table .th-participant{
	width: 4rem;
}
/*合否*/
.history .license_table .th-result_status, .lms-api_table .th-result_status{
	width: 4rem;
}
/*結果承認*/
.history .license_table .th-result-approval{
	width: 5rem;
}
/*進捗状況*/
.lms-api_table .th-course_completion_status{
	width: 6rem;
}
/*最終アクセス日時*/
.lms-api_table .th-course_last_access_datetime{
	width: 10rem;
}
.lms_status_btn {
	min-width: 6rem;
	width: 6rem;
}
@media screen and (max-width: 1300px) {
	.history .license_table .th-ticket{
		min-width: 10rem;
	}
}
@media screen and (max-width: 1000px) {
	.history .license_table .th-ticket{
		min-width: 7rem;
	}
}

/* 承認管理 */
.search-result.tbl-events.tbl-approvals .th-event_subcategory {
	width: 176px;
}
.search-result.tbl-responses.tbl-approvals .th-user_number {
	width: 120px;
}
.search-result.tbl-responses.tbl-approvals .th-full_name {
	width: 240px;
}

/* 添付ファイル */
#contents p.help_text.upload {
	width: auto;
	margin-left: 5px;
	display: inline-block!important;
	font-size: 11px;
}

/* アプリバナー管理 */
.search-result.tbl-app_banners .th-banner_pict {
	width: 103px;
}

/* オンラインイベント モーダル */
.modal-box.response_info-box {
	height: auto;
    padding-top: 35px;
	padding-bottom: 0;
}
.modal-box.response_info-box .modal-inner {
	height: 100%;
	max-height: 90vh;
    overflow-y: auto;
    padding-top: 0;
}
.modal-box.response_info-box .modal-inner div.message {
	font-size: 15px;
	text-align: left;
}
.modal-box.response_info-box .modal-inner div.message .title {
	font-weight: 500;
}
.modal-box.response_info-box .modal-inner div.download_files .btn.download {
	width: auto;
	min-width: auto;
	margin-left: 10px;
	padding: 4px 10px 0 10px;
	line-height: initial;
	vertical-align: middle;
}
.modal-box.response_info-box .modal-inner div.download_files .btn.download i {
	opacity: 1;
}
.modal-box.response_info-box .modal-btnarea {
	margin-top: 20px;
}
/* オンラインイベント モーダル(ホーム画面専用) */
.modal-box.response_info-box .modal-inner .exist_upper {
	border-top: solid 1px #80868b;
	margin-top: 20px;
	padding-top: 20px;
}

/*リスト表示スタイル*/
.event_box_dl{
	display: none;
}

/*リスト表示スタイル別テーブル*/
.sub_info{
	display: none;
}

.list_style_table {
	background: #fff;
	padding: 20px;
	margin: 0 auto 20px;

}
.list_style_table a{
	color: initial;
	text-decoration: none;
}
.list_style_table a:hover{
	text-decoration: none;
	background: #ddd;
}
.list_style_table table{
	border-collapse: collapse;
	width: 100%;
}
.list_style_table tr {
	border-bottom: solid 1px #ddd;
	cursor: pointer;
}
.list_style_table tr:hover {
	background: #e7f5ff;
}
.list_style_table th,
.list_style_table td{
	padding:  10px 1rem;
	text-align: left;
	position: relative;
}
.list_style_table th{
	background: #ddd;
	min-width: 5rem;
}
.list_style_table td.event_info {
	padding:  10px 0;
}
.list_style_table th.location_th{
	width: 16em!important;
}
.list_style_table th:before{
	content: "";
	width: 1px;
	height: 90%;
	background: #fff;
	position: absolute;
	right: 0;
	top: 5%;
}
.list_style_table td{
	width: 10em;
}

.list_style_table .event_info{
	width: auto;
	vertical-align: top;
}
.list_style_table p.height3 {
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	max-height: calc(24px*5);
	position: relative;
}

.list_style_table td:before{
	content: "";
	width: 1px;
	height: 90%;
	background: #ddd;
	position: absolute;
	right: 0;
	top: 5%;
}
.list_style_table th:last-of-type:before,
.list_style_table td:last-of-type:before{
	content: none;
}
.list_style_table .event_datetime{
	font-size: 10px;
	color: #999;
	padding-left: calc(4.5em + 5px);
	position: relative;
	display: block;
}
.list_style_table p.price-badge{
	text-align: right;
	background: none;
	color: inherit;
	font-size: 12px;
	padding: 0 20px;
}

.list_style_table .status-badge,.list_style_table p.time_status-badge{
	top: 0!important;
	bottom: auto;
}

.list_style_table .event_subcategory {
	height: auto;
	line-height: inherit!important;
	position: relative;
	width: auto;
	background: none;
	border: solid 1px #b8b8b8;
	font-size: 10px!important;
	color: #b8b8b8;
	padding: 0 5px;
	border-radius: 2px;
	margin-left: 0.5em;
	display: inline-block;
}
.list_style_table .event_name {
	font-weight: 500;
	font-size: 16px;
	padding-right: 5em;
	margin: 2px 0 0;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: calc(24px*5);
	position: relative;
	padding-left: 3em;
	height: 2.8em;
}
.list_style_table .event_name span{
	display: inline-block;
}
.list_style_table p{
	line-height: 1.4!important;
}
.list_style_table .status-badge.slightly,
.list_style_table .status-badge.closed,
.list_style_table .status-badge.before-term,
.list_style_table .status-badge.after-term,
.list_style_table .status-badge.canceled{
	background: none!important;
	color: red!important;
	font-size: 12px!important;
	height: auto;
	line-height: initial!important;
	top: 10px!important;
	width: auto;
	padding: 0;
	right: 15px;
}
/*.list_style_table .status-badge:after {
	content: "";
	position: absolute;
	top: 0.3em;
	left: 4px;
	height: 0;
	border-style: solid;
	border-color: transparent red transparent transparent;
	border-width: 10px 10px 0px 0;
	border-radius: 50%;
}*/
.list_style_table .event_datetime{
	display: block;
}
.list_style_table .new_release:before,
.list_style_table .close_deadline:before,
.list_style_table .reccomend:before{
	margin: -2px 5px 0 0;
	font-size: 12px;
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 500;
	line-height: 1.5em;
}
.list_style_table .close_deadline:before{
	margin: 0;
}
.list_style_table .new_release:before{
	content: "NEW";
	color: #ff8100;
}
.list_style_table .reccomend:before{
	content: "オススメ";
	color: #ff8100;
	letter-spacing: -1.2px;
}
.list_style_table .close_deadline:before{
	content: "締切間近";
	color: #9064ce;
	position: absolute;
	left: auto;
	right: 0;
	top: 2em;
}

/*プラスアイコンアニメーション*/
.plus_icon {
	display: block;
	position: relative;
	padding-right: 20px;
}
.plus_icon::before,
.plus_icon::after {
	content: '';
	display: block;
	width: 15px;
	height: 3px;
	border-radius: 5px;
	background: #005ca2;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.plus_icon::after {
	background: #005ca2;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
.active::after {
	transform: rotate(0);
	transition: 0.5s;
	height: 2px;
}

/* ufields用 */
.entry-form ul.form li.li_hide {
	display: none;
}

/* ラベルマスタ用 */
.label-wrap {
    border: solid 1px #80868b;
    width: 600px;
    height: 305px;
    padding: 15px;
}
.label-line {
    height: 50px;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
}
.label-line .label-item {
    flex: 1;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 2px solid #80868b;
    border-radius: 8px;
    line-height: 3rem;
    padding: 0 10px;
    cursor: pointer;
}
.label-line .label-item_smart {
    width: auto;
    flex: unset;
}
.label-line .label-has_space {
    margin-left: 10px;
}
.label-line .label-color_use {
    background-color: #e7f5ff;
    border: 2px solid #005ca2;
}
.label-line .label-color_disabled {
    background-color: #d4d4d4;
}

/* フロント会員検索周り */
/* 会員検索 */
.col1.front #search_result{
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-word;
}
.personal_detail .tabs_c{
	background: #fff;
}
.front-connection .contents-inner {
	margin: 0 auto;
	border-radius: 0;
	padding: 20px 0;
}
/* 会員検索上部フォーム */
.front-connection #connection_form{
	display: flex;
}
.front-connection #connection_form .search-area{
	width: 100%;
	margin: 0 auto;
}
.front-connection .contents-inner .entry-form {
	min-height: auto;
	width: 90%!important;
	background-color: #fff;
	max-width: 1280px;
	padding: 0;
	margin: 0 auto;
	border-radius: 0;
}
/* 入力欄幅調整 */
.front-connection .entry-form .search-area input.i1,
.front-connection .entry-form .search-area select.i1,
.connection_form_set .free_word{
	min-width: 12rem;
}
.front-connection .entry-form .search-area input.i2,
.front-connection .entry-form .search-area select.i2{
	width: 100%!important;
}
.front-connection .entry-form .search-area select.i2{
	min-width: 7rem;
}
/* エラー */
.front-connection .entry-form .search-area .err_txt{
	display: flex;
	align-items: center;
	justify-content: center;
}
.front-connection .entry-form .search-area .err_txt .material-icons{
	margin-top: 0;
}
.front-connection input[type=text],
.front-connection select {
	font-size: 13px;
}
#connection_form #search_members .material-icons {
	font-size: 1.8rem!important;
}
.front-connection .entry-form .select_field {
	display: inline-block;
	position: relative;
	z-index: 1;
	vertical-align: middle;
}
.connection_form_set {
	display: flex;
	align-items: center;
	margin: 0;
	padding-right: 50px;
	position: relative;
}
.connection_form_set .free_word{
	display: flex;
	position: relative;
	vertical-align: middle;
	min-width: 40%;
}
.connection_form_set button{
	position: absolute;
	right: 0;
	margin: 0;
	background: #005ca2;
	width: 50px!important;
	min-width: auto;
	border-radius: 0 3px 3px 0;
	height: 100%;
}
#connection_form select {
	border-radius: 0;
	cursor: pointer;
}
#connection_form input,
#connection_form select,
.front-connection .entry-form #place_proxy {
	border: 1px solid #d4d4d4;
	border-radius: 2px;
	width: 100%;
	border-right: none;
	height: 40px!important;
}
/* ボタン 見出し*/
.front-connection .right-btn-area{
	min-height: 45px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	text-align: left;
}
.front-connection .right-btn-area .btn-block{
	text-align: right!important;
}
.front-connection h2 {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
.front-connection .btn-area.right-btn-area .btn{
	margin: 0;
}
.front-connection .right-btn-area .material-icons{
	font-size: 40px;
	cursor: pointer;
}
.front-connection .right-btn-area .search-result-text span {
	font-weight: 500;
	font-size: 20px;
	margin: 0 0.2rem;
}
.front-connection .top-back-btn-area {
	position: relative;
	right: auto;
	text-align: left;
	top: -10px;
	max-width: 1100px;
	margin: 0 auto;
	display: block;
}
.front-connection .top-back-btn-area .btn{
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	padding: 5px 10px;
	border: solid #0156b1 1px;
	border-radius: 4px;
	color: #0156b1;
	margin: 0 0 10px;
	background: none;
	line-height: initial;
	font-family: "Noto Sans JP","YuGothic","SF Pro JP","SF Pro Text","SF Pro Icons","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
	min-width: auto;
}
.front-connection .top-back-btn-area .btn:hover{
	background: #e7f5ff;
}
.front-connection .top-back-btn-area .btn i{
	font-size: 16px;
	color: #0156b1;
	opacity: 1;
	margin: 0;
}
/* パンクズパターン */
.front-connection .readcrumb-list {
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 20px;
}
.front-connection .readcrumb-list a{
	text-decoration: none;
}
.front-connection .readcrumb-list li{
	margin-right: .4rem;
}
.front-connection .readcrumb-list li::after{
	content: ">";
	margin-left: .4rem;
	font-weight: normal;
}
.front-connection .readcrumb-list li:last-child::after{
	content: none;
}
/* 上部メッセージエラーと統一 */
.profile-wrapper .messages.form-success{
	padding: 20px 25px;
}
.profile-wrapper .messages.form-success p{
	font-size: 18px;
	margin-bottom: 0;
}
.profile-wrapper .messages.form-success p i{
	font-size: 28px;
	vertical-align: middle;
	margin: -5px 5px 0 0;
	opacity: 1;
}
.profile-wrapper .search-form-error strong, .form-success strong{
	vertical-align: baseline;
}
/* レイアウト */
.profile-wrapper .profile_layout{
	display: flex;
	max-width: 1100px;
	margin: 0 auto;
}
/* left-area */
.profile-wrapper .profile_layout .left_area {
	width: 230px;
	margin-right: 30px;
}
.profile-wrapper .profile_layout .left_area .photo {
	width: 180px;
	height: 180px;
	background: #ddd;
	border-radius: 50%;
	margin: 0 auto 20px;
	position: relative;
}
.profile-wrapper .profile_layout .left_area .photo i{
	font-size: 180px;
	color: #fff;
	opacity: 1;
}
.profile-wrapper .profile_layout .left_area .photo-thumbnail{
	background-size: cover;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background-position: center;
	position: absolute;
	top: 0;
}
.profile-wrapper .profile_layout .left_area .user_name{
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2em!important;
}
.profile-wrapper .profile_layout .left_area .user_name span{
	display: block;
}
.profile-wrapper .profile_layout .left_area .user_name .inline{
	font-size: 12px;
	font-weight: normal;
}
.profile-wrapper .profile_layout .left_area .form-input_line{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 10px;
}
.profile-wrapper .profile_layout .left_area .form-input_line label{
	width: 30%;
	text-align: right;
	font-weight: 500;
	padding-right: 1em;
	line-height: 1.2em!important;
}
.profile-wrapper .profile_layout .left_area .form-input_line label + p{
	width: 70%;
	text-align: left;
	padding: 0!important;
	line-height: 1.2em!important;
}
/* right-area */
.profile-wrapper .profile_layout .right_area {
	width: calc(100% - 260px);
}
.profile-wrapper .profile_layout .right_area img {
	max-width: 100%;
}
.profile-wrapper .profile_layout .right_area .form-input_line,
.profile-wrapper .profile_layout .entry-form ul li label{
	padding-bottom: 20px;
}
.profile-wrapper .profile_layout .entry-form ul li .questionnaire-check label{
	padding-bottom: 0;
}
/* formデザイン */
.profile-wrapper .profile_layout .entry-form{
	padding: 40px;
	border-radius: 20px;
	min-height: 300px;
}
.profile-wrapper .profile_layout .entry-form ul.form li{
	display: flex;
	flex-wrap: wrap;
}
.profile-wrapper .profile_layout .entry-form ul li > label{
	font-weight: 500;
	font-size: 16px;
	color: #000;
	text-align: right;
	width: 20%!important;
	position: relative;
	text-align: left;
	margin-right: 0;
}
.profile-wrapper .profile_layout .entry-form.other_profile_color ul li > .form-input_line > p{
	padding: 0!important;

}
.profile-wrapper .profile_layout .entry-form ul li.form-underline,
.profile-wrapper .profile_layout .entry-form ul li.label_field label{
	font-weight: 500;
	font-size: 18px!important;
	border-bottom: solid #005ca2 2px!important;
	padding-bottom: 10px;
	text-align: left;
	margin: 20px 0 10px;
	padding-left: 0;
	color: #005ca2!important;

}
/* 住所 */
.profile-wrapper .profile_layout .entry-form ul li.form-underline + li ul.h-adr{
	width: 100%;
    padding: 20px 0 0;
    margin-bottom: 20px;
}
/* 公開非公開チェックボックス */
/* 会員プロフィールと共通 */
.profile-wrapper .profile_layout .entry-form ul li .form-input_line{
	width: 79%!important;
}
.profile-wrapper .profile_layout .entry-form ul li.form-underline label,
.profile-wrapper .profile_layout .entry-form ul li.label_field label{
	width: 100%!important;
}
/* マイプロフィールのみ */
.entry-form.input.my_profile_color {
	margin-bottom: 20px;
}
/* 下線見出しの位置調整 */
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li.form-underline,
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li.label_field,
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li:not(.label_field) > label{
	padding-left: 3rem;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li.public-checkbox + li label{
	margin-top: 10px;
}
/* 公開非公開上部見出し */
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li.public-checkbox{
	font-weight: 500;
	border-bottom: solid #fff;
	margin-bottom: 20px;
	position: relative;
	padding-left: 2rem;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li.public-checkbox .span-checkbox-label::before{
	content: "";
	display: block;
	position: absolute;
	top: -2px;
	left: 8px;
	margin-top: 0;
	width: 0.6rem;
	height: 0.8rem;
	border-right: 5px solid #0156b1;
	border-bottom: 5px solid #0156b1;
	transform: rotate(45deg);
	z-index: 1;
}
/* 公開非公開チェックボックス */
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li > label{
	color: #80868b;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li > label.checkbox-label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 5px;
	margin-top: 0;
	width: 0.6rem;
	height: 0.8rem;
	border-right: 5px solid #0156b1;
	border-bottom: 5px solid #0156b1;
	transform: rotate(45deg);
	opacity: 0;
	z-index: 1;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li > label.checkbox-label::after {
	top: 0;
	left: 0;
	margin-top: 0;
	width: 1.5rem;
	height: 1.5rem;
	border: none;
	border-radius: 3px;
	background: #fff;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li input[type=checkbox]:checked + label.checkbox-label{
	color: #000;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color ul li input[type=checkbox]:checked + label.checkbox-label:before{
	opacity: 1;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color input[readonly] + label.checkbox-label:after {
	border: none;
	background: none;
}
.profile-wrapper .profile_layout .entry-form ul li span.req-area{
	width: 3rem;
}
.profile-wrapper .profile_layout .entry-form input,
.profile-wrapper .profile_layout .entry-form select{
	background-color: #fff;
	border:none;
	font-size: 16px;
	height: 2em;
}
.profile-wrapper .profile_layout .entry-form textarea{
	background-color: #fff;
	border:none;
	font-size: 16px;
	height: 10em;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color input,
.profile-wrapper .profile_layout .entry-form.my_profile_color select,
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea{
	width: calc(100% - 3rem)!important;
}
/* 入力フォーム幅調整 */
.profile-wrapper .profile_layout .entry-form.my_profile_color input.i1,
.profile-wrapper .profile_layout .entry-form.my_profile_color select.i1{
	width: calc(100% - 3rem)!important;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color input.i2,
.profile-wrapper .profile_layout .entry-form.my_profile_color select.i2{
	width: calc(100% / 2 - 2rem)!important;
}
.profile-wrapper .profile_layout .entry-form ul li .form-input_line p{
	font-size: 16px!important;
	margin-left: 10%;
	padding: 0;
	width: 90%;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color input:not([readonly='readonly']):required,
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea:not([readonly='readonly']):required,
.profile-wrapper .profile_layout .entry-form.my_profile_color select:not([style*='user-select: none']):required{
	border: 1px solid #005ca2;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color input:not([readonly='readonly']):required:valid,
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea:not([readonly='readonly']):required:valid,
.profile-wrapper .profile_layout .entry-form.my_profile_color select:not([style*='user-select: none']):required:valid{
	border: none;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color div.disabled,
.profile-wrapper .profile_layout .entry-form.my_profile_color input[type=text]:disabled,
.profile-wrapper .profile_layout .entry-form.my_profile_color input[type=password]:disabled,
.profile-wrapper .profile_layout .entry-form.my_profile_color input:read-only,
.profile-wrapper .profile_layout .entry-form.my_profile_color select:disabled,
.profile-wrapper .profile_layout .entry-form.my_profile_color input[readonly],
.profile-wrapper .profile_layout .entry-form.my_profile_color select[style*='user-select: none'],
.profile-wrapper .profile_layout .entry-form.my_profile_color .questionnaire-check label{
	background: none;
	background-color: initial!important;
	border: none!important;
	color: #000!important;
	-webkit-text-fill-color: #000!important;
	font-size: 16px;
	font-weight: normal;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea:disabled,
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea:read-only{
	background: none;
	background-color: initial!important;
	font-size: 16px;
	border: 1px solid #80868b !important;
	color: #000!important;
	-webkit-text-fill-color: #000!important;
	font-size: 16px;
	font-weight: normal;
	height: 10em !important;
	resize: none !important;
}

#contents .profile-wrapper .profile_layout .entry-form.my_profile_color input:read-only + .help_text{
	display: none!important;
}
.profile-wrapper .profile_layout .entry-form.my_profile_color input:disabled::placeholder,
.profile-wrapper .profile_layout .entry-form.my_profile_color input[type=password]:disabled::placeholder,
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea:disabled::placeholder,
.profile-wrapper .profile_layout .entry-form.my_profile_color textarea:read-only::placeholder,
.profile-wrapper .profile_layout .entry-form.my_profile_color input:read-only::placeholder{
	color: #e7f5ff!important;
	-webkit-text-fill-color: #e7f5ff!important;
}
/* 画像アップロード枠調整 */
.profile-wrapper .profile_layout .entry-form .drop_zone.normal{
	background: none;
	padding: 0;
	margin-top: 10px;
}
.profile-wrapper .profile_layout .entry-form input + .drop_in{
	background: #747578;
	padding: 10px;
}
.profile-wrapper .profile_layout .entry-form input[readonly] + .drop_in{
	display: none;
}
.profile-wrapper .profile_layout .drop_zone .drop_out img{
	vertical-align: bottom;
}
/* ヘルプ位置調整,ラジオチェックボックス(全体調整前にプロフィールフォームだけ適用) */
#contents .profile-wrapper .profile_layout .help_text.not_width,
#contents .profile-wrapper .profile_layout  p.help_text{
	margin-left: 0;
	line-height: 1;
	margin-top: 5px;
	font-size: .8rem!important;
}
#contents .profile-wrapper .profile_layout .err_pos2{
	margin-left: 20%;
	line-height: 1;
	margin-top: -15px;
	width: 100%;
}
#contents .profile-wrapper .profile_layout .help_text.not_width::before,
#contents .profile-wrapper .profile_layout  p.help_text::before,
#contents .profile-wrapper .profile_layout .err_pos2::before {
	content: "";
	width: 10%;
	display: inline-block;
	max-width: 45px;
}
/* ラジオ チェックボックス */
.profile-wrapper .profile_layout .checkbox-label,
.profile-wrapper .profile_layout .radio-label {
	padding-left: 25px;
	margin-right: 30px;
	font-size: 14px;
}
.profile-wrapper .profile_layout .checkbox-label::before,
.profile-wrapper .profile_layout .radio-label::before {
	left: 5px;
}
.profile-wrapper .profile_layout .checkbox-label::after,
.profile-wrapper .profile_layout .radio-label::after {
	left: 0;
}
.profile-wrapper .profile_layout .empty{
	color: #4d4d4d;
	font-size: 14px;
	text-align: center;
}
/* 色設定 */
.my_profile_color{
	background: #e7f5ff!important;
}
.other_profile_color{
	background: #f5f5f5!important;
}
/* 一覧table */
/* flagアイコン */
.front-connection table.search-result i.icon {
	/* 非公開 */
	color: #8e8e8e;
}
.front-connection table.search-result i.icon-visibility,
.front-connection table.search-result i.icon-flag {
	/* 公開中 */
	color: #0e79dd;
}
.front-connection table.search-result th .sp-only{
	display: none;
}
.front-connection table.search-result th{
	height: 3.5rem;
}
.front-connection table.search-result td {
    height: 2.5rem;
}
.front-connection table.search-result th.th-icon,
.front-connection table.search-result th.th-selection {
	width: 4.8rem;
}
.front-connection table.search-result th.th-icon i{
	right: 0.7rem;
	top: -0.7rem;
}
.front-connection .index-erea {
	max-width: 1100px;
	margin: 0 auto;
}
.front-connection table.search-result td .sp-table-title{
	display: none;
}
/* メール画面 */
.front-connection .contact{
	max-width: 1100px;
	margin: 0 auto;
}
.front-connection .profile_mail{
	max-width: 800px;
	margin: 0 auto;
	padding: 30px;
}
.front-connection .form-input_line-right-side{
	margin-left: 16%;
}
.front-connection .form-input_line-right-side::before{
	content: "";
	width: 10%;
    display: inline-block;
    max-width: 45px;
}
.front-connection .form-input_line-right-side p{
	width: 89%;
	display: inline-block;
	font-size: 12px;
}
.front-connection .center_btn_area{
	margin-top: 20px;
}

/* キャンセルモーダル調整 */
.scroll_modal .modal-box {
    max-height: 90vh;
    overflow-y: scroll;
}
.scroll_modal .delete_response ul li span.term{
    font-size: inherit;
}
.scroll_modal .delete_response ul li label.modal-label.term{
    width: 28%;
}
.scroll_modal .emphasis_text{
    font-size: 22px!important;
    font-weight: bold;
}
.scroll_modal .modal-inner .emphasis_text{
    margin: 20px 0 60px;
}
/* ------- */

/* 重複ユーザーチェックモーダル */
div.modal.modal_common div.check_duplicate div.duplicate_list {
	max-height: 10rem;
    overflow-y: auto;
}
div.modal.modal_common div.check_duplicate div.duplicate_list table {
	border-collapse: collapse;
	width: 60%;
	margin: auto;
}
div.modal.modal_common div.check_duplicate div.duplicate_list table td {
	padding: 0 10px;
	vertical-align: top;
	text-align: left;
}
/* 会員検索フォーム　調整 */
.cn-div {
    width: 100%;
}
.connection_form_set.protruding {
	flex-wrap: wrap;
	justify-content: space-between;
	padding-right: 0;
}
.connection_form_set.protruding > div {
	margin-bottom: 10px;
	width: 49%!important;
}
#connection_form .connection_form_set.protruding input, #connection_form .connection_form_set.protruding select, .connection_form_set.protruding #place_proxy {
	border-right: 1px solid #d4d4d4;
}
.connection_form_set.protruding button {
	position: absolute;
	right: 0;
	margin: 0;
	background: #005ca2;
	width: 50px!important;
	min-width: auto;
	border-radius: 0 3px 3px 0;
	height: 40px;
	top: 0;
}
