@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  background-color: #f9fbfd;
  color: #d22d27;
  padding: 48px;
  border: 2px solid #d22d27;
  text-align: center;
  max-width: 720px;
}

.result-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#result {
  width: 80%;
  height: auto;
  font-size: 2rem;
  padding: 8px;
  resize: vertical;
  min-height: 55px;
}

.setting {
  padding: 5px;
  text-align: left;
}
.setting.checkbox {
  display: flex;
  align-items: center;
}
.setting.checkbox label {
  margin-left: 4px;
}

#length {
  text-align: center;
}

input[type=number] {
  width: 56px;
  height: 24px;
}

input[type=checkbox] {
  width: 24px;
  height: 24px;
}

.icon-button {
  background-size: 2rem;
  width: 55px;
  height: 55px;
  display: inline-block;
  border: 0;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
}
.icon-button.copy-button {
  background-image: url(./image/copy.svg);
}
.icon-button.new-button {
  background-image: url(./image/new.svg);
}

#copied {
  opacity: 0;
  transition: opacity 0.1s;
}
#copied.show {
  opacity: 1;
  transition: opacity 0.1s;
}

.hover-button {
  transition: all 0.5s;
  cursor: pointer;
  color: #d22d27;
}
.hover-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.hover-button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -10px;
  transition: 0.5s;
}
.hover-button:hover span {
  padding-right: 16px;
}
.hover-button:hover span:after {
  opacity: 1;
  right: 0;
}/*# sourceMappingURL=style.css.map */