.br {
  display: none;
}
@media screen and (min-width: 769px) {
  .br.mnw769 {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .br.mxw768 {
    display: inline-block;
  }
}
@media screen and (max-width: 500px) {
  .br.mxw500 {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .br.dp-mx-tablet {
    display: inline;
  }
}

.sec-lineup {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .sec-lineup {
    margin-top: 60px;
  }
}
.sec-lineup__btns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec-lineup__btns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
  }
}
.sec-lineup__btns-btn {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .sec-lineup__btns-btn {
    width: 100%;
    margin-bottom: 24px;
  }
}
.sec-lineup__btns-btn a {
  position: relative;
  font-size: 24px;
  display: block;
  color: #0098ED;
  font-weight: bold;
  background: #D2EDF8;
  border: 2px solid #0A8DE6;
  border-radius: 5px;
  padding: 24px 0 25px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec-lineup__btns-btn a {
    font-size: 16px;
  }
}
.sec-lineup__btns-btn a:hover {
  opacity: 0.8;
}
.sec-lineup__btns-btn a::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 24px;
  width: 15px;
  height: 15px;
  border-top: solid 3px #0098ED;
  border-right: solid 3px #0098ED;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .sec-lineup__btns-btn a::before {
    width: 12px;
    height: 12px;
  }
}
.sec-lineup__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-lineup__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-lineup__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .sec-lineup__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-lineup__ttl {
    font-size: 2.2rem;
  }
}
.sec-lineup__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-lineup__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-lineup__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-lineup__lead {
    text-align: left;
  }
}
.sec-lineup__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1060px;
}
@media screen and (max-width: 768px) {
  .sec-lineup__list {
    display: block;
  }
}
.sec-lineup__item {
  margin-top: 40px;
  border-radius: 7px;
  padding: 80px 20px;
  width: 48%;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .sec-lineup__item {
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
  }
}
.sec-lineup__item__img-box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 300px;
}
.sec-lineup__item__img-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sec-lineup__item__ttl {
  margin-top: 30px;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}
.sec-lineup__item__option {
  position: relative;
  margin-top: 10px;
  text-align: center;
  padding-bottom: 25px;
}
.sec-lineup__item__option:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background-color: #fff;
}
.sec-lineup__item__option__body {
  display: inline-block;
  border-radius: 3px;
  margin: 0 10px;
  padding: 5px 15px;
  font-size: 15px;
  color: #fff;
}
.sec-lineup__item__option__body--paid {
  background-color: #f75757;
}
.sec-lineup__item__option__body--free {
  background-color: #6c8cd8;
}
.sec-lineup__item__detail-list {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-top: 30px;
}
.sec-lineup__item__detail-list.act:before {
  display: none;
}
.sec-lineup__item__detail-list:before {
  content: "";
  pointer-events: none;
  user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(239, 239, 239, 0), rgb(239, 239, 239));
}
.sec-lineup__item__detail-item {
  margin-top: 20px;
  text-align: center;
}
.sec-lineup__item__detail-item:nth-of-type(1) {
  margin-top: 0;
}
.sec-lineup__item__detail-item__ttl {
  color: #aaaaaa;
}
.sec-lineup__item__detail-item__body {
  color: #000000;
}
.sec-lineup__item__detail__more-btn {
  margin: 0 auto;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 40px;
  padding: 15px 5px;
  max-width: 135px;
  background-color: #34b9f0;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .sec-lineup__item__detail__more-btn:hover {
    opacity: 0.68;
  }
}
.sec-lineup__pipe {
  margin-top: 70px;
  border-width: 5px;
  border-style: dashed;
  border-color: #74cff5;
  border-radius: 20px;
  padding: 60px 20px;
}
@media screen and (max-width: 768px) {
  .sec-lineup__pipe {
    border-width: 2px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.sec-lineup__pipe__inner {
  margin: 0 auto;
  max-width: 970px;
}
.sec-lineup__pipe__ttl {
  border-radius: 10px;
  padding: 20px 10px;
  background-color: #74cff5;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-lineup__pipe__ttl {
    font-size: 2rem;
  }
}
.sec-lineup__pipe__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .sec-lineup__pipe__box {
    display: block;
  }
}
.sec-lineup__pipe__img--box {
  width: 100%;
  max-width: 100%;
  height: auto;
  width: 50%;
}
.sec-lineup__pipe__img--box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-lineup__pipe__img--box {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
}
.sec-lineup__pipe__body {
  width: 45%;
  color: #5a5a5a;
}
@media screen and (max-width: 768px) {
  .sec-lineup__pipe__body {
    margin-top: 40px;
    width: 100%;
  }
}

.sec-setup {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .sec-setup {
    margin-top: 100px;
  }
}
.sec-setup__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-setup__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-setup__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .sec-setup__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-setup__ttl {
    font-size: 2.2rem;
  }
}
.sec-setup__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-setup__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .sec-setup__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-setup__lead {
    margin-top: 30px;
  }
}
.sec-setup__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  max-width: 1160px;
  font-size: 1.8rem;
  line-height: 1.68;
  color: #5a5a5a;
}
@media screen and (max-width: 768px) {
  .sec-setup__content {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.sec-setup__content__box1 {
  width: 100%;
  max-width: 100%;
  height: auto;
  width: 55%;
}
.sec-setup__content__box1 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-setup__content__box1 {
    width: 100%;
  }
}
.sec-setup__content__box2 {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .sec-setup__content__box2 {
    margin-top: 15px;
    width: 100%;
  }
}
.sec-setup__content__ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}
.sec-setup__content__body1 {
  padding: 20px 0;
}
.sec-setup__content__body1__txt {
  display: block;
}
.sec-setup__content__body2 {
  border-top: 1px dashed #5a5a5a;
  padding: 20px 0;
}
.sec-setup__content__body2__txt {
  display: block;
}

.sec-flow {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .sec-flow {
    margin-top: 100px;
  }
}
.sec-flow__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-flow__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-flow__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-flow__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-flow__ttl {
    font-size: 2.2rem;
  }
}
.sec-flow__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-flow__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .sec-flow__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-flow__lead {
    margin-top: 30px;
  }
}
.sec-flow__flow {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  margin: 40px auto 0;
  max-width: 1000px;
}
.sec-flow__flow img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-flow__flow {
    margin-top: 20px;
    max-width: 90%;
  }
}
.sec-flow__flow:after {
  content: "";
  position: absolute;
  left: 7.5%;
  top: calc(100% + 10px);
  border-left: 3px solid #74cff5;
  height: 68px;
}
@media screen and (max-width: 768px) {
  .sec-flow__flow:after {
    height: 35px;
  }
}
.sec-flow__control {
  margin-top: 80px;
  border: 5px dashed #74cff5;
  border-radius: 20px;
  padding: 60px 20px 80px;
}
@media screen and (max-width: 768px) {
  .sec-flow__control {
    border-width: 3px;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-top: 45px;
  }
}
.sec-flow__control__inner {
  margin: 0 auto;
  max-width: 925px;
}
.sec-flow__control__lead {
  border-radius: 10px;
  padding: 23px 10px;
  background-color: #74cff5;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-flow__control__lead {
    font-size: 2rem;
    padding: 15px 10px;
  }
}
.sec-flow__control__lead__txt {
  position: relative;
}
.sec-flow__control__lead__txt:before {
  content: "";
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 60px;
  background: url("../images/signage/product/inc-sec-setup-good.png") no-repeat 50% 50%/contain;
}
@media screen and (max-width: 768px) {
  .sec-flow__control__lead__txt:before {
    right: calc(100% + 30px);
  }
}
@media screen and (max-width: 500px) {
  .sec-flow__control__lead__txt:before {
    display: none;
  }
}
.sec-flow__control__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec-flow__control__list {
    display: block;
  }
}
.sec-flow__control__item {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  width: 48%;
}
.sec-flow__control__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-flow__control__item {
    width: 100%;
  }
}
.sec-flow__control__item__ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #5a5a5a;
}
.sec-flow__control__item__img {
  margin-top: 15px;
}
.sec-flow__control__body {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
}
@media screen and (max-width: 768px) {
  .sec-flow__control__body {
    font-size: 1.6rem;
  }
}

.sec-merit {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .sec-merit {
    margin-top: 100px;
  }
}
.sec-merit__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-merit__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-merit__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-merit__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-merit__ttl {
    font-size: 2.2rem;
  }
}
.sec-merit__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-merit__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .sec-merit__lead {
    font-size: 1.6rem;
  }
}
.sec-merit__img--box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  max-width: 790px;
}
.sec-merit__img--box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-merit__img--box {
    margin-top: 20px;
  }
}
.sec-merit__list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .sec-merit__list {
    display: block;
  }
}
.sec-merit__item {
  position: relative;
  border: 5px solid #74cff5;
  border-radius: 20px;
  margin-top: 80px;
  padding: 60px 20px 20px;
  width: 46%;
}
@media screen and (max-width: 768px) {
  .sec-merit__item {
    margin: 65px auto 0;
    width: 95%;
  }
  .sec-merit__item:nth-of-type(1) {
    margin-top: 110px;
  }
}
.sec-merit__item:before {
  content: "";
  position: absolute;
  left: -30px;
  top: -50px;
  width: 130px;
  height: 130px;
  background: url("../images/signage/product/icn-good.png") no-repeat 50% 50%/contain;
}
@media screen and (max-width: 768px) {
  .sec-merit__item:before {
    left: 0;
    top: 0;
    transform: translate(-20%, -30%);
    width: 25vw;
    max-width: 120px;
    height: 25vw;
    max-height: 120px;
  }
}
.sec-merit__item__ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #5a5a5a;
}
.sec-merit__item__img--box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 15px auto 0;
}
.sec-merit__item__img--box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sec-merit__item__img--box1 {
  max-width: 150px;
}
.sec-merit__item__img--box2 {
  max-width: 257px;
}

.sec-available_file {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .sec-available_file {
    margin-top: 100px;
  }
}
.sec-available_file__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-available_file__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-available_file__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-available_file__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-available_file__ttl {
    font-size: 2.2rem;
  }
}
.sec-available_file__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-available_file__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-available_file__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-available_file__lead {
    text-align: left;
  }
}
.sec-available_file__list {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
  max-width: 500px;
}
.sec-available_file__type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto 0;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .sec-available_file__type {
    flex-direction: column;
    max-width: 400px;
  }
}
@media screen and (max-width: 452px) {
  .sec-available_file__type {
    max-width: 350px;
  }
}
.sec-available_file__type--scond {
  position: relative;
  margin-top: 50px;
}
.sec-available_file__type--scond:before {
  content: "";
  position: absolute;
  top: -25px;
  right: 0;
  display: block;
  width: 80%;
  border-top: 1px dashed #5A5A5A;
}
@media screen and (max-width: 768px) {
  .sec-available_file__type--scond:before {
    display: none;
  }
}
.sec-available_file__type__ttl {
  border-radius: 5px;
  padding: 5px 10px;
  width: 15%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-available_file__type__ttl {
    width: 100%;
    font-size: 1.5rem;
  }
}
.sec-available_file__type__ttl--orange {
  background-color: #f38100;
}
.sec-available_file__type__ttl--green {
  background-color: #57AC18;
}
.sec-available_file__type__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .sec-available_file__type__list {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
.sec-available_file__type__list--url {
  justify-content: center;
}
.sec-available_file__type__item {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 3.3333333333%;
  width: 10%;
}
.sec-available_file__type__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-available_file__type__item {
    margin-top: 15px;
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .sec-available_file__type__item--web, .sec-available_file__type__item--youtube {
    margin-left: 6%;
    margin-right: 6%;
    margin-top: 30px;
  }
}

.sec-usage {
  margin-top: 120px;
  color: #5a5a5a;
}
@media screen and (max-width: 768px) {
  .sec-usage {
    margin-top: 100px;
  }
}
.sec-usage__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-usage__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-usage__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-usage__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-usage__ttl {
    font-size: 2.2rem;
  }
}
.sec-usage__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-usage__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-usage__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-usage__lead {
    text-align: left;
  }
}
.sec-usage__item {
  position: relative;
  margin-top: 50px;
  border: 3px solid #5a5a5a;
  border-radius: 20px;
  margin-left: auto;
  padding: 50px 20px;
  width: 98%;
}
@media screen and (max-width: 768px) {
  .sec-usage__item {
    padding: 40px 20px;
    width: 95%;
  }
}
.sec-usage__item__order {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-30%, -30%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #74cff5;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__order {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.sec-usage__item__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1110px;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__inner {
    display: block;
  }
}
.sec-usage__item__layout--box1 {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  width: 8%;
}
.sec-usage__item__layout--box1 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__layout--box1 {
    margin: 0 auto;
    max-width: 100px;
    width: 100%;
  }
}
.sec-usage__item__layout--box2 {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__layout--box2 {
    width: 100%;
  }
}
.sec-usage__item__layout--box3 {
  width: 100%;
  max-width: 100%;
  height: auto;
  width: 38%;
}
.sec-usage__item__layout--box3 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__layout--box3 {
    margin: 20px auto 0;
    max-width: 500px;
    width: 100%;
  }
}
.sec-usage__item__ttl {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__ttl {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
  }
}
.sec-usage__item__body {
  margin-top: 10px;
  font-size: 1.7rem;
}
.sec-usage__item__body--weak {
  font-size: 90%;
}
@media screen and (max-width: 768px) {
  .sec-usage__item__body {
    text-align: center;
    font-size: 1.8rem;
  }
}
.sec-usage__detail {
  position: relative;
  margin-top: 50px;
  border: 5px solid #74CFF5;
  border-radius: 20px;
  margin-left: auto;
  padding: 50px 20px;
  width: 98%;
}
@media screen and (max-width: 768px) {
  .sec-usage__detail {
    padding: 40px 20px;
    width: 95%;
  }
}
.sec-usage__detail__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1110px;
}
@media screen and (max-width: 768px) {
  .sec-usage__detail__inner {
    display: block;
  }
}
.sec-usage__detail__txt-box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .sec-usage__detail__txt-box {
    width: 100%;
  }
}
.sec-usage__detail__img-box {
  width: 100%;
  max-width: 100%;
  height: auto;
  width: 38%;
}
.sec-usage__detail__img-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-usage__detail__img-box {
    margin: 20px auto 0;
    max-width: 500px;
    width: 100%;
  }
}
.sec-usage__detail__lead {
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  background-color: #74cff5;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-usage__detail__lead {
    padding: 20px 3.5vw;
    font-size: 20px;
  }
}
.sec-usage__detail__ttl {
  margin-top: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-usage__detail__ttl {
    margin-top: 20px;
    font-size: 2rem;
    text-align: center;
  }
}
.sec-usage__detail__body {
  margin-top: 10px;
  font-size: 17px;
}

.sec-role-security {
  margin-top: 120px;
  color: #5a5a5a;
}
@media screen and (max-width: 768px) {
  .sec-role-security {
    margin-top: 100px;
  }
}
.sec-role-security__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-role-security__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-role-security__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-role-security__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-role-security__ttl {
    font-size: 2.2rem;
  }
}
.sec-role-security__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-role-security__sub-ttl {
  margin-top: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
.sec-role-security__sub-ttl--security {
  margin-top: 65px;
}
.sec-role-security__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .sec-role-security__lead {
    font-size: 1.6rem;
  }
}
.sec-role-security__role-img--box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  max-width: 415px;
}
.sec-role-security__role-img--box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sec-role-security__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec-role-security__list {
    display: block;
  }
}
.sec-role-security__item {
  margin-top: 30px;
  border-width: 4px;
  border-style: solid;
  border-radius: 20px;
  padding: 60px 20px;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .sec-role-security__item {
    width: 100%;
  }
}
.sec-role-security__item--color-tea {
  border-color: #e28831;
}
.sec-role-security__item--color-green {
  border-color: #a0cd63;
}
.sec-role-security__item--color-blue {
  border-color: #72c2ee;
}
.sec-role-security__item__inner {
  margin: 0 auto;
  max-width: 270px;
}
@media screen and (max-width: 768px) {
  .sec-role-security__item__inner {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .sec-role-security__item__layout--num-txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.sec-role-security__item__numbering {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 45px;
  width: 90px;
  height: 90px;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-role-security__item__numbering {
    margin: 0;
    border-radius: 35px;
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
}
.sec-role-security__item__numbering--color-tea {
  background-color: #e28831;
}
.sec-role-security__item__numbering--color-green {
  background-color: #a0cd63;
}
.sec-role-security__item__numbering--color-blue {
  background-color: #72c2ee;
}
.sec-role-security__item__ttl {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-role-security__item__ttl {
    margin-left: 13px;
    width: calc(100% - 80px);
    font-size: 1.8rem;
    text-align: left;
  }
}
.sec-role-security__item__body {
  margin-top: 20px;
  line-height: 1.9;
}
.sec-role-security__security__img--box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  max-width: 1220px;
}
.sec-role-security__security__img--box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-role-security__security__img--box {
    max-width: 500px;
  }
}

.sec-available {
  display: none;
  margin: 120px 0 150px;
  color: #5a5a5a;
}
@media screen and (max-width: 768px) {
  .sec-available {
    margin: 100px 0;
  }
}
.sec-available__container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: calc(1220px + 20px * 2);
}
@media screen and (max-width: 768px) {
  .sec-available__container {
    padding: 0 3.5vw;
    max-width: calc(1220px + 3.5vw * 2);
  }
}
.sec-available__ttl {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sec-available__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .sec-available__ttl {
    font-size: 2.2rem;
  }
}
.sec-available__ttl:after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 8px;
  background-image: linear-gradient(to left, #b1f4cf, #a8cfd6, #a0b1dc, #9890e3);
}
.sec-available__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: #5a5a5a;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .sec-available__lead {
    font-size: 1.6rem;
  }
}
.sec-available__exam {
  margin: 40px auto 0;
  max-width: 1130px;
}
.sec-available__exam__lead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sec-available__exam__lead--body {
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__lead--body {
    font-size: 1.8rem;
  }
}
.sec-available__exam__lead--ats {
  font-size: 1.4rem;
}
.sec-available__exam__ats-item {
  position: relative;
  margin-top: 5px;
  padding-left: 2em;
  line-height: 1.68;
}
.sec-available__exam__ats-item__numbering {
  position: absolute;
  left: 0;
  top: 0;
}
.sec-available__exam__content-item {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__content-item {
    display: block;
  }
}
.sec-available__exam__content-item__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  width: 20%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__content-item__ttl {
    padding: 10px;
    width: 100%;
  }
}
.sec-available__exam__content-item__ttl--origin {
  background-color: #e6f8ff;
}
.sec-available__exam__content-item__ttl--measurement, .sec-available__exam__content-item__ttl--external {
  background-color: #fff7cc;
}
.sec-available__exam__content-item__ttl--etc {
  background-color: #efefef;
}
.sec-available__exam__content-item__ttl .weak {
  vertical-align: top;
  font-size: 50%;
}
.sec-available__exam__content-item__body {
  padding: 60px 20px 40px;
  width: 78%;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__content-item__body {
    margin-top: 15px;
    padding: 30px 20px;
    width: 100%;
  }
}
.sec-available__exam__content-item__body--origin {
  background-color: #e6f8ff;
}
.sec-available__exam__content-item__body--measurement, .sec-available__exam__content-item__body--external {
  background-color: #fff7cc;
}
.sec-available__exam__content-item__body--etc {
  background-color: #efefef;
}
.sec-available__exam__content-item__body__img-box {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.sec-available__exam__content-item__body__img-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.sec-available__exam__content-item__body__img-box--origin, .sec-available__exam__content-item__body__img-box--measurement {
  max-width: 740px;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__content-item__body__img-box--origin, .sec-available__exam__content-item__body__img-box--measurement {
    max-width: 430px;
  }
}
.sec-available__exam__content-item__body__img-box--external {
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__content-item__body__img-box--external {
    max-width: 430px;
  }
}
.sec-available__exam__content-item__body__img-box--etc {
  max-width: 780px;
}
@media screen and (max-width: 768px) {
  .sec-available__exam__content-item__body__img-box--etc {
    max-width: 430px;
  }
}/*# sourceMappingURL=page-signage-product.css.map */