@charset "utf-8";
/* CSS Document */
.lp_contents.simple {
  border: 1px solid #ccc;
}
.mainvisual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  background: #f2f4f7;
}
.mainvisual .main_txt .main_title {
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.3em;
}
.mainvisual .main_txt .main_lead {
  font-weight: 500;
  font-size: 18px;
}
.content_title {
  margin: 0 30px;
  padding: 13px 18px;
  background: #9da1a9;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}
.image_comparison {
  margin: 40px auto 10px;
  width: 694px;
  text-align: center;
}
.image_comparison .comparison_txt {
  margin-bottom: 30px;
  text-align: left;
  font-size: 18px;
  line-height: 1.4em;
}
.image_comparison .image_comparison_main {
  text-align: left;
}
.image_comparison .visual_txt.icon_delta {
  background: #fcfc5d;
  display: inline-block;
  padding: 2px 6px 0;
}
.image_comparison .visual_txt.icon_delta::before {
  display: inline-block;
  margin-right: 7px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-top: 7px solid #333;
  border-bottom: none;
  content: "";
  vertical-align: 2px;
}
.image_comparison_main .drag_img {
  position: relative;
  overflow: hidden;
  margin: 0 auto 10px;
  max-width: 694px;
  user-select: none;
}
.image_comparison_main .drag_img .after_box {
  position: relative;
  z-index: 0;
}
.image_comparison_main .drag_img .before_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  overflow: hidden;
  width: 50%;
  height: 100%;
}
.image_comparison_main .drag_img.first .before_box {
  transition: width 0.8s cubic-bezier(0.37, 0.63, 0.21, 1.25) 1.5s;
}
.image_comparison_main .drag_img .img {
  margin: 0;
}
.image_comparison_main .drag_img .img .cap {
  position: absolute;
  top: 0;
  padding: 8px 23px;
  color: #fff;
  font-size: 14px;
}
.image_comparison_main .drag_img .after_box .img .cap {
  right: 0;
}
.image_comparison_main .drag_img .before_box .img .cap {
  left: 0;
}
.image_comparison_main .drag_img .img .cap::before {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 120%;
  height: 100%;
  content: "";
}
.image_comparison_main .drag_img .after_box .img .cap::before {
  left: 0;
  background: #005e15;
  transform: skew(30deg, 0deg);
}
.image_comparison_main .drag_img .before_box .img .cap::before {
  right: 0;
  background: #df5c15;
  transform: skew(-30deg, 0deg);
}
.image_comparison_main .drag_img .img .cap .txt {
  position: relative;
  z-index: 5;
}
.image_comparison_main .drag_img .before_box .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.image_comparison_main .drag_img .before_box .img img {
  max-width: none;
  width: auto;
  height: 100%;
}
.image_comparison_main .drag_img .separator {
  position: absolute;
  top: 0;
  left: -10%;
  left: 50%;
  z-index: 10;
  margin-left: -30px;
  width: 60px;
  height: 100%;
  cursor: grab;
}
.image_comparison_main .drag_img.first .separator {
  transition: left 0.8s cubic-bezier(0.37, 0.63, 0.21, 1.25) 1.5s;
}
.image_comparison_main .drag_img .separator::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  display: block;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
  content: "";
}
.image_comparison_main .drag_img .separator .circle_line {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 5;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 60px;
  background: #000;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}
.image_comparison_main .drag_img .separator .circle_area {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  margin: -23px 0 0 -23px;
  width: 46px;
  height: 46px;
  border-radius: 46px;
  background: #fff;
}
.image_comparison_main .drag_img .separator .circle_area::before,
.image_comparison_main .drag_img .separator .circle_area::after {
  position: absolute;
  top: 50%;
  display: block;
  margin-top: -4px;
  border: 4px solid rgba(0, 0, 0, 0);
  border-right: 7px solid #000;
  border-left: none;
  content: "";
  transition: left 0.3s ease 0s,
  right 0.3s ease 0s;
}
.image_comparison_main .drag_img .separator .circle_area::before {
  left: 12px;
  animation: fade_animation_left 0.8s ease-in-out infinite 1.8s;
}
@keyframes fade_animation_left {
  0% {
    left: 12px;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    left: 7px;
    opacity: 0;
  }
}
.image_comparison_main .drag_img .separator .circle_area::after {
  right: 12px;
  transform: scale(-1, 1);
  animation: fade_animation_right 0.8s ease-in-out infinite 1.8s;
}
@keyframes fade_animation_right {
  0% {
    right: 12px;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    right: 7px;
    opacity: 0;
  }
}
.image_comparison_main .drag_img .separator:hover .circle_area::before {
  left: 12px;
}
.image_comparison_main .drag_img .separator:hover .circle_area::after {
  right: 12px;
}

.btn_area {
  margin-bottom: 50px;
  text-align: center;
}