@charset "utf-8";

* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
  }

    /* ハンバーガーメニュー */
/*------------------------------------
ハンバーガースクロール固定↓
------------------------------------*/
html.is-fixed,
html.is-fixed {
    height: 100%;
    overflow: hidden;
}
/*------------------------------------
header↓
------------------------------------*/

header .nav_box {
    display: flex;
    align-items: center;
    height: 100px;
}

header .nav_box .crumbs ul {
    display: flex;
    align-items: center;
    list-style: none;
}
 header .nav_box .crumbs ul li {
    font-weight: 700;
    margin-right: 60px;
}

.logo img{
    width: 70px;
    height: auto;
    padding-top: 25px;
}
    
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: .3s;
    background-color: #ffffff;
}

header .nav_box .crumbs ol li:last-of-type {
    margin-right: 0;
}

header .logo{
    margin-left: 20px;
}

.animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 2.0s;
    width: 128px;
  }
  
  .keyframe1{
    animation-name: anim_v;
  }
  
  @keyframes anim_v {
    0% {
      transform: translate(0, 0px);
    }
    100% {
      transform: translate(0, 10px);
    }
  }

header .nav_main_box{
    margin-right: 20px;
}
/*------------------------------------
ハンバーガーメニュー↓
------------------------------------*/
#hamburger #gNav .gNav-menu .orange_color_sp {
    font-size: 23px;
    color:#7BAA17;
    font-weight: 700;
}
#hamburger .btn-gNav {
    position: absolute;
    top: 50px;
    right: 44px;
    width: 35px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
#hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #282828;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
#hamburger .open {
    position: fixed;
}
#hamburger .btn-gNav span:nth-child(1) {
    top: 0px;
}
#hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}
#hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}
#hamburger .btn-gNav.open span:nth-child(1) {
    background: #282828;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
    margin-top: 15px;
}
#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background:#282828;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
    margin-top: 15px;
}

#hamburger #gNav .gNav-menu li:nth-child(2) {
    margin-top: 100px;
}
#hamburger #gNav .gNav-menu li {
    font-weight: 800;
}
/* テキストカラー */
#hamburger #gNav .gNav-menu .left_in_right a:hover {
    color:  #7BAA17;
}
#gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
    padding-top: 50px;
    transition: .3s;
}
#gNav.open {
    right: 0px;
}
#gNav .gNav-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-left: 0;
}
#gNav .gNav-menu li {
    display: block;
    padding : 30px 30px;
    height: 20px;
}
#gNav .gNav-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
}
.fa-chevron-circle-down {
    color: #7BAA17;
    margin-left: 6px;
}
/*------------------------------------
ハンバーガーメニュー↓@media screen and
------------------------------------*/
@media screen and (max-width: 1150px) {
    .nav_main_box {
      display: none;
    }
}
@media screen and (min-width: 1149px) {
    .btn-gNav {
        display: none;
    }
    #gNav {
        position: fixed;
        top: 0;
        right: 0;
        height: 67px;
        display: none;
    }
    #gNav .gNav-menu {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 33px;
        position: fixed;
        top: 0;
        right: 0;
        padding-left: 50px;
    }
    #gNav .gNav-menu li {
        padding-top: 5px;
    }
}
/*------------------------------------
ホバー時アンダーライン↓
------------------------------------*/
.left_in_right a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
}
/* 下線カラー */
.left_in_right a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background:  #7BAA17;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.left_in_right a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}
/* テキストカラー */
.left_in_right a:hover {
    color:  #7BAA17;
}


/* main */
.top{
    padding-top: 180px;
}

.flex-box2{
    display: none;
}
.tag,.tag02{
    display: flex;
    margin-bottom: 20px;
}

.tag img,.tag02 img{
    width: 150px;
    height: 40px;
    
}

.tag02{
    margin-bottom: 80px;
}

.wrap p{
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.moku{
    width: 100%;
    padding: 10px;
}

.moku p{
    padding: 0 30px;
    font-size: 1.3rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;  
}

/* title animation */
h1{
    text-align: center;
    font-size: 2.2rem;
    font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;  
}

/*見やすくするためのCSS*/
.wrap {
    margin: 0 auto;
    max-width: 100%;
  }
  
  /*タイピング*/
  .typing {
    letter-spacing: 0.2em;
    word-break : break-all;
  }
  
  /*jsで生成されるspanタグ*/
  .typing span{
      display: none;
  }
  
  /*|カーソルを表示*/
  .typing:after {
    content: "|";
    animation: typingCursor .8s ease infinite;
  }
  
  @keyframes typingCursor {
    from{
      opacity:0;
    }
    to{
      opacity:1
    }
  }
/* フェードイン */   
.js-fadeUp img{
    width: 100%;
    padding-top: 30px;
}

  .js-fadeUp {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(30px); /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
  }
  /* フェードイン(スクロールした後) */
  .js-fadeUp.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateY(0); /* 30px上に移動する */
    transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
  }

  
 
/* top-container*/

.top-container{
    width: 90%;
    margin-top: 100px;
    
    .box-right{
        width: 100%;
        img{
            margin-top: 30px;
            width: 100px;
        }
    }
    .flex{
        display: flex;
        border-bottom: 2px solid rgb(176, 175, 175);
        align-items:flex-end;
        dt{
            width: 20%;
        }
        .syousai{
            width: 70%;
            font-size: 1.2rem;
            padding: 10px 20px;
        }
    }
} 





/* Works-List */
#Works-List{
    margin-top: 150px;
    padding: 50px 0;
    background: #000;
    color: white;
}
#Works-List a{
    color: white;}

#Works-List h2{
    font-family: "Black Ops One", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  text-align: center;
}

#Works-List img{
    width: 80%;
  }
  
  .item{
    margin-top: 70px;
    text-align: center;
    cursor: pointer;
    max-width: 500px;
    overflow: hidden;
    width: 100%;
}
.item img {
    padding: 5px;
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.item:hover img {
  transform: scale(1.1); /* 拡大 */
}
/* mail */
.mail{
    padding-top: 30px;
    img{
        width:50px;
        display: block;
    }
}
.mail a{
    display: block;
    text-align: center;
    color:black;
    font-size:  1.6rem;
    font-family: "Electrolize", serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
    margin: 10px; 
  }
  

/*====================================================================
footer
====================================================================*/
footer{
    width: 100%;
    background: #000;
    color:white;
    text-align: center;
    padding: 50px 0 0 0;
  }

  /* メディアクエリ */

@media (min-width: 767px) {
    .logo img{
        width: 100px;
        height: auto;
    }

    .moku{
        width: 80%;
        display: block;
    }
    .flex-box{
        display: none;
    }

    .flex-box2{
        display: block;
        text-align: center;
        img{
            width: 150px;
            height: 40px;
            margin:0 30px 70px 30px;
        }
    }

    .top-container{
        width: 100%;
    }

    
    .js-fadeUp{
        display: flex;
        width: 100%;
        img{
        width: 25%;
        padding: 25px;
        margin-top: 40px;
        }
    } 
    
    .box-right{
        width: 40%;
        margin-top: 20px;
       } 
    .flex{
        width: 50%;
        dt{
            width: 20%;
        }
  
    }
.moku p{
    text-align: center;
}

.bg{
    width: 30%;
    height: 300px;
}

.color{
    width: 60%;
    height: 300px;
}

    .work01,.work02,.work03,.work04{
        display: flex;
        width: 90%;
        }

        .item img{
            width: 400px;
            height: 300px;
            object-fit: cover;
            padding: 10px;
        }

    .mail a{
        font-size: 110px;
    }

    .mail img{
            width:100px;
        }
    
  }