@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*---------------------
カラム幅設定
----------------------*/
/*---------------------
カラー設定
----------------------*/
/*---------------------
ベンダープレフィックス初期設定
----------------------*/
/*---------------------
透明度　初期設定
----------------------*/
/*---------------------
フォントサイズ初期設定
----------------------*/
/*---------------------
フォントファミリー初期設定
----------------------*/
/*----------------
Retina,高解像度 対策
-----------------*/
/*---------------------
角丸　初期設定
----------------------*/
/*
.box {
     @include circle(100px);
     background: #fc0;
}
*/
/*---------------------
ボックスシャドウ　mixin
----------------------*/
/*
 div { @include box-shadow(8px, 8px);}
 */
/*---------------------
グラデーション　mixin
----------------------*/
/* 使用例
 div { @include gradient(#ff00ff, #ff00cc, vertical);}
*/
/*---------------------
デュレーション　mixin
----------------------*/
/*
.move{
    @include transition(0.5s);
}
*/
/*---------------------
キーフレーム　mixin
----------------------*/
@-webkit-keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #0094d5;
  }
}

@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #0094d5;
  }
}

/*---------------------
カラムグリッド mixin
----------------------*/
/*---------------------
カラムグリッド mixin
----------------------*/
/*　使用例 
div { @include ghost-button(“Trebuchet”, 12px, #ffffff, 5px, #34dec6, 4px, 300ms, #000000 );}
*/
/*---------------------
リンクカラー初期設定
----------------------*/
/*---------------------
汎用BOX用　マージンMIXIN リセット
----------------------*/
.m_0 {
  margin: 0 !important;
}

.p_0 {
  padding: 0 !important;
}

/*---------------------
汎用ボタンリンク用　
----------------------*/
.btn {
  -moz-user-select: none;
  background-image: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-info {
  background-color: #5bc0de;
  border-color: #46b8da;
  color: #fff;
}

/* common styles !!!YOU DON'T NEED THEM */
.button-effect {
  display: block;
  clear: both;
  padding: 30px 0px;
}

.button-effect a {
  margin-right: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.button-effect a:nth-child(2) {
  background-color: #fff;
  border: 3px solid #009fe6;
  color: #009fe6;
}

.button-effect a:nth-child(3) {
  background-color: #D90368;
}

.button-effect a:nth-child(4) {
  background-color: #104547;
}

.button-effect a:nth-child(5) {
  background-color: #4F000B;
}

.button-effect a:nth-child(6) {
  background-color: #F28123;
}

.button-effect a:last-child {
  margin-right: 0px;
}

/* button styles !!!YOU NEED THEM 
!!!ALSO YOU NEED TO ADD FONTWESOME */
.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  /* background-color: - add your own background-color */
  font-family: 'Roboto', sans-serif;
  /* put your font-family */
  font-size: 18px;
  padding: 15px 0px;
  width: 275px;
  border-radius: 35px;
  overflow: hidden;
  background-color: #fff;
  border: 3px solid #009fe6;
  color: #009fe6;
}

/* effect-2 styles */
.effect.effect-2 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.effect.effect-2:before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 100%;
  border-radius: 0px 35px 35px 0px;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  text-align: center;
}

.effect.effect-2:hover {
  text-indent: -30px;
  background: #009fe6;
  color: #fff;
}

.effect.effect-2:hover:before {
  right: 0;
  text-indent: 0px;
}

.fuwafuwa {
  -webkit-animation: fuwafuwa 0.3s infinite linear alternate;
  animation: fuwafuwa 0.3s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0, -5px) rotate(0deg);
            transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}

.contact-fixed-btn {
  position: fixed;
  top: 45%;
  right: 0;
  z-index: 10;
}

.contact-fixed-btn a {
  display: block;
  padding: 15px 15px 10px;
  background: #009fe6;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #fff;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 0 5px #fff;
          box-shadow: 0 0 5px #fff;
}

.contact-fixed-btn a:hover {
  background: #42c2fb;
}

.contact-fixed-btn a:hover i {
  -webkit-animation: fuwafuwa 0.5s infinite linear alternate;
  animation: fuwafuwa 0.5s infinite linear alternate;
}

.contact-fixed-btn i {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 2px;
}

.contact-fixed-btn p {
  text-align: center;
  font-weight: 600;
}

.contact-fixed-btn a.fixed-btn1 {
  background: #648ea1;
}

.contact-fixed-btn a.fixed-btn2 {
  background: #009fe6;
}

@media only screen and (max-width: 767px) {
  .contact-fixed-btn {
    top: auto;
    bottom: 10px;
    right: 10px;
  }
  .contact-fixed-btn a {
    padding: 10px 10px 5px;
    border-radius: 4px;
  }
  .contact-fixed-btn i {
    font-size: 2.5rem;
  }
  .contact-fixed-btn p {
    font-size: 1.2rem;
  }
}

.detail-backbtn {
  position: relative;
  width: 100%;
  max-width: 1140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.detail-backbtn .back-works-top {
  width: 50%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.detail-backbtn .back-works-mansion {
  width: 50%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .detail-backbtn {
    display: block;
  }
  .detail-backbtn .back-works-top {
    width: 100%;
  }
  .detail-backbtn .back-works-mansion {
    width: 100%;
  }
}

.btn-footer-qa a {
  display: block;
  border-radius: 30px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #00a3d6;
  border: 3px solid #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn-footer-qa a:hover {
  color: #3c85b1;
  border: 3px solid #3c85b1;
}

@media only screen and (max-width: 767px) {
  .btn-footer-qa {
    margin-top: 30px;
  }
}
/*# sourceMappingURL=btn.css.map */