@charset "utf-8";
body{ font-family: 'Hiragino Kaku Gothic Pro','Meiyo',sans-serif;
font-size: 15px;
border-top: solid #79a1b1;
}
a{
  text-decoration: non;
  color: #333;
}
.logo{
  font-size: 30px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}
.logo img{
  display: inline-block;
  margin-bottom: 5px;
}
/*.header{
  width: 1200px;
  margin: 0 auto;
  background: #eee;
}*/
.w_inner{
  width: 1200px;
/*ここ調べる*/
  margin: 0 auto;
/*ここ調べる*/
  margin-bottom: 30px;
}
.header ul{
  display: flex;
  
}
.header ul li{
  width: 200px;

  text-align: center;
  border-right: 1px solid #ddd;
}
.header ul li:first-child{
  border-left: 1px solid #ddd;
}
.header ul li a {
  display: block;
}
.header_img{
  text-align: center;
}
.header_img img{
  display: inline-block;
}
.container_service .service_block{
  display: flex;
  justify-content: space-between;
}
.container_service .service{
  width: 380px;
  text-align: center;
}
.container_service h2{
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.container_service .service img{
  margin-bottom: 20px;
}
.container_service .service .ttl{
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}
.container_service .service .explain{
  margin-bottom: 20px;
}
.container_service .service a {
  background: #79a1b1;
  color: #fff;
  padding: 15px 20px 12px;
}
.footer{
  margin-top: 40px;
}
.pp_link{
  text-align: right;
}
.copy{
  text-align: center;
  background: #79a1b1;
  color: #fff;
  font-size: 12px;
  padding: 7px 0 3px;
}

/*JavaScript部分　Begin*/
.btn{
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: blue;
  z-index: 10;
} 
.btn i{
  position: absolute;
  left:10px;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transition: .5s;
}
.btn i:nth-of-type(1){
    top: 20px;
}
.btn i:nth-of-type(2){
    top: 30px;
}.btn i:nth-of-type(3){
    top: 40px;
}
.btn.active i:nth-of-type(1){
   transform: translateY(10px) rotate(45deg); 
}
.btn.active i:nth-of-type(2){
    opacity: 0;
}
.btn.active i:nth-of-type(3){
  transform: translateY(-10px) rotate(-45deg);    
}
.jscontainer{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: cadetblue;
  color: #fff;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}
.jscontainer.active{
  opacity: 0.9;
  pointer-events: auto;
}
.item{
    width: 480px;
    margin: 50px auto;
    display: flex;
}
.item ul{
  margin: 0 30px;
}
.item ul li{
  margin-bottom: 20px;
}