@charset "UTF-8";
/* -----------------------------------------------
 * LastUpdate : 18/11/30
----------------------------------------------- **
 * ページスタイル ファイル
----------------------------------------------- */
/**- mediaScreen -**/
/**- font -**/
/**- width -**/
/**- colors -**/
/* -----------------------------------------------
 * LastUpdate : 18/11/30
----------------------------------------------- **
 * ページスタイル ファイル
----------------------------------------------- */
/**- mediaScreen -**/
/**- font -**/
/**- width -**/
/**- colors -**/
/* -----------------------------------------------
 * LastUpdate : 18/11/28
----------------------------------------------- **
 * フォームスタイル ファイル
----------------------------------------------- */
/*** formReset&Setting ***/
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='number'],
input[type='file'],
textarea,
select {
  width: 100%;
  height: 2em;
}

@media screen and (min-width: 730px) {
  input[type='text'],
  input[type='search'],
  input[type='tel'],
  input[type='url'],
  input[type='email'],
  input[type='password'],
  input[type='datetime'],
  input[type='datetime-local'],
  input[type='date'],
  input[type='month'],
  input[type='week'],
  input[type='time'],
  input[type='number'],
  input[type='file'],
  textarea,
  select {
    height: auto;
    padding: 0 0 .4em;
  }
}

input[type='image'] {
  max-width: 100%;
}

input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  height: 2em;
}

textarea {
  min-height: 2em;
  resize: vertical;
}

input[type='text'],
input[type='search'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='number'] {
  /*     padding-left: .4em; */
  padding: .2em .4em;
  background: none;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 730px) {
  input[type='text'],
  input[type='search'],
  input[type='tel'],
  input[type='url'],
  input[type='email'],
  input[type='password'],
  input[type='datetime'],
  input[type='datetime-local'],
  input[type='date'],
  input[type='month'],
  input[type='week'],
  input[type='time'],
  input[type='number'] {
    font-size: 16px;
  }
}

input::placeholder {
  color: #b8b8b8;
}

/* IE */
input:-ms-input-placeholder {
  color: #b8b8b8;
}

/* Edge */
input::-ms-input-placeholder {
  color: #b8b8b8;
}

textarea {
  padding: .4em;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 730px) {
  textarea {
    font-size: 16px;
  }
}

textarea::placeholder {
  color: #b8b8b8;
}

/* IE */
textarea:-ms-input-placeholder {
  color: #b8b8b8;
}

/* Edge */
textarea::-ms-input-placeholder {
  color: #b8b8b8;
}

select {
  height: 2em;
  padding-left: .4em;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  /*    color: #b8b8b8;*/
  font-size: 14px;
  font-size: 1.4rem;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

@media screen and (min-width: 730px) {
  select {
    font-size: 14px;
  }
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  border: none;
  border-radius: 0;
  cursor: pointer;
}

/*-- basicStyle --*/
.formContainer .itemTitle {
  position: relative;
  display: inline-block;
  width: auto;
}

.formContainer .itemTitle .textRed {
  position: absolute;
  top: -2px;
  right: -1em;
  width: auto;
  color: #cc0033;
  font-size: 10px;
  font-size: 1.0rem;
}

/*-- inputStyle --*/
input {
  border: none;
  border-radius: 0;
}

/*-- selectStyle --*/
/**- icon -**/
.select-wrap {
  position: relative;
  overflow: hidden;
}

.select-wrap:before {
  z-index: 1;
  position: absolute;
  right: 16px;
  top: 8px;
  content: "";
  line-height: 44px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 8px;
  height: 8px;
  color: #000000;
  font-size: 28px;
  pointer-events: none;
  transform: rotate(135deg);
}

.select-wrap > select {
  width: 130%;
}

/*-- radioStyle --*/
.radioGrid {
  width: 100%;
}

.radioGrid li {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
}

@media screen and (min-width: 730px) {
  .radioGrid li {
    font-size: 18px;
  }
}

.radioGrid li label span {
  margin: 0 4px 0 0;
}

.radioGrid li input[type="radio"] {
  display: none;
}

.radioGrid li input[type="radio"] ~ label {
  position: relative;
  margin: 0;
  padding: 0 0 0 24px;
  cursor: pointer;
}

.radioGrid li input[type="radio"] ~ label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #000000;
  border-radius: 50%;
  /*        background: $wht;*/
}

@media screen and (min-width: 730px) {
  .radioGrid li input[type="radio"] ~ label::before {
    top: 2px;
  }
}

.radioGrid li input[type="radio"] ~ label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
  /*        background: $blk;*/
  border-radius: 50%;
}

@media screen and (min-width: 730px) {
  .radioGrid li input[type="radio"] ~ label::after {
    top: 7px;
  }
}

.radioGrid li input[type="radio"]:checked ~ label {
  color: #000000;
}

.radioGrid li input[type="radio"]:checked ~ label::after {
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #000000;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

@media screen and (min-width: 730px) {
  .radioGrid li input[type="radio"]:checked ~ label::after {
    top: 5px;
  }
}

.radio2c li {
  margin: 0 0 24px;
  min-height: auto;
  line-height: auto;
}

@media screen and (min-width: 730px) {
  .radio2c li {
    float: left;
    width: 305px;
    margin: 0 0 40px;
    font-size: 18px;
  }
}

@media screen and (min-width: 730px) {
  .radio2c li:nth-child(even) {
    float: right;
  }
}

.radio2c li img {
  display: block;
  margin: 0 0 4px;
}

.radio2c li .menTitle span {
  padding: 0 0 0 0.4em;
}

.radioGrid_02 {
  width: 100%;
}

.radioGrid_02 label {
  position: relative;
  cursor: pointer;
}

.radioGrid_02 .list_item .checkEffect {
  position: relative;
}

.radioGrid_02 .list_item .checkEffect:before {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 4px;
  width: 8px;
  height: 4px;
  content: '';
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  border: 2px solid #153a51;
  border-top-style: none;
  border-right-style: none;
}

.radioGrid_02 .list_item .checkEffect:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}

.radioGrid_02 .list_item .checkEffect:after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 16px;
  height: 16px;
  content: '';
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 50%;
  background: #ffffff;
}

/*-- checkStyle --*/
.checkGrid {
  width: 100%;
}

.checkGrid label {
  cursor: pointer;
}

.checkGrid .list_item {
  /**- checked -**/
}

.checkGrid .list_item .checkEffect {
  position: relative;
}

.checkGrid .list_item .checkEffect:before {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 3px;
  width: 8px;
  height: 4px;
  content: '';
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  border: 2px solid #153a51;
  border-top-style: none;
  border-right-style: none;
}

.checkGrid .list_item .checkEffect:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}

.checkGrid .list_item .checkEffect:after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 14px;
  height: 14px;
  content: '';
  cursor: pointer;
  border: 1px solid #000000;
  background: #ffffff;
}

.checkGrid .list_item .checkEffect_on {
  position: relative;
}

.checkGrid .list_item .checkEffect_on:before {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 3px;
  width: 8px;
  height: 4px;
  content: '';
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
  border: 2px solid #153a51;
  border-top-style: none;
  border-right-style: none;
}

.checkGrid .list_item .checkEffect_on:checked:before {
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
}

.checkGrid .list_item .checkEffect_on:after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 14px;
  height: 14px;
  content: '';
  cursor: pointer;
  border: 1px solid #000000;
  background: #ffffff;
}

/*-- textareaStyle --*/
.textareaGrid textarea {
  height: 160px;
}

@media screen and (min-width: 730px) {
  .textareaGrid textarea {
    height: 160px;
  }
}

/*-- buttonStyle --*/
.mfp_buttons {
  position: relative;
}

.mfp_buttons .btnSend {
  position: relative;
  display: block;
  min-height: 44px;
  padding: 0 0 0 6%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-align: left;
  cursor: pointer;
}

@media screen and (min-width: 730px) {
  .mfp_buttons .btnSend {
    min-height: auto;
    padding: 0 0 0 24px;
    font-size: 24px;
    line-height: 18px;
  }
}

.mfp_buttons .btnSend:hover {
  opacity: .5;
}

.mfp_buttons .btnSend span {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

#mfp_overlay_inner .mfp_buttons {
  position: relative;
  margin: 24px 0 0;
  background: none;
  text-align: center;
}

#mfp_overlay_inner .mfp_buttons #mfp_button_send {
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 16px;
  background: #cc0033;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6rem;
  cursor: pointer;
}

#mfp_overlay_inner .mfp_buttons #mfp_button_cancel {
  display: inline-block;
  padding: 0 16px;
  background: #d5d9d8;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  cursor: pointer;
}

/* -----------------------------------------------
 * LastUpdate : 20/04/02
----------------------------------------------- **
 * ページスタイル ファイル
----------------------------------------------- */
/**- colors -**/
/* -----------------------------------------------
 * LastUpdate : 20/12/21
----------------------------------------------- **
 * pageDesign
----------------------------------------------- */
/**- header -**/
/**- footer -**/
.footer {
  text-align: left;
}

/**- design -**/
.wrapTitle {
  max-width: 960px;
  width: 90%;
  margin: 0 auto 10%;
  padding: 0 0 10%;
  border-bottom: 1px solid #000000;
}

@media screen and (min-width: 730px) {
  .wrapTitle {
    margin: 0 auto 56px;
    padding: 0 0 64px;
  }
}

.wrapTitle h1 {
  margin: 0 auto 4%;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .wrapTitle h1 {
    margin: 0 auto 24px;
  }
}

.wrapTitle .areaDay {
  margin: 0 auto 16px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (min-width: 730px) {
  .wrapTitle .areaDay {
    margin: 0 auto 24px;
    font-size: 28px;
  }
}

.wrapTitle .areaWords {
  margin: 0 auto;
}

@media screen and (min-width: 730px) {
  .wrapTitle .areaWords {
    margin: 0 auto;
    font-size: 16px;
    line-height: 2.0;
  }
}

.wrapGiftW {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 6% 0 10%;
}

@media screen and (min-width: 730px) {
  .wrapGiftW {
    margin: 0 auto;
    padding: 0 0 64px;
  }
}

.wrapGiftW .gridTitle {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 6%;
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridTitle {
    margin: 0 auto;
    padding: 0 0 32px;
  }
}

.wrapGiftW .gridTitle h2 {
  margin: 0 0 2%;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridTitle h2 {
    margin: 0 0 8px;
    font-size: 40px;
  }
}

.wrapGiftW .gridGift {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridGift {
    margin: 0 auto;
  }
}

.wrapGiftW .gridGift h3 {
  margin: 0 auto 2%;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridGift h3 {
    margin: 0 auto 8px;
    font-size: 32px;
  }
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridGift .gridWords span {
    display: block;
  }
}

.wrapGiftW .gridGift .imgA {
  margin: 4% 0 8%;
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridGift .imgA {
    margin: 24px 0 40px;
  }
}

.wrapGiftW .gridGift .imgB {
  width: 50%;
  margin: 4% 0;
}

@media screen and (min-width: 730px) {
  .wrapGiftW .gridGift .imgB {
    width: 46%;
    margin: 24px 0;
  }
}

.gridEntry {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 16%;
}

@media screen and (min-width: 730px) {
  .gridEntry {
    padding: 0 0 92px;
  }
}

@media screen and (min-width: 730px) {
  .gridEntry .btnLink {
    width: 590px;
    margin: 0 auto;
  }
}

.gridEntry .btnLink a {
  padding: 6% 4%;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (min-width: 730px) {
  .gridEntry .btnLink a {
    padding: 24px 48px;
    font-size: 32px;
    letter-spacing: 1px;
  }
}

@media screen and (min-width: 730px) {
  .gridEntry .btnLink .btnIcon {
    right: 48px;
    line-height: 32px;
  }
}

.gridEntry .btnLink .btnIcon .icon-iconArw01 {
  width: 19px;
  height: 27px;
}

@media screen and (min-width: 730px) {
  .gridEntry .btnLink .btnIcon .icon-iconArw01 {
    width: 19px;
    height: 27px;
  }
}

.gridEntry .btnLink span {
  display: block;
}

@media screen and (min-width: 730px) {
  .gridEntry .btnLink span {
    display: inline-block;
  }
}

.faqPage {
  /**- footer -**/
  /**- button -**/
  /** Quiz **/
  /** Answer **/
}

.faqPage .footer {
  background: #ffffff;
}

.faqPage .boxButton {
  margin: 0 auto 10%;
}

@media screen and (min-width: 730px) {
  .faqPage .boxButton {
    margin: 0 0 80px;
  }
}

@media screen and (min-width: 730px) {
  .faqPage .boxButton .btnLink {
    width: 48%;
  }
}

.faqPage .boxButton .btnLink a {
  font-weight: normal;
}

@media screen and (min-width: 730px) {
  .faqPage .boxButton .btnLink a {
    padding: 12px 16px;
  }
}

.faqPage .headTitle {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 10%;
  padding: 0;
  color: #000000;
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle {
    margin: 0 auto 40px;
  }
}

.faqPage .headTitle .wrapTitle {
  position: relative;
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  border: none;
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle .wrapTitle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.faqPage .headTitle .wrapTitle .qTitle {
  margin: 0 0 2%;
  font-size: 28px;
  font-size: 2.8rem;
  /*         font-weight: $fB; */
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle .wrapTitle .qTitle {
    margin: 0;
    /* 					position: absolute;
					top: 0;
					left: 0;
          margin: 0; */
    font-size: 56px;
    line-height: 1.0;
  }
}

.faqPage .headTitle .wrapTitle .boxText {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle .wrapTitle .boxText {
    width: 86%;
    margin: 0 0 0 auto;
    font-size: 20px;
  }
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle .wrapTitle .boxText span {
    display: block;
  }
}

.faqPage .headTitle .wrapTitle .answerText {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle .wrapTitle .answerText {
    font-size: 32px;
  }
}

.faqPage .headTitle .wrapTitle .answerText .subText {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (min-width: 730px) {
  .faqPage .headTitle .wrapTitle .answerText .subText {
    font-size: 24px;
  }
}

.faqPage .bgQ, .faqPage .bgA01, .faqPage .bgA02 {
  padding: 6% 0;
}

@media screen and (min-width: 730px) {
  .faqPage .bgQ, .faqPage .bgA01, .faqPage .bgA02 {
    min-height: 214px;
    padding: 64px 0 32px;
  }
}

.faqPage .bgQ {
  background: url("../qa/img/q_bg01.jpg") no-repeat center bottom;
  background-size: cover;
}

.faqPage .bgA01 {
  background: url("../qa/img/q_bg02.jpg") no-repeat center bottom;
  background-size: cover;
}

.faqPage .bgA02 {
  background: url("../qa/img/q_bg03.jpg") no-repeat center bottom;
  background-size: cover;
  color: #ffffff;
}

.faqPage .wrapQuiz {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 16%;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz {
    padding: 0 0 48px;
  }
}

.faqPage .wrapQuiz .boxQ {
  position: relative;
  margin: 0 0 4%;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxQ {
    margin: 0 0 16px;
  }
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxQ .posL {
    float: left;
    width: 48%;
  }
}

.faqPage .wrapQuiz .boxQ strong {
  display: block;
  margin: 0 0 2%;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxQ strong {
    margin: 0 0 8px;
    font-size: 28px;
  }
}

.faqPage .wrapQuiz .boxQ .areaWords {
  margin: 0 0 8%;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxQ .areaWords {
    margin: 0;
  }
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxQ .areaWords span {
    display: block;
  }
}

.faqPage .wrapQuiz .boxQ .imgPhoto {
  display: block;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxQ .imgPhoto {
    float: right;
    width: 48%;
  }
}

.faqPage .wrapQuiz .boxQ .imgPhotoS {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.faqPage .wrapQuiz .boxQ .imgPhotoM {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}

.faqPage .wrapQuiz .boxQ .imgPhotoL {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

.faqPage .wrapQuiz .boxQ .listImage li {
  float: left;
  width: 48%;
  margin: 0 0 4%;
}

.faqPage .wrapQuiz .boxQ .listImage li:nth-child(even) {
  float: right;
}

.faqPage .wrapQuiz .boxSelect .areaTitle {
  margin: 0 0 4%;
  border-bottom: 1px solid #000000;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxSelect .areaTitle {
    margin: 0 0 40px;
    font-size: 22px;
    letter-spacing: 2px;
  }
}

.faqPage .wrapQuiz .boxSelect .listA li {
  margin: 0 0 4%;
  border: 1px solid #000000;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxSelect .listA li {
    float: left;
    width: 48%;
    margin: 0 0 40px;
  }
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxSelect .listA li:nth-child(even) {
    float: right;
  }
}

.faqPage .wrapQuiz .boxSelect .listA li a {
  display: block;
  padding: 2% 4%;
}

.faqPage .wrapQuiz .boxSelect .listA li a:hover {
  background: #9e1b32;
  color: #ffffff;
  transition: .6s;
}

.faqPage .wrapQuiz .boxSelect .listA li i {
  margin: 0 8px 0 0;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapQuiz .boxSelect .listA li i {
    margin: 0 16px 0 0;
    font-size: 24px;
    line-height: 1.2;
  }
}

.faqPage .qCaptionM {
  max-width: 880px;
  width: 90%;
  margin: 0 auto 2%;
}

@media screen and (min-width: 730px) {
  .faqPage .qCaptionM {
    margin: 0 auto 8px;
  }
}

.faqPage .qCaption {
  max-width: 880px;
  width: 90%;
  margin: 0 auto 8%;
}

@media screen and (min-width: 730px) {
  .faqPage .qCaption {
    margin: 0 auto 16px;
  }
}

.faqPage .wrapAnswer {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 10%;
  /** button **/
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer {
    padding: 0;
  }
}

.faqPage .wrapAnswer .boxA {
  position: relative;
  margin: 0 0 10%;
  padding: 0 0 20%;
  border-bottom: 1px solid #000000;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA {
    margin: 0 0 64px;
    padding: 0 0 80px;
  }
}

.faqPage .wrapAnswer .boxA strong {
  display: inline-block;
  margin: 0 0 6%;
  padding: 0 24px 0 0;
  border-bottom: 1px solid #000000;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA strong {
    margin: 0 0 24px;
    font-size: 22px;
  }
}

.faqPage .wrapAnswer .boxA .areaWords {
  margin: 0 0 8%;
  line-height: 1.8;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA .areaWords {
    margin: 0 0 56px;
    line-height: 2.0;
  }
}

.faqPage .wrapAnswer .boxA .areaWords p {
  margin: 0 0 2%;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA .areaWords p {
    margin: 0;
  }
}

.faqPage .wrapAnswer .boxA .areaWords .captionText {
  margin: 2% 0 0;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA .areaWords .captionText {
    margin: 8px 0 0;
  }
}

.faqPage .wrapAnswer .boxA .imgPhoto {
  display: block;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.faqPage .wrapAnswer .boxA .imgPhotoM {
  display: block;
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
}

.faqPage .wrapAnswer .boxA .listImg {
  margin: 4% 0;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA .listImg {
    margin: 32px 0 16px;
  }
}

.faqPage .wrapAnswer .boxA .listImg li {
  margin: 0 0 2%;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA .listImg li {
    float: left;
    width: 49%;
    margin: 0;
  }
}

.faqPage .wrapAnswer .boxA .listImg li:nth-child(even) {
  margin: 0;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxA .listImg li:nth-child(even) {
    float: right;
  }
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .boxButton .btnLink {
    width: 480px;
    margin: 0 auto;
  }
}

.faqPage .wrapAnswer .wrapEntry {
  margin: 0 auto 10%;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .wrapEntry {
    margin: 0 auto 56px;
    font-size: 28px;
  }
}

.faqPage .wrapAnswer .wrapEntry .imgPhoto {
  margin: 0 auto 4%;
}

@media screen and (min-width: 730px) {
  .faqPage .wrapAnswer .wrapEntry .imgPhoto {
    margin: 0 auto 24px;
  }
}
