/*入力フォームなどのCSSを設定する*/
.background_text{
    width: 120%;
    font-size: 20px;
    text-align: center;
}
.background_text2{
    margin-top: 50px;
}
/*ポップアップするものを、最初は隠しておく*/
.popup{
    display: none;
}
/*画面を覆う黒画面*/
.black_cover{
    /*左上から縦横100% = 表示画面全体*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    /*透明度*/
    opacity: 0.5;
    /*前面に（値は適当）*/
    z-index: 20;
}
/*ポップアップの中身*/
.popup_content{
    position: fixed;
    /*左上から25%の所から50%ずつ = 表示画面中央*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(255,255,255,0);
    height: 514px;
    max-width: 600px;

    /*黒背景より前に*/
    z-index: 30;
    text-align: center;
    /*background: url(../images/healthy-company/questionnaire.png) center center no-repeat;*/
}
.popup_content:hover {
    opacity: 0.9;
    transition: 0.3s;
}
.popup_content .close_button{
    position: absolute;
    top: 4%;
    right: 12px;
    font-size: 32px;
    color: #fff
}
@media screen and (max-width: 400px){
    .popup_content .close_button {
        top: 2%;
    }
}


aside .pdf-side-form {
  max-width: 320px;
  margin: 0 auto;
}
aside .pdf-side-form img {
  background: #EAEFF3;
}
aside .pdf-side-form .inner {
  background: #323232;
  border: 2px solid #d30019;
  border-top: none;
  margin-top: -4px;
  padding: 30px 15px 0;
}

aside .pdf-side-form .inner .side-form-b-a {
  background: #fff;
  border-radius: 6px;
}

@media screen and (max-width:550px){
  aside .pdf-side-form .inner .side-form-b-a {
  background: none;
}

}

aside .pdf-side-form .inner .side-form-b-a .pdf-form-b-button{
  -webkit-transition: .25s;
     -moz-transition: .25s;
      -ms-transition: .25s;
       -o-transition: .25s;
          transition: .25s;
}


aside .pdf-side-form .inner .side-form-b-a .pdf-form-b-button:hover {
  opacity:0.8;
}

@media screen and (max-width:550px){
aside .pdf-side-form .inner .side-form-b-a .pdf-form-b-button:hover {
  opacity:1;
}
}

aside .pdf-side-form .inner input {
  display: block;
  float: none;
  font-size: 16px;
  color: #898989;
  padding: 9px 13px;
  width: 100%;
  border: 1px #ccc solid;
  margin-bottom: 16px;
}
aside .pdf-side-form .inner .submit-parent {
  border-radius: 4px;
}
aside .pdf-side-form .inner .submit-parent input.submit-button {
  background: url("https://bowgl.com/wp-content/themes/bowgl/images/side-form/submit-button.png") center no-repeat;
  border: none;
  height: 48px;
  margin-top: 24px;
  margin-bottom: 40px;
  width: 100%;
}
aside .pdf-side-form .inner label {
  display: block;
  font-size: 14px;
  color: #fff;
}
aside .pdf-side-form .inner label span {
  font-size: 11px;
  padding: 3px 4px;
  background: #d73931;
  border-radius: 4px;
}

aside.banner-pdf-sp, aside.banner-block-sp {
  display: none;
}
@media screen and (max-width: 991px) {
  aside.banner-pdf-sp, aside.banner-block-sp {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  .banner-block {
    display: none;
  }
}

.healthy-company-inner {
  position: relative;
}

.healthy-company-inner #healthy-company {
  background: #fff;
  border-radius: 6px;
  position: absolute;
  /*max-width: 272px;*/
  max-width: 252px;
  left: 0;
  right: 0;
  /*bottom: 24px;*/
  bottom: 14px;
  margin: auto;
}

.healthy-company-inner #healthy-company.alpha:hover {
  opacity: 1;
}

.healthy-company-inner #healthy-company img {
  -webkit-transition: .25s;
  -moz-transition: .25s;
  -ms-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
}

.healthy-company-inner #healthy-company img:hover {
  opacity: 0.8;
}