@charset "UTF-8";
/* form parts
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body.input .btnLinkBlock {
  display: none; }
body.input .telBlock {
  display: none; }
body.input .navBlock {
  display: none; }
body.input .floatBlockPC {
  display: none; }
body.input .footerCommonArea {
  display: none; }
body.input .copyright {
  border-top: 1px solid #e6e6e6; }

body.confirm .btnLinkBlock {
  display: none; }
body.confirm .telBlock {
  display: none; }
body.confirm .navBlock {
  display: none; }
body.confirm .floatBlockPC {
  display: none; }
body.confirm .footerCommonArea {
  display: none; }
body.confirm .copyright {
  border-top: 1px solid #e6e6e6; }

.messageBox {
  margin: 0 40px 48px;
  padding: 24px;
  background-color: #fff5f5;
  text-align: center; }
  .messageBox .title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333; }
  .messageBox p {
    color: #af1111; }

.stepBar {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 32px 0;
  text-align: center;
  width: 100%;
  overflow: hidden; }
  .stepBar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    z-index: 2; }
  .stepBar .step {
    position: relative;
    float: left;
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 40px 0 20px;
    background-color: #dedede; }
    .stepBar .step:before {
      position: absolute;
      left: -15px;
      display: block;
      content: '';
      background-color: #dedede;
      border-left: 2px solid #FFF;
      width: 20px;
      height: 21px; }
    .stepBar .step:after {
      position: absolute;
      left: -15px;
      display: block;
      content: '';
      background-color: #dedede;
      border-left: 2px solid #FFF;
      width: 20px;
      height: 21px;
      top: 0px;
      -moz-transform: skew(30deg);
      -ms-transform: skew(30deg);
      -webkit-transform: skew(30deg);
      transform: skew(30deg); }
    .stepBar .step:before {
      bottom: 0;
      -moz-transform: skew(-30deg);
      -ms-transform: skew(-30deg);
      -webkit-transform: skew(-30deg);
      transform: skew(-30deg); }
    .stepBar .step:first-child:before, .stepBar .step:first-child:after {
      content: none; }
    .stepBar .step.current {
      color: #FFF;
      background-color: #998452; }
      .stepBar .step.current:before, .stepBar .step.current:after {
        background-color: #998452; }
  .stepBar.step2 .step {
    width: 50%; }
  .stepBar.step3 .step {
    width: 33%; }
    .stepBar.step3 .step:last-child {
      width: 34%; }
  .stepBar.step4 .step {
    width: 25%; }
  .stepBar.step5 .step {
    width: 20%; }

.formArea {
  margin-top: 32px;
  margin-bottom: 40px;
  display: table;
  border-top: 1px solid #ebebeb;
  width: 100%; }
  .formArea.confirm table tr th {
    vertical-align: middle; }
  .formArea.confirm table tr td {
    vertical-align: middle; }
  .formArea > dl {
    display: table-row; }
    .formArea > dl > dt {
      display: table-cell;
      vertical-align: middle;
      width: 256px;
      padding: 25px 16px 25px;
      background: #fafafa;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 1px;
      line-height: 1.6;
      border-bottom: 1px solid #ebebeb;
      position: relative; }
      .formArea > dl > dt.required {
        background: #faf6f0; }
        .formArea > dl > dt.required:after {
          content: "";
          width: 32px;
          height: 16px;
          background: url(../img/common/ico_required.png) no-repeat left top;
          background-size: 32px 16px;
          display: inline-block;
          margin-left: 1em;
          vertical-align: middle;
          margin-top: -2px; }
      .formArea > dl > dt.vTop {
        vertical-align: top; }
      .formArea > dl > dt .state {
        position: absolute;
        right: 16px;
        top: 50%;
        margin-top: -10px;
        width: 20px;
        height: 20px; }
        .formArea > dl > dt .state.ng {
          background: url(../img/common/ico_error.png) no-repeat left top;
          background-size: 20px 20px; }
        .formArea > dl > dt .state.ok {
          background: url(../img/common/ico_ok.png) no-repeat left top;
          background-size: 20px 20px; }
    .formArea > dl > dd {
      display: table-cell;
      padding: 25px 16px 25px 32px;
      background: #FFF;
      color: #333333;
      font-size: 1.4rem;
      line-height: 1.6;
      border-bottom: 1px solid #ebebeb;
      position: relative; }
      .formArea > dl > dd ul.nameWrap {
        float: left; }
      .formArea > dl > dd ul li.selectOuter {
        display: inline-block;
        position: relative; }
      .formArea > dl > dd ul li.nametxt {
        width: 2.6em;
        margin: 6px 0 0;
        float: left;
        position: relative; }
      .formArea > dl > dd ul li.nameform {
        width: 258px;
        float: left;
        position: relative; }
        .formArea > dl > dd ul li.nameform.last {
          width: 220px; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 6px 10px;
  border: 1px solid #c4c4c4;
  vertical-align: middle;
  background-color: #fafafa; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    background-color: #fffbd3; }
  input[type="text"].error,
  input[type="email"].error,
  input[type="tel"].error,
  textarea.error {
    background-color: #fcf5f4; }
  input[type="text"].name,
  input[type="email"].name,
  input[type="tel"].name,
  textarea.name {
    width: 220px; }
  input[type="text"].tel,
  input[type="email"].tel,
  input[type="tel"].tel,
  textarea.tel {
    width: 260px; }
  input[type="text"].long,
  input[type="email"].long,
  input[type="tel"].long,
  textarea.long {
    width: 100%; }
  input[type="text"].middle,
  input[type="email"].middle,
  input[type="tel"].middle,
  textarea.middle {
    width: 70%; }
  input[type="text"].short,
  input[type="email"].short,
  input[type="tel"].short,
  textarea.short {
    width: 120px; }
  input[type="text"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #aaa; }
  input[type="text"]:-moz-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="tel"]:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #aaa; }
  input[type="text"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #aaa; }
  input[type="text"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #aaa; }

textarea {
  width: 100%;
  height: 136px; }

span.error {
  position: static;
  color: #af1111;
  font-size: 1.2rem;
  display: block;
  margin-top: 5px;
  clear: both;
  font-weight: bold; }

span.name_error1 {
  position: static;
  color: #af1111;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 5px;
  font-weight: bold; }

select {
  z-index: 2; }

.hasCustomSelect {
  width: 100% !important; }

.hasCustomSelect.error + span {
  position: relative;
  color: #aaa;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 0;
  clear: both;
  background-color: #fcf5f4;
  font-weight: bold; }

.customSelect {
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  padding: 8px 30px 8px 10px;
  position: relative;
  z-index: 1; }
  .customSelect:before {
    content: "";
    width: 10px;
    height: 8px;
    background: url(../img/common/custom_select_arrow.png) no-repeat left top;
    background-size: 10px 8px;
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -5px; }
  .customSelect.error {
    position: relative;
    color: #aaa;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 0;
    clear: both;
    background-color: #fcf5f4;
    font-weight: bold; }
  .customSelect .customSelectInner {
    width: auto !important;
    padding-right: 10px; }

.check input[type='checkbox'] {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  position: absolute; }

.cbxbd {
  background: url(../img/common/checkbox.png) no-repeat left top;
  width: 20px;
  height: 20px;
  line-height: 20px;
  display: block;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
  text-indent: -9999px; }

.cbxbdForm {
  background: url(../img/common/checkbox.png) no-repeat left top;
  background-size: 20px auto;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden; }
  .cbxbdForm input {
    opacity: 0;
    margin-right: 15px; }

.c_on {
  background-position: left bottom; }

.radioWrap {
  overflow: hidden; }
  .radioWrap li {
    float: left;
    margin-right: 24px;
    cursor: pointer; }
  .radioWrap input {
    opacity: 0;
    float: left;
    z-index: -1;
    width: 1px; }
  .radioWrap label {
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    padding: 10px 40px;
    text-align: center;
    line-height: 1;
    border-radius: 20px;
    display: block;
    cursor: pointer; }
  .radioWrap input[type="radio"]:checked + label {
    border: 1px solid #178ddf;
    background-color: #fff; }

.HopeTimeWrap {
  margin-top: 16px; }
  .HopeTimeWrap li {
    display: inline-block;
    margin-right: 24px; }
  .HopeTimeWrap .customSelect {
    min-width: 5em; }

.addressWrap li {
  margin-bottom: 10px; }
  .addressWrap li:nth-child(2) {
    margin-bottom: 0; }

.calenderWrap li {
  position: relative;
  width: 260px;
  height: 35px; }
  .calenderWrap li input {
    width: 260px;
    border-radius: 3px;
    background-color: #fff; }
    .calenderWrap li input::-webkit-input-placeholder {
      color: #333; }
    .calenderWrap li input:-moz-placeholder {
      color: #333; }
    .calenderWrap li input::-moz-placeholder {
      color: #333; }
    .calenderWrap li input:-ms-input-placeholder {
      color: #333; }
  .calenderWrap li img {
    width: 24px;
    position: absolute;
    right: 8px;
    top: 6px; }

.privacy_wrap {
  padding: 0;
  margin: 0 auto;
  text-align: center;
  position: relative; }
  .privacy_wrap p {
    font-size: 1.2rem;
    margin-bottom: 15px; }
    .privacy_wrap p a {
      color: #333;
      text-decoration: underline; }
      .privacy_wrap p a:hover {
        text-decoration: none; }
  .privacy_wrap .txt {
    font-size: 1.5rem; }
  .privacy_wrap span.error {
    position: static;
    display: block;
    text-align: center;
    margin-top: 5px; }

.btnArea {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
  position: relative; }
  .btnArea .btn {
    display: inline-block;
    margin: 0; }
    .btnArea .btn.reBtn {
      position: absolute;
      left: 0;
      top: 8px; }
      .btnArea .btn.reBtn button {
        background-color: #9f9f9f;
        width: 200px;
        padding: 12px 0; }
        .btnArea .btn.reBtn button:before {
          content: "";
          width: 7px;
          height: 9px;
          background: url(../img/common/btn_arrow_white.png) no-repeat left top;
          background-size: 7px 9px;
          margin-right: 0.8em;
          display: inline-block;
          -moz-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }
        .btnArea .btn.reBtn button:after {
          display: none; }
    .btnArea .btn button {
      background-color: #998452;
      color: #fff;
      text-align: center;
      font-size: 1.6rem;
      width: 280px;
      padding: 20px 0;
      -moz-transition: 0.4s;
      -o-transition: 0.4s;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
      .btnArea .btn button:after {
        content: "";
        width: 7px;
        height: 9px;
        background: url(../img/common/btn_arrow_white.png) no-repeat left top;
        background-size: 7px 9px;
        margin-left: 0.8em;
        display: inline-block; }
      .btnArea .btn button:hover {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8; }

.thanksText {
  text-align: center;
  margin-bottom: 50px; }
  .thanksText .title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px; }
  .thanksText p {
    text-align: center; }

.btnPat01 {
  margin-bottom: 100px; }

.custom-selectbox:disabled {
  background-color: #ddd; }

.customSelectDisabled {
  background-color: #ddd; }

.accessArea {
  display: none; }

/* ==========================================================================
    
   sp
   
   ========================================================================== */
@media screen and (max-width: 767px) {
  body.input #wrapper {
    padding-bottom: 0; }
  body.input .footFixedBlock {
    display: none; }
  body.input .navAreaSp {
    display: none; }

  body.confirm #wrapper {
    padding-bottom: 0; }
  body.confirm .footFixedBlock {
    display: none; }
  body.confirm .navAreaSp {
    display: none; }

  .messageBox {
    margin: 0 0px 24px;
    padding: 16px 10px;
    background-color: #fff5f5;
    text-align: center; }
    .messageBox .title {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333; }
    .messageBox p {
      color: #af1111;
      font-size: 1.1rem; }

  .stepBar {
    position: relative;
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    font-size: 1rem;
    font-weight: bold;
    *zoom: 1; }
    .stepBar .step {
      position: relative;
      float: left;
      display: inline-block;
      line-height: 24px;
      height: 24px;
      padding: 0 24px 0 12px;
      background-color: #dedede; }
      .stepBar .step:before {
        position: absolute;
        left: -7px;
        display: block;
        content: '';
        background-color: #dedede;
        border-left: 1px solid #FFF;
        width: 12px;
        height: 12px; }
      .stepBar .step:after {
        position: absolute;
        left: -7px;
        display: block;
        content: '';
        background-color: #dedede;
        border-left: 1px solid #FFF;
        width: 12px;
        height: 12px;
        top: 0;
        -moz-transform: skew(30deg);
        -ms-transform: skew(30deg);
        -webkit-transform: skew(30deg);
        transform: skew(30deg); }
      .stepBar .step:before {
        bottom: 0;
        -moz-transform: skew(-30deg);
        -ms-transform: skew(-30deg);
        -webkit-transform: skew(-30deg);
        transform: skew(-30deg); }
      .stepBar .step:first-child:before, .stepBar .step:first-child:after {
        content: none; }
      .stepBar .step.current {
        color: #FFF;
        background-color: #998452; }
        .stepBar .step.current:before, .stepBar .step.current:after {
          background-color: #998452; }
    .stepBar.step2 .step {
      width: 50%; }
    .stepBar.step3 .step {
      width: 33%; }
      .stepBar.step3 .step:last-child {
        width: 34%; }
    .stepBar.step4 .step {
      width: 25%; }
    .stepBar.step5 .step {
      width: 20%; }

  .formArea {
    margin-bottom: 20px;
    display: block;
    border-top: 1px solid #ebebeb; }
    .formArea p {
      font-size: 1.2rem; }
    .formArea.confirm table tr th {
      vertical-align: middle; }
    .formArea.confirm table tr td {
      vertical-align: middle; }
    .formArea > dl {
      display: block;
      margin: 0;
      padding: 0; }
      .formArea > dl > dt {
        display: block;
        vertical-align: middle;
        width: 100%;
        padding: 10px 5px 0;
        background: #fff;
        font-size: 10px;
        font-size: 1rem;
        font-weight: bold;
        letter-spacing: 0px;
        line-height: 1.6;
        border-bottom: none;
        position: relative; }
        .formArea > dl > dt.required {
          background: #fff; }
          .formArea > dl > dt.required:after {
            content: "";
            width: 20px;
            height: 10px;
            background: url(../img/common/ico_required.png) no-repeat left top;
            background-size: 20px 10px;
            display: inline-block;
            margin-left: 1em;
            vertical-align: middle;
            margin-top: -2px; }
        .formArea > dl > dt .state {
          position: absolute;
          right: 5px;
          top: 8px;
          margin-top: 0;
          width: 18px;
          height: 18px; }
          .formArea > dl > dt .state.ng {
            background: url(../img/common/ico_error.png) no-repeat left top;
            background-size: 18px 18px; }
          .formArea > dl > dt .state.ok {
            background: url(../img/common/ico_ok.png) no-repeat left top;
            background-size: 18px 18px; }
      .formArea > dl > dd {
        display: block;
        padding: 10px 5px 10px;
        background: #FFF;
        color: #333333;
        font-size: 1rem;
        line-height: 1.6;
        border-bottom: 1px solid #ebebeb;
        position: relative;
        overflow: hidden;
        margin: 0; }
        .formArea > dl > dd ul.nameWrap {
          float: left;
          width: 50%; }
        .formArea > dl > dd ul li.nametxt {
          width: 2.6em;
          margin: 0 0 0;
          float: none;
          position: relative; }
        .formArea > dl > dd ul li.nameform {
          width: 100%;
          float: left;
          position: relative; }
          .formArea > dl > dd ul li.nameform.last {
            width: 100%; }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 10px 5px;
    border: 1px solid #c4c4c4;
    vertical-align: middle;
    background-color: #fafafa; }
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus {
      background-color: #fffbd3; }
    input[type="text"].error,
    input[type="email"].error,
    input[type="tel"].error,
    textarea.error {
      background-color: #fcf5f4; }
    input[type="text"].name,
    input[type="email"].name,
    input[type="tel"].name,
    textarea.name {
      width: 95%; }
    input[type="text"].tel,
    input[type="email"].tel,
    input[type="tel"].tel,
    textarea.tel {
      width: 100%; }
    input[type="text"].long,
    input[type="email"].long,
    input[type="tel"].long,
    textarea.long {
      width: 100%; }
    input[type="text"].middle,
    input[type="email"].middle,
    input[type="tel"].middle,
    textarea.middle {
      width: 70%; }
    input[type="text"].short,
    input[type="email"].short,
    input[type="tel"].short,
    textarea.short {
      width: 20%; }
    input[type="text"]::-webkit-input-placeholder,
    input[type="email"]::-webkit-input-placeholder,
    input[type="tel"]::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
      color: #aaa; }
    input[type="text"]:-moz-placeholder,
    input[type="email"]:-moz-placeholder,
    input[type="tel"]:-moz-placeholder,
    textarea:-moz-placeholder {
      color: #aaa; }
    input[type="text"]::-moz-placeholder,
    input[type="email"]::-moz-placeholder,
    input[type="tel"]::-moz-placeholder,
    textarea::-moz-placeholder {
      color: #aaa; }
    input[type="text"]:-ms-input-placeholder,
    input[type="email"]:-ms-input-placeholder,
    input[type="tel"]:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
      color: #aaa; }

  input, textarea, select {
    font-size: 1.2rem; }

  textarea {
    width: 100%;
    height: 136px; }

  span.error {
    position: static;
    text-align: left;
    display: block;
    clear: both;
    padding: 3px 0 0 5px;
    color: #af1111;
    font-size: 1.1rem; }

  span.name_error1 {
    position: static;
    display: block;
    clear: both;
    padding: 3px 0 0 5px;
    color: #af1111;
    font-size: 1.1rem; }

  select {
    z-index: 2;
    width: 100%; }

  .customSelect {
    border: 1px solid #c4c4c4;
    border-radius: 3px;
    padding: 8px 15px 8px 10px;
    position: relative;
    white-space: nowrap;
    box-sizing: content-box;
    z-index: 1;
    font-size: 1.2rem; }
    .customSelect:before {
      content: "";
      width: 10px;
      height: 8px;
      background: url(../img/common/custom_select_arrow.png) no-repeat left top;
      background-size: 10px 8px;
      position: absolute;
      right: 1em;
      top: 50%;
      margin-top: -5px; }

  .check input[type='checkbox'] {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    position: absolute; }

  .cbxbd {
    background: url(../img/common/checkbox.png) no-repeat left top;
    width: 18px;
    height: 18px;
    line-height: 18px;
    display: block;
    padding: 0;
    margin: 0 auto;
    cursor: pointer;
    overflow: hidden;
    text-indent: -9999px; }

  .cbxbdForm {
    background: url(../img/common/checkbox.png) no-repeat left top;
    background-size: 18px 36px;
    line-height: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 auto;
    cursor: pointer;
    overflow: hidden; }
    .cbxbdForm input {
      opacity: 0;
      margin-right: 15px; }

  .c_on {
    background-position: left bottom; }

  .radioWrap {
    overflow: hidden; }
    .radioWrap li {
      float: left;
      margin-right: 12px;
      cursor: pointer; }
    .radioWrap input {
      visibility: hidden; }
    .radioWrap label {
      border: 1px solid #f2f2f2;
      background-color: #f2f2f2;
      padding: 5px 20px;
      text-align: center;
      line-height: 1;
      border-radius: 20px;
      display: block;
      cursor: pointer;
      font-size: 1.2rem; }
    .radioWrap input[type="radio"]:checked + label {
      border: 1px solid #178ddf;
      background-color: #fff; }

  .HopeTimeWrap {
    margin-top: 8px; }
    .HopeTimeWrap li {
      display: inline-block;
      margin-right: 12px; }
    .HopeTimeWrap .customSelect {
      min-width: 5em; }

  .addressWrap li {
    margin-bottom: 10px; }
    .addressWrap li:nth-child(2) {
      margin-bottom: 0; }

  .calenderWrap li {
    position: relative;
    width: auto;
    height: auto; }
    .calenderWrap li input {
      width: 100%;
      min-width: 100%;
      border-radius: 3px;
      background-color: #fff; }
      .calenderWrap li input::-webkit-input-placeholder {
        color: #333; }
      .calenderWrap li input:-moz-placeholder {
        color: #333; }
      .calenderWrap li input::-moz-placeholder {
        color: #333; }
      .calenderWrap li input:-ms-input-placeholder {
        color: #333; }
    .calenderWrap li img {
      width: 24px;
      position: absolute;
      right: 8px;
      top: 8px; }

  .privacy_wrap {
    padding: 0;
    margin: 0 auto;
    text-align: center;
    position: relative; }
    .privacy_wrap p {
      font-size: 1rem;
      margin-bottom: 15px; }
      .privacy_wrap p a {
        color: #333;
        text-decoration: underline; }
        .privacy_wrap p a:hover {
          text-decoration: none; }
    .privacy_wrap .txt {
      font-size: 1.2rem;
      padding-left: 0; }
    .privacy_wrap span.error {
      position: static;
      display: block;
      text-align: center;
      margin-top: 5px;
      font-weight: bold; }

  .btnArea {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 43px; }
    .btnArea .btn {
      display: block;
      margin: 0; }
      .btnArea .btn.reBtn {
        position: static;
        left: 0;
        top: 8px; }
        .btnArea .btn.reBtn button {
          position: absolute;
          left: 0;
          bottom: 0;
          background-color: #9f9f9f;
          width: 100%;
          padding: 7px 0; }
          .btnArea .btn.reBtn button:before {
            content: "";
            width: 7px;
            height: 9px;
            background: url(../img/common/btn_arrow_white.png) no-repeat left top;
            background-size: 7px 9px;
            margin-right: 0.8em;
            display: inline-block;
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
          .btnArea .btn.reBtn button:after {
            display: none; }
      .btnArea .btn button {
        background-color: #998452;
        color: #fff;
        text-align: center;
        font-size: 1.4rem;
        width: 100%;
        padding: 15px 0; }
        .btnArea .btn button:after {
          content: "";
          width: 7px;
          height: 9px;
          background: url(../img/common/btn_arrow_white.png) no-repeat left top;
          background-size: 7px 9px;
          margin-left: 0.8em;
          display: inline-block; }
        .btnArea .btn button:hover {
          filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
          opacity: 1; }

  .btnLinkBlock {
    display: none; }

  .telBlock {
    display: none; }

  .footerCommonArea {
    display: none; }

  .copyright {
    border-top: 1px solid #e6e6e6; }

  .thanksText {
    text-align: center;
    margin-bottom: 32px;
    margin-top: 20px; }
    .thanksText .title {
      font-size: 1.6rem;
      font-weight: bold;
      margin-bottom: 25px; }
    .thanksText p {
      text-align: center; }

  .btnPat01 {
    margin-bottom: 35px; }

  .accessArea {
    display: block;
    border-top: 1px solid #f4f4f2;
    padding-top: 35px; } }
