@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
* {
  margin: 0;
  padding: 0;
  font-size: 13px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
}

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Geneva, Arial, Verdana, sans-serif;
  background-color: #eee;
  letter-spacing: 1px;
  font-weight: 200;
}

.wrap {
  width: 1020px;
  padding: 20px 40px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-content: stretch;
  justify-content: space-between;
}

.wrap.nav {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  justify-content: space-between;
  padding: 20px 20px 20px 20px;
  border-bottom: 1px solid #ddd;
}

.wrap.body {
  padding: 20px 20px 20px 20px;
}

nav {}

nav ul {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
}

nav ul li {
  margin: 0 12px 0 0;
  padding: 0;
  list-style-type: none;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  width: 100%;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  padding: 12px 24px;
  text-align: center;
  color: #00A29A;
  border: 1px solid #00A29A;
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  transition: 300ms;
}

nav ul li a.active {
  transition: 300ms;
  color: #00A29A;
  background-color: #CCECEB;
  border: 1px solid #CCECEB;
}

nav ul li a.active:hover, nav ul li a:hover {
  transition: 300ms;
  color: #ffffff;
  background-color: #00A29A;
}

article {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

article.summary.temporary {
  width: calc( ( ( 100% - 80px) / 12) * 5);
}

article.summary.input {
  width: calc( ( ( 100% - 80px) / 12) * 5);
}

article.summary.output {
  width: calc( ( ( 100% - 80px) / 12) * 2);
}

article.comment.xxxx {
  width: calc( ( ( 100% - 80px) / 12) * 2);
}

article.comment.xxxx {
  width: calc( ( ( 100% - 80px) / 12) * 2);
}

h1 {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 1;
  color: #fff;
  padding: 12px 12px;
  text-align: center;
  border-radius: 2px;
  background-color: #f04873;
}

h2 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  padding: 8px 12px 8px 12px;
  text-align: center;
  border-radius: 2px;
  color: #00A29A;
  border-left: 4px solid #00A29A;
}

dl {
  width: 100%;
  border-radius: 2px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 4px;
}

dl:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

dt {
  width: 20%;
  color: #666;
  letter-spacing: 2px;
  float: left;
  padding: 8px 4px 4px;
}

dd {
  padding: 8px 0 4px;
  width: 80%;
  color: #999;
  letter-spacing: 1px;
  float: left;
}

dl input[type="text"] {
  padding: 4px 12px;
  border: #eee solid 2px;
  border-radius: 2px;
  font-size: 12px;
  width: 100%;
  color: #666;
}

#paste_field, #output_field, dl textarea {
  padding: 4px 12px;
  border: #eee solid 2px;
  border-radius: 2px;
  font-size: 12px;
  height: 70px;
  width: 100%;
  color: #666;
}

#paste_field, #output_field {
  padding: 8px 12px;
  height: 600px;
}

button {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 8px;
  line-height: 1;
  color: #fff;
  padding: 8px 12px;
  border-radius: 2px;
  background-color: #558bb4;
  width: 100%;
  box-shadow: 0 3px 0 #4279a3;
  margin-bottom: 12px;
}

input, textarea, button {
  font-family: 'Noto Sans Japanese';
}