@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

body * {
  box-sizing: border-box;
  flex-shrink: 0;
}

* {
  margin: 0;
  padding: 0;
}

/*body {*/
/*  font-family: 'Noto Sans JP', '源ノ角ゴシック', Meiryo, sans-serif*/
/*}*/

/*input {*/
/*  background-color: transparent;*/
/*  border: 0;*/
/*}*/

.flex-row {
  display: flex;
  flex-direction: row;
}

.group_title {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding-left: 17px;
  font-family: "Zen Kaku Gothic New",sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #000000;
  text-align: left;
  margin-top: 20px;
  position: relative;
  background-color: #EEEEEE;
}

.title_input {
  font-family: "Zen Kaku Gothic New",sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  margin: 20px 0 20px 25px;
}

.select_item {
  width: 70%;
  margin-left: 40px;
}

.select_box {
  margin: 0 0 10px 5%;
  font-family: "Zen Kaku Gothic New",sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  text-decoration: none;
  border-radius: 2px;
  height: 40px;
  padding: 0 0 0 2px;
  border-color: #eee;
  display: flex;
  flex: 1;
}

.title_unit {
  margin: 5px;
  font-family: "Zen Kaku Gothic New",sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  width: 50px;
}

table {
  width: 100%;
  text-align: center;
}

table th,
td {
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  height: 40px;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New",sans-serif;
}

tr th:first-child,
td:first-child {
  border-left: 0px;
}

tr th:last-child,
td:last-child {
  border-right: 0px;
}

.box_disabled .select_box {
  border: 1px solid #eee;
  background-color: #f5f5f5;
  line-height: 40px;
  padding-left: 5px;
}

.group_title {
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.button_text {
  width: 100%;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-family: "Zen Kaku Gothic New",sans-serif;
  font-weight: NaN;
  text-align: center;
  white-space: nowrap;
}

/*.button_image {*/
/*  width: 26px;*/
/*  height: 16px;*/
/*  position: absolute;*/
/*  right: 15px;*/
/*  top: 15px;*/
/*}*/

.block_hope_detail_item_hr {
  margin-bottom: 10px;
}

.button {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  height: 50px;
  width: 96%;
  margin: 0 auto;
  margin-top: 17px;
  width: 96%;
  margin: 0 auto;
  line-height: 50px;
}

.loading {
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 100%;
  animation: circle infinite 0.75s linear;
  margin: 10px auto;
}

@keyframes circle {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.errorText {
  padding: 20px;
  text-align: center;
  color: #FA3C3C;
}

.contractDetailContent {
  will-change: height;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 0px;
}

.collapse-transition {
  transition: height 1s ease-in-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}