@charset "utf-8";
*{
  margin: 0;
  padding: 0;
}
body{
  font-family: sans-serif;
  line-height: 1;
  color: #333;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
  color: inherit;
  display: block;
}
img{
  max-width: 100%;
  vertical-align: bottom;
}

/*スマホメニュー*/
.btn,.spnav{
  display: none;
}

/*共通幅/2カラム*/
.container{
 max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: 
    space-between;
}
main{
  width: calc(630/960*100%);
}
.sibebar{
  width: calc(300/960*100%);
}

/*header*/
header.container{
  padding: 10px;
  align-items: center;
}
h1{
  height: 46px;
  background: url(../img/logo.png)no-repeat;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*keyVis*/
.keyVis{
  padding: 120px 0;
}
.img1{
  background: url(../img/sofa.jpg) no-repeat center/cover;
}
.img2{
  background: url(../img/sofa2.jpg) no-repeat center/cover;
}
.img3{
  background: url(../img/sofa3.jpg) no-repeat center/cover;
}

.keyVis p{
  display: block;
  color: #fff;
  font-family: 'Dancing Script', cursive;
  font-size: 40px;
  line-height: 2em;
  text-shadow: 2px 2px 2px #900;
}
.keyVis span{
  font-size: 80px;
}


/*navigation*/
.pcnav{
  background: linear-gradient(#ec1d1d,#8c0000);
}
.pcnav li{
  width: 20%;
  line-height: 50px;
  text-align: center;
}
.pcnav a{
  color: #fff;
  font-size: 13px;
  border-right: 1px solid #fff;  
}
.pcnav li:first-child a{
  border-left: 1px solid #fff;  
}
.pcnav a:hover{
  background: linear-gradient(#a55,#600);
}
 
/*main*/
.wrap{
  padding: 30px 10px 50px;
}

main h2{
  border-bottom: 1px solid #555;
  color: #8c0000;
  font-size: 28px;
}
main h2 + p/*隣接セレクタh2の次のｐ*/{
  color: #d30;
  font-size: 20px;
  font-weight: bold;
}
main p{
  overflow: hidden;
  margin-top: 10px;
  line-height: 1.5;
}
main img{
  border: 10px solid #db0202;
  box-sizing: border-box;
}

/*sidebar*/
.sidebar section{
  margin-bottom: 50px;
}
.sidebar h2{
  padding-bottom: 10px;
  color: #8c0000;
  font-family: 'Dancing Script', cursive;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
}
.sidebar li{
  border-bottom: 1px solid #555;
  line-height: 50px;

}
.sidebar li:first-child{
border-top: 1px solid #555;
}
.sidebar section a{
  background: url(../img/listmark.png) 
    no-repeat left center;
  padding-left: 20px;
}
.sidebar section a:hover{
  background-color: #fbc;
  /*colorを付けて指定*/
}

/*footer*/
footer{
  padding: 30px 0;
  color: #fff;
  background: #d30;
}





/*メディアクエリ*/
@media screen and (max-width: 744px){
  .pcnav{
    display: none;
  }

  .container{
    display: block;
  }

  /*header/keyvisual*/
  h1{
    background-position:  center;  
  }
  header p{
    display: none;
  }
  .keyVis{
    padding: 30px 0;
  }
  .keyVis P{
    text-align: center;
    font-size: 30px;
  }
  .keyVis span{
    font-size: 60px;
  }



/*メニューボタン*/
.btn{
  display: block;
  width: 50px;
  text-align: center;
  font-size: 35px;
  color: #900;
  border: 1px solid #900;
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.btn i{
  display: block;
  line-height: 50px;
}

/*spnav*/
.spnav{
  display: block;
  position: absolute;
  top: 57px;
  width: 100%;

}
.spnav li{
  line-height: 70px;
  text-align: center;
  border-top: 1px solid #fff;
}
.spnav a{
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: rgba(200, 50, 0, 0.8 ); 
}

/*メインコンテンツ*/
.wrap{
  padding: 20px 10px;
}
main{
  width: auto;
}
main h2, .sidebar h2{
  text-align: center;
}
main h2 + p{
  font-size: 14px;
}
main p{
  font-size: 14px;
}
main p:last-of-type{
  margin-bottom: 20px;
}

/*img共通*/
main img,.sidebar img{
  display: block;
  margin-inline: auto;
}


/*カテゴリー/バナー*/
.sibebar section{
  margin-bottom: 20px;
}
.sidebar li{
  border: 1px solid #555;
}
.sidebar li + li{
  margin-top: 5px;
}
.sidebar section a{
  padding-left: 40px;
  background-position: 20px center;
}

footer{
 text-align: center;
}

}

