@charset "UTF-8";
/*PCサイズレスポンシブ*/
@media(min-width:1000px) {

    /* PCcss */
body{
    background-color: #f0f0f0;
    min-width: 1000px;
}
.container{
    width: 100%;
}
/* ハンバーガーメニューここから */
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #9dc1a7;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #9dc1a7;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #ffffff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-size: 20px;
}
#g-nav li a:hover{
    color: cadetblue;
}
#g-nav li a:active{
    color: brown;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:15px;
	right: 20px;
    /* ボタンの位置 */
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* ハンバーガーここまで */
.header{
    display: flex;
    width: 100%;
    height: 70px;
}
.header1{
width: 15%;
margin-left: 2%;
}
.header1 img{
    width: 100%;
    margin: 10px 0;
}
.header2{
    width: 50%;
    margin-left: 5%;
}
.header2 ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 25px 0;
    padding: 0;
}
.header2 li{
    font-size: 18px;
}
.header2 a{
    text-decoration: none;
    color: black;
}
.header2 a:hover{
    color: coral;
}
.header2 a:active{
    color: red;
}
.header3{
    width: 250px;
    height: 65px;
    margin-right: 3%;
    position:fixed;
	top:15px;
	right: 20px;
    z-index: 500;
}
/* ここからボタン */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.5rem 5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
    background-color: #edbf2f;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background-color: chocolate;
}
.btn--orange:active,
a.btn--orange:active{
    background-color: brown;
}
a.btn--radius {
  border-radius: 100vh;
}
/* ボタンコピペここまで */
.top{
    width: 100%;
    height: 500px;
    font-family: "ta-koigokoro", sans-serif;
font-weight: 400;
font-style: normal;
}
.top1{
    text-align: center;
    margin-right: 30%;
    margin-top: 170px;
    font-size: xx-large;
    font-weight: lighter;
    position: relative;
}
.top1 h1{
    line-height: 100px;
    animation-name:blurAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    font-size: 55px;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    transform: scale(1.02);
    }
  
    to {
    filter: blur(0);
    transform: scale(1);
    }
  }
.top2{
text-align: right;
margin-right: 5%;
margin-top: 50px;
position: absolute;
top: 300px;
right: 5%;
}
.concept{
    height: 800px;
    width: 100%;
    background-image: url(../img/back.png);
    background-size: cover;
    font-family: "ta-koigokoro", sans-serif;
font-weight: 400;
font-style: normal;
text-align: center;
align-items: center;
}
.concept h2{
    font-size: 40px;
    line-height: 70px;
width: 100%;
margin: 0 auto;
padding-top: 200px;
}
.concept h3{
    font-size: 30px;
    line-height: 40px;
    padding-top: 70px;
    font-weight: lighter;
}
.title{
    text-align: center;
    width: 30%;
    font-size: 20px;
    padding-top: 80px;
    padding-bottom: 10px;
}
.menu{
    width: 100%;
    height: 500px;
}
.menu1{
    width: 100%;
    height: 300px;
    margin: 0 auto;
}
.menu1 ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
}
.menu1 img{
    width: 300px;
    height: 300px;
}
.menu2{
    width: 100%;
    height: 200px;
    /* font-family: "ta-koigokoro", sans-serif; */
    /* font-weight: 400; */
    /* font-style: normal; */
    text-align: center;
    font-size: 20px;
    line-height: 35px;
}
/* ボタン製作実績ここから */
a.btn-malformation {
  font-size: 25px;
  padding: 2rem 4rem;
  margin-top: 10px;
  color: #fff;
  border-radius: 100% 80px / 80px 100%;
  background-color: #9dc1a7;
}

a.btn-malformation:hover {
  color: #fff;
  border-radius: 60% 80% / 100% 80%;
  background-color: cadetblue;
}
a.btn-malformation:active {
    background-color: brown;
}
/* ここまで */
.nagare{
    width: 100%;
    height: 500px;
    /* position: relative; */
    display: flex;
}
/* ここから数字*/
.nagare1 {
    width: 50%;
    counter-reset:number; /*数字をリセット*/
    list-style-type: none!important; /*数字を一旦消す*/
    padding:0.5em;
  }
  .nagare1 ul{
    list-style-type: none;
  }
  .nagare1 li {
    width: 100%;
    font-size: 20px;
    line-height: 60px;
    position: relative;
    padding-left: 30px;
    padding: 0.5em 0.5em 0.5em 60px;
  }
  
  .nagare1 li:before{
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: counter(number);
    /*以下数字のデザイン変える*/
    display:inline-block;
  background-color: #9dc1a7;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    /*以下 上下中央寄せのため*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  /* ここまで数字 */
  .nagare2{
    width: 50%;
  }
  /* スライド */
  #slider {
    width: 80%;
    height: 400px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    /* margin-left: 50%; */
    /* position: absolute; */
    /* top: 120px; */
}
/* ここまでスライド */
.myself{
    width: 100%;
    display: flex;
    margin-top: 10px;
    margin-bottom: 80px;
}
.myself1{
    width: 50%;
    text-align: center;
    margin: 0 auto;
    /* background-color: #edbf2f; */
}
.myself2{
width: 50%;
/* background-color: aqua; */
}
.myself2 h4{
    font-size: 40px;
}
.myself2 p{
    font-size: 20px;
}
/* MOREボタンここから */
.btn--green,
a.btn--green {
  color: #fff;
  background-color: #9dc1a7;
}
.btn--green:hover,
a.btn--green:hover {
  color: #fff;
  background: cadetblue;
}
.btn--green:active,
a.btn--green:active {
  color: #fff;
  background: brown;
}
a.btn--radius1 {
   border-radius: 100vh;
}
/* ここまで */
.footer{
    width: 100%;
    text-align: center;
}
.footer1{
    width: 50%;
    height: 80px;
    margin: 0 auto;
    /* background-color: blueviolet; */
}
.footer1 img{
 height: 80px;
}
}

/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
        background-color: #f0f0f0;

    }

    .container {
        width: 100%;
    }

    /* PCcss */
    /* ハンバーガーメニューここから */
    /*========= ナビゲーションのためのCSS ===============*/
    
    /*アクティブになったエリア*/
    #g-nav.panelactive{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        top: 0;
        width:100%;
        height: 100vh;
    }
    
    /*丸の拡大*/
    .circle-bg{
        position: fixed;
        z-index:3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #9dc1a7;
        /*丸のスタート位置と形状*/
        transform: scale(0);/*scaleをはじめは0に*/
        right:-50px;
        top:-50px;
        transition: all .6s;/*0.6秒かけてアニメーション*/
    }
    
    .circle-bg.circleactive{
        transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
        display: none;/*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background-color: #9dc1a7;
    }
    
    #g-nav.panelactive #g-nav-list{
         display: block; /*クラスが付与されたら出現*/
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;/*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity:1;
    }
    
    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li{
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
    
    
    /*リストのレイアウト設定*/
    #g-nav li{
        text-align: center; 
        list-style: none;
    }
    
    #g-nav li a{
        color: #ffffff;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 20px;
    }
    #g-nav li a:hover{
        color: cadetblue;
    }
    #g-nav li a:active{
        color: brown;
    }
    
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        top:15px;
        right: 20px;
        /* ボタンの位置 */
        z-index: 9999;/*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    /* ハンバーガーここまで */
    .header{
        display: flex;
        width: 100%;
        height: 70px;
    }
    .header1{
    width: 15%;
    margin-left: 2%;
    }
    .header1 img{
        width: 100%;
        margin: 10px 0;
    }
    .header2{
        width: 50%;
        margin-left: 5%;
        display: none;
    }
    .header2 ul{
        display: flex;
        justify-content: space-around;
        list-style: none;
        margin: 25px 0;
        padding: 0;
    }
    .header2 li{
        font-size: 18px;
    }
    .header2 a{
        text-decoration: none;
        color: black;
    }
    .header2 a:hover{
        color: coral;
    }
    .header2 a:active{
        color: red;
    }
    .header3{
        width: 250px;
        height: 65px;
        margin-right: 3%;
        position:fixed;
        top:15px;
        right: 20px;
        z-index: 500;
    }
    /* ここからボタン */
    *,
    *:before,
    *:after {
      -webkit-box-sizing: inherit;
      box-sizing: inherit;
    }
    
    html {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      font-size: 62.5%;
    }
    
    .btn,
    a.btn,
    button.btn {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.5;
      position: relative;
      display: inline-block;
      padding: 1.5rem 5rem;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      text-align: center;
      vertical-align: middle;
      text-decoration: none;
      letter-spacing: 0.1em;
      color: #212529;
      border-radius: 0.5rem;
    }
    
    .btn--orange,
    a.btn--orange {
      color: #fff;
        background-color: #edbf2f;
    }
    
    .btn--orange:hover,
    a.btn--orange:hover {
      color: #fff;
      background-color: chocolate;
    }
    .btn--orange:active,
    a.btn--orange:active{
        background-color: brown;
    }
    a.btn--radius {
      border-radius: 100vh;
    }
    /* ボタンコピペここまで */
    .top{
        width: 100%;
        height: 500px;
        font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
    .top1{
        text-align: center;
        margin-right: 30%;
        margin-top: 170px;
        font-size: 18px;
        font-weight: lighter;
        position: relative;
    }
    .top1 h1{
        line-height: 60px;
        animation-name:blurAnime;
        animation-duration:2s;
        animation-fill-mode:forwards;
      }
      
      @keyframes blurAnime{
        from {
        filter: blur(10px);
        transform: scale(1.02);
        }
      
        to {
        filter: blur(0);
        transform: scale(1);
        }
      }
    .top2{
    text-align: right;
    margin-right: 5%;
    margin-top: 50px;
    position: absolute;
    top: 300px;
    right: 5%;
    }
    .concept{
        height: 800px;
        width: 100%;
        background-image: url(../img/back.png);
        background-size: cover;
        font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    align-items: center;
    }
    .concept h2{
        font-size: 30px;
        line-height: 70px;
    width: 100%;
    margin: 0 auto;
    padding-top: 200px;
    }
    .concept h3{
        font-size: 20px;
        line-height: 40px;
        padding-top: 70px;
        font-weight: lighter;
    }
    .title{
        text-align: center;
        width: 30%;
        font-size: 15px;
        padding-top: 80px;
        padding-bottom: 10px;
    }
    .menu{
        width: 100%;
        height: 500px;
    }
    .menu1{
        width: 100%;
        height: 180px;
        margin: 0 auto;
    }
    .menu1 ul{
        display: flex;
        justify-content: space-around;
        list-style: none;
        padding: 0;
    }
    .menu1 img{
        width: 180px;
        height: 180px;
    }
    .menu2{
        width: 100%;
        height: 200px;
        /* font-family: "ta-koigokoro", sans-serif; */
        /* font-weight: 400; */
        /* font-style: normal; */
        text-align: center;
        font-size: 15px;
        line-height: 35px;
    }
    /* ボタン製作実績ここから */
    a.btn-malformation {
      font-size: 20px;
      padding: 2rem 4rem;
      margin-top: 10px;
      color: #fff;
      border-radius: 100% 80px / 80px 100%;
      background-color: #9dc1a7;
    }
    
    a.btn-malformation:hover {
      color: #fff;
      border-radius: 60% 80% / 100% 80%;
      background-color: cadetblue;
    }
    a.btn-malformation:active {
        background-color: brown;
    }
    /* ここまで */
    .nagare{
        width: 100%;
        height: 500px;
        /* position: relative; */
        display: flex;
    }
    /* ここから数字*/
    .nagare1 {
        width: 50%;
        counter-reset:number; /*数字をリセット*/
        list-style-type: none!important; /*数字を一旦消す*/
        padding:0.5em;
      }
      .nagare1 ul{
        list-style-type: none;
      }
      .nagare1 li {
        width: 100%;
        font-size: 16px;
        line-height: 60px;
        position: relative;
        padding-left: 30px;
        padding: 0.5em 0.5em 0.5em 60px;
      }
      
      .nagare1 li:before{
        /* 以下数字をつける */
        position: absolute;
        counter-increment: number;
        content: counter(number);
        /*以下数字のデザイン変える*/
        display:inline-block;
      background-color: #9dc1a7;
        color: white;
        font-size: 20px;
        border-radius: 50%;
        left: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        /*以下 上下中央寄せのため*/
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
      }
      /* ここまで数字 */
      .nagare2{
        width: 50%;
      }
      /* スライド */
      #slider {
        width: 80%;
        height: 400px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        /* margin-left: 50%; */
        /* position: absolute; */
        /* top: 120px; */
    }
    /* ここまでスライド */
    .myself{
        width: 100%;
        display: flex;
        margin-top: 10px;
        margin-bottom: 80px;
    }
    .myself1{
        width: 40%;
        text-align: center;
        margin: 0 auto;
        /* background-color: #edbf2f; */
    }
    .myself1 img{
        width: 80%;
    }
    .myself2{
    width: 60%;
    /* background-color: aqua; */
    }
    .myself2 h4{
        font-size: 30px;
    }
    .myself2 p{
        font-size: 15px;
    }
    /* MOREボタンここから */
    .btn--green,
    a.btn--green {
      color: #fff;
      background-color: #9dc1a7;
    }
    .btn--green:hover,
    a.btn--green:hover {
      color: #fff;
      background: cadetblue;
    }
    .btn--green:active,
    a.btn--green:active {
      color: #fff;
      background: brown;
    }
    a.btn--radius1 {
       border-radius: 100vh;
    }
    /* ここまで */
    .footer{
        width: 100%;
        text-align: center;
    }
    .footer1{
        width: 50%;
        height: 80px;
        margin: 0 auto;
        /* background-color: blueviolet; */
    }
    .footer1 img{
     height: 60px;
    }

}

/*SPサイズレスポンシブ*/
@media (max-width:599px) {
    body {
        max-width: 599px;
        background-color: #f0f0f0;

    }

    .container {
        width: 100%;
    }

    /* タブレットcss */
  
    /* PCcss */
    /* ハンバーガーメニューここから */
    /*========= ナビゲーションのためのCSS ===============*/
    
    /*アクティブになったエリア*/
    #g-nav.panelactive{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        top: 0;
        width:100%;
        height: 100vh;
    }
    
    /*丸の拡大*/
    .circle-bg{
        position: fixed;
        z-index:3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #9dc1a7;
        /*丸のスタート位置と形状*/
        transform: scale(0);/*scaleをはじめは0に*/
        right:-50px;
        top:-50px;
        transition: all .6s;/*0.6秒かけてアニメーション*/
    }
    
    .circle-bg.circleactive{
        transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
        display: none;/*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background-color: #9dc1a7;
    }
    
    #g-nav.panelactive #g-nav-list{
         display: block; /*クラスが付与されたら出現*/
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;/*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity:1;
    }
    
    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li{
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
    
    
    /*リストのレイアウト設定*/
    #g-nav li{
        text-align: center; 
        list-style: none;
    }
    
    #g-nav li a{
        color: #ffffff;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 20px;
    }
    #g-nav li a:hover{
        color: cadetblue;
    }
    #g-nav li a:active{
        color: brown;
    }
    
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        right: 20px;
        /* ボタンの位置 */
        z-index: 9999;/*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    /* ハンバーガーここまで */
    .header{
        display: flex;
        width: 100%;
        height: 70px;
    }
    .header1{
    width: 20%;
    margin-left: 2%;
    }
    .header1 img{
        width: 100%;
        margin: 10px 0;
    }
    .header2{
        width: 50%;
        margin-left: 5%;
        display: none;
    }
    .header2 ul{
        display: flex;
        justify-content: space-around;
        list-style: none;
        margin: 25px 0;
        padding: 0;
    }
    .header2 li{
        font-size: 18px;
    }
    .header2 a{
        text-decoration: none;
        color: black;
    }
    .header2 a:hover{
        color: coral;
    }
    .header2 a:active{
        color: red;
    }
    .header3{
        width: 50%;
        height: 65px;
        /* margin-right: 3%; */
        position:fixed;
        top:15px;
        right: 20px;
        z-index: 500;
    }
    /* ここからボタン */
    *,
    *:before,
    *:after {
      -webkit-box-sizing: inherit;
      box-sizing: inherit;
    }
    
    html {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      font-size: 62.5%;
    }
    
    .btn,
    a.btn,
    button.btn {
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      position: relative;
      display: inline-block;
      padding: 1.3rem 3rem;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      text-align: center;
      vertical-align: middle;
      text-decoration: none;
      letter-spacing: 0.1em;
      color: #212529;
      border-radius: 0.5rem;
    }
    
    .btn--orange,
    a.btn--orange {
      color: #fff;
        background-color: #edbf2f;
    }
    
    .btn--orange:hover,
    a.btn--orange:hover {
      color: #fff;
      background-color: chocolate;
    }
    .btn--orange:active,
    a.btn--orange:active{
        background-color: brown;
    }
    a.btn--radius {
      border-radius: 100vh;
    }
    /* ボタンコピペここまで */
    .top{
        width: 100%;
        height: 450px;
        font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
    .top1{
        width: 100%;
        text-align: center;
        margin-right: 20%;
        margin-top: 130px;
        font-size: 14px;
        font-weight: lighter;
        position: relative;
    }
    .top1 h1{
        line-height: 40px;
        animation-name:blurAnime;
        animation-duration:2s;
        animation-fill-mode:forwards;
      }
      
      @keyframes blurAnime{
        from {
        filter: blur(10px);
        transform: scale(1.02);
        }
      
        to {
        filter: blur(0);
        transform: scale(1);
        }
      }
    .top2{
    text-align: right;
    margin-top: 40px;
    position: absolute;
    top: 300px;
    right: 5%;
    }
    .top2 img{
        height: 200px;
    }
    .concept{
        height: 800px;
        width: 100%;
        background-image: url(../img/back.png);
        background-size: cover;
        font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* text-align: center; */
    align-items: center;
    }
    .concept h2{
        font-size: 20px;
        line-height: 70px;
    width: 65%;
    margin: 0 auto;
    padding-top: 150px;
    writing-mode: vertical-rl;
    }
    .concept h3{
        font-size: 14px;
        line-height: 40px;
        padding-top: 70px;
        font-weight: lighter;
        text-align: center;
    }
    .title{
        text-align: center;
        width: 30%;
        font-size: 12px;
        padding-top: 80px;
        padding-bottom: 10px;
    }
    .menu{
        width: 100%;
        height: 600px;
    }
    .menu1{
        width: 100%;
        height: 450px;
        margin: 0 auto;
    }
    .menu1 ul{
        display: flex;
        /* justify-content: space-around; */
        text-align: center;
        flex-direction: column;
        list-style: none;
        padding: 0;
    }
    .menu1 img{
        width: 160px;
        height: 160px;
    }
    .menu2{
        width: 100%;
        height: 200px;
        /* font-family: "ta-koigokoro", sans-serif; */
        /* font-weight: 400; */
        /* font-style: normal; */
        text-align: center;
        font-size: 13px;
        line-height: 35px;
    }
    .menu2 p{
        margin-top: 20px;
        margin-bottom: 0;
    }
    /* ボタン製作実績ここから */
    a.btn-malformation {
      font-size: 16px;
      padding: 2rem 4rem;
      margin-top: 10px;
      color: #fff;
      border-radius: 100% 80px / 80px 100%;
      background-color: #9dc1a7;
    }
    
    a.btn-malformation:hover {
      color: #fff;
      border-radius: 60% 80% / 100% 80%;
      background-color: cadetblue;
    }
    a.btn-malformation:active {
        background-color: brown;
    }
    /* ここまで */
    .title1{
        display: none;
    }
    .nagare{
        width: 100%;
        height: 500px;
        /* position: relative; */
        display: flex;
        display: none;
    }
    /* ここから数字*/
    .nagare1 {
        width: 50%;
        counter-reset:number; /*数字をリセット*/
        list-style-type: none!important; /*数字を一旦消す*/
        padding:0.5em;
      }
      .nagare1 ul{
        list-style-type: none;
      }
      .nagare1 li {
        width: 100%;
        font-size: 20px;
        line-height: 60px;
        position: relative;
        padding-left: 30px;
        padding: 0.5em 0.5em 0.5em 60px;
      }
      
      .nagare1 li:before{
        /* 以下数字をつける */
        position: absolute;
        counter-increment: number;
        content: counter(number);
        /*以下数字のデザイン変える*/
        display:inline-block;
      background-color: #9dc1a7;
        color: white;
        font-size: 20px;
        border-radius: 50%;
        left: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        /*以下 上下中央寄せのため*/
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
      }
      /* ここまで数字 */
      .nagare2{
        width: 50%;

      }
      /* スライド */
      #slider {
        width: 80%;
        height: 400px;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        /* margin-left: 50%; */
        /* position: absolute; */
        /* top: 120px; */
        display: none;
    }
    /* ここまでスライド */
    .myself{
        width: 100%;
        display: flex;
        margin-top: 10px;
        margin-bottom: 80px;
    }
    .myself1{
        width: 60%;
        height: 200px;
        text-align: center;
        margin: 0 auto;
        /* background-color: #edbf2f; */
    }
    .myself1 img{
        height: 200px;
    }
    .myself2{
    width: 40%;
    /* background-color: aqua; */
    }
    .myself2 h4{
        font-size: 30px;
    }
    .myself2 p{
        font-size: 20px;
        display: none;
    }
    /* MOREボタンここから */
    .btn--green,
    a.btn--green {
      color: #fff;
      background-color: #9dc1a7;
    }
    .btn--green:hover,
    a.btn--green:hover {
      color: #fff;
      background: cadetblue;
    }
    .btn--green:active,
    a.btn--green:active {
      color: #fff;
      background: brown;
    }
    a.btn--radius1 {
       border-radius: 100vh;
    }
    /* ここまで */
    .footer{
        width: 100%;
        text-align: center;
    }
    .footer1{
        width: 50%;
        height: 80px;
        margin: 0 auto;
        /* background-color: blueviolet; */
    }
    .footer1 img{
     height: 60px;
    }

}
