.mt_5{
  margin-top: 5px;
}
.mt_10{
  margin-top: 10px;
}
.mt_20{
  margin-top: 20px;
}
.mt_30{
  margin-top: 30px;
}
.mt_40{
  margin-top: 40px;
}
.mt_50{
  margin-top: 50px;
}
.font_bold {
  font-weight: bold;
}
.txt_cen {
  text-align: center;
}
.common_hr {
  height: 1.5px;
  background-color: #EE0000;
  width: 100%;
  border: none;
}
.grey_hr {
  height: 1.5px;
  background-color: #C0C0C0;
  width: 100%;
  border: none;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_50 {
  margin-bottom: 50px;
}
.notice_frame {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.notice_limit {
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #f1f1f1;
  background-color: #FAFAFA;
}
.send_mail {
  border: 1px solid #f1f1f1;
  background-color: #FAFAFA;
  font-size: 1.3rem;
}

.limit_time {
  font-size: 1.3rem;
  border: 1px solid #fec64d;
  background-color: #fff8e5;
}

.notice_frame .font_bold {
  font-size: 1.4rem;
}

.font_red {
  color: red;
}

.list_circle li {
  list-style: disc;
  margin-left: 1em;
  font-size: 1.3rem;
}

.list_limit li {
  list-style: disc;
  margin-left: 1em;
  margin-bottom: 10px;
}

/* lead */
.lead{
  margin: 30px auto;
  width: 950px;
}
@media screen and (max-width: 950px) {
  .lead {
    width: 90vw;
  }
}

.lead_title{
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}

.lead_note{
  margin-top: 20px;
  padding: 10px;
  background: #eee;
  font-size: 1.4rem;
}


/* main_contents */
.main_contents{
  padding: 40px 0;
  background: #f1f1f1;
}

.main_contents-inner{
  margin: 0 auto;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .main_contents-inner {
    width: 90vw;
  }
}

/* notice_table */
.notice_table{
  margin: 0 auto;
  width: 500px;
  border-left: 5px solid #808080;
  background-color: #FBFAFB;
}
@media screen and (max-width: 768px) {
  .notice_table {
    width: 90vw;
  }
}

.notice_table td {
  display: block;
  text-align: left;
  padding: 15px;
  font-size: 1.4rem;
}

/* form_table */
.form_table{
  margin: 0 auto;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .form_table {
    width: 90vw;
  }
}

.form_table th,
.form_table td {
  display: block;
  text-align: left;
}

.form_table th{
  margin-top: 25px;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.form_table .notice {
  font-size: 1rem;
  background-color: #ed6767;
  color: #FFF;
  padding: 0 5px;
  border-radius: 2px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: text-bottom;
}

.form_table .long{
  width: 100%;
}

.form_table .middle{
  width: 48%;
}

.form_table .short{
  width: 31.4%;
}
@media screen and (max-width: 768px) {
  .form_table .short{
    width: 30%;
  }
}

/* input */
.form_table input{
  padding: 8px;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  font-size: 1.4rem;
  box-sizing: border-box;
}

/* radio */
.form_table input.input_radio{
  display: none;
}

.form_table input.input_radio + label{
  height: 44px;
  line-height: 44px;
  border: 1px solid #cbcbcb;
  border-radius: 50px;
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.form_table input.input_radio + label::before{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.1rem);
  left: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #999;
  background: #fff;
  border-radius: 50%;
}

.form_table input.input_radio:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 1.6rem;
  width: 1rem;
  height: 1rem;
  background: #eb6868;
  border-radius: 50%;
}

/* checkbox */
.form_table input.input_checkbox{
  display: none;
  box-sizing: border-box;
}

.form_table input.input_checkbox + label{
  font-size: 1.4rem;
  position: relative;
  padding-left: 2.5rem;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.form_table input.input_checkbox + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #999;
  background: #fff;
  border-radius: 2px;
  box-sizing: border-box;
}
.form_table input.input_checkbox:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #eb6868;
  border-radius: 2px;
  box-sizing: border-box;
}

/* select */
.form_table select{
  padding: 10px 40px 10px 10px;
  height: 40px;
  position: relative;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  box-shadow: none;
  /* -webkit-appearance: none;
  appearance: none; */
  background: #fff;
  border: 1px solid #cbcbcb;
}

.form_table select::before {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  margin-top: -0.3rem;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 0.6rem solid #666;
  pointer-events: none;
}

.form_table select.middle{
  width: 44%;
}

/* #input_card_table */
#input_card_table{
  display: none;
}

/* confirm_table */
.confirm_table{
  margin: 20px auto 0;
  width: 500px;
	border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .confirm_table {
    width: 90vw;
  }
}
.confirm_table th, 
.confirm_table td{
	border: solid 1px #ccc;
}
.confirm_table th {
	padding: 10px;
	background-color: #eee;
	font-weight: normal;
	width: 40%;
	text-align:left;
}
.confirm_table td {
	padding: 10px;
	width: 60%;
	background-color: #fff;
}

/* box_border */
.box_border{
  border: 1px solid #cbcbcb;
  padding: 1rem;
}

/* footer_contents */
.footer_contents{
  padding: 50px 0;
  margin: 0 auto;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .footer_contents {
    width: 90vw;
  }
}

/* checkSec */
.checkSec{
  text-align: center;
  margin: 0 auto 50px;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .checkSec {
    width: 90vw;
  }
}

.btn_wrap {
  margin-top: 20px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn_wrap {
    display: block;
  }
}

.btn_wrap:before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -12px;
  z-index: 1;
}

.btn_wrap:after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #3a8158;
  border-right: 2px solid #3a8158;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -4px;
  z-index: 2;
}

input[type="submit"] {
  -webkit-appearance: none;
}

.btn01 {
  border: 0px;
  width: 388px;
  height: 78px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  background: #3a8158;
  border: 5px solid #a6cca0;
  border-radius: 50px;
  color: #fff;
  position: relative;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px){
  .btn01 {
      width: 100%;
  }
}

.btn_gray:after {
  border-top: 2px solid #a7a7a7;
  border-right: 2px solid #a7a7a7;
}
.btn_gray .btn01{
  background: #a7a7a7;
  border: 5px solid #e7e7e7;
}


.long{
  width: 360px;
}
@media screen and (max-width: 768px){
  .long {
      margin-bottom: 10px;
      width: 100%;
  }
}

input[type="submit"] {
  -webkit-appearance: none;
}

.btn02 {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  background: #3a8158;
  border-radius: 5px;
  color: #fff;
  position: relative;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  line-height: 40px;
  width: 135px;
}
@media screen and (max-width: 768px){
  .btn02 {
      width: 100%;
  }
}

.footerText{
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px){
  .footerText {
    padding: 0 10px 50px;
    text-align: left;
  }
}