/* =========================================================
  下固定バナー
  プレフィックス：bfb（bazubu-fixed-banner）
========================================================= */

/* PC表示
--------------------------------------------------------- */

/* テキストエリア＋ボタン */
.bfb-common-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  display: block;
}

@media screen and (max-width: 900px) {
  .bfb-common-cta {
    display: none;
  }
}

.bfb-common-cta .bfb-cta-wrap {
  position: relative;
}

.bfb-common-cta .bfb-cta-wrap .bfb-contact {
  overflow: hidden;
  max-width: 940px;
  margin: 12px auto;
}

@media screen and (max-width: 767px) {
  .bfb-common-cta .bfb-cta-wrap .bfb-contact {
    width: 100%;
    padding: 0 8px;
  }
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-left {
  float: left;
  margin: 6px auto;
}

@media screen and (max-width: 767px) {
  .bfb-common-cta .bfb-cta-wrap .bfb-cta-left {
    width: 100%;
    float: none;
    text-align: center;
  }
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-left .bfb-cta-text {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-left .bfb-cta-text span {
  color: #fff100;
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-right {
  float: right;
  width: 44%;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .bfb-common-cta .bfb-cta-wrap .bfb-cta-right {
    float: none;
    margin: auto;
    width: 80%;
  }
}

@media screen and (max-width: 320px) {
  .bfb-common-cta .bfb-cta-wrap .bfb-cta-right {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .bfb-common-cta .bfb-cta-wrap .bfb-cta-right .bfb-cta-button {
    margin: 6px auto 0;
  }
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-indent: 38px;
  width: 380px;
  display: block;
  padding: 10px;
  border-radius: 3px;
  background: #ed6b14;
  box-shadow:0px 4px 0px 0px #5B0700;
  -moz-box-shadow:0px 4px 0px 0px #5B0700;
  -webkit-box-shadow:0px 4px 0px 0px #5B0700;
  text-decoration: none;
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d31204+0,b50303+44,770000+100 */
  background: #d31204; /* Old browsers */
  background: -moz-linear-gradient(top, #d31204 0%, #b50303 44%, #770000 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #d31204 0%,#b50303 44%,#770000 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #d31204 0%,#b50303 44%,#770000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d31204', endColorstr='#770000',GradientType=0 ); /* IE6-9 */
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a::before {
  position: absolute;
  content: url('./float-pc_icon.png');
  left: -14px;
  top: 11px;
}

@media screen and (max-width: 767px) {
  .bfb-common-cta .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a {
    padding: 6px 8px;
  }
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a .fa {
  margin-left: 8px;
}

.bfb-common-cta .bfb-cta-wrap .bfb-cta-right .bfb-cta-button:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -o-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}

/* スマホ表示
--------------------------------------------------------- */
.bfb-common-cta-sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .bfb-common-cta-sp {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
  }

  .bfb-common-cta-sp .bfb-common-cta-sp-wrap {
    /* overflow: hidden; */
    padding: 10px 0;
  }

  .bfb-common-cta-sp .bfb-cta-text {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size:14px;
  }

  .bfb-common-cta-sp .bfb-cta-text span {
    color: #fffd86;
  }
  .bfb-common-cta-sp .bfb-cta-text span.yellow {
    color: #fdf050;
  }
  .bfb-common-cta-sp .bfb-cta-text span.red{
    color: #ff1300;
  }

  .bfb-common-cta-sp .bfb-cta-left {
    width: calc(100% / 2);
    float: left;
    padding: 0 4px 0 8px;
  }

  .bfb-common-cta-sp .bfb-cta-right {
    width: calc(100% / 2);
    float: right;
    padding: 0 8px 0 4px;
  }

  .bfb-common-cta-sp img {
    width: 100%;
  }
  
  .bfb-cta-right ul li {
    position: relative;
  }

  .sub-text-area {
    position: absolute;
    bottom: 50px;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    border: 1px solid #b0b0b0;
  }

  .bfb-cta-right ul li:first-child .sub-text-area{
    background-color: #fff;
  }

  .bfb-cta-right ul li:nth-child(2) .sub-text-area{
    background-color: #fff;
  }

  .bfb-cta-right ul li:nth-child(3) .sub-text-area{
    background-color: #fff;
  }

  .sub-text-area p {
    font-size: 12px;
    color: #000;
    text-align: center;
    white-space: nowrap;
  }
}

/* 閉じるボタン
--------------------------------------------------------- */
.bfb-common-cta .bfb-close-cta,
.bfb-common-cta-sp .bfb-close-cta {
  position: absolute;
  padding: 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.8);
  width: 28px;
  text-align: center;
  top: -40px;
  left: 4px;
  line-height: 28px;
}

.bfb-common-cta-sp .bfb-close-cta {
  top: -32px;
  left: 4px;
}

.bfb-common-cta .bfb-close-cta .fa,
.bfb-common-cta-sp .bfb-close-cta .fa {
  color: #fff;
  display: block;
  padding: 5px;
  cursor: pointer;
}

/* お客様の声関係　追加
--------------------------------------------------------- */
.bfb-common-cta.voice .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a::before,
.bfb-common-cta-sp.voice .bfb-cta-button a::before{
  position: absolute;
  content: '\f138';
  font-family: FontAwesome;
  left: 16px;
  top: 11px;
  font-size: 12px;
  line-height: 22px;
}

.bfb-common-cta.voice .bfb-cta-wrap .bfb-cta-left .bfb-cta-text {
  font-size: 18px;
  line-height: 36px;
}

.bfb-common-cta.voice .bfb-cta-wrap .bfb-cta-left {
  padding-left: 145px;
}
@media screen and (max-width: 991px){
  .bfb-common-cta.voice .bfb-cta-wrap .bfb-cta-left {
    padding-left: 100px;
  }
}
@media screen and (max-width: 767px){

.bfb-common-cta-sp.voice .bfb-cta-button a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-indent: 38px;
  width: 380px;
  display: block;
  margin: 0 auto;
  padding: 10px;
  border-radius: 3px;
  background: #ed6b14;
  box-shadow:0px 4px 0px 0px #5B0700;
  -moz-box-shadow:0px 4px 0px 0px #5B0700;
  -webkit-box-shadow:0px 4px 0px 0px #5B0700;
  text-decoration: none;
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d31204+0,b50303+44,770000+100 */
  background: #d31204; /* Old browsers */
  background: -moz-linear-gradient(top, #d31204 0%, #b50303 44%, #770000 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #d31204 0%,#b50303 44%,#770000 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #d31204 0%,#b50303 44%,#770000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d31204', endColorstr='#770000',GradientType=0 ); /* IE6-9 */
}

.bfb-common-cta-sp.voice .bfb-cta-button:hover {
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -o-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}
  .bfb-common-cta-sp.voice .bfb-cta-left,
  .bfb-common-cta-sp.voice .bfb-cta-right {
    float: none;
    width: 100%;
  }
  .bfb-common-cta-sp.voice .bfb-cta-text {
    font-size: 14px;
    line-height: 26px;
  }
}
@media screen and (max-width: 375px){
  .bfb-common-cta-sp.voice .bfb-cta-button a {
    max-width: 306px;
    padding: 10px;
    text-indent: 0;
  }
}

.bfb-common-cta.dissolution .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-indent: 38px;
  width: 380px;
  display: block;
  padding: 10px;
  border-radius: 3px;
  background: #ed6b14;
  box-shadow:0px 4px 0px 0px #964e01e6;;
  -moz-box-shadow:0px 4px 0px 0px #964e01e6;;
  -webkit-box-shadow:0px 4px 0px 0px #964e01e6;;
  text-decoration: none;
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d31204+0,b50303+44,770000+100 */
  background: #d31204; /* Old browsers */
  background: rgba(227,208,4,1); /* FF3.6-15 */
  background: linear-gradient(to bottom, rgba(227,208,4,1) 0%, rgba(232,173,2,1) 53%, rgba(237,142,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(top, rgba(227,208,4,1) 0%, rgba(232,173,2,1) 53%, rgba(237,142,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3d004', endColorstr='#ed8e00', GradientType=0 ); /* IE6-9 */
}
.bfb-common-cta.dissolution .bfb-cta-wrap .bfb-cta-right .bfb-cta-button a::before {
  display:none;
  position: absolute;
  content: url('./float-pc_icon.png');
  left: -14px;
  top: 11px;
}

.bfb-common-cta.dissolution .bfb-cta-wrap .bfb-cta-left .bfb-cta-text {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  margin: 8px auto;
}

@media screen and (max-width: 767px){
.bfb-common-cta-sp.dissolution .bfb-common-cta-sp-wrap{
padding: 0;
}
}





/** 20210512 takahashi **/
.nation-wide {
	margin: 6px 6px 0;
	float: left;
}
.nation-wide img {
	width: 100%;
    max-width: 98px;
}


/*----Renew-----*/
.bfb-common-cta.renew{
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;;
}

.bfb-common-cta.renew .bfb-cta-wrap .bfb-contact {
  overflow: hidden;
  max-width: 755px;
  margin: 8px auto;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-left{
  margin: 0 0 6px 0;
  float: inherit;
}
.bfb-common-cta.renew .bfb-cta-wrap .txt-left-note{
  border-radius: 4px;
  background-color: #046c50;
  font-size: 12px;
  color: #FFF;
  line-height: 14px;
  float: left;
  display: inline-block;
  padding: 1px 8px;
  text-align: center;
}
.bfb-common-cta.renew .bfb-cta-wrap .txt-left{
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  float: left;
  width: calc(100% - 80px);
  padding: 0 0 0 11px;
}
.bfb-common-cta.renew .bfb-cta-wrap .txt-left span{
  color: #fffd86;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right{
  float: inherit;
  width: 100%;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li{
  position: relative;
  display: block;
  float: left;
  max-width: 240px;
  width: 100%;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  transition: all ease-in-out .3s;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(1){
  margin-right: 4px;
  max-width: 200px;
  color: #fff;
  position: relative;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(1):before{
  content: 'TEL.';
  font-size: 14px;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(1) a{
  text-align: left;
  padding: 0;
  font-size: 20px;
  font-family: "Hiragino Kaku Gothic Pro", Verdana, メイリオ,sans-serif;
  font-weight: 600;
  margin-left: 30px;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(1) a span{
  font-size: 10px;
  line-height: 12px;
  font-weight: normal;
  padding-top: 2px;
  margin-left: -30px;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(1) .mini_tel{
  font-size: 10px;
  line-height: 12px;
  font-weight: normal;
  font-family: "Hiragino Kaku Gothic Pro", Verdana, メイリオ,sans-serif;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(2):before{
  background: url(../images/sp-icon02.png) no-repeat center center;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  width: 40px;
  height: 32px;
  top: 9px;
  left: 29px;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(2){
  background-color: #222222;
  background-image: linear-gradient(to bottom,#d11104 0%,maroon 100%);
  margin-right: 16px;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(3):before{
  background: url(../images/float-icon.png) no-repeat center center;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  width: 34px;
  height: 40px;
  top: 5px;
  left: 14px;
}
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li a{
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #FFF;
  display: block;
  transition: all ease-in-out .3s;
  padding: 6px 0;
  position: relative;
  z-index: 9;
}

.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:hover{
  -webkit-filter: brightness(1.2);
  -moz-filter: brightness(1.2);
  -o-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
}

.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li a span{
  font-size: 12px;
  line-height: 1.1;
  display: block;
}

.bfb-common-cta-sp.renew .bfb-common-cta-sp-wrap{
  padding: 6px 0;
}
.bfb-common-cta-sp.renew .bfb-cta-text{
  margin-bottom: 4px;
}
.bfb-common-cta-sp.renew .bfb-cta-right{
  width: 100%;
  float: inherit;
  padding: 0 8px;
}
.bfb-common-cta-sp.renew .bfb-cta-right ul{
  
}
.bfb-common-cta-sp.renew .bfb-cta-right li{
  display: block;
  float: left;
  margin-right: 5px;
  width: calc((100% - 10px) / 3);
  list-style-type: none;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  position: relative;
}
.bfb-common-cta-sp.renew .bfb-cta-right li:before{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
}
/*
.bfb-common-cta-sp.renew .bfb-cta-right li a{
  display: block;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  padding: 10px 0 5px;
  position: relative;
  z-index: 8;
}
*/

.bfb-common-cta-sp.renew .bfb-cta-right li a{
  display: flex;
	flex-direction:column;
	justify-content: center;
	align-items:center;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  padding: 10px 0 5px;
  position: relative;
  z-index: 8;
}

.bfb-common-cta-sp.renew .bfb-cta-right li img{
  width:18px;
	height:18px;
}
.bfb-common-cta-sp.renew .bfb-cta-right li a span{
  display: block;
  font-size: 11px;
  letter-spacing:-0.5px;
  line-height: 1.1;
}
@media screen and (max-width: 375px){
  .bfb-common-cta-sp.renew .bfb-cta-right li a{
    font-size: 13px;
  }
}
@media screen and (max-width: 350px){
  .bfb-common-cta-sp.renew .bfb-cta-right li a{
    font-size: 12px;
  }
  .bfb-common-cta-sp.renew .bfb-cta-right li a span{
    font-size: 10px;
  }
}
.bfb-common-cta-sp.renew .bfb-cta-right li:nth-child(1){
  background-color: #f29437;
  background-image: linear-gradient(to bottom, #f3b100 0%, #d98700 100%);
}
/*
.bfb-common-cta-sp.renew .bfb-cta-right li:nth-child(1):before{
  width: 39px;
  height: 39px;
  background: url(../images/icon-tel.png) no-repeat center center;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}
*/
.bfb-common-cta-sp.renew .bfb-cta-right li:nth-child(2){
  background-color: #222222;
  background-image: linear-gradient(to bottom, #d11104 0%, #800000 100%);
}
/*
.bfb-common-cta-sp.renew .bfb-cta-right li:nth-child(2):before{
  width: 40px;
  height: 32px;
  background: url(../images/sp-icon02.png) no-repeat center center;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}
*/
.bfb-common-cta-sp.renew .bfb-cta-right li:nth-child(3){
  margin-right: 0;
  background-color: #222222;
  background-image: linear-gradient(to bottom, #08986f 0%, #03664b 100%);
}
/*
.bfb-common-cta-sp.renew .bfb-cta-right li:nth-child(3):before{
  width: 34px;
  height: 40px;
  background: url(../images/float-icon.png) no-repeat center center;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}
*/
.bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(3){
  background-color: #f29437;
  background-image: linear-gradient(to bottom, #08986f 0%, #03664b 100%);
}

@media screen and (max-width: 767px){
  .bfb-common-cta.renew .bfb-cta-wrap .bfb-cta-right ul li:nth-child(1) a{
    pointer-events: initial;
  }
}
@media (max-width: 991px){
	.ffm-pc {
		display: none !important;
	}
}
@media (min-width: 992px) {
	.ffm-sp {
		display: none !important;
	}
}