@charset "UTF-8";
#title_area{
  background: #ededed;
  padding: 2vw 20px;
  font-weight: bold;
}
#title_area h1{
  font-size:2.6rem;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom:20px;
}
#title_area .description{
  max-width: 800px;
  font-size:1.4rem;
  margin: 10px auto;
}
#title_area .description.review{
  text-align: center;
}


/***記事コンテンツ***/
#article{
  padding: 40px 0;
  text-align: center;
}
#article h2{
  font-size:2.8rem;
  font-weight: bold;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position:relative;
}
#article h2::after{
   content:"";
   display:block;
   width:55px;
   height:3px;
   background-color:#000;
   position:absolute;
   bottom:-30px;
   left:calc(50% - 21px) ;
   left:-webkit-calc(50% - 21px) ;
}
#article ul.article_list{
  margin: 0 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap    : wrap;
  flex-wrap        : wrap;
}
#article ul.article_list li{
  padding: 2%;
  width: 28%;
}
#article ul.article_list dt{
  margin-bottom:20px;
}
#article ul.article_list dd{
  font-weight: bold;
}
#article ul.article_list li a{
  text-decoration: none;
  color: #000;
}
#article ul.article_list li a:hover {
  opacity: .8;
}
#article ul.article_list li .category{
  padding: 1px 10px;
  background: #EDEDED;
  font-size:1.2rem;
  display: inline-block;
  margin-bottom:10px;
  float: left;
}
#article ul.article_list li .date{
  color: #848484;
  font-size:1.4rem;
  margin-bottom:5px;
  float: right;
}
#article ul.article_list li .text{
  clear: both;
  font-size:1.4rem;
  text-align: left;
}
#article ul.article_list li .more{
  float: right;
 font-size:1.2rem;
  margin: 20px 0;
  position: relative;
}
#article ul.article_list li .more::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/common/arrow.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}
#article ul.article_list li .more::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: -5px;
    left: 0;
}
/***口コミ***/
#reviews{
  padding: 40px 0;
  text-align: center;
}
#reviews .tab {
  border-bottom:2px solid #000;
  text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
#reviews .tab > li a{
  text-decoration: none;
  color: #000;
  font-weight: bold;
  letter-spacing: 2px;
  padding:10px 40px;
  display: inline-block;
  margin:0 5px 0px 5px;
  border-radius: 5px 5px 0 0;
  border: none;
  background: #ededed;
}
#reviews .tab > li.active a{
  margin:0 5px -2px 5px;
  border-left:2px solid #000;
  border-top:2px solid #000;
  border-right:2px solid #000;
  background: #FFF;
}
#reviews .tabContents {
  visibility:hidden;
  height: 0;
  opacity: 0;
}
#reviews .tabContents.active {
  visibility:visible;
  height: auto;
  opacity: 1;
}
#reviews ul.review_list{
  margin: 0 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap    : wrap;
  flex-wrap        : wrap;
}
#reviews ul.review_list > li{
  padding: 2%;
  width: 28%;
}
#reviews ul.review_list dt{
  margin-bottom:20px;
}
#reviews ul.review_list dd{
  font-weight: bold;
}
#reviews ul.review_list li a{
  text-decoration: none;
  color: #000;
}
#reviews ul.review_list .all{
 font-size:1.8rem;
  margin: 10px 0;
  position: relative;
}
#reviews ul.review_list .all::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 39px;
    background-image: url("../img/reviews/smile_icon.png");
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}
#reviews ul.review_list li .text{
  text-align: left;
}
.review-slider .slick-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e6e6e6;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.review-slider .slick-arrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #09000d;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
}
.review-slider .slick-next {
  right: 0;
}
.review-slider .slick-prev {
  left: 0;
}
.review-slider .slick-next::before {
  left: 6px;
}
.review-slider .slick-prev::before {
  border-width: 0 0 2px 2px;
  right: 6px;
}