@charset "UTF-8";
.content_box .content_group:not(:last-of-type) {
  margin-bottom: 55px;
}
.content_box .content_group ul, .content_box .content_group ol {
  display: block;
  border-radius: 5px;
}
.content_box .content_group ol.start_guide li:not(:last-of-type) {
  margin-bottom: 15px;
}
.content_box .content_group ol.start_guide li:nth-of-type(1):before {
  content: "【1】";
  font-weight: bold;
}
.content_box .content_group ol.start_guide li:nth-of-type(2):before {
  content: "【2】";
  font-weight: bold;
}
.content_box .content_group ol.start_guide li:nth-of-type(3):before {
  content: "【3】";
  font-weight: bold;
}

#lower_case .lower_case_form .input_group:nth-of-type(1) h3:before {
  content: "【1】";
  font-weight: bold;
}
#lower_case .lower_case_form .input_group:nth-of-type(2) h3:before {
  content: "【2】";
  font-weight: bold;
}
#lower_case .lower_case_form .input_group:nth-of-type(3) h3:before {
  content: "【3】";
  font-weight: bold;
}
#lower_case .lower_case_form .input_group textarea {
  padding: 1rem;
  min-height: 200px;
  width: 100%;
  height: 125px;
  font-size: 16px;
  letter-spacing: 0.1rem;
  display: block;
  border-radius: 5px;
  border: solid 1px #ccc;
  box-sizing: border-box;
}
#lower_case .lower_case_form .input_group .convert_btn {
  margin: 30px auto 0px auto;
  padding: 12px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #429ce6;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s;
}
#lower_case .lower_case_form .input_group .convert_btn:hover {
  opacity: 0.75;
}
#lower_case .lower_case_form .input_group .convert_btn i {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../img/convert_btn_ico.png);
  background-size: 30px 30px;
}
#lower_case .copy_btn {
  margin: 30px auto 0px auto;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #fff;
  display: inline-block;
  background-color: #f3a13f;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s;
}
#lower_case .copy_btn:hover {
  opacity: 0.75;
}
#lower_case #copied {
  z-index: 100;
  position: fixed;
  right: 30px;
  bottom: 20px;
  padding: 20px 25px;
  color: #fff;
  font-size: 14px;
  display: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.8);
}