body{
    margin: 0;
}
.kari img{
    width: 100%;
}
.header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    width:100%;
    background-color:white;
    background-image: url(pic/head.jpg);
    background-size: cover;
    align-items: center;

}
.header img{
  width:400px;
  height:80px;
}
.headnav{
    align-items: center;
    width: 40%;
    margin-right: 20px;
}

.headnav ul{
  display: flex;
  list-style-type: none;
  justify-content: space-between;
}
.headnav li{

  font-size: 18px;
}

.headnav a{
  text-decoration: none;
  color:black;
}

.headnav img{
    width: 60px;
    height: 90px;
}
.headnav img:hover,
.headnav img:focus{
    transform: scale(1.4);
    transition: transform .8s;
}
.burger{
    width:40px;
    height: 40px;
    background-image: url(pic/menu.png);
    background-repeat: no-repeat;
    border-radius: 4px;
    z-index: 2;
    margin-right: 20px;
    display:none;
}
.burger:hover{
    background-color: #ddd;
}
.burger.is-active{
    background-image: url(pic/close.png);
}
/* メニュー */
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color:gray;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
  display:none;
}
.menu.is-active{
    display: flex;
}
.menu ul{
  display: block;
}
.menu li{
  font-size: 30px;
}
.menu li a{
      color:white;
}

.footer{
    margin-top: 100px;
    display:flex;
    justify-content: center;
    background-image: url(pic/footer.jpg);
    background-size: cover;
    color: white;
    font-family: serif;
}

.wrapper{
    padding-top: 200px;
    text-align: center;
}
.wrapper img{
    width: 70%;
}
.twoline{
    display: flex;
    justify-content:center;
    }
.twoline img{
    width:40%;
}
.pic{
    display: grid;
    grid-template-columns: repeat(3,1fr); 
    grid-gap:10px;
    justify-items: center;
    align-items: center;

}
.button{
    margin-top: 30px;

    }
/*ボタン装飾*/
.btn {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color:white;
  border: solid 5px blue;
  border-radius: 30px;
  transition: .4s;
  font-size: 25px;
  background-color: navy;
}
.btn:hover {
  background: blue;
  color: #BDB76B;
}
.btn2 {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color:white;
  border: solid 5px #FF6928;
  border-radius: 30px;
  transition: .4s;
  font-size: 25px;
  background-color: #FF4F02;
}
.btn2:hover {
  background: #FF6928;
  color: #FFCCCC;
}
/*ボタン装飾終了*/

.copy{
    background-color: black;
    font-family: serif;
    color: wheat;
    text-align: center;
}
.copy p{
    margin-top: 0px;
}

/*スマホOK設定--------------------------------------*/


/*スマホOK設定--------------------------------------*/
@media(max-width: 660px){
    h3{
        font-size: 15px;
    }
.greeting{
 padding-top: 80px;
 text-align: center;
}
.header img{
  width:300px;
  height:60px;
}
.headnav {
  display: none;
}
.menu a{
  text-decoration: none;
}
.menu ul{
  list-style-type: none;
}
.burger{
  display: flex;
    }
.table{
    font-size: 15px;
}
.footer{
    margin-top: 50px;
    display:block;
}
.footer a{
    font-size: 15px;    
    }
.footer img{
        display: none;
    }
.twoline{
        display: block;
    justify-content: center;
    }
.twoline img{
    width: 40%;
    }
.wrapper{
    padding-top: 70px;
    }
.wrapper img{
    width: 90%;
}
.pic{
    display: block;
    }
}

@media(max-width: 1000px){
    .pic{
  grid-template-columns: repeat(2,1fr);      
    }
}