@charset "UTF-8";

/* ==========================================================================
   single
========================================================================== */
/* =========================
   #description
========================= */
#description .txtBox .tags {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#description .txtBox .tags span{
  display: inline-block;
  line-height: 1.5;
  color: var(--color1);
  font-size: .875em;
  font-weight: 700;
  white-space: nowrap;
}
#description .txtBox .tags span.type {
    border: 1px solid currentColor;
    border-radius: 3em;
    padding: 0.25em 1em;
}

/* =========================
   #client
========================= */
.stepbar {
  list-style: none;
}
.stepbar li {
  background-color: #DDD;
  color: #A3A3A3;
  position: relative;
}
.stepbar li:nth-child(1).active {
  color: #2C9EF5;
  z-index: 6;
}
.stepbar li:nth-child(2).active {
  color: #40A7F5;
  z-index: 5;
}
.stepbar li:nth-of-type(3).active {
  color: #56B1F6;
  z-index: 4;
}
.stepbar li:nth-child(4).active {
  color: #6ABAF7;
  z-index: 3;
}
.stepbar li:nth-child(5).active {
  color: #80C5F9;
  z-index: 2;
}
.stepbar li:nth-child(6).active {
  color: #96CEFA;
  z-index: 1;
}

.stepbar li span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.25;
  position: relative;
}

.stepbar li.active {
  background-color: currentColor;
}
.stepbar li.active span {
  color: var(--white);
}

@media (max-width: 767px) {
  .stepbar li:not(:first-child) {
    margin-top: -7px;
  }
  .stepbar li:not(:first-child):not(:last-child) {
    clip-path: polygon(100% 0, 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px), 0 0, 50% 10px);
  }
  .stepbar li:first-child {
    clip-path: polygon(100% 0, 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px), 0 0);
  }
  .stepbar li:last-child {
    clip-path: polygon(100% 0%, 100% 100%, 0 100%, 0% 0%, 50% 10px);
  }
  .stepbar li span {
    padding: 23px 0 15px;
  }
  .stepbar li:first-child span {
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  .stepbar {
    display: flex;
  }
  .stepbar li {
    flex: 0 0 calc((100% / 6) + 7px);
  }
  .stepbar li:not(:first-child) {
    margin-left: -7px;
  }
  .stepbar li:not(:first-child):not(:last-child) {
    clip-path: polygon(calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 0% 100%, 10px 50%, 0% 0%);

  }
  .stepbar li:not(:first-child) {
    clip-path: polygon(calc(100% - 10px) 0%, calc(100% - 10px) 100%, 0% 100%, 10px 50%, 0% 0%);
  }
  .stepbar li:not(:last-child) {
    clip-path: polygon(calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 0% 100%, 0% 0%);
  }
  .stepbar li span {
    height: 44px;
    padding: 0 10px;
  }
}


table.table th,
table.table td {
  padding: 1em 1.5em;
}
@media (min-width: 768px) {
  table.table th {
    width: 11em;
  }
}

/* =========================
   #solution
========================= */
.single #solution {
  position: relative;
}
.single #solution::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2em 2em 0 2em;
  border-color: var(--l-gray) transparent transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.single .box {
  background: var(--white);
  color: var(--black);
  padding: 7% 6%;
}
.single .box div {
	overflow-x: auto;
    overflow-y: hidden;
}
.single .box div img {
	white-space: nowrap;
    width: 600px;
    max-width: inherit;
}
.single .box.bg-color1 {
  padding: 3.5% 6%;
  background-color: var(--color1);
  color: var(--white);
}
.single .box .arrow-label {
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border1);
}
.single .box.bg-color1 .arrow-label {
  border-bottom: 1px solid var(--white);
}
@media (min-width: 768px) {
  .single .box {
    padding: 4% 5%;
  }
  .single .box.bg-color1 {
    padding: 2% 5% 0;
  }
	.single .box div {
	overflow-x: inherit;
    overflow-y: inherit;
	}
	.single .box div img {
	white-space: inherit;
    width: 100%;
    max-width: inherit;
	}
}

/* =========================
   content
========================= */
.single .entry__content h3.arrow-label {
  color: var(--color1);
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border1);
  padding-left: 1.75em;
  padding-bottom: 1rem;
}
.single .entry__content h3.arrow-label::before {
  content: '';
  width: 1em;
  background-size: 1em;
}
.single .entry__content h4 {
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.single .entry__content h3 + h4 {
  margin-top: 1.5rem;
}
.single .entry__content figure {
  margin: 3rem 0;
}
.single .entry__content .fit-img {
  height: 45vw;
}

.single .pagenav .back .btn span {
  padding: 0 2.5em;
  white-space: normal;
}
@media (min-width: 576px) {
  .single .entry__content .fit-img {
    height: 35vw;
  }

  .single .pagenav .back .btn {
    width: auto;
  }
  .single .pagenav .back .btn span {
    padding: 0 3.5em;
  }
}

@media (min-width: 992px) {
  .single .entry__content h3.arrow-label {
    font-size: 1.375rem;
  }
  .single .entry__content h4 {
    font-size: 1.25rem;
  }
}










