/*common*/

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../img/orange.png")
  center / cover;
}



img {
  vertical-align: bottom;
}

h1,
h2,
p {
  margin: 0;
  color: black;
}

h1,
h2{
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

/*header*/
header .container{
  padding: 12px 16px;
  align-items: center;
  margin-left: 4px;
  margin-right: 20px;
  margin-top: 8px; 
  display: flex;
  justify-content: space-between;
}

header .icon {
  width: 60px;
  height: 60px;

}

header ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header ul li + li{
  margin-left: 24px;
}

header ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
}



/*main*/
body {
  padding: 0;
  margin: 0;
}

main .title-area {
  padding: 0%;
}


main .title .img {
  display: flex;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 32px;
}

main .title img {
  margin-bottom: 0px;
}

main .title h1 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

main .descript {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: 12px;
}

main .container img{
  display: block;
  margin: 36px auto;
  width: 300px;
  border-radius: 16px;
}

main .container2 img{
  display: block;
  margin: 18px auto;
}

main .app {
  display: flex;
  justify-content: center; 
  margin-bottom: 32px;
}

main h3 {
  text-align: center;
  margin-top: 42px;
}

main .container p{
  text-align: center;
  color: white;
}

main .home {
  margin: 36px auto 48px;
  width: 200px;
  border: 1px solid;
  background-color: rgb(169, 252, 238);
  color: rgb(255, 49, 234);
  border-radius: 32px;
  text-align: center;
  cursor: pointer;
}
/*footer*/

footer{
  padding: 48px 0;
  text-align: center;
  background-color: #aaa;
  opacity: 0.5;
  font-size: 18px;
  width: 100%;
}



/*スマホ用*/
@media (max-width: 800px) {
  body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("../img/orange.png");
  }

  body:before{
    content:"";
    display:block;
    position:fixed;
    top: 0px;
    z-index:-1;
    width: 90%;
    height:100vh;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
  } 
  
  /*header*/
  header .container {
    padding: 0px 6px;
    padding-top: 6px;
    margin-right: 4px;
  }

  /*main*/
  main .title-area {
    margin: 0;
    padding: 0%;
  }

  main .title h1 {
    font-size: 24px;
    padding-top: 0;
  }

  main .title p {
    font-size: 16px;
  }

  main .container p{
    width: 98%;
    margin: 0 auto;
    text-align: center;
  }

}