@charset "UTF-8";
.sp {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.form__parts {
  width: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.form__title {
  width: 40%;
  background-color: #eee;
  padding: 10px;
}
.form__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  padding: 0 10px;
}
.form__ui {
  width: 80px;
  border: 1px solid #eee;
  border-radius: 4px;
  line-height: 30px;
  padding: 0 15px;
  margin-right: 10px;
}

main {
  max-width: 1600px;
  padding: 20px;
  margin: 0 auto;
  font-size: 14px;
  color: #111;
  line-height: 1.5;
}

.result__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.result__table {
  width: 100%;
  border-collapse: collapse;
}
.result__table th, .result__table td {
  padding: 7px 5px;
  border: 1px solid #ddd;
  font-size: 13px;
}
.result__table thead th {
  background-color: #eee;
  text-align: center;
}
.result__table tbody td {
  text-align: center;
}
.result__table tbody td:nth-child(1) {
  min-width: 80px;
}
.result__table tbody td strong {
  font-weight: bold;
  font-size: 120%;
  color: darkred;
}
.result__table tbody td .tani {
  display: inline-block;
  font-size: 10px;
  margin-left: 3px;
  opacity: 0.5;
}

.alert {
  margin: 20px 0;
}
.alert__text {
  background-color: red;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .main {
    padding: 0 10px;
  }
  .result {
    width: 100%;
    overflow-x: auto;
  }
  .result__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .result__table th, .result__table td {
    padding: 3px 2px;
    font-size: 12px;
  }
  .result__table thead {
    position: sticky;
    top: 0;
    left: 0;
  }
  .result__table tbody td {
    min-width: 50px;
  }
  .result__table tbody td:nth-child(1) {
    min-width: 50px;
  }
  .result__table tbody td .tani {
    font-size: 10px;
  }
}/*# sourceMappingURL=styles.css.map */