@charset "utf-8";

/*layout*/
.pc_none {
  display: none;
}
.sp_none {
  display: block;
}
.revo-section {
  margin-top: 30px;
}
.revo-section + .revo-section {
  margin-top: 60px;
}
.m-30 {
  margin: 30px 0;
}
.revo-center {
  text-align: center;
}

/*button*/
.revo-btn_box {
  padding-top: 10px;
  margin-bottom: 30px;
}
.revo-btn_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 4px 5.9px 0.1px rgba(38, 36, 36, 0.15);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.18px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
}
.revo-btn_detail::after {
  content: "";
  width: 17px;
  height: 18px;
  background-image: url(/creditcard/revo/img/icon-btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px);
  right: 19px;
}
.revo-btn_detail:hover {
  color: #fff;
  opacity: .7;
}
.revo-btn_detail.-light {
  background-color: #f39700;
}

.revo-btn_accordion {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 34px;
  background-color: #a3a3a3;
  position: relative;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 5.9px 0.1px rgba(179, 116, 116, 0.15);
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
  line-height: 1;
  color: #fff;
}
.revo-btn_accordion::before,.revo-btn_accordion::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
}
.revo-btn_accordion::before {
  transform: rotate(90deg);
}
.revo-btn_accordion:hover {
  opacity: .7;
}

.revo-btn_accordion.is-active {
  border-radius: 10px 10px 0 0;
  box-shadow: none;
}
.revo-btn_accordion.is-active::before {
  display: none;
}

.revo-btn_close {
  display: block;
  width: 220px;
  height: 52px;
  margin: 40px auto 0;
  background-color: #a3a3a3;
  position: relative;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 4px 5.9px 0.1px rgba(179, 116, 116, 0.15);
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
  line-height: 1;
  color: #fff;
}
.revo-btn_close:hover {
  opacity: .7;
}
.revo-btn_close::before,.revo-btn_close::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: absolute;
  top: calc(50% - 1px);
  left: 20px;
}
.revo-btn_close::before {
  transform: rotate(45deg);
}
.revo-btn_close::after {
  transform: rotate(-45deg);
}


/*title*/
.revo-title.-video {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.revo-title.-kaeru_arrow {
  background: #c1a969;
  color: #fff;
  padding: 20px 25px;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  padding-left: 70px;
  margin-bottom: 36px;
}
.revo-title.-kaeru_arrow .-num {
  position: absolute;
  font-size: 32px;
  font-weight: 600;
  left: 25px;
  top: calc(50% - 0.5em);
}
.revo-title.-kaeru_arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 20px solid rgba(255,255,255,0);
  border-top: 16px solid #c1a969;
  position: absolute;
  top: 100%;
  left: calc(50% - 20px);
}

/*text*/
.revo-clr.-alert {
  color: #ff0000;
}
.revo-text_lg {
  font-size: 16px;
}

/*list*/
.revo-list {
  margin-bottom: 12px;
}
.revo-list li{
  padding-left: 1em;
  position: relative;
  line-height: 1.5;
}
.revo-list.-kome li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.revo-list.-circle li::before {
  content: "●";
  color: #c1a969;
  position: absolute;
  left: 0;
  top: 0;
}
.revo-list.-mt--1 {
  margin-top: -1em;
}
.revo-list.-mt--1_5 {
  margin-top: -1.5em;
}

/*accordion*/
.revo-detail {
  display: none;
  padding: 40px 10px;
  border-radius: 0 0 12px 12px;
  border: solid 2px #a3a3a3;
  border-top: none;
}


@media screen and (max-width: 640px) {
  /*layout*/
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }

  .revo-section + .revo-section {
    margin-top: 30px;
  }

  .sp-margin_change > .local-nav {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .revo-left_sp {
    text-align: left;
  }

  /*button*/
  .revo-btn_box {
    margin-bottom: 20px;
  }
  .revo-btn_detail {
    max-width: 300px;
    min-height: 40px;
    padding: 0 25px;
    padding-left: 10px;
    border-radius: 5px;
    box-shadow: 0px 3.5px 3.9px 0.1px rgba(38, 36, 36, 0.2);
    font-size: 15px;
    line-height: 1.43;
    letter-spacing: -0.15px;
  }
  .revo-btn_detail::after {
    content: "";
    width: 14px;
    height: 16px;
    top: calc(50% - 8px);
    right: 12px;
  }
  .revo-btn_detail:hover {
    opacity: 1;
  }

  .revo-btn_accordion {
    height: 40px;
    margin-top: 22px;
    border-radius: 6px;
    box-shadow: 0px 3.5px 3.9px 0.1px rgba(38, 36, 36, 0.2);
    font-size: 14px;
  }
  .revo-btn_accordion::before,.revo-btn_accordion::after {
    width: 16px;
  }
  .revo-btn_accordion:hover {
    opacity: 1;
  }

  .revo-btn_accordion.is-active {
    border-radius: 6px 6px 0 0;
  }

  .revo-btn_close {
    width: 120px;
    height: 40px;
    margin: 20px auto 0;
    border-radius: 6px;
    font-size: 14px;
    padding: 0;
    padding-left: 5px;
  }
  .revo-btn_close:hover {
    opacity: 1;
  }
  .revo-btn_close::before,.revo-btn_close::after {
    width: 16px;
    height: 2px;
    left: 10px;
  }

  /*title*/
  .revo-title.-video {
    font-size: 18px;
  }

  .revo-title.-kaeru_arrow {
    padding: 16px;
    font-size: 14px;
    padding-left: 45px;
    margin-bottom: 24px;
  }
  .revo-title.-kaeru_arrow .-num {
    font-size: 21px;
    left: 13px;
  }
  .revo-title.-kaeru_arrow::after {
    border: 16px solid rgba(255,255,255,0);
    border-top: 12px solid #c1a969;
    left: calc(50% - 16px);
  }

  .revo-text_lg {
    font-size: 15px;
  }

  /*accordion*/
  .revo-detail {
    padding: 20px 7px;
    border-radius: 0 0 6px 6px;
  }

}/* sp */

