@charset 'utf-8';

.csnkForm :placeholder-shown {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #bbb;
}
.csnkForm ::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #bbb;
}
.csnkForm :-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #bbb;
}
.csnkForm ::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #bbb;
}
.csnkForm :-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #bbb;
}

.csnkForm input[type='text'],
.csnkForm input[type='email'],
.csnkForm select,
.csnkForm textarea {
  width: 100%;
  margin: 5px 0;
  padding: 0.5em;
  border: 1px #aaa solid;
  border-radius: 0;
  font-size: inherit;
  color: inherit;
}

.csnkForm select[name='birth_year'] {
  width: 32%;
  margin-right: 4px;
}
@media all and (max-width: 750px){
  .csnkForm select[name='birth_year'] {
    width: 32%;
    margin-right: 1vw;
  }
}

.csnkForm select[name='birth_month'],
.csnkForm select[name='birth_day'] {
  width: 22%;
  margin-right: 4px;
}
@media all and (max-width: 750px){
  .csnkForm select[name='birth_month'],
  .csnkForm select[name='birth_day'] {
    width: 22%;
    margin-right: 1vw;
  }
}

.csnkForm textarea {
  height: 150px;
  line-height: 1.4;
}
@media all and (max-width: 750px){
  .csnkForm textarea {
    height: 40vw;
  }
}

.csnkForm .txtError {
  display: block;
  line-height: 1.4;
  font-size: 0.9rem;
  color: #c2143e;
}

.csnkForm .dlForm {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  padding: 11px 0;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm {
    display: block;
    padding: 3vw 0;
  }
}

.csnkForm .dlForm > dt {
  position: relative;
  width: 23%;
  padding-left: 47px;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm > dt {
    width: 100%;
    margin-bottom: 2vw;
    padding-left: 14vw;
  }
}

.csnkForm.modeConfirm .dlForm > dt {
  padding-left: 0;
}
@media all and (max-width: 750px){
  .csnkForm.modeConfirm .dlForm > dt {
    padding-left: 0;
  }
}

.csnkForm .dlForm > dt .markRequired,
.csnkForm .dlForm > dt .markNotRequired {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 38px;
  height: 20px;
  letter-spacing: normal;
  font-size: 0.8rem;
  font-weight: 500;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm > dt .markRequired,
  .csnkForm .dlForm > dt .markNotRequired {
    width: 12%;
    height: 5vw;
    font-size: 0.8rem;
  }
}

.csnkForm.modeConfirm .dlForm > dt .markRequired,
.csnkForm.modeConfirm .dlForm > dt .markNotRequired {
  display: none;
}

.csnkForm .dlForm > dt .markRequired {
  border: 1px #de0000 solid;
  /*background-color: #c1303a;*/
  color: #de0000;
}

.csnkForm .dlForm > dt .markNotRequired {
  border: 1px #787777 solid;
  /*background-color: #aaaaaa;*/
  color: #787777;
}

.csnkForm .dlForm > dt .str2:first-letter {
  letter-spacing: 0.3em;
}

.csnkForm .dlForm > dd {
  width: 77%;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm > dd {
    width: 100%;
  }
}

.csnkForm .dlForm > dd .boxInputWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm > dd .boxInputWrap {
    display: block;
  }
}

.csnkForm .dlForm > dd .boxInputWrap .boxInput {
  width: 80%;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm > dd .boxInputWrap .boxInput {
    width: 100%;
    margin-bottom: 1vw;
  }
}

.csnkForm .dlForm > dd .boxInputWrap .txtCaution {
  display: inline-block;
  margin-left: 10px;
}
@media all and (max-width: 750px){
  .csnkForm .dlForm > dd .boxInputWrap .txtCaution {
    display: block;
    margin-left: 0;
    text-align: right;
    font-size: 0.9rem;
  }
}

.csnkForm .dlForm > dd .boxInput label {
  display: inline-block;
  margin-bottom: 0.5em;
}

.csnkForm .dlForm > dd .boxInput label:first-child {
  padding-top: 0.2em;
}

.csnkForm .dlForm > dd .boxInput label:last-child {
  margin-bottom: 0;
}

.csnkForm .dlForm > dd .boxRadioWrap {
  padding-top: 0.2em;
}

.csnkForm .dlForm > dd .boxRadioWrap label {
  display: inline-block;
  margin: 0 1.0em 0.5em 0;
}

.csnkForm .dlForm > dd .boxRadioWrap label input {
  vertical-align: middle;
}

.csnkForm .dlForm > dd .boxRadioWrap label > span {
  vertical-align: middle;
}

.csnkForm.modeConfirm .dlForm > dd .txtFormInput {
  line-height: 1.4;
}

.csnkForm .boxFormPrivacy {
  margin-top: 20px;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacy {
    margin-top: 3vw;
  }
}

.csnkForm .boxFormPrivacyIn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 72px;
  background-color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyIn {
    height: auto;
    padding: 4vw 3vw;
    line-height: 1.3;
    font-size: 0.9em;
  }
}

.csnkForm .boxFormPrivacyIn input[type='checkbox'] {
  margin-right: 10px;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyIn input[type='checkbox'] {
    width: 10vw;
    margin-right: 3vw;
  }
}

.csnkForm .boxFormPrivacyIn a {
  text-decoration: underline;
}

.csnkForm .boxFormPrivacyIn .txtExternalLink:after{
  content: '\f08e';
  font-family: FontAwesome;
}


.csnkForm .boxFormPrivacyPopup {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 980px;
  height: 90%;
  padding: 70px 35px 50px 50px;
  background-color: #fff;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyPopup {
    max-width: 100%;
    padding: 8vw 3.5vw 5vw 4.5vw;
  }
}

.csnkForm .boxFormPrivacyPopupIn {
  overflow-y: auto;
  height: 100%;
  padding: 0 30px 30px 0;
  line-height: 1.4;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyPopupIn {
    padding: 0 4.5vw 4.5vw 0;
  }
}

.csnkForm .boxFormPrivacyPopupIn .ttl01 {
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyPopupIn .ttl01 {
    margin-bottom: 5vw;
    font-size: 1.4rem;
  }
}

.csnkForm .boxFormPrivacyPopupIn .ttl02 {
  margin-bottom: 10px;
  font-weight: 700;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyPopupIn .ttl02 {
    margin-bottom: 3vw;
  }
}

.csnkForm .boxFormPrivacyPopup .btnFormPrivacyPopupClose {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormPrivacyPopup .btnFormPrivacyPopupClose {
    top: 1vw;
    right: 1vw;
  }
}

.csnkForm .boxFormSubmit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormSubmit {
    display: block;
    margin-top: 3vw;
  }
}

.csnkForm .boxFormSubmit .btnSubmit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 373px;
  height: 72px;
  margin: 0 20px;
  border: 0;
  border-radius: 0;
  background-color: #999;
  letter-spacing: 0.12em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
@media all and (max-width: 750px){
  .csnkForm .boxFormSubmit .btnSubmit {
    width: 100%;
    height: 16vw;
    margin: 0;
    font-size: 1.3rem;
  }
}

.csnkForm .boxFormSubmit .btnSubmitConfirm,
.csnkForm .boxFormSubmit .btnSubmitSend {
  background-image: url('./../../images/common/form-submit-icn-arrow01-r.png');
  background-repeat: no-repeat;
  background-position: 93% center;
  background-size: auto auto;
}

.csnkForm .boxFormSubmit .btnSubmitBack {
  background-image: url('./../../images/common/form-submit-icn-arrow01-l.png');
  background-repeat: no-repeat;
  background-position: 7% center;
  background-size: auto auto;
}

@media all and (max-width: 750px){
  .csnkForm .boxFormSubmit .btnSubmitBack {
    margin-bottom: 5vw;
  }
}


.boxCsnkFormThanks {
  margin-top: 30px;
}
@media all and (max-width: 750px){
  .boxCsnkFormThanks {
    margin-top: 3vw;
  }
}

.boxCsnkFormThanks .ttlCsnkFormThanks {
  margin-bottom: 50px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
}
@media all and (max-width: 750px){
  .boxCsnkFormThanks .ttlCsnkFormThanks {
    margin-bottom: 5vw;
    line-height: 1.4;
    font-size: 1.3rem;
  }
}

.boxCsnkFormThanksIn {
  text-align: center;
  line-height: 2.0;
  font-size: 1.13rem;
}
@media all and (max-width: 750px){
  .boxCsnkFormThanksIn {
    text-align: left;
    line-height: 1.6;
    font-size: 1.0rem;
  }
}