/*
* ic_common.css
******************************************************************************/
/*
* Common ( Header, Aside etc... )
******************************************************************************/
.ic-avatar {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.5rem;
  border-radius: 2.5rem;
  color : #fff;
  background: #999;
}

/*
* Table
******************************************************************************/

/* table-ic-default */
.table-ic-default{
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table-ic-default th,
.table-ic-default td{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.table-ic-default th{
  position: relative;
  min-width: 80px;
  max-width: 2000px;
  width: 110px;
}
.ic-resizer {
  width: 15px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  cursor: col-resize;
  user-select: none;
}
.ic-resizer::before,
.ic-resizer::after {
  content:"";
  width: 1px;
  height: 30%;
  background: #666;
  position: absolute;
  right: 2px;
  top: 35%;
}
.ic-resizer::after {
  right: 6px;
}
.table-ic-default td{
  border-right: dotted 1px rgba(150,150,150,0.5);
}
/* table-ic-default > bordered */
.table-ic-default.table-ic-default-bordered th:first-child{
  border-left: solid 1px rgba(150,150,150,0.5);
}
.table-ic-default.table-ic-default-bordered th:last-child{
  border-right: solid 1px rgba(150,150,150,0.5);
}
.table-ic-default.table-ic-default-bordered td:first-child{
  border-left: solid 1px rgba(150,150,150,0.5);
}
.table-ic-default.table-ic-default-bordered td:last-child{
  border-right: solid 1px rgba(150,150,150,0.5);
}
/* table-ic-default > セル余白 */
.table-ic-default tbody.table-ic-p-10 tr td {
  padding:8px 6px;
}
/* table-ic-default > Editボタン */
.table-ic-default th.table-ic-edit{
  min-width: 50px;
  width: 50px;
}
/* table-ic-default > デフォルト幅
* ic-common.js table width resizer script ( non jquery )
* default 110px, min 80px, max 500px
*/
.table-ic-default th.th-w-130{
  width: 130px;
}
.table-ic-default th.th-w-150{
  width: 150px;
}
.table-ic-default th.th-w-180{
  width: 180px;
}
.table-ic-default th.th-w-220{
  width: 220px;
}
.table-ic-default th.th-w-300{
  width: 300px;
}
.table-ic-default th.th-w-2col{
  width: 160px;
}
.table-ic-default th.th-w-3col{
  width: 240px;
}
.table-ic-default th.th-w-4col{
  width: 320px;
}
.table-ic-default th.th-w-5col{
  width: 400px;
}
.table-ic-default th.th-w-6col{
  width: 480px;
}
.table-ic-default th.th-w-7col{
  width: 560px;
}
.table-ic-default th.th-w-8col{
  width: 640px;
}
.table-ic-default th.th-w-10col{
  width: 800px;
}
.table-ic-default th.th-w-12col{
  width: 1200px;
}

/* table-ic-default > 上部スクロールバー */
.table-responsive-scrollbar {
  width: 100%;
}
.scrollbar {
  width: 100%;
  height: 12px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbar .inner {
  height: 1px;
}
.scrollbox {
  width: 100%;
  margin-top: 0px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbox .inner {
  margin-bottom: 5px;
}
/* スクロールバーのスタイル */
.scrollbar::-webkit-scrollbar,
.scrollbox::-webkit-scrollbar {
  height: 12px;
}
.scrollbar::-webkit-scrollbar-track,
.scrollbox::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: rgba(230,230,230,0.8);
}
.scrollbar::-webkit-scrollbar-thumb,
.scrollbox::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(120,120,120,0.4);
}

/* table-ic-default > sortのStyle */
[class^="ic-sort"]::after {
  content: "";
  display: inline-block;
  width:1rem;
  height: 1rem;
  margin-left: 2px;
  background: url(../../ic/icon-sort.svg) no-repeat center;
  vertical-align: middle;
}
.ic-sort-asc::after {
  background: url(../../ic/icon-sort-asc.svg) no-repeat center;
}
.ic-sort-desc::after {
  background: url(../../ic/icon-sort-desc.svg) no-repeat center;
}
[class^="ic-sort"]:hover::after {
  background: url(../../ic/icon-sort-asc.svg) no-repeat center;
}
.ic-sort-asc:hover::after {
  background: url(../../ic/icon-sort-desc.svg) no-repeat center;
}
.ic-sort-desc:hover::after {
  background: url(../../ic/icon-sort-asc.svg) no-repeat center;
}

/* table-ic-alloca */
.table-ic-alloca{
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table.table-ic-alloca th,
.table.table-ic-alloca td{
  white-space: nowrap;
  font-size: 1.25em;
  padding: 0.6rem 0.75rem;
  border: solid 1px rgba(150,150,150,0.5);
}
.table-ic-alloca th.table-ic-head{
  position: relative;
  width: 20%;
  font-size: 1em;
  background-color: #eaeaec;
}
.table-ic-alloca td{
  border-right: solid 1px rgba(150,150,150,0.5);
}

.table-ic-alloca td.table-ic-change{
  width: 20%;
  font-weight: bold;
  font-size: 1em;
  background: rgb(237, 251, 247);
}

/*
* Form Parts
******************************************************************************/
/* --------Input-------- */
/* ic-input-date */
.input-group.ic-input-date{
  width: 240px;
}
.light-style .flatpickr-calendar.open {
  z-index: 1095 !important;
}

/* --------Switch-------- */
.switch.ic-sw4rem {
  width: 4rem;
  text-align: left;
}
.switch.ic-sw4rem .switch-toggle-slider {
  width: 4rem;
  font-size: 0.8rem;
  line-height: 1.15rem;
}
.switch.ic-sw4rem .switch-input ~ .switch-label {
  padding-left: 3rem;
  padding-left: 4.5rem;
}
.switch.ic-sw4rem .switch-input:checked ~ .switch-toggle-slider::after {
  left: 1.05rem;
  left: 2.55rem;
}

/*
* Accordion
******************************************************************************/
/* accordion title */
.accordion-custom-button .accordion-item .accordion-button.ic-dark{
  background: #888;
  color:#fff;
}

/*
* Button parts
******************************************************************************/
/* help button */
.ic-help{
  color: var(--bs-info);
}

/* copy link button */
.copy-link{
  position: relative;
}
.copy-link::before {
  content: "コピーしました！";
  display: none;
  position: absolute;
  top: -30px;
  right: 0px;
  background: #00bad1;
  color: #fff;
  border-radius: 10px;
  padding: 3px 10px;
  font-size: 14px;
}
.copy-link.active::before {
  display: block;
}

/*
* offcanvas
******************************************************************************/
/* reference_log offcanvas */
.offcanvas.offcanvas-end.w900{
  width: 900px;
}

/*
* Others
******************************************************************************/
/* overflow-txt */
.overflow-txt{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 1em;
}

/* popover */
.popover.show{
  z-index: 1095 !important;
}

/* expand */
.ic-info-expand{
  font-size: 0.8125rem;
}

/* small_badge */
.badge.ic-small_badge{
  padding: 0.2em 0.4em 0.35em;
  border-radius: 50rem;
  font-size: 0.8125em;
}

/*
* Ad-index
* 広告管理 Screen
******************************************************************************/
.ic-intro h2{
  font-size: 1.4rem;
  line-height: 1em;
  margin-bottom: 1em;
  padding: 15px;
  border-left: solid 5px #f00;
}
.ic-intro h3{
  font-size: 1.3rem;
  line-height: 1em;
  margin: 1.5em 0;
  padding: 10px 0;
  border-bottom: solid 1px #f00;
}
.ic-intro h4{
  font-size: 1.15rem;
  line-height: 1em;
  margin: 1.5em 0;
}










