@charset "UTF-8";

/*************************************************
フロートナビゲーション
**************************************************/
.grad-wrap {
  position: relative;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-btn {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 166px;
  margin: auto;
  padding: .5em 0;
  border-radius: 2px;
  background: #CB6F6F;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.grad-btn::after {
  content: "もっと過去を見る"
}
.grad-btn:hover {
  background: #fff;
  color: #FF0000;
}
.grad-btn .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
  height: 460px;
  text-align: left;
  padding-top: 2rem;
}
.grad-item p + p {
  margin-top: 1em;
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 140px; /*グラデーションで隠す範囲*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.grad-trigger {
  display: none;
}
.grad-trigger:checked ~ .grad-btn {
  bottom: -2em;
}
.grad-trigger:checked ~ .grad-btn::after {
  content: "閉じる"
}
.grad-trigger:checked ~ .grad-btn .fa {
  transform: rotate(180deg);
}
.grad-trigger:checked ~ .grad-item {
  height: auto;
}
.grad-trigger:checked ~ .grad-item::before {
  display: none;
}

/*お問合せへフローティングボタン*/
.fltbtm{ background: #FFFFFF; clear: both; margin: 0 auto; padding:3rem; position: fixed; width: auto; height: auto; left: 32%; z-index: 9999;
/*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;}
/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
.btmhow{  text-align: center; margin: 0; padding: 0;}
.btmhow a{ background: linear-gradient(#FF893B, #FF6600); border-radius: 5px; color: #FFFFFF; font-size: 300%; font-weight: bold; line-height: 2.6; text-shadow: #333333 1px 1px 4px; padding: 2rem 6rem; margin: 20px auto 20px; overflow: hidden; box-shadow:3px 3px 1px rgba(85,85,85,0.55); }
.btmhow a:hover{ background: #FF282C; box-shadow: none !important;}



