main .category_wrap {
  margin-bottom: 1.5rem;
}
main .category_wrap .input_wrap {
  width: fit-content;
  display: flex;
  border: 1px solid #fcdfb1;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
}
main .category_wrap .input_wrap label {
  display: block;
  width: 8rem;
  font-size: 1.4rem;
  padding: 1.5rem 0;
  cursor: pointer;
}
main .category_wrap .input_wrap label:not(:last-of-type) {
  border-right: 1px solid #fff3de;
}
main .category_wrap .input_wrap input[type="radio"]:checked + label {
  background: #fff3de;
  color: #ff9700;
  font-weight: 600;
}
main .category_wrap .checkbox_wrap label {
  display: block;
  font-size: 1.5rem;
  padding: 1rem 0;
  padding-left: 4rem;
  background: url("../img/check_off.png") no-repeat left center / 3rem;
}
main .category_wrap .checkbox_wrap input:checked + label {
  background: url("../img/check_on.png") no-repeat left center / 3rem;
}
main .category_wrap .submit {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  display: block;
  color: #ff9700;
  width: 100%;
  background: #fff3de;
  border: 1px solid #fcdfb1;
  border-radius: 1rem;
  margin-top: 2.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

main .result_wrap ul li a {
  display: block;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;;
}
main .result_wrap ul li:last-child a {
  border-bottom: 0;
}
main .result_wrap ul li a .title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
}
main .result_wrap ul li a .bank {
  font-size: 1.5rem;
  color: #ff9700;
  margin: 1rem 0 .8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .result_wrap ul li a .info span {
  font-size: 1.5rem;
  color: #666;
  word-break: break-all;
  line-height: 1.4;
}
main .result_wrap ul li a .info.sm span {
  font-size: 1.2rem;
}
main .result_wrap ul li a .info span:not(:last-child)::after {
  content: "|";
  margin-left: .3rem;
}
main .result_wrap ul li a .more_btn { width: 100%; max-width: 500px; padding: .6rem 0; margin: 1rem auto 0;display: block; text-align: center; border-radius: 30px; background: #ff9700; color: #fff; font-size: 1.4rem;}


/* highest_sub.php */
main .product_wrap {
  padding: 1.5rem;
  background: #fff3de;
}
main .product_wrap .inner {
  background: #fff;
  border-radius: 1rem;
  text-align: center;
}
main .product_wrap .title_wrap {
  padding: 2rem;
}
main .product_wrap .title_wrap .bank {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: .5rem;
}
main .product_wrap .title_wrap h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
main .product_wrap .prefer_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #ffebf3;
}
main .product_wrap .prefer_wrap .title {
  font-size: 1.5rem;
}
main .product_wrap .prefer_wrap .value {
  font-size: 1.5rem;
  color: #ff7800;
}
main .product_wrap .prefer_wrap .value em {
  font-size: 1.8rem;
  font-weight: 600;
  color: inherit;
}
main .product_wrap .month_wrap ul {
  display: flex;
}
main .product_wrap .month_wrap ul li {
  padding: 1.5rem 0;
  flex-grow: 1;
}
main .product_wrap .month_wrap ul li .month {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: #666;
}
main .product_wrap .month_wrap ul li .percent {
  font-size: 1.6rem;
  font-weight: 600;
  color: #444;
}

main .contents_wrap {
  padding: 2rem;
}
main .contents_wrap ul li:not(:last-child) {
  margin-bottom: 2rem;
}
main .contents_wrap ul li .title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: .5rem;
}
main .contents_wrap ul li .content {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #666;
}


#top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: url("../img/top.png") no-repeat center / contain;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media screen and (max-width: 767px) {
main .category_wrap .input_wrap { width: 100%;}
main .category_wrap .input_wrap:nth-child(1) label { width: 50%;}
main .category_wrap .input_wrap:nth-child(3) label { width: 33.3333%;}

}