@charset "UTF-8";

/* サポート詐欺 */
.bl_alert{
  background-color: #fff;
  width: 650px;
}
.bl_alert_red{
  color: #E70012;
}
.bl_alert_underline{
  text-decoration: underline;
}
.bl_alert_title{
  background-color: #E70012;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 14px;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 30px;
}
.bl_alert_warning{
  background-color: #FBFF8A;
  margin-top: 21px;
  display: flex;
  height: 100px;
  align-items: center;
}
.bl_alert_warning_img{
  width: 266px;
  height: 115px;
}
.bl_alert_warning_img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(10px, -54px);
  margin-top: 45px;
}
.bl_alert_warning_text{
  font-weight: bold;
  line-height: 24px;
  font-size: 14px;
}
.bl_alert_read{
  background-image: url(/assets/img/alert/img_alert_03.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 45px 15px;
  text-align: center;
  padding: 0 40px;
}
.bl_alert_read_main{
  font-size: 30px;
  font-weight: bold;
  padding: 40px 0px 10px;
}
.bl_alert_read_sub{
  line-height: 26px;
}
.bl_alert_checklist{
  padding: 0 40px;
  margin: 25px 0 0;
}
.bl_alert_checklist ul{
  background-color: #F5E6E6;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding: 15px 40px;
  font-size: 14px;
}
.bl_alert_checklist ul li{
  background-image: url(/assets/img/alert/icon_alert_01.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 14px 14px;
  padding: 6px 0 6px 23px;
  place-content: center;
}
.bl_alert_info{
  padding: 10px 40px 0;
  font-size: 12px;
  line-height: 16px;
}
.bl_alert_info a{
  color: #E70012;
}
.bl_alert_check{
  text-align: center;
  padding: 20px 40px 0;
  font-size: 14px;
}
.bl_alert_check input{
  vertical-align: -2px;
}
.bl_alert_close{
  margin: 12px auto 0;
  border: #E51F1F solid 1px;
  border-radius: 3px;
  width: 150px;
  padding: 12px 0;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.bl_alert_close:hover{
  background-color: #ffdfe1;
}
.bl_alert_logo{
  text-align: center;
  padding: 20px 0 20px;
}
.bl_alert_logo img{
  width: 220px;
}

@media screen and (max-width: 767px) {
  .bl_alert{
    width: calc(100% - 30px);
    max-height: 80vh;
    overflow-y: scroll;
  }
  .bl_alert_title {
    font-size: 18px;
    line-height: 1.4;
    padding: 12px;
  }
  .bl_alert_warning {
    margin-top: 15px;
  }
  .bl_alert_warning_text{
    padding: 0 20px;
    line-height: 1.5;
  }
  .bl_alert_read_main {
    padding-top: 30px;
  }
  .bl_alert_read{
    padding: 0 15px;
  }
  .bl_alert_checklist{
    padding: 0 15px;
    margin-top: 15px;
  }
  .bl_alert_checklist ul{
    padding: 10px 12px;
  }
  .bl_alert_info{
    padding: 10px 15px 0;
  }
  .bl_alert_check{
    padding: 15px 15px 0;
  }
}