.wrapper {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  z-index: 1;
}


/* スマホ表示専用 */
.phone-display-only {
  display: none;
}

/* ページヘッダー削除 */
.page__header {
  display: none;
}

/* フェードアニメーション */
.hide {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in-right {
  transform: translateX(20px);
}

.fade-in-left {
  transform: translateX(-20px);
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0) rotateY(0);
}


/* 概要 */
.outline {
  position: relative;
  margin-top: 50px;
  margin-bottom: 300px;
}

.outline .outline-imgbox {
  position: relative;
  z-index: -1;

  animation-name: outline-img-fade;
  animation-timing-function: ease;
  animation-duration: 1s;
}

@keyframes outline-img-fade {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.outline .outline-imgbox .left {
  position: absolute;
  width: 1100px;
  height: 110%;
  top: -35px;
  right: 150px;
  background: linear-gradient(to right, #cbd3d8, 20%, #fff, 80%, #cbd3d8);
  box-shadow: 5px 5px 5px#ddd;
  z-index: -2;
}

.outline .outline-imgbox img {
  top: 0;
  left: 0;
  width: 700px;
  height: 550px;
  object-fit: contain;
  z-index: 1;
}

.outline .outline-textbox {
  position: absolute;
  background: linear-gradient(to bottom right, #222, #555);
  box-shadow: 5px 5px 5px #ddd;
  color: #fff;
  top: 320px;
  left: 580px;
  width: 380px;
  height: 250px;
  z-index: 2;
  padding: 25px 35px;

  animation-name: outline-text-fade;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes outline-text-fade {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 0.8;
  }
}

.outline .outline-textbox h1 {
  font-size: 28px;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: -1px;
}

.outline .outline-textbox .sub-name {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: -5px;
  color: #bbb;
}

.outline .outline-textbox .explanation {
  font-size: 16px;
  font-weight: 300;
  margin-top: 30px;
}


/* 見出し */
.item-header {
  margin-bottom: 30px;
  text-align: center;
}

.item-header .sub-name {
  color: #777;
  font-weight: 600;
  font-size: 22px;
}

.item-header h2 {
  color: #444;
  font-weight: 400;
  font-size: 16px;
  margin-top: 0px;
}


/* 背景 */
.bg-box {
  position: relative;
  z-index: -1;
  margin-bottom: 250px;
}

.bg-box .left {
  position: absolute;
  width: 100vw;
  height: 115%;
  top: -20px;
  right: -40px;
  background-color: #f9f9f9;
  box-shadow: 5px 5px 5px#ddd;
  z-index: -2;
}


/* 仕組み */
.structure {
  display: flex;
  position: relative;
  justify-content: center;
}

.structure .img-box {
  display: block;
  position: relative;
}

.structure .img-box span {
  display: block;
  position: absolute;
  left: -40px;
  top: 0;
  font-size: 14px;
  background: linear-gradient(148deg, #328bbb 5%, #255986 65%);
  color: #fff;
  padding: 5px 7px;
  border-radius: 5px;
  line-height: 1.3;
  box-shadow: 3px 3px 5px#aaa;
}

.structure .img-box img {
  width: 480px;
  height: 480px;
  object-fit: contain;
  z-index: 1;
}

.structure .img-box button {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  height: 100px;
  border: solid 2px #255986;
  border-radius: 50%;
  background-color: rgba(4, 0, 255, 0.1);
  box-shadow: 0px 0px 20px #fff;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
}

.structure .img-box button:hover {
  transform: scale(1.1);
}

.structure .img-box .off button {
  opacity: 0.5;
  border: solid 2px #255986;
}

.structure .img-box button:before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "Click";
  font-size: 14px;
  background-color: #255986;
  color: #fff;
  border-radius: 5px;
  padding: 2px;
}

.structure .img-box button span {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  border: solid 1px #255986;
  border-radius: 50%;
  background: linear-gradient(148deg, #328bbb 5%, #255986 65%);
}

.structure .img-box .on button {
  animation-name: str-btn;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
}

@keyframes str-btn {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.structure .description-box {
  width: 520px;
  height: auto;
}

.structure .description-box h3 {
  width: 100%;
  height: 32px;
  font-size: 17px;
  text-align: center;
  background: linear-gradient(to bottom, #777, #555);
  color: #fff;  
  margin-top: -8px;
}

.structure .description-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background-color: #fff;
}

.structure .description-box video {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.structure .description-box p {
  width: 100% -20px;
  min-height: 85px;
  font-size: 15px;
  padding: 7px 12px 7px 18px;
  background-color: #ccc;
  background: linear-gradient(to bottom right, #ddd, #bbb);
}

.structure .description-box .part1 {
  display: none;
}

.structure .description-box .part2 {
  display: none;
}

.structure .description-box .part3 {
  display: none;
}

.structure .description-box .part4 {
  display: none;
}

.structure.open1 .description-box .part1 {
  display: block;
  margin: auto 15px;
  box-shadow: 5px 5px 5px#ddd;

  animation-name: stdr-ka;
  animation-duration: 0.5s;
}

.structure.open2 .description-box .part2 {
  display: block;
  margin: auto 15px;
  box-shadow: 5px 5px 5px#ddd;

  animation-name: stdr-ka;
  animation-duration: 0.5s;
}

.structure.open3 .description-box .part3 {
  display: block;
  margin: auto 15px;
  box-shadow: 5px 5px 5px#ddd;

  animation-name: stdr-ka;
  animation-duration: 0.5s;
}

.structure.open4 .description-box .part4 {
  display: block;
  margin: auto 15px;
  box-shadow: 5px 5px 5px#ddd;

  animation-name: stdr-ka;
  animation-duration: 0.5s;
}

@keyframes stdr-ka {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}


/* アプリケーション */
.application {
  display: flex;
  flex-direction: row;
}

.application .domain-area {
  position: relative;
  width: 700px;
  height: 620px;
}

.application .domain-area .domain-circle {
  position: absolute;
  top: 200px;
  left: 180px;
  display: block;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #ddd;
  opacity: 0;
  text-align: center;
}

.application .domain-area .app-name {
  margin-top: 50px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}

.show .application .domain-area .domain-circle.c1 {
  animation-name: circle-c1;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  background: linear-gradient(to bottom right, white, #c5006f77);
  opacity: 0;
  transition: 0.3s;
}

.show .application .domain-area .domain-circle.c1:before {
  position: absolute;
  top: -5px;
  left: -30px;
  content: "Life Science";
  font-size: 40px;
  opacity: 0.3;
  color: #c5006f;
}

.application .domain-area .domain-circle.c1:hover {
  scale: 1.1;
}

.application .domain-area .domain-circle.c1 .app-name {
  color: #630038;
}

.show .application .domain-area .domain-circle.c2 {
  animation-name: circle-c2;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  background: linear-gradient(to bottom right, white, #c3322b77);
  animation-delay: 0.05s;
  opacity: 0;
  transition: 0.3s;
}

.show .application .domain-area .domain-circle.c2:before {
  position: absolute;
  top: 0px;
  right: -40px;
  content: "Chemical";
  font-size: 40px;
  opacity: 0.3;
  color: #c3322b;
}

.application .domain-area .domain-circle.c2:hover {
  scale: 1.1;
}

.application .domain-area .domain-circle.c2 .app-name {
  color: #86231e;
}

.show .application .domain-area .domain-circle.c3 {
  animation-name: circle-c3;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  background: linear-gradient(to bottom right, white, #ba572f77);
  animation-delay: 0.1s;
  opacity: 0;
  transition: 0.3s;
}

.show .application .domain-area .domain-circle.c3:before {
  position: absolute;
  bottom: -20px;
  right: -40px;
  content: "Energy\AMobility"; white-space: pre;
  line-height: 1.2;
  font-size: 40px;
  opacity: 0.3;
  color: #863d20;
}

.application .domain-area .domain-circle.c3:hover {
  scale: 1.1;
}

.application .domain-area .domain-circle.c3 .app-name {
  color: #582816;
}

.show .application .domain-area .domain-circle.c4 {
  animation-name: circle-c4;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  background: linear-gradient(to bottom right, white, #d27c0077);
  animation-delay: 0.15s;
  opacity: 0;
  transition: 0.3s;
}

.show .application .domain-area .domain-circle.c4:before {
  position: absolute;
  bottom: 0;
  right: -70px;
  content: "IT・Network";
  font-size: 40px;
  opacity: 0.3;
  color: #915400;
}

.application .domain-area .domain-circle.c4:hover {
  scale: 1.1;
}

.application .domain-area .domain-circle.c4 .app-name {
  color: #5e3700;
}

.show .application .domain-area .domain-circle.c5 {
  animation-name: circle-c5;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  background: linear-gradient(to bottom right, white, #00853177);
  animation-delay: 0.2s;
  opacity: 0;
  transition: 0.3s;
}

.show .application .domain-area .domain-circle.c5:before {
  position: absolute;
  bottom: 0px;
  left: -40px;
  content: "Sustainable";
  font-size: 40px;
  opacity: 0.3;
  color: #008531;
}

.application .domain-area .domain-circle.c5:hover {
  scale: 1.1;
}

.application .domain-area .domain-circle.c5 .app-name {
  color: #00531f;
}

.show .application .domain-area .domain-circle.c6 {
  animation-name: circle-c6;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  background: linear-gradient(to bottom right, white, #7b469777);
  animation-delay: 0.25s;
  opacity: 0;
  transition: 0.3s;
}

.show .application .domain-area .domain-circle.c6:before {
  position: absolute;
  top: 0px;
  left: -30px;
  content: "Other";
  font-size: 40px;
  opacity: 0.3;
  color: #7b4697;
}

.application .domain-area .domain-circle.c6:hover {
  scale: 1.1;
}

.application .domain-area .domain-circle.c6 .app-name {
  color: #502d61;
}

@keyframes circle-c1 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, -210px);
    opacity: 0.8;
  }
}

@keyframes circle-c2 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(182px, -105px);
    opacity: 0.8;
  }
}

@keyframes circle-c3 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(182px, 105px);
    opacity: 0.8;
  }
}

@keyframes circle-c4 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 210px);
    opacity: 0.8;
  }
}

@keyframes circle-c5 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(-182px, 105px);
    opacity: 0.8;
  }
}

@keyframes circle-c6 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(-182px, -105px);
    opacity: 0.8;
  }
}

.application .inquiry-area {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin: 10px;
}

.application .inquiry-area .text {
  display: block;
  width: 290px;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
}

.application .inquiry-area .btn {
  display: block;
  width: 220px;
  margin: 20px auto;
  padding: 12px 20px;
  border-radius: 50px;
  border-width: 0px;
  color: #00437c;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  font-size: 1em;
}

.application .inquiry-area .btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #0082c7 5%, #00437c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.application .inquiry-area .btn: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;
}

.application .inquiry-area .btn:hover {
  color: #ffffff;
  border: 0px;
}

.application .inquiry-area .btn:hover:after {
  opacity: 0;
}


/* 用途 */
.purpose {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.purpose-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.purpose-inner button {
  position: relative;
  display: block;
  width: 450px;
  height: 50px;
  background: linear-gradient(to bottom, #aaa, #666);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  margin: 20px 50px 20px 0;

  z-index: 1;
  transition: 0.3s;
}

.purpose-inner .off button {
  opacity: 0.4;
}

.purpose-inner .on button {
  opacity: 1;
}

.purpose-inner button .triangle {
  position: absolute;
  top: 1px;
  left: 470px;
  background: #888;
  height: calc(tan(75deg) * 25px / 2);
  width: 50px;
  clip-path: polygon(0 25%, 0 75%, 25% 50%);

  z-index: 2;
  transition: 0.3s;
}

.purpose-inner .off button .triangle {
  opacity: 0;
}


.purpose .description .part1 {
  display: none;
}

.purpose .description .part2 {
  display: none;
}

.purpose .description .part3 {
  display: none;
}

.purpose .description .part4 {
  display: none;
}

.purpose .description {
  width: 500px;
  height: auto;
  font-size: 20px;
  box-shadow: 5px 5px 5px#ddd;
}

.purpose .description h4 {
  width: 100%;
  height: 36px;
  background:linear-gradient(to top, #00437c, #316fa5);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  padding-top: 5px;
}

.purpose .description img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.purpose .description p {
  width: auto;
  min-height: 85px;
  background-color: #b0d3e6;
  background:linear-gradient(to bottom right, #c7dfec 30%, #97b8ca);
  font-size: 15px;
  margin-top: -10px;
  padding: 10px 12px 10px 18px;
  color: #294258;
}


.purpose.open1 .description .part1 {
  display: block;
  transition: 0.3s;

  animation-name: dr-ka;
  animation-duration: 0.5s;
}

.purpose.open2 .description .part2 {
  display: block;
  transition: 0.3s;

  animation-name: dr-ka;
  animation-duration: 0.5s;
}

.purpose.open3 .description .part3 {
  display: block;
  transition: 0.3s;

  animation-name: dr-ka;
  animation-duration: 0.5s;
}

.purpose.open4 .description .part4 {
  display: block;
  transition: 0.3s;

  animation-name: dr-ka;
  animation-duration: 0.5s;
}

@keyframes dr-ka {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}


/* 仕様 */
.specification {
  text-align: center;
}

.specification table {
  display: inline-block;
  text-align: center;
}

.specification table th {
  align-content: center;
  width: 120px;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 30px;
  border: solid 3px #f9f9f9;
  background-color: #ccc;
  color: #333;
}

.specification table td {
  width: 300px;
  font-weight: 400;
  font-size: 15px;
  padding: 15px 30px;
  border: solid 3px #f9f9f9;
  background-color: #ebebeb;
  text-align: left;
  line-height: 1.6;
  color: #444;
}


/* 粒度範囲 */
.size-range {
  position: relative;
  text-align: center;
}

.size-range .img-box img {
  width: 800px;
  margin-right: 40px;
  border-radius: 10px;
}

.size-range .text-box {
  display: block;
  color: #444;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.size-range .text-box .text {
  width: 200px;
  margin: auto;
  font-size: 18px;
  border-bottom: solid 1px #444;
}

.size-range .text-box .text-s {
  font-size: 14px;
  color: #444;
  margin-top: 3px;
}

.size-range .btn {
  display: block;
  width: 250px;
  margin: 40px auto 0 auto;
  padding: 12px 20px;
  border-radius: 50px;
  border-width: 0px;
  color: #00437c;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  font-size: 1em;
}

.size-range .btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #0082c7 5%, #00437c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.size-range .btn: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;
}

.size-range .btn:hover {
  color: #ffffff;
  border: 0px;
}

.size-range .btn:hover:after {
  opacity: 0;
}



/* 粒度範囲 追加ページ */
.size-range-add {
  position: relative;
  text-align: center;
}

.size-range-add .img-box img {
  width: 800px;
  margin-right: 40px;
}

.size-range-add .img-box p {
  color: #555;
  font-size: 18px;
  border-bottom: solid 1px #555;
  width: 240px;
  margin: 5px auto;
}

.size-range-add .type-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 25px auto;
}

.size-range-add .type-box .btn {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border: solid 1px #92afc9;
  background-color: #fff;
  border-radius: 50%;
  font-size: 18px;
  margin: 5px;
  padding: 0;
  transition: 0.3s;
  overflow: hidden;
}

.size-range-add .type-box .btn .img-box {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.size-range-add .type-box .btn .img-box img {
  display: block;
  width: 90px;
  height: 90px;
  padding: 5px;
  margin: 0;
  object-fit: contain;
}

.size-range-add .img-box .part1 {
  display: none;
}

.size-range-add .img-box .part2 {
  display: none;
}

.size-range-add .img-box .part3 {
  display: none;
}

.size-range-add .img-box .part4 {
  display: none;
}

.size-range-add .img-box .part5 {
  display: none;
}

.size-range-add .img-box .part6 {
  display: none;
}

.size-range-add .img-box .part7 {
  display: none;
}

.size-range-add.open1 .img-box .part1 {
  display: block;
}

.size-range-add.open2 .img-box .part2 {
  display: block;
}

.size-range-add.open3 .img-box .part3 {
  display: block;
}

.size-range-add.open4 .img-box .part4 {
  display: block;
}

.size-range-add.open5 .img-box .part5 {
  display: block;
}

.size-range-add.open6 .img-box .part6 {
  display: block;
}

.size-range-add.open7 .img-box .part7 {
  display: block;
}

.size-range-add .type-box .off .btn {
  opacity: 0.2;
}

.size-range-add .type-box .on .btn {
  opacity: 1;
}

.size-range-add .type-box .off a {
  display: none;
}

.size-range-add .type-box .on a {
  display: block;
  font-size: 12px;
  border: solid 1px #92afc9;
  border-radius: 5px;
  width: 80px;
  color: #3572a7;
  margin: 8px auto 0 auto;
  opacity: 0;

  animation-name: type-box-a-anim;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes type-box-a-anim {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 処理量 */
.throughput {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.throughput .bar-area {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 20px;
}

.throughput .bar-area .bar-box {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  height: 250px;
}

.throughput .bar-area .bar-box .type {
  font-size: 14px;
  font-weight: 600;
  color: #00437c;
}

.throughput .bar-area .bar-box .bar {
  width: 85px;
  background: linear-gradient(150deg, #0082c7, #00437c);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  padding-top: 5px;
}

.throughput .bar-area.wide .bar-box .bar {
  width: 110px;
  background: linear-gradient(150deg, #0082c7, #00437c);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  padding-top: 5px;
}

.throughput .bar-area .bar-box .bar span {
  font-size: 12px;
}

.show .throughput .bar-area .bar-box .bar.lv1 {
  height: 30px;

  animation-name: bar-lv1;
  animation-timing-function: ease-in-out;
  animation-duration: 0.3s;
}

.show .throughput .bar-area .bar-box .bar.lv2 {
  height: 50px;

  animation-name: bar-lv2;
  animation-timing-function: ease-in-out;
  animation-duration: 0.35s;
}

.show .throughput .bar-area .bar-box .bar.lv3 {
  height: 70px;

  animation-name: bar-lv3;
  animation-timing-function: ease-in-out;
  animation-duration: 0.4s;
}

.show .throughput .bar-area .bar-box .bar.lv4 {
  height: 90px;

  animation-name: bar-lv4;
  animation-timing-function: ease-in-out;
  animation-duration: 0.45s;
}

.show .throughput .bar-area .bar-box .bar.lv5 {
  height: 110px;
  
  animation-name: bar-lv5;
  animation-timing-function: ease-in-out;
  animation-duration: 0.5s;
}

.show .throughput .bar-area .bar-box .bar.lv6 {
  height: 130px;

  animation-name: bar-lv6;
  animation-timing-function: ease-in-out;
  animation-duration: 0.55s;
}

.show .throughput .bar-area .bar-box .bar.lv7 {
  height: 150px;

  animation-name: bar-lv7;
  animation-timing-function: ease-in-out;
  animation-duration: 0.6s;
}

.show .throughput .bar-area .bar-box .bar.lv8 {
  height: 170px;
  
  animation-name: bar-lv8;
  animation-timing-function: ease-in-out;
  animation-duration: 0.65s;
}

.show .throughput .bar-area .bar-box .bar.lv9 {
  height: 190px;
  
  animation-name: bar-lv9;
  animation-timing-function: ease-in-out;
  animation-duration: 0.7s;
}

.show .throughput .bar-area .bar-box .bar.lv10 {
  height: 210px;
  
  animation-name: bar-lv10;
  animation-timing-function: ease-in-out;
  animation-duration: 0.75s;
}


@keyframes bar-lv1 {
  0% {
    height: 0;
  }
  100% {
    height: 30px;
  }
}

@keyframes bar-lv2 {
  0% {
    height: 0;
  }
  100% {
    height: 50px;
  }
}

@keyframes bar-lv3 {
  0% {
    height: 0;
  }
  100% {
    height: 70px;
  }
}

@keyframes bar-lv4 {
  0% {
    height: 0;
  }
  100% {
    height: 90px;
  }
}

@keyframes bar-lv5 {
  0% {
    height: 0;
  }
  100% {
    height: 110px;
  }
}

@keyframes bar-lv6 {
  0% {
    height: 0;
  }
  100% {
    height: 130px;
  }
}

@keyframes bar-lv7 {
  0% {
    height: 0;
  }
  100% {
    height: 150px;
  }
}

@keyframes bar-lv8 {
  0% {
    height: 0;
  }
  100% {
    height: 170px;
  }
}

@keyframes bar-lv9 {
  0% {
    height: 0;
  }
  100% {
    height: 190px;
  }
}

@keyframes bar-lv10 {
  0% {
    height: 0;
  }
  100% {
    height: 210px;
  }
}

.show .throughput .bar-area .bar-box .pop-icon-box {
  position: relative;
  width: 85px;
  height: 95px;
  opacity: 0;
  transform: 0.3s;
  cursor: pointer;

  animation-name: pop-anim;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes pop-anim {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.show .throughput .bar-area .bar-box a {
  transition: 0.3s;
}

.show .throughput .bar-area .bar-box a:hover {
  opacity: 0.5;
  transform: translateY(-5px);
}

.show .throughput .bar-area .bar-box .pop-icon-box .circle {
  position: inherit;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  border: solid 2px #00437caa;
  border-radius: 50%;
  background-color: white;

  z-index: 4;
  overflow: hidden;
}

.show .throughput .bar-area .bar-box .pop-icon-box .circle::before {
  position: absolute;
  content: "テスト機有"; white-space: pre;
  line-height: 1.2;
  bottom: -15px;
  right: -2px;
  width: 80px;
  height: 34px;
  padding-top: 1px;
  background-color: #00437caa;
  color: white;
  font-size: 10px;
  font-weight: 500;

  z-index: 3;
}

.show .throughput .bar-area .bar-box .pop-icon-box .circle img {
  position: inherit;
  width: 75px;
  height: 75px;
  border-radius: 50%;

  z-index: 2;
}

.show .throughput .bar-area .bar-box .pop-icon-box .triangle {
  position: inherit;
  margin: 0 auto;
  margin-top: -3px;
  background: #00437caa;
  height: calc(tan(75deg) * 25px / 2);
  width: 50px;
  clip-path: polygon(25% 0, 50% 30%, 75% 0);

  z-index: 1;
}

.throughput .text-box {
  display: block;
  color: #555;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.throughput .text-box .text {
  width: 180px;
  margin: auto;
  font-size: 18px;
  border-bottom: solid 1px #555;
}

.throughput .text-box .text-s {
  font-size: 14px;
  color: #555;
  margin-top: 3px;
}

.throughput .description {
  margin-top: 30px;
  font-size: 15px;
  color: #555;
  text-align: center;
}

.throughput .description a {
  color: #1558d6;
  text-decoration: underline;
}

.throughput .description a:hover {
  opacity: 0.5;
}


/* 処理例 */
.process-example {
  text-align: center;
}

.process-example table {
  display: inline-block;
  text-align: center;
  color: #4d5570;
  border: solid 1px #ccc;
}

.process-example table tr.color2 {
  background-color: #eee;
}

.process-example table thead th {
  font-weight: bold;
  font-size: 16px;
  padding: 10px 10px;
  width: 120px;
  background-color: #b5c3d6;
  background: linear-gradient(to bottom, #dce6f0, #b5cae2);
  border: solid 1px #ddd;
  line-height: 1.2;
  vertical-align:middle;
}

.process-example table thead th span{
  font-size: 12px;
}

.process-example table thead th sub{
  font-size: 10px;
}

.process-example table tbody th {
  font-weight: 400;
  font-size: 16px;
  padding: 12px 10px;
  border: solid 1px #ddd;
}

.process-example table tbody th span{
  font-size: 12px;
}

.process-example table tbody td {
  font-weight: 400;
  font-size: 18px;
  border: solid 1px #ddd;
}

.process-example table tbody td span{
  font-size: 12px;
}


/* フロー例 */
.flow-example {
}

.flow-example .flow-switch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-example .flow-switch button {
  display: flex;
  width: auto;
  height: 30px;
  padding: 7px 15px 32px 15px;
  background-color: #777;
  color: #fff;
  font-size: 16px;
  margin: 0 8px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.flow-example .off button {
  opacity: 0.4;
}

.flow-example .on button {
  opacity: 1;
  box-shadow: 2px 2px 2px #aaa;
}

.flow-example .img-box .part1 {
  display: none;
}

.flow-example .img-box .part2 {
  display: none;
}

.flow-example .img-box .part3 {
  display: none;
}

.flow-example .img-box .part4 {
  display: none;
}

.flow-example .img-box {
  width: 800px;
  height: auto;
  background-color: #bbb;
  background: linear-gradient(to bottom right, #eee 20%, #ccc);
  box-shadow: 5px 5px 5px#ddd;
}

.flow-example.open1 .img-box .part1 {
  display: block;
  margin-top: 15px;
  transition: 0.3s;

  animation-name: img-ka;
  animation-duration: 0.5s;
}

.flow-example.open2 .img-box .part2 {
  display: block;
  margin-top: 15px;
  transition: 0.3s;

  animation-name: img-ka;
  animation-duration: 0.5s;
}

.flow-example.open3 .img-box .part3 {
  display: block;
  margin-top: 15px;
  transition: 0.3s;

  animation-name: img-ka;
  animation-duration: 0.5s;
}

.flow-example.open4 .img-box .part4 {
  display: block;
  margin-top: 15px;
  transition: 0.3s;

  animation-name: img-ka;
  animation-duration: 0.5s;
}

@keyframes img-ka {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.flow-example .img-box {
  margin: auto;
}

.flow-example .img-box img {
  width: 100%;
  height: 500px;
  background-color: white;
  object-fit: contain;
  z-index: 1;
  padding: 20px 0;
}

.flow-example .img-box p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  padding: 5px 5px 10px 5px;
  color: #333;
}


/* 問合せ案内 */
.to-inquiry {
  margin-bottom: 200px;
}

.to-inquiry-inner {
  text-align: center;
  border: solid 2px #c0c4d4;
  margin: 20px;
  padding: 80px 0;
}

.to-inquiry-inner p {
  font-size: 16px;
  color: #555;
  line-height: 2;
  letter-spacing: 1.5px;
}

.to-inquiry-inner .btn {
  display: block;
  width: 300px;
  margin: 30px auto 0 auto;
  padding: 12px 20px;
  border-radius: 50px;
  border-width: 0px;
  color: #00437c;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  font-size: 1em;
}

.to-inquiry-inner .btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #0082c7 5%, #00437c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.to-inquiry-inner .btn: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;
}

.to-inquiry-inner .btn:hover {
  color: #ffffff;
  border: 0px;
}

.to-inquiry-inner .btn:hover:after {
  opacity: 0;
}


/* 関連製品 */
.related {
}

.related .machine-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.related .machine-area a {
  transition: 0.3s;
}

.related .machine-area a:hover {
  opacity: 0.7;
  transform: translateY(-5px);
}

.related .machine-area .machine-box {
  position: relative;
  display: flex;
  width: 300px;
  height: 330px;
  box-shadow: 5px 5px 10px #bbb;
  margin: 15px;
}

.related .machine-area .machine-box::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: " ";
  bottom: 0;
  right: 0;
  width: 30px;
  height: 90px;
  background-color: #888;
  color: #ccc;
  font-size: 24px;
  font-weight: 600;
}

.related .machine-area .machine-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 220px;
  padding: 10px;
  object-fit: contain;
  background-color: #fff;
}

.related .machine-area .machine-box dl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 260px;
  height: 80px;
  background: linear-gradient(to bottom right, #eee, #ccc);
  color: #333;
  padding: 5px;
}

.related .machine-area .machine-box dt {
  font-size: 16px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  line-height: 1.6;
  border-bottom: solid 1px #888;
}

.related .machine-area .machine-box dd {
  font-size: 13px;
  padding-top: 4px;
  padding-left: 10px;
  padding-right: 5px;
  line-height: 1.6;
}

.related .machine-area .machine-box .triangle {
  position: absolute;
  bottom: 21px;
  right: -61px;
  background: #ccc;
  height: calc(tan(75deg) * 25px / 2);
  width: 50px;
  clip-path: polygon(0 30%, 0 70%, 20% 50%);
}



/* スマホ表示 */
@media (max-width: 768px) {

  .wrapper {
    width: 100vw;
  }

  /* フェードアニメーション */
  .hide {
    opacity: 1;
  }

  .fade-in-right {
    transform: translateX(0);
  }

  .fade-in-left {
    transform: translateX(0);
  }

  /* 概要 */
  .outline {
    width: 100vw;
    margin-top: 50px;
    margin-bottom: 150px;
  }

  .outline-imgbox .left {
    display: none;
  }
  
  .outline-imgbox img {
    top: 0;
    left: 0;
    width: 90vw;
    height: 400px;
    object-fit: contain;
    z-index: 1;
  }
  
  .outline .outline-textbox {
    display: block;
    margin: auto;
    top: 400px;
    left: 10px;
    width: 80vw;
    height: 160px;
    z-index: 2;
    padding: 10px 15px;
  }
  
  .outline .outline-textbox h1 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: -1px;
  }
  
  .outline .outline-textbox .sub-name {
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: -5px;
    color: #bbb;
  }
  
  .outline .outline-textbox .explanation {
    font-size: 12px;
    font-weight: 300;
    margin-top: 20px;
  }


  /* 見出し */
  .item-header {
    margin-bottom: 20px;
  }

  .item-header .sub-name {
    font-size: 18px;
  }

  .item-header h2 {
    margin-top: -3px;
    font-size: 14px;
  }


  /* 背景 */
  .bg-box {
    width: 100vw;
    background-color: #f9f9f9;
    margin-bottom: 80px;
    padding: 10px 0 20px 0;
  }

  .bg-box .left {
    display: none;
  }


  /* 仕組み */
  .structure {
    display: flex;
    flex-direction: column;
  }

  .structure .button-box {
    display: flex;
    flex-direction: row;
    margin: 0 auto 12px auto;
    background-color: #e1e1e1;
    padding: 6px 0;
    border-radius: 40px;
  }

  .structure .description-box h3 {
    font-size: 16px;
  }

  .structure .img-box button {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    font-size: 18px;
    color: white;
    border: solid 1px #999;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgb(180, 180, 180) 20%, rgb(102, 102, 102));

  }

  .structure .img-box .off button {
    opacity: 0.5;
    border: none;
  }

  .structure .img-box button:before {
    content: none;
  }

  .structure .description-box {
    width: 100%;
  }
  
  .structure .description-box p {
    font-size: 13px;
    height: auto;
  }

  /* アプリケーション */
  .application {
    display: flex;
    flex-direction: column;
  }

  .application .domain-area {
    width: 400px;
    height: 420px;
  }

  .application .domain-area .domain-circle {
    position: absolute;
    top: 125px;
    left: 135px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddd;
    opacity: 0;
    text-align: center;
  }
  
  .application .domain-area .app-name {
    margin-top: 40px;
    font-size: 9px;
    line-height: 1.6;
    font-weight: 500;
  }

  .show .application .domain-area .domain-circle.c1:before {
    top: 0;
    left: -20px;
    font-size: 22px;
  }

  .show .application .domain-area .domain-circle.c2:before {
    top: 0;
    right: -10px;
    font-size: 22px;
  }

  .show .application .domain-area .domain-circle.c3:before {
    bottom: 0;
    right: -10px;
    font-size: 22px;
  }

  .show .application .domain-area .domain-circle.c4:before {
    bottom: 0;
    left: 0;
    font-size: 22px;
  }

  .show .application .domain-area .domain-circle.c5:before {
    bottom: 0;
    left: -10px;
    font-size: 22px;
  }

  .show .application .domain-area .domain-circle.c6:before {
    top: 0;
    left: -10px;
    font-size: 22px;
  }

  @keyframes circle-c1 {
    100% {
      transform: translate(0, -130px);
      opacity: 0.8;
    }
  }
  
  @keyframes circle-c2 {
    100% {
      transform: translate(113px, -65px);
      opacity: 0.8;
    }
  }
  
  @keyframes circle-c3 {
    100% {
      transform: translate(113px, 65px);
      opacity: 0.8;
    }
  }
  
  @keyframes circle-c4 {
    100% {
      transform: translate(0, 130px);
      opacity: 0.8;
    }
  }
  
  @keyframes circle-c5 {
    100% {
      transform: translate(-113px, 65px);
      opacity: 0.8;
    }
  }
  
  @keyframes circle-c6 {
    100% {
      transform: translate(-113px, -65px);
      opacity: 0.8;
    }
  }

  .application .inquiry-area .text {
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .application .inquiry-area .btn {
    font-size: 14px;
  }

  /* 用途 */
  .purpose {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .purpose .purpose-inner {
    display: none;
  }
  
  .purpose .description {
    width: 90vw;
    margin: 0 auto;
    box-shadow: none;
  }

  .purpose .description .part1 {
    display: block;
    margin-bottom: 50px;
  }

  .purpose .description .part2 {
    display: block;
    margin-bottom: 50px;
  }

  .purpose .description .part3 {
    display: block;
    margin-bottom: 50px;
  }

  .purpose .description .part4 {
    display: block;
    margin-bottom: 50px;
  }

  .purpose .description h4 {
    font-size: 16px;
  }
  
  .purpose .description img {
    width: 100%;
    height: 280px;
  }
  
  .purpose .description p {
    width: auto;
    min-height: auto;
    font-size: 13px;
    margin-top: -10px;
    padding: 10px 15px;
    line-height: 1.5;
  }

  /* 仕様 */
  .specification table th {
    width: 60px;
    font-size: 14px;
    padding: 15px 15px;
  }
  
  .specification table td {
    width: 240px;
    font-size: 14px;
    padding: 15px 15px;
  }


  /* 粒度範囲 */
  .size-range .img-box img {
    width: 100vw;
    margin-right: 0;
  }
  
  .size-range .text-box .text {
    width: 140px;
    font-size: 14px;
  }
  
  .size-range .text-box .text-s {
    font-size: 12px;
  }

  .size-range .btn {
    position: relative;
    display: block;
    left: 0;
    width: 200px;
    font-size: 14px;
    transition: 0.3s;
    margin: 0 auto;
    margin-top: 50px;
  }


  
  /* 粒度範囲 追加ページ */
  .size-range-add .img-box img {
    margin-right: 0;
  }

  .size-range-add .img-box p {
    color: #555;
    font-size: 16px;
    border-bottom: solid 1px #555;
    width: 220px;
    margin: 5px auto;
  }

  .size-range-add .type-box .btn {
    width: 90px;
    height: 90px;
  }
  
  .size-range-add .type-box .btn .img-box img {
    width: 70px;
    height: 70px;
  }


  /* 処理量 */
  .throughput .bar-area .bar-box {
    height: 230px;
  }

  .throughput .bar-area .bar-box .type {
    font-size: 10px;
    font-weight: 600;
    color: #00437c;
  }

  .throughput .bar-area .bar-box .bar {
    width: 40px;
    font-size: 12px;
    padding-top: 3px;
  }
  
  .throughput .bar-area.wide .bar-box .bar {
    width: 60px;
    font-size: 12px;
    padding-top: 3px;
  }
  
  .throughput .bar-area .bar-box .bar span {
    font-size: 10px;
  }

  .show .throughput .bar-area .bar-box a .pop-icon-box {
    display: none;
  }

  .throughput .description {
    font-size: 13px;
    width: 80vw;
    margin: 0 auto;
    margin-top: 10px;
  }

  .throughput .text-box .text {
    width: 120px;
    font-size: 14px;
  }
  
  .throughput .text-box .text-s {
    font-size: 12px;
  }


  /* 処理例 */
  .process-example table {
    width: 95vw;
  }

  .process-example table thead th {
    font-size: 12px;
    padding: 5px 2px;
    width: 95px;
    background-color: #b5c3d6;
    border: solid 1px #ddd;
    line-height: 1.2;
    vertical-align:middle;
  }
  
  .process-example table thead th span{
    font-size: 10px;
  }
  
  .process-example table thead th sub{
    font-size: 8px;
  }
  
  .process-example table tbody th {
    font-size: 11px;
    padding: 6px 2px;
  }
  
  .process-example table tbody td {
    font-size: 12px;
  }
  
  .process-example table tbody td span{
    font-size: 10px;
  }


  /* フロー例 */
  .flow-example .flow-switch button {
    display: flex;
    width: auto;
    padding: 7px 5px 29px 5px;
    background-color: #777;
    color: #fff;
    font-size: 14px;
    margin: 5px 8px;
    justify-content: center;
  }

  .flow-example .img-box {
    width: 95vw;
  }

  .flow-example .img-box img {
    height: auto;
  }

  .flow-example .img-box p {
    font-size: 12px;
  }

    /* 問合せ案内 */
  .to-inquiry-inner p {
    font-size: 13px;
  }

  .to-inquiry-inner .btn {
    width: 240px;
    margin: 30px auto 0 auto;
    padding: 8px 15px;
  }

  /* 関連製品 */

  /* スマホ表示 */
  .phone-display-none {
    display: none;
  }

  .phone-display-only {
    display: flex;
  }

}