

/***********************
    1.BASIC
    2.HELPER
    3.NAVBAR
    4.HOME
    5.ABOUT 
    6.SERVICES
    7.CLIENT
    8.WORK
    9.CONTACT
    10.FOOTER
    11.RESPONSIVE
************************/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600|Nunito:400,600,700'); 

/*======================
        1.BASIC
========================*/
html,
body{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
}

.warp {
    overflow: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

a,
a:hover,
a:focus {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
}



img {
    max-width: 100%;
}



/* .back_top {
    text-align: center;
    position: fixed;
    bottom: 15px;
    height: 35px;
    width: 35px;
    display: none;
    z-index: 10000;
    border-radius: 3px;
    right: 20px;
    transition: all 0.5s;
} */

/* .back_top i {
    color: #fff;
    line-height: 35px;
    font-size: 32px;
    display: block;
} */


/*==========================
        2.HELPER
============================*/


.section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.inner {
    width:1200px;
    max-width: 100%;
    margin: 0 auto;
    height: inherit;
}

.h-100vh {
    height: 100vh;
}

.z-index {
    z-index: 2;
}

.clippath_none {
    clip-path: none !important;
}

.section-subtitle {
    max-width: 500px;
}

.btn {
    padding: 15px 32px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.5s;
    letter-spacing: 0.6px;
    color: #fff;
    box-shadow: none !important;
    text-transform: uppercase;
    outline: none !important;
}

.btn-round {
    border-radius: 30px;
}

.btn-custom{
    border:1px solid;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active,
.btn-custom.focus,
.btn-custom:active,
.btn-custom:focus,
.btn-custom:hover,
.open > .dropdown-toggle.btn-custom {
    color: #f3f3f3;
}

.btn-outline-custom {
    border: 2px solid #f5f5f5;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active,
.btn-outline-custom.active,
.btn-outline-custom.focus,
.btn-outline-custom:active,
.btn-outline-custom:focus,
.btn-outline-custom:hover,
.open > .dropdown-toggle.btn-outline-custom {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

.bg-overlay {
    background-color: rgba(0, 0, 0, 0.69);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.text-muted {
    color: #6c757d!important;
    line-height: 1.9;
}


 .header {
   position: fixed;
   top: 0px;
   left:0px;
   width:100%;
   height:100px;
   z-index: 100;
   background:#fff;
   box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
} 

.header__inner {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}

.header__logo {
    margin: 0;
    line-height: 1;
  }

.header__logo img {
    width: 300px;
    vertical-align: middle;
}

.header__nav {
    margin-left: auto;
}

.header__nav ul {
    list-style: none;
    padding: 0 auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header__nav ul li {
    margin-right: 40px;
  }
  
  .header__nav ul li:last-child {
    margin-right: 0;
  }
  
  .header__nav ul li a {
    color:#333;
    display: block;
    position: relative;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease 0s;
  }

  .header__nav ul li a:hover {
      color:blue;
  }

  .drawer-icon {
    position: fixed;
    top: 25px;
    right: 40px;
    z-index: 300;
    transition: all 0.5 ease 0s;
    display: none;
  }
  
  .drawer-icon.is-active {
    transform: translateX(-200px);
  }
  
  .drawer-icon.is-active .drawer-icon__bar1 {
    transform: rotate(-45deg);
    top: 8px;
  }
  
  .drawer-icon.is-active .drawer-icon__bar2 {
    display: none;
  }
  
  .drawer-icon.is-active .drawer-icon__bar3 {
    transform: rotate(45deg);
    top: 8px;
  }
  
  .drawer-icon__bars {
    width: 22px;
    height: 20px;
    display: block;
    position: relative;
  }
  
  .drawer-icon__bar1,
  .drawer-icon__bar2,
  .drawer-icon__bar3 {
    position: absolute;
    width: 22px;
    height: 4px;
    background: #333;
    top: 0;
    left: 0;
  }
  
  .drawer-icon__bar1 {
    top: 0;
  }
  
  .drawer-icon__bar2 {
    top: 8px;
  }
  
  .drawer-icon__bar3 {
    top: 16px;
  }
  
  .drawer-content {
    width: 200px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    z-index: 299;
    transform: translateX(105%);
    transition: all 0.5 ease 0s;
  }
  
  .drawer-content.is-active {
    transform: translateX(0);
  }
  
  .drawer-content__item {
    border-bottom: 1px dotted #707070;
  }
  
  .drawer-content__item a {
    display: block;
    color: #707070;
    text-decoration: none;
    padding: 18px 20px;
  }
  
  

  .drawer-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 126, 194, 0.8);
    z-index: 298;
    display: none;
  }
  
  .drawer-background.is-active {
    display: block;
  }



/*===========================
        4.HOME
=============================*/

.header-bg-img {
    background-image: url(../images/top.jpg);
    position: relative;
    background-size: cover;
    background-position: center center;
    filter: brightness(200%);
    height:600px;
    margin-top: 100px;
}

/* .header-content {
    max-width: 800px;
}  */

.header-table-center {
    display: table-cell;
    vertical-align: middle;
}

 .header-table {
    display: table;
    width: 100%;
    height: 100%;
}



.header-desc {
    max-width: 500px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75) !important;
}



/*HOME 4*/

.curv-img {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 1;
} 

.curv-img svg {
    display: block;
} 

/*HOME 7*/

.clip-home {
    clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 0 83%);
    position: relative;
}

/*DEMO 16*/

.wave_sec {
  position: absolute;
  bottom: 0;
  width: 100%;
} 

.wave_sec svg {
  height: 180px;
} 

 .header-table-center {
    display: table-cell;
    vertical-align: middle;
}

.header-table {
    display: table;
    width: 100%;
    height: 100%;
} 


.text-1 {
    color:#fff;
    animation-name: fade-in;
    animation-duration: 5s;
    width:auto;
    height:auto;
    font-size: 35px;
    white-space: nowrap;
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
/*===========================
        5.ABOUT
=============================*/

.about-social li a {
    color: #000;
    display: inline-block;
    height: 42px;
    width: 42px;
    font-size: 20px;
    border-radius: 50%;
    border: 2px solid #d4d4d4;
    line-height: 38px;
    transition: all 0.5s;
    text-align: center;
}


/*===========================
        6.SERVICE
=============================*/

table{
    width: 60%;
    border-collapse: collapse;
    margin: 0 auto;
  }
  
  table tr{
    border-bottom: solid 5px white;
  }
  
  table tr:last-child{
    border-bottom: none;
  }
  
  table th{
    position: relative;
    text-align: center;
    width: 10%;
    background-color: #5e7a7e;
    color: white;
    text-align: center;
    padding: 10px 0;
  }

  .table td {
      vertical-align: middle;
  }
  
  table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  
  table td{
    text-align: left;
    width: 30%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
  }

  




/*===========================
        7.CLIENT
=============================*/

/* .testi_boxes {
    max-width: 750px;
}

.client_review {
    font-size: 18px;
}

.client_name {
    font-size: 16px;
}

.testi_boxes .tam_testi_icon {
    font-size: 50px;
}

.owl-theme .owl-controls .owl-page {
    margin: 20px 0px;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 6px;
    margin: 5px 4px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    transition: all 0.5s;
}

.owl-theme .owl-controls .owl-page.active span {
    width: 20px;
} */


/*===========================
        8.WORK
=============================*/

 /* .work_menu li a {
    cursor: pointer;
    display: block;
    color: #000;
    border-radius: 30px;
    letter-spacing: 0.03em;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    transition: all 0.5s;
    margin-top: 5px;
} 

.work_menu a.active,
.work_menu a:hover {
    color: #fff !important;
}

.work_item {
    position: relative;
    padding: 15px;
}

.work_box {
    overflow: hidden;
    position: relative;
}

.work_box .work_img {
    position: relative;
    overflow: hidden;
}

.work_box .work_img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.work_box .work_img>img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}

.work_box .work_detail {
    opacity: 0;
    color: #ffffff;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.work_box .work_detail h4 {
    font-size: 18px;
}

.work_box .work_detail p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.work_box:hover .work_detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}

.work_box:hover .work_img:after {
    background: rgba(0, 0, 0, 0.8);
}

.work_box:hover .work_img>img {
    transform: scale(1.05);
}

#works {
    padding-top: 50px;
} */

.sample {
    display: flex;
    flex-wrap:wrap;
}

.thumbnail {
    display: inline-block;
    height:80px;
    margin-right: 10px;
}

.thumbnail img {
    height: 80px;
    width:80px;
    object-fit: cover;
}

h5 {
    position: relative;
    padding: 25px 0;
}

h5::after {
    content:"";
    display: block;
    height: 4px;
    width: 200px;
    background: -webkit-linear-gradient(to right, rgb(51, 5, 214),transparent);
    background: linear-gradient(to right, rgb(51, 5, 214),transparent);
}

.sample-item a {
    transition: all 0.3s ease 0s;
}

.sample-item a:hover {
    opacity: 0.7;
}

.modal {
    position: fixed;
    top:0;
    width:100%;
    height: 100vh;
    display: none;
    
}

.modal__bg {
    width:100%;
    height: 120vh;
    position: absolute;
    background-color: rgba(3, 3, 3, 0.9);
}

.modal__content {
    left:50%;
    padding:40px;
    position: absolute;
    top:50%;
    transform: translate(-50%, -50%);
    width:25%;

}

.js-modal-close{
    color: #fff;
    font-size: 30px;
    right:0px;
    top:0px;
    position: absolute;
}

.js-modal-close a {
    color: #fff;
    text-decoration: none;
}



 .table .table-header  {
    padding-top:27px;
} 

#client {
    background:rgb(85, 83, 83);
    color: #fff;
    padding-bottom: 20px;
    padding-top: 20px;
}

.business-partner {
    padding-top: 10px;
    font-size: 20px;
}

/*=========================
        9.CONTACT
===========================*/

.main-title {
    padding-bottom: 15px;
}

.sub-title {
 border-bottom: solid 2px blue;
 margin-bottom: 15px;
}
#location {
    padding: 4% 0;
}
#location .wrapper {
    display: flex;
    justify-content: space-between;
}
.location-info {
    width:25%;
    margin-left: 70px;
    margin-right: 50px;
}
br {
    display: block;
    content:"";
    padding:5px 0;
}
.loctaion-info p {
    padding: 15px 15px;
}
.location-map {
    width:70%;   
}

iframe {
    width:90%;
}

/* footer
======================== */
.footer{
    width:100%;
}
#setubi {
    background-color: rgb(19, 17, 17);
    color:#fff;
    padding:20px 0;
}
.takumi {
    margin: auto;
}

.br-sp {
    display:none;
}

/*===========================
        11.RESPONSIVE
=============================*/

@media screen and (max-width: 767px) {

  
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
        position: relative;
        background-color: #fff;
    }


    .header {
        height:60px;
    
    }
    .inner {
        padding-left: 16px;
        padding-right: 16px;
    }
    a {
    font-size: 17px;
    text-decoration: none;
    }



   img {
       max-width:100%;
       height:auto;
       border:none;
   }

   .header__logo img {
       width:200px;
       margin-left: 30px;
       margin-top: 13px;
   }

   .header__nav {
       display: none;
   }
       
    .text-1 {
        font-size: 12px;
        animation-name: fade-in;
    }

    @keyframes fade-in {
        from {
            opacity: 0;
            transform: translateY(50px); 
        }
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
    
    .logo {
        width: 85%;
        margin-left: 40px;
    }

    .drawer-icon {
        display: block;
    }

    .drawer-content__item a {
      font-size: 13px;
      }

    .drawer-content__item a:hover {
        color: blue;
      }
    /* .custom-nav {
        background-color: #fff !important; 
         padding: 10px 0px !important;
    }
    .custom-nav .container {
        width: 70%;
    }
    .custom-nav .navbar-toggler {
        color: rgb(0, 0, 0);
        font-size: 32px;
        border:none;
    }

    .custom-nav .logo .logo-dark {
        display: inline-block;
    }
    .custom-nav .navbar-nav li a {
        color: rgba(0, 0, 0, 0.6) !important;
        font-size: 11px;
    }

    .custom-nav .logo .logo-light {
        display: none;
    } */
    
     /* .h-100vh {
        height: auto;
        padding: 100px 0 100px;
    } */
    .header-bg-img {
        height: 200px;
        margin-top:80px
    }
    /* .wave-home.h-100vh{
        height: auto;
        padding: 100px 0 100px;
    }  */
    /* .custom-nav .navbar-nav li a {
        margin: 0 0px;
        line-height: 15px;
    } */
    /* .header-name {
        font-size: 38px;
    } */
    /* .clip-home{
        clip-path: none;
    } */ 

    .header-bg-img {
        width:100%;
    }

    .main-title {
         font-size: 20px;
    } 

     .section-title {
        font-size: 15px;
    } 
    
   .sample {
       padding-left:25px;
   }

   h5 {
       padding-left: 25px;
   }

    .thumbnail img {
        height: 70px;
        width:70px;
        object-fit: cover;
       
    }

    .modal__content {
        left:50%;
        padding:40px;
        position: absolute;
        top:50%;
        transform: translate(-50%, -50%);
        width:70%;
    }

    .js-modal-close{
        color: #fff;
        font-size: 30px;
        right:0%;
        top: 0%;
    }
    
    .js-modal-close a {
        color: #fff;
        text-decoration: none;
        
    }

    p {
        font-size: 8px;
    }

    h5 {
        font-size: 10px;
    }

.business-partner {
    font-size: 10px;
    padding-top: 5px;
}

    .text-muted {
        font-size: 11px;
        line-height: 1.7;
    }

    .name {
        font-size: 12px;
    }

    .table {
        width:auto;
        display: block;
        line-height: 1.7;
    }

    .table tr  th{
        font-size: 10px;
        vertical-align: middle;
    }

    .table tr td {
        font-size: 10px;
        border-collapse: collapse;
    }

   .address {
       word-break: keep-all;
   }

   td {
       line-height: 1.5;
   }
    
   td br {
       line-height: 1.5;
   }
    
  .br-sp {
        display:block;
    }
    
    
    #location .wrapper {
        flex-direction: column;
    }
    .sub-title {
        font-size: 23px;
    }

    .location-info {
        width:67%;
        text-align: center;
        font-size: 12px;
    }
    .location-map {
        position: relative;
        width: 100%;
        padding-top: 67%; /* = height ÷ width × 100 */
    }
    .location-map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .footer {
        font-size: 11px;
        text-align: center;
    }
}

@media (max-width: 2560px) {
    .home-bg .curv-img {
        bottom: -5px;
    } 
} 