@charset "UTF-8";
.section_top {
  position: relative;
  color: #ddd;
}
@media screen and (max-width: 785px) {
  .section_top {
    margin-top: 86px;
  }
}
.section_top .mv_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/mv.jpg) center/cover no-repeat;
}
.section_top .wrapper {
  padding-top: 169px;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 785px) {
  .section_top .wrapper {
    padding-top: 25%;
  }
}
.section_top .wrapper h1 {
  font-size: clamp(2.2rem, 2.9vw, 3.5rem);
  font-family: "NotoSerifJP-Light";
}
@media screen and (max-width: 785px) {
  .section_top .wrapper h1 {
    font-size: 2.5rem;
  }
}
.section_top .wrapper .logo_area {
  position: absolute;
  left: 0;
  bottom: 27px;
  width: 22%;
  height: auto;
  min-width: 200px;
}
@media screen and (max-width: 785px) {
  .section_top .wrapper .logo_area {
    transform: translateY(-50%);
    width: 69%;
    max-width: 300px;
  }
}
.section_top .wrapper .video_area {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 19.5%;
  aspect-ratio: 16/9;
  min-width: 150px;
}
@media screen and (max-width: 785px) {
  .section_top .wrapper .video_area {
    display: none;
  }
}
.section_top .wrapper .video_area a {
  display: block;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.section_top .wrapper .video_area a:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}
.section_top .wrapper .video_area video {
  width: 100%;
  height: 100%;
}
.section_top .wave_area {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 785px) {
  .section_top .wave_area {
    top: calc(50% - 86px);
  }
}
.section_top .wave_area .wave {
  position: relative;
  height: 200px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
.section_top .wave_area .wave canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.section_top .fixed_btn {
  position: fixed;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  z-index: 2;
}
@media screen and (max-width: 785px) {
  .section_top .fixed_btn {
    top: calc(50% + 43px);
  }
}
.section_top .fixed_btn.right {
  left: unset;
  right: 11px;
}
.section_top .fixed_btn a {
  transition: all 0.3s;
  font-size: clamp(1rem, 1.16vw, 1.4rem);
  font-family: "Poppins-Thin";
}
.section_top .fixed_btn a:hover {
  color: #00C0FA;
}
.section_top .fixed_sns_wrapper {
  position: fixed;
  bottom: 45px;
  right: 13px;
  z-index: 99;
}
@media screen and (max-width: 785px) {
  .section_top .fixed_sns_wrapper {
    z-index: 999;
  }
}
.section_top .fixed_sns_wrapper .sns_link {
  width: 20px;
  margin-bottom: 20px;
}

.section_second {
  position: relative;
  background: url(../img/section_bg_cover.png);
  background-size: 100% 100%;
  background-position: bottom left;
  padding-top: 293px;
  padding-bottom: 120px;
}
@media screen and (max-width: 785px) {
  .section_second {
    padding-top: 56px;
  }
}
.section_second .back_text_item {
  font-family: "Poppins-Thin";
  font-size: 6.5vw;
  white-space: nowrap;
  color: #333333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  overflow: hidden;
  width: 100%;
}
.section_second .back_text_item ul {
  animation: flowing 25s linear infinite;
  font-size: 20px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.section_second .back_text_item ul li {
  display: inline-block;
  padding-right: 10px;
  font-size: 6.5vw;
}
@media screen and (max-width: 785px) {
  .section_second .back_text_item ul li {
    font-size: 10.5vw;
  }
}
.section_second .flex_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box {
    flex-direction: column;
  }
}
.section_second .flex_box .screen_one {
  width: 44%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one {
    width: 100%;
    margin-bottom: 80px;
  }
}
.section_second .flex_box .screen_one .image_item {
  width: 62%;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one .image_item {
    width: 60%;
  }
}
.section_second .flex_box .screen_one .logo_item {
  width: 35%;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one .logo_item {
    width: 36%;
  }
}
.section_second .flex_box .screen_one .logo_item p:first-child {
  padding-top: 25px;
  font-size: clamp(1rem, 1.16vw, 1.4rem);
  color: #fff;
  padding-bottom: 14px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one .logo_item p:first-child {
    padding-top: 80px;
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 1.1rem;
  }
}
.section_second .flex_box .screen_one .logo_item p:first-child::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #015EEA;
  bottom: 0;
  left: 0;
}
.section_second .flex_box .screen_one .logo_item p:last-child {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one .logo_item p:last-child {
    width: 70%;
    margin: 0 auto;
  }
}
.section_second .flex_box .screen_one .parts_item01 {
  margin-top: 100px;
  max-width: 210px;
  transform: translateX(-60%);
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one .parts_item01 {
    margin-top: 50px;
    max-width: 120px;
  }
}
@media screen and (max-width: 1200px) {
  .section_second .flex_box .screen_one .parts_item01 {
    transform: translateX(-50%);
    max-width: 120px;
  }
}
.section_second .flex_box .screen_one .parts_item02 {
  margin-top: 0;
  max-width: 180px;
  transform: translateX(-60%);
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_one .parts_item02 {
    max-width: 80px;
    margin-top: 20px;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1200px) {
  .section_second .flex_box .screen_one .parts_item02 {
    max-width: 120px;
  }
}
.section_second .flex_box .screen_eight {
  width: 44%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight {
    width: 100%;
  }
}
.section_second .flex_box .screen_eight .image_item {
  width: 62%;
  margin-top: 98px;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight .image_item {
    width: 60%;
    margin-top: 0;
    order: 2;
  }
}
.section_second .flex_box .screen_eight .logo_item {
  width: 35%;
  margin-top: 95px;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight .logo_item {
    width: 36%;
    margin-top: 0;
    order: 1;
  }
}
.section_second .flex_box .screen_eight .logo_item p:first-child {
  padding-top: 25px;
  font-size: clamp(1rem, 1.16vw, 1.4rem);
  color: #fff;
  padding-bottom: 14px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight .logo_item p:first-child {
    padding-top: 80px;
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 1.1rem;
  }
}
.section_second .flex_box .screen_eight .logo_item p:first-child::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #015EEA;
  bottom: 0;
  left: 0;
}
.section_second .flex_box .screen_eight .logo_item p:last-child {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight .logo_item p:last-child {
    width: 70%;
    margin: 0 auto;
  }
}
.section_second .flex_box .screen_eight .parts_item03 {
  margin-top: 98px;
  width: 50%;
  transform: translateX(60%);
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight .parts_item03 {
    max-width: 80px;
    margin-top: 20px;
    transform: translateX(0);
    order: 3;
  }
}
@media screen and (max-width: 1200px) {
  .section_second .flex_box .screen_eight .parts_item03 {
    transform: translateX(0);
  }
}
.section_second .flex_box .screen_eight .parts_item03 .image_area {
  max-width: 210px;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .section_second .flex_box .screen_eight .parts_item03 .image_area {
    max-width: 120px;
    transform: translateX(0);
  }
}
.section_second .flex_box .screen_eight .parts_item04 {
  display: inline-block;
  max-width: 180px;
  transform: translateX(60%);
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 785px) {
  .section_second .flex_box .screen_eight .parts_item04 {
    max-width: 80px;
    margin-top: 20px;
    transform: translateX(0);
    order: 4;
  }
}
@media screen and (max-width: 1200px) {
  .section_second .flex_box .screen_eight .parts_item04 {
    max-width: 120px;
  }
}

.section_product_catch {
  position: relative;
  background: #000;
}
.section_product_catch::after {
  content: "";
  position: absolute;
  background: url("../img/backgroud_blue_light.png") no-repeat;
  width: 100%;
  padding-top: 16%;
  background-size: 100%;
  background-position: top center;
  top: 27%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 785px) {
  .section_product_catch::after {
    top: 10%;
    width: 105%;
  }
}
.section_product_catch .product_catch_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  z-index: 2;
}
@media screen and (max-width: 785px) {
  .section_product_catch .product_catch_wrap {
    flex-direction: column;
    margin-bottom: 100px;
  }
}
.section_product_catch .product_catch_wrap .product_image {
  width: 67%;
}
@media screen and (max-width: 785px) {
  .section_product_catch .product_catch_wrap .product_image {
    width: 100%;
  }
}
.section_product_catch .product_catch_wrap .product_catch {
  width: 32%;
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.6rem);
  line-height: 2;
}
@media screen and (max-width: 785px) {
  .section_product_catch .product_catch_wrap .product_catch {
    width: 100%;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 40px;
  }
}
.section_product_catch .product_catch_wrap .product_catch p:first-child {
  margin-bottom: 9%;
}
@media screen and (max-width: 785px) {
  .section_product_catch .product_catch_wrap .product_catch p:first-child {
    margin-bottom: 4%;
  }
}
.section_product_catch .product_catch_wrap .product_catch .blue_back {
  position: relative;
  display: table;
  padding: 0 0 0 8px;
  margin-bottom: 8px;
}
.section_product_catch .product_catch_wrap .product_catch .blue_back::after {
  content: "";
  position: absolute;
  background: url("../img/blue_back.png") no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 12%;
  left: 0;
}
.section_product_catch .product_catch_wrap .product_catch .blue_back span {
  position: relative;
  z-index: 2;
  vertical-align: baseline;
}
.section_product_catch .product_catch_wrap .product_catch p:last-child {
  margin-top: 9%;
}
@media screen and (max-width: 785px) {
  .section_product_catch .product_catch_wrap .product_catch p:last-child {
    margin-top: 4%;
  }
}
.section_product_catch .keyword_line {
  position: relative;
}
.section_product_catch .keyword_line::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgb(1, 94, 234) 0%, rgb(34, 63, 160) 10%, rgb(0, 0, 0) 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  z-index: 1;
}
.section_product_catch .keyword_logo {
  display: flex;
}
.section_product_catch .keyword_logo p:first-child {
  width: 20%;
  max-width: 244px;
  position: relative;
  z-index: 3;
  transform: translateY(-53%);
}
@media screen and (max-width: 785px) {
  .section_product_catch .keyword_logo p:first-child {
    width: 40%;
  }
}
.section_product_catch .keyword_logo p:last-child {
  color: #fff;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  position: relative;
  z-index: 23;
  transform: translateY(12%);
}
@media screen and (max-width: 785px) {
  .section_product_catch .keyword_logo p:last-child {
    font-size: 1.6rem;
    width: 60%;
    padding-left: 5%;
    transform: translateY(15%);
  }
}
.section_product_catch .keywrod_wrap_colmun_3 {
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding-bottom: 90px;
  margin-top: -5%;
}
@media screen and (max-width: 785px) {
  .section_product_catch .keywrod_wrap_colmun_3 {
    padding-bottom: 160px;
  }
}
.section_product_catch .keywrod_wrap_colmun_3 li {
  width: 30%;
}
@media screen and (max-width: 785px) {
  .section_product_catch .keywrod_wrap_colmun_3 li {
    text-align: center;
  }
}
.section_product_catch .keywrod_wrap_colmun_3 li p:first-child {
  position: relative;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
.section_product_catch .keywrod_wrap_colmun_3 li p:first-child::after {
  content: "";
  position: absolute;
  background: url(../img/keyword_line.png) no-repeat;
  width: 90%;
  padding-top: 10%;
  top: 0;
  right: 5%;
  transform: translateY(-20%);
}
@media screen and (max-width: 785px) {
  .section_product_catch .keywrod_wrap_colmun_3 li p:first-child::after {
    display: none;
  }
}
.section_product_catch .keywrod_wrap_colmun_3 li p:nth-child(2) {
  font-size: clamp(6rem, 10vw, 10rem);
  font-family: "NotoSerifJP";
  text-align: center;
  margin: 8px 0 32px 0;
}
.section_product_catch .keywrod_wrap_colmun_3 li p:last-child {
  position: relative;
  font-size: clamp(1rem, 1.2vw, 1.6rem);
  text-align: center;
  padding-bottom: 32px;
}
@media screen and (max-width: 785px) {
  .section_product_catch .keywrod_wrap_colmun_3 li p:last-child {
    font-size: 1.6rem;
    writing-mode: vertical-rl;
    margin: auto;
    letter-spacing: 0.1em;
  }
}
.section_product_catch .keywrod_wrap_colmun_3 li p:last-child::after {
  content: "";
  position: absolute;
  background: url(../img/keyword_line.png) no-repeat;
  width: 100%;
  padding-top: 10%;
  bottom: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 785px) {
  .section_product_catch .keywrod_wrap_colmun_3 li p:last-child::after {
    transform: rotate(90deg);
    padding-top: 43%;
    bottom: -28%;
    right: 0;
    left: 0;
    padding-left: 37%;
  }
}

.section_concept {
  position: relative;
  background: #000;
  padding-top: 120px;
  padding-bottom: 170px;
}
@media screen and (max-width: 785px) {
  .section_concept {
    padding-top: 60px;
  }
}
.section_concept h2 {
  width: 36%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 785px) {
  .section_concept h2 {
    width: 80%;
  }
}
.section_concept h2 img {
  max-width: 100%;
}
.section_concept .screen-1_wrap {
  border: solid 1px #015EEA;
  border-radius: 20px;
  box-shadow: 0 10px 25px 0 rgba(1, 94, 234, 0.5);
  padding: 58px 0 58px 58px;
  margin-bottom: 106px;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-1_wrap {
    padding: 60px;
  }
}
@media screen and (max-width: 785px) {
  .section_concept .screen-1_wrap {
    padding: 20px;
  }
}
.section_concept .screen-1_wrap .screen-1_flex {
  display: flex;
  justify-content: space-between;
  margin: auto;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-1_wrap .screen-1_flex {
    flex-direction: column-reverse;
  }
}
.section_concept .screen-1_wrap .screen-1_flex .screen_text_item {
  width: 79%;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-1_wrap .screen-1_flex .screen_text_item {
    width: 80%;
    margin: -80px auto 0;
  }
}
@media screen and (max-width: 785px) {
  .section_concept .screen-1_wrap .screen-1_flex .screen_text_item {
    width: 100%;
    margin: 0 auto;
  }
}
.section_concept .screen-1_wrap .screen-1_flex .screen_text_item h3 {
  display: inline-block;
  background: #015EEA;
  padding: 0 3px;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (max-width: 785px) {
  .section_concept .screen-1_wrap .screen-1_flex .screen_text_item h3 {
    font-size: 1.4rem;
  }
}
.section_concept .screen-1_wrap .screen-1_flex .screen_text_item .concept_siko_logo {
  padding-bottom: 28px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
.section_concept .screen-1_wrap .screen-1_flex .screen_text_item .concept_siko_logo img {
  max-width: 181px;
}
@media screen and (max-width: 785px) {
  .section_concept .screen-1_wrap .screen-1_flex .screen_text_item .concept_siko_logo img {
    max-width: 161px;
  }
}
.section_concept .screen-1_wrap .screen-1_flex .screen_text_item .concept_siko_logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #015EEA;
  bottom: 0;
  left: 0;
}
.section_concept .screen-1_wrap .screen-1_flex .screen_text_item p:last-child {
  color: #ccc;
  line-height: 2;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.section_concept .screen-1_wrap .screen-1_flex .screen_image_itme {
  text-align: right;
}
.section_concept .screen-8_wrap {
  border: solid 1px #015EEA;
  border-radius: 20px;
  box-shadow: 0 10px 25px 0 rgba(1, 94, 234, 0.5);
  padding: 58px 58px 58px 0;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-8_wrap {
    padding: 60px;
  }
}
@media screen and (max-width: 785px) {
  .section_concept .screen-8_wrap {
    padding: 20px;
  }
}
.section_concept .screen-8_wrap .screen-8_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: 1000px;
  margin: auto;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-8_wrap .screen-8_flex {
    flex-direction: column-reverse;
  }
}
.section_concept .screen-8_wrap .screen-8_flex .screen_text_item {
  width: 79%;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-8_wrap .screen-8_flex .screen_text_item {
    width: 80%;
    margin: -80px auto 0;
  }
}
@media screen and (max-width: 785px) {
  .section_concept .screen-8_wrap .screen-8_flex .screen_text_item {
    width: 100%;
    margin: 0 auto;
  }
}
.section_concept .screen-8_wrap .screen-8_flex .screen_text_item h3 {
  display: inline-block;
  background: #015EEA;
  padding: 0 3px;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (max-width: 785px) {
  .section_concept .screen-8_wrap .screen-8_flex .screen_text_item h3 {
    font-size: 1.4rem;
  }
}
.section_concept .screen-8_wrap .screen-8_flex .screen_text_item .concept_kodo_logo {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section_concept .screen-8_wrap .screen-8_flex .screen_text_item .concept_kodo_logo {
    text-align: left;
  }
}
.section_concept .screen-8_wrap .screen-8_flex .screen_text_item .concept_kodo_logo img {
  max-width: 181px;
}
@media screen and (max-width: 785px) {
  .section_concept .screen-8_wrap .screen-8_flex .screen_text_item .concept_kodo_logo img {
    max-width: 161px;
  }
}
.section_concept .screen-8_wrap .screen-8_flex .screen_text_item .concept_kodo_logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #015EEA;
  bottom: 0;
  left: 0;
}
.section_concept .screen-8_wrap .screen-8_flex .screen_text_item p:last-child {
  color: #ccc;
  line-height: 2;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.section_concept .screen-8_wrap .screen-8_flex .screen_image_itme {
  text-align: left;
}
.section_concept .back_circle_left {
  position: absolute;
  background: url("../img/back_bg_circle_l.svg") no-repeat;
  width: 30%;
  padding-top: 30%;
  background-size: contain;
  top: 30vh;
  left: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 785px) {
  .section_concept .back_circle_left {
    width: 50%;
    padding-top: 50%;
    top: 64vh;
  }
}
.section_concept .back_circle_right {
  position: absolute;
  background: url("../img/back_bg_circle_r.svg") no-repeat;
  width: 30%;
  padding-top: 30%;
  background-size: contain;
  bottom: 10%;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 785px) {
  .section_concept .back_circle_right {
    width: 50%;
    padding-top: 50%;
    bottom: 20%;
  }
}

.fontsmall {
  font-size: clamp(1rem, 1.16vw, 1.4rem);
}

.fontsmall:after {
  display: none;
}

.section_technical_features {
  background: #000;
  position: relative;
}
.section_technical_features::after {
  content: "";
  position: absolute;
  background: #000;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 12%;
}
.section_technical_features h2 {
  width: 50%;
  max-width: 502px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 785px) {
  .section_technical_features h2 {
    width: 80%;
  }
}
.section_technical_features .technical_features_wrap {
  background: url("../img/technical_features_siko_image01.png") no-repeat;
  background-size: contain;
  width: 54%;
  max-width: 640px;
  margin: auto;
  transform: translate(0, -10%);
}
@media screen and (max-width: 785px) {
  .section_technical_features .technical_features_wrap {
    width: 100%;
    transform: none;
  }
}
.section_technical_features .technical_features_wrap .features_logo {
  width: 35%;
  max-width: 222px;
  padding-top: 53%;
  margin-bottom: 100px;
}
@media screen and (max-width: 785px) {
  .section_technical_features .technical_features_wrap .features_logo {
    width: 60%;
    margin-bottom: 50px;
  }
}
.section_technical_features .technical_features_wrap .features_logo h3 {
  color: #fff;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: normal;
}
.section_technical_features .technical_features_wrap .features_logo h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #015EEA;
  bottom: 0;
  left: 0;
}
.section_technical_features .technical_features_wrap .features_logo p {
  max-width: 158px;
}
.section_technical_features .features_item h4 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: bold;
  color: #fff;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 785px) {
  .section_technical_features .features_item h4 {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    margin-bottom: 24px;
    line-height: 1.6;
  }
}
.section_technical_features .features_item h4 .border {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.section_technical_features .features_item h4 .border::after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("../img/blue_back_02.png") no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  top: 3%;
  left: 0;
  z-index: -1;
}
.section_technical_features .features_item .features_text {
  color: #ccc;
  line-height: 1.6;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
@media screen and (max-width: 785px) {
  .section_technical_features .features_item .features_text {
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
}
.section_technical_features .features_item .features_text p {
  margin-bottom: 24px;
}
.section_technical_features .section_left_image {
  position: absolute;
  background: url("../img/technical_features_left.png") no-repeat;
  background-size: contain;
  width: 240px;
  height: 360px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 785px) {
  .section_technical_features .section_left_image {
    width: 120px;
    height: 180px;
    opacity: 0.3;
  }
}
.section_technical_features .section_right_image {
  position: absolute;
  background: url("../img/technical_features_right.png") no-repeat;
  background-size: contain;
  width: 240px;
  height: 360px;
  top: 50%;
  right: 0;
}
@media screen and (max-width: 785px) {
  .section_technical_features .section_right_image {
    width: 120px;
    height: 180px;
    opacity: 0.3;
    top: 40%;
  }
}

.section_unit {
  background: #000;
}
.section_unit .unit_wrap {
  background: #111111;
  border-radius: 20px;
  width: 95%;
  margin: auto;
  padding: 60px 0;
}
@media screen and (max-width: 785px) {
  .section_unit .unit_wrap {
    padding: 30px 0;
  }
}
.section_unit .unit_wrap .unit_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 785px) {
  .section_unit .unit_wrap .unit_flex {
    flex-direction: column;
  }
}
.section_unit .unit_wrap .unit_flex .unit_image {
  width: 40%;
  padding-top: 5%;
}
@media screen and (max-width: 785px) {
  .section_unit .unit_wrap .unit_flex .unit_image {
    width: 60%;
    margin: 0 auto 64px;
  }
}
.section_unit .unit_wrap .unit_flex .unit_image img {
  max-width: 260px;
}
.section_unit .unit_wrap .unit_flex .unit_item {
  width: 60%;
}
@media screen and (max-width: 785px) {
  .section_unit .unit_wrap .unit_flex .unit_item {
    width: 100%;
  }
}
.section_unit .unit_wrap .unit_flex .unit_item .inner_unit_item {
  border-bottom: solid 1px #707070;
  margin-bottom: 16px;
}
.section_unit .unit_wrap .unit_flex .unit_item .inner_unit_item:first-of-type {
  border-top: solid 1px #707070;
  padding-top: 16px;
}
.section_unit .unit_wrap .unit_flex .unit_item h3 {
  color: #fff;
  font-size: clamp(1.6rem, 1.5vw, 1.9rem);
  margin-bottom: 8px;
}
.section_unit .unit_wrap .unit_flex .unit_item p:first-of-type {
  color: #AE9F67;
  font-size: clamp(1rem, 1.2vw, 1.6rem);
  margin-bottom: 16px;
}
.section_unit .unit_wrap .unit_flex .unit_item p:last-child {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  color: #fff;
  padding-bottom: 16px;
  width: 87%;
  line-height: 1.6;
}
@media screen and (max-width: 785px) {
  .section_unit .unit_wrap .unit_flex .unit_item p:last-child {
    width: 100%;
    line-height: 1.6;
  }
}

.screen_8 {
  padding-bottom: 140px;
  padding-top: 140px;
}
@media screen and (max-width: 785px) {
  .screen_8 {
    padding: 70px 0;
  }
}
.screen_8 .section_left_image {
  position: absolute;
  background: url("../img/screen_8_left.png") no-repeat;
  background-size: contain;
  width: 240px;
  height: 360px;
  bottom: 10%;
  left: 0;
}
@media screen and (max-width: 785px) {
  .screen_8 .section_left_image {
    width: 120px;
    height: 180px;
    opacity: 0.3;
  }
}
.screen_8 .features_logo {
  margin-right: 0;
  margin-left: auto;
}
.screen_8 .section_right_image {
  position: absolute;
  background: url("../img/screen_8_right.png") no-repeat;
  background-size: contain;
  width: 240px;
  height: 360px;
  top: 50%;
  right: 0;
}
@media screen and (max-width: 785px) {
  .screen_8 .section_right_image {
    width: 120px;
    height: 180px;
    opacity: 0.3;
  }
}
.screen_8 .technical_features_wrap {
  background: url("../img/technical_features_siko_image02.png") no-repeat;
  background-size: contain;
  width: 54%;
  max-width: 640px;
  margin: auto;
  transform: none;
}
@media screen and (max-width: 785px) {
  .screen_8 .technical_features_wrap {
    width: 100%;
    transform: none;
  }
}

.amplifier {
  position: relative;
  background: #000;
  padding: 110px 0 110px 0;
}
@media screen and (max-width: 785px) {
  .amplifier {
    padding: 50px 0;
  }
}
.amplifier h2 {
  max-width: 423px;
  width: 35%;
  margin: auto;
}
@media screen and (max-width: 785px) {
  .amplifier h2 {
    width: 80%;
  }
}
.amplifier .amplifier_wrap {
  width: 95%;
  border: solid 1px #015EEA;
  border-radius: 20px;
  box-shadow: 0 10px 25px 0 rgba(1, 94, 234, 0.5);
  padding: 28px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 785px) {
  .amplifier .amplifier_wrap {
    padding: 14px;
  }
}
.amplifier .amplifier_wrap .amplifier_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 24px 0 24px 0;
}
@media screen and (max-width: 785px) {
  .amplifier .amplifier_wrap .amplifier_flex {
    flex-direction: column;
  }
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_image {
  width: 47%;
}
@media screen and (max-width: 785px) {
  .amplifier .amplifier_wrap .amplifier_flex .amplifier_image {
    width: 100%;
    margin-bottom: 24px;
  }
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item {
  width: 47%;
}
@media screen and (max-width: 785px) {
  .amplifier .amplifier_wrap .amplifier_flex .amplifier_item {
    width: 100%;
  }
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item h3 {
  margin-bottom: 8px;
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item p {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item p:first-of-type {
  margin-bottom: 8px;
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item p:nth-of-type(2) {
  margin-bottom: 8px;
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item p:nth-of-type(3) {
  margin-bottom: 16px;
}
.amplifier .amplifier_wrap .amplifier_flex .amplifier_item p:last-of-type {
  line-height: 1.6;
}
.amplifier .photographer {
  font-size: clamp(1rem, 1.16vw, 1.4rem);
  color: #fff;
  width: 95%;
  text-align: right;
  margin: auto;
}

.section_movie {
  background: #111111;
  padding: 140px 0 140px 0;
}
@media screen and (max-width: 785px) {
  .section_movie {
    padding: 70px 0 140px 0;
  }
}
.section_movie .movie_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 785px) {
  .section_movie .movie_flex {
    flex-direction: column;
  }
}
.section_movie .movie_flex .movie_left {
  width: 47%;
}
@media screen and (max-width: 785px) {
  .section_movie .movie_flex .movie_left {
    width: 100%;
    margin-bottom: 40px;
  }
}
.section_movie .movie_flex .movie_left .movie_item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.section_movie .movie_flex .movie_left .movie_item .youtube {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.section_movie .movie_flex .movie_right {
  width: 47%;
}
@media screen and (max-width: 785px) {
  .section_movie .movie_flex .movie_right {
    width: 100%;
  }
}
.section_movie .movie_flex .movie_right .movie_item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.section_movie .movie_flex .movie_right .movie_item .youtube {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#splash02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  text-align: center;
  z-index: 9999;
}
#splash02 #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
}
@media screen and (max-width: 785px) {
  #splash02 #splash_logo {
    width: 40%;
  }
}
#splash02 #splash_logo img {
  max-width: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=page.css.map */