/* ここから編集 */
:root {
  --y: 12px;
}

main {
  padding: 72px 0 36px;
  flex-grow: 1;
  font-family: var(--fontIII);
}

textarea,
input {
  resize: none;
  outline: none;
}

.answer > textarea {
  width: 100%;
  line-height: 22px;
  padding: 5px;
}

.submitting {
  padding: 0 15px;
  font-size: var(--mbFont);
  text-align: center;
  display: none;
}

.thanks {
  padding: 0 15px;
  font-size: var(--mbFont);
  text-align: center;
  display: none;
}

.rev-wrapper {
  display: flex;
  justify-content: center;
}

.review {
  margin: 20px 0 40px 0;
  display: none;
}

.rev {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: var(--mbFont);
  cursor: pointer;
  user-select: none;
}

.rev > div:last-child {
  width: 230px;
}

.rev-con {
  display: inline-block;
  word-break: break-all;
  border-left: 2px solid gray;
  padding: 0 12px 0 10px;
  margin: 10px 10px 0 10px;
}

.return {
  font-size: var(--mbFont);
  display: none;
  justify-content: center;
  margin: auto;
  margin-top: 10px;
}

.return > a {
  display: flex;
  justify-content: space-around;
  font-weight: bold;
  font-size: var(--mbFont);
  padding: 7px 15px;
  border-radius: 3px;
  border: none;
  background-color: blue;
  color: white;
  transition: linear 0.1s background-color;
  cursor: pointer;
  width: 200px;
}

.return > a > div:first-child {
  transform: translateY(2px) rotate(180deg);
}

.return > a:hover {
  background-color: rgb(64, 64, 255);
}

.main {
  /* display: none; */
  display: flex;
  justify-content: center;
}

#top {
  min-height: 50px;
}

.top-con {
  text-align: center;
  margin: 15px 0;
}

.top-info h1 {
  font-size: var(--ltFont);
}

.form {
  margin: 8px;
  width: 100%;
}

.box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.box > .explanation {
  color: gray;
}

.explanation > div:first-child {
  font-size: var(--mbFont);
  color: black;
}

.explanation > div:nth-child(2) {
  display: flex;
}

.answer {
  width: 50%;
  display: flex;
  justify-content: flex-start;
}

.content {
  font-size: var(--sbFont);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid gray;
  overflow: hidden;
}

.content:focus {
  border-bottom: 1px solid green;
}

.form > div {
  margin: 10px;
}

.form > div:nth-child(2) {
  padding: 10px 0 10px;
}

.subsubmit {
  display: flex;
  justify-content: center;
}

button#submit {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: var(--mbFont);
  padding: 7px 15px;
  border-radius: 3px;
  border: none;
  background-color: blue;
  color: white;
  transition: linear 0.1s background-color;
  cursor: pointer;
  width: 200px;
}

button#submit:hover {
  background-color: rgb(64, 64, 255);
}

.wait {
  display: none;
  text-align: center;
  font-size: var(--mbFont);
}

.mail-info {
  padding: 20px 0 0;
  text-align: center;
}

.mail-info p {
  font-size: var(--sbFont);
}

.hidden {
  display: none;
}
