.payment-btn-color {
  background-color: #1FB1E6!important;
}

.payment-list {
  border: 1px solid #91BEE3;
  border-radius: 15px;
  padding: 0 10px 10px;
  margin-top: 36px;
}
.payment-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dotted #91BEE3;
}
.payment-list__item-txt {
  color: var(--color-font-default);
  font-weight: 700;
  font-size: 18px;
}
.payment-list__item-txt-fz16 {
  font-size: 16px;
}
.payment-list__item-txt-fz20 {
  font-size: 20px;
}
.payment-list__item-txt-fz25 {
  font-size: 25px;
}
.payment-list__item-txt-color {
  color: #2167AE;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.payment-list__item-txt-color::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -2px;
  height: 5px;
  background-color: rgba(244, 237, 126, 0.78);
  z-index: -1;
}

.payment-step {
  margin-top: 23px;
}
.payment-step__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.payment-step__item:not(:last-child) {
  padding-bottom: 25px;
  position: relative;
}
.payment-step__item:not(:last-child):after {
  position: absolute;
  content: "";
  background: url("/-/media/Images/ZurichLife/customer/payment/renew/icon-arrow-down.svg") no-repeat;
  width: 17px;
  height: 12px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.payment-step__item-icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}
.payment-step__item-txt {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-font-default);
}
.payment-step__item-txt02 {
  font-size: 14px;
  font-weight: 400;
}
.payment-step__item-txt .m-list-notice {
  font-weight: normal;
  margin-top: 8px;
}
.payment-step__item-txt .m-list-notice__inner{
  --list-item-gap: 0;
}

.payment-info {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
}
.payment-info .m-list-bullet {
  --list-item-gap: 0;
  margin-top: 0;
}
.payment-info .m-list-bullet__item {
  font-size: 15px;
  padding-left: calc(var(--bullet-size) + 7px);
  color: #2167AE;
}
.payment-info__image {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
}

.payment-contact .m-toggle-box-type2 {
  background-color: transparent;
  border: 1px solid #D8E0DF;
  padding: 24px 20px;
  margin-top: 24px;
  align-self: flex-start;
}

.payment-contact .m-toggle-box-type2__head {
  text-align: center;
  font-size: 20px;
  padding-right: 0;
}

.payment-contact .m-other-contact__inner {
  padding: 20px 0 0;
}

.payment-contact .m-toggle-box-type2__body {
  padding-top: 0;
}

.payment-contact .m-box {
  background-color: transparent;
}

.payment-contact .m-other-contact__telLink::before {
  background-color: var(--color-background-2);
}

.payment-contact .m-toggle-box-type2 .m-toggle-box-type2__ttl::after {
  display: none;
}

.payment-contact .m-toggle-box-type2__ttl::before {
  content: "";
  position: absolute;
  background-image: url(/-/media/common/images/ico-footerChevron.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 7px;
  display: inline-block;
  top: 50%;
  right: 4px;
  translate: 0 -50%;
  transition: rotate var(--transition-duration);
  background-color: transparent;
  transform: none;
}

.payment-contact .m-toggle-box-type2[open] .m-toggle-box-type2__ttl::before {
  rotate: -180deg;
}

.payment-faq ul li {
  margin-top: 24px;
}
.payment-faq ul li a {
  text-decoration: none;
  color: var(--color-main-2);
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.payment-faq ul li a img {
  width: 24px;
  height: 24px;
}

.payment-faq__more {
  display: flex;
  justify-content: flex-end;
}
.payment-faq__more ul li {
  margin-top: 0;
}

.payment-more ul {
  border: 1px solid #CAC9CA;
  border-radius: 10px;
  margin-top: 24px;
}
.payment-more ul li {
  padding: 15px 6px;
  position: relative;
}
.payment-more ul li:not(:last-child) {
  border-bottom: 1px solid #CAC9CA;
}
.payment-more ul li a {
  text-decoration: none;
  color: #2167AE;
  font-size: 15px;
  display: flex;
  gap: 10px;
  padding-right: 25px;
  transition: 0.2s;
}
.payment-more__arrow {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}
.payment-more__icon {
  width: 19px;
  height: 22px;
}
@media (hover: hover) {
  .payment-btn-color:hover {
    opacity: var(--opacity-default);
    background-color: #1FB1E6!important;
  }
  .payment-more ul li a:hover {
    opacity: var(--opacity-default);
  }
}
@media screen and (min-width: 769px) {
  .payment-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 13px 0;
  }
  .payment-list__item {
    border-bottom: none;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }
  .payment-list__item-icon img {
    width: 30px;
    height: 30px;
  }
  .payment-list__item:not(:last-child) {
    border-right: 1px dotted #91BEE3;
  }
  .payment-step {
    display: flex;
    gap: 45px;
  }
  .payment-step__item {
    flex-direction: column;
    width: 33.3333333333%;
    gap: 20px;
  }
  .payment-step__item:first-child {
    margin-bottom: 0;
  }
  .payment-step__item:not(:last-child) {
    padding-bottom: 0;
  }
  .payment-step__item:not(:last-child):after {
    left: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    right: -24px;
  }
  .payment-step__item-txt {
    font-size: 20px;
    text-align: center;
  }
  .payment-step__item-txt02 {
    font-size: 16px;
  }
  .payment-info {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .payment-info__list ul {
    flex-wrap: wrap;
    flex-direction: inherit;
  }
  .payment-info__list ul li {
    width: 50%;
    margin-bottom: 7px;
  }
  .payment-info .m-list-bullet__item {
    font-size: 17px;
  }
  .payment-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .payment-contact .m-other-contact__telLink {
    width: fit-content;
    margin: auto;
  }
  .payment-contact .m-toggle-box-type2__head {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .payment-more ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .payment-more ul li {
    padding: 28px 0 52px 0;
  }
  .payment-more ul li:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #CAC9CA;
  }
  .payment-more ul li a {
    padding-right: 15px;
    padding-left: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 19px;
  }
  .payment-more__arrow {
    right: auto;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    top: auto;
  }
  .payment-more__icon {
    width: 40px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .payment-step__item:nth-child(2) {
    align-items: center;
  }
  .payment-step__item:nth-child(2) .payment-step__item-txt {
    padding-top: 27px;
  }
}