main#CONTACT_PAGE {
  margin-top:  -60px;
  overflow: hidden;
}

main#CONTACT_PAGE .fullBoxColor02 {
  padding-top:  20px;
}

.step__nav {
  max-width: 900px;
  margin:  0 auto 30px auto;
  display: flex;
  padding-right: 30px;
}
.step__nav .step__item {
  flex:1;
}
.step__nav .step__item .step-item__inner {
  position: relative;
  background: #dfeaff;
  line-height: 1.3;
  height: 90px;
  padding: 20px 15px;
  font-size: 1.2rem;
  text-align:  center;
}
.step__nav .step__item.active .step-item__inner {
  background-color: #122f69;
  color:  #fff;
}

.step__nav .step__item .step-item__inner:after {
    content: "";
    position: absolute;
    top: 50%;
    border: 0 solid #dfeaff;
    border-width: 45px 30px;
    width: 0;
    height: 0;
    left: 100%;
    border-color: transparent;
    border-left-color: #dfeaff;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:  1;
}
.step__nav .step__item.active .step-item__inner:after {
  border-left-color: #122f69;
}
.step__nav .step__item .step-item__inner .step-item__txt {
  display:  inline-block;
  text-align: left;
}
.step__nav .step__item .step-item__inner .step-item__txt .step {
  font-weight: 600;
  font-size: .9em;
  display:  block;
}

@media screen and (max-width:768px) {
  .step__nav {
    padding-right: 15px;
  }
  .step__nav .step__item .step-item__inner {
    height: 80px;
    padding: 15px 5px 15px 22px;
    font-size: 13px;
    text-align:  left;
    display: flex;
    justify-content: center;
  }
  .step__nav .step__item .step-item__inner:after {
    border-width: 40px 13px;
  }
  .step__nav .step__item .step-item__inner .step-item__txt {
    margin: auto 0;
  }
}


/*離脱防止ポップアップ*/
.popup-area {
    display:none;
    width:80vw;
    background:#fff;
    padding:20px;
    position: fixed;
    z-index: 9999;   
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    border-radius:8px;
    box-shadow: 0 0 4px 4px rgba(0,0,0,0.4);
}
@media screen and (min-width: 980px) {
    .popup-area {
        width:auto;
        max-width: 460px;
    }
}
.popup-area .popup-img {
    margin-bottom: 5%;
}
/* 背景色 */
.cover-eml {
    background:rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;   
    top:0;
    right:0;
    bottom:0;
    left:0;
}

.popup-area .ok-btn,
.popup-area .cancel-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
    border: none;
    outline: none;
    display: block;
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    padding: 0.8em 3em;
    border-radius: 30px;
    margin-top: 20px;
}
.popup-area .ok-btn {
    background: #e61b1b;  
}
.popup-area .cancel-btn {
    background: #8693a0;
}