@charset "utf-8";
/* CSS Document */
.moa-arrow {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  color: #0f1ed2;
  animation-name: updown;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.moa-arrow::after {
  content: '';
  width: 40px;
  height: 40px;
  border-bottom: 5px solid #0f1ed2;
  border-right: 5px solid #0f1ed2;
  transform: rotate(45deg);
  margin-top: -1rem;
  margin-bottom: 5rem;
}
.moa-hd-i::before, .moa-hd-j::before, .moa-hd-s::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 2em;
  background-size: contain;
  vertical-align: middle;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  background-repeat: no-repeat;
}
.moa-hd-i::before {
  background-image: url(/printer/laser/4m300/images/ic_iryo.svg);
}
.moa-hd-j::before {
  background-image: url(/printer/laser/4m300/images/ic_jichitai.svg);
}
.moa-hd-s::before {
  background-image: url(/printer/laser/4m300/images/ic_service.svg);
}
.moa-col {
  border: 2px solid #a7afc1;
  padding: 1em 2em;
  border-radius: 15px;
  margin-bottom: 80px;
}

/* */
.scroll-down {
  position: relative;
  display: flex;
  height: 200px;
  justify-content: center;
  align-items: center;
}
.scroll-down .down-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  opacity: 0;
}
.scroll-down .down-arrow:first-child {
  animation: movedown 3s linear infinite;
}
.scroll-down .down-arrow:nth-child(2) {
  animation: movedown 3s .75s linear infinite;
}
.scroll-down .down-arrow:nth-child(3) {
  animation: movedown 3s 1.5s linear infinite;
}
.scroll-down .down-arrow:nth-child(4) {
  animation: movedown 3s 2.25s linear infinite;
}
.scroll-down .down-arrow:before, .scroll-down .down-arrow:after {
  position: absolute;
  content: '';
  top: 0;
  width: 30px;
  height: 3px;
  background: #0f1ed2;
}
.scroll-down .down-arrow:before {
  left: 3px;
  transform: rotate(30deg)
}
.scroll-down .down-arrow:after {
  right: 3px;
  transform: rotate(-30deg)
}
@keyframes movedown {
  0% {
    opacity: 0;
    top: 0%;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* */
	.con_moa_menu {
		display: flex;
		justify-content: center;
	}
	.con_moa_menu .menu {
		font-size:1.4em;
		font-weight:600;
		padding:0.5em 1.5em;
	}
.bg_med {
	background: linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)), url("/printer/laser/4m300/images/bg_med.webp") no-repeat;
}
.bg_gov {
	background: linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)), url("/printer/laser/4m300/images/bg_gov.webp") no-repeat;
}
.bg_ret {
	background: linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)), url("/printer/laser/4m300/images/bg_ret.webp") no-repeat;
}
.bg_med, .bg_gov, .bg_ret {
	text-shadow: 0px 0px 8px #FFF, 0px 0px 8px #FFF, 0px 0px 8px #FFF, 0px 0px 8px #FFF;
}

.fade-element {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.25, .8, .25, 1);
}
.fade-element.in-view {
  opacity: 1;
}
.fade-in-up {
  transform: translateY(32px);
  opacity: 0;
  transition: opacity .9s, transform .9s cubic-bezier(.25, .8, .25, 1);
}
.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  transform: translateX(-36px);
  opacity: 0;
  transition: opacity .9s, transform .9s;
}
.fade-in-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  transform: translateX(36px);
  opacity: 0;
  transition: opacity .9s, transform .9s;
}
.fade-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}
.bg-image {
  width: 100%;
  max-width: 500px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 0 auto;
}
.fade-row {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.fade-row-image img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  display: block;
}
.fade-row-text {
  flex: 1 1 0;
}
@media (max-width:700px) {
  .fade-row {
    flex-direction: column;
    gap: 10px;
  }
  .fade-row-image img {
    max-width: 100%;
  }
}
.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) translateX(-16px);
  transition: opacity .42s, transform .42s;
}
.split-text.in-view span {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.bg-video-multi {
  width: 100%;
  max-width: 600px;
  height: 220px;
  position: relative;
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.bg-video-multi video {
  flex: 1 1 0;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.video-row {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.video-col {
  position: relative;
}
.video-col video {
  width: 180px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  background: #20232a;
}
.play-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.18s;
}
.video-col:hover .play-btn {
  opacity: 1;
}
@media (max-width:600px) {
  .video-row {
    flex-direction: column;
    gap: 18px;
  }
  .video-col video {
    width: 100%;
  }
  .bg-video-multi {
    height: 140px;
  }
}
/* 一行ずつフェードイン（spanで区切り） */
.fade-group span {
  display: block;
  opacity: 0;
  transition: opacity .7s;
}
.fade-group.in-view span.visible {
  opacity: 1;
}
.fade-group-demo {
  /*
	border: 1px dashed #b9c; 
	background: #f8fafd;
	padding: 28px 12px; 
	border-radius: 15px; */
}

.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s, transform 0.9s cubic-bezier(.25, .8, .25, 1);
  will-change: opacity, transform;
}
.fade-item.in-view {
  opacity: 1;
  transform: none;
}

/* 下線 */
.highlight-underline {
  position: relative;
  display: inline-block;
}
.highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.22em;
  background: #14cdb4 ;
  width: 0;
  z-index: -1;
  border-radius: 4px;
  transition: width 1.3s cubic-bezier(.7, 0, .18, 1);
}
.in-view .highlight-underline::after {
  width: 100%;
}
.highlight-underline {
  font-weight: bold;
}
/* マーカー*/
.highlight-marker {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-shadow: none;
  /* */
  background: linear-gradient(90deg, #E4F864 80%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0% 70%; 
  background-position: 0 80%;
  transition: background-size 1.1s cubic-bezier(.77, 0, .18, 1);
}
.in-view .highlight-marker {
  background-size: 100% 70%; 
}