@charset "UTF-8";
/*--------------------------------------------------------------------------
   payment
---------------------------------------------------------------------------*/
.payment__ttl {
  margin-bottom: 40px;
}
.payment__list {
  overflow: hidden;
  margin: -10px;
}

.payment__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 20px 10px;
}

.payment__item {
  width: calc((100% / 4) - 8px);
  max-width: 230px;
}

.payment__item a {
  display: block;
}

.payment__item .logo {
  display: table;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 145px;
  border: 2px solid #edeeef;
  background: #fff;
  -webkit-transition: border 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: border 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modePC .payment__item a.logo:hover {
  border-color: #131f55;
}

.payment__item .logo:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent #151f63 transparent;
}

.payment__item .logo img {
  width: 100%;
  height: auto;
}

.payment__item .name {
  position: relative;
  margin: 8px 5px 0;
  color: #9189c2;
  text-decoration: underline;
}

.payment__item .name::before,
.payment__item .name::after {
  display: inline-block;
  position: absolute;
  width: 2px;
  height: 15px;
  right: 20px;
  top: 50%;
  border-radius: 2px;
  background-color: #f27934;
  content: "";
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.payment__item .name::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 0.3s ease;
}

.payment__item.open .name::before {
  transform: translateY(-50%) rotate(90deg);
}

.payment__item.open .name::after {
  opacity: 0;
}

.payment__item .name a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 8.875px 0;
  border-radius: 7px;
  background-color: #dbe5ee;
  text-decoration: none;
  transition: all 0.3s ease;
}

.payment__item .name.large a {
  height: 85px;
}

.payment__item .name span {
  display: inline-block;
  padding-left: 12px;
  padding-right: 30px;
  color: #151f63;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.payment__item.open .name a {
  border-radius: 7px 7px 0 0;
}

.payment__item .detail {
  margin: 0 5px;
  padding: 17px 15px 19px;
  border-left: 3px solid #dbe5ee;
  border-bottom: 3px solid #dbe5ee;
  border-right: 3px solid #dbe5ee;
  border-radius: 0 0 7px 7px;
  background-color: #fff;
}

.payment__item .detail dt {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.payment__item .detail dt::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  transform: translateY(-51%);
  content: "";
}

.payment__item .detail dd {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.payment__item .detail dd a[href*="tel:"] {
  display: inline-block;
}

.payment__item .detail dl + dl {
  margin-top: 15px;
}

@media screen and (min-width: 769px) {
  .payment__item .name a:hover {
    background-color: #bdc6d1;
  }

  .payment__item .detail dd a[href*="tel:"] {
    color: #000;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  .payment__item {
    width: calc(50% - 5px);
  }

  .payment__items {
    display: flex;
    width: 100%;
  }

  .payment__item .logo {
    height: 100px;
    border-width: 1px;
  }
  .payment__item .logo:before {
    border-width: 0 0 4px 4px;
  }

  .payment__item .name {
    margin: 6px 2px 0;
  }

  .payment__item .name.large a {
    height: 55px;
  }

  .payment__item .name::before,
  .payment__item .name::after {
    height: 12px;
    right: 16px;
  }

  .payment__item .name a {
    /* line-height: 36px; */
    padding: 10px 0;
  }

  .payment__item .name span {
    padding-left: 9px;
    font-size: 12px;
  }

  .payment__item .detail {
    margin: 0 2px;
    padding: 8px 8px 11px;
  }

  .payment__item .detail dt {
    font-size: 10px;
  }

  .payment__item .detail dt::before {
    width: 12px;
    height: 12px;
    transform: translateY(-54%);
  }

  .payment__item .detail dd {
    margin-top: 1px;
    font-size: 10px;
  }

  .payment__item .detail dl + dl {
    margin-top: 8px;
  }
}
