@charset "UTF-8";
/* visual
================================================== */
.visual {
  position: relative;
  background: url("/products/inkjet/application/images/feature/visual_bg-pc.jpg") no-repeat center bottom;
  background-size: cover;
  color: #fff;
}
.visual__inner {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 960px;
  height: 300px;
  margin: 0 auto;
  padding-right: 420px;
}
.visual__image {
  position: absolute;
  top: 30px;
  right: 0;
}
.visual__lead {
  margin-top: .75em;
  font-size: 16px;
  line-height: 1.625;
}
@media only screen and (max-width: 767px) {
  .visual {
    background: url("/products/inkjet/application/images/feature/visual_bg-sp.jpg") no-repeat center top;
    background-size: 100% 72vw;
  }
  .visual__inner {
    justify-content: flex-start;
    width: auto;
    height: 72vw;
    padding: 8vw 4vw 0;
  }
  .visual__image {
    top: 58.66667vw;
    left: 7.33333vw;
    width: 71.06667vw;
  }
  .visual__image img {
    width: 100%;
    height: auto;
  }
  .visual__lead {
    margin-top: 0;
    font-size: 4vw;
    line-height: 1.46;
  }
}

/* common
================================================== */
/* section */
.section {
  padding: 100px 0;
  background: #fff;
}
.section--secondary {
  background: #f2f4f6;
}
.section__inner {
  position: relative;
}
.section .section__title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 13.33333vw 15px;
  }
  .section .section__title {
    margin-bottom: 5.33333vw;
  }
}

/* movie
================================================== */
.movie {
  padding-top: 145px;
}
.movie__title {
  margin-bottom: .75em;
  font-size: 20px;
  text-align: center;
}
.movie__inner {
  max-width: 640px;
  margin: 0 auto;
}
.movie__frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 1em;
}
.movie__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie__note {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .movie {
    padding-top: 48vw;
  }
  .movie__title {
    font-size: 5.33333vw;
  }
}

/* features
================================================== */
.features__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features__item + .features__item {
  margin-top: 70px;
}
.features__item--rev {
  flex-direction: row-reverse;
}
.features__item__image {
  flex: 0 0 450px;
}
.features__item__text {
  flex: 0 0 480px;
}
.features__item__text p + p {
  margin-top: 1em;
}
.features__item__title {
  margin-bottom: .75em;
  font-size: 30px;
}
.features__notice{
  position: relative;
}
.features__notice__inner{
  position: absolute;
  left: 0;
  top: -95px;
}
.features__notice__text{
  background-color: red;
  color: #fff;
  padding: 5px;
  display: inline-block;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .features__item {
    display: block;
  }
  .features__item + .features__item {
    margin-top: 10.66667vw;
  }
  .features__item__image {
    margin-bottom: 4vw;
  }
  .features__item__title {
    font-size: 5.33333vw;
  }
  .features__notice{
    padding-top: 25vw;
    margin-bottom:15px;
  }
  .features__notice__inner{
    position: static;
  }
}

/* functions
================================================== */
.functions__items > div + div {
  margin-top: 30px;
}
.functions__item {
  display: flex;
  background: #fff;
}
.functions__item__image {
  flex: 0 0 300px;
}
.functions__item__text {
  box-sizing: border-box;
  flex: 1 0 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 35px;
}
.functions__item__title {
  display: flex;
  margin-bottom: .75em;
  font-size: 24px;
  line-height: 1;
}
.functions__item__title > i {
  margin-right: .5em;
  padding-right: .5em;
  border-right: solid 2px #333;
  color: #459dca;
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .functions__items > div + div {
    margin-top: 6.66667vw;
  }
  .functions__item {
    display: block;
  }
  .functions__item__text {
    display: block;
    padding: 6.66667vw 4vw;
  }
  .functions__item__title {
    font-size: 5.33333vw;
  }
}

/* spec
================================================== */
.spec__table table {
  width: 100%;
}
.spec__table table th, .spec__table table td {
  border: solid 1px #727171;
  font-size: 14px;
}
.spec__table table thead th {
  background: #727171;
  border-left-color: #fff;
  border-right-color: #fff;
  color: #fff;
  text-align: center;
}
.spec__table table thead th.first {
  border-left-color: #727171;
}
.spec__table table thead th.last {
  border-right-color: #727171;
}
.spec__table table tbody th, .spec__table table tbody td {
  padding: .3em .5em;
  background: #fff;
}
.spec__table table tbody tr.bgcol th, .spec__table table tbody tr.bgcol td {
  background: #e7ecee;
}
.spec__table table tbody th {
  text-align: center;
}
.spec__table table tbody ul li {
  position: relative;
  padding-left: 1em;
}
.spec__table table tbody ul li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.spec__table table tbody p + p {
  margin-top: .5em;
}
.spec__subtitle {
  margin: 80px 0 .5em;
  font-size: 26px;
}
.spec__note {
  font-size: 12px;
}
.spec__image {
  margin: 45px 0 0 0;
  padding: 50px 0;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .spec__table {
    overflow-x: scroll;
  }
  .spec__table table {
    width: auto;
    min-width: 100%;
  }
  .spec__table table th, .spec__table table td {
    white-space: nowrap;
    font-size: 3.2vw;
  }
  .spec__subtitle {
    margin-top: 9.33333vw;
    font-size: 5.33333vw;
  }
  .spec__image {
    padding: 15px 0;
  }
}

/* case
================================================== */
.case__title {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 60px;
}
.case__title > i {
  margin-right: 20px;
}
.case__title > span {
  font-size: 30px;
}
.case__movie + .case__movie {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .case__title {
    margin-bottom: 40px;
  }
  .case__title > i {
    flex: 0 0 100px;
    margin-right: 15px;
  }
  .case__title > i img {
    width: 100%;
    height: auto;
  }
  .case__title > span {
    font-size: 5.33333vw;
  }
  .case__movie + .case__movie {
    margin-top: 40px;
  }
}
