<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*---------------------------------
  to-customers
---------------------------------*/
.account__to-customers {
  margin-top: 82px;
}

@media (max-width: 767px) {
  .account__to-customers {
    padding: 0 15px;
    margin-top: 40px;
  }
}

.account__to-customers__box {
  position: relative;
  padding: 40px;
  border: 6px solid #e62320;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .account__to-customers__box {
    padding: 20px 28px;
    border: 2px solid #e62320;
    border-radius: 10px;
  }
}

.account__to-customers__heading {
  position: absolute;
  top: -28px;
  left: 50%;
  padding: 0 20px;
  font-size: 30px;
  color: #e62320;
  white-space: nowrap;
  background: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .account__to-customers__heading {
    top: -16px;
    padding: 0 3px;
    font-size: 18px;
  }
}

.account__to-customers__text {
  font-size: 24px;
  font-weight: bold;
}

.account__to-customers__text span {
  color: #e62320;
}

@media (max-width: 767px) {
  .account__to-customers__text {
    font-size: 12px;
  }
}

.account__to-customers__notes {
  margin-top: 10px;
}

.account__to-customers__notes li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 16px;
  font-size: 14px;
  font-weight: normal;
  color: #7d7d7d;
}

@media (max-width: 767px) {
  .account__to-customers__notes li {
    font-size: 10px;
  }
}

.account__to-customers__notes li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '※';
}

/*---------------------------------
  using
---------------------------------*/
.account__using {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .account__using {
    padding: 0 15px;
    margin-top: 24px;
  }
  .account__using .inner-m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.account__using__heading {
  margin-top: 30px;
  font-size: 26px;
  text-align: center;
}

@media (max-width: 767px) {
  .account__using__heading {
    margin-top: 20px;
    font-size: 18px;
  }
}

.account__using__notes {
  padding: 20px;
  margin: 20px 0 30px;
  color: #656d73;
  text-align: left;
  background: #fff;
}

@media (max-width: 767px) {
  .account__using__notes {
    margin: 15px 0 20px;
  }
}

.account__using__notes li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .account__using__notes li {
    padding-left: 11px;
    font-size: 11px;
  }
}

.account__using__notes li:not(:first-of-type) {
  margin-top: 10px;
}

.account__using__notes li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: '※';
}

/*---------------------------------
  apply
---------------------------------*/
.account__apply {
  position: relative;
  width: 100%;
  height: 124px;
}

@media (max-width: 767px) {
  .account__apply {
    height: 68px;
  }
}

.account__apply__bg {
  width: 100%;
  height: 124px;
  background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .account__apply__bg {
    height: 68px;
  }
}

.account__apply__bg.fixed {
  position: fixed;
  top: 69px;
  z-index: 99;
}

@media (max-width: 767px) {
  .account__apply__bg.fixed {
    top: 52px;
  }
}

.account__apply__inner-pc {
  position: absolute;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding-top: 20px;
  margin: 0 auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .account__apply__inner-pc {
    display: none;
  }
}

.account__apply__inner-sp {
  display: none;
}

@media (max-width: 767px) {
  .account__apply__inner-sp {
    position: absolute;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 10px 15px;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.account__apply__inner-sp form {
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 48px;
  margin: 0 auto;
}

.account__apply__inner-sp form::before {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 10;
  width: 11px;
  height: 6px;
  pointer-events: none;
  content: '';
  background: url(/ep/support/images/ico-arrow-down.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.account__apply__inner-sp select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0 40px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  text-align: center;
  text-align: -webkit-center;
  background: #f5f5f5;
  border: 4px solid #f5f5f5;
  border-radius: 10px;
  outline: none;
  -webkit-box-shadow: 0 4px 0 #555;
  box-shadow: 0 4px 0 #555;
}
@media (max-width: 320px){
  .account__apply__inner-sp select{
    font-size: 13px;
  }
}

.account__apply__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc((100% - 60px) / 4);
  height: 80px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.333;
  color: #555555;
  text-align: center;
  background: #f5f5f5;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 0 #b5b5b5;
  box-shadow: 0 4px 0 #b5b5b5;
}

@media (max-width: 1140px) {
  .account__apply__button {
    font-size: 1.5vw;
  }
}

.account__apply__button:link {
  color: #555555;
}

.account__apply__button::after {
  position: absolute;
  right: 16px;
  width: 12px;
  height: 7px;
  content: '';
  background: url(/ep/support/images/icon_arrow_down.svg) no-repeat center center;
  background-size: contain;
}

.account__apply__button:hover {
  color: #555555;
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

/*---------------------------------
  internet
---------------------------------*/
@media (max-width: 767px) {
  .account__internet .lead br {
    display: none;
  }
}

.account__internet .btn-wrap {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .account__internet .btn-wrap {
    margin-top: 30px;
  }
}

/*---------------------------------
  bank
---------------------------------*/
.account__financial__wrap{
  position: relative;
  padding: 10px 15px 30px;
  margin-top: 10px;
  border: 1px solid #555555;
}
.account__financial__lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.account__financial__item{
  border-bottom: 1px solid #d2d2d2;
  width: 49%;
}

.account__financial__item &gt; a {
  position: relative;
  padding-left: 16px;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  cursor: pointer;
}
.account__financial__item &gt; a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 6px;
  margin-top: -2px;
  content: '';
  background: url(/ep/support/images/icon_arrow_down.svg) no-repeat center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/*---------------------------------
  mail
---------------------------------*/
.account__mail__financial {
  max-width: 1180px;
  margin: 40px auto 0;
}

@media (max-width: 767px) {
  .account__mail__financial {
    margin: 20px auto 0;
  }
}

.account__mail__financial__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .account__mail__financial__tab {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.account__mail__financial__tab &gt; li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 360px;
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  color: #555555;
  background: #f5f5f5;
  border-radius: 15px 15px 0 0;
}

@media (max-width: 767px) {
  .account__mail__financial__tab &gt; li {
    width: calc(170 / 345 * 100%);
    height: 50px;
    font-size: 11px;
    text-align: center;
  }
}

.account__mail__financial__tab &gt; li.active {
  position: relative;
  width: 360px;
  height: 103px;
  color: #fff;
  background: #555555;
}

@media (max-width: 767px) {
  .account__mail__financial__tab &gt; li.active {
    width: calc(160 / 345 * 100%);
    height: 60px;
  }
}

.account__mail__financial__tab &gt; li.active::after {
  position: absolute;
  bottom: -26px;
  left: 50%;
  z-index: 1;
  display: block;
  width: 0;
  content: '';
  border-color: #555555 transparent;
  border-style: solid;
  border-width: 21px 32px 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .account__mail__financial__tab &gt; li.active::after {
    bottom: -24px;
  }
}

@media (min-width: 768px) {
  .account__mail__financial__tab &gt; li:not(:first-of-type) {
    margin-left: 26px;
  }
}

.account__mail__financial__tab:hover {
  cursor: pointer;
}

.account__mail__financial__tab-contents {
  padding: 60px 40px 40px;
  border: 5px solid #555555;
}

@media (max-width: 767px) {
  .account__mail__financial__tab-contents {
    padding: 50px 20px 30px;
    border: 3px solid #555555;
  }
}

.account__mail__financial__tab-contents &gt; li {
  display: none;
}

.account__mail__financial__tab-contents &gt; li.show {
  display: block;
}

.account__mail__financial__tab-contents &gt; li:nth-of-type(2) &gt; p {
  font-size: 20px;
  font-weight: bold;
  color: #555555;
}

@media (max-width: 767px) {
  .account__mail__financial__tab-contents &gt; li:nth-of-type(2) &gt; p {
    font-size: 16px;
  }
}

.account__mail__financial__tab-contents &gt; li:nth-of-type(2) .btn-wrap {
  margin-top: 30px;
}

.account__mail__financial__tab-contents .account__financial {
  padding: 0;
  margin: 0;
  border: none;
}

.account__mail__financial__tab-contents .btn-wrap {
  margin-top: 25px;
}

/*---------------------------------
  window
---------------------------------*/
.account__window {
  padding: 0 0 20px;
  border-top: 1px dotted #f0f1f4;
}

@media (max-width: 767px) {
  .account__window {
    padding: 0 15px 20px;
  }
}

/*---------------------------------
  2023.05.31 追加
---------------------------------*/

.inner-s__contents__text {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #555555;
  padding-top: 2%; 
  margin-bottom: -1%; 
  text-align: center;
}

@media (max-width: 767px) {
  .inner-s__contents__text {
    margin-bottom: 25px;
    font-size: 16px;
    padding-top: 4%; 
    margin-bottom: -3%; 
    text-align: center;
  }
}

.account__lower-part {
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  margin-top: 0px;
  background: #f9f9f9;
}

/*---------------------------------
  2024.11.22 追加 
---------------------------------*/

.account__apply__button--recommend {
  position: absolute;
  display: block;
  padding: 7px 10px;
  min-width: 140px;
  max-width: 100%;
  color: #fff;
  font-size: 11px;
  background: #fb929e;
  border-radius: 15px;
  top: -13px;
}

.account__apply__button--recommend:before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 6px);
  border: 6px solid transparent;
  border-top: 6px solid #fb929e;
}

.lead--container {
  margin-top: 15px;
}

.btn-wrap.btn-wrap--spaced {
  margin-top: 40px;
}

.account__using__notes li.not-before {
  padding-left: 0;
  width: 100%;
}

.account__using__notes li.not-before::before {
  display: none;
}

.account__using__table {
  border-collapse: collapse;
  width: 100%;
  color: #333;
}

.account__using__table th,
.account__using__table td {
  text-align: center;
  border: solid 1px #333333;
  height: 4em;
}

.account__using__table--small-text {
  font-size: 14px;
}

.account__using__table--bold-text {
  font-weight: 600;
}

.account__using__table--row-header {
  background-color: #b5b5b5;
}

.account__using__table--columu-header {
  font-weight: 400;
}

/* 横スクロール用 */
.icon-scroll {
  display: none;
}
@media screen and (max-width: 600px) {

  .account__using__table {
    width: 600px;
  }

  .account__using__table--container {
    overflow-x: scroll;
  }

  .account__using__table--small-text {
    font-size: 9px;
  }

  .icon-scroll {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: block;
    z-index: 10;
  }
  .icon-scroll .icon-scroll-bg {
    position: relative;
    background-color: #000;
    opacity: .4;
    width: 100px;
    height: 100px;
    border-radius: 10px;
  }
  .icon-scroll .icon-scroll-img-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    overflow: hidden;
  }
  .icon-scroll .icon-scroll-img-wrapper .icon-scroll-img {
    display: block;
    width: auto;
    height: 48px;
    animation: slideFinger 1.3s infinite linear 0.5s;
    z-index: 1;
  }
  .icon-scroll .icon-scroll-img-wrapper .icon-scroll-text {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    z-index: 1;
  }
}


/* スクロール用アイコンアニメーション設定 */
@keyframes slideFinger {
  0% {
    transform: translateX(50px);
    opacity: 1;
  }
  80% {
    opacity: .7;
  }
  100% {
    transform: translateX(10px);
    opacity: 0;
  }
}

/* 20250723 WEBG_BPJ-4403 【実装】有人カテCD流入増加施策＿コーディング */

.lead__annotation {
  display: flex;
  justify-content: center;
  font-size: 14px;
  padding-top: 20px;
}

.lead__annotation::before {
  content: "※";
}</pre></body></html>