/*共通*/
header{
  width:100%;
}
.topSection{
  width:100%;
  margin:20px 0;
  text-align:center;
}
.progressWrapper{
  width:95%;
  margin:0 auto;
}
.progressImage{
  width:100%;
  max-width:430px;
}
.mainSection{
  width:100%;
  margin-top:20px
}
.titleWrapper{
  margin-bottom:20px;
}
.pageTitle{
  font-size:24px;
}
.sectionNameWrapper{
  width:100%;
  padding:5px 0;
  font-size:24px;
  border-top:solid 2px #ACA9A2;
  border-bottom:solid 2px #ACA9A2;
  background-color:#E6E0D0;
}
.sectionNameWrapper h2{
  margin-left:10px;
  font-size:16px;
  font-weight:normal;
}
.radioItemWrapper{
  padding:20px 0;
  padding-left:30px;
  border-bottom:solid 2px #E4E4E4;
}
.itemWrapper{
  width:100%;
  color:#696768;
}
.itemHeader{
  width:100%;
  padding:10px 0;
  background-color:#EFEFEF;
}
.itemHeader .itemName{
  width:calc(50% - 2.5%);
  padding-left:2.5%;
  font-size:14px;
  font-weight:normal;
  display:inline-block;
}
.itemHeader .required{
  width:calc(50% - 2.5%);
  padding-right:2.5%;
  color:#EA3C46;
  font-size:14px;
  font-weight:normal;
  text-align:right;
  display:inline-block;
}
.itemInputFieldWrapper{
  width:calc(95% - 2px);
  margin:0 2.5%;
  padding:10px 0;
}
.itemInputField{
  width:100%;
}
.itemMemo{
  font-size:14px;
}

/*コース選択*/
.producerCourse{
  margin-left:30px;
}
.campaignWrapper{
  width:95%;
  margin:20px 2.5%;
  border:solid 1px #D11377;
}
.campaignTitle{
  width:95%;
  margin:0 2.5%;
  padding:10px 0;
}
.campaignTitle span{
  float:right;
}
.campaignDetail{
}
.campaignTableWrapper table{
  width:95%;
  margin:10px 2.5%;
  border-collapse:collapse;
  text-align:left;
}
.campaignTableWrapper table th{
  padding:20px 10px;
  background-color:#EFEFEF;
  color:#7F7F7F;
  font-weight:normal;
  border:solid 1px #000;
}
.campaignTableWrapper table td{
  padding:20px 10px;
  color:#7F7F7F;
  border:solid 1px #000;
}
.campaignAboutWrapper{
  padding:10px 2.5%;
  color:#7F7F7F;
}
.closeWrapper{
  text-align:center;
  color:#7F7F7F;
  cursor:pointer;
}
#producer:checked ~ #producerContents,
#wholesaler:checked ~ #wholesalerContents,
#designer:checked ~ #designerContents {
  display: block;
}
#producer:checked ~ .producerTab{
  background-color:#BFD7C1;
  color:#67A26A;
  border-top:solid 1px #67A26A;
  border-right:solid 1px #67A26A;
  border-left:solid 1px #67A26A;
}
#wholesaler:checked ~ .wholesalerTab{
  background-color:#CBE09D;
  color:#8CB729;
  border-top:solid 1px #8CB729;
  border-right:solid 1px #8CB729;
  border-left:solid 1px #8CB729;
}
#designer:checked ~ .designerTab{
  background-color:#F8E2B3;
  color:#EF9600;
  border-top:solid 1px #EF9600;
  border-right:solid 1px #EF9600;
  border-left:solid 1px #EF9600;
}
.courseTabs{
  width: 95%;
  margin: 20px auto 0 auto;
  background-color: #fff;
}
input[name="course"]{
  display:none;
}
.tab{
  position:relative;
  width: calc(100%/3 - 2px);
  height:100px;
  background-color: #EFEFEF;
  font-size: 20px;
  line-height:100px;
  text-align: center;
  color: #7F7F7F;
  border-top:solid 1px #D6D6D6;
  border-right:solid 1px #D6D6D6;
  border-left:solid 1px #D6D6D6;
  text-align: center;
  font-weight: bold;
  transition: all 0.5s ease;
  float: left;
  display: block;
}
.tab::after{
  position:absolute;
  content:"";
  display:block;
  top:50%;
  left:15px;
  margin-top:-10px;
  width:16px;
  height:16px;
  border:2px solid #84A553;
  border-radius:50%;
}
.tab::before{
  position:absolute;
  content:"";
  display:block;
  top:50%;
  left:20px;
  margin-top:-5px;
  width:10px;
  height:10px;
  background:#4E8951;
  border-radius:50%;
  opacity:0;
}
#producer:checked + .tab::before,
#wholesaler:checked + .tab::before,
#designer:checked + .tab::before{
  opacity:1;
}
.courseTabs .designerTab{
  line-height:50px;
}
.tabContents {
  display: none;
  /*padding: 0 5%;*/
  clear: both;
  overflow: hidden;
  transition: all 0.5s ease;
}
.paymentTypeWrapper{
  width:calc(90% - 2px);
  padding:20px 5%;
  display:inline-block;
}
.paymentTypeWrapper span{
  font-size:13px;
}
#producerContents .paymentTypeWrapper,
.producerPremium p{
  border-top:solid 1px #BFD7C1;
  border-right:solid 1px #BFD7C1;
  border-left:solid 1px #BFD7C1;
}
#producerContents label:nth-last-of-type(1) .paymentTypeWrapper{
  border-bottom:solid 1px #BFD7C1;
}
#wholesalerContents .paymentTypeWrapper,
.wholesalerPremium p{
  border-top:solid 1px #CBE09D;
  border-right:solid 1px #CBE09D;
  border-left:solid 1px #CBE09D;
}
#wholesalerContents label:nth-last-of-type(1) .paymentTypeWrapper{
  border-bottom:solid 1px #CBE09D;
}
#designerContents .paymentTypeWrapper,
.designerPremium p{
  border-top:solid 1px #F8E2B3;
  border-right:solid 1px #F8E2B3;
  border-left:solid 1px #F8E2B3;
}
#designerContents label:nth-last-of-type(1) .paymentTypeWrapper{
  border-bottom:solid 1px #F8E2B3;
}
.producerPremium,
.wholesalerPremium,
.designerPremium{
  width:100%;
  display:inline-block;
}
.producerPremium p,
.wholesalerPremium p,
.designerPremium p{
  padding:20px 5%;
}
input[name="producerPremium"],
input[name="wholesalerPremium"],
input[name="designerPremium"]{
  display:none;
}
.premiumLabel{
  width:calc(50% - 2px);
  padding:15px 0;
  text-align:center;
  font-weight:bold;
  display:inline-block;
}
#producerContents .premiumLabel{
  border:solid 1px #589A5D;
  color:#589A5D;
}
#wholesalerContents .premiumLabel{
  border:solid 1px #89B929;
  color:#89B929;
}
#designerContents .premiumLabel{
  border:solid 1px #F7B52B;
  color:#F7B52B;
}
#producerPremiumYes:checked ~ .premiumLabelYes,
#producerPremiumNo:checked  ~ .premiumLabelNo{
  color:#FFF;
  background-color:#589A5D;
}
#wholesalerPremiumYes:checked ~ .premiumLabelYes,
#wholesalerPremiumNo:checked  ~ .premiumLabelNo{
  color:#FFF;
  background-color:#89B929;
}
#designerPremiumYes:checked ~ .premiumLabelYes,
#designerPremiumNo:checked  ~ .premiumLabelNo{
  color:#FFF;
  background-color:#F7B52B;
}
.courseAboutWrapper{
  margin-bottom:40px;
}
.courseAbout{
  margin-bottom:0.5em;
}
.courseAbout a{
  margin-left:2em;
}

/*会員情報*/
input[name="postNumberFirstHalf"]::-webkit-outer-spin-button,
input[name="postNumberFirstHalf"]::-webkit-inner-spin-button,
input[name="postNumberLatterHalf"]::-webkit-outer-spin-button,
input[name="postNumberLatterHalf"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
input[name="postNumberFirstHalf"]{
  width:60px;
  -moz-appearance:textfield;
}
input[name="postNumberLatterHalf"]{
  width:80px;
  -moz-appearance:textfield;
}
.termsOfServiceWrapper{
  width:100%;
  margin-bottom:20px;
  text-align:center;
  color:#696768;
  background-color:#EFEFEF;
}
.termsOfService{
  transform:scale(1.2);
  display:none;
}
.termsOfServiceWrapper input[type="checkbox"]+label{
  position:relative;
  top:0;
  right:0;
  padding-left:1.5em;
}
.termsOfServiceWrapper input[type="checkbox"]+label::before{
  position:absolute;
  top:4px;
  left:0;
  content:"";
  height:16px;
  width:16px;
  padding-top:-10px;
  box-sizing:border-box;
  border:solid 1px #F00;
  background-color:#FFF;
  display:block;
}
.termsOfServiceWrapper input[type="checkbox"]:checked+label::after{
  position:absolute;
  top:5px;
  left:2px;
  content:"";
  height:8px;
  width:12px;
  padding-top:-10px;
  box-sizing:border-box;
  border-bottom:solid 1px #F00;
  border-left:solid 1px #F00;
  transform:rotate(-45deg);
  display:block;
}
.termsOfServiceWrapper span{
  font-family: "Gothic MB101 Regular";
  font-weight:bold;
  color:#F00;
}
.termsOfServiceWrapper .termsOfServiceAbout{
  font-size:14px;
  margin-bottom:20px;
}
.termsOfServiceWrapper p{
  text-align:center;
  margin:0 10%;
}
.nextButtonWrapper{
  width:100%;
  margin:30px 0;
}
.nextButton{
  width:95%;
  margin:0 2.5%;
  font-size:18px;
}
.disabledButton{
  height:40px;
  color:#6D6D6D;
  background-color:#F4F4F4;
  border:solid 1px #F4F4F4;
}
.nextButton i{
  right:-40%;
}

/*確認*/
.registerConfirmForm{
  width:calc(100% - 5%);
  padding:0 2.5%;
}
.confirmWrapper{
  margin-bottom:40px;
}
.detailTitle{
  margin:10px 0;
  font-weight:normal;
  border-bottom:solid 1px #000;
}
.memberInformationConfirm{
  width:100%;
  text-align:left;
  border-collapse:collapse;
}
.memberInformationConfirm th{
  width:40%;
  padding:5px;
  background-color:#EFEFEF;
  color:#4C4C4C;
  font-weight:normal;
  border:solid 1px #D6D6D6;
}
.memberInformationConfirm td{
  padding:5px;
  color:#4C4C4C;
  border:solid 1px #D6D6D6;
}
.courseConfirm{
  color:#53925A;
}
.courseFeeConfirm{
  width:100%;
  margin:20px 0;
  font-size:16px;
  text-align:left;
  border-collapse:collapse;
}
.courseFeeConfirm th{
  width:40%;
  padding:5px;
  background-color:#EFEFEF;
  color:#3E3E3E;
  font-weight:normal;
  border-top:solid 1px #D6D6D6;
}
.courseFeeConfirm td{
  width:60%;
  padding:5px;
  text-align:right;
  font-weight:normal;
  border-top:solid 1px #D6D6D6;
}
.courseFeeConfirm .campaignCell{
  color:#D01475;
}
.courseFeeConfirm .totalFeeHead{
  border-top:solid 1px #C1C1C1;
  border-bottom:solid 1px #D6D6D6;
}
.courseFeeConfirm .totalFee{
  padding:10px 5px;
  font-size:20px;
  font-weight:bold;
  border-top:solid 1px #C1C1C1;
  border-bottom:solid 1px #D6D6D6;
}
.billingStartDate{
  font-size:16px;
  color:#F00;
  text-align:right;
}
.SBPSDescriptionWrapper{
  text-align:center;
}
.SBPSDescriptionWrapper p:nth-last-of-type(1){
  margin-top:40px;
}
.SBPSButtonWrapper{
  margin-top:20px;
  margin-bottom:40px;
  padding:40px 0;
  border:solid 1px #D6D6D6;
}
.SBPSButtonWrapper p{
  margin-bottom:20px;
  color:#787878;
  text-align:center;
}
.precaution{
  font-size:16px;
  color:#787878;
}
