@charset "utf-8";

.toplink{
  display: block;
  background-color: rgb(0, 146, 96);
  padding: 10px 5px;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  opacity: 1;
  width: 36%;
  box-shadow: 3px 3px 0px #666;

}

.sp-hide {
  display: block;
}
@media only screen and (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

.pc-hide {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pc-hide {
    display: block;
  }
}

.contents-bg {
  width: 100%;
  height: 100%;
  background-color: #fcf5e3;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .contents-bg {
    width: auto;
    padding: 0 15px;
  }
}

#contents {
  margin: 0 auto;
  padding-bottom: 40px;
}

/* contents > flow */
#contents #flow {
  width: 100%;
}

#contents #flow img {
  width: 100%;
  max-width: 100%;
}

#contents #flow > h1 {
  padding: 35px 0;
  letter-spacing: 0.24em;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  color: #cd0102;
}
@media only screen and (max-width: 767px) {
  #contents #flow > h1 {
    padding: 30px 0 25px;
    font-size: 1.5rem;
  }
}

#contents #flow .flow-list {
  counter-reset: number;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list {
    counter-reset: number;
  }
}

#contents #flow .flow-list * li {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list * li {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
  }
}

#contents #flow .flow-list * li::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list * li::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('../flow/images/list_toggle_button.png');
    background-size: cover;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: 0.1s all;
  }
  #contents #flow .flow-list * li.is-active::after {
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transition: 0.1s all;
  }
}

#contents #flow .flow-list * li + li {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list * li + li {
    margin-top: 15px;
  }
}

#contents #flow .flow-list-description {
  width: 100%;
  max-width: 620px;
  float: left;
  margin-right: 50px;
  font-size: 1.5rem;
  line-height: 1.692;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list-description {
    width: 100%;
    max-width: 100%;
    float: none;
    margin-right: 0;
    font-size: 1.5rem;
    line-height: 1.692;
  }
}

#contents #flow .flow-list-description-title {
  letter-spacing: 0.16em;
  font-size: 2.6rem;
  font-weight: 800;
  color: #cd0102;
  margin-bottom: 20px;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list-description-title {
    margin-bottom: 10px;
    font-size: 1.7rem;
    padding-right: 20px;
  }
}

#contents #flow .flow-list-description-title::before {
  counter-increment: number;
  content: 'STEP'counter(number);
  display: block;
  width: 115px;
  height: 31px;
  margin-bottom: 25px;
  font-size: 1.6rem;
  line-height: 31px;
  letter-spacing: 0.28em;
  text-align: center;
  background-image: url('../flow/images/list_step_bg.png');
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list-description-title::before {
    width: 86px;
    height: 23px;
    margin-bottom: 13px;
    font-size: 1.4rem;
    line-height: 23px;
  }
}

#contents #flow .flow-list-description p + p {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list-description p + p {
    margin-top: 13px;
  }
}

#contents #flow .flow-list-description-image {
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list-description-image {
    margin-bottom: 13px;
    border-radius: 5px;
  }
}

#contents #flow .flow-list-description-wrap {
  display: block;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #contents #flow .flow-list-description-wrap {
    display: none;
    padding-bottom: 34px;
  }
}

#contents #flow .flow-list-image {
  max-width: 350px;
  overflow: hidden;
  border-radius: 6px;
}


/* flow-footer */
#flow-footer {
  width: 100%;
  padding: 30px 0 20px;
  display: block;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #flow-footer {
    width: auto;
    padding: 10px 15px 20px;
    background-color: #fcf5e3;
  }
}

#flow-footer .flow-footer-list {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #flow-footer .flow-footer-list {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
  }
}


#flow-footer .flow-footer-list li {
  width: 350px;
  height: 68px;
  line-height: 23px;
  float: left;
  text-align: center;
  font-size: 16px;
  font-size: 1.3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #flow-footer .flow-footer-list li {
    width: 100%;
    height: auto;
    line-height: 1.3;
    float: none;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#flow-footer .flow-footer-list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0 20px 0 0;
  border-radius: 6px;
  background-image: url('../flow/images/footer_button_icon.png');
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: right 20px center;
}
@media only screen and (max-width: 767px) {
  #flow-footer .flow-footer-list li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 23px 12px 0;
    border-radius: 5px;
    background-image: url('../flow/images/footer_button_icon.png');
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: right 20px center;
  }
}

#flow-footer .flow-footer-list li:nth-child(1) a {
  background-color: #FC5555;
  box-shadow: 3px 3px 0px #666;
}
#flow-footer .flow-footer-list li:nth-child(2) a {
  background-color: #39BDFE;
  box-shadow: 3px 3px 0px #666;
}
#flow-footer .flow-footer-list li:nth-child(3) a {
  background-color: #ff974d;
  box-shadow: 3px 3px 0px #666;
}

#flow-footer .flow-footer-list li + li {
  margin-left: 25px;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #flow-footer .flow-footer-list li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}


#flow-footer .flow-footer-inner {
  width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #flow-footer .flow-footer-inner {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
}
