@charset "utf-8";

/* ------------------------------
   CHAPTER ELEMENTS
------------------------------ */
.fslider {
  /* margin: 0 auto; */
  width: 100%;
  text-align: left;
  position: relative;
}

.fslider:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}

.fslider ul{
  display: flex;
}
.fslider li {
  overflow: hidden;
  list-style: none;
    text-align: center;
}
.fslider a {
  text-decoration: none;
}

.fslider .slideImg {
  position: relative;
}
.fslider .slideImg li {
  width: 100%;
  text-align: center;
}
.fslider .slideImg li:not(:first-child) {
  position: absolute;
  display: none;
}

.fslider .slideImg li img {
  width: auto;	
  max-width: 100%;
  vertical-align: bottom;
}

/*実用化ドキュメント記事スライド用*/
.knowledge .main-container ul.slideImg {
  margin-bottom: 0 !important;
}

/*実用化ドキュメント記事スライド用*/
.knowledge .fslider .slideImg li img {
  width: 100%;	
}


.fslider .fslider .slideImg li img {
  width: 100%;
}

.fslider.w400{ max-width: 400px;}
.fslider.w500{ max-width: 500px;}
.fslider.w600{ max-width: 600px;}
.fslider.w800{ max-width: 800px;}
.fslider.w1000{ max-width: 1000px;}

.fslider.txtbox .slideImg li{
  background-color: #fff;
}

.fslider a.block{
  display: block;
  height: 100%;
}

/* PagiNation
--------------------------- */

/* ページネーションを画像の下に置くパターン */
.fslider.external .pagiNation {
  position: relative;
	border-top: 3px solid var(--blue-color);
	background: var(--gray-color1);
	text-align: center;
	z-index: 1;
	padding: 1rem 1rem 1rem 2.5rem;
	line-height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

/* ページネーションを画像にかぶせるパターン */
.fslider.internal .pagiNation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

/*実用化ドキュメント記事スライド用*/
.knowledge .fslider.external .pagiNation {
    margin-bottom: 2rem;
}

.fslider .pagiNation a {
    display: flex;
    align-items: center;
}

.fslider .stop a:focus-visible,
.fslider .pagiNation a:focus-visible {
  border: ridge 2px #fff;
}

/* ページネーションの形　■パターン */
.fslider.square .pagiNation .pnNav a {
  margin: 0 2px;
  width: 2.5rem;
  height: 0.3rem;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

/* ページネーションの形　●パターン */
.fslider.circle .pagiNation .pnNav a {
	margin: 0 5px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--gray-color2);
	transition: all 0.2s ease-in-out;
}

.fslider .pagiNation .pnNav a:hover {
	background: var(--gray-color1);
	border: 2px solid var(--blue-color);
}

.fslider .pagiNation .pnNav.active a:hover {
  opacity: 1;
}

.fslider .pagiNation .pnNav.active a {
	background: var(--gray-color1);
	border: 2px solid var(--blue-color);
}

/* SideNavi
------------------------- */
.pagiNation .btnPrev a,
.pagiNation .btnNext a {
  width: 2.5rem;
  height: 2rem;
  color: transparent;
  position: relative;
  text-align: center;
/*  top: 0.4rem*/
}

.pagiNation .btnPrev a img,
.pagiNation .btnNext a img {
    width: 50%;
    margin: 0 auto;
}

.pagiNation .btnPrev a img {
	 transform: rotate( -270deg );	 
}

.pagiNation .btnNext a img {
	transform: rotate( -90deg );
}



/* 停止ボタン
------------------------- */
.stop .startBtn {
  display: none;
}
.stop {
  margin: 0;
  padding: 0;

}
.stop button {
	display: flex;
	width: 16px;
    align-items: center;
    position: relative;
    align-items: center;
}

.stop button img {
    width: 80%;
    vertical-align: middle;

}

@media screen and (max-width: 1024px) {
  /*　画面サイズが1024px以下はここを読み込む　*/
	.stop button {
		margin-top: 0;
	}
}

@media screen and (max-width:768px) {
	.stop button {
		margin-top: -3px;
	}
    .stop button img {
        width: 12px;
        height: 12px;
    }
}