:root{
  --nav-bar-h: 48px;	/* ヘッダー高さ */
  --a-navList-w: 280px;
	--nav-menu-w: 272px;	/* サイドメニュー幅 */
	--nav-menu-close-m: -272px;	/* サイドメニュー幅 */
  --nav-left-w: 300px; /* ヘッダー内右ボタン幅 */

  --nav-header-h:56px;
  --nav-company-h: 44px;

  --a-content-top-p: 40px;

/* ヘッダー色 */
	/* --header-bg-color: linear-gradient(90deg, var(--p0) 0%, var(--s0) 100%);  */
	--header-bg-color: #1E78CD; 
	--header-color: #FFFFFF;   /* ヘッダー文字色 */

  --g4:#CCCCCC;
}



body{
    /* font-size:14px; */
    min-width:1166px;
}

/* SweetAlert表示の際に一番上までスクロールしてしまうのでコメントアウト */
/* html,
body,
#container-fluid{
  height: 100%;
} */

/* ローディング */
#a-loading{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  opacity: .75;
}
#a-loading.hide{
  display: none;
}
#a-loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}
#a-loading .loader .circle {
  font-size: 6px;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #fff;
  background: -moz-linear-gradient(left,#fff 10%,rgba(255,255,255,0) 42%);
  background: -webkit-linear-gradient(left,#fff 10%,rgba(255,255,255,0) 42%);
  background: -o-linear-gradient(left,#fff 10%,rgba(255,255,255,0) 42%);
  background: -ms-linear-gradient(left,#fff 10%,rgba(255,255,255,0) 42%);
  background: linear-gradient(to right,#fff 10%,rgba(255,255,255,0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
#a-loading .loader .circle::after {
  background: #000;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#a-loading .loader .circle::before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
@-webkit-keyframes load3 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load3 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.navbar{
    padding:0px;
}

body.maincolor1{
  background-color: #F7FAFF;
	font-size: 14px;
}

#main .a-ctrl-btn,
body.maincolor1 .a-ctrl-btn.wh-color,
body.maincolor1 .modal-header .a-ctrl-btn{
    border-radius: 3px;
    background-color:#fff;
    cursor: pointer;
    color: #3285c4;
    border: 1px solid #cccccc;
    box-shadow:none;
    font-weight: normal;
}

#main .manual-btn{
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

#main label.a-ctrl-btn.file-btn{
  background-color: #f5f5f5;
  color: #333333;
  margin-bottom: 0;
}
input[type="file"].file-input {
  display: none;
}

#main .check-learn-box .check-title{
  font-size: 15px;
  font-weight: 700;
}

/* ヘッダー ↓ ********************************************/
.a-header {
	display: flex;
  /* background-color: #3285c4; */
  color:#4691d2;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
  height: var(--nav-header-h);
  line-height: var(--nav-header-h);
  position: relative;
  background-color: #FFF;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}


.a-header .logo{
  display: inline-block;
  /* width: 135px; */
  width: 260px;
  height: 39px;
  background-image: url(./image/header_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
  margin-left: 12px;
}


.a-header .nav-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: bold;
  font-size: 20px;
}

.a-header .right{
    margin-left: auto;

}
.a-header .nav.right > div{
  position: relative;
}
.a-header .nav.right > div::after{
  content: "";
  height: 40px;
  width: 1px;
  background-color: #EEE;
  display: block;
  position: absolute;
  top: 8px;
  right: 0px;
}
.a-header .nav.right > div:last-child:after{
  display: none;
}

.a-header .nav.right > div > a{
  color:#4691d2;
  padding: 10px;
  position: relative;
}

.a-header .nav.right > div a .btn-description,
#nav-toggle-btn .btn-description{
  display: none;
  bottom: -44px;
  right: 0;
}
#nav-toggle-btn .btn-description{
  right: -65px;
}
#nav-toggle-btn.open .btn-description{
  right: -75px;
}

.a-header .nav.right > div a .btn-description::before,
#nav-toggle-btn .btn-description::before{
  transform:rotate(60deg);
  top: -5px;
  right: 20px;
  left: auto;
}
#nav-toggle-btn .btn-description::before{
  right: 85px;
}
#nav-toggle-btn.open .btn-description::before{
  right: 95px;
}
.a-header .nav.right > div a:hover{
  opacity: 0.8;
}

.a-header .login-user{
  position: relative;
}

.a-header .user-info{
  display: flex;
  padding: 0px 10px;
  height: var(--nav-header-h);
  cursor: pointer;
  min-width: 100px;
  align-items: center;
}
.a-header .user-info .user-icon{
  display: flex;
}
.a-header .user-info .user-icon i{
  font-size: 32px;
}
.a-header .user-info .user-icon img{
  border-radius:50%;
  width: 32px;
  height: 32px;
}

.a-header .user-name{
  /* width: 80%; */
  text-align: left;
  padding: 0px 10px;
  line-height: var(--nav-header-h);;

}
.a-header .user-name.multiple{
  line-height: 1.2;
  padding: 4px 10px;
}

.a-header .user-name.multiple.h-login-user-name{
  height: var(--nav-header-h);
  max-height: var(--nav-header-h);
  padding: 10px 8px;
  margin-right: -4px;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 320px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.a-header .user-name.multiple.h-login-user-name:hover{
  overflow: auto;
  white-space: normal;
}
.a-header .user-name.multiple.h-login-user-name > span{
  overflow: hidden;
}

.a-header .user-name > span{
  display: block;
}
.a-header .user-name > span.name{
  font-weight: bold;
}
.a-header .user-name > span.department{
  font-size: 12px;
}

.a-header .login-user .user-navi{
  position: absolute;
  border-radius: 3px;
  /* left: 20px; */
  /* width: calc(100% - 40px); */
  display: none;
  right: 0px;
  width: 220px;
  top:var(--nav-header-h);
  box-shadow : 0px 3px 3px rgba(0, 0, 0, 0.2);
}

  .a-header .nav.right .user-navi .user-info{
    display: none;
  }

.a-header .login-user .user-navi li{
  background-color: #FFF;

}
.a-header .login-user .user-navi li:first-child{
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.a-header .login-user .user-navi li:last-child{
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.a-header .login-user .user-navi li a{
  width: 100%;
  height: 100%;
  text-align: left;
  color:var(--header-bg-color);
  display: inline-block;
  padding: 0px 16px
}
.a-header .login-user .user-navi li a i{
  margin-right: 8px;
}
/* .a-header .login-user .user-navi li:hover{
  opacity: 0.9;
} */
.a-header .user-info.open + .user-navi{
  display: block;
}

/*
.a-header .login-user{
  margin-top: 40px;
  position: relative;
}
.a-header .user-info{
  display: flex;
  padding: 0px 10px;
  height: 66px;
  align-items: center;
  border-radius: 10px;

  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.a-header .user-info:hover,
.a-header .user-info.open
{
  background-color: #61ADD8;
}

.a-header .user-name{
  width: 80%;
  text-align: left;
  padding: 0px 10px;
}


.a-header .login-user .user-navi{
  position: absolute;
  border-radius: 10px;
  left: 20px;
  width: calc(100% - 40px);
  display: none;

}

.a-header .login-user .user-navi li{
  background-color: #FFF;
  padding: 10px;

}
.a-header .login-user .user-navi li:first-child{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.a-header .login-user .user-navi li:last-child{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.a-header .login-user .user-navi li a{
  width: 100%;
  height: 100%;
  text-align: left;
  color:var(--header-bg-color);
}
.a-header .login-user .user-navi li:hover{
  opacity: 0.9;
}
.a-header .user-info.open + .user-navi{
  display: block;
}

.a-header .preview-btn:hover {
  text-decoration: none;
}

.a-header .nav.right #user-info{
    display: none;
	width: 200px;
	padding: 16px;
	z-index: 9991;
}
*/


.swal2-container.swal2-shown{
  z-index: 9999;
}

#nav-toggle-btn{
  position: fixed;
  top: 70px;
  left: 0px;
  display: block;
  height: 85px;
  line-height: 55px;
  border-left: 19px solid #3285c4;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;

  z-index: 3;
  border-radius: 26px 26px 6 6 / 19px 19px 6 6;
  /* visibility: hidden; */
  color: #FFFFFF;
  cursor: pointer;
}
#nav-toggle-btn.open{
  /* left: calc(var(--nav-menu-w) + 1px); */
  left: var(--nav-menu-w);
}

#nav-toggle-btn i{
  position: absolute;
  left: -16px;
  top :50%;
  margin-top: -0.5em;
}
#nav-toggle-btn:hover .btn-description{
  display: inline-block;
}

/*navigation ↓ (ブログのをそのまま持ってきたもの) ********************************************/
#a-navigation{
  /* max-width: 272px; */
  max-width: var(--nav-menu-w);
  width: var(--nav-menu-w);
  min-width: 230px;
  font-size: 14px;
  position: fixed;
  /* top: 0; */
  top: var(--nav-header-h);
  left: 0;
  z-index: 1000;
  height : calc(100% - var(--nav-header-h));
  background-color: #3285c4;
  color: white;
}

#a-navigation + .a-content {
	/* padding : var(--nav-bar-h) 0px 0px 0px; */
	height  : 100%;
  width: calc(100% - var(--a-navList-w));
}
#a-navigation.nav-showing .a-menubar2{
	padding-left: 200px;
}
#a-navigation.a-show-bar2.nav-showing + .a-content.a-content-l2,
#a-navigation.nav-showing + .a-content.a-content-l2{
	padding-left: 220px;
}

#a-navigation .a-menubar3 {
	width: 100%;
	height: var(--nav-bar-h);
	color  : var(--header-color);;
	background: var(--header-bg-color);
	box-shadow: 0 1px 8px rgba(0,0,0,0.2);
	position: relative;
}
#a-navigation .a-menubar3 .a-header {
	display: flex;
}
#a-navigation .a-menubar3 .nav.left{
	width: var(--nav-left-w);
	display: flex;
	align-items: center;
}
#a-navigation .a-menubar3 .nav.left .nav-menu,
#a-navigation .a-menubar3 .nav.right {
	display: flex;
	align-items: center;
}

#a-navigation .user-icon img{
  border-radius: 50%;
  margin-bottom: 15px;
  width: 65px;
  height: 65px;
}

/* body.close-menu #a-dropdown-menu-wrap {
    margin-left: var(--nav-menu-close-m);
} */

#a-dropdown-menu {
	z-index: 9991;
	height: 100%;
	padding-bottom: var(--nav-bar-h);
  border-right: 1px solid #DDD;
}

/* #a-dropdown-menu-wrap{
	position: fixed;
	height: 100vh;
	width: var(--nav-menu-w);
	background-color: var(--wh);
	position: fixed;
	box-shadow: 1px 1px 2px var(--p4);
	z-index: 9991;
} */


/* #a-navigation .a-menubar3 .nav.right #user-info{
    display: none;
	width: 200px;
	padding: 16px;
	z-index: 9991;
} */

#a-navigation .a-menubar3 .nav.left #a-nav-menu {
	display: block;
	text-align:center;
	height:	var(--nav-bar-h);
	line-height: var(--nav-bar-h);
	padding: 0px 16px;
	cursor: pointer;
	text-decoration: none;
	background-color: var(--p2);
	color: #FFFFFF;
}

#a-navigation .nicescroll-cursors{
  min-height: 200px;
}



.a-content{
  margin-left: auto;
  overflow-x: hidden;
}

/* 固定ヘッダー */
#top-form-btns.fixed-header{
  position: fixed;
  z-index: 2;
  background-color: #F7FAFF;
  top: 0;
  left: 272px;
  padding: calc(var(--nav-header-h) + 25px) 20px 32px 20px;
  width: calc(100% - var(--a-navList-w));
  margin-left: 7px;

  padding-left: 0px;
  padding-right: 0px;
  padding-top: calc(var(--nav-header-h) + var(--a-content-top-p));
}

#top-form-btns .log-del-btn{
  background-color: #e04554;
  color: #fff;
  border: none;
}
.fixed-header + .main-area{
  margin: 116px;
}

#main .a-ctrl-btn.translation-btn{
  line-height: 20px;
  min-height: 20px;
  font-size: 10px;
  padding: 0 7px 0 7px;
}

.translation-text{
  margin-top: 14px;
}

.detail-log-list li:has(.fa-user-circle) .translation-box {
  margin-top: 14px;
}

.dsb-reference-url,.dsb-event-learn-data{
  margin: 30px 0;
  border-top: 2px dashed #ccc;
  padding-top: 15px;
  word-break: break-all;
}
.dsb-reference-url a:hover{
  text-decoration: underline;
}
.dsb-reference-url i{
  margin-left: 8px;
}
.dsb-event-learn-data i.fas{
  color:#2c90fb;
}
.dsb-reference-url a{
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 550px;
  vertical-align: middle;
}
.dsb-event-learn-data .name-area{
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 200px;
  vertical-align: middle;
}

/* ヘッダー */
#a-navigation .a-menubar3 {
	width: 100%;
	height: var(--nav-bar-h);
	color  : var(--header-color);;
	background: var(--header-bg-color);
	box-shadow: 0 1px 8px rgba(0,0,0,0.2);
	position: relative;
}

/* #a-navigation .navigation-header .logo{
  display: inline-block;
  width: 135px;
  height: 45px;
  background-image: url(./image/logo_wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
*/

/* ヘッダータイトル */
#a-navigation .a-menubar3 .nav-title {
	font-weight: bold;
	line-height: 18px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

#a-navigation .a-menubar3 .nav.right {
	display: flex;
	align-items: center;
  justify-content: space-between;
}

#a-navigation .a-menubar3 .nav.right {
	width: calc(100% - var(--nav-left-w));
  justify-content: flex-end;
	padding-right: 16px;
}

#a-navigation .menu-area li{
  border-bottom: 1px solid #DDD;
}
/* 
#a-navigation #nav-menu{
  height: calc(100% - var(--nav-header-h) - 20px); 
}
*/

#a-navigation .nav-link{
  color: white;
  box-sizing: border-box;
}
#a-navigation .menu .nav-item .sub-menu{
  display: none;
}

#a-navigation .menu .nav-item .nav-link.active + .sub-menu{
    display: block;
}

#a-navigation .menu .nav-item .sub-menu .nav-link,
#a-navigation .menu .nav-item .sub-menu .nav-link.active{
  padding-left: 50px;
}
#a-navigation .sub-menu .nav-link .icon{
  display: none;
}

#a-navigation .nav-link:hover,
#a-navigation .menu .nav-link.parent-menu:hover,
#a-navigation .menu .nav-link.parent-menu.active:hover,
#a-navigation .nav-link.active{
  background-color: #246ca2;
}
#a-navigation .menu .nav-item .nav-link.active{
  padding-left: 12px;
  border-left: solid 8px #FFF;

}
#a-navigation .menu .nav-link.parent-menu{
  border-left: none;
  background-color:transparent;
}

#a-navigation .menu .nav-link.parent-menu.active{
  padding-left: 20px;
  border-left: none;
  background-color:transparent;
}

#a-navigation .menu .sub-menu .nav-link.active{
  border-left: none;
}
#a-navigation .menu .sub-menu .nav-link.active::before{
  content: "●";
  display: inline-block;
  margin-left: -25px;
  margin-right: 1em;

}

#a-navigation .menu{
  width: 100%;
  /* margin-top: 42px; */
  margin-top: 8px;
}
#a-navigation .menu .nav-item .nav-link{
  height: 56px;
  display: flex;
  padding: 0px 20px;
  line-height: 56px;
  position: relative;
}
#a-navigation .menu .nav-item .nav-link .icon{
  font-size: 20px;
  margin-right: 20px;
  width: 20px;
}

#a-navigation .menu .nav-item .nav-link .icon img{
  width: 20px;
}
#a-navigation .menu .nav-item .nav-link > i{
  line-height: 40px;
  margin-left: 20px;
}
#a-navigation .menu .nav-item .nav-link > .submenu-icon{
  position: absolute;
  right: 8px;
  top: 0px;
  height: 100%;
  width: 30px;
}
#a-navigation .menu .nav-item .nav-link > .submenu-icon .open-icon,
#a-navigation .menu .nav-item .nav-link.active > .submenu-icon .close-icon{
  display: none;
}
#a-navigation .menu .nav-item .nav-link.active > .submenu-icon .open-icon{
  display: inline;
}

#a-navigation .nav > div{
  width: 100%;
  text-align: center;
}
#a-navigation .navigation-header{
    padding: 32px 0;
}
/* #a-navigation .navigation-middle .user-icon{
  font-size: 40px;
}
#a-navigation .navigation-middle .user-name a{
  color: white;
}
#a-navigation .navigation-middle .company-name{
  margin: 0 25px 20px;
} */


#a-navigation #company-name{
  border-top: 1px solid #FFF;
  text-align: center;
  position: absolute;
  width: 100%;
  padding: 16px;
  z-index: 2;
  background-color: #3285c4;
  bottom: 0px;
}


/*
#a-navigation .navigation-middle .login-user{
  margin-top: 40px;
  position: relative;
}
#a-navigation .navigation-middle .user-info{
  display: flex;
  padding: 0px 10px;
  height: 66px;
  align-items: center;
  border-radius: 10px;

  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
#a-navigation .navigation-middle .user-info:hover,
#a-navigation .navigation-middle .user-info.open
{
  background-color: #61ADD8;
}

#a-navigation .navigation-middle .user-name{
  width: 80%;
  text-align: left;
  padding: 0px 10px;
}


#a-navigation .navigation-middle .login-user .user-navi{
  position: absolute;
  border-radius: 10px;
  left: 20px;
  width: calc(100% - 40px);
  display: none;

}

#a-navigation .navigation-middle .login-user .user-navi li{
  background-color: #FFF;
  padding: 10px;

}
#a-navigation .navigation-middle .login-user .user-navi li:first-child{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#a-navigation .navigation-middle .login-user .user-navi li:last-child{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#a-navigation .navigation-middle .login-user .user-navi li a{
  width: 100%;
  height: 100%;
  text-align: left;
  color:var(--header-bg-color);
}
#a-navigation .navigation-middle .login-user .user-navi li:hover{
  opacity: 0.9;
}
#a-navigation .navigation-middle .user-info.open + .user-navi{
  display: block;
}

#a-navigation .navigation-middle .preview-btn:hover {
  text-decoration: none;
}
*/


/*navigation ↑ (ブログのをそのまま持ってきたもの) ********************************************/

.logout-btn,
.wh-btn{
  display: inline-block;
  height: 30px;
  line-height: 2;
  background-color: white;
  padding: 0px 12px;
  border-radius: 20px;
  color: #276ea3 !important;
}

/*width ********************************************/
#a-content.a-content-l2 {
    padding: 20px;
    padding-top: var(--nav-header-h);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
#a-content.a-content-l2.llm-main {
  min-height: 360px;
}

/*system message ********************************************/
div.message {
    text-align: left;
    cursor: pointer;
    display: block;
    font-weight: normal;
    padding: 0 1.5rem 0 1.5rem;
    transition: height 300ms ease-out 0s;
    background-color: #D8ECDB;
    color: #626262;
    top: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    height: 50px;
    line-height: 3.0em;
    margin-top: 32px;
    border-radius: 10px;
    color: #2A552A;
}

div.message:before {
    font-size: 20px;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    left: -11px;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

}

div.message.error{
  background-color: #FFEFF0;
  border: 1px solid #E0404E;
  color: #E0404E;
}
div.message.error:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: initial;
}
.alert-box div.message:not(:first-of-type){
  display: none;
}
div.message.hidden {
    height: 0;
}
/*form ********************************************/
.disable{
    position:relative;
}
.disable:before {
    content: " ";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(255,255,255,0.5);
    z-index:9;
}

.row{
  margin-bottom: 0px;
}

.l-tag.tag-b {
  padding: 0 0.3em;
  height: 18px;
  line-height: 18px;
  color: #fff;
  background-color: #B41E1E;
}
.l-tag {
  font-size: 12px;
  display: inline-block;
}
.card .form-group .left-row label.dad-group-label .l-tag {
  margin-left: 8px;
}
span.a-valid-msg{
  font-size: 12px;
  display: inline-block;
}

#learn-form .tmp-data label.error{
  color: red;
  font-size: 12px;
}

.color span.a-valid-msg{
  position: absolute;
  margin-top: 10px;
}
.org-valid-msg{
  color: red;
  font-size: 12px;
  display: inline-block;
}

/*list  ********************************************/
.table-responsive .table th,
.table td{
  padding: 0.3rem 0.5rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  line-height: 2;
}

.table-responsive .table th,
.table td:last-child{
  text-align: center;
}

/*popuplist  ********************************************/
.popup-layout{
  min-width:auto;
}
.popup-layout .table-responsive .table th,
.popup-layout .table td{
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
  line-height: 1.5;
}

.popup-layout .table-responsive .table th,
.popup-layout .table td:not(:first-child){
  text-align: left;
}



a.btn-danger.bad-btn,
a.btn-primary.good-btn{
  color: #fff;
  font-weight: bold;
}

a.btn-danger.bad-btn{
  background-color: #EC0000;
}

a.btn-danger.bad-btn:hover{
  background-color: rgba(236,0,0,0.8);
  color: rgba(255,255,255,0.8);
}

a.btn-primary.good-btn{
  background-color: #4A6ED8;
}

a.btn-primary.good-btn:hover{
  background-color: rgba(74,110,216,0.8);
  color: rgba(255,255,255,0.8);
}


/*contents ********************************************/
#main{
}

.main-area {
  margin:40px;
}

.search-area {
padding: 32px 40px;
background:#FFFFFF;
box-shadow: 0px 1px 3px rgba(0,0,0,0.1)
}

.popup-layout #main{
    margin:96px 48px 48px 48px;
}




/*tabbtn ********************************************/
/* .nav{
  margin-bottom: 16px;
  list-style: none;
  flex-wrap:wrap;
  display: flex;
}

.nav-tabs{
  border: none;
}

.nav-tabs .nav-link{
  border: solid 1px #aaaaaa;
  color: #aaa;
  background-color: :none;
  height: 40px;
  line-height: 22px;
  background:none;
  padding: 8px 24px;
  margin-right: -1px;
}

.nav-tabs .nav-item:first-child .nav-link{
  border-top-left-radius:4px;
  border-bottom-left-radius: 4px;
}

.nav-tabs .nav-item:last-child .nav-link{
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.nav-tabs .nav-link{
  border-radius: 0px;
}


.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link:focus{
  color: #fff;
  font-weight: bold;
  background-color: #AF3094;
  border-color: #AF3094;
}

.nav-tabs .nav-link:hover{
  border: solid 1px #aaaaaa;
  color: #AF3094;
  background-color: #F8EAF5;
} */

.trapezoid-tab-card{
    box-shadow: 0px 6px 6px #DDD;
}

.main-header{
  overflow: hidden;
}

/* form */
body .a-ctrl-btn.save-btn{
  background-color: #3285C4;
  min-width: 160px;
}
.ld-fix{
  display: flex;
}
.a-container.ld-fix{
  justify-content: space-between;
}
#top-form-btns.fixed-header .a-container.ld-fix{
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px;
}
.ld-fix.al-center{
  align-items: center;
}
.title-area .title{
  color: #3285C4;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: initial;
}
.card.form-area{
  justify-content: space-between;
}
.dad-group-label {
  font-weight: 700;
  margin-bottom: initial;
  font-size: 14px;
}
.form-section .form-group{
  margin-bottom: initial;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding:initial;
  border: initial;
}
.form-section{
	padding: 16px;
	padding-right: 20px;
}
.form-section:not(:first-child){
	border-top: 1px solid rgba(0,0,0,0.08);
}
.a-comment,.error-message{
	font-size: 12px;
	color: #666666;
	vertical-align: baseline;
	line-height: 1.2;
  letter-spacing: 1.2px;
}
.a-comment.w-card-sub{
	margin-top:8px; 
  display:inline-block;
}
.sub-comment{
  font-size: 11px;
  color: #939393;
  line-height: 1px;
}
.a-comment.inline{
  display: inline-block;
}
.form-group.full-input{
	flex-wrap: wrap;
}
.form-group.full-input .left-row{
	margin-bottom: 8px;
}
.form-group.full-input .right-row,
.form-group.full-input .right-row input[type='text']{
	width: 100%;
}
.form-item{
	padding: 16px 0px;
}
.form-section .form-item:last-child{
	padding-bottom: initial;
}
.form-item:not(:first-child){
	border-top: 1px solid rgba(0,0,0,0.08);
}
.form-group.label-non{
	justify-content: end;
}
.form-group .right-flex > label{
    margin-bottom: initial;
}
.form-group:not(:last-child){
	padding-bottom: 16px;
}
.right-row:not(.no-flex-row), .right-row>div:not(.no-flex-row) {
  display: inline-flex;
  flex-direction: column;
}
.right-row.non-column div {
  flex-direction: initial;
}
.radio-label {
  min-width: 73px;
  height: 40px;
  background: #fff;
  border-radius: 3px;
  padding: 0.6em;
  margin-bottom: 10px;
  font-size: 14px;
  display: block;
}
.radio-label.no-wrap{
  display: inline-block;
}
input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="radio"]{
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: #fff;
  margin-right: 0.6em;
  border: 1px solid #3285C4;
  position: relative;
  vertical-align: middle;
}
input[type=radio]:checked:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  content: '';
  border-radius: 100%;
  background: #3285C4;
  position: absolute;
}
.switch__input {
  display: none;
}
.valid-btn__label {
  width: 80px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  margin-bottom: 0;
  display: inline-block;
}

#all-check{
  margin: 0px 8px 0 16px;
}

.learn-list li .valid-btn__label {
  width: 72px;
  height: 28px;
}
.valid-btn__content {
  display: block;
  cursor: pointer;
  position: relative;
  height: 32px;
  overflow: hidden;
}
.learn-list li .valid-btn__label{
  height: 28px;
}
.valid-btn__content:before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 32px;
  top: 0;
  left: 0;
  border-radius: 30px;
  background-color: #AAAAAA;
}

.learn-list li .valid-btn__content:before {
  width: 72px;
  height: 28px;
}
.switch__input:checked~.valid-btn__content:after {
  background-color: #3285C4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.learn-list li .switch__input:checked~.valid-btn__content:after {
  height: 28px;
}
.valid-btn__content:after {
  content: "";
  display: block;
  position: absolute;
  background-color: transparent;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.switch__input:checked~.valid-btn__text:after {
  content: "有効";
  left: 17px;
}
.on-toggle .switch__input:checked~.valid-btn__text:after {
  content: "ON";
}

.switch__input:checked~.valid-btn__text:after, .valid-btn__text:after {
  color: #fff;
  position: absolute;
  top: 5px;
  font-size: 14px;
}
.learn-list li .switch__input:checked~.valid-btn__text:after, .valid-btn__text:after {
  font-size: 14px;
  top: 5px;
}
.valid-btn__text:after {
  content: "無効";
  left: 37px;
}
.on-toggle .valid-btn__text:after {
  content: "OFF";
}
.switch__input:checked~.valid-btn__circle {
  left: 52px;
}
.learn-list li .switch__input:checked~.valid-btn__circle {
  left: 46px;
}
.valid-btn__circle {
  display: block;
  top: 3px;
  left: 3px;
  position: absolute;
  -webkit-box-shadow: 0 2px 6px #999;
  box-shadow: 0 2px 6px #999;
  width: 26px;
  height: 26px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.learn-list li .valid-btn__circle {
  top: 2px;
  left: 3px;
  width: 24px;
  height: 24px;
}

.title-area .a-ctrl-btn.back-btn {
  background-color: #fff;
  border: 1px solid #CCC;
  border-radius: 30px;
  color: #333;
  width: initial;
  display: inline-block;
  height: initial;
  text-align: center;
  line-height: 40px;
  box-shadow: none;
}
.title-area .title{
  display: inline-block;
}
.a-ctrl-btn i {
  margin-right: 8px;
}
.a-ctrl-btn.back-btn i {
  color: #1E78CD;
}
i.help {
  color: #3285c4;
}
.upload-xml-wrap .input.file{
  display: inline-block;
}
.keyword-wrap{
  display: inline-block;
  position: relative;
  width: calc(100% - 295px);
}
.event-search.option-type .keyword-wrap, .hearing-search.option-type .keyword-wrap,.chat-log-search.option-type .keyword-wrap{
  width: calc(100% - 463px);
}
.chat-log-search.option-type .edit-data-form input{
  vertical-align: middle;
}
.option-type .keyword-wrap{
  width: calc(100% - 576px);
}
.option-type.llm-search .keyword-wrap{
  width: calc(100% - 502px);
}
.keyword-wrap input{
  width: 100%;
}
.user-type .keyword-wrap{
  width: calc(100% - 417px);
}
.keyword-wrap .fa-search{
  position: absolute;
  top: 16px;
  left: 12px;
  color: #999999;
  /* color: #1E78CD; */
}
#search-form #inp-keyword,
#search-form #inp-url,
#search-form #inp-api_type{
  padding-left: 34px;
}
div.ui-datePicker{
  position: relative;
  margin-left: 4px;
  display: inline-block;
}
.inpDateField input[type=text].datepicker {
  width: 150px !important;
  padding-right: 20px !important;
  padding: .6em;
}
a.dad-picker-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
input[type="text"].colorpicker {
  display: inline-block;
  width: calc(6em + 45px);
  border-radius: 6px;
  background-color: #eeeeee;
  padding: .6em;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}
form .sp-replacer {
  border-radius: 0 6px 6px 0;
  border: none;
  background-color: #eeeeee;
  padding: .6em;
  margin-left: -42px;
  position: absolute;
}
form .sp-preview {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: none;
  margin: 0;
}
form .sp-preview-inner {
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
form .sp-dd {
  display: none;
}
.ui-timepicker-select{
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input.max-setting{
  width: 90px;
  display: inline-block;
  vertical-align: middle;
}

/* form select */
.cell2 .select-box select.unit-select{
  min-width: 50px;
  height: 42px;
}

/* form checkbox */
.normal-check .input.checkbox{
  display: inline-block;
  padding: 8px 8px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
}

.normal-check .input.checkbox label{
  margin-bottom: initial;
  vertical-align: baseline;
  color: #000;
}

.normal-check .input.checkbox input{
  margin-right: 8px;
  border: 1px solid #3285C4;
}

/* form detail */
#main #search-form .search-item .search-detail-modal select{
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  appearance: none;
  color: #000;

}

/* form number */
.number-box{
  position: relative;
}
.number-box span.a-valid-msg{
  position: absolute;
  top: 40px;
  left: 0;
}

/* form error */
#max-width-error,
#sm-max-width-error,
#max-height-error,
#sm-max-height-error{
  position: absolute;
  top: 41px;
  left: -20px;
  width: 200px;
}

/* editor */
span.fr-emoticon.fr-emoticon-img {
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -.1em .1em .1em;
  line-height: 1;
  vertical-align: middle;
}
/* media */
.media_type_item .a-valid-msg,
input[type='file'] + .a-valid-msg{
    display: block;
}

/* form-list */
.form-list{
  border-collapse: collapse;
}
.form-list .form-item-box {
  position: relative;
  width: auto;
  border-bottom: 1px solid #CCCCCC;
}
dl{
  margin-bottom: auto;
}
div.form-box dl {
  display: table;
  width: 100%;
}
div.form-box dl .cell1 {
  width: 500px;
  min-width: 500px;
  font-weight: 700;
  background: #EFEFEF;
  border-right: 2px solid #fff;
}
div.form-box:not(.survey-form) dl .cell2 {
  width: auto;
  color: #888;
  background: #fff;
}
div.form-box:not(.survey-form) dd,
div.form-box:not(.survey-form) dt {
  display: table-cell;
  /* border: 1px solid #fff; */
  padding: 24px;
  vertical-align: middle;
  color: #000;
}

#tag-set-box .set-tag-area{
  border-radius: 3px;
  border: 1px solid #959EA7;
  display: flex;
  white-space: nowrap;
}

#tag-set-box .set-tag-area .tag{
  color: black;
  overflow: hidden;
  width: 630px;
  padding: 5px 10px;
}

#tag-set-box .set-tag-area .copy-btn{
  border-left: 1px solid #959EA7;
  margin-left: 10px;
  padding: 5px 15px;
  cursor: pointer;
  color: #3285C4;
}

.len-item-area .check-learn-box i,
.main-table .learn-box i{
  line-height: inherit;
}
.main-table .learn-box,
.main-table .tmp-url-box{
  line-height: 20px;
}
.main-table .learn-box .learn-data div{
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-table .tmp-url-box div{
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.check-learn-box .check-data .url{
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.check-learn-box .check-data .title{
  width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.check-learn-box .l_count,
.main-table .learn-box .l_count{
  text-align: end;
}

/* events index */
.search-item input{
  min-width: 400px;
}
.search-item input:not([type='checkbox']),
.search-item select{
  height: 45px;
}
.search-item select option{
  color: black;
}

#main #search-form .search-item input,
#main #search-form .search-item a,
#main .reproduction-area input{
  border: 1px solid #CCC;
  color: #999;
}

#main #search-form .search-item input:focus{
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

#main #search-form .search-item .search-detail-modal input{
  min-width: initial;
}

#main #search-form .search-item .search-detail-modal input,
#main #search-form .search-item .search-detail-modal a{
  border: 1px solid #d3d3d3;
}

/* mizue */
#main #search-form .search-reset-btn,
#main .reproduction-area .search-reset-btn{
  display: flex;
  align-items: center;
}
#main #search-form .search-reset-btn a,
#main .reproduction-area .search-reset-btn a,
#main .learn-box .check-reset-btn,
.popup-content .form-section #search-area .search-reset-btn a{
  border-bottom: 1px solid;
  background: none;
  color:#AAAAAA;
  margin-left: 20px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0;
}
#main #search-form .search-reset-btn a:hover,
#main .reproduction-area .search-reset-btn a:hover,
#main .learn-box .check-reset-btn:hover,
.popup-content .form-section #search-area .search-reset-btn a{
  text-decoration: none;
}

/* #main #inp-keyword::placeholder, */
#main #search-text::placeholder{
  color: #3989c6;
}

#main #add-event-btn,
#main #btn-submit,
#main .a-ctrl-btn.action-btn{
  background-color: #3285c4;
  color: #fff;
  box-shadow: none;
}

#main #add-event-btn,
#main #btn-submit,
#main .a-ctrl-btn.action-btn,
#main #llm-btn{
  border:none;
}

#main #llm-btn, #main .edited-log-btn{
  border-radius: 24px;
  padding: 0 32px;
  color: #E0404F;
  border: 1px solid;
  background-color: #fff;
}

#main .edited-log-btn{
  padding-top: 4px;
  padding-bottom: 4px;
}

.llm-btn-area{
  text-align: end;
}

#main .event-learn-btn{
  background-color: #3285c4;
  color: #fff;
  box-shadow: none;
  border: none;
}

.llm-btn-area span, .llm-btn-area i{
  font-size: 12px;
  color: #E0404F;
}
.llm-btn-area span.bold-txt{
  font-weight: bold;
  font-size: 20px;
}

input.font-awesome {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.search-item a{
  border-radius: 3px;
  background-color:#fff;
  cursor: pointer;
  color: #3285c4;
  border: 1px solid #f0f0f0;
}
.table.border-tbl thead tr th:not(:last-child),

#main #search-form select:not(#main #search-form.report select,#main #search-form .search-detail-modal select,#main #search-form .order-area select){
  background-color: #fff;
  cursor: pointer;
  color: #999999;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  appearance: none;
}

#main #search-form select::after{
  /* content: "\f0dd";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 0;
  right: .6em;
  
  pointer-events: none;
  color: var(--p0); */

  content:'\f078'; /* fontawesomeのアイコン表示 */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color:var(--sub-color);
  width:0;
  z-index:0;
  position:absolute;
  top:50%;
  right:25px;
  transform:translateY(-50%);
}

/* table */
.main-table{
  margin-top: 24px;
}
.tbl-layout {
  width: 100%;
  font-size: 14px;
}
.tbl-layout thead th {
  padding: 16px;
  height: 48px;
  background-color: #E7ECF2;
  color: #001C4E;
  font-weight: 700;
}

#main .a-list-tbl th,
#main .tbl-layout th,
#main .a-list-tbl td .fa-grip-horizontal{
  color: #3285c4;
  /* border-bottom: 3px solid #cccdcd; */
}
#main .a-list-tbl td .fa-grip-horizontal{
  font-size: 18px;
}
#main .a-list-tbl .drag-handle{
  cursor: move;
}
#main .a-list-tbl tr .user-icon img{
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

#main .a-list-tbl tr .user-icon i{
  font-size: 36px;
  margin-left:10px;
  color:#3285c4;
}
/* table a */
.tbl-a tbody tr {
  height: 56px;
}
.tbl-a tbody td {
  padding: 16px;
  border-bottom: 1px solid #CFDAE6;
}
.not-thead-tbl tr td:first-child{
  background-color: #E7ECF2;
  color: #0A2A4E;
}
.table tbody td.lf-td{
  text-align: left;
}
.table.border-tbl thead tr th:not(:last-child),
.table.border-tbl tbody tr td:not(:last-child){
  border-right: 1px solid #CFDAE6;
}

.table.tbl-a .thead-light th{
  border-bottom: 4px solid #CCCCCC;
}
/* table b */
.table.tbl-b thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  border-top: initial;
  padding: 0.75rem 8px;
}
.table.tbl-b thead th:first-child{
  padding-left: initial;
}
.table.tbl-b td {
  border-top: initial;
  vertical-align: middle;
  padding: 24px 8px;
}
.table.tbl-b tr td:first-child{
  padding-left: initial;
}

.fr-box.fr-basic .fr-element{
  height:200px;
}



.select-box {
  position: relative;
}
.select-box select{
  min-width: 150px;
  padding: 0 12px;
}
.select-box select.search-action{
  width: 165px;
}
.llm-search .select-box select.search-action{
  width: 228px;
}
.select-box::after,
.refine-select-box::after{
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 0;
  right: 10px;
  content: "\f0dd";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  pointer-events: none;
  color: #1E78CD;
}
.select-box select{
  appearance:none;
}
.cell2 .select-box{
  display: inline-block;
  vertical-align: middle;
}
.cell2 .select-box select{
  padding-right: 24px;
  height: 40px;
}
.select-box.non-min select{
  min-width: initial;
}
.modal-content .form-section{
  padding: 32px;
}

/* グレーアウト */
.af-disabled{
	position : relative;
	filter: alpha(opacity=30);
	-moz-opacity:0.30;
	opacity:0.30;
	cursor: default;
	pointer-events: none;
}

.af-disabled:before{
	content	: "　";
	display : inline-block;
	position : absolute;
	width	: 100%;
	height	: 100%;
	top	: 0px;
	left	: 0px;
	z-index : 10;
}

.tbl-a .bd-left{
  border-left: 1px solid #CFDAE6;
}

.align-radio{
  display: flex;
  justify-content: start;
  margin-top: 8px;
}
.align-radio label{
  margin-bottom: initial;
  width: 120px;
}
.align-radio label:last-child{
  margin-left: 8px;
}

.bnr-set-data{
  line-height: 1.5;
}

.bnr-set-data:not(:first-child){
  margin-top: 16px;
}

/* preview */
.banner-preview-box .dsb-chat-banner-btn,
.main-table .dsb-chat-banner-btn{
  display: inline-block;
  align-items: center;
  position: relative;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;  
}

.banner-preview-box .dsb-chat-banner-btn.dsb-chat-type-text{
  width: 330px;  
}
.banner-preview-box .dsb-chat-banner-btn.dsb-chat-type-text:not(.bg-jagged),
.main-table .dsb-chat-banner-btn.dsb-chat-type-text:not(.bg-jagged){
  background: #FC742E;
  color: #fff;
}

.banner-preview-box .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div,
.main-table .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div {
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner-preview-box .dsb-chat-banner-btn.action-rotate .bnr-txt-bg,
.main-table .dsb-chat-banner-btn.action-rotate .bnr-txt-bg {
  animation: 50s linear infinite rotation1;
  display: block;
}
.banner-preview-box .dsb-chat-banner-btn.bg-jagged,
.main-table .dsb-chat-banner-btn.bg-jagged {
  padding: 0px;
  width: 100px;
  min-width: initial;
}
.banner-preview-box .dsb-chat-banner-btn.bg-jagged {
  margin: 8px 0px;
  display: flex;
}
.main-table .dsb-chat-banner-btn.bg-jagged {
  margin: 0 auto;
  transform: scale(0.6);
  display: flex;
}
.banner-preview-box .dsb-chat-banner-btn.bg-jagged::before,
.main-table .dsb-chat-banner-btn.bg-jagged::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.banner-preview-box .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square2,
.main-table .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square2 {
  transform: rotate(15deg);
}
.banner-preview-box .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square3,
.main-table .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square3 {
  transform: rotate(30deg);
}.banner-preview-box .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square4,
.main-table .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square4 {
  transform: rotate(45deg);
}.banner-preview-box .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square5,
.main-table .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square5 {
  transform: rotate(60deg);
}.banner-preview-box .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square6,
.main-table .dsb-chat-banner-btn.bg-jagged .bnr-txt-bg > div.square6 {
  transform: rotate(75deg);
}
.banner-preview-box .dsb-chat-banner-btn img,
.main-table .dsb-chat-banner-btn img {
  margin: 0 auto;
  max-width: 300px;
}
.main-table .dsb-chat-banner-btn img {
  width: 100px;
}

.faq-preview-box .faq-area {
  float: left;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.faq-preview-box .faq-area .qa-item {
  width: calc(50% - 30px);
  padding: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-radius: 5px;
  background-color: #F1C231;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
}
.faq-preview-box .faq-area .qa-item .icon {
  margin-right: 5px;
}
.faq-preview-box .faq-area .qa-item .icon::before {
  content: "";
  display: inline-block;
  background-image: url(../public/full/img/q.png);
  width: 37px;
  height: 32px;
  vertical-align: middle;
}

/* llms */
/* .learn-list-table .url-wrap input,
.learn-list-table .learn-save-btn{
  display: none;
}

.learn-list-table .edit .valid-btn__label,
.learn-list-table .edit .url-wrap .url-item,
.learn-list-table .edit .edit-btn,
.learn-list-table .edit .del-btn{
  display: none;
}

.learn-list-table .edit .url-form-wrap{
  display: block;
}
.learn-list-table .edit .learn-save-btn,
.learn-list-table .edit .url-wrap input{
  display: inline-block;
} */
.llms-content .order-mode{
  position: relative;
  z-index: 100000;
  background: #F7FAFF;
}
.llms-content li .priority-list{
  position: relative;
  font-weight: bold;
}
.llms-content .popup-sort-box{
  display: none;
  position: absolute;
  top: 12px;
  left: -10px;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 260px;
  border-radius: 6px;
  z-index: 10;
  filter: drop-shadow(0 1px 3px rgba(51,51,51, .3));
  font-size: 14px;
  padding: 16px;
}
.popup-sort-box::before {
  content: '';
  display: block;
  position: absolute;
  border: 10px solid transparent;
  top: -24px;
  left: 16px;
  border-bottom: 16px solid #fff;
  cursor: pointer;
}
.llms-content .popup-sort-box input{
  width: 85px;
  border-radius: 4px;
  padding: 10px;
  height: 41px;
  margin-right: 5px;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.llms-content .del-check, .learn-list .check-area + span{
  vertical-align: middle;
}
.llms-content .popup-sort-box .llm-move-btn{
  margin-left: 28px;
}
.llms-content .popup-sort-box.open{
  display: block;
}
.llms-content li .priority-list span.order-num{
  padding-top: 4px;
  width: 32px;
  display: inline-block;
  height: 32px;
}
.llms-content .learn-list.order-mode .priority-list span{
  cursor: pointer;
}
.llms-content .learn-list.order-mode .priority-list span:hover{
  text-decoration: underline;
}
body .a-ctrl-btn.order-save-btn, body .a-ctrl-btn.order-finish-btn{
  display: none;
}
body .order-mode .a-ctrl-btn.order-save-btn, body .order-mode .a-ctrl-btn.order-finish-btn{
  display: inline-block;
  display: inline;
  position: absolute;
  top: 0%;
  left: 67.5%;
  z-index: 100000;
}
body .order-mode .a-ctrl-btn.order-save-btn{
  left: 83%;
}
.learn-list .list-border{
  background-color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(51,51,51, .2);
  min-height: 44px;
  position: relative;
}
.learn-list .list-border:not(.folder-item), .learn-list .list-border.folder-item a{
  display: flex;
  padding: 8px 16px;
}
.learn-list li.child-item{
  margin-left: 40px;
  position: relative;
}
.learn-list .list-border:hover{
  background-color: #e9f4fd;
}
.learn-list .list-border .a-ctrl-btn:not(.llm-move-btn),
.learn-list .edit .order-btn,
.learn-list .edit i,
.learn-list.order-mode .check-area,
.learn-list.order-mode input.del-check{
  display: none;
}
.learn-list:not(.order-mode) .list-border:hover .action-btn{
  display: inline-block;
}

.learn-list .list-border .url-wrap.fl-left{
    word-break: break-all;
    width: calc(100% - 25px);
}


/* mizue */

/* 使うかもなので一旦コメントアウト */
/* 
.learn-list .list-border:not(.edit):hover #url-reference-btn{
  display: inline;
}

#url-reference-btn .valid-btn__label{
  margin-left: 5px;
}
#url-reference-btn input[name="reference_flg"]:checked ~ .valid-btn__circle{
  left: 105px;
}

#url-reference-btn .valid-btn__text:after {
  content: "参考URLの非表示";
  left: 37px;
}

.learn-list li #url-reference-btn input[name="reference_flg"]:checked ~.valid-btn__text:after {
  content: "参考URLの表示";
  left: 17px;
}

.learn-list li #url-reference-btn input[name="reference_flg"]:checked ~ .valid-btn__content{
  width: 132px;
}

.learn-list li #url-reference-btn input[name="reference_flg"]:checked ~ .valid-btn__label{
  width: 108px;
}

.learn-list li #url-reference-btn input[name="reference_flg"]:checked ~ .valid-btn__content::before {
  width: 132px;
  height: 28px;
}

#url-reference-btn .valid-btn__label,
#url-reference-btn .valid-btn__content{
  width: 140px;
}

.learn-list li #url-reference-btn .valid-btn__content::before {
  width: 140px;
  height: 28px;
} */

.learn-list li .btn-box{
  margin-left: 24px;
}
.llms-content li div:not(.btn-area) i{
  color: #3285c4;
  font-size: 16px;
  vertical-align: middle;
}
.llms-content li div:not(.btn-area) i.fa-folder{
  font-size: 24px;
}
.learn-list .list-border a i{
  opacity: 1;
}
.learn-list a{
  position: relative;
}
.learn-list a i.fa-chevron-right{
  display: none;
  color: #3285c4;
}
.learn-list:not(.order-mode) a:hover i.fa-chevron-right{
  display: inline;
  position: absolute;
  top: 26%;
  left: -18px;
  font-size: 20px;
}
.learn-list li a:not(.cancel-btn):not(.url-item):not(.get-title-btn):not(.llm-move-btn){
  margin-right: 4px;
}
.learn-list li a.cancel-btn{
  margin-left: 8px;
}
.learn-list li i.fa-folder-open{
  margin: 0 8px;
}
.learn-list a:not(.url-item){
  color: #212529;
}
.learn-list a.url-item{
  text-decoration: underline;
}
.llms-content li.list-border i.fa-exclamation-circle{
  color: #E0404F;
}
.learn-list li .order-btn:hover{
  cursor: move;
}
#main .llms-content li .a-ctrl-btn{
  font-size: 10px;
  min-height: 20px;
  line-height: 20px;
  border-radius: 24px;
  font-size: 10px;
  padding: 2px 8px;
}
.btn-area{
  position: relative;
}
.btn-area i.fa-exclamation-circle{
  position: absolute;
  top: -14px;
  right: 0;
  font-size: 20px;
}
.hide{
  display: none;
}
.item-title{
  font-size: 16px;
  font-weight: bold;
}
.name-area, .url-area{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 340px;
  vertical-align: middle;
}
.name-area:not(.no-inline-block), .url-area:not(.no-inline-block){
  display: inline-block;
}
@media screen and (max-width: 1420px) {
  .name-area, .url-area{
    max-width: 320px;
  }
}
@media screen and (max-width: 1366px) {
  .name-area, .url-area{
    max-width: 275px;
  }
}
@media screen and (max-width: 1280px) {
  .name-area, .url-area{
    max-width: 210px;
  }
}
.url-area a{
  color: #007bff;
}
.url-wrap label{
  margin-bottom: 0;
}
.pop-btn-contents{
  padding: 24px;
  background-color: #fff;
  /* border: 1px solid #ccc; */
  position: absolute;
  z-index: 1;
  top: 56px;
  border-radius: 4px;
  filter: drop-shadow(0 1px 3px rgba(51,51,51,.3));
}
.pop-btn-contents:before {
  content: '';
  display: block;
  position: absolute;
  border: 10px solid transparent;
  top: -23px;
  left: 8px;
  border-bottom: 16px solid#fff;
  cursor: pointer;
}
.operation-wrap{
  left: 212px;
}
.upload-xml-wrap{
  left: 422px;
}
.llm-detail .operation-wrap{
  left: 140px;
}
.llm-detail .upload-xml-wrap{
  left: 350px;
}
.llms-content .learn-list:not(.order-mode) li.grayout .name-area i,
.llms-content .learn-list:not(.order-mode) li.grayout .name-area .check-area + span,
.llms-content .learn-list:not(.order-mode) li.grayout .url-area a{
  opacity: 0.6;
}
#main .llm-btns a.a-ctrl-btn{
  border-color: #3285c4;
}
.llm-btns .small-btn i{
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .llm-btns .big-btn {
    display: none;
  }
  .llm-btns a.small-btn{
    display: inline-block;
  }
  .operation-wrap{
    left: 60px;
  }
  .upload-xml-wrap {
    left: 115px;
  }
}
@media screen and (min-width: 1024px) {
  .llm-btns .big-btn {
    display: inline-block;
  }
  .llm-btns a.small-btn {
    display: none;
  }
}

/* banner */
.color-square{
  width: 25px;
  height: 25px;
  display: inline-block;
  border: 1px solid #726F72;
  vertical-align: middle;
}
.bnr-btn{
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}
.bnr-btn.dsb-chat-type-image{
  padding: 0;
}
.bnr-btn.bg-jagged {
  padding: 0px;
  width: 95px;
  margin: 8px auto;
}
.bnr-btn.bg-jagged::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.bnr-btn.text_shadow {
  text-shadow: rgba(0, 0, 0, .6) 2px 2px;
}
.bnr-btn.box_shadow {
  box-shadow: 5px 5px 10px #333;
}
.bnr-btn img{
  margin: 0 auto;
}
.bnr-txt{
  z-index: 2;
  position: relative;
  display: inline-block;
  width: 100%;
}
.bnr-txt-bg{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.bnr-btn.bg-jagged .bnr-txt-bg > div {
  position: absolute;
  width: 100%;
  height: 100%;
}
.bnr-btn.bg-jagged .bnr-txt-bg > div.square2{
  transform: rotate(15deg);
}
.bnr-btn.bg-jagged .bnr-txt-bg > div.square3{
  transform: rotate(30deg);
}
.bnr-btn.bg-jagged .bnr-txt-bg > div.square4{
  transform: rotate(45deg);
}
.bnr-btn.bg-jagged .bnr-txt-bg > div.square5{
  transform: rotate(60deg);
}
.bnr-btn.bg-jagged .bnr-txt-bg > div.square6{
  transform: rotate(75deg);
}
.bnr-btn.action-rotate .bnr-txt-bg {
  animation: 50s linear infinite rotation1;
  display: block;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

/* paginator */
.a-paginator li a {
  text-decoration: none;
  color: #3285C4;
}

.a-paginator li:not(.ellipsis){
  border-radius: 4px;
  border: 1px solid #3285C4;
  height: 35px;

}
.a-paginator li.active{
  background: #3285C4;
  color: white;

}
.a-paginator li.active a{

  color: white;

}
nav .a-paginator .prev a::before {
  color: #3285C4;
  text-decoration: none;
  vertical-align: top;
}
nav .a-paginator .next a::after,
nav .a-paginator .last a::after,
nav .a-paginator .first a::before{
  color: #3285C4;
  text-decoration: none;
  vertical-align: top;
}

nav .a-paginator .last a,
nav .a-paginator .first a{
  margin-left: 2px;
  min-width: 32px;
}
.paginator li.prev,
.paginator li.last{
  margin-left: 4px;
}

.paginator.llm li.prev,
.paginator.llm li.last{
  margin-left: 8px;
}

.paginator li.last,
.paginator li.first{
  padding: 0px;
}

.paginator li.first a,
.paginator li.last a{
  margin-left: 0px;
}

#main #top-form-btns .back-btn,
.popup-content #top-form-btns .back-btn{
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 10px;
}

#main #top-form-btns .cancel-btn{
  text-align: center;
  min-width: 160px;
}

/* dashboards */
.info-header span{
  font-weight: bold;
}
.info-header .fas{
  color: #3285C4;
}
.dashboard-table {
  width: 100%;
}
.dashboard-table tr {
  font-size: 14px;
  border-top: 1px dashed #AAAAAA;
}
.dashboard-table tr:first-child {
  border-top:none;
}
.dashboard-table td.icon-area {
  width: 24px;
  height: 24px;
}
.plat-blog-icon {
  font-size: 20px;
  color: #5c53a9;
  margin-right: 8px;
}
.dashboard-table td:not(.icon-area) {
  padding: 8px;
}
/* 
.info-content{
  padding: 24px;
} */
.new-icon {
  margin-right: 8px;
}
.l-tag {
  font-size: 12px;
  display: inline-block;
}
.l-tag.tag-b.gr {
  background-color: #AAAAAA;
}
.l-tag.tag-b {
  padding: 0 .3em;
  height: 18px;
  line-height: 18px;
  color: #fff;
  background-color: var(--a2);
}

.dashboard-table td a {
  color: #3285C4;
  text-decoration: underline;
}

.base-box.radius {
  border-radius: 6px;
}
.base-box {
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(51,51,51, .2);
  border: 1px solid #DDD;
}
.base-box.padding{
  padding: 16px 24px 24px 24px;
}
.base-box .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.base-box span.icon {
  color: #3285C4;
  margin-right: 8px;
}
.customer-item>div:not(:last-child) {
    margin-bottom: 8px;
}
.customer-item>div {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.customer-item .item-title {
  display: inline-block;
  border-radius: 3px;
  min-width: 80px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #3285C4;
  background-color: #F5F8FA;
  margin-right: 8px;
}
.msg-cnt{
  font-size: 20px;
  font-weight: bold;
}
.link-item{
  display: inline-block;
}
.link-item:not(:first-child){
  margin-left: 16px;
}
.link-item img{
  vertical-align: top;
  width: 250px;
}
.info-wrap{
  border-bottom: 1px solid #DDD;
}
.info-btn-wrap{
  text-align: center;
  color: #000;
}
.info-btn-wrap a{
  color: #000;
  display: block;
  height: 50px;
  line-height: 3;
}
.info-btn-wrap i{
  color: #3285C4;
}

.form-item-box .thumb{
  margin-top: 10px;
}

#article-text-config.line {
    position: relative;
    padding: 40px 0;
    color: var(--g4);
    font-size: 14px;
    display: block;
    text-align: center;
    font-weight: bold;
}

#article-text-config.line:before,
#article-text-config.line:after {
    content: "";
    width: calc((100% - 150px) / 2);
    position: absolute;
    top: 48%;
    border-top: 2px dashed;
}

#article-text-config.line:before {
    left: 0rem;
}

#article-text-config.line:after {
    right: 0rem;
}

/* chat-logs */
.logs-list{
  font-size: 14px;
}
.logs-list .logs-item-name{
  font-weight: bold;
  color: #999999;
  width: 97%;
}
.logs-list li.logs-item-name > div{
  padding: 0 12px;
}
.logs-list li {
  display: flex;
  width: 97%;
  align-items: center;
  margin-bottom: 8px;
  flex-direction: initial;
  color: #333
}
.logs-list .log-del-btn{
  color: #AAAAAA;
  position: absolute;
  top: 40px;
  right: 0px;
  cursor: pointer;
  z-index: 999;
}
.logs-list li.card:hover{
  outline: 3px solid #3285c4;
}
.logs-list li .fa-chevron-right{
  display: none;
}
.logs-list li.card:hover .fa-chevron-right{
  display: inline;
  color: #3285c4;
  margin-left: 8px;
}
.logs-list a:hover{
  text-decoration: none;
}
.logs-list li:not(.logs-item-name) > div{
  padding: 24px 12px;
  position: relative;
  min-height: 94px;
}
.logs-list li.card > div:not(:last-child):not(.check-box):after{
  content: '';
  display: inline-block;
  width: 1px;
  background-color: #efefef;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 8px 0;
}
.logs-list .text-box, .logs-list .url-box{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline list-item;
}
.logs-list .text-box{
  max-width: 608px;
}
.logs-list .url-box{
  max-width: 304px;
}
.logs-list .user-name{
  font-weight: bold;
  margin-bottom: 4px;
  display: inline-block;
}
.logs-list .log-item .edited-data{
  color: #E0404F;
  border: 2px solid;
  background-color: #fff;
  text-align: center;
  float: right;
  font-size: 12px;
  padding: 2px 8px;
}
.logs-list .thumbs-up{
  color: #E0404F;
}
.logs-list .url-box, .logs-list .thumbs-up{
  line-height: 42px;
}
.detail-log-list{
  padding: 32px;
  position: relative;
  background-color: #fff;
}
.detail-log-list.qa-mode{
  z-index: 100000;
}
.detail-log-list li:not(.detail-log-list .text-box li){
  width: 100%;
  display: flex;
  margin-bottom: 12px;
}

.detail-log-list .text-box p{
  margin: 14px 0;
}

.detail-log-list .text-box  ul,
.form-group.full-input .right-row ul{
  list-style-type: disc;
  padding-left: 1em;
}

.detail-log-list .text-box  ol,
.form-group.full-input .right-row ol{
  list-style-type: decimal;
  padding-left: 1.5em;
}

.detail-log-list .icon-box{
  width: 5%;
  margin-top: 8px;
}
.detail-log-list .icon-box + div{
  width: 95%;
}
.detail-log-list .icon-box i{
  font-size: 47px;
  color: #cccccc;
}
.detail-log-list .thumbs-up-box{
  color: #e0404e;
  margin-left: 16px;
  font-size: 14px;
}
.detail-log-list .text-box{
  background-color: #f9f9f9;
  padding: 16px;
  margin-top: 8px;
}
.detail-log-list .text-box .msg-media{
  width: 100%;
}

.detail-log-list .text-box .msg-media.type-youtube{
  position: absolute;
  top: 0px;
  width:100%;
  height: 100%;
}

.dsb-ai-concierge-media[data-type='youtube']{
  position: relative;
  width:100%;
}

.dsb-ai-concierge-media[data-type='youtube']::before{
  content: '';
  display: block;
  padding-top: 56.25%; /* (9 ÷ 16) × 100 = 56.25% */
}

.detail-log-list .text-box a{
  color: #3285c4;
  border-bottom: 1px solid;
}
.detail-log-list .text-box a:hover{
  text-decoration: none;
  cursor: pointer;
  color: #3285c4;
}
span.line{
  position: relative;
  padding: 24px 0;
  color: #bbbbbb;
  font-size: 14px;
  display: block;
  text-align: center;
  font-weight: 700;
}
span.line::after{
  right: 0;
}
span.line::before{
  left: 0;
}
span.line::after, span.line::before{
  content: "";
  width: 26.5%;
  position: absolute;
  top: 50%;
  border-top: 2px dashed;
}
span.line.no-url::after, span.line.no-url::before{
  width: 45%;
}
.line-box.fixed-box{
  background-color: #fff;
  width: 100%;
  height: 69px;
  position: fixed;
  top: 0;
  z-index: 1;
}
span.line.fixed-line::after, span.line.fixed-line::before{
  position: fixed;
  top: 34px;
  width: 20%;
}
span.line.no-url.fixed-line::after, span.line.no-url.fixed-line::before{
  width: 34%;
}
span.line.fixed-line:before{
  left: 21.5%;
}
span.line.fixed-line:after{
  right: 26.5%;
}
span.line.no-url.fixed-line:after{
  left: 63%;
}
span.line a{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  max-width: 420px;
  vertical-align: bottom;
}
span.line a:visited{
  color: #007bff;
}
.form-section .form-group.diplaynone{
  display: none;
}
a.scroll-btn{
  width: 62px;
  height: 62px;
  display: inline-block;
  text-align: center;
  background: #3285c4;
  border-radius: 40px;
  line-height: 62px;
  color: #fff;
  font-size: 20px;
  position: fixed;
  right: 2%;
  z-index: 100001;
}
a.scroll-btn.up-btn{
  display: none;
  top: calc(var(--nav-header-h) + 20px);
}
a.scroll-btn.down-btn{
  bottom: 3%;
}

.url-btn{
  position: relative;
}
a:hover + .btn-description{
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.detail-log-list div:not(.fixed-box) a:hover + .btn-description{
  top: -16px;
}
.fixed-box a:hover + .btn-description{
  bottom: -16px;
}

.detail-log-list .text-box .pinfo-confirm-btn,
.detail-log-list .text-box .privacy-btn,
.detail-log-list .text-box .pinfo-skip-btn,
.detail-log-list .text-box .correct-btn,
.reaction-content-area .chat-area .correct-btn{
  border-radius: 5px;
  padding: 5px;
  background-color: #FFD142;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 8px;
  display: inline-block;
  border: none;
  color: #000;
}

.detail-log-list .text-box .privacy-btn,
.reaction-content-area .chat-area .privacy-btn{
  padding: 5px 10px;
}

.detail-log-list .text-box .pinfo-confirm-btn.wrong-btn,
.detail-log-list .text-box .privacy-btn.disagree-btn,
.detail-log-list .text-box .correct-btn,
.reaction-content-area .chat-area .correct-btn
{
  background-color: #d8d8d8;
}

.detail-log-list .text-box .correct-btn,
.reaction-content-area .chat-area .correct-btn,
.detail-log-list .text-box .pinfo-confirm-btn.confirm-area-btn,
.reaction-content-area .chat-area .pinfo-confirm-btn.confirm-area-btn{
  min-width: 120px;
  text-align: center;
}

.detail-log-list .text-box .confirm-area, .reaction-content-area .chat-area .confirm-area{
  margin-top: 16px;
}

.detail-log-list .text-box .hearing-title, .reaction-content-area .chat-area .hearing-title{
  font-weight: bold;
  margin-bottom: 16px;
}

.detail-log-list .text-box .privacy-link, .reaction-content-area .chat-area .privacy-link{
  color: #3285c4;
  border-bottom: 1px solid;
  margin-top: 8px;
  display: inline-block;
}
.reaction-content-area .chat-area .privacy-link:hover{
  text-decoration: none;
}

/* 吹き出しチップ */
.btn-description{
  display: none;
  position: absolute;
  padding: .6em;
  font-size: 12px;
  line-height: initial;
  color: #ffffff;
  border-radius: 3px;
  background-color: #333333;
  width: auto;
  opacity: .8;
  white-space: nowrap;
}
.btn-description::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
    border-top-width: 5px;
    border-top-style: solid;
    border-top-color: transparent;
  border-top: 9px solid #333333;
}
.fixed-box a:hover + .btn-description::before{
  border: 5px solid transparent;
  border-bottom: 9px solid #333333;
  top: -14px;
}

#overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 99999;
  display: none;
}
/* .qa-list{
  display: none;
} */
.active-qa-list{
  background-color: #ecf4fa;
  outline: 3px solid rgba(50, 133, 196, 0.8);
  padding: 4px;
  position: relative;
}
.qa-list a.make-qa-btn{
  display: none;
}
.active-qa-list a.make-qa-btn{
  display: inline-block;
  position: absolute;
  top: 45%;
  left: 40%;
}
a.qa-finish-btn{
  display: none;
  z-index: 100001;
  position: fixed;
  top: 3%;
  right: 8%;
}

@media screen and (max-width: 1200px) {
  .a-header .nav.right > div a .link-text{
    display: none;
  }
  .a-header .nav.right > div a:hover .btn-description{
    display: inline-block;
  }
  .a-header .user-info{
    min-width: auto;
  }

  .a-header .nav.right .login-user > .user-info .user-name,
  .a-header .nav.right .login-user .switch-icon{
    display: none;
  }

  .a-header .nav.right .user-navi .user-info{
    display: block;
    background-color: #FFF;
    padding: 0px 8px;
    height: auto;
  }

  .a-header .nav.right .user-navi .user-name {
    line-height: 1.5;
    border-bottom: 1px dashed #CCC;
    display: inline-block;
    width: 100%;
    padding: 10px;
  }
}
/* reports */

#main .report-search-content .search-item input{
  min-width: 150px;
}

#main .report-search-content .search-item .select-box{
  margin-left: 5px;
}

#main #search-form .report-search-content .search-item a:not(.search-detail-btn){
  border: none;
}

#main #search-form .report-search-content .search-item span{
  font-weight: 700;
  padding-top: 7px;
  margin-left: 4px;
}

#main #search-form .report-search-content .search-item input{
  border: 1px solid #cecece;
}

#main .report-search-content .search-item .inpDateField i{
  font-size: 18px;
  margin-right: 5px;
}

#main #search-form .report-search-content  #inp-keyword::placeholder,
#main #search-form .report-search-content .keyword-wrap .fa-search{
  color: #cecece;
}

#main .report-search-content #search-form  .keyword-wrap i{
  font-size: 15px;
  margin-top: 2px;
}

.report-top-section .base-box{
  padding: 20px 24px 24px 24px;
  width: 50%;
}

.report-top-section .base-box div{
  margin-left: 25px;
  font-size: 15px;
  line-height: 20px;
}

.report-title{
  font-weight: 700;
  margin-bottom: 5px;
}
.report-total{
  text-align: right;
  margin-bottom: initial;
}
.report-total span{
  font-size: 20px;
  font-weight: bold;
}

.report-top-section .base-box img{
  width: 55px;
  height: 55px;
  margin-top: 12px;
}

.report-top-section .base-box span{
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0px;
}
.report-top-section .base-box span.unit{
  font-size: 28px;
  margin-left: 8px;
}

.base-box.summary{
  width: 50%;
}

.base-box.keyword{
  width: 35%;
}
.base-box.usage{
  width: 65%;
}

.report .base-box.usage{
  width: 100%;
}
.report .base-box.keyword{
  width: 40%;
  position: relative;
}


.report-box{
  padding: 24px;
}

.base-box .detail-btn{
  text-align: center;
  border-top: 1px solid #e0e0e0;
  background-color: #fafafa;
  font-weight: 700;
  background-color: #EFEFF0;
}

.base-box .detail-btn:hover{
  background-color: #E0E0E0;
  text-decoration: none;
}

.base-box .detail-btn a{
  width: 100%;
  display: inline-block;
  padding: 15px;
  color: #606060;
}

.base-box .detail-btn i{
  margin-left: 10px;
}

.report .base-box.keyword .detail-btn{
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.base-box .report-box table ,.base-box .lim-data-box table{
  border:1px solid #e0e0e0;
}

.base-box .report-box table th,.base-box .lim-data-box table th{
  padding: 12px;
  font-weight: 700;
}

.base-box .report-box table td,.base-box .lim-data-box table td{
  border-top:1px solid #e0e0e0;
  padding: 20px;
}

.base-box .g-user table td{
  padding: 15px;
  vertical-align: middle;
}

.base-box .g-user table td i.fa-user-circle{
  font-size: 30px;
  color: #3285c4;
}

.base-box .report-box table tr:nth-child(odd) td {
  background: #ebf6ff;
}

.base-box .g-rank .report-title{
  width: 87%;
  padding-top: 10px;
}

.base-box .report-box .refine-content{
  margin-bottom:15px;
}

.report-search-content .select-box select.search-action{
  width: 210px;
}

#main .refine-content select,
#main #search-form .report-search-content select,
#main .reproduction-area select,
#main #search-form .report-search-content .search-detail-btn,
.calendar-head select{
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  appearance: none;
  /* margin-left: 7px; */
}

#main #search-form .report-search-content select{
  color: #000;
}

#main .refine-content .limit-select{
  width: 80px;
}

#main .refine-content .target-select{
  width: 200px;
}

/* summary */

.base-box.summary #circle{
  width: 270px;
  padding-top: 40px;
  margin: 0 auto;
}

.base-box.summary .report-box .good-color,
.base-box.summary .report-box .success-color{
  width: 25px;
  height: 13px;
  display: inline-block;
  margin-right: 4px;
}
.base-box.summary .report-box .good-color{
  background: #3285C4;
}
.base-box.summary .report-box .success-color{
  background: #1FA485;
}

.base-box.usage .report-box .access-legend,
.base-box.usage .report-box .res-legend{
  width: 25px;
  height: 2px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
}
.base-box.usage .report-box .access-legend{
  background: #FF933F;
}
.base-box.usage .report-box .res-legend{
  background: #4691D2;
}
.triangle-container {
  position: relative; /* 相対位置 */
  width: 0;
  height: 0;
  margin: 20px; /* 外側のマージン */
}

.access-triangle,
.res-triangle {
  width: 0; /* 幅を0にする */
  height: 0; /* 高さを0にする */
  border-left: 50px solid transparent; /* 左側の境界線 */
  border-right: 50px solid transparent; /* 右側の境界線 */
  border-bottom: 100px solid #007bff; /* 下側の境界線（白色） */
}

.triangle-container::before {
  content: '';
  position: absolute;
  left: -50px; /* 三角形の左側に合わせる */
  top: 0; /* 上に合わせる */
  width: 0;
  height: 0;
  border-left: 52px solid transparent; /* 左側の境界線 */
  border-right: 52px solid transparent; /* 右側の境界線 */
  border-bottom: 102px solid white; /* 下側の境界線（青色） */
}



.base-box.summary .report-box .none-evaluation-color,
.base-box.summary .report-box .none-success-color{
  background: #cccccc;
  width: 25px;
  height: 13px;
  display: inline-block;
  margin-right: 4px;
}



.eval-items,
.success-items,
.usage-items{
  position: absolute;
}
.eval-items{
  top: 110px;
  right: 0px;
}
.success-items{
  top: 240px;
  right: 0px;
}
.usage-items{
  top: -20px;
  left: 200px;
}
.colon{
  font-size: 5px;
}
.eval-items div > *,
.success-items div > *{
  vertical-align: middle;
}

.base-box.keyword .report-box.g-user table thead,
.base-box.keyword .report-box.g-user table tbody{
  display: block;
}

.base-box.keyword .report-box.g-user table tbody{
  height: 330px;
  overflow-y: scroll;
}

.base-box.event-incidence td{
  background-color: #fff !important;
}

.no-good .foreground-circle{
  display: none;
}

#main .log-del-btn i{
  font-size: 20px;
}

/* order */
#main #search-form .order-area select{

  padding: 0 12px;
  min-width: 100px;
  border: 1px solid #cecece;
  background-color: #fff;
}

/* event_incidence */
.search-detail-btn{
  text-align:center;
  padding: 0.8em 64px;
  color: #3285c4;
}
.search-detail-modal{
  position:absolute;
  background:#fff;
  top: 45px;
  width: 370px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.1);
  -webkit-border-radius: 3px;
  display:none;
  z-index:10;
}
.search-detail-modal > div{
  padding: 24px 0px;
}
.search-detail-modal > div:not(:first-child){
  border-top: 1px solid #D6D6D6;
}
.cond-type-form{
  padding: 24px 0px;
}
.detail-label{
  width: 100px;
  display: inline-block;
}
.detail-close-btn{
  position: absolute;
  top: 16px;
  right: 16px;
  color:#CCCCCC;
  cursor:pointer;
}
.detail-pop{
  display:none;
  background-color:#fff;
  position:absolute;
  width: 285px;
  border: 1px solid #CFDAE6;
  padding: 12px;
  z-index:1;
}
.detail-count-area{
  display: flex;
  flex-direction: column;
}
.detail-count-area span{
  display: inline-block;
}

body.maincolor1 #ui-datepicker-div{
  height: 243px;
}

.target-select,.limit-select{
  padding: 0 12px;
}

/* グラフ */
.yline-label{
  width: 100%; 
  overflow:hidden;
  position: absolute;
  top: 0px;
}
/* reaction_chat */
.base-box .free_chat_form .submit-btn{
  width: 100%;
  height: 40px;
  border-radius: 5px;
  color: white;
  background-color: #3285c4;
  border: 1px solid rgb(255,255,255);
}

.base-box #free_chat_form{
  display:flex;
  position: relative;
}

.base-box.reaction-chat{
  width:70%; 
  margin-right: 30px;
}

.reaction-chat .reaction-content-area{
  display: none; 
  margin-bottom: 30px;
}

.empty-area{
  text-align: center;
  padding: 170px 0px;
  color: #8a8a8a;
  height: calc(100vh - 235px);
}

.reaction-chat .empty-area i.fa-exclamation-circle{
  color: #ccc;
  font-size: 45px;
  margin-bottom: 25px;
}

.base-box.reaction-chat .reaction-content-area .chat-area{
  overflow-y: auto;
  height: calc(100vh - 265px);
  padding-right:20px;
  padding-left:10px;
}

.reaction-chat .chat-area .dsb-talk-to{
  background: #ebf6ff;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 80%;
  float: left;
}

.reaction-chat .chat-area .dsb-talk-me{
  background: #eee;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 80%;
  float: right;
}

.reaction-chat .chat-area .dsb-chat-name-to{
  padding-left: 5px;
  font-size: 13px;
  margin-bottom: 5px;
  clear: both;
}

.reaction-chat .chat-area .dsb-talk-to::before{
  position: absolute;
  content: '';
  border-top: 10px solid transparent;
  border-right: 10px solid #ebf6ff;
  border-bottom: 10px solid transparent;
  top: 10px;
  left: -10px;
  right: auto;
  z-index: 2;
  transform: scaleY(0.5);
}

.reaction-chat .chat-area .dsb-talk-me::before{
  position: absolute;
  content: '';
  border-left: 10px solid #eee;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: none;
  top: 10px;
  left: auto;
  right: -10px;
  z-index: 2;
  transform: scaleY(0.5);
}

.chat-area .dsb-talk-me .msg-media{
  width: 100%;
}

.reaction-chat .chat-area .dsb-chat-icon-box{
  display: none;
}

.chat-area .faq-area .qa-item{
  width: calc(50% - 30px);
  padding: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-radius: 5px;
  background-color: #F1C231;
  background-color: #FFD142;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
.chat-area .left-cnt{
  color: #c43232;
  margin: 8px 0;
}
.chat-area .faq-area .qa-item .icon::before {
  content: "";
  display: inline-block;
  background-image: url(./image/q.png);
  width: 37px;
  height: 32px;
}

/* 一旦ここで非表示に */
.dsb-judg-area{
  display: none;
}
.reproduction-area{
  width:30%;
  height:50%;
}
.reproduction-area #event-submit{
  text-align: center;
  color: #fff !important;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 3px;
  background-color: #3285c4;
  margin-top: 60px;
  cursor: pointer;
}

.reproduction-area label{
  display: block;
}

/* HTML: <div class="loader"></div> */
.reaction-chat .chat-area .dsb-talk-me .loader,
.translation-box .loader {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

.reaction-chat .chat-area .dsb-talk-me .loader{
  margin: 7px 30px;
}

.translation-box .loader{
  margin: 18px 10px 0px 25px;
}

@keyframes l5 {
    0%  {box-shadow: 20px 0 #000, -20px 0 #0002;background: #000 }
    33% {box-shadow: 20px 0 #000, -20px 0 #0002;background: #0002}
    66% {box-shadow: 20px 0 #0002,-20px 0 #000; background: #0002}
    100%{box-shadow: 20px 0 #0002,-20px 0 #000; background: #000 }
}

.dsb-talk-clear.dsb-sys-btn{
  background-color: #FFF;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 5px 10px;
  text-decoration: none;
}

.dsb-sys-btn.dsb-talk-clear{
  position: absolute;
  font-size: 14px;
  line-height: 1;
  margin-top: calc((1em + 10px + 10px) * -1);
  z-index: 3;
  color: #000;
}

.dsb-talk-clear.dsb-sys-btn i.fa{
  margin-right: 5px;
}

.chat-area .pinfo-confirm-btn,
.chat-area .privacy-btn,
.chat-area .pinfo-skip-btn{
  border-radius: 5px;
  padding: 5px;
  background-color: #F1C231;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-top: 8px;
  display: inline-block;
}

.chat-area .pinfo-confirm-btn.wrong-btn,
.chat-area .privacy-btn.disagree-btn{
  background-color: #d8d8d8;
}


/* bots */
.purpose-item-wrap div.input.text{
  display: inline-block;
  width: 95%;
}
.purpose-item-wrap .purpose-del-btn{
  margin: 8px;
  color: #ccc;
}
.industry-list .industry-del-btn:hover,
.industry-list .industry-del-btn{
  color: #ccc;
  margin-left: 10px;
}
#inp-industry_types option{
  display: inline-block;
  text-overflow: ellipsis;
  overflow:hidden;
  white-space:nowrap;
  max-width: 690px;
  vertical-align: middle;
}

/* llm popup */
.a-main-area .event-llm-form .llm-text{
  background: #e9e9ed;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid #57595d;
}
.a-main-area .event-llm-form .llm-text p{
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 15px;
}
.a-main-area .event-llm-form .llm-text span{
  font-size: 11px;
  font-weight: 600;
  color: #837676;
}

#action-form-box{
  padding-top: 35px;
}

/* prompt */
.a-list-tbl tr{
  background-color: #fff;
}

/* modal(テンプレートなどの選択) */
.select-modal .modal-dialog{
  max-width: 80%;
}

.select-modal .modal-body ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.select-modal .modal-body ul li{
    width:30%;
    border:1px solid #E8E8E8;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;

}

.select-modal .modal-body ul img{
    width:100%;
}

.select-modal .modal-body ul li .icon{
    display:none;
    background-color:#3285C4;
    color:#FFF;
    border-radius: 50%;

    width: 25px;
    height: 25px;
    text-align: center;
    border: 1px solid #FFF;
    position: absolute;
    top: -10px;
    right: -10px;
    
}
.select-modal .modal-body ul li.selected{
    border:2px solid #3285C4;
}
.select-modal .modal-body ul li.selected .icon{
    display:block;
}