.bubble-element.Text {
    text-underline-offset: 0.4em!important;
}

/*--- チェックボックス ---*/
/* デフォルト非表示 */
.Checkbox input[type=checkbox]{
display: none;
}

/* boxとその右に来るテキストとの間を調整 */
.Checkbox input[type=checkbox] + label{
	padding-left: 30px;
	display: inline-block;
}

/* チェックを入れる前 */
.Checkbox input[type=checkbox] + label:before{
    display: block;
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    margin-bottom: 200px;
    border: 1px solid #B5BCBE;    /* Gray2 */
    border-radius: 4px;           /*角丸*/
    background-color: #fff;       /*boxの背景色*/
    left: 0px;
}

/* チェック後 */
.Checkbox input[type=checkbox]:checked + label:before{
    background-color:#089CDC;
    border:none;
}
.Checkbox input[type=checkbox]:checked + label:after{
    display: block;
    position: absolute;
    content: "";
    width: 11px;           /*width~transformまで。幅を14px高さ7pxの2pxの実線を左と下に引く。そしてそれを-45度回転*/
    height:6px;
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #fff;   /*実線つまりチェックの色*/
    transform: rotate(-45deg);
    top: 12px;          /*回転したチェックの位置調整、上から50%に配置*/
    left: 5px;         /*回転したチェックの位置調整、左から4pxに配置*/
    margin-top: -6px;   /*回転したチェックの位置調整、上に5px戻す*/
} 

/* ----- 一覧のチェックボックス ------ */
/* boxとその右に来るテキストとの間を調整 */
[id^="list_check"].Checkbox input[type=checkbox]+ label{
  width:20px;
	height:20px;
	margin-bottom:0px;
	display: inline-block;
}

/* チェックを入れる前 */
[id^="list_check"].Checkbox input[type=checkbox] + label:before{
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    margin-bottom: 0px;
    border: 1px solid #B5BCBE;    /* Gray2 */
    border-radius: 4px;           /*角丸*/
    background-color: #fff;       /*boxの背景色*/
    left: 0px;
}

/* チェック後 */
[id^="list_check"].Checkbox input[type=checkbox]:checked + label:before{
    background-color: #089CDC;
    border:none;
}
[id^="list_check"].Checkbox input[type=checkbox]:checked + label:after{
    display: block;
    position: absolute;
    content: "";
    width: 11px;           /*width~transformまで。幅を14px高さ7pxの2pxの実線を左と下に引く。そしてそれを-45度回転*/
    height:6px;
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #fff;   /*実線つまりチェックの色*/
    transform: rotate(-45deg);
    top: 10px;          /*回転したチェックの位置調整、上から50%に配置*/
    left: 3px;         /*回転したチェックの位置調整、左から4pxに配置*/
    margin-top: -6px;   /*回転したチェックの位置調整、上に5px戻す*/
} 



/* ------ ラジオボタン ------ */
.RadioButtons{
    gap: 10px 0px;
}

.RadioButtons label{
    padding-left: 12px;
    line-height: 1.2rem;
    min-height: 24px;
}

/* 選択前 */
.RadioButtons input[type=radio]+label:before {
    width: 24px;
    height: 24px;
    top: -1px;
    border: 1px solid #E0E0E0;
    background-color: #fff;
}

/* 選択後 */
.RadioButtons input[type=radio]:checked+label:before{
	border: 1px solid #E0E0E0;
}
.RadioButtons input[type=radio]:checked+label::after{
	background-color:#089CDC;
    width: 14px;
    height: 14px;
    top: 5px;
    left: 6px;
}


/* -- SPの場合ボタンの順序を逆にする --  */
[id^="row_reverse"] > :first-child{
    order:100!important;
}


/* -- SP MENU内でスクロール -- */
#spmenu{
  overflow-y: scroll;
}

#x_scroll,
#x_scroll_2{
	overflow-x: auto!important;
	overflow-y: hidden!important;
}
#scroll_over{
	overflow: hidden!important;
}
/* --#paging{
	margin-left: auto;
} */
#no_scroll > div{
	overflow: hidden!important;
}

[id^="ellipsis_"],
[id^="ellipsis_"] > div{
	overflow: hidden!important;
	text-overflow: ellipsis!important;
	white-space: nowrap!important;
	height: 1rem!important;
}

[id^="flow"]{
  display: flex;
  flex-wrap: wrap;
  gap: 8px!important;
}

#loader {
  display: inline-block;
  vertical-align: middle;
  color: #009688;
  line-height: 1;
  border-top-color: rgba(8, 156, 220, 1)!important;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}