@charset "UTF-8";
input[type="radio"] + label {
  position: relative;
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  height: 35px;
  padding: 0 0 0 40px;
  line-height: 35px;
  margin: 8px 20px 0 0;
  cursor: pointer;
}
input[type="radio"] + label::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}
input[type="radio"]:checked + label::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: #3A4351;
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.alert{
  color: red;
}
.settingBox{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.settingBox .settingPass{
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.settingBox .settingPass div div{
  display: flex;
  align-items: center;
}
.settingBox .settingPass p{
  white-space: nowrap;
  padding-right: 10px;
}
.settingBox .settingPass p{
  white-space: nowrap;
  padding-right: 10px;
}
.settingBox .settingPass input{
  width: 200px !important;
}
.settingBox .settingPass .alert{
  position: relative;
  top: 5px;
  display: block;
  line-height: 1.2;
}
#contents .formArea .saveBtn,
#contents form + .saveBtn{
  margin-top: -15px;
}
@media only screen and (max-width:1450px) {
  .settingBox > div{
    width: 100%;
  }
  .settingBox .settingPass div{
    width: 100%;
  }
  .settingBox .settingPass input{
    width: 100% !important;
  }
}