@charset "UTF-8";
/* CSS Document */
/*現在のページ*/
.contents_nav li:nth-child(1) a {
  background-color: #6D7991;
  color: white;
}

article {
  padding-bottom: 30px;
}

/*カテゴリーリスト*/
.recommend_list {
  text-align: center;
}
.recommend_list li {
  display: inline-block;
  width: 13%;
}
.recommend_list a {
  display: block;
  text-decoration: none;
  color: #555;
  font-weight: normal;
  font-size: 95%;
  position: relative;
}
.recommend_list a:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.bridal a:before {
  background: #e57ba6;
}
.kids a:before {
  background: #e2cb3c;
}
.shichigosan a:before {
  background: #be2c20;
}
.twentyth a:before {
  background: #8f94c9;
}
.newborn a:before {
  background: #93cb8b;
}
.pet a:before {
  background: #cf7944;
}
.architecture a:before {
  background: #517fc1;
}
.portfolio a:before {
  background: #1B7E67;
}

#recommend {
  background: #F6F6F6;
  margin: 60px auto;
  text-align: center;
}
#recommend .cont {
  padding-top: 50px;
  border-top: solid 1px #CCC;
  position: relative;
}

/* 見出し */
#recommend .cate_title {
  width: 980px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
#recommend .cate_title_pc {
  display: block;
  width: 100%;
}
#recommend .cate_title_sp {
  display: none;
}

#recommend #bridal {
  border: none;
}
#recommend ul {
  text-align: left;
  margin: 50px auto 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.recommend_name {
  color: #555;
  font-size: 95%;
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
}
#recommend .new:after {
  content: "new";
  color: #D90000;
  font-weight: bold;
  font-size: 100%;
  padding-left: .5em;
}
#recommend .renewal:after {
  content: "renewal";
  color: #e879b0;
  font-weight: bold;
  font-size: 100%;
  padding-left: .5em;
}
#recommend li .recommend_flex {
  vertical-align: top;
  line-height: 130%;
  display: flex;
}
.recommend_textbox {
  margin-right: .5em;
  width: 55%;
}
.recommend_text {
  font-size: 90%;
  margin-bottom: 0.25em;
  line-break: strict;
}
.recommend_label {
  font-size: 75%;
  color: #768DBA;
  display: inline-block;
}
#recommend .img {
width: 45%;
margin: auto 0;
height: 135px;
}
#recommend .img img {
  width: 100%;
  height: 135px;
  object-fit: contain;
}
.recommend_btn {
  display: flex;
  justify-content: space-between;
  margin-top: .5em;
}
.recommend_btn a {
  width: 39%;
  background-color: #768DBA;
  border: solid 1px #768DBA;
  color: #fff;
  font-size: 87%;
  font-weight: normal;
  border-radius: 10px;
  padding: 6px 20px;
  text-align: left;
  position: relative;
  line-height: 180%;
}
.recommend_btn a::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 100%;
  right: 15px;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  background-image: url(../../../common/img/yazirushi_w.svg);
}
.recommend_btn a:hover {
  background-color: #fff;
  color: #768DBA;
  text-decoration: none;
}
.recommend_btn a:hover:before{
  background-image: url(../../../common/img/yazirushi.svg);
}

/* =============================================
MOBILE
================================================ */
@media screen and (max-width: 736px) {
  /*カテゴリーリスト*/
  .recommend_list li {
    width: 30%;
    margin-bottom: 15px;
  }
  .recommend_list a {
    font-size: 80%;
  }

  #recommend {
    margin: 20px auto;
  }
  #recommend .cate_title {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
  }
  #recommend .cate_title_pc {
    display: none;
  }
  #recommend .cate_title_sp {
    display: block;
    width: 100%;
  }
  #recommend ul {
    margin: 30px auto 50px;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .recommend_name {
    font-size: 85%;
    margin-bottom: 1em;
  }
  #recommend li .recommend_flex {
    flex-direction: column-reverse;
  }
  .recommend_textbox {
    margin-right: 0;
    width: auto;
  }
  #recommend .img {
    width: 90%;
    margin: 0 auto 1em auto;
    height: auto;
    text-align: center;
  }
  #recommend .img img {
    width: 90%;
    height: auto;
    object-fit: contain;
  }
  .recommend_btn {
    display: block;
    margin-top: 1em;
  }
  .recommend_btn a {
    display: block;
    width: auto;
    margin: .5em auto;
  }
}
