/* CSS Document */
@charset "UTF-8";
html {}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: 1.1rem;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
section {
  padding: 2rem 0;
}
sup {
  color: #00a0e9;
}
.wrap, .wrap-l {
  width: 90%;
  margin: 0 auto;
}
.articleContents {
  min-width: 960px;
}
@media screen and (min-width: 768px) {
  p {
    margin-top: 0.5rem;
    /*font-size: 1.2rem; */
  }
  .wrap {
    width: 95%;
    max-width: 900px;
  }
  .wrap-l {
    width: 100%;
    max-width: 1000px;
  }
  .pconly {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 2rem 0;
  }
  .articleContents {
    min-width: 100%;
  }
  .pconly {
    display: none;
  }
}
/* ====================================
          メインビジュアル
===================================== */
.mv {
  width: 100%;
  max-height: 1500px;
  min-height: 1000px;
  display: flex;
  flex-wrap: wrap; /* 折返し指定 */
  justify-content: center;
  background: url(../images/bp70series/main-bg.jpg) no-repeat bottom/cover;
  ;
}
/*add 20250207 BLIセキュリティ用 はじめ*/
.mv-bli {
  width: 100%;
  max-height: 1500px;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap; /* 折返し指定 */
  justify-content: center;
  /* background: url(../../../../print/information/images/bli_main-bg.png) no-repeat bottom/cover; */
  background-image: url("../../img/products/bli_back.png");
  background-repeat:no-repeat;
  background-position:center;
    
  ;
}
/*add 20250207 BLIセキュリティ用　おわり*/
.mainvisual {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}
.maincopy {
  /*background: #fff;*/
  position: absolute;
  top: 62vh;
  font-size: 35px;
  font-weight: 600;
  padding: 0 1rem;
  color: #333;
}
.mainproduct {
  width: 150px;
  top: 65vh;
  left: 110vh;
  position: absolute;
  transition-delay: 2s !important;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 600px;
  }
  .mainvisual {
    min-height: auto;
  }
  .maincopy {
    top: 43vh;
    font-size: 3.8vw;
  }
}
/* ====================================
        スクロールボタン
===================================== */
.scrolllink {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 1vh
}
/*スクロールダウンの場所*/
.scrolldown4 {
  /*描画位置*/
  position: absolute;
  /*矢印の動き*/
  animation: arrowmove 3s ease-in-out infinite;
}
/*全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 10%;
  }
  100% {
    bottom: 1%;
  }
}
/*フェードイン*/
.anim-box.fadein.is-animated {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スムーステキスト*/
.smooth {
  transform: translateY(30px);
  opacity: 0;
}
.smooth.is-animated {
  transition: 2s;
  transform: translateY(0);
  opacity: 0.8;
}
/*動画*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/* メインビジュアルIE調整 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .maincopy {
    left: 32%;
  }
  .scrolllink {
    left: 45%;
  }
}
/* ====================================
	            menu
===================================== */
@media only screen and (max-width: 1023px) {
  /* ページナビ */
  .scroll-fix-wrap {
    padding-top: 40px;
    position: relative;
  }
  #pageNavi {
    width: 100%;
    position: absolute;
    top: 0;
  }
  .scroll-fix-wrap.passed #pageNavi {
    position: fixed;
    z-index: 10;
  }
  #pageNavi .navi-container {
    padding: 6px 0 0 6px;
  }
  .navi-title {
    display: flex;
    align-items: center;
  }
  .navi-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 195px;
    height: 100%;
    padding-right: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #515855;
  }
  .navi-btn-menu {
    padding: 6px;
    background-color: #515855;
  }
  .btn-trigger {
    width: 20px;
    padding-top: 88%;
    cursor: pointer;
    position: relative;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
  }
  .btn-trigger, .btn-trigger span {
    display: block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 44%;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .open .btn-trigger span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .open .btn-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .open .btn-trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #pageNavi ul.list-navi {
    display: none;
    height: calc(100vh - 60px);
    font-size: 1.6rem;
  }
  #pageNavi ul.list-navi li {
    margin-bottom: 1.5em;
  }
  #pageNavi ul.list-navi li, #pageNavi ul.list-navi a {
    width: 100%;
    text-align: center;
    text-decoration: none;
  }
  .scroll-fix-wrap #pageNavi.open {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    /* background-color: rgba(230, 0, 13, 0.9); */
    background-color: rgba(119, 119, 119, 0.9);
    animation: show .2s linear 0s;
    animation-fill-mode: both;
  }
  #pageNavi.open .navi-logo a {
    color: #fff;
  }
  #pageNavi.open ul.list-navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    animation: show .2s linear .3s;
    animation-fill-mode: both;
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  #pageNavi.open ul.list-navi a {
    color: #fff;
  }
}
@media only screen and (min-width: 1024px) {
  /* ページナビ */
  .scroll-fix-wrap {
    padding-top: 60px;
    position: relative;
    z-index: 9999;
  }
  #pageNavi {
    width: 100%;
    position: absolute;
    top: 0;
    background-color: #f4f4f4;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
  }
  .scroll-fix-wrap.passed #pageNavi {
    position: fixed;
    z-index: 10;
  }
  .scroll-fix-wrap.passed.passed-bottom #pageNavi {
    position: absolute;
  }
  .navi-logo a {
    font-size: 1.3rem;
    font-weight: 600;
    color: #515855;
    text-decoration: none;
  }
  .navi-btn-menu {
    display: none;
  }
  #pageNavi .navi-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
  #pageNavi .navi-title {
    width: 280px;
    margin-right: auto;
    margin-left: 1rem;
  }
  #pageNavi ul.list-navi {
    display: flex;
  }
  #pageNavi ul.list-navi li {
    font-size: 1.1rem;
    font-weight: 500;
  }
  #pageNavi ul.list-navi li a {
    display: block;
    padding: 0 1.5em;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    color: #515855;
  }
  #pageNavi ul.list-navi li a.active, #pageNavi ul.list-navi li a:hover {
    text-decoration: none;
  }
  #pageNavi ul.list-navi li a:hover {
    text-decoration: underline;
    /* transition: all 0.5s ease-in-out; */
  }
}
/* ====================================
           sectionA type
===================================== */
.sectionA {
  text-align: center;
  width: 100%;
  padding: 5rem 0 2rem 0;
  /* min-height: 280px; */
}
.sectionA p {
  line-height: 220%;
  font-size: 1.4rem;
  margin: 1.5rem 0.5rem;
  color: #515855;
  font-weight: 400;
}
.sectionA-block {
  margin-top: 80px;
}
.sectionA-block:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .sectionA-block {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .sectionA {
    margin-top: 0;
  }
  .sectionA p {
    line-height: 180%;
    font-size: 1rem;
  }
}
/* ====================================
           sectionB type
===================================== */
.sectionB {}
.sectionB p {
  margin: 1rem 0.5rem;
}
.section-ttl {
  font-size: 2.5rem;
  letter-spacing: 0.5em;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  margin: 3rem 0 2rem 0;
  color: #515855;
  line-height: 1;
}
.fade-left-block-list {
  width: 60%;
  margin: 2rem auto 4rem auto;
}
.fade-left-block-list li {
  border-bottom: solid 2px #e5e9e6;
  padding: 5px 0;
  height: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.8rem 0;
}
.fade-left-block-list li:hover {
  border-bottom: solid 2px #515855;
  padding: 5px 0;
}
.fade-left-block-list a {
  text-decoration: none;
}
.multiple-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.multiple-block-image {
  width: 49%;
  margin-top: 20px;
}
.multiple-block-image:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .multiple-block-image {
    width: 32%;
  }
  .multiple-block-image:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .sectionB p {
    margin: 1rem 0.2rem;
    line-height: 1.2;
    font-size: 1.1rem;
  }
  .fade-left-block-list a {
    text-decoration: none;
  }
}
/* ====================================
           sectionC type
===================================== */
.sectionC p {
  margin: 0 0.5rem 1.5rem 0;
  line-height: 180%;
}
.section-ttl-s {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  margin: 1rem 0 1.5rem;
  width: 100%;
}
.sectionC-section {
  margin-bottom: 2rem;
}
.sectionC-section:first-of-type {
  margin-top: 0;
}
/* slide block */
.slide-block {
  margin-top: 40px;
  margin-bottom: 40px;
}
.slide-block:first-of-type {
  margin-top: 0;
}
.slide-block-contents {
  margin-top: 20px;
}
.slide-block-ttl {
  font-size: 18px;
  font-weight: bold;
}
.slide-block-txt {
  margin: 0 0 2rem 0;
}
/* fade up block */
.fade-up-block-image {
  margin-top: 0;
}
.fade-up-block-image:first-of-type {
  margin-top: 0;
}
.fade-up-block a {
  text-decoration: none;
}
.fade-up-block a:hover {
  opacity: 0.7;
}
/* marker block */
.marker-block {
  margin-top: 40px;
}
.marker-block:first-of-type {
  margin-top: 0;
}
.marker-block-contents {
  margin-top: 20px;
}
.marker-block-ttl {
  font-size: 18px;
  font-weight: bold;
}
.marker-block-txt {
  margin-top: 10px;
}
/* fade left block */
.fade-left-block-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.fade-left-block-item:first-of-type {
  margin-top: 0;
}
.fade-left-block-num {
  color: #fff;
  color: #515855;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: end;
  align-items: center;
  line-height: 1;
}
.fade-left-block-txt {
  width: calc(100% - 40px);
  margin-left: 0;
}
.fade-left-block-txt {
  line-height: 1.8;
  color: #696f6c;
}
@media screen and (min-width: 768px) {
  /* common */
  .sectionC-section {}
  /* slide block */
  .slide-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*align-items: center;*/
  }
  .slide-block-image {
    width: 28%;
  }
  .slide-block-contents {
    width: 68%;
    margin-top: 0;
  }
  /* fade up block */
  .fade-up-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .fade-up-block-image {
    width: 30%;
  }
	
  .fade-up-block-image:nth-child(-n+3) {
    margin-top: 0;
  }
  /* marker block */
  .marker-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
  .marker-block-image {
    width: 48%;
  }
  .marker-block-contents {
    width: 48%;
    margin-top: 0;
  }
  /* fade left block */
  .fade-left-block-txt {
    line-height: 2;
    font-size: 1.5rem;
    padding: 0.5rem;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .fade-up-block-image {
    margin: 1.5rem auto;
    width: 80%;
  }
}
/* ====================================
           animation style
===================================== */
/* fade zoom */
.u-fade-type-zoom.is-active {
  transition: 8s;
  transform: scale(1.06);
}
/* fade up */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}
.u-fade-type-up.is-active {
  /* transition: 1s; */
  transform: translateY(0);
  opacity: 1;
}
.is-active .u-fade-type-up {
  transition: .6s;
  transform: translateY(0);
  opacity: 1;
}
.is-active .u-fade-type-up:nth-child(2) {
  transition-delay: .4s;
}
.is-active .u-fade-type-up:nth-child(3) {
  transition-delay: .8s;
}
.is-active .u-fade-type-up:nth-child(4) {
  transition-delay: 1.2s;
}
.is-active .u-fade-type-up:nth-child(5) {
  transition-delay: 1.6s;
}
.is-active .u-fade-type-up:nth-child(6) {
  transition-delay: 2s;
}
/* fade left */
.u-fade-type-left {
  transform: translateX(50px);
  opacity: 0;
}
.u-fade-type-left.is-active {
  transition: .6s;
  transform: translateX(0);
  opacity: 1;
}
.is-active .u-fade-type-left {
  transition: .6s;
  transform: translateX(0);
  opacity: 1;
}
.is-active .u-fade-type-left:nth-child(2) {
  transition-delay: .2s;
}
.is-active .u-fade-type-left:nth-child(3) {
  transition-delay: .4s;
}
.is-active .u-fade-type-left:nth-child(4) {
  transition-delay: .6s;
}
.is-active .u-fade-type-left:nth-child(5) {
  transition-delay: .8s;
}
/* img */
/* 左から*/
.u-fade-type-slide {
  position: relative;
}
.u-fade-type-slide::after {
  content: '';
  display: block;
  width: 100%;
  transform: scaleX(1);
  transform-origin: 100% 0;
  height: 100%;
  background-color: #eee;
  position: absolute;
  top: 0;
  right: 0;
}
.u-fade-type-slide.is-active::after {
  transition: 1s;
  transform: scaleX(0);
}
/* 右から*/
.u-fade-type-slide_2 {
  position: relative;
}
.u-fade-type-slide_2::after {
  content: '';
  display: block;
  width: 100%;
  transform: scaleX(1);
  transform-origin: 0 100%;
  height: 100%;
  background-color: #eee;
  position: absolute;
  top: 0;
  right: 0;
}
.u-fade-type-slide_2.is-active::after {
  transition: 1s;
  transform: scaleX(0);
}
/* single marker */
.u-fade-type-marker {
  background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
  background-repeat: repeat-x;
  background-size: 200% .6em;
  background-position: 0 .6em;
  padding-bottom: .6em;
}
.u-fade-type-marker.is-active {
  transition: all 1.2s ease;
  background-position: -100% .6em;
}
/* 光る */
.anim-box.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.anim-box.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear 1;
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* ====================================
              汎用
===================================== */
.bgc_1 {
  background: #dfe6e2;
  color: #515855;
}
.bgc_2 {
  background: #87938d;
  color: #fff;
}
.bgc_3 {
  background: #292b2d;
  color: #fff;
}
.bgc_4 {
  background: #f4f4f4;
  color: #000;
}
.w40 {
  width: 40% !important;
  margin: 0 auto;
}
.w50 {
  width: 50% !important;
  margin: 0 auto;
}
.w55 {
  width: 55% !important;
  margin: 0 auto;
}
.w80 {
  width: 80% !important;
  margin: 2rem auto;
}
.point {
  font-weight: 500;
  color: #ed6a00;
}
.caption {
  font-size: 0.8em;
  margin: 2rem 1rem;
}
.small {
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
.black {
  color: #000000;
}
.mts_pc {
  margin-top: 1.3rem;
}
.indent1 {
  text-indent: 0.9em;
}
.connectmenu {
  border: solid 15px #c9d5ce;
  border-radius: 50%;
  text-align: center;
  padding: 2rem;
  width: 50% !important;
  line-height: 1.5;
}
.connectmenu_inner {
  border-bottom: solid 2px #696f6c;
  padding-bottom: 5px;
  margin: 0 auto;
  color: #696f6c;
  font-weight: 500;
  font-size: 1.2rem;
  width: 85px;
}
.connecttitle {
  border: solid 10px #696f6c;
  border-radius: 50%;
  text-align: center;
  padding: 1rem;
  width: 80px !important;
  height: 80px;
  line-height: 1.5;
  margin: -8.7rem auto 2rem auto;
  background: #fff;
  z-index: 2;
  position: relative;
}
.connecttitle_inner {
  border-bottom: none;
  padding-bottom: 5px;
  margin: 1.3rem auto;
  color: #696f6c;
  font-weight: 500;
  font-size: 1rem;
}
.section-border {
  border-top: solid 2px #696f6c;
  border-bottom: 0;
  /* padding: 6rem 0 1rem 0; */
  margin-top: 12rem;
}
.connectmenu:hover {
  border: solid 15px #696f6c;
}
.fas {
  color: #696f6c;
}
.section-ttl_sub {
  color: #696f6c;
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
  display: block;
  margin: 2rem;
  width: 90%;
}
.point-ttl {
  font-weight: 600;
  width: 100%;
  font-size: 1.2rem;
  margin: 1rem 0 1rem 0;
  font-size: large;
}
.products_cate {
  margin-top: 1rem;
  border-radius: 15px;
  background: #696f6c;
  color: #fff;
  font-weight: 500;
  padding: 3px;
  text-align: center;
}
.products_icon {
  width: 20px !important;
}
.product_list {
  margin-bottom: 3rem;
}
.product_list li {
  border-bottom: solid 1px #e7e7e7;
  padding: 3px;
}
.intent_1 {
  padding-left: 1em;
}
.global__search--btn dl {
  display: table;
  margin: 0 auto;
}
.contEtcArea {
  padding: 3rem 7rem;
  background-color: #eae9d8;
}
.contEtcArea .btnArea {
  margin: 1rem auto 1rem auto;
}
.mv_link {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .connectmenu {
    width: 120px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .scrolllink {
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 55vh;
  }
  .connectmenu {
    border: solid 15px #c9d5ce;
    border-radius: 50%;
    text-align: center;
    padding: 2rem;
    width: 22%;
    line-height: 1.5;
    margin: 1rem auto;
  }
  .w40 {
    width: 90% !important;
    margin: 0 auto;
    margin: 2rem auto;
  }
  .w50 {
    /*width: 90%!important;*/
    margin: 0 auto;
  }
  .w55 {
    width: 90% !important;
    margin: 0 auto;
  }
  .w80 {
    width: 90% !important;
    margin: 2rem auto 0 auto;
  }
  .mts_pc {
    margin-top: 0;
  }
  .fade-left-block-list {
    width: 80%;
    margin: 2rem auto;
  }
  .section-ttl {
    font-size: 6vw;
    letter-spacing: 0.2em;
  }
  .section-ttl-s {
    font-size: 1.4rem;
    margin: 0 0 1rem;
  }
  .section-ttl_sub {
    width: auto;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .section-border {
    margin-top: 6rem;
  }
  .slide-block-image {
    width: 60%;
    margin: 0 auto;
  }
  .connectmenu {
    width: 85px !important;
  }
  .connectmenu a {
    text-decoration: none;
  }
}
@media screen and (max-width: 530px) {
  .maincopy {
    top: 55vh;
  }
  .scrolllink {
    top: 70vh;
  }
}
