@charset "UTF-8";
/* ------------------------
index 入出金・振替方法 
-------------------------*/
.panel {
  overflow: hidden;
  border: 1px solid var(--color-gray-secondary);
  border-radius: 3px;
  background-color: var(--color-white);
  box-shadow: 0px 1px 0px 0px rgba(162, 173, 183, 0.2);
  text-decoration: none;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.panel-text {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.panel:hover .panel-text {
  color: var(--color-rich-black);
  background-color: var(--color-ui-blue-light);
}
.panel:hover .panel-text b {
  color: var(--color-blue-primary);
}
.badge-wrap {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0 0 14px;
  gap: 8px;
}
.badge-wrap li {
  padding: 0;
}
.m-icon_badge:where(.-step,.-reason,.-ghost) {
  font-size: 1.3rem;
  min-height: 27px;
  width: auto;
  padding: 0 16px;
}
.m-icon_badge.-red { background-color: var(--color-sysstat-during); }
.m-icon_badge.-blue { background-color: var(--color-blue-secondary);}
.m-icon_badge.-gray { background-color: var(--color-gray-quinary); }

@media (max-width: 767.98px) {
  .panel {
    padding: 25px 14px 0;
  }
  .panel img {
    max-width: 262px;
    margin: auto;
  }
  .panel-text {
    margin: 0 -14px 0;
    padding: 16px 14px 8px;
  }
  .panel-text b {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .panel {
    padding: 20px 26px 0;
  }
  .panel-text {
    margin: 0 -26px 0;
    padding: 16px 26px 20px;
  }
  .panel-text b {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

/* ------------------------
deposit 入金 
-------------------------*/
.deposit_img { position: relative; }
.deposit_img a {
  position: absolute;
  left: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
.deposit_img .sokuji {
  top: 15%;
  width: 50%;
  height: 30.16%;
}
.deposit_img .furikomi {
  top: 45.16%;
  width: 31%;
  height: 36.77%;
}
.border-list {
  margin-bottom: 10px;
  margin-block: 0;
  padding-bottom: 6px;
}
.border-list dt {
  font-weight: bold;
}
.border-list dt ,
.border-list dd {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.border-list + .border-list {
  border-top: solid 1px var(--color-gray-secondary);
  padding-top: 10px;
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .border-list dt { margin-bottom: 4px; }
  .m-table_basic th { text-align: center; }
  .m-table_basic td { text-align: left; }
}
.m-icon_link:where(:not(.-before)):where(:not(:empty))::after {
  margin-left: .5em;
}
/* 即時入金サービス提携金融機関 */
.bank-list figure {
  text-align: center;
  margin: 0 auto 12px;
}
.bank-list .m-btn_normal {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767.98px) {
  .bank-list figure img { width: 150px; }
}
@media (min-width: 768px) {
  .bank-list figure img { width: 150px; }
  .bank-list figure + a { font-size: 14px; }
}

/* ------------------------
transfer 振替 
-------------------------*/
.m-icon_square {
  padding-right: 8px;
}
.icon_list {
  border: solid 1px var(--color-gray-tertiary);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  line-height: 1.2;
}
.icon_list li {
  padding: 0;
}
@media (max-width: 767.98px) {
  .m-icon_square {
    --icon-width: 24px;
  }
  .icon_list {
    padding: 16px;
    gap: 16px 0;
  }
  .icon_list li {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .m-icon_square {
    --icon-width: 32px;
  }
  .icon_list {
    width: 888px;
    margin: 24px 0 0;
    padding: 24px 30px;
    gap: 20px 24px;
  }
  .icon_list li:nth-child(1),
  .icon_list li:nth-child(4) {
    width: 230px;
  }
  .icon_list li:nth-child(2), 
  .icon_list li:nth-child(5) {
    width: 208px;
  }
}
