@charset "utf-8";

/**** 動画のモーダル表示 *****/
#tentaace_movie .flexBox { display:flex; justify-content:space-between; }
#tentaace_movie button { width: 32%; padding: 0; box-sizing: border-box; cursor:pointer; }
#tentaace_movie button:hover { opacity:0.8; }
@media (max-width: 900px) {
	#tentaace_movie .flexBox { display:block; }
	#tentaace_movie button { width:100%; margin-top:20px; }
}

/**** 資料ダウンロード *****/
@media screen and (min-width: 901px), print {
  #caseStudies .columns.columns--image {
    grid-template-columns: minmax(31%, 22rem) 1fr;
  }
}

/**** お知らせ *****/
  #fee { margin-top:-2.5rem; }
  @media screen and (max-width: 900.9px) {
    #fee { margin-top:-1.5rem; }
  }
  .dateList__listItem {
      border-bottom: none !important;
      padding-bottom:0 !important;
  }
  .dateList__listItem__shoulder .dateList__listItem {
    grid-column-gap: 0;
    column-gap: 0;
  }
  .dateList__listItem__shoulder .dateList__listItem:not([target="_blank"])::after {
    display: none;
  }
  .dateList__title a:hover{
    text-decoration: underline;
  }

/**** 業務の大幅な削減 *****/
.editor .reduction tbody {
  border:  solid 1px #dbdbdb;
  border-top: none;

}
.editor .reduction strong { font-size:1.2rem; color:#fff !important; }
.editor .reduction .fs-larger { text-align:center; font-weight:700; }
.editor .reduction .fc-red { color:#c53720 }
.editor figure:is(.table) table:is(.reduction) tbody td:not(:is(tr:last-child *)) {
  border-left: solid 1px #dbdbdb;
}
.editor figure:is(.table) table:is(.reduction) thead th:is([colspan="3"]) {
  border-bottom: solid 1px #fff !important;
} { color: }
.editor li.cut { color: #e4e4e4; }
.editor li.cut:before { background-color:#e4e4e4; }

.editor .implementation_wrap,
.editor .after_implementation { position:relative; overflow:visible; }

@media print, screen and (min-width: 901px){
  .editor .implementation_wrap:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 24px 0 24px;
    border-color: #23678a transparent transparent transparent;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
  .editor .after_implementation:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32px 0 32px 32px;
    border-color: transparent transparent transparent #0168b3;
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 900.9px) {
  .editor figure:is(.table,.image,.media) table.reduction {
   width: 900px;
    table-layout: unset;
  }
  .editor .implementation_wrap:before,
  .editor .after_implementation:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 24px 0 24px;
    border-color: #0168b3 transparent transparent transparent;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
  .editor .implementation_wrap:before {
    border-color: #23678a transparent transparent transparent;
  }
}


/**** 追従バナー *****/
#__next {
	position: relative;
}
.bl_floatingBanner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  margin: auto;
  width: 240px; 
  height: auto;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.bl_floatingBanner.active {
  opacity: 1;
  visibility: visible;
}
.bl_floatingBanner.js_close {
  display: none;
}

.bl_floatingBanner_close {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: -15px;
  cursor: pointer;
}
.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
}
.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 7px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
}