.image-area-s {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fff;
  padding-bottom: 30px;
}

.image-area-s__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 0px 0;
}

.n_anchor {
  padding-top: 120px;
	margin-top: -120px;
}

/* ページ概要 */
.page-summary {
  text-align: center;
  color: #333;
  font-size: 20px;
	font-weight: 600;
  padding-bottom: 60px;
}

/* 文字色上書き */
.image-area-k__title {
  color: #555;
}

/* ナビ */
.process-name-box {
  max-width: 740px;
  padding-bottom: 70px;
  margin: 0 auto;
}

.process-name-box h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #3a958c;
  border-radius: 5px;
  padding: 5px 0;
}

.process-name {
  border-bottom: dotted 2px;
  border-image: linear-gradient(to right, transparent 0%, #3a958c 50%, transparent 100%) 1;
  padding: 0 20px;
  margin: 0 auto;
}

.process-name ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 5px auto 20px auto;
}


.process-name a {
  width: 110px;
  height: 60px;
  display: block;
  border-radius: 80%;
  border-width: 0px;
  color: #3a958c;
  letter-spacing: 0.2px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  margin: 5px 8px 10px 8px;
}

.process-name a:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #52d3c6 5%, #3a958c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.process-name a:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #ffffff;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  border-radius: 50px;
  z-index: -1;
  transition: 0.3s;
}

.process-name a:hover {
  color: #ffffff;
  border: 0px;
}

.process-name a:hover:after {
  opacity: 0;
}

.process-name .btn {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  justify-content: center;
  align-items: center;
}

/* ラベル用 */
.process-card_container .title {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 20px auto;
}

/** ラベルの背景部分 **/
.process-card_container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 2.8em solid #589994;
  border-left: 2.5em solid transparent;
  border-right: 24.0em solid #589994; /* ラベルの背景色 */
  transform: scale(1,-1);
}

/** ラベルの文字部分 **/
.process-card_container::after {
  content: attr(data-text)""; /* ラベルの文字テキスト */
  position: absolute;
  top: 1px;
  right: 0;
  color: #fff; /* 文字の色 */
  font-size: 14px;
  padding-right: 10px;
  white-space: pre;
  text-align: right;
  line-height: 20px;
}


/* 装置詳細 */
.process-card_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f3f3f3;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .2);
  padding: 5px 0 10px 0;
  margin: 20px 0 80px 0;
  position: relative;
}

.process-card_container h3 {
  font-size: 18px;
  margin: 20px 40px 15px 40px;
  padding: 5px 0 5px 12px;
  border-left: 5px solid #3a958c;
  border-bottom: 1px solid #3a958c;
  line-height: 20px;
}

.process-card_container .detail_btn a {
  width: fit-content;
  display: block;
  padding: 8px 48px;
  border-radius: 20px;
  border-width: 0px;
  color: #3a958c;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  margin: 5px auto 10px auto;
  font-size: 12px;
  font-weight: 600;
}

.process-card_container .detail_btn a:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #52d3c6 5%, #3a958c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.process-card_container .detail_btn a:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #ffffff;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  border-radius: 50px;
  z-index: -1;
  transition: 0.3s;
}

.process-card_container .detail_btn a:hover {
  color: #ffffff;
  border: 0px;
}

.process-card_container .detail_btn a:hover:after {
  opacity: 0;
}


.process-card_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.process-card_inner .left-box {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.process-card_inner .left-box p {
  margin: 15px auto 5px auto;
  font-size: 14px;
  padding: 0 10px;
  max-width: 420px;
  text-align: center;
}

.process-card_inner .img-box {
  display: flex;
}

.process-card_inner .img-box .img-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.process-card_inner .img-box .img-card p {
  font-size: 14px;
  padding: 4px 0;
}

.process-card_inner .img-box img {
  width: 200px;
  height: 170px;
  object-fit: cover;
  padding: 0px 10px;
}

.process-card_inner .img-box video {
  width: 200px;
  height: 170px;
  object-fit: cover;
  padding: 0px 10px;
}


.process-card_inner .right-box {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin-right: 40px;
}

.process-card_inner .right-box dl {
  border-bottom: 1px solid #3a958c;
}

.process-card_inner .right-box .dt_raw {
  display: flex;
}

.process-card_inner .right-box dt {
  display: flex;
  min-width: 83px;
  font-size: 13px;
  font-weight: 600;
  background-color: #589994;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  text-align-last: justify;
  padding: 1px 5px;
  margin-bottom: 6px;
  margin-right: 10px;
  align-items: center;
}

.process-card_inner .right-box .point {
  display: flex;
  flex-direction: row;
  align-items: start;
  margin-top: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid #589994;
  padding-bottom: 2px;
}

.process-card_inner .right-box .point p {
  min-width: 85px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  color: #589994;
  width: 78px;
  text-align: center;
  padding: 1px 3px;
  margin-bottom: 5px;
  margin-right: 10px;
  border: #3a958c solid 1px;
  border-radius: 3px;
}


.process-card_inner .right-box li {
  margin-left: 5px;
  list-style-type: none; /*点を非表示*/
  position: relative; /*基準位置*/
  padding-left: 0.6em;
  padding-bottom: 6px;
    line-height: 20px;
}

.process-card_inner .right-box .ub {
  background: linear-gradient(transparent 80%, yellow 50%);
}

.process-card_inner .right-box li::before {
  border-radius: 50%; /*丸くする*/
  width: 7px; /*点の幅*/
  height: 7px; /*点の高さ*/
  display: block;
  position: absolute; /*絶対配置*/
  left: -5px; /*点の位置*/
  top: 0.6em; /*点の位置*/
  content: "";
  background: #589994; /*点の色*/
}

/* 小文字 */
.process-card_container h3 span {
	font-size: 14px;
}

.process-card_inner .right-box .dt_raw span {
	font-size: 12px;
}

/* 下付き文字 */
.process-card_inner .right-box .dt_raw .sub {
	vertical-align:sub;
	/* font-size: smaller; */
  font-size: 10px;
}



/* 検索ボタン用 */
div.filterDiv {
  display: none;
}

div.filterDiv.show {
  display: flex;
}

.show {
  display: inline-block;
}



/* スマホ表示 */
@media (max-width: 700px){

  /* ページ概要 */
  .page-summary {
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding: 0 20px 30px 20px;
  }

  /* ナビ */
  .process-name-box {
    padding-bottom: 40px;
  }

  .process-name-box h3 {
    font-size: 18px;
  }

  .process-name a {
    width: 100px;
    height: 45px;
    margin: 5px 6px;
  }

  .process-name .btn {
    font-size: 13px;
  }


  .process-card_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .process-card_container h3 {
    font-size: 17px;
    margin: 50px 40px 15px 10px;
  }

  .process-card_container h3 span {
    font-size: 12px;
  }

  .process-card_inner .img-box img {
    width: 160px;
    height: 136px;
    padding: 0px 15px;
  }

  .process-card_inner .img-box video {
    width: 160px;
    height: 136px;
    padding: 0px 10px;
  }

  .process-card_inner .left-box {
    min-width: 380px;
  }

  .process-card_inner .left-box p {
    padding: 0 15px;
    font-size: 13px;
  }

  .process-card_inner .right-box {
    margin: 20px 10px;
    min-width: 380px;
  }

  .process-card_inner .right-box dt {
    font-size: 12px;
    min-width: 80px;
  }

  .process-card_inner .right-box dd {
    font-size: 13px;
  }

  .process-card_inner .right-box .point p {
    font-size: 12px;
    min-width: 82px;
  }

  .process-card_inner .right-box li {
    font-size: 13px;
  }
}