@charset "utf-8";

.c-042 {
  flex-direction: row-reverse;
}

.c-026 {
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  .c-042 {
    flex-direction: column;
  }

  .c-026 {
    margin: 60px 0 10px;
  }
}

.c-100 {
  margin: 30px 0 16px;
}

.c-011>li {
  margin-top: 10px;
}

/* 利用可能ATMおよび取扱時間 */
.c-005 a {
  display: block;
  padding-left: 16px;
}

/* ATM操作方法 */
.circle-list-preparation {
  font-weight: 700;
  letter-spacing: 0.075em;
  background-color: #e4f1f9;
  padding: 5px;
}

.circle-list {
  counter-reset: my-counter;
  margin: 0;
  padding: 0;
  list-style: none;
}

.circle-list>li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.5;
}

.circle-list>li {
  margin-top: 15px;
}

.circle-list>li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  top: 5px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: #fff;
  font-size: 70%;
  line-height: 1;
}

.circle-list-note {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.875rem;
}

/* かんたん4ステップ */
.atm-flow-section {
  margin: 30px 0;
  padding: 30px;
  border: 2px solid #8bc4ff;
  border-radius: 10px;
}

.atm-flow-title {
  padding: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  background-color: #e4f1f9;
}

.atm-flow-note {
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
}

.atm-step-border {
  margin: 30px 0 10px;
  border-top: 1.5px solid #e4f1f9;
  /* border-top: 1px dotted #2277d1; */
}


@media screen and (max-width: 768px) {
  .circle-list-preparation {
    padding: 16px;
  }

  .atm-flow-title {
    font-size: 1.125rem;
  }
}

.atm-flow-list {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12px;
}

.atm-dot-line {
  border-bottom: 2px solid #e4f1f9;
  padding-bottom: 32px;
  margin-bottom: 16px;
}

.atm-flow-item {
  position: relative;
  width: calc((100% - 90px) / 4);
  text-align: center;
}

.atm-flow-icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 120px;
  margin: 30px auto;
}

.atm-flow-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.atm-flow-step {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 3px;
  background: #2277d1;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.atm-flow-name {
  margin: 14px 0 0;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
  text-align: start;
}

.atm-flow-item:nth-child(n + 2) .atm-flow-name {
  padding-left: 1em;
  text-indent: -1em;
}

.atm-flow-desc {
  margin: 0;
  color: #222;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

.c-013 .c-011>li::before {
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #fe2725;
}

/* PC・タブレット */
@media (min-width: 768px) {
  .atm-flow-item:not(:first-child) .atm-flow-name::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 10px;
    border-top: 2px solid #8bc4ff;
    border-right: 2px solid #8bc4ff;
    transform: rotate(45deg);
    vertical-align: 1px;
  }
}

/* タブレット：2列 */
@media (min-width: 768px) and (max-width: 1024px) {
  .atm-flow-list {
    flex-wrap: wrap;
    gap: 48px 30px;
  }

  .atm-flow-item {
    width: calc((100% - 30px) / 2);
  }
}

/* SP：縦並び */
@media (max-width: 767px) {
  .c-042 {
    flex-direction: none;
  }

  .atm-flow-section {
    padding: 30px 24px;
  }

  .atm-flow-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 36px;
    margin-top: 24px;
  }

  .atm-flow-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 4px;
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .atm-flow-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 120px;
    height: auto;
    margin: 0;
  }

  .atm-flow-item:last-child .atm-flow-name {
    padding-left: 0;
    text-indent: 0;
  }

  .atm-flow-item:not(:last-child) .atm-flow-name {
    padding-left: 1em;
    text-indent: -1em;
  }

  .atm-flow-step {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .atm-flow-name {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .atm-flow-item:not(:last-child) .atm-flow-name::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 10px;
    border-right: 2px solid #8bc4ff;
    border-bottom: 2px solid #8bc4ff;
    transform: rotate(45deg);
    vertical-align: 3px;
  }

  .atm-flow-item:last-child .atm-flow-name::before {
    content: none;
    display: none;
  }
}

/* ご注意 */
.c-013 .caution-title {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #fe2725;
}