.container {
  max-width: 1000px;
  padding: 0 5px;
  margin: 0 auto;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  background-color: rgba(255, 0, 0, 0.05);
}

p {
  margin: 0;
}

.disabled {
  display: none;
  opacity: 0;
}

.title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.title span {
  color: deeppink;
  font-size: 60%;
}

.form {
  width: 100%;
}

.form-sec {
  margin-bottom: 0;
}

.form-sec__title {
  width: 100%;
  background-color: rgba(255, 0, 0, 0.2);
  text-align: center;
  padding: 10px;
}

.form-sec__body {
  padding: 20px;
}

.form-sec-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.form-sec-part__ttl {
  width: 35%;
  max-width: 200px;
  margin-right: 30px;
}

.form-sec-part__ui {
  width: calc(65% - 30px);
}

.form-sec-part__ui input, .form-sec-part__ui option, .form-sec-part__ui select, .form-sec-part__ui textarea {
  margin-right: 10px;
  padding: 5px;
}

.form-sec-part__ui label {
  margin-right: 10px;
}

.form-sec-part__ui textarea {
  width: 100%;
  height: 50px;
}

.form-sec-part__button {
  width: 100%;
}

.form-sec-part__button button {
  width: 100%;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background-color: pink;
  font-size: 18px;
  font-weight: bold;
}

.form-sec-part__button button:hover {
  opacity: 0.5;
}

.result {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.result table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.result table tr th, .result table tr td {
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
  padding: 5px;
  line-height: 1.4;
}

.result table tr th:nth-child(1), .result table tr td:nth-child(1) {
  width: 10%;
}

.result table tr th:nth-child(2), .result table tr td:nth-child(2) {
  width: 15%;
}

.result table tr th:nth-child(3), .result table tr td:nth-child(3) {
  width: 10%;
}

.result table tr th:nth-child(4), .result table tr td:nth-child(4) {
  width: 10%;
}

.result table tr th:nth-child(5), .result table tr td:nth-child(5) {
  width: 10%;
}

.result table tr th:nth-child(6), .result table tr td:nth-child(6) {
  width: 15%;
}

.result table tr th:nth-child(7), .result table tr td:nth-child(7) {
  width: 18%;
}

.result table tr.month12 td {
  background-color: rgba(255, 0, 0, 0.1);
}

.result table tr td small {
  opacity: 0.5;
  font-size: 70%;
}

.result table tr td small::before {
  content: ' ';
}

.result table tr th {
  background-color: rgba(255, 0, 0, 0.3);
}

.chart {
  margin-bottom: 40px;
}

.manual h2 {
  text-align: center;
  font-size: 120%;
}

.manual ul {
  padding: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  .pc {
    display: none;
  }
  .form-sec__body {
    padding: 10px;
  }
  .form-sec-part {
    display: block;
  }
  .form-sec-part__ttl {
    width: 100%;
    max-width: none;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .form-sec-part__ui {
    width: 100%;
    max-width: none;
  }
}
/*# sourceMappingURL=styles.css.map */