@charset "UTF-8";

/* ----------------------------------------------------------------
    Shotoku (shtk-*)
----------------------------------------------------------------- */
/* .shtk-panel
----------------------------------------------- */
.shtk-panel {
  box-sizing: border-box;
  padding: 50px 43px 60px;
  border: 1px solid #cdd2df;
  border-radius: 20px;
  background: #f6f6f6;
}
@media only screen and (max-width: 640px) {
  .shtk-panel {
    margin: 20px 0 0;
    padding: 28px 29px 40px;
  }
}

/* .shtk-tbl
----------------------------------------------- */
.shtk-tbl {
  width: 100%;
}
.shtk-tbl > tbody > tr > th,
.shtk-tbl > tbody > tr > td {
  box-sizing: border-box;
  padding: 0 15px 30px;
}
.shtk-tbl > tbody > tr > th {
  width: 56%;
}
.shtk-tbl > tbody > tr > td {
  display: flex;
  align-items: flex-end;
  font-size: 2.4rem;
}
.shtk-tbl > tbody > tr > td > * {
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 0;
}
.shtk-tbl > tfoot {
  border-top: 5px solid #a7b4c0;
  text-align: center;
}
.shtk-tbl > tfoot > tr > td {
  padding: 28px 50px 0;
}
@media only screen and (max-width: 900px) {
  .shtk-tbl > tbody > tr > td {
    display: table-cell;
    width: 44%
  }
  .shtk-tbl > tbody > tr > td > * {
    flex: 0 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .shtk-tbl,
  .shtk-tbl > tbody,
  .shtk-tbl > tfoot,
  .shtk-tbl tr,
  .shtk-tbl th,
  .shtk-tbl td {
    display: block !important;
  }
  .shtk-tbl > tbody > tr > th {
    width: 100%;
    padding: 0 3px 20px;
    text-align: center;
  }
  .shtk-tbl > tbody > tr > td {
    width: 100%;
    padding: 0 3px 20px;
    font-size: 1.9rem;
    text-align: center;
  }
  .shtk-tbl > tfoot > tr > td {
    padding: 20px 0 0;
  }
}

/* .shtk-form-label
----------------------------------------------- */
.shtk-form-label {
  font-size: 2.8rem;
  font-weight: 400;
}
.shtk-form-label > span {
  display: block;
  font-size: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .shtk-form-label {
    font-size: 2.4rem;
  }
  .shtk-form-label > span {
    font-size: 1.4rem;
  }
}

/* .shtk-form-num
----------------------------------------------- */
.shtk-form-num {
  box-sizing: border-box;
  margin: 0 10px 0 0;
  padding: 0 27px;
  height: 60px;
  border: 1px solid #cdd2df;
  box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, .24);
  -moz-appearance: textfield;
  appearance: textfield;
  text-align: right;
  font-size: 2.4rem;
}
.shtk-form-num::-webkit-outer-spin-button,
.shtk-form-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .shtk-form-num {
    width: 80%;
  }
}
@media only screen and (max-width: 640px) {
  .shtk-form-num {
    /*width: auto;*/
    height: 40px;
    font-size: 1.6rem;
  }
}

/* .shtk-btn-calc
----------------------------------------------- */
.shtk-btn-calc {
  position: relative;
  z-index: 1;
  min-height: 60px;
  min-width: 344px;
  border: 0;
  border-radius: 50vh;
  background: #02315b;
  font-size: 2rem;
  color: #fff;
  transition: .2s ease;
}
.shtk-btn-calc::before {
  position: absolute;
  left: 0;
  top: -3px;
  z-index: -1;
  display: block;
  min-height: 60px;
  min-width: 344px;
  border: 0;
  border-radius: 50vh;
  background: #005bac;
  content: '';
}
.shtk-btn-calc::after {
  position: absolute;
  top: 10px;
  left: 37px;
  display: block;
  width: 28px;
  height: 35px;
  background: url(/users/topics/nencho/img/icon-calc.svg) no-repeat;
  background-size: 100% 100%;
  content: '';
}
.shtk-btn-calc > span {
  position: relative;
  top: -3px;
}
.shtk-btn-calc:not(:disabled):hover,
.shtk-btn-calc:not(:disabled):active,
.shtk-btn-calc:not(:disabled):focus {
  opacity: .8;
}
.shtk-btn-calc:not(:disabled):active::before {
  top: 0;
}
.shtk-btn-calc:not(:disabled):active::after {
  top: 13px;
}
.shtk-btn-calc:not(:disabled):active > span {
  top: 0;
}
.shtk-btn-calc:disabled {
  background: none;
}
.shtk-btn-calc:disabled::before {
  background: #a7b4c0;
}
.shtk-btn-calc:disabled::after {
  opacity: .7;
}
.shtk-btn-calc:disabled > span {
  opacity: .7;
}
@media only screen and (max-width: 640px) {
  .shtk-btn-calc,
  .shtk-btn-calc::before {
    min-height: 50px;
    min-width: 0;
    max-width: 344px;
    width: 100%;
  }
  .shtk-btn-calc {
    font-size: 1.6rem;
  }
  .shtk-btn-calc::after {
    top: 11px;
    left: 30px;
    width: 23px;
    height: 28px;
  }
}

/* .shtk-list-result
----------------------------------------------- */
.shtk-list-result {
  position: relative;
  padding: 57px 0 0;
}
.shtk-list-result::before,
.shtk-list-result::after,
.shtk-list-result_inner::before {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8.5px 0 8.5px;
  display: block;
  transform: translateX(-50%);
  content: '';
}
.shtk-list-result::before {
  top: 10px;
  border-color: #c5d7e7 transparent transparent transparent;
}
.shtk-list-result::after {
  top: 22px;
  border-color: #6299ca transparent transparent transparent;
}
.shtk-list-result_inner {
  border: 3px solid #a7b4c0;
  background: #fff;
}
.shtk-list-result_inner::before {
  top: 33px;
  border-color: #005bac transparent transparent transparent;
}
.shtk-list-result_inner > :last-child {
  margin-bottom: 0;
}
.shtk-list-result_item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px 17px;
}
.shtk-list-result_item > dt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 2.2rem;
  font-weight: 700;
}
.shtk-list-result_item > dt > span {
  font-size: 1.6rem;
}
.shtk-list-result_item > dd {
  margin: 0 0 0 40px;
  color: #005bac;
  font-size: 1.9rem;
  font-weight: 700;
}
.shtk-list-result_item > dd > span {
  font-size: 4rem;
}
@media only screen and (max-width: 640px) {
  .shtk-list-result {
    padding: 45px 0 0;
  }
  .shtk-list-result::before,
  .shtk-list-result::after,
  .shtk-list-result_inner::before {
    border-width: 7px 6.5px 0 6.5px;
  }
  .shtk-list-result::before {
    top: 6px;
  }
  .shtk-list-result::after {
    top: 17px;
  }
  .shtk-list-result_inner::before {
    top: 28px;
  }
  .shtk-list-result_item {
    flex-direction: column;
  }
  .shtk-list-result_item > dt {
    font-size: 1.6rem;
  }
  .shtk-list-result_item > dt > span {
    font-size: 1.4rem;
  }
  .shtk-list-result_item > dd {
    margin: 0;
    font-size: 1.6rem;
  }
  .shtk-list-result_item > dd > span {
    font-size: 3.2rem;
  }
}
