@charset "utf-8";
/* CSS Document */



/*==============================
共通
==============================*/

#headWrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  border: 100px solid #fff;
  background-image: url("../img/headWrap.jpg");
  background-position: center center;
  background-size: cover;
}

#headWrap .titleBox{
  margin-bottom: 0;
}

#headWrap .titleBox h2,
#headWrap .titleBox h3{
  color: #fff;
}

.titleBox{
  margin-bottom: 50px;
  text-align: center;
}
.titleBox h2{
  font-size: 40px;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.titleBox hr{
  border: none;
  margin: 0 auto;
  width: 50px;
  height: 5px;
  background-color: #84b9e1;
  margin-bottom: 20px;
}
.titleBox h3{
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 1000px){
  
  #headWrap{
    border: none;
    height: 300px;
    margin-top: 60px;
  }
}

/*==============================
メイン
==============================*/
#designWrap{
  width: 100%;
  text-align: center;
  padding: 100px 20px 100px;
}

#designWrap > p{
  margin-bottom: 50px;
}

.tagList{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}

.tagList > li{
  margin-right: 10px;
}

.tagList > li a{
  display: block;
  padding: 5px 10px;
  background-color: #f1f1f1;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}

.designBox{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f1f1f1;
  padding: 100px;
}

.designList{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.designList > li{
  width: 49%;
  margin-bottom: 20px;
}

.designList > li img{
  width: 100%;
}

.designList > li > div{
  background-color: #fff;
  padding: 30px;
  text-align: left;
}

.designList > li div h4{
  font-size: 18px;
  letter-spacing: 2px;
  color: #84b9e1;
  margin-bottom: 5px;
  font-weight: 500;
}

.designCate{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}

.designCate a{
  margin-right: 2px;
}

.designCate a{
  padding: 2px 5px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #b6b2a6;
}

.designList > li div > p{
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 20px;
  text-align: justify;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

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

@media screen and (max-width: 1000px) {
  .designBox{
    padding: 50px 20px;
  }
}

@media screen and (max-width: 800px) {
  .designList > li{
    width: 100%;
  }
}

@media screen and (max-width: 600px){
  .tagList{
    justify-content: space-between;
  }
  .tagList > li{
    width: 49%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 414px){
}