@charset 'UTF-8';

/* -----------------------------------------------------------------------------
>> PC専用
----------------------------------------------------------------------------- */
@media only screen and (min-width:960px) {
.sp_only {
  display: none;
}



/* ショップインフォメーション */
.overview {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.overview div {
  width: 50%;
}
.overview .txt {
  padding: 0 5%;

  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;

  -webkit-flex-wrap     : wrap;
  -moz-flex-wrap        : wrap;
  flex-wrap             : wrap;
  -webkit-flex-line-pack: center;
  -moz-flex-line-pack   : center;
  -webkit-align-content : center;
  -moz-align-content    : center;
  align-content         : center;

  -webkit-box-pack       : center;
  -moz-box-pack          : center;
  -webkit-flex-pack      : center;
  -moz-flex-pack         : center;
  -ms-flex-pack          : center;
  -webkit-justify-content: center;
  -moz-justify-content   : center;
  justify-content        : center;

  flex-direction: column;
}
.overview .txt p,
.overview .txt a {
  margin-left: auto;
  margin-right: auto;
}
.overview .news_list a {
  margin-left: 0;
  margin-right: 0;
}


/* 最新情報 */
.whats_new .overview div:nth-of-type(1) { width: 25%; }
.whats_new .overview div:nth-of-type(2) { width: 50%; padding: 0; }
.whats_new .overview div:nth-of-type(3) { width: 25%; }
.whats_new .overview .btn {
  width: 100%;
}

.whats_new .img {
  position: relative;
}
.whats_new .img h3 {
  position: absolute;
  top: calc(50% - 0.9em);
  left: calc(50% - 2em);
  font-weight: 100;
  font-size: 48px;
  color: #FFF;
}



.inq_box {
  position: absolute;
  bottom: 270px;
  right: 50px;
}




/* -----------------------------------------------------------------------------
>> コンテンツページ
----------------------------------------------------------------------------- */
#cont header h1,
#cont_show header h1 {
  line-height: 200px;
  font-size: 48px;
}
.title_case {
  height: 200px;
}
#cont .cate_list {
  height: 200px;
}
.return a {
  height: 150px;
  line-height: 150px;
}






/* -----------------------------------------------------------------------------
>> お知らせページ
----------------------------------------------------------------------------- */
.news li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.news li:nth-child(odd) {
  background-color: #FFF;
}
.news .date {
  flex: 0 1 15%;
  background-color: #222;
  color: #F4F4F4;
}
.news .date .year {
  padding: 10px 0 20px 0;
  text-align: center;
  font-weight: 100;
  font-size: 38px;
}
.news .date .month_day {
  position: relative;
  padding-right: 40px;
  text-align: right;
  font-weight: 200;
  font-size: 18px;
}
.news .date .month_day:after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  display: block;
  width: 15px;
  height: 2px;
  background-color: #F4F4F4;
}

.news .body {
  flex: 0 1 55%;
  padding: 20px 40px;

  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;

  -webkit-flex-wrap     : wrap;
  -moz-flex-wrap        : wrap;
  flex-wrap             : wrap;
  -webkit-flex-line-pack: center;
  -moz-flex-line-pack   : center;
  -webkit-align-content : center;
  -moz-align-content    : center;
  align-content         : center;
}
.news .body .cate {
  width: 100%;
  font-weight: 200;
}
.news .body h2 {
  width: 100%;
  margin: 40px 0;
  text-align: left;
  font-weight: 100;
  font-size: 28px;
}
.news .body .txt {
  width: 100%;
  line-height: 1.8;
  font-weight: 200;
}

.news .img {
  flex: 0 1 30%;
}
.news .img img {
  width: 100%;
}




/* -----------------------------------------------------------------------------
>> 住まいの事例ページ
----------------------------------------------------------------------------- */
.gallery {
  overflow: hidden;
}

.photo_list li {
  width: 18%;
  margin-right: 2%;
  margin-bottom: 2%;
  list-style-type: none;
}
.photo_list li:nth-child(5n) {
  margin-right: 0;
}
.photo_list li:nth-child(n+5) {
  margin-bottom: 0;
}

.gallery li:nth-child(3n-1) .photo_list {
  margin-left: -33.5vw;
}
.gallery li:nth-child(3n) .photo_list {
  margin-left: -66.5vw;
}


.main_photo:hover .overlay {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  color: #FFF;
  opacity: 0.7;

  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;

  -webkit-box-align:center;
  -ms-flex-align:center;
  -webkit-align-items:center;
  align-items:center;

  -webkit-transition: all 0.3s ease;
  -moz-transition   : all 0.3s ease;
  -o-transition     : all 0.3s ease;
  -ms-transition    : all 0.3s ease;
  transition        : all 0.3s ease;
}



/* -----------------------------------------------------------------------------
>> お問い合わせページ
----------------------------------------------------------------------------- */
.inq_form {
  width: 900px;
}
.must, .need_not {
  float: right;
}
.inq .btn_box {
  width: 900px;
  margin: 0 auto;
  padding-top: 60px;

  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;

  -webkit-box-pack       : center;
  -moz-box-pack          : center;
  -webkit-flex-pack      : center;
  -moz-flex-pack         : center;
  -ms-flex-pack          : center;
  -webkit-justify-content: center;
  -moz-justify-content   : center;
  justify-content        : center;
}

.inq_box .tel a {
  cursor: default;
}

.thanks {
  margin-bottom: 90px;
}

.inq_sub_title {
  width: 900px;
}

.footer {
  position: relative;
}

.footer .zeh {
  position: absolute;
  left: 60%;
  top: 190px;
}


}