:root {
  --primary-color: #ff7070;
  --secondary-color: #6e82ff;
  --text-color: #303030;
}

.contents_wrap li {
  list-style-type: none;
}
/*paypanel*/
.paypanel {
  display: none;
}
.paypanel.is-active {
  display: block;
}

.paypanel_title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-weight: bold;
  color: #fff;
  background: var(--primary-color);
}

.paypanel_inner {
  padding: 20px 2.5% 10px;
  border-bottom: 10px solid var(--primary-color);
}

.cl_txt1 { color: var(--primary-color); }
.cl_txt2 { color: var(--secondary-color); }
.cl_txt_b { color: var(--text-color); }

/*payplan*/
.sortList {
  display: flex;
  justify-content: center;
  width: 70%;
  height: 30px;
  margin: 0 auto 14px;
  box-sizing: border-box;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  overflow: hidden;
  background: var(--primary-color);
}
.sortList_item {
  width: 50%;
}

/* Common error popup */
.common-popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
}
.common-popup-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.common-popup {
  width: 90%;
  max-width: 420px;
  padding: 20px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--text-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  text-align: center;
}
.common-popup__title {
  margin-bottom: 8px;
  font-weight: bold;
}
.common-popup__message {
  margin-bottom: 16px;
  line-height: 1.5;
  white-space: pre-line;
}
.common-popup__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.common-popup__button {
  display: inline-block;
  width: 30%;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}
.common-popup__button.js_confirm_cancel {
  background: #e6e6e6;
  color: var(--text-color);
}

.sortList_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: var(--primary-color);
  background: #fff;
}
.sortList_item a.is-active {
  color: #fff;
  background: var(--primary-color);
}

.payplanList_item {
  margin: 0 0 10px;
}
.payplanList_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  border: 1px solid #b9b9b9;
  border-radius: 30px;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}

.planPrice {
  display: block;
  margin-left: 30px;
  font-size: 14px;
  font-weight: normal;
  color: var(--text-color);
}

/*plandetail*/
.paydetail {
  padding: 30px 2.5% 20px;
}

.accordion_box {
  padding: 16px;
  border: 1px solid #b9b9b9;
  border-radius: 10px;
}

.accordion_panel {
  margin-top: 16px;
}

.accordion_btn {
  position: relative;
  font-size: 16px;
  font-weight: bold;
}

.icon_plus {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 0;
  transition: .3s ease;
}
.is-open .icon_plus {
  transform: rotate(45deg);
}
.icon_plus:before,
.icon_plus:after {
  content: "";
  background: var(--text-color);
  display: block;
  position: absolute;
}
.icon_plus:before {
  width: 18px;
  height: 2px;
  bottom: 8px;
}
.icon_plus:after {
  width: 2px;
  height: 18px;
  left: 8px;
}

.accordion_panel {
  display: none;
}

.bank_box {
  background: #f6f6f6;
  border-radius: 6px;
  padding: 10px;
}

.bank_list {
  font-size: 0;
}

.bank_list_title,
.bank_list_data {
  display: inline-block;
}

.bank_list_title {
  color: var(--primary-color);
}

.detail_title {
  font-size: 16px;
  text-align: center;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 12px;
}
.detail_title:after {
  content: "";
  width: 100px;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}

[id*="pageLink"] {
  margin: -50px 0 0;
  padding: 50px 0 0;
}

.sortList_item {
  width: 50%;
  list-style-type: none;
}

.payplanList_item {
  margin: 0 0 10px;
  list-style-type: none;
}