html {
  font-size: 62.5%;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  font-size: 1.4rem;
  font-family: "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}

a{
  color: #88ca84;
  text-decoration: none;
}

/* common */
.sp_show{
	display:none;
}

@media screen and (max-width: 768px) {
  .sp_show{
    display:block;
  }
  .pc_show{
    display:none;
  }
}

.txt_center{
  text-align: center;
}

.font_16{
  font-size: 1.6rem;
}
.font_14{
  font-size: 1.4rem;
}
.font_12{
  font-size: 1.2rem;
}
.font_11{
  font-size: 1.1rem;
}
.font_10{
  font-size: 1.0rem;
}
.font_bold{
  font-weight: bold;
}

.divider_top{
  border-top: 1px dashed #aaa;
  padding-top: 10px;
}
.divider_bottom{
  border-bottom: 1px dashed #aaa;
  padding-bottom: 10px;
}

.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;
}

/* #Header */
#Header {
  clear: both;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #fff;
}

#Header .top_area {
  margin: 0 auto;
  width: 950px;
}
@media screen and (max-width: 950px) {
  #Header .top_area {
    width: 90vw;
  }
}

/* #MainContents */
#MainContents{}

/* errorSec */
.errorSec{
	width: 500px;
	margin: 0 auto;
	padding:10px;
	border:2px solid #FF3333;
	color:#FF3333;
	margin-bottom: 32px;
}
.errorSec dt{
	font-weight: bold;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.errorSec {
		width: 90%;
	}
}

/* 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;
}

/* step */
.step{
  margin: 30px 0;
  text-align: center;
}

@media screen and (max-width: 768px){
  .step_img {
    width: 80%;
    height: auto;
  }
}


/* 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;
  }
}

/* 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;
}

@media screen and (max-width: 768px) {
  .confirm_table th, 
  .confirm_table td{
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
}

/* 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;
}



/* フッター */
.ssl_sign {
  padding: 5px 0 20px;
  text-align: right;
}

#sec_pagetop_footer {
  width: 950px;
  margin: 50px auto 0;
  position: relative;
}
@media screen and (max-width: 950px) {
  #sec_pagetop_footer {
    width: 90vw;
  }
}

#sec_pagetop_footer .pageTop {
  position: absolute;
  top: -2.2rem;
  right: 0;
}

#sec_pagetop_footer .pageTop a {
  padding: 3px 0 0 12px;
  font-size: 1.3rem;
  border-bottom: 4px solid #D9D9D9;
  background: url(/info/common/img/bullet_004.gif) no-repeat 0 0.5em;
}

#FootContainer {
  clear: both;
  padding: 36px 0 30px 0;
  border-top: 1px solid #D9D9D9;
}

#Footer {
  clear: both;
  font-size: 1.2rem;
}