h1 {
  text-align: center;
  margin: 70px 0 60px;
}

h3 {
  margin-top: 40px;
}

.content {
  max-width: 900px;
  padding-left: 30px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table th, table td {
  border: 1px solid #333333;
  padding: 13px;
}
.td_title {
  width: 180px;
}
input,textarea {
  width: calc(100%);
  box-sizing: border-box;
}
input.margin {
  width: calc(100% - 50px);
}
input::placeholder, textarea::placeholder {
  color: #aeae9f;
}
input {
  height: 25px;
  line-height: 25px;
}
textarea {
  height: 130px;
}
button, select {
  height: 40px;
}

.toggle_estates_title {
  border-bottom: 2px solid #888888;
  line-height: 40px;
  cursor: pointer;
  font-size: 18px;
  position: relative;
}
.toggle_estates_title i {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.toggle_estates_title.open i {
  transform: rotateZ(180deg);
}

.estates_table {
  display: none;
}

.estates_table.open {
  display: table;
}

input[name="post_password"] {
  height: 40px;
  margin-bottom: 20px;
  padding: 0 10px;
}

input[type="submit"] {
  height: 30px;
  margin-bottom: 20px;
}

.note-window {
  position: fixed;
  right: 20px;
  bottom: 0;
  width: calc(100% - 920px);
}
.note-window textarea {
  height: 270px;
  padding: 10px 5px;
}

.save-window {
  position: fixed;
  right: 20px;
  top: 50px;
  width: 300px;
  background: white;
  border-radius: 4px;
  padding: 20px 15px 30px;
}

.save-window .button {
  background: cornflowerblue;
  padding: 3px 5px;
  width: 70px;
  text-align: center;
  cursor: pointer;
  color: white;
  display: inline-block;
  margin-right: 10px;
}
.save-window .button:hover {
  opacity: 0.8;
}

.save-window small {
  display: block;
  font-size: 12px;
}

.sozaiInputWrap {
  display: inline-block;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  color: white;
  font-size: 14px;
  background: cornflowerblue;
  cursor: pointer;
}
.sozaiInputWrap:hover {
  opacity: 0.8;
}
.sozaiInputWrap > input {
  display: none;
}

.build_appeal_img_preview {
  display: none;
  height: 120px;
  width: 180px;
  background: #eee;
  margin-left: 10px;
}
.build_appeal_img_preview.is-open {
  display: inline-block;
  vertical-align: middle;
}

.build_appeal_img_preview img {
  display: block;
  height: 120px;
  margin: 0px auto;
}

.hover_item {
  position: relative; 
}

.hover_item span {
  font-size: 13px;
  text-decoration: underline;
}

.hover_item:hover .hover_content {
  display: block;
  position: absolute;
  left: 0;
  top: 90%;
  width: 300px;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #333;
  background: white;
}

.hover_content {
  display: none;
}

.rowup, .rowdown {
  display: block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background: cornflowerblue;
  color: white;
  border-radius: 3px;
  text-align: center;
  margin: 0 auto;
  padding: 4px;
  font-weight: bold;
  cursor: pointer;
}

.rowup:hover, .rowdown:hover {
  opacity: 0.8;
}

.rowup {
  margin: 0 auto 10px;
}