@charset "UTF-8";
/* 
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/
/* Header */
.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0;
  background-color: white;
  box-shadow: 18px 0 18px #a6a6a6;
}
@media screen and (max-width: 1080px) {
  .header {
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    height: 50px;
  }
}
.header.scrolled {
  padding: 0;
}
.header__inner {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    margin-inline: -10px;
  }
}
.header__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0 32px;
}
@media screen and (max-width: 767px) {
  .header__logo-wrap {
    gap: 0 27px;
  }
}
.header__logo a {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header__logo--01 {
    position: relative;
    top: -4px;
    left: 2px;
    width: 78px;
  }
  .header__logo--01 img {
    width: 100%;
    height: auto;
  }
}
.header__logo--02 {
  position: relative;
  top: 3px;
}
@media screen and (max-width: 767px) {
  .header__logo--02 {
    top: 0px;
    width: 145px;
  }
  .header__logo--02 img {
    width: 100%;
    height: auto;
  }
}
.header__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 12px;
}
@media screen and (max-width: 1080px) {
  .header__btn {
    display: none;
  }
}

.header__btn-sp {
  display: none;
}
@media screen and (max-width: 1080px) {
  .header__btn-sp {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 10px 10px;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__btn-sp {
    display: none;
  }
}
.header__btn-sp--fixed {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__btn-sp--fixed {
    display: block flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 778;
    background-color: #fff;
    box-shadow: -18px 0 18px #a6a6a6;
  }
  /* .header__btn-sp--fixed > a:first-of-type {
    width: 100%;
    text-align: center;
  } */
}

/* nav-btn */
.c-nav__button-wrap {
  display: none;
}

.c-nav__sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .c-nav__button-wrap {
    display: block;
    position: absolute;
    top: -10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .c-nav__button {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 18px;
    border: none;
    background: none;
  }
  .c-nav__button-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s ease-in;
  }
  .c-nav__button-item:nth-child(2) {
    top: 50%;
    width: 100%;
  }
  .c-nav__button-item:nth-child(3) {
    top: 100%;
  }
  .c-nav__button.is-close .c-nav__button-item {
    top: 50%;
    transform: rotate(45deg);
  }
  .c-nav__button.is-close .c-nav__button-item:nth-child(2) {
    width: 0;
  }
  .c-nav__button.is-close .c-nav__button-item:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  /* sp ナビ */
  .c-nav__sp {
    display: block;
    position: fixed;
    top: 75px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    z-index: 775;
    padding: 0 0px 0px 0;
    background-color: #fff;
    transform: translateX(110%);
    transition: all 0.2s ease-in;
    overflow-y: auto;
  }
  .c-nav__sp.is-open {
    transform: translateX(0%);
  }
  .c-nav__sp > nav > ul > li > a {
    display: block;
    padding: 15px 10px 13px 10px;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (max-width: 767px) {
  .c-nav__button-wrap {
    display: block;
    position: absolute;
    top: -13px;
    right: 0px;
    width: 50px;
    height: 50px;
  }
  .c-nav__button {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    margin: auto;
    width: 17px;
    height: 14px;
    border: none;
    background: none;
  }
  .c-nav__sp {
    top: 35px;
    height: calc(100vh - 50px);
  }
}
/* Main Visual */
.mainv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .mainv {
    background: none;
    padding: 17px 0 0px 0;
  }
}
.mainv__img-pc {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 730px;
  z-index: 1;
  z-index: 2;
}
.mainv__img-pc img {
  width: 100%;
  height: 100%;
  min-height: 730px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 127/65;
}
@media screen and (max-width: 1080px) {
  .mainv__img-pc img {
    -o-object-position: 80% 50%;
       object-position: 80% 50%;
  }
}
@media screen and (max-width: 767px) {
  .mainv__img-pc {
    display: none;
  }
}
.mainv__img-pc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.mainv-block {
  display: flex;
  align-items: flex-start;
  position: absolute;
  inset: 0% 0 auto 0;
  height: 100%;
  margin: auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mainv-block {
    position: relative;
  }
}
.mainv-block__content {
  width: 500px;
  max-width: 90%;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .mainv-block__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.mainv-block__title {
  margin-bottom: 36px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.75;
  color: #7E7B7A;
}
@media screen and (max-width: 767px) {
  .mainv-block__title {
    width: 301px;
    margin: 0 auto 18px auto;
    font-size: 19.4px;
  }
}
.mainv-block__title > img {
  margin-top: 7px;
  height: auto;
}
.mainv-block__desc {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  color: #1976BD;
}
@media screen and (max-width: 767px) {
  .mainv-block__desc {
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1.33;
  }
}
.mainv-block__text {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.75;
  color: #000;
}
@media screen and (max-width: 767px) {
  .mainv-block__text {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.33;
  }
}
.mainv-block__memo {
  font-size: 12px;
  line-height: 1.75;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .mainv-block__memo {
    padding: 10px;
    border: 1px solid #BFBFBF;
    font-size: 14px;
    line-height: 1.29;
  }
}
.mainv-block__img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .mainv-block__img-sp {
    display: block;
    width: calc(100% + 40px);
    height: auto;
    margin: 0 -20px 17px;
  }
}

/* 外来処置で、こんなお困りごとはありませんか？ */
.nayami {
  padding: 28px 0 79px 0;
}
@media screen and (max-width: 767px) {
  .nayami {
    padding: 28px 0 20px 0;
  }
}
.nayami__title {
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.75;
  text-align: center;
  color: #7E7B7A;
}
@media screen and (max-width: 1080px) {
  .nayami__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .nayami__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.45;
  }
}

.nayami-block01 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 81px;
}
@media screen and (max-width: 1080px) {
  .nayami-block01 {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .nayami-block01 {
    display: none;
  }
}
.nayami-block01--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .nayami-block01--sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .nayami-block01__item {
    width: 270px;
    margin: auto;
  }
}
.nayami-block01__title {
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.46;
  text-align: left;
  color: #E79278;
}
@media screen and (max-width: 1080px) {
  .nayami-block01__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .nayami-block01__title {
    font-size: 18px;
    line-height: 1.33;
    text-align: center;
  }
}
.nayami-block01__img {
  width: 100%;
  margin-bottom: 15px;
}
.nayami-block01__text {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .nayami-block01__text {
    font-size: 15px;
    line-height: 1.33;
  }
}

/* RFIDリストバンドが解決します！ */
.kaiketsu {
  padding: 37px 0 72px 0;
  position: relative;
  z-index: 2;
  background-color: #dcefeb;
}
@media screen and (max-width: 767px) {
  .kaiketsu {
    padding: 27px 0 26px 0;
  }
}
.kaiketsu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-image: linear-gradient(to bottom, #04a6e9, #07a7e9 18%, #11aae9 32%, #22b0e9 45%, #39b8e9 57%, #58c3e9 69%, #7ed0ea 80%, #aae0ea 91%, #d5efeb);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .kaiketsu::after {
    height: 200px;
  }
}
.kaiketsu__title {
  margin-bottom: 7px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1080px) {
  .kaiketsu__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu__title {
    margin-bottom: 27px;
    font-size: 26px;
    line-height: 1.5;
  }
}
.kaiketsu__decoration {
  margin-bottom: 7px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kaiketsu__decoration {
    margin-bottom: 15px;
  }
}
.kaiketsu__decoration img {
  display: block;
  margin: 0 auto 13px;
}
@media screen and (max-width: 767px) {
  .kaiketsu__decoration img {
    width: 29px;
    height: auto;
    margin: 0 auto 9px;
  }
}
.kaiketsu__decoration img:last-of-type {
  margin: 0 auto;
}

.kaiketsu-block01 {
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01 {
    margin-bottom: 36px;
  }
}
.kaiketsu-block01__title {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #04a6e9;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__title {
    margin-bottom: 0px;
    font-size: 21.6px;
  }
}
.kaiketsu-block01__img-area {
  width: 1185px;
  max-width: 100%;
  margin: auto;
  padding-top: 197px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__img-area {
    width: calc(100% + 40px);
    max-width: none;
    margin: 0 -20px;
    padding-top: 131px;
    overflow: hidden;
  }
}
.kaiketsu-block01__img-area {
  position: relative;
}
.kaiketsu-block01__main-img {
  position: relative;
  width: 1185px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__main-img {
    max-width: calc(100% + 60px);
  }
}
.kaiketsu-block01__main-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__main-img img {
    position: relative;
    left: -30px;
    max-width: none;
  }
}
.kaiketsu-block01__img01 {
  position: absolute;
  top: 11%;
  left: 10%;
  width: 223px;
  height: auto;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .kaiketsu-block01__img01 {
    top: 15%;
    left: 8%;
    width: 180px;
  }
  .kaiketsu-block01__img01 img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__img01 {
    top: 21%;
    left: 2%;
    width: 100px;
  }
}
.kaiketsu-block01__img02 {
  position: absolute;
  top: -3%;
  left: 28%;
  width: 223px;
  height: auto;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .kaiketsu-block01__img02 {
    top: 1%;
    left: 23%;
    width: 180px;
  }
  .kaiketsu-block01__img02 img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__img02 {
    top: 6%;
    left: 20%;
    width: 100px;
  }
}
.kaiketsu-block01__img03 {
  position: absolute;
  top: -3%;
  left: 48%;
  width: 223px;
  height: auto;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .kaiketsu-block01__img03 {
    top: -4%;
    left: 44%;
    width: 180px;
  }
  .kaiketsu-block01__img03 img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__img03 {
    top: 1%;
    left: 44%;
    width: 100px;
  }
}
.kaiketsu-block01__img04 {
  position: absolute;
  top: 13%;
  left: 73.5%;
  width: 223px;
  height: auto;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .kaiketsu-block01__img04 {
    top: 22%;
    left: 64.5%;
    width: 180px;
  }
  .kaiketsu-block01__img04 img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__img04 {
    top: 27%;
    left: 67%;
    width: 100px;
  }
}
.kaiketsu-block01__img05 {
  position: absolute;
  top: 48%;
  left: 31.5%;
  width: 223px;
  height: auto;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .kaiketsu-block01__img05 {
    top: 44%;
    left: 28.5%;
    width: 180px;
  }
  .kaiketsu-block01__img05 img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .kaiketsu-block01__img05 {
    top: 49%;
    left: 25%;
    width: 100px;
  }
}

.kaiketsu-block02__inner {
  position: relative;
  width: 750px;
  max-width: 100%;
  height: 300px;
  margin: -8px auto 0 auto;
  background-color: #dcefeb;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02__inner {
    width: 345px;
    height: 138px;
  }
}
.kaiketsu-block02__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 750px;
  height: 300px;
  margin: 0 auto;
  background: url("../images/kaiketsu-area02-gb01.png") no-repeat 50% 50%;
  background-size: cover;
  mix-blend-mode: hard-light;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02__inner::before {
    width: 345px;
    max-width: 100%;
    height: 138px;
  }
}
.kaiketsu-block02__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 300px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02__content {
    height: 138px;
  }
}
.kaiketsu-block02__item {
  position: relative;
  width: 50%;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02__item {
    font-size: 16.6px;
  }
}
.kaiketsu-block02__item:first-of-type {
  padding: 11px 0 0 32px;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02__item:first-of-type {
    padding: 6px 0 0 11px;
  }
}
.kaiketsu-block02__item:last-of-type {
  padding: 11px 20px 0 0;
}
@media screen and (max-width: 767px) {
  .kaiketsu-block02__item:last-of-type {
    padding: 6px 5px 0 0;
  }
}

/* 1Day FLATONEの特長 */
.features {
  padding: 27px 0 35px 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 12px, #D5EFEB 12px, #D5EFEB 24px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 15px 0 15px 0;
  }
}
.features__title {
  margin-bottom: 49px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.75;
  text-align: center;
  color: #0066d0;
}
@media screen and (max-width: 767px) {
  .features__title {
    margin-bottom: 5px;
    font-size: 21.6px;
  }
}
.features__img01 {
  margin: 0 -9px 47px 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features__img01 {
    margin: 0 -34px 35px -22px;
  }
}
.features__img02 {
  margin-bottom: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features__img02 {
    width: 331px;
    max-width: 100%;
    margin: 52px auto 0;
  }
}

.features-block01__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 31px;
  padding: 36px 31px 43px 28px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .features-block01__item {
    margin-bottom: 20px;
    padding: 12px 10px 23px 10px;
  }
}
.features-block01__head {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .features-block01__head {
    gap: 7px;
    margin-bottom: 12px;
  }
}
.features-block01__no {
  width: 47px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .features-block01__no {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__no--1 img {
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__no--2 img {
    width: 26px;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__no--3 img {
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__no--4 img {
    width: 25px;
  }
}
.features-block01__title {
  padding-top: 4px;
  font-size: 36px;
  font-weight: 500;
  color: #1976BD;
}
@media screen and (max-width: 767px) {
  .features-block01__title {
    font-size: 18px;
  }
}
.features-block01__tag {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 14px;
}
@media screen and (max-width: 1080px) {
  .features-block01__tag {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__tag {
    display: none;
  }
}
.features-block01__tag--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .features-block01__tag--sp {
    display: block flex !important;
    justify-content: flex-start;
    margin: 15px 0 0 32px;
  }
}
.features-block01__tag-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 12px 3px 12px;
  border-radius: 10px;
  background-color: #04a6e9;
  font-size: 25.7px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .features-block01__tag-item {
    font-size: 15px;
  }
}
.features-block01__body {
  width: 100%;
  padding-left: 57px;
}
@media screen and (max-width: 767px) {
  .features-block01__body {
    padding-left: 32px;
  }
}
.features-block01__text {
  width: 100%;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .features-block01__text {
    font-size: 15px;
    line-height: 1.33;
  }
}
.features-block01__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: -69px 12px 0 -6px;
}
@media screen and (max-width: 1080px) {
  .features-block01__row {
    margin: 20px 12px 0 -6px;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__row {
    display: block;
    margin: 14px -2px 0 -33px;
  }
}
@media screen and (max-width: 1080px) {
  .features-block01__row-img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__row-img {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1080px) {
  .features-block01__row-btn {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .features-block01__row-btn {
    margin: 7px 0px 0 0px;
  }
  .features-block01__row-btn a {
    display: block;
  }
  .features-block01__row-btn a img {
    width: 100%;
    height: auto;
  }
}
.features-block01__img01 {
  margin: 14px -15px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .features-block01__img01 {
    display: block;
    margin: 7px -8px 0 -36px;
  }
}

/* 詳しい説明・導入のご相談など、お気軽にお問い合わせください。 */
.contact {
  padding: 60px 0px 102px 0;
}
.contact h2 {
  margin-bottom: 50px;
  font-size: 20px;
  text-align: center;
}
.contact__btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 30px;
}

/* 活用例  */
.exsample {
  padding: 31px 0 39px 0;
  background-color: #d5efeb;
}
@media screen and (max-width: 767px) {
  .exsample {
    padding: 19px 0 15px 0;
  }
}
.exsample__title {
  margin-bottom: 23px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #0066d0;
}
@media screen and (max-width: 767px) {
  .exsample__title {
    margin-bottom: 20px;
    font-size: 21.6px;
  }
}
.exsample__lead {
  margin-bottom: 39px;
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .exsample__lead {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.33;
  }
}
.exsample__memo {
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 1080px) {
  .exsample__memo {
    width: 64%;
    margin: 0px auto 0px auto;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .exsample__memo {
    width: 84%;
    font-size: 15px;
    line-height: 1.33;
  }
}

.exsample-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 21px;
}
@media screen and (max-width: 1080px) {
  .exsample-block01 {
    margin-bottom: 0;
  }
}
.exsample-block01__movie {
  width: 64%;
}
@media screen and (max-width: 1080px) {
  .exsample-block01__movie {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .exsample-block01__movie {
    width: 100%;
    margin: 16px auto 0;
  }
}
.exsample-block01__movie video {
  width: 100%;
  max-width: 100%;
}
.exsample-block01__content {
  width: 36%;
  margin-top: -8px;
  padding-left: 30px;
}
@media screen and (max-width: 1080px) {
  .exsample-block01__content {
    width: 64%;
    margin: 0px auto 0px auto;
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .exsample-block01__content {
    width: 84%;
  }
}
.exsample-block01__content p {
  font-size: 22px;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .exsample-block01__content p {
    font-size: 15px;
    line-height: 1.33;
  }
}

/* 仕様  */
.feature {
  padding: 30px 0 55px 0;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 12px, #d5efeb 12px, #d5efeb 24px);
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 21px 0 40px 0;
  }
}
.feature__title {
  margin-bottom: 33px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #0066d0;
}
@media screen and (max-width: 767px) {
  .feature__title {
    margin-bottom: 12px;
    font-size: 21.6px;
  }
}

.feature-table {
  width: 100%;
}
.feature-table tr {
  display: flex;
  border-bottom: 4px solid #d5efeb;
}
.feature-table tr:last-of-type {
  border: none;
}
.feature-table th {
  display: block;
  width: 360px;
  margin: 0;
  padding: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.59;
  text-align: left;
  background-color: #fff;
  border-right: 4px solid #dcefeb;
}
@media screen and (max-width: 1080px) {
  .feature-table th {
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .feature-table th {
    width: 134px;
    padding: 20px 2px 20px 10px;
    font-size: 13px;
    line-height: 1.54;
  }
}
.feature-table td {
  display: block;
  width: calc(100% - 360px);
  padding: 20px;
  margin: 0;
  font-size: 22px;
  line-height: 1.59;
  text-align: left;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .feature-table td {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 767px) {
  .feature-table td {
    width: calc(100% - 134px);
    padding: 20px 5px 20px 10px;
    font-size: 13px;
    line-height: 1.54;
  }
}

/* 対応プリンタ  */
.printer {
  padding: 30px 0 17px 0;
}
@media screen and (max-width: 767px) {
  .printer {
    padding: 19px 0 28px 0;
  }
}
.printer__title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #0066d0;
}
@media screen and (max-width: 767px) {
  .printer__title {
    margin-bottom: 10px;
    font-size: 21.6px;
  }
}

.printer-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.printer-block01__img {
  width: 49%;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .printer-block01__img {
    width: 66%;
    margin: 0 auto 0;
    padding-right: 0px;
    text-align: center;
  }
}
.printer-block01__content {
  width: 51%;
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .printer-block01__content {
    width: 84%;
    margin: 0 auto 0;
    padding-top: 0px;
  }
}
.printer-block01__title {
  margin-bottom: 19px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .printer-block01__title {
    font-size: 18px;
  }
}
.printer-block01__text {
  margin-bottom: 36px;
  font-size: 22px;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .printer-block01__text {
    margin-bottom: 21px;
    font-size: 15px;
    line-height: 1.33;
  }
}
.printer-block01__btn {
  padding-top: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .printer-block01__btn {
    width: 170px;
    margin: -10px auto 0;
    padding-top: 0px;
  }
}

/* よくある質問 */
.faq {
  padding: 29px 0 26px 0;
  background-color: #fff;
  background-color: #d5efeb;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 19px 0 20px 0;
  }
}
.faq__title {
  margin-bottom: 37px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #0066d0;
}
@media screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 11px;
    font-size: 21.6px;
  }
}

.faq-block01 {
  margin: 0;
}
.faq-block01__item {
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .faq-block01__item {
    margin-bottom: 20px;
  }
}
.faq-block01 dt {
  position: relative;
  padding: 5px 10px 2px 84px;
  background-color: #04a6e9;
  font-size: 32px;
  font-weight: 500;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .faq-block01 dt {
    padding: 8px 10px 10px 46px;
    font-size: 18px;
    line-height: 1.33;
  }
}
.faq-block01 dt::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 18px;
  width: 47px;
  height: 53px;
  background: url("../images/icon-q.png") no-repeat 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .faq-block01 dt::before {
    top: 10px;
    left: 11px;
    width: 27px;
    height: 31px;
  }
}
.faq-block01 dd {
  position: relative;
  margin: 0;
  padding: 18px 30px 22px 155px;
  background-color: #fff;
  font-size: 22px;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .faq-block01 dd {
    padding: 15px 17px 16px 53px;
    font-size: 15px;
    line-height: 1.33;
  }
}
.faq-block01 dd::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 78px;
  width: 48px;
  height: 46px;
  background: url("../images/icon-a.png") no-repeat 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .faq-block01 dd::before {
    top: 20px;
    left: 12px;
    width: 30px;
    height: 28px;
  }
}

/* 関連製品･ソリューション */
.related {
  padding: 31px 0 34px 0;
  margin-bottom: 0px;
  background-color: #dcefeb;
}
@media screen and (max-width: 767px) {
  .related {
    padding: 20px 0 2px 0;
  }
}
.related h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #0066d0;
}
@media screen and (max-width: 767px) {
  .related h2 {
    font-size: 21.6px;
  }
}

.related .section-body {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .related .section-body {
    padding: 0 40px;
  }
}

.related .swiper {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 27px;
}

@media screen and (max-width: 756px) and (min-width: 0px) {
  .related .swiper {
    width: 100%;
    height: auto;
    margin-top: 35px;
  }
}
.related .swiper-button-next,
.related .swiper-rtl .swiper-button-prev {
  top: calc(50% - 37.5px);
  right: -15px;
  width: 75px;
}
@media screen and (max-width: 1260px) {
  .related .swiper-button-next,
.related .swiper-rtl .swiper-button-prev {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .related .swiper-button-next,
.related .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}

.related .swiper-button-prev,
.related .swiper-rtl .swiper-button-next {
  top: calc(50% - 37.5px);
  left: -15px;
  width: 75px;
}
@media screen and (max-width: 1260px) {
  .related .swiper-button-prev,
.related .swiper-rtl .swiper-button-next {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .related .swiper-button-prev,
.related .swiper-rtl .swiper-button-next {
    left: 0;
  }
}

.swiper-button-prev:after {
  content: "" !important;
  background: url("../images/arrow-lt-big.png") no-repeat 50% 50%;
  background-size: cover;
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 1080px) {
  .swiper-button-prev:after {
    width: 50px;
    height: 50px;
  }
}

.swiper-button-next:after {
  content: "" !important;
  background: url("../images/arrow-gt-big.png") no-repeat 50% 50%;
  background-size: cover;
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 1080px) {
  .swiper-button-next:after {
    width: 50px;
    height: 50px;
  }
}

.swiper-button-prev2 {
  top: 56% !important;
  width: 50px !important;
  height: 50px !important;
}
.swiper-button-prev2:after {
  background: url("../images/arrow-lt-big-orange.png") no-repeat 50% 50%;
  background-size: cover;
  width: 50px;
  height: 50px;
}

.swiper-button-next2 {
  top: 56% !important;
  width: 50px !important;
  height: 50px !important;
}
.swiper-button-next2:after {
  content: "" !important;
  background: url("../images/arrow-gt-big-orange.png") no-repeat 50% 50%;
  background-size: cover;
  width: 50px;
  height: 50px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}

.related .swiper-horizontal > .swiper-pagination-bullets,
.related .swiper-pagination-bullets.swiper-pagination-horizontal,
.related .swiper-pagination-custom,
.related .swiper-pagination-fraction {
  bottom: -20px;
}

.related .related-unit .related-unit-image {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 17px;
}

.related .related-unit .related-unit-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.related .related-unit .related-unit-header {
  color: #1976BD;
  padding: 24px 10px;
  position: relative;
  width: 100%;
  font-size: 18px;
  text-align: center;
  color: #0066d0;
}

/* Footer */
.footer {
  padding: 20px 0 0 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 15px 0 0 0;
    text-align: center;
  }
}
.footer__left {
  width: calc(100% - 100px);
}
@media screen and (max-width: 767px) {
  .footer__left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 100%;
  }
}
.footer__left h2 {
  margin: 14px 0 44px 0;
  width: 403px;
}
@media screen and (max-width: 767px) {
  .footer__left h2 {
    margin: 14px 0 2px 0;
    width: 161px;
  }
}
.footer__left h2 img {
  width: 100%;
}
.footer .footer-link {
  display: flex;
  font-size: 18px;
  gap: 24px;
}
@media screen and (max-width: 1080px) {
  .footer .footer-link {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-link {
    gap: 10px;
    margin: 6px 0 13px 0;
    font-size: 11px;
  }
}
.footer .footer-link a {
  position: relative;
  top: 1px;
}
.footer__right {
  width: 100px;
  padding-top: 22px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__right {
    display: none;
  }
}
.footer__right--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__right--sp {
    display: block;
    width: 70px;
    padding-top: 0px;
  }
}
.footer__area2 {
  background-color: #0066d0;
  color: #fff;
  text-align: center;
  padding: 24.5px 0 24px 0;
}
@media screen and (max-width: 767px) {
  .footer__area2 {
    padding: 14.5px 0 140px 0;
  }
}
.footer__area2 small {
  font-size: 18px;
}