
body {
  font-family: 'Noto Sans Japanese', sans-serif;
}

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

  main{
    padding-top: 60px;
    height: 100%;
  }

  .off-screen-menu{
    display: none;
  }
  .hamburger{
    display: none;
  }

  .main1{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: black 1px solid;
  }

  .main2{
    width: 100%;
    
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    
  }
  .m2-contents a{
    color: black;
  }
  .m2-contents img{
    width: 200px;
    height: 200px;
  }

  .main3{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px black solid;
    margin-top: 40px;
    padding-bottom: 50px;
  }
  form{
    width: 40%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  label{
    display: flex;
    justify-content: flex-start;
  }

  input{
    margin-bottom: 30px;
    width: 100%;
    font-size: 18px;
  }
  textarea{
    width: 100%;
    height: 100px;
    font-size: 18px;

  }

  .submitButton{
    width: 120px;
    height: 50px;
    border: 0px;
    border-radius: 10px;
    background-color: #64b6dd;
    font-size: 16px;
  }

  .submitButton:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  
}

@media screen and (max-width: 1220px) {
  main{
    padding-top: 40px;
    text-align: center;
  }

  .main1{
    border-bottom: 1px black solid;
  }

  .main2 img{
    width: 80%;
  }

  .main3{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px black solid;
    margin-top: 40px;
    padding-bottom: 50px;
  }
  form{
    width: 90%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  label{
    display: flex;
    justify-content: flex-start;
  }

  input{
    margin-bottom: 30px;
    width: 100%;
    font-size: 18px;
    border: #64b6dd 2px solid;
  }
  textarea{
    width: 100%;
    height: 100px;
    font-size: 18px;
    border: #64b6dd 2px solid;
  }

  .submitButton{
    width: 120px;
    height: 50px;
    border: 0px;
    border-radius: 10px;
    background-color: #64b6dd;
    font-size: 16px;
  }

  .submitButton:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
}