@charset "utf-8";

/* 資料請求ボタン */
.cvr .btn.doc {
  background: #88b60d;
  box-shadow: 0 calc(10 / var(--artboard-size) * var(--scale)) 0 #6d8c13;
  border-radius: calc(25 / var(--artboard-size) * var(--scale));
  font-weight: 600;
  font-size: calc(26 / var(--artboard-size) * var(--scale));
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin: 25px auto 0;
  padding: 25px 16px;
  padding-right: 34px;
  position: relative;
  max-width: 500px;
  width: 100%;
}
.cvr .btn.doc::after {
  position: absolute;
  top: 50%;
  right: calc(28 / var(--artboard-size) * var(--scale));
  width: calc(28 / var(--artboard-size) * var(--scale));
  height: calc(28 / var(--artboard-size) * var(--scale));
  content: "";
  background: url(../images/btn_arrow.svg) no-repeat 50% 50%;
  background-size: contain;
  transition: .3s;
  transform: translateY(-50%);
}
.cvr .btn.doc span{
  color: var(--wh);
  font-weight: 700;
  letter-spacing: .1em;
  flex: 1;
  text-align: center;
  transform: rotateZ(0.03deg);
}
.reason .cvr .inner .btn.doc{
  margin-top: 0;
}
@media (any-hover: hover) {
  .cvr .btn.doc:hover {
    opacity: .8;
  }
  .cvr .btn.doc:hover::after {
    right: calc(17 / var(--artboard-size) * var(--scale));
  }
}
@media (max-width: 767.98px) {
  .cvr .btn.doc {
    font-size: calc(34 / var(--artboard-size) * var(--scale));
    box-shadow: 0 calc(10 / var(--artboard-size) * var(--scale)) 0 #6d8c13;
    margin-top: calc(20 / var(--artboard-size) * var(--scale));
    padding: calc(40 / var(--artboard-size) * var(--scale)) calc(30 / var(--artboard-size) * var(--scale));
  }
  .cvr .btn.doc::after{
    right: calc(28 / var(--artboard-size) * var(--scale));
    width: calc(34 / var(--artboard-size) * var(--scale));
    height: calc(34 / var(--artboard-size) * var(--scale));
  }
}

/* 固定ボタン */
.fixed-menu{
  max-width: inherit;
  width: 100%;
}
.fixed-menu .fixed-menu-cvr{
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  height: 98px;
  width: 100%;
}
.fixed-menu .fixed-menu-cvr .btn{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  margin: 0;
  height: 69px;
  width: 330px;
}
.fixed-menu .fixed-menu-cvr .btn.doc{
  background: #88b60d;
  box-shadow: 0 calc(6 / var(--artboard-size) * var(--scale)) 0 #6d8c13;
}
.fixed-menu .fixed-menu-cvr .btn.basic{
  background: #2ea7e0;
  box-shadow: 0 calc(6 / var(--artboard-size) * var(--scale)) 0 #187dac;
}
.fixed-menu .fixed-menu-cvr .btn.light{
  background: #e60012;
  box-shadow: 0 calc(6 / var(--artboard-size) * var(--scale)) 0 #bd050f;
}
.fixed-menu .fixed-menu-cvr .btn.basic .logo,
.fixed-menu .fixed-menu-cvr .btn.light .logo{
  height: 30px;
}
.fixed-menu .fixed-menu-cvr .btn::after{
  content: "";
  background-image: url(../images/btn_arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  position: absolute;
  right: 14px;
  top: 50%;
  transition: .3s;
  transform: translateY(-50%);
  width: 18px;
}
.fixed-menu .fixed-menu-cvr .btn.doc .logo{
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
  height: 30px;
  width: 100%;
}
.fixed-menu .fixed-menu-cvr .btn.doc .logo img{
  height: 26px;
  margin: 0 5px;
}
.fixed-menu .fixed-menu-cvr .btn_lead{
  background: none;
  color: #FFF;
  font-size: 13px;
  margin: 7px 0 0;
  text-align: center;
  width: 100%;
}
@media (any-hover: hover) {
  .fixed-menu .fixed-menu-cvr .btn:hover {
    opacity: .8;
  }
  .fixed-menu .fixed-menu-cvr .btn:hover::after {
    transform: translateY(-50%) translateX(calc(5 / var(--artboard-size) * var(--scale)));
  }
}
@media (max-width: 767.98px) {
  .fixed-menu .fixed-menu-cvr{
    flex-wrap: wrap;
    height: auto;
    gap: 0;
    padding-top: 5px;
  }
  .fixed-menu .fixed-menu-cvr > span{
    border-radius: 100vw;
    background: #f6e441;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 27px;
    margin: 0 0 6px;
    width: 32%;
  }
  .fixed-menu .fixed-menu-cvr > span:nth-of-type(2){
    width: 65%;
    margin-left: 1.5%;
  }
  .fixed-menu .fixed-menu-cvr > span:after {
    background: url(../images/shoukai/bln-arw-yellow.svg) top / contain no-repeat;
    content: "";
    display: block;
    height: 8px;
    left: 50%;
    position: absolute;
    top: calc(100% - 2px);
    transform: translateX(-50%);
    width: 14px;
    z-index: 2;
  } 
  .fixed-menu .fixed-menu-cvr .btn{
    border-radius: 0;
    box-shadow: none;
    border-bottom: 6px solid;
    height: 58px;
    width: 33.33%;
  }
  .fixed-menu .fixed-menu-cvr .btn.doc{
    border-bottom-color: #6d8c13;
  }
  .fixed-menu .fixed-menu-cvr .btn.basic{
    border-bottom-color: #187dac;
  }
  .fixed-menu .fixed-menu-cvr .btn.light{
    border-bottom-color: #bd050f;
  }
  .fixed-menu .fixed-menu-cvr .btn::after{
    content: none;
  }
  .fixed-menu .fixed-menu-cvr .btn.basic .logo,
  .fixed-menu .fixed-menu-cvr .btn.light .logo{
    height: 19px;
  }
  .fixed-menu .fixed-menu-cvr .btn.doc .logo{
    flex-direction: column;
    gap: 6px;
    height: initial;
  }
  .fixed-menu .fixed-menu-cvr .btn.doc .logo img{
    height: 17px;
    margin: 0;
  }
}

/*紹介CP用*/
.caution-block{
  background-color: #ffeb97;
  margin: 83px auto 0;
  position: relative;
  max-width: 800px;
}
.caution-block .logo{
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 432px;
  width: 89%;
}
.caution-inner{
  padding: 0 24px 24px;
}
.caution-block .ttl-block{
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}
.caution-block .ttl-block:before,
.caution-block .ttl-block:after{
  content: "";
  display: block;
  height: 96px;
  max-width: 113px;
  width: 16%;
}
.caution-block .ttl-block:before{
  background: url("../images/shoukai/shoukai-dog.png") center bottom / contain no-repeat;
}
.caution-block .ttl-block:after{
  background: url("../images/shoukai/shoukai-cat.png") center bottom / contain no-repeat;
}
.caution-block .ttl{
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 5px 18px;
  text-align: center;
}
.caution-block .text-inner{
  background-color: #FFF;
  padding: 10px 12px 10px 15px;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
.caution-block .text-inner p{
  margin-bottom: 3px;
  overflow-wrap: anywhere;
}
.caution-block .text-inner .color-red{
  color: #ff0000;
}
.fontW-bold{
  font-weight: bold;
}
.error-band{
  background-color: #ed0017;
  color: #FFF;
  font-size: 23px;
  font-weight: 700;
  padding: 10px;
  letter-spacing: .08em;
  text-align: center;
}
@media only screen and (max-width:767px){
  .caution-block{
    margin-top: 53px;
  }
  .caution-block .logo{
    max-width: 320px;
    top: -4%;
  }
  .caution-inner{
    padding: 0 13px 13px;
  }
  .caution-block .ttl-block{
    justify-content: space-between;
  }
  .caution-block .ttl-block:before,
  .caution-block .ttl-block:after{
    height: 74px;
    max-width: 74px;
    width: 22%;
  }
  .caution-block .ttl-block:before{
    background: url("../images/shoukai/shoukai-dog_sp.png") center bottom / contain no-repeat;
  }
  .caution-block .ttl-block:after{
    background: url("../images/shoukai/shoukai-cat_sp.png") center bottom / contain no-repeat;
  }
  .caution-block .ttl{
    font-size: 20px;
    margin: 30px 0 13px;
  }
  .error-band{
    font-size: 18px;
  }
}