@charset "UTF-8";


@media screen and (max-width: 767px) {

  /* all */
  body {
    padding-top: 0;
    line-height: 1.8em;
    letter-spacing: 0.1em;
  }


  /* contents */
  #cnt {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .slideConts {
    width: 100%;
    height: auto;
    margin: 0 auto 0 auto;
    padding: 0 2% 0 2%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
  }

  .slideContsL {
    transform: translate(-900px, 0);
  }

  .slideContsR {
    transform: translate(900px, 0);
  }


  .slideContsL.show {
    transform: translate(0, 0) !important;
  }

  .slideContsR.show {
    transform: translate(0, 0) !important;
  }

  #cnt2 {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .slideContsT {
    margin: 0 auto 50px auto;
    transform: translate(0, 300px);
  }

  .slideContsT2 {
    margin: 0 auto 50px auto;
    transform: translate(0, 150px);
  }

  .slideContsT.show {
    transform: translate(0, 0) !important;
  }

  .slideContsT2.show {
    transform: translate(0, 0) !important;
  }


  /* nav */
  .cb-header {
    width: 100%;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }

  .navbar-brand {
    font-family: 'Baloo Bhaina', cursive;
    width: 15%;
    font-weight: bold;
    letter-spacing: 0em;
    font-size: 28px;
    animation-name: fadein;
    animation-duration: 3s;
    animation-iteration-count: 1;
    margin: 15px 0 10px 0;
  }

  .navbar {
    background: #fff;
  }

  .navbar-brand img {
    width: 100%;
  }

  .navbar-light .menu-trigger {
    animation-name: fadein;
    animation-duration: 3s;
    animation-iteration-count: 1;
    z-index: 991;
  }



  .material-icons {
    vertical-align: middle;
  }

  button:focus {
    outline: 0;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
  }

  .menu-trigger {
    position: relative;
    /*width: 50px;*/
    /*height: 44px;*/
    width: 35px;
    height: 27px;
    margin: 10px 0 10px 0;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 4px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }


  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }

  .open .menu-trigger span {
    background: #fff;
  }

  .open .navbar-brand {
    color: #fff;
    z-index: 992;
  }


  #gloval-nav {
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }

  #gloval-nav .nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0 0 10px 0;
    transition: color .6s ease;
    margin: 0;
    font-weight: bold;
  }

  #gloval-nav .nav-link:hover {
    color: #666;
  }

  #gloval-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #gloval-nav .nav-item {
    opacity: 0;
    transform: translateX(200px);
    transition: transform .6s ease, opacity .2s ease;
    margin: 0 0 30px 0;
    padding: 0;
  }

  #gloval-nav li:nth-child(2) {
    transition-delay: .15s;
  }

  #gloval-nav li:nth-child(3) {
    transition-delay: .3s;
  }

  #gloval-nav li:nth-child(4) {
    transition-delay: .45s;
  }

  #gloval-nav li:nth-child(5) {
    transition-delay: .6s;
  }

  #gloval-nav li:nth-child(6) {
    transition-delay: .75s;
  }

  #gloval-nav li:nth-child(7) {
    transition-delay: .9s;
  }

  /* open */
  .open {
    overflow: hidden;
  }

  .open #gloval-nav {
    visibility: visible;
    opacity: 0.9;
  }

  .open #gloval-nav li {
    opacity: 1.0;
    transform: translateX(0);
    transition: transform 1s ease, opacity .9s ease;
  }


  /* nav_current */
  .current {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    padding-top: 5px;
  }

  .current::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
    font-weight: bold;
  }

  .current::after {
    transform: scale(1, 1);
    font-weight: bold;
  }




  /* cover */
  .cover {
    margin: 0;
    width: 100%;
    background: url("../img/cover_test_1.jpg") center center no-repeat;
    background-size: cover;
  }

  .cover555 {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: url("../img/cover_test_2.jpg") center center no-repeat;
    background-size: cover;
  }

  /*.contents555 {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 80px 0 80px 0;
    z-index: -3;
  }

  .contents555:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: url("../img/cover_test_2.jpg") center center no-repeat;
    z-index: -1;
  }*/

  .contents_inner555 {
    box-sizing: boder-box;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto 0 auto;
    padding: 0;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .main_text {
    font-family: 'Baloo Bhaina', cursive;
    color: #fff;
    text-align: center;
    font-size: 16vw;
    margin: 50px 0 0 0;
    padding: 0;
    text-shadow: #333 3px 3px 10px;
  }





  /* about */

  .about_cnt {
    margin: 0 auto 0 auto;
    padding: 0;

  }

  .about_title {
    margin: 0 auto 0 auto;
    padding: 70px 0 0 0;
  }

  .about_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
    margin-top: 70px;
  }

  .about_title h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 42px;
    color: #333;
    font-family: 'Luckiest Guy', cursive;
  }

  .about_title p {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    font-family: 'M PLUS Rounded 1c';
  }


  .about_text h3 {
    width: 100%;
    /*border-left: solid 5px #f66;*/
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 18px;
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }

  .about_text p {
    width: 100%;
    margin: 0;
    padding: 0 0 70px 0;
    line-height: 2.0em;
    font-size: 14px;
    font-family: 'M PLUS Rounded 1c';
  }

  .about_bk {
    position: absolute;
    margin: 0;
    padding: 0;
    height: 1100px;
  }



  /* service */
  #contents02 {
    background: rgba(30, 30, 30, 1.0);
    margin: 0;
  }


  .bk_service {
    z-index: -9999;
    margin: 0;
  }

  .bk_service .col-6 {
    left: 0;
    margin: 70px 0 0 0;
    padding: 0;
    background: rgba(30, 30, 30, 1.0);
    position: absolute;
  }

  .bk_service .col-7 {
    right: 0;
    margin: 0;
    padding: 0;
    background: rgba(30, 30, 30, 1.0);
    position: absolute;
  }

  .service_cnt {
    margin: 0 auto 0 auto;
    padding: 100px 0 0 0;
  }

  .service_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #fff;
  }

  .service_title h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 42px;
    color: #fff;
    /*color: #2e8b57;*/
    font-family: 'Luckiest Guy', cursive;
  }

  .service_title p {
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    /*color: #2e8b57;*/
    font-family: 'M PLUS Rounded 1c';
  }

  .service_text h4 {
    width: 100%;
    /*border-left: solid 5px #f66;*/
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 18px;
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
    color: #fff;
  }

  .service_text p {
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 14px;
    font-family: 'M PLUS Rounded 1c';
    color: #fff;
  }

  .service_cnt_right {
    margin: 0;
    padding: 0;
  }

  .service_cnt_img {
    width: 100%;
    margin: 0 0 70px 0;
    padding: 0;
  }

  .img_box_123 {
    object-fit: cover;
  }



  /* form */
  #contents03 {
    background: rgba(240, 240, 240, 1.0);
    margin: 0;
  }

  .bk_contact {
    z-index: -9999;
    margin: 0;
  }

  .bk_contact .col-7 {
    left: 0;
    margin: 0;
    padding: 0;
    background: rgba(240, 240, 240, 1.0);
    position: absolute;
  }

  .bk_contact .col-6 {
    right: 0;
    margin: 0;
    padding: 0;
    background: rgba(240, 240, 240, 1.0);
    position: absolute;
  }

  .contact_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .contact_title {
    margin: 0 auto 0 auto;
  }

  .contact_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .contact_title h3 {
    width: 100%;
    /*border-left: solid 5px #f66;*/
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 42px;
    /*color: #2e8b57;*/
    color: #333;
    font-family: 'Luckiest Guy', cursive;
  }

  .contact_title p {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 16px;
    font-weight: bold;
    /*color: #2e8b57;*/
    color: #333;
    font-family: 'M PLUS Rounded 1c';
  }
  
  
  .contact_text {
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }
  


  .contact_text h5 {
    width: 100%;
    border-left: solid 3px #333;
    margin: 0 0 10px 0;
    padding: 3px 10px 3px 10px;
    font-size: 22px;
  }

  .contact_text p {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    font-size: 18px;
  }


  .form {
    margin: 0;
    padding: 0;
    width: 100%;
    /*background: #efefef;*/
  }

  .form_cnt {
    margin: 0 auto 0 auto;
    padding: 70px 0 70px 0;
  }

  .form h2 {
    margin: 50px 0 50px 0;
  }

  .form .form-group {
    margin: 0 0 40px 0;
    width: 100%;
  }

  textarea {
    resize: none;
  }

  .alert {
    margin: 0;
    padding: 10px 0 10px 0;
    z-index: 99999;
    width: 100%;
  }

  .alert p {
    margin: 0;
    padding: 0;
  }

  .alert button {
    margin: 0;
    padding: 0;
  }

  .alert span {
    margin: 0;
    padding: 0;
  }



  /* company */
  #contents04 {
    background: #fff;
    margin: 0;
  }

  .company_cnt {
    margin: 0 auto 0 auto;
    padding: 70px 0 0 0;
  }

  .company_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .company_title h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 42px;
    color: #333;
    /*color: #2e8b57;*/
    font-family: 'Luckiest Guy', cursive;
  }

  .company_title p {
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: 2.0em;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    /*color: #2e8b57;*/
    font-family: 'M PLUS Rounded 1c';
  }

  .company_text {
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }

  .company_text h5 {
    width: 100%;
    border-left: solid 3px #333;
    margin: 0 0 10px 0;
    padding: 3px 10px 3px 10px;
    font-size: 18px;
    font-weight: bold;
  }

  .company_text p {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    font-size: 14px;
  }


  .contents04_space_m {
    margin: 0;
  }



  /* footer */
  footer {
    margin: 20px 0 70px 0;
    padding: 0;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }


  /* page_top */
  #page_top {
    width: 45px;
    height: 45px;
    position: fixed;
    right: 40px;
    bottom: -70px;
    background: #999;
    opacity: 0.6;
    border-radius: 50%;
  }

  #page_top a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    text-decoration: none;
    border-radius: 50%;
  }

  #page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 20px;
    color: #fff;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    letter-spacing: 0;
  }





  /*css3*/

  /* fadein */
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  @keyframes fadein2 {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* img_fuwafuwa */
  .img_box {
    animation: img_box_9955 3s linear infinite;
    transform-origin: 50% 50%;
    margin: 100px 0 0 0;
    padding: 0 10px 0 10px;
    height: 400px;
  }

  .img_box2 {
    animation: img_box_9966 4s linear infinite;
    transform-origin: 50% 50%;
    margin: 50px 0 0 0;
    padding: 0 10px 0 10px;
    height: 400px;
  }

  .img_box3 {
    animation: img_box_9977 5s linear infinite;
    transform-origin: 50% 50%;
    margin: 0;
    padding: 0 10px 0 10px;
    height: 400px;
  }

  @keyframes img_box_9955 {
    0% {
      transform: translateY(0)
    }

    33.33333% {
      transform: translateY(-5px)
    }

    66.66667% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }

  @keyframes img_box_9966 {
    0% {
      transform: translateY(0)
    }

    33.33333% {
      transform: translateY(5px)
    }

    66.66667% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }

  @keyframes img_box_9977 {
    0% {
      transform: translateY(0)
    }

    33.33333% {
      transform: translateY(-5px)
    }

    66.66667% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }


  /* fluffy fuwafuwa */
  .fluffy {
    margin-top: -50px;
    animation: fluffy1 3s ease infinite;
    position: relative;
    padding: 35px 0 0 0;
    width: 100px;
    height: 100px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-weight: bold;
    background-color: #f66;
    z-index: 1;
  }

  .fluffy .fa-angle-double-down {
    letter-spacing: 0em;
    font-size: 22px;
    font-weight: bold;
    background-color: #f66;
  }

  @keyframes fluffy1 {
    0% {
      transform: translateY(0)
    }

    5% {
      transform: translateY(0)
    }

    10% {
      transform: translateY(0)
    }

    20% {
      transform: translateY(-15px)
    }

    25% {
      transform: translateY(0)
    }

    30% {
      transform: translateY(-15px)
    }

    50% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }

  .fluffy::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 40px;
    bottom: -12px;
    border-right: 20px solid #f66;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(-90deg);
  }

  /*about_background*/
  .area {
    background: #fff;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
  }

  .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    animation: animate 25s linear infinite;
    bottom: 0px;

  }

  .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    background: rgba(203, 72, 41, 0.5);
  }


  .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
    background: rgba(183, 170, 0, 0.5);
  }

  .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
    background: rgba(116, 58, 173, 0.5);
  }

  .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
    background: rgba(212, 236, 234, 0.5);
  }

  .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    background: rgba(173, 70, 58, 0.5);
  }

  .circles li:nth-child(6) {
    /*left: 75%;*/
    left: 65%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
    background: rgba(170, 207, 82, 0.5);
  }

  .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
    background: rgba(243, 152, 0, 0.5);
  }

  .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
    background: rgba(139, 173, 58, 0.5);
  }

  .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
    background: rgba(58, 116, 173, 0.5);
  }

  .circles li:nth-child(10) {
    left: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
    background: rgba(90, 165, 114, 0.5);
  }

  @keyframes animate {

    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
    }

    100% {
      transform: translateY(-1500px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
    }

  }


  


  

  
}






@media screen and (min-width: 768px) {

  /* all */
  body {
    padding-top: 0;
    line-height: 1.8em;
    letter-spacing: 0.1em;
  }


  /* contents */
  #cnt {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .slideConts {
    width: 100%;
    height: auto;
    margin: 0 auto 0 auto;
    padding: 0 2% 0 2%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
  }

  .slideContsL {
    transform: translate(-900px, 0);
  }

  .slideContsR {
    transform: translate(900px, 0);
  }


  .slideContsL.show {
    transform: translate(0, 0) !important;
  }

  .slideContsR.show {
    transform: translate(0, 0) !important;
  }

  #cnt2 {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .slideContsT {
    margin: 0 auto 50px auto;
    transform: translate(0, 300px);
  }

  .slideContsT2 {
    margin: 0 auto 50px auto;
    transform: translate(0, 150px);
  }

  .slideContsT.show {
    transform: translate(0, 0) !important;
  }

  .slideContsT2.show {
    transform: translate(0, 0) !important;
  }


  /* nav */
  .cb-header {
    width: 100%;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }

  .navbar-brand {
    font-family: 'Baloo Bhaina', cursive;
    width: 15%;
    font-weight: bold;
    letter-spacing: 0em;
    font-size: 32px;
    animation-name: fadein;
    animation-duration: 3s;
    animation-iteration-count: 1;
    margin: 15px 0 10px 0;
  }

  .navbar {
    background: #fff;
  }

  .navbar-brand img {
    width: 100%;
  }

  .navbar-light .menu-trigger {
    animation-name: fadein;
    animation-duration: 3s;
    animation-iteration-count: 1;
    z-index: 991;
  }



  .material-icons {
    vertical-align: middle;
  }

  button:focus {
    outline: 0;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
  }

  .menu-trigger {
    position: relative;
    /*width: 50px;*/
    /*height: 44px;*/
    width: 40px;
    height: 30px;
    margin: 10px 0 10px 0;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 4px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 13px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }


  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-13px) rotate(45deg);
    transform: translateY(-13px) rotate(45deg);
  }

  .open .menu-trigger span {
    background: #fff;
  }

  .open .navbar-brand {
    color: #fff;
    z-index: 992;
  }


  #gloval-nav {
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }

  #gloval-nav .nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    transition: color .6s ease;
    margin: 0;
    font-weight: bold;
  }

  #gloval-nav .nav-link:hover {
    color: #666;
  }

  #gloval-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #gloval-nav .nav-item {
    opacity: 0;
    transform: translateX(200px);
    transition: transform .6s ease, opacity .2s ease;
    margin: 0 0 10px 0;
    padding: 0;
  }
  
  #gloval-nav li:nth-child(2) {
    transition-delay: .15s;
  }

  #gloval-nav li:nth-child(3) {
    transition-delay: .3s;
  }

  #gloval-nav li:nth-child(4) {
    transition-delay: .45s;
  }

  #gloval-nav li:nth-child(5) {
    transition-delay: .6s;
  }

  #gloval-nav li:nth-child(6) {
    transition-delay: .75s;
  }

  #gloval-nav li:nth-child(7) {
    transition-delay: .9s;
  }

  /* open */
  .open {
    overflow: hidden;
  }

  .open #gloval-nav {
    visibility: visible;
    opacity: 0.8;
  }

  .open #gloval-nav li {
    opacity: 1.0;
    transform: translateX(0);
    transition: transform 1s ease, opacity .9s ease;
  }


  /* nav_current */
  .current {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    padding-top: 5px;
  }

  .current::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
    font-weight: bold;
  }

  .current::after {
    transform: scale(1, 1);
    font-weight: bold;
  }




  /* cover */
  .cover {
    margin: -20px 0 0 0;
    width: 100%;
    background: url("../img/cover_test_1.jpg") center center no-repeat;
    background-size: cover;
  }

  .cover555 {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: url("../img/cover_test_2.jpg") center center no-repeat;
    background-size: cover;
  }

  /*.contents555 {
    position: absolute;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: -3;
  }

  .contents555:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    background: url("../img/cover_test_2.jpg") center center no-repeat;
    background-size: cover;
    object-fit: cover;
    z-index: -1;
  }
  
  .contents555:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 3% -10% 0;
    z-index: -2;
  } */


  .contents_inner555 {
    box-sizing: boder-box;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto 0 auto;
    padding: 0;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main_text {
    font-family: 'Baloo Bhaina', cursive;
    color: #fff;
    text-align: center;
    font-size: 8vw;
    margin: 50px 0 0 0;
    padding: 0;
    text-shadow: #333 3px 3px 10px;
  }





  /* about */


  .about_cnt {
    margin: 0 auto 0 auto;
    padding: 150px 0 0 0;
  }

  .abaout_title {
    margin: 0 auto 0 auto;
  }

  .about_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .about_title h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 46px;
    color: #333;
    font-family: 'Luckiest Guy', cursive;
  }

  .about_title p {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 2.5em;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    font-family: 'M PLUS Rounded 1c';
  }


  .about_text h3 {
    width: 100%;
    /*border-left: solid 5px #f66;*/
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.5em;
    font-size: 34px;
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }

  .about_text p {
    width: 100%;
    margin: 0;
    padding: 0 0 200px 0;
    line-height: 2.5em;
    font-size: 18px;
    font-family: 'M PLUS Rounded 1c';
  }





  /* service */
  #contents02 {
    background: #fff;
    margin: -450px 0 0 0;
  }

  .bk_service {
    z-index: -9999;
    margin: 400px 0 0 0;
  }

  .bk_service .col-6 {
    left: 0;
    margin: 100px 0 0 0;
    padding: 0;
    background: rgba(30, 30, 30, 1.0);
    height: 1000px;
    position: absolute;
  }

  .bk_service .col-7 {
    right: 0;
    margin: 0;
    padding: 0;
    background: rgba(30, 30, 30, 1.0);
    height: 1000px;
    position: absolute;
  }

  .service_cnt {
    margin: 0 auto 0 auto;
    padding: 150px 0 0 0;
  }

  .service_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #fff;
  }

  .service_title h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 46px;
    color: #fff;
    /*color: #2e8b57;*/
    font-family: 'Luckiest Guy', cursive;
  }

  .service_title p {
    width: 100%;
    margin: 0 0 70px 0;
    padding: 0;
    line-height: 2.5em;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    /*color: #2e8b57;*/
    font-family: 'M PLUS Rounded 1c';
  }

  .service_text h4 {
    width: 100%;
    /*border-left: solid 5px #f66;*/
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
    color: #fff;
  }

  .service_text p {
    width: 100%;
    margin: 0 0 70px 0;
    padding: 0;
    font-size: 18px;
    font-family: 'M PLUS Rounded 1c';
    color: #fff;
  }

  .service_cnt_right {
    margin: 0;
    padding: 0;
  }

  .service_cnt_img {
    width: 100%;
    margin: 0 0 0 20px;
    padding: 0;
  }

  .img_box_123 {
    object-fit: cover;
  }



  /* form */
  #contents03 {
    background: rgba(240, 240, 240, 1.0);
    margin: 0;
  }


  .bk_contact {
    z-index: -9999;
    margin: 150px 0 0 0;
  }

  .bk_contact .col-7 {
    left: 0;
    margin: 100px 0 0 0;
    padding: 0;
    background: rgba(240, 240, 240, 1.0);
    position: absolute;
  }

  .bk_contact .col-6 {
    right: 0;
    margin: 0;
    padding: 0;
    background: rgba(240, 240, 240, 1.0);
    position: absolute;
  }

  .contact_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .contact_title {
    margin: 0 auto 0 auto;
  }

  .contact_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .contact_title h3 {
    width: 100%;
    /*border-left: solid 5px #f66;*/
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 46px;
    /*color: #2e8b57;*/
    color: #333;
    font-family: 'Luckiest Guy', cursive;
  }

  .contact_title p {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 2.5em;
    font-size: 22px;
    font-weight: bold;
    /*color: #2e8b57;*/
    color: #333;
    font-family: 'M PLUS Rounded 1c';
  }
  .contact_text {
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }

  .contact_text h5 {
    width: 100%;
    border-left: solid 3px #333;
    margin: 0 0 10px 0;
    padding: 3px 10px 3px 10px;
    font-size: 22px;
  }

  .contact_text p {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    font-size: 18px;
  }


  .form {
    margin: 0;
    padding: 0;
    width: 100%;
    /*background: #efefef;*/
  }

  .form_cnt {
    margin: 0 auto 0 auto;
    padding: 150px 0 150px 0;
  }

  .form h2 {
    margin: 50px 0 50px 0;
  }

  .form .form-group {
    margin: 0 0 40px 0;
    width: 100%;
  }

  textarea {
    resize: none;
  }

  .alert {
    margin: 0;
    padding: 10px 0 10px 0;
    z-index: 99999;
    width: 100%;
  }

  .alert p {
    margin: 0;
    padding: 0;
  }

  .alert button {
    margin: 0;
    padding: 0;
  }

  .alert span {
    margin: 0;
    padding: 0;
  }



  /* company */
  #contents04 {
    background: #fff;
    margin: 0;
  }

  .company_cnt {
    margin: 0 auto 0 auto;
    padding: 150px 0 0 0;
  }

  .company_title_line {
    padding: 20px 0 0 0;
    border-top: 3px solid #333;
  }

  .company_title h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.7em;
    font-size: 46px;
    color: #333;
    /*color: #2e8b57;*/
    font-family: 'Luckiest Guy', cursive;
  }

  .company_title p {
    width: 100%;
    margin: 0 0 70px 0;
    padding: 0;
    line-height: 2.5em;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    /*color: #2e8b57;*/
    font-family: 'M PLUS Rounded 1c';
  }

  .company_text {
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }

  .company_text h5 {
    width: 100%;
    border-left: solid 3px #333;
    margin: 0 0 10px 0;
    padding: 3px 10px 3px 10px;
    font-size: 22px;
  }

  .company_text p {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    font-size: 18px;
  }


  .contents04_space_m {
    margin: 0;
  }



  /* footer */
  footer {
    margin: 100px 0 100px 0;
    padding: 0;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: bold;
    font-family: 'M PLUS Rounded 1c';
  }





  /* page_top */
  #page_top {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 50px;
    bottom: -100px;
    background: #999;
    opacity: 0.6;
    border-radius: 50%;
  }

  #page_top a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-decoration: none;
  }

  #page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    letter-spacing: 0;
  }





  /*css3*/

  /* fadein */
  @keyframes fadein {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  @keyframes fadein2 {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* img_fuwafuwa */
  .img_box {
    animation: img_box_9955 3s linear infinite;
    transform-origin: 50% 50%;
    margin: 100px 0 0 0;
    padding: 0 0 0 20px;
    height: 400px;
  }

  .img_box2 {
    animation: img_box_9966 4s linear infinite;
    transform-origin: 50% 50%;
    margin: 50px 0 0 0;
    padding: 0 0 0 20px;
    height: 400px;
  }

  .img_box3 {
    animation: img_box_9977 5s linear infinite;
    transform-origin: 50% 50%;
    margin: 0;
    padding: 0 0 0 20px;
    height: 400px;
  }

  @keyframes img_box_9955 {
    0% {
      transform: translateY(0)
    }

    33.33333% {
      transform: translateY(-5px)
    }

    66.66667% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }

  @keyframes img_box_9966 {
    0% {
      transform: translateY(0)
    }

    33.33333% {
      transform: translateY(5px)
    }

    66.66667% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }

  @keyframes img_box_9977 {
    0% {
      transform: translateY(0)
    }

    33.33333% {
      transform: translateY(-5px)
    }

    66.66667% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }


  /* fluffy fuwafuwa */
  .fluffy {
    margin-top: -50px;
    animation: fluffy1 3s ease infinite;
    position: relative;
    padding: 35px 0 0 0;
    width: 100px;
    height: 100px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-size: 16px;
    font-weight: bold;
    background-color: #f66;
    z-index: 1;
  }

  .fluffy .fa-angle-double-down {
    letter-spacing: 0em;
    font-size: 22px;
    font-weight: bold;
    background-color: #f66;
  }

  @keyframes fluffy1 {
    0% {
      transform: translateY(0)
    }

    5% {
      transform: translateY(0)
    }

    10% {
      transform: translateY(0)
    }

    20% {
      transform: translateY(-15px)
    }

    25% {
      transform: translateY(0)
    }

    30% {
      transform: translateY(-15px)
    }

    50% {
      transform: translateY(0)
    }

    100% {
      transform: translateY(0)
    }
  }

  .fluffy::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 40px;
    bottom: -12px;
    border-right: 20px solid #f66;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(-90deg);
  }

  /*about_background*/
  .area {
    background: #fff;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
  }

  .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    animation: animate 25s linear infinite;
    bottom: -150px;

  }

  .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    background: rgba(203, 72, 41, 0.5);
  }


  .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
    background: rgba(183, 170, 0, 0.5);
  }

  .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
    background: rgba(116, 58, 173, 0.5);
  }

  .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
    background: rgba(212, 236, 234, 0.5);
  }

  .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    background: rgba(173, 70, 58, 0.5);
  }

  .circles li:nth-child(6) {
    /*left: 75%;*/
    left: 65%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
    background: rgba(170, 207, 82, 0.5);
  }

  .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
    background: rgba(243, 152, 0, 0.5);
  }

  .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
    background: rgba(139, 173, 58, 0.5);
  }

  .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
    background: rgba(58, 116, 173, 0.5);
  }

  .circles li:nth-child(10) {
    left: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
    background: rgba(90, 165, 114, 0.5);
  }

  @keyframes animate {

    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
    }

    100% {
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
    }

  }


  


  

  

}