@charset "utf-8";

*, *:before, *:after {
  box-sizing: border-box;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  }
body{
  font-size: 15px;
}


.headerTop img{
  height: 130px;
  object-fit: fill;
  display: block;
  margin: 40px auto;
}


header ul{
  padding-left: 0;
}





/* no3-2 斜線区切り hover時背景色変更2*/
.no3-2{
  text-align: center;
}
.no3-2 ul li{
  list-style: none;
  display: inline-block;
  width: 10%; /* ここで項目の幅を指定します */
  /* font-size: 16px; */
  -webkit-transform: skewX(150deg);
  -moz-transform: skewX(150deg);
  transform: skewX(150deg);
  border-right: 2px solid dimgray;
  background-color: black;
}
.no3-2 ul li a{
  display: block;
  text-decoration: none;
  padding: 5px 0;
  color: black;
  transform: skewX(-150deg);
  color: white;
}
.no3-2 ul li:last-child{
  border-right: 0;
}
.no3-2 ul li:hover{
  opacity: 0.8; /* hover時の不透明度を調整します */
}



h1{
  text-align: center;
  padding-top: 70px;
  padding-bottom: 40px;
  font-size: 25px;
}
h1 span{
  color: blue;
}

h2{
  font-size: 20px;
}

section{
  background-color: whitesmoke;
  display: flex;
  border-radius: 5px;
  /* margin: 0 auto; */
}

aside {
  width: 20%;
}

main{
  /* text-align: center; */
  /* padding-left: 150px; */
  width: 80%;
}

.download{
  text-align: center;
  padding: 10px;
}

.installprocess ul li{
  list-style: none;
}

.download-btn {
  text-decoration: none;
  display: inline-block;
  width: 250px;
  padding: 20px;
  margin: 3%;
  text-align: center;
  background: #000;
  color: #fff;
  /* border: solid 1px currentColor; */
  transition: all 0.3s;
}
.download-btn:hover, .download-btn:focus {
  color: #fff;
  /* background: #000; */
  /* border-color: #000; */
  opacity: 0.8;
}

.restriction-removal{
  margin: 0 30%;
}
.restriction-removal ol li{
  text-align: left;
}

footer{
  text-align: center;
}

@media (max-width:960px){
  /* main{
    background-color: yellow;
  } */
}
@media(max-width:430px){
  /* main{
    font-size: 10px;
  } */
  .no3-2 ul li{
    width: 60px;
    font-size: 8px;
  }
  
  aside {
    width: 10%;
  }
  main{
    padding-left: 0px;
    width: 90%;
  }


  .farst p{
    font-size: 13px;
  }
  .mainfunction{
    font-size: 13px;
  }
  .recommendation{
    font-size: 13px;
  }

  .lasty{
    font-size: 15px;
  }
  .download-btn {
    width: 190px;
    font-size: 15px;
  }

  .restriction-removal{
    margin: 0 auto;
  }

  footer{
    font-size: 15px;
  }
}


