@charset "UTF-8";
/* ===============================================
# navigation
=============================================== */
/* ------------------------------------------- initialize */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video 
{ 
    margin: 0; 
    padding: 0; 
    border: 0; 
    outline: 0; 
    font-size: 100%; 
    vertical-align: baseline; 
    background: transparent; 
}

body {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
     display: block; 
    }

ul li { 
    list-style: none; }

input, select { 
    vertical-align: middle; 
}

img { 
    height: auto; 
    width: 100%; 
}

* { 
    box-sizing: border-box; 
}

a { 
    color: #000000; 
    text-decoration: none; 
}

a:hover { 
    opacity: .8; 
}

body { 
    font-size: 16px; 
    line-height: 1.6em; 
    color: #fff; 
    font-family: 'Poppins', 'Noto Sans JP', sans-serif; 
    position: relative; background: #fff; 
}

body:before { 
    content: "";
    background: #ffffff; 
    background-size: cover; 
    width: 100vw; 
    height: 100vh; 
    top: 0; 
    left: 0; 
    position: fixed; 
    z-index: -1; 
}

body .body-inner { 
    overflow-x: hidden; 
}

@media screen and (max-width: 768px) { 
    body { 
        font-size: 14px; 
    }
    .section-wrap:not(:last-of-type) { 
        margin-bottom: 120px; 
    } 
}

.header { 
    position: relative; 
    background: transparent; 
}

@media screen and (max-width: 768px) {
     .header { 
        background: none; 
    } 
}

.header__inner {
     display: flex; 
     justify-content: space-between; 
     align-items: center; 
     width: 100%; 
     padding: 0 20px; 
    }

@media screen and (max-width: 768px) {
     .header__inner {
        pointer-events: none; 
    } 
}

.header__title {
     font-size: 20px; 
}

@media screen and (max-width: 768px) {
    .header__title {
        position: absolute; 
        top: 20px; 
        left: 20px; 
    } 
}

.nav {
    margin-left: auto; 
    pointer-events: all; 
}

.nav__trigger { 
    transition: .2s all; 
    display: block; 
    position: absolute; 
    width: 35px; 
    top: 12px; 
    right: 12px; 
    cursor: pointer; 
    z-index: -1; 
}

.nav__trigger:before { 
    position: absolute; 
    content: ""; 
    background: #020514; 
    border: 4px solid #d8f002; 
    width: 90px; 
    height: 90px; 
    transform: translate(-22px, -34px); 
    border-radius: 50%; 
    box-sizing: border-box; 
}

.nav__trigger span { 
    display: inline-block; 
    vertical-align: middle; 
    position: relative; 
    width: 100%; 
    height: 2px; 
    background-color: #fff; 
}

.nav__trigger span::before { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: -8px; 
}

.nav__trigger span::after { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: 8px; 
    width: 60%; 
    right: 0; 
}

.nav__lists { 
    display: block; 
    width: 100%; 
}

.nav__list { 
    text-align: center; 
}

.nav__list a { 
    position: relative; 
}

.nav__bg { 
    display: block; 
    opacity: 0; 
}

.nav__active .nav { 
    transform: translateY(0%); 
}

.nav__active .nav__trigger span { 
    background: none; 
}

.nav__active .nav__trigger span::before { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: 0; 
    transform: rotate(45deg); 
}

.nav__active .nav__trigger span::after { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: 0; 
    transform: rotate(-45deg); 
}

.nav__active .nav__bg { 
    width: 100%; 
    height: 100vh; 
    background: #020514; 
    opacity: .3; 
    position: absolute; 
    top: 0; 
    z-index: -1; 
}

.menu-nav { 
    position: relative; 
    width: 340px; 
    height: 435px; 
    display: flex; 
    align-items: center; 
}

.menu-nav:before { 
    position: absolute; 
    content: ""; 
    background: url(../img/bg_menu.svg) center no-repeat; 
    background-size: contain; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}
@media (max-width: 768px) {
    .menu-nav:before { 
        background: url(../img/bg_menu.svg) center no-repeat; 
    }
}

.menu-nav ul { 
    padding-left: 80px; 
}

.menu-nav ul li:not(:last-of-type) { 
    margin-bottom: 20px; 
}

.menu-nav ul li a { 
    color: #d8f002; 
    text-decoration: none; 
    transition: 0.2s all ease; 
    display: block; 
    font-size: 30px; 
    font-weight: bold; 
    line-height: 1em; 
    position: relative; 
}

.menu-nav ul li a:before { 
    position: absolute; 
    content: ""; 
    background: #d8f002; 
    width: 7px; 
    height: 1px; 
    top: 50%; 
    transform: translateY(-50%); 
    left: -18px; 
}

.menu-nav ul li a:hover { 
    transform: translateX(6px); 
    transition: 0.2s all ease; 
}

.fix-wrap { 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    z-index: 3; 
    pointer-events: none; 
}

.fix-wrap .bg-wrap { 
    pointer-events: none; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.fix-wrap .bg-wrap .bg-frame { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    box-sizing: border-box; 
}

.fix-wrap .bg-wrap .bg-frame:before { 
    content: ""; 
    width: 100%; 
    height: 100vh; 
    position: absolute; 
    top: 0; 
    left: 0; 
    border: 10px solid #d8f002; 
    box-sizing: border-box; 
}

.fix-wrap .bg-wrap .bg-frame .frame { 
    position: absolute; 
    display: block; 
}

.fix-wrap .bg-wrap .bg-frame .frame.tl { 
    top: -23px; 
    left: -23px; 
}

.fix-wrap .bg-wrap .bg-frame .frame.tl:after { 
    transform: translate(12px, 12px); 
}

.fix-wrap .bg-wrap .bg-frame .frame.bl { 
    bottom: 60px; 
    left: -16px; 
}

.fix-wrap .bg-wrap .bg-frame .frame.bl:after { 
    transform: translate(10px, -3px);
}

.fix-wrap .bg-wrap .bg-frame .frame.br { 
    bottom: 66px; 
    right: 68px; 
}

.fix-wrap .bg-wrap .bg-frame .frame.br:after { 
    transform: translate(); 
}

.fix-wrap .nav__trigger { 
    z-index: 100; 
    pointer-events: all; 
}

.fix-wrap .menu-wrap { 
    position: absolute; 
    right: -100%; 
    transition: .2s all; 
    pointer-events: all; 
}

.fix-wrap.nav__active .menu-wrap { 
    right: -20px; 
}

.mv {
    position: relative;
}

.mv .imgbox .img {
    width: auto;
    height: 100vh;
    text-align: right;
    position: relative;
}

.mv .imgbox .img img {
    width: auto;
    height: 100%;
}

.mv .imgbox .img .box.active {
    animation: img_box 1s ease 0s forwards;
}

@keyframes img_box{
    0% {
        width: 100%;
    }
    60% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

.mv .imgbox .img .box {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}

.pc_none {
    display: none;
}

.mv .imgbox .scroll {
    position: absolute;
    bottom: 0;
    right: 44px;
}

@media screen and (max-width: 812px) {
    .pc_none {
        display: block;
    }
    .sp_none{
        display: none;
    }
        .mv .imgbox .img img {
            width: 100%;
            height: auto;
        }
}

.mv .txtbox .ttl {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
}

.mv .txtbox .ttl .ttl_svganime.box01 {
    width: 59.6vw;
}

.ttl_svganime {
    position: relative;
}

.mv .txtbox .ttl .ttl_svganime .line {
    height: 2.08vw;
    bottom: 1.7vw;
}

.ttl_svganime.active .line {
    -webkit-animation: svgline .3s ease-in;
    animation: svgline .3s ease-in;
    width: 100%;
}

@keyframes svgline{
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.ttl_svganime .line {
    content: '';
    width: 0;
    background: linear-gradient(265deg, #ee7800 0%, #ff9921 45%, #ffbc2d 100%);
    position: absolute;
    left: 0;
}

.mv .txtbox .ttl .ttl_svganime svg {
    height: 10.7vw;
}

.ttl_svganime svg {
    width: 100%;
    display: block;
    position: relative;
    height: 20em;
}

.mv .txtbox .ttl .ttl_svganime text {
    font-size: 7.8vw;
}

.ttl_svganime.inview text {
    stroke-dashoffset: 600;
    -webkit-animation: svganime 1s linear;
    animation: svganime 1s linear;
    fill: #111;
    opacity: 1;
}

@keyframes svganime{
    0% {
        stroke-dashoffset: 600;
        fill: transparent;
    }
    50% {
        fill: transparent;
    }
    100% {
        stroke-dashoffset: 0;
        fill: #111;
        opacity: 1;
    }
}

.ttl_svganime text {
    font-weight: bold;
    font-style: italic;
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 600;
    letter-spacing: 0.52vw;
    opacity: 0;
    -webkit-transform: translate(0, 1.15em);
    transform: translate(0, 1.15em);
}

.mv .txtbox .ttl .ttl_svganime.box02 {
    width: 29vw;
}

.ttl_svganime {
    position: relative;
}

.mv .txtbox .ttl .ttl_svganime svg {
    height: 10.7vw;
}

.ttl_svganime svg {
    width: 100%;
    display: block;
    position: relative;
    height: 20em;
}

.mv .txtbox .ttl .caption {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: .5em;
    margin-top: 3vw;
    color: #161614;
}

.caption.active .no1 {
    opacity: 0;
    position: relative;
    animation: anim_caption .1s ease forwards;
}

@keyframes anim_caption {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 812px) {
    .mv .txtbox .ttl .caption {
        font-size: 2.6vw;
        line-height: 2;
        margin-top: 9.3vw;
    }
}

@media screen and (max-width: 812px) {
    .pc_none {
        display: block;
    }
}

.mv .square {
    position: absolute;
    bottom: 3vw;
    right: 156.5vh;
    width: 13.5vw;
    height: 1.5vw;
}

.mv .square img.rect04.active {
    animation: anim_square 1.2s ease-in-out 0s forwards;
    animation-delay: .1s;
}

.mv .square img.rect03.active {
    animation: anim_square 1.2s ease-in-out 0s forwards;
    animation-delay: .2s;
}

.mv .square img.rect02.active {
    animation: anim_square 1.2s ease-in-out 0s forwards;
    animation-delay: .3s;
}

.mv .square img.rect01.active {
    animation: anim_square 1.2s ease-in-out 0s forwards;
    animation-delay: .4s;
}

@keyframes anim_square{
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0);
    }
    100% {
        opacity: 1;
        transform: translate(64vh, 0) rotate(360deg);
    }
}

.mv .square img {
    width: 1.5vw;
    position: absolute;
    opacity: 0;
    right: 0;
}

.mv .square img.rect03 {
    margin-right: 2.5vw;
}

.mv .square img.rect02 {
    margin-right: 5vw;
}

.mv .square img.rect01 {
    margin-right: 7.5vw;
}

@media screen and (max-width: 1280px) {
    .mv .square {
        right: 82.5vw;
    }
}

@media screen and (max-width: 812px) {
    .mv .square {
        width: 27vw;
        height: 3vw;
        bottom: 9.6vw;
        right: 155vw;
    }
}

@media screen and (max-width: 480px) {
    .mv .square {
        width: 27vw;
        height: 3vw;
        bottom: 9.6vw;
        right: 142vw;
    }
}


@media screen and (max-width: 812px) {
    .mv .square img {
        width: 3vw;
    }
    .mv .square img.rect03 {
        margin-right: 5vw;
    }
    .mv .square img.rect02 {
        margin-right: 10vw;
    }
    .mv .square img.rect01 {
        margin-right: 15vw;
    }
}

.wrap {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}

.service .index_ttl {
    width: 20vw;
}

.index_ttl .ttl_svganime {
    height: 5.9vw;
}

.ttl_svganime {
    position: relative;
}

.index_ttl .ttl_svganime .line {
    height: 1.4vw;
    bottom: .95vw;
}

.ttl_svganime svg {
    width: 100%;
    display: block;
    position: relative;
    height: 20em;
}

.ttl_svganime.inview text {
    stroke-dashoffset: 600;
    -webkit-animation: svganime 1s linear;
    animation: svganime 1s linear;
    fill: #111;
    opacity: 1;
}

.index_ttl text {
    font-size: 4.2vw;
}

.ttl_svganime text {
    font-weight: bold;
    font-style: italic;
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 600;
    letter-spacing: 0.52vw;
    opacity: 0;
    -webkit-transform: translate(0, 1.15em);
    transform: translate(0, 1.15em);
}

.service {
    position: relative;
    padding: 40px 0px 120px;
    background: url('../img/1.2.png') no-repeat center center;
    background-size: 100%;
    z-index: 1;
    overflow: hidden;
}

.bgservicegerak{
    transform: translate(-30%);
}

.service .bgservicegerak .bg2 {
    align-items: center;
    position: absolute;
    transform: rotate(-38.5deg);
    width: 80%;
    left: 4.9%;
    overflow: hidden; 
    display: flex;
}

.service .bgservicegerak .bg1 {
    align-items: center;
    position: absolute;
    transform: rotate(-38.7deg);
    width: 90%;
}

.service .bgservicegerak .bg1 img{
    width: 80%;
}

.service .bgservicegerak .bg2 img{
    animation: moveBg2 10s linear infinite;
}

.bgservicegerak2{
    transform: translate(65%);
}

.service .bgservicegerak2 .bg2 {
    align-items: center;
    position: absolute;
    rotate: 135deg;
    width: 80%;
    left: 2.2%;
    overflow: hidden; 
    display: flex;
    transform: translate(8%);
}

.service .bgservicegerak2 .bg1 {
    align-items: center;
    position: absolute;
    width: 90%;
    rotate: 135.2deg;
    left: -3%;
    transform: translate(30%);
}

.service .bgservicegerak2 .bg1 img{
    width: 80%;
}

.service .bgservicegerak2 .bg2 img{
    animation: moveBg2 10s linear infinite;
}

@keyframes moveBg2 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.service .caption {
    opacity: 0;
}

.service .caption.active {
    animation: fadeup .8s ease-out 0s forwards;
    animation-delay: .2s;
}

@keyframes fadeup{
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service .index_ttl .caption {
    font-size: 1rem;
    color: #111;
    font-weight: 200;
}

.service .list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84%;
    margin-left: 8%;
    margin-top: 80px;
}

.service .list .item {
    width: 19%;
    flex: 0 0 auto;
    position: relative;
    transition: transform 0.3s ease;
}

.service .list .item:hover {
    box-shadow: 2px 2px 50px #d3d3d3;
    transform: scale(1.1);
    border: none;
}

.service .list .item .box:hover {
    background: #f4ff56 100%;
    border: none;
}

.service .list .item::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.service .list .item .one, .two, .three{
    color: #111;
}

.service .list .item .one, .two, .three{
    opacity: 0;
}
.service .list .item .one.active {
    animation: 0.8s ease-out 0.5s 1 normal forwards running fadeup;
}

.service .list .item .two.active {
    animation: 0.8s ease-out 0.8s 1 normal forwards running fadeup;
}

.service .list .item .three.active {
    animation: 0.8s ease-out 1.1s 1 normal forwards running fadeup;
}

.service .list .item .number {
    position: absolute;
    top: -0.5em;
    left: 9px;
    z-index: 1;
    font-size: 2rem;
    font-weight: 900;
}

.service .list .item .box {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    padding-top: 23.7%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.service .list .item .box .img {
    width: 43.1%;
    margin: 0px auto;
}

.service .list .item .box .img img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

.service .list .item .box p {
    text-align: center;
    margin-top: 5.2%;
    font-size: 1rem;
}

.service .btn_style.active {
    animation: 0.8s ease-out 2s 1 normal forwards running fadeup;
}

.service .btn_style {
    opacity: 0;
    margin-top: 50px;
}

.btn_style a, .btn_style button {
    display: block;
    width: 320px;
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    transition: opacity .4s ease, color .4s ease, background-color .4s ease;
    color: #000;
}

.btn_style a .txt, .btn_style button .txt {
    width: 100%;
    height: 100%;
    color: #fff;
    display: block;
    letter-spacing: 1.5px;
    font-size: medium;
}

.btn_style a .txt::before, .btn_style button .txt::before {
    width: 0;
    background: linear-gradient(265deg, #ee7800 0%, #ff9921 45%, #ffbc2d 100%);
    z-index: -1;
    -webkit-transition: .2s;
    transition: .2s;
}

.btn_style a .txt::before, .btn_style a .txt::after, .btn_style button .txt::before, .btn_style button .txt::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
}

.btn_style a .txt::after, .btn_style button .txt::after {
    width: 100%;
    background: #111;
    z-index: -2;
}

.btn_style a .txt::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    box-sizing: border-box;
}

.btn_style a .arrow {
    position: absolute;
    top: 50%;
    bottom: 50%;
    margin: auto;
    right: 13px;
}

.btn_style a img{
    border: none;
}

.btn_style img{
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

@media screen and (max-width: 812px) {
    .service {
        padding: 4.6vw 0px 10.6vw;
        background-size: 200%;
    }
    .wrap {
        width: 100%;
        padding: 0 4vw;
    }
    .service .index_ttl {
        width: 19.5vw;
        margin-left: 225px;
    }
    .index_ttl .ttl_svganime {
        height: 15.5vw;
    }
    .index_ttl .ttl_svganime .line {
        height: 3.7vw;
        bottom: 2.8vw;
    }
    .service .caption.active {
        animation: 0.8s ease-out 0.2s 1 normal forwards running fadeup;
    }
    .index_ttl text {
        font-size: 10.6vw;
    }
    .index_ttl .caption {
        font-size: 3.2vw;
    }
    .service .list {
        width: 100%;
        justify-content: center;
        display: flex;
        margin-left: 0px;
        margin-top: 30px;
    }
    .service .list .item {
        width: 26%;
    }
    .service .list .item .number {
        font-size: 3.7vw;
    }
    .service .list .item .box p {
        font-size: 3.2vw;
        margin-top: 12%;
    }
    .service .list .item:nth-child(2n) {
        margin: 0px 1.5%;
    }
    .bgservicegerak2{
        transform: translate(90%);
    }
    .service .bgservicegerak .bg1 img{
        width: 150%;
    }
    .service .bgservicegerak .bg2 img{
        width: 150%;
    }
    .service .bgservicegerak2 .bg2 img{
        width: 150%;
    }
    .service .bgservicegerak2 .bg1 img{
        width: 150%;
    }
    .service .bgservicegerak .bg2{
        left: 5.5%;
    }
    .service .bgservicegerak2 .bg1 {
        transform: translate(92%);
    }
    .service .bgservicegerak2 .bg2 {
        transform: translate(92%, -11%);
    }

}

.service .list .item:nth-child(2n) {
    margin: 0px 8%;
}

.works {
    position: relative;
  }
  .works .index_ttl {
    width: 17.5vw;
    position: absolute;
    left: 57vw;
    top: 8.5vw;
  }
  @media screen and (max-width: 812px) {
    .works .index_ttl {
      width: 16.9vw;
      left: 4vw;
      top: 70.8vw;
    }
  }
  .works .index_ttl .caption {
    opacity: 0;
    font-weight: 200;
  }
  .works .index_ttl .caption.active {
    animation: fadeup 1s ease-out 0s forwards;
    animation-delay: 1.5s;
  }
  .works .index_ttl.eng {
    width: 23vw;
  }
  @media screen and (max-width: 812px) {
    .works .index_ttl.eng {
      width: 52vw;
    }
  }
  .works .slider .item {
    display: flex;
    align-items: flex-end;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item {
      flex-direction: column;
    }
  }
  .works .slider .item .image {
    width: 52.8vw;
    padding: 4.2vw 0 5.8vw;
    min-height: 40vw;
    position: relative;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .image {
      width: 100%;
      padding: 8.3vw 4vw 10.6vw;
      min-height: auto;
    }
  }
  .works .slider .item .image .bg {
    width: 0;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .works .slider .item .image .bg.active {
    animation: bgright .8s ease-out 0s forwards;
    animation-delay: .5s;
  }
  .works .slider .item .image .inner {
    position: relative;
  }
  .works .slider .item .image .inner .innnerbg {
    width: 120%;
    height: 120%;
    background-color: #fff;
    position: absolute;
    top: -5px;
    left: 0;
    z-index: 1;
  }
  .works .slider .item .image .inner .innnerbg.active {
    animation: bgrightoff .8s ease-out 0s forwards;
  }

  @keyframes bgrightoff{
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
  }
  .works .slider .item .image img {
    width: 100%;
  }
  .works .slider .item .text_box {
    width: 47.2vw;
    padding: 20vw 0 8.7vw 4.2vw;
    min-height: 45vw;
    position: relative;
    /*.slide_arrow {
        ul {
            display: flex;
            align-items: center;
            margin-top: 50px;
            @include mq(sp) {
                margin-top:  5.3vw;
            }
            li{
                cursor: pointer;
                &:nth-child(n+2) {
                    margin-left: 30px;
                }
            }
        }
    }*/
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box {
      width: 100%;
      padding: 12vw 4vw 13.3vw;
      min-height: auto;
    }
  }
  .works .slider .item .text_box .bg {
    width: 0;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .works .slider .item .text_box .bg.active {
    animation: bgright .5s ease-out 0s forwards;
    animation-delay: .5s;
  }

  @keyframes bgright{
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
  }

  .works .slider .item .text_box .inner {
    position: relative;
    opacity: 0;
    width: 41vw;
  }
  .works .slider .item .text_box .inner.active {
    animation: fadeup .5s ease-out 0s forwards;
    animation-delay: 1.8s;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .inner {
      width: 100%;
    }
  }
  .works .slider .item .text_box .cat {
    background-color: #111;
    padding: 6px 15px;
    color: #fff;
    font-size: 1.3rem;
    display: inline-block;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .cat {
      font-size: 2.9vw;
      padding: 10px 6.6vw;
    }
  }
  .works .slider .item .text_box .ttl {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 16px;
    height: 4.8rem;
    color: #000;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .ttl {
      font-size: 3.2vw;
      margin-top: 3.2vw;
    }
  }
  .works .slider .item .text_box .company {
    font-size: 1.4rem;
    padding-top: 20px;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .company {
      font-size: 2.9vw;
      padding-top: 3.2vw;
    }
  }
  .works .slider .item .text_box .prev {
    position: absolute;
    left: 0;
    top: 140px;
    z-index: 1;
    cursor: pointer;
    width: 77px;
  }
  .works .slider .item .text_box .prev:hover {
    opacity: 0.6;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .prev {
      top: 26.1vw;
    }
    .works .slider .item .text_box .prev img {
      width: 15vw;
      height: 3vw;
      -webkit-backface-visibility: hidden;
    }
  }
  .works .slider .item .text_box .next {
    position: absolute;
    top: 140px;
    left: 120px;
    z-index: 1;
    cursor: pointer;
    width: 77px;
  }
  .works .slider .item .text_box .next:hover {
    opacity: 0.6;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .next {
      top: 26.0vw;
      left: 25vw;
    }
    .works .slider .item .text_box .next img {
      width: 15vw;
      height: 3vw;
      -webkit-backface-visibility: hidden;
    }
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box img {
      image-rendering: auto;
    }
  }
  .works .slider .item .text_box .btn_style {
    margin-top: 148px;
    opacity: 0;
  }
  .works .slider .item .text_box .btn_style.active {
    animation: fadeup .5s ease-out 0s forwards;
    animation-delay: 2s;
  }
  @media screen and (max-width: 812px) {
    .works .slider .item .text_box .btn_style {
      margin-top: 17.3vw;
    }
  }
  @media screen and (min-width: 813px) {
    .works .slider .item .text_box .btn_style a {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .works .slider .item .slick-dots {
    bottom: auto;
    margin-top: 12px;
    opacity: 0;
  }
  .works .slider .item .slick-dots.active {
    animation: fadein .5s ease 0s forwards;
    animation-delay: 1.8s;
  }
  .works .slider .item .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .works .slider .item .slick-dots li button {
    background-color: #fff;
    border: solid 1px #111;
    width: 10px;
    height: 10px;
  }
  .works .slider .item .slick-dots li button::before {
    display: none;
  }
  .works .slider .item .slick-dots li.slick-active button {
    background-color: #111;
  }

  .works .index_ttl .caption.active {
    animation: fadeup 1s ease-out 0s forwards;
    animation-delay: 1.5s;
    color: #000;
}

@keyframes fadein{
    0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}

.section-outer {
    padding: 40px 0 6vw;
}

.bg-white {
    position: relative;
    background: url(../img/tumbas1.png);
    background-size: 110%;
    margin: 5vw 0;
    padding: 5vw 0;
    overflow-x: clip;
}

.bg-white:before {
    position: absolute;
    content: "";
    background: url(../img/bg-white_ob.svg) center no-repeat;
    background-size: contain;
    height: 10vw;
    width: 102%;
    top: -7.6vw;
    z-index: -1;
}

#talent .bg-ob.js-play {
    animation: scale_on 1s cubic-bezier(1, 0, 0, 0.82);
}

.anime.js-play {
    opacity: 1;
}

.bg-ob {
    position: absolute;
    width: 100%;
    height: 100%;
}

.anime {
    opacity: 0;
}

.bg-ob .inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#talent .bg-ob .inner .ob.ob1 {
    width: 12vw;
    right: 44vw;
    top: -30vw;
}

.bg-ob .inner .ob {
    position: absolute;
}

.bg-ob .inner .ob img {
    display: block;
}

#talent .bg-ob .inner .ob.ob2 {
    width: 18vw;
    top: -29vw;
    right: -5vw;
}

.bg-ob .inner .ob {
    position: absolute;
}

#talent .bg-ob .inner .ob.ob3 {
    width: 28vw;
    top: -40vw;
    left: -5vw;
}

#talent .bg-ob .inner .ob.ob4 {
    width: 38vw;
    bottom: 36vw;
    left: -2vw;
}

#talent .bg-ob .inner .ob.ob5 {
    width: 28vw;
    bottom: 32vw;
    right: 10vw;
}

#talent .sec-inner {
    position: relative;
    z-index: 2;
}

.sec-inner {
    margin: 0 auto;
    width: 86%;
}

#talent .talent_flex {
    display: flex;
    align-items: center;
}

#talent .talent_flex .text_block {
    width: 43.5%;
    margin-right: 1%;
}

.js-play.fadeInBottom {
    animation: fadeInBottom .5s backwards;
}

@keyframes fadeInBottom{
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#talent .talent_flex .text_block .name {
    margin-bottom: 120px;
   
    
}
#talent .talent_flex .text_block .name h1 {
    font-size: 12rem;
    color: #2a4439;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-style: italic;
    
}

#talent .talent_flex .text_block .line-block {
    padding: 40px 0 50px;
    margin-bottom: 50px;
}

.line-block {
    position: relative;
}

.line-block:before {
    position: absolute;
    content: "";
    background: url(../img/line-green.svg) center no-repeat;
    width: 100%;
    height: 3.4vw;
    left: 50%;
    transform: translateX(-50%);
    top: -2.4vw;
}

#talent .talent_flex .text_block .text {
    font-size: min(1.2vw, 24px);
    line-height: 2em;
    font-weight: bold;
    letter-spacing: 2px;
    color: #2a4439;
}

.line-block:after {
    position: absolute;
    content: "";
    background: url(../images/line-blue.svg) center no-repeat;
    width: 100%;
    height: 3.4vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
}

.js-play.fadeInBottom {
    animation: fadeInBottom .5s backwards;
}

#talent .talent_flex .text_block .talent_about ul {
    display: flex;
    flex-wrap: wrap;
}

#talent .talent_flex .text_block .talent_about li {
    display: flex;
    align-items: center;
    color: #2a4439;
    font-weight: bold;
    width: 50%;
    margin-bottom: 20px;
    font-size: 20px;
}

#talent .talent_flex .text_block .talent_about li .label {
    display: inline-block;
    background: #ffffff;
    color: #2a4439;
    padding: 20px 50px;
    text-align: center;
    border-radius: 4px;
    font-size: 20px;
    margin-right: 10px;
    z-index: 2;
}

#talent .talent_flex .text_block .talent_about li .label:hover{
    scale: 1.1;
    transition: 0.3s ease;
    color: #ffffff;
    background: #002aff;
}

#talent .talent_flex .talent_block.js-play {
    animation: fadeInRight 1s forwards cubic-bezier(1, 0, 0, 0.82);
}

@keyframes fadeInRight{
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#talent .talent_flex .talent_block {
    width: 56.5%;
    padding-top: 60%;
    position: relative;
    transform: scale(1);
}

#talent .talent_flex .talent_block figure {
    position: absolute;
    top: -10.7%;
    left: -50%;
    width: 230%;
    opacity: 1;
    transition: .3s;
    transition-delay: .3s;
    transition-timing-function: ease;
    z-index: 1;
}


.contact {
    position: relative;
    padding: 80px 0 94px;
}

.contact .bg.active {
    animation: fadeup .5s ease-out 0s forwards;
}

.contact .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
}

.contact .bg::before {
    background: linear-gradient(135deg, #D8F002 0%, #ffe60028 100%);
    z-index: 1;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact .bg::after {
    background: linear-gradient(270deg, #111111 0%, #3c3c3c 100%);
    z-index: 2;
    opacity: .85;
}

.contact .wrap {
    position: relative;
    z-index: 0;
    padding: 30px 0 60px;
}

.wrap {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact .wrap .wrapbg.active {
    animation: bgright .5s ease-out 0s forwards;
    animation-delay: .3s;
}

.contact .wrap .wrapbg {
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.contact .index_ttl {
    width: 27.5vw;
    margin-left: auto;
    margin-right: auto;
}

.ttl_svganime {
    position: relative;
}

.index_ttl .ttl_svganime {
    height: 5.9vw;
}

.index_ttl .ttl_svganime .line {
    height: 1.4vw;
    bottom: .95vw;
}

.ttl_svganime svg {
    width: 100%;
    display: block;
    position: relative;
    height: 20em;
}

.ttl_svganime.inview text {
    stroke-dashoffset: 600;
    -webkit-animation: svganime 1s linear;
    animation: svganime 1s linear;
    fill: #111;
    opacity: 1;
}

.index_ttl text {
    font-size: 4.2vw;
}

.ttl_svganime text {
    font-weight: bold;
    font-style: italic;
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 600;
    letter-spacing: 0.52vw;
    opacity: 0;
    -webkit-transform: translate(0, 1.15em);
    transform: translate(0, 1.15em);
}

.contact .index_ttl .caption.active {
    animation: fadeup .8s ease-out 0s forwards;
    animation-delay: .6s;
}

.contact .index_ttl .caption {
    text-align: center;
    opacity: 0;
}

.index_ttl .caption {
    font-size: 1.6rem;
}

.contact .discription.active {
    animation: fadeup .8s ease-out 0s forwards;
    animation-delay: .9s;
}

.contact .discription {
    text-align: center;
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000;
    opacity: 0;
}

.contact .btn_style.active {
    animation: fadeup .8s ease-out 0s forwards;
    animation-delay: 1.2s;
}

.contact .btn_style {
    margin-top: 40px;
    opacity: 0;
}

.contact .ttl_svganime svg {
    width: 120%;
    display: block;
    position: relative;
    height: 20rem;
}

.btn_style a, .btn_style button {
    display: block;
    width: 320px;
    height: 50px;
    line-height: 50px;
    font-size: 1.6rem;
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.btn_style a .txt, .btn_style button .txt {
    width: 100%;
    height: 100%;
    color: #fff;
    display: block;
    letter-spacing: 1.5px;
}

footer {
    background-color: #ffffff;
}

#pagetop img {
    image-rendering: auto;
}

footer #pagetop {
    position: fixed;
    width: 54px;
    height: 54px;
    bottom: 50px;
    right: 30px;
    cursor: pointer;
    background: linear-gradient(265deg, #ee7800 0%, #ff9921 45%, #ffbc2d 100%);
    opacity: .5;
    display: none;
    z-index: 10;
}

footer .copyright {
    font-size: 1rem;
    padding: 20px 0;
    text-align: center;
    color: #2b2b2b;
}

@media screen and (max-width: 812px) {
    #talent .talent_flex .text_block .name h1{
        font-size: 5rem;
        margin-top: 2rem;
    }
    #talent .talent_flex .text_block .name {
        margin-bottom: 3rem;
    }
    .bg-white{
        background-size: 185%;
        background-position-x: -20rem;
    }
    #talent .talent_flex .text_block .text {
        font-size: min(2vw, 40px);
    }

    .js-play{
        width: 30rem;
    }

    #talent .talent_flex .talent_block figure {
    top: -60%;
    left: -130%;
    width: 350%;
    }

    .contact .index_ttl {
        width: 29vw;
    }

    .contact {
            padding: 100px 0 90px;
        }
}

/*size mobile */
@media screen and (max-width: 375px) {
    .btn_style a{
        width: 10rem;
    }

    .service .list .item .box p{
        margin-top: 0;
    }

    .bgservicegerak2{
        transform: translate(110%);
    }

    .bgservicegerak{
        transform: translate(-25%);
    }

    .works .slider .item .text_box {
        padding: 25vw 8vw 13.3vw;
    }

    .works .index_ttl {
        left: 8vw;
        width: 37.9vw;
    }

    .works .slider .item .text_box .prev {
        top: 36.1vw;
    }

    .works .slider .item .text_box .next {
        top: 36.1vw;
    }

    .works .slider .item .text_box .ttl {
        font-size: 5vw;
    }

    .works .index_ttl text {
        font-size: 10.2vw;
    }

    .works .index_ttl .ttl_svganime {
        height: 12.9vw;
    }

    .works .index_ttl .caption {
        font-size: 20px;
    }

    .works .ttl_svganime svg {
        margin-top: 1rem;
    }

    .mv .square {
        right: 168vw;
    }

    .mv .square img {
        width: 5vw;
    }

    .mv .square img.rect02 {
        margin-right: 20vw;
    }

    .mv .square img.rect03 {
        margin-right: 10vw;
    }

    .mv .txtbox .ttl .caption {
        font-size: 4.6vw;
    }

    .service .index_ttl {
        width: 43vw;
        margin-left: 140px;
    }

    .service .index_ttl text {
        font-size: 10.2vw;
    }

    .service .index_ttl .ttl_svganime {
        height: 12.9vw;
    }

    .service .bgservicegerak2 .bg2 {
        transform: translate(92%, -16%);
    }

    .bgservicegerak {
        scale: 1.3;
    }

    .bgservicegerak2{
        transform: translate(87%, -16%);
        scale: 1.3;
    }

    .index_ttl .ttl_svganime .line {
        height: 3vw;
    }

    #talent .talent_flex .talent_block figure {
        top: -53%;
        left: -95%;
        width: 300%;
    }

    #talent .talent_flex .text_block {
        width: 50.5%;
    }

    .line-block:before {
        width: 100%;
        height: 5.4vw;
        left: 40%;
        transform: translateX(-40%);
    }

    .bg-white {
        background-size: 320%;
        background-position-x: -35rem;
    }

    .js-play{
        width: 20rem;
    }

    #talent .talent_flex .text_block .talent_about li .label {
        padding: 15px 25px;
        font-size: 20px;
    }

    #talent .talent_flex .text_block .text {
        font-size: min(3.2vw, 40px);
    }

    .section-outer {
        padding: 40px 0 20vw;
    }

    #talent .talent_flex .text_block .name h1 {
        font-size: 3rem;
    }

    footer .copyright {
        font-size: 0.7rem;
        padding: 10px 0;
    }

    .contact .ttl_svganime.inview text {
        font-size: 2.5rem;
    }

    .contact .ttl_svganime svg {
        width: 180%;
        margin-left: 0px;
    }

    .index_ttl .ttl_svganime {
        height: 13.9vw;
    }

    .contact .index_ttl {
        width: 69vw;
    }

    .contact .discription {
        font-size: 20px;
    }
}










