/* contents ---------------------*/
/* fade ---------------------*/
/* section_ttl ---------------------*/
/* absolute_slide_txt ---------------------*/
/* absolute_overlap_box ---------------------*/
/* txt_box ---------------------*/
/* radius ---------------------*/
/* reset ----------*/
#globalHeader,
#globalPageTitle,
#footLineup,
#pageTop {
  background-color: #fff;
}

main[data-footer-type] {
  padding-bottom: 0;
}

#footLineup {
  margin-top: 0;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  #footLineup {
    padding-top: 14rem;
  }
}

/* reset ----------*/
/* fade ----------*/
.hide {
  opacity: 0;
  transition: 1s;
  visibility: hidden;
}
.hide.go {
  opacity: 1;
  visibility: visible;
}

.fade {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
}
.fade.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
.fade-up {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateY(50px);
}
.fade-up.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-up {
    transform: translateY(100px);
  }
}
.fade-down {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateY(-50px);
}
.fade-down.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-down {
    transform: translateY(-100px);
  }
}
.fade-left {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateX(-50px);
}
.fade-left.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-left {
    transform: translateX(-100px);
  }
}
.fade-right {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateX(50px);
}
.fade-right.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-right {
    transform: translateX(100px);
  }
}
.fade-top--right {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateY(-20px) translateX(20px);
}
.fade-top--right.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-top--right {
    transform: translateY(-100px) translateX(100px);
  }
}
.fade-top--left {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateY(-20px) translateX(-20px);
}
.fade-top--left.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-top--left {
    transform: translateY(-100px) translateX(-100px);
  }
}
.fade-bottom--right {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateY(20px) translateX(20px);
}
.fade-bottom--right.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-bottom--right {
    transform: translateY(100px) translateX(100px);
  }
}
.fade-bottom--left {
  opacity: 0;
  transition: 1.2s;
  visibility: hidden;
  transform: translateY(20px) translateX(-20px);
}
.fade-bottom--left.go {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .fade-bottom--left {
    transform: translateY(100px) translateX(-100px);
  }
}

.time-15 {
  transition: 1.5s;
}
.time-20 {
  transition: 2s;
}
.time-25 {
  transition: 2.5s;
}
.time-30 {
  transition: 3s;
}
.time-35 {
  transition: 3.5s;
}
.time-40 {
  transition: 4s;
}

/* visual ----------*/
@media screen and (max-width: 768px) {
  .visual {
    position: relative;
  }
}

/* mv ----------*/
.mv {
  height: calc(115vh - 116px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 100vh;
  }
}
.mv_ttl {
  opacity: 0;
  position: absolute;
  top: calc(70vh - 116px);
  left: 50vw;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
  width: 55%;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .mv_ttl {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .mv_ttl {
    top: 50%;
    width: 65%;
  }
}
.mv_ttl.disappear {
  opacity: 1;
}
.mv_bg {
  height: 100%;
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .mv_bg {
    height: 600px;
  }
}
.mv_bg_inr {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
.mv_bg_inr video {
  display: block;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}
@media screen and (max-width: 768px) {
  .mv_bg_inr video {
    height: 100%;
  }
}

/* video_bg ----------*/
.video_bg {
  background-color: #fff;
  height: 100vh;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: -1;
}
.video_bg_inr {
  height: 100%;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.video_bg_inr video {
  filter: blur(1.3rem);
  height: auto;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
}
@media screen and (max-width: 768px) {
  .video_bg_inr img {
    filter: blur(1.5rem);
    height: 100%;
    opacity: 0.3;
  }
}

#content {
  position: relative;
}

/* section ----------*/
.section_ttl_01, .section_ttl_02, .section_ttl_03 {
  position: relative;
  text-align: center;
  width: 100%;
}
.section_ttl_01 img, .section_ttl_02 img, .section_ttl_03 img {
  margin: 0 auto;
  position: relative;
  width: 31.8%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .section_ttl_01 img, .section_ttl_02 img, .section_ttl_03 img {
    width: 60%;
  }
}
.section_ttl_02 img {
  width: 36.5%;
}
@media screen and (max-width: 768px) {
  .section_ttl_02 img {
    width: 75%;
  }
}
@media screen and (min-width: 769px) {
  .section_ttl_03 {
    margin-bottom: 5%;
  }
}
.section_ttl_03_cap {
  margin: -7% auto 0;
  width: 31%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section_ttl_03_cap {
    margin: -12% auto 0;
    padding-left: 23%;
    padding-right: 23%;
    width: 100%;
  }
}
.section_ttl_03_cap img {
  display: block;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .section_ttl_03_cap img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .section_ttl_03_cap {
    width: 400px;
  }
  .section_ttl_03_cap img {
    margin: 0 auto;
    width: 65%;
  }
}
.section_antr_01 {
  margin-top: -100vh;
  overflow: hidden;
  padding-top: 10%;
  padding-bottom: 20%;
  position: relative;
}
.section_antr_01::before {
  content: "";
  display: block;
  background-image: url(../img/section-parts.png);
  background-position: top left;
  background-repeat: repeat-x;
  background-size: contain;
  padding-top: 30%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section_antr_01::before {
    padding-top: 60%;
  }
}
@media screen and (max-width: 768px) {
  .section_antr_01 {
    padding-top: 15%;
    padding-bottom: 30%;
  }
}
.section_antr_02 {
  overflow: hidden;
  padding-bottom: 20%;
}
@media screen and (max-width: 768px) {
  .section_antr_02 {
    padding-bottom: 30%;
  }
}
.section_antr_03 {
  overflow: hidden;
  padding-bottom: 10%;
}
@media screen and (max-width: 768px) {
  .section_antr_03 {
    padding-bottom: 30%;
  }
}
.section_products {
  padding-top: 22%;
}
@media screen and (max-width: 768px) {
  .section_products {
    padding-top: 50%;
  }
}
.section_products_block {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .section_products_block {
    max-width: 100%;
    width: 90%;
  }
}
.section_products_inr {
  border-radius: 10px;
  background-color: #fff;
  padding: 7% 12%;
}
@media screen and (max-width: 768px) {
  .section_products_inr {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1000px) {
  .section_products_inr {
    padding: 7%;
  }
}
@media screen and (max-width: 768px) {
  .section_products_inr {
    padding: 13% 5%;
  }
}
.section_products_ttl {
  margin-bottom: 7%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section_products_ttl {
    margin-bottom: 13%;
  }
}
.section_products_ttl img {
  display: block;
  margin: 0 auto;
  width: 59.25%;
}
@media screen and (max-width: 768px) {
  .section_products_ttl img {
    width: 60%;
  }
}
.section_products_box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
  .section_products_box {
    margin-bottom: 10%;
  }
}
.section_products_box_txt {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt {
    width: 100%;
  }
}
.section_products_box_txt .method {
  font-size: 10px;
  width: 100%;
}
.section_products_box_txt .method_txt {
  background: linear-gradient(90deg, rgb(0, 146, 211) 40%, rgb(244, 166, 98) 55%, rgb(239, 130, 0) 75%);
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 6%;
  padding: 0.2rem;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt .method_txt {
    margin-bottom: 5%;
    width: 150px;
  }
}
.section_products_box_txt .method_txt span {
  background-color: #fff;
  border-radius: 100px;
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.6rem 0;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt .method_txt span {
    font-size: 140%;
  }
}
.section_products_box_txt h3 {
  font-size: 10px;
  width: 100%;
}
.section_products_box_txt h3 .name {
  display: block;
  font-size: 200%;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt h3 .name {
    font-size: 140%;
  }
}
.section_products_box_txt h3 b {
  font-size: 450%;
  display: block;
}
.section_products_box_txt h3 b small {
  font-size: 35%;
  font-weight: 400;
  display: inline-block;
  margin-left: 3%;
  margin-bottom: 2%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt h3 b {
    display: block;
    font-size: 300%;
  }
  .section_products_box_txt h3 b small {
    font-size: 45%;
  }
}
.section_products_box_txt h3 .potential {
  display: block;
  font-size: 160%;
  font-weight: 400;
  margin-top: 2%;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt h3 .potential {
    font-size: 130%;
  }
}
.section_products_box_txt_icon {
  margin-top: 10%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt_icon {
    margin-top: 7%;
  }
}
.section_products_box_txt_icon img {
  width: 59.62%;
}
@media screen and (max-width: 768px) {
  .section_products_box_txt_icon img {
    width: 70%;
  }
}
.section_products_box_txt_icon sup {
  line-height: 1;
  top: -38%;
}
.section_products_box_img {
  display: flex;
  padding-right: 7%;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .section_products_box_img {
    margin-top: 15%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    width: 60%;
  }
}
.section_products_btn {
  font-size: 10px;
}
.section_products_btn a {
  border-radius: 10px;
  background-color: #0068b7;
  color: #fff;
  display: block;
  font-size: 230%;
  font-weight: 500;
  line-height: 1;
  margin: 0 auto;
  padding: 1.7% 1% 2%;
  text-align: center;
  text-decoration: none;
  width: 42%;
}
@media screen and (max-width: 768px) {
  .section_products_btn a {
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .section_products_btn a {
    font-size: 200%;
    padding: 10px;
    width: 240px;
  }
}
.section_products_btn a:hover {
  opacity: 0.5;
}
.section_products_caption {
  margin-top: 2%;
}
.section_products_caption li {
  word-break: break-all;
}

/* inr ----------*/
.inr {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

/* slider ----------*/
.slider-box-dots {
  display: block;
  position: absolute;
  right: 0;
  bottom: -6.5%;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slider-box-dots {
    bottom: -9.5%;
    text-align: right;
  }
}
.slider-box-dots li {
  cursor: pointer;
  display: inline-block;
  height: 6px;
  margin: 0 10px;
  padding: 0;
  position: relative;
  width: 6px;
}
@media screen and (max-width: 768px) {
  .slider-box-dots li {
    height: 4px;
    margin: 0 0 0 8px;
    width: 4px;
  }
}
.slider-box-dots li button {
  background: transparent;
  border: 0;
  font-size: 0px;
}
.slider-box-dots li button:focus {
  border: none;
}
.slider-box-dots li button::before {
  content: "";
  display: block;
  background-color: #bfbfbf;
  border-radius: 999px;
  height: 6px;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
}
@media screen and (max-width: 768px) {
  .slider-box-dots li button::before {
    height: 4px;
    width: 4px;
  }
}
.slider-box-dots li.slick-active button::before {
  background-color: #707070;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .slider-box.dots-left .slider-box-dots {
    text-align: left;
  }
  .slider-box.dots-left .slider-box-dots li {
    margin: 0 8px 0 0;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/* absolute ----------*/
.absolute_readtxt_antr_inr {
  padding-top: 8%;
  padding-bottom: 8%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .absolute_readtxt_antr_inr {
    padding-top: 23%;
    padding-bottom: 23%;
    position: relative;
  }
}
.absolute_readtxt_antr_inr::before {
  content: "";
  display: block;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.absolute_readtxt_antr .txt01 {
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .absolute_readtxt_antr .txt01 {
    width: 80%;
  }
}
.absolute_block {
  position: relative;
}
.absolute_box {
  /* section_antr_01 ----------*/
  /* absolute_box_txt_01 ----------*/
  /* section_antr_02 ----------*/
  /* absolute_box_txt_02 ----------*/
  /* section_antr_03 ----------*/
  /* absolute_box_txt_03 ----------*/
}
.absolute_box_txt_inr {
  padding: 12%;
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
  }
}
.absolute_box_txt_inr_left h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.absolute_box_txt_inr_left p {
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_inr_left p {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_inr_left {
    margin-bottom: 20px;
    width: 100%;
  }
  .absolute_box_txt_inr_left h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
  .absolute_box_txt_inr_left p {
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_inr_right {
    width: 100%;
  }
}
.absolute_box_01 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  top: 0;
  right: 9%;
  z-index: 2;
  right: 27%;
}
@media screen and (max-width: 768px) {
  .absolute_box_01 {
    justify-content: center;
    right: 0;
  }
}
.absolute_box_01_txt {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .absolute_box_01_txt {
    margin-right: 5px;
  }
}
.absolute_box_01_txt:nth-of-type(1)::before, .absolute_box_01_txt:nth-of-type(2)::before {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  right: -10px;
  transition: height 2.5s ease;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .absolute_box_01_txt:nth-of-type(1)::before, .absolute_box_01_txt:nth-of-type(2)::before {
    right: -5px;
  }
}
.absolute_box_01_txt:nth-of-type(1).go::before, .absolute_box_01_txt:nth-of-type(2).go::before {
  height: 100%;
}
.absolute_box_01_txt:nth-of-type(1) {
  margin-top: 9.4%;
  margin-right: 4%;
  width: 2.6%;
}
@media screen and (max-width: 768px) {
  .absolute_box_01_txt:nth-of-type(1) {
    margin-top: 27.4%;
    margin-right: 7%;
    width: 6%;
  }
}
.absolute_box_01_txt:nth-of-type(2) {
  margin-top: 4%;
  width: 2.6%;
}
@media screen and (max-width: 768px) {
  .absolute_box_01_txt:nth-of-type(2) {
    margin-top: 11.5%;
    width: 6%;
  }
}
.absolute_box_01_txt:nth-of-type(3) {
  width: 2.8%;
}
@media screen and (max-width: 768px) {
  .absolute_box_01_txt:nth-of-type(3) {
    width: 5.3%;
  }
}
.absolute_box_01_txt::before {
  background-color: #ec9999;
}
.absolute_box_02 {
  position: absolute;
  top: 0;
  left: 5%;
  width: 45.8%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .absolute_box_02 {
    position: relative;
    top: 0;
    width: 86.7%;
  }
}
.absolute_box_02 img {
  border-radius: 10px;
  margin-top: 10%;
}
@media screen and (max-width: 768px) {
  .absolute_box_02 img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_02 img {
    margin-top: 0;
  }
}
.absolute_box_02-parts {
  height: 54.5%;
  mix-blend-mode: multiply;
  position: relative;
  width: 54.5%;
  z-index: -1;
}
.absolute_box_02-parts img {
  margin-top: 0;
  opacity: 0.5;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .absolute_box_02-parts {
    height: 46.2%;
    width: 46.2%;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_02 {
    margin-top: -8.5%;
    left: 6.7%;
  }
}
.absolute_box_02-parts {
  margin-top: -40.5%;
  margin-left: -22.5%;
}
@media screen and (max-width: 768px) {
  .absolute_box_02-parts {
    margin-top: -25.5%;
    margin-left: -17%;
  }
}
.absolute_box_03 {
  position: absolute;
  bottom: 35%;
  right: -3.2%;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .absolute_box_03 {
    bottom: 6.5%;
    right: 18.4%;
    width: 24%;
  }
}
.absolute_box_03 img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .absolute_box_03 img {
    border-radius: 5px;
  }
}
.absolute_box_04 {
  margin-right: 11.3%;
  margin-left: auto;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .absolute_box_04 {
    margin-top: 6%;
    margin-right: auto;
    margin-left: 26.8%;
    width: 24%;
  }
}
.absolute_box_04 img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .absolute_box_04 img {
    border-radius: 5px;
  }
}
.absolute_box_txt_01 {
  background-color: #fff;
  border: 2px solid transparent;
  box-shadow: 0px 3px 15px rgba(7, 0, 2, 0.3);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
  border-color: #f6e2e2;
  margin-top: 10%;
  max-width: 1000px;
  width: 82.8%;
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_01 {
    box-shadow: 0px 5px 10px rgba(7, 0, 2, 0.15);
    margin-top: 17%;
    width: 90%;
  }
}
.absolute_box_txt_01 .absolute_box_txt_inr {
  padding: 4% 7% 4% 3%;
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_01 .absolute_box_txt_inr {
    padding: 12%;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_01 .absolute_box_txt_inr_icon {
    margin: 0 auto;
    padding-bottom: 10%;
    width: 40%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_01 .absolute_box_txt_inr_icon {
    margin-left: 2%;
    width: 15.2%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_01 .absolute_box_txt_inr_left {
    width: 37%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_01 .absolute_box_txt_inr_right {
    width: 33%;
  }
}
.absolute_box_07 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  top: 0;
  right: 9%;
  z-index: 2;
  right: 21.2%;
}
@media screen and (max-width: 768px) {
  .absolute_box_07 {
    justify-content: center;
    right: 0;
  }
}
.absolute_box_07_txt {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .absolute_box_07_txt {
    margin-right: 5px;
  }
}
.absolute_box_07_txt:nth-of-type(1)::before, .absolute_box_07_txt:nth-of-type(2)::before {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  right: -10px;
  transition: height 2.5s ease;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .absolute_box_07_txt:nth-of-type(1)::before, .absolute_box_07_txt:nth-of-type(2)::before {
    right: -5px;
  }
}
.absolute_box_07_txt:nth-of-type(1).go::before, .absolute_box_07_txt:nth-of-type(2).go::before {
  height: 100%;
}
.absolute_box_07_txt:nth-of-type(1) {
  margin-top: 10.6%;
  margin-right: 3.7%;
  width: 2.6%;
}
@media screen and (max-width: 768px) {
  .absolute_box_07_txt:nth-of-type(1) {
    margin-top: 25%;
    margin-right: 6.7%;
    width: 6%;
  }
}
.absolute_box_07_txt:nth-of-type(2) {
  margin-top: 5.1%;
  width: 2.6%;
}
@media screen and (max-width: 768px) {
  .absolute_box_07_txt:nth-of-type(2) {
    margin-top: 13%;
    width: 6%;
  }
}
.absolute_box_07_txt:nth-of-type(3) {
  width: 2.8%;
}
@media screen and (max-width: 768px) {
  .absolute_box_07_txt:nth-of-type(3) {
    width: 5.3%;
  }
}
.absolute_box_07_txt::before {
  background-color: #a49ae1;
}
.absolute_box_08 {
  position: absolute;
  top: 0;
  left: 5%;
  width: 45.8%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .absolute_box_08 {
    position: relative;
    top: 0;
    width: 86.7%;
  }
}
.absolute_box_08 img {
  border-radius: 10px;
  margin-top: 10%;
}
@media screen and (max-width: 768px) {
  .absolute_box_08 img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_08 img {
    margin-top: 0;
  }
}
.absolute_box_08-parts {
  height: 54.5%;
  mix-blend-mode: multiply;
  position: relative;
  width: 54.5%;
  z-index: -1;
}
.absolute_box_08-parts img {
  margin-top: 0;
  opacity: 0.5;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .absolute_box_08-parts {
    height: 46.2%;
    width: 46.2%;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_08 {
    margin-top: -8%;
    left: 6.7%;
  }
}
.absolute_box_08-parts {
  margin-top: -41.5%;
  margin-left: 64.9%;
}
@media screen and (max-width: 768px) {
  .absolute_box_08-parts {
    margin-top: -20.9%;
    margin-right: -14.9%;
    margin-left: auto;
  }
}
.absolute_box_09 {
  position: absolute;
  right: -3%;
  bottom: 19.5%;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .absolute_box_09 {
    right: 46%;
    bottom: 7%;
    width: 24%;
  }
}
.absolute_box_09 img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .absolute_box_09 img {
    border-radius: 5px;
  }
}
.absolute_box_10 {
  margin-top: 1%;
  margin-right: 9.5%;
  margin-left: auto;
  position: relative;
  width: 15%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .absolute_box_10 {
    margin-top: 5%;
    margin-right: auto;
    margin-left: 12.7%;
    width: 24%;
  }
}
.absolute_box_10 img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .absolute_box_10 img {
    border-radius: 5px;
  }
}
.absolute_box_txt_02 {
  background-color: #fff;
  border: 2px solid transparent;
  box-shadow: 0px 3px 15px rgba(7, 0, 2, 0.3);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
  border-color: #edebf9;
  margin-top: 4.5%;
  max-width: 924px;
  width: 77%;
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_02 {
    box-shadow: 0px 5px 10px rgba(7, 0, 2, 0.15);
    margin-top: 17%;
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_02 .absolute_box_txt_inr_left {
    margin-left: 7%;
    width: 45%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_02 .absolute_box_txt_inr_right {
    width: 33%;
  }
}
.absolute_box_14 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  top: 0;
  right: 9%;
  z-index: 2;
  right: 27.3%;
}
@media screen and (max-width: 768px) {
  .absolute_box_14 {
    justify-content: center;
    right: 0;
  }
}
.absolute_box_14_txt {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .absolute_box_14_txt {
    margin-right: 5px;
  }
}
.absolute_box_14_txt:nth-of-type(1)::before, .absolute_box_14_txt:nth-of-type(2)::before {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  right: -10px;
  transition: height 2.5s ease;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .absolute_box_14_txt:nth-of-type(1)::before, .absolute_box_14_txt:nth-of-type(2)::before {
    right: -5px;
  }
}
.absolute_box_14_txt:nth-of-type(1).go::before, .absolute_box_14_txt:nth-of-type(2).go::before {
  height: 100%;
}
.absolute_box_14_txt:nth-of-type(1) {
  margin-top: 11.5%;
  margin-right: 3.7%;
  width: 2.6%;
}
@media screen and (max-width: 768px) {
  .absolute_box_14_txt:nth-of-type(1) {
    margin-top: 43%;
    margin-right: 7.5%;
    width: 6.5%;
  }
}
.absolute_box_14_txt:nth-of-type(2) {
  margin-top: 5.5%;
  width: 2.6%;
}
@media screen and (max-width: 768px) {
  .absolute_box_14_txt:nth-of-type(2) {
    margin-top: 27%;
    width: 6%;
  }
}
.absolute_box_14_txt::before {
  background-color: #5e9abb;
}
.absolute_box_15 {
  position: absolute;
  top: 0;
  left: 5%;
  width: 45.8%;
  z-index: 1;
  width: 45.8%;
}
@media screen and (max-width: 768px) {
  .absolute_box_15 {
    position: relative;
    top: 0;
    width: 86.7%;
  }
}
.absolute_box_15 img {
  border-radius: 10px;
  margin-top: 10%;
}
@media screen and (max-width: 768px) {
  .absolute_box_15 img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_15 img {
    margin-top: 0;
  }
}
.absolute_box_15-parts {
  height: 54.5%;
  mix-blend-mode: multiply;
  position: relative;
  width: 54.5%;
  z-index: -1;
}
.absolute_box_15-parts img {
  margin-top: 0;
  opacity: 0.5;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .absolute_box_15-parts {
    height: 46.2%;
    width: 46.2%;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_15 {
    margin-top: -7%;
    left: 6.7%;
  }
}
.absolute_box_15 img {
  margin-top: 2%;
}
@media screen and (max-width: 768px) {
  .absolute_box_15 p {
    font-size: 10px;
    position: absolute;
    bottom: -33px;
    left: 0;
  }
}
.absolute_box_16 {
  position: absolute;
  right: 4%;
  bottom: -44%;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .absolute_box_16 {
    margin-top: -15.6%;
    margin-left: -1%;
    position: relative;
    right: auto;
    bottom: auto;
    width: 40%;
  }
}
.absolute_box_16 img {
  border-radius: 10px;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .absolute_box_16 img {
    border-radius: 5px;
  }
}
.absolute_box_17 {
  position: absolute;
  right: 0;
  bottom: -6%;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .absolute_box_17 {
    right: 20.5%;
    width: 24%;
  }
}
.absolute_box_17 img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .absolute_box_17 img {
    border-radius: 5px;
  }
}
.absolute_box_txt_03 {
  background-color: #fff;
  border: 2px solid transparent;
  box-shadow: 0px 3px 15px rgba(7, 0, 2, 0.3);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
  border-color: #e2eff6;
  margin-top: 15%;
  max-width: 1000px;
  width: 82.8%;
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_03 {
    box-shadow: 0px 5px 10px rgba(7, 0, 2, 0.15);
    margin-top: 17%;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_03 {
    margin-top: 25%;
  }
}
@media screen and (max-width: 768px) {
  .absolute_box_txt_03 .absolute_box_txt_inr_icon {
    margin: 0 auto;
    padding-bottom: 10%;
    width: 30%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_03 .absolute_box_txt_inr_icon {
    width: 12%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_03 .absolute_box_txt_inr_left {
    width: 45%;
  }
}
@media screen and (min-width: 769px) {
  .absolute_box_txt_03 .absolute_box_txt_inr_right {
    width: 31.1%;
  }
}

/* other ----------*/
.pc_block {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_block {
    display: none;
  }
}

.sp_block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_block {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */