@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

html {
  color: #283436;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}
.inner-block.wi-1000 {
  max-width: 1080px;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}

.c-header {
  width: 100%;
  background-color: #fff;
}
.c-header .inner-block {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1920px;
  padding-inline: 20px;
}
.c-header .logo-area {
  padding-block: 25px;
  max-width: 283px;
}

.c-footer {
  background: #0099B3;
  padding-block: 30px;
}
.c-footer .contents-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
}
.c-footer .contents-wrap .logo {
  max-width: 147px;
  width: 100%;
}
.c-footer .contents-wrap .txt,
.c-footer .contents-wrap .copy-right {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.c-footer .contents-wrap .txt {
  margin-block: 20px 25px;
}

.c-ttl01 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.09375;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 40px;
}
.c-ttl01::after {
  position: absolute;
  content: "";
  background-color: #0099B3;
  width: min(80%, 400px);
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-ttl02 {
  font-size: 28px;
  font-weight: 700;
  line-height: 0.8571428571;
  margin-bottom: 40px;
}
.c-ttl02.c-icon-txt::before {
  height: 0.8571428571em;
}

.c-link-txt {
  display: inline-block;
  color: #0099B3;
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration-color 0.3s ease-in-out;
  transition: -webkit-text-decoration-color 0.3s ease-in-out;
  transition: text-decoration-color 0.3s ease-in-out;
  transition: text-decoration-color 0.3s ease-in-out, -webkit-text-decoration-color 0.3s ease-in-out;
}
.c-link-txt:focus-visible {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.c-link-txt.ico-external {
  position: relative;
  padding-right: 1.25em;
}
.c-link-txt.ico-external::before {
  position: absolute;
  content: "";
  background: url("../img/common/ico-external.svg") no-repeat center/contain;
  width: 1em;
  height: 1.5em;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-link-txt.ico-arrow {
  position: relative;
  padding-left: 1.25em;
}
.c-link-txt.ico-arrow::after {
  position: absolute;
  content: "";
  background: url("../img/common/ico-arrow-circle-blue.svg") no-repeat center/contain;
  width: 1em;
  height: 1.5em;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.c-section {
  padding-block: 80px;
}
.c-section.bg-blue {
  background: rgba(231, 243, 249, 0.5);
}
.c-section.bg-green {
  background: rgba(153, 204, 0, 0.2);
}

.c-icon-txt {
  padding-left: 1em;
  display: inline-block;
  position: relative;
}
.c-icon-txt::before {
  position: absolute;
  content: "・";
  color: #0099B3;
  width: 1.1em;
  height: 1.5em;
  top: 0;
  left: 0;
}
.c-icon-txt.ico-big-circle::before {
  content: "●";
  color: currentColor;
}
.c-icon-txt.ico-square::before {
  content: "■";
}
.c-icon-txt.ico-check {
  padding-left: 1.6em;
}
.c-icon-txt.ico-check::before {
  content: "";
  background: url("../img/common/ico-check.svg") no-repeat center/contain;
}
.c-icon-txt.ico-border {
  padding-left: 1.3em;
}
.c-icon-txt.ico-border::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50%, #0099B3));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #0099B3 50%);
  background-position: center;
  background-size: 100% 8px;
  background-repeat: no-repeat;
  width: 1em;
}
.c-icon-txt.ico-caution::before {
  content: "※";
  color: currentColor;
}
.c-icon-txt.ico-caution02 {
  padding-left: 80px;
}
.c-icon-txt.ico-caution02::before {
  content: "";
  background: url("../img/home/img-caution.svg") no-repeat center/contain;
  width: 51px;
  height: auto;
  aspect-ratio: 1;
  bottom: 0;
  left: 20px;
  margin: auto;
}
.c-icon-txt.ico-light {
  padding-left: 154px;
}
.c-icon-txt.ico-light::before {
  content: "";
  background: url("../img/home/img-light.png.webp") no-repeat center/contain;
  max-width: 125px;
  width: 100%;
  height: auto;
  max-height: 160px;
  aspect-ratio: 125/160;
  bottom: 0;
  left: 29px;
  margin: auto;
}

.c-yourbank-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.c-yourbank-wrap img {
  max-width: 200px;
  width: 100%;
}
.c-yourbank-wrap .logo-txt {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.09375;
  color: #007C4B;
}

.c-contents-wrap {
  border: 2px solid #0099B3;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
  background: #FFF;
}
.c-contents-wrap + .c-contents-wrap {
  margin-top: 80px;
}
.c-contents-wrap.green {
  border-color: #9C0;
}
.c-contents-wrap.green > .ttl {
  background: #9C0;
}
.c-contents-wrap > .ttl {
  width: 100%;
  background: #0099B3;
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  padding: 18px;
}
.c-contents-wrap > .ttl:not(.no-icon) {
  padding-inline: 100px;
  position: relative;
}
.c-contents-wrap > .ttl:not(.no-icon)::before {
  position: absolute;
  content: "";
  background: url("../img/common/img-money.png.webp") no-repeat center/contain;
  width: auto;
  height: clamp(80px, 7.4305555556vw, 107px);
  aspect-ratio: 150/107;
  top: 0;
  bottom: 0;
  left: clamp(0rem, -25.364rem + 52.841vw, 11.625rem);
  margin: auto;
}
.c-contents-wrap > .ttl:not(.no-icon).ico-staff::before {
  background-image: url("../img/common/staff-img01.png.webp");
  height: clamp(80px, 12.4107142857vw, 139px);
  aspect-ratio: 140/139;
  top: auto;
  bottom: 0;
  left: clamp(0.625rem, -17.92rem + 38.636vw, 9.125rem);
  margin: auto;
}
.c-contents-wrap > .ttl .big {
  font-size: 48px;
  line-height: 0.75;
}
.c-contents-wrap > .contents-wrap {
  padding: 72px clamp(30px, 5.3571428571vw, 60px);
  border-radius: 8px;
}

.c-desc-txt {
  color: #000;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin-inline: auto;
}

.c-logo-in-text {
  display: inline-block;
  vertical-align: middle;
  margin-inline: 0.25em;
  height: 0.925em;
}

.c-tbl01 {
  width: 100%;
  table-layout: fixed;
}
.c-tbl01 tr {
  border-top: 1px solid #D8D8DB;
}
.c-tbl01 tr:last-child {
  border-bottom: 1px solid #D8D8DB;
}
.c-tbl01 th, .c-tbl01 td {
  padding-block: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.c-tbl01 th {
  padding-left: 8px;
  padding-right: 20px;
  vertical-align: baseline;
  width: 15%;
}
.c-tbl01 td {
  padding-inline: 20px;
  font-weight: 400;
  position: relative;
}
.c-tbl01 td::before {
  position: absolute;
  content: "";
  background: #D8D8DB;
  width: 1px;
  height: calc(100% - 8px);
  top: 4px;
  left: 0;
}
.c-tbl01 td > * + * {
  margin-top: 8px;
}
.c-tbl01 td small {
  font-size: 14px;
}
.c-tbl01 td .c-link-txt::before, .c-tbl01 td .c-link-txt::after {
  height: 1.5em;
}
.c-btn {
  display: inline-block;
  padding-block: 13px;
  padding-inline: 36px 24px;
  border-radius: 100vw;
  background: #EE8800;
  color: #FFF;
  border: 1px solid #EE8800;
  font-size: 20px;
  line-height: 1.2;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.c-btn:focus-visible {
  background: #FFF;
  color: #EE8800;
}
.c-btn .inn-txt {
  padding-right: 2em;
  display: inline-block;
  text-align: center;
  position: relative;
}
.c-btn .inn-txt::after {
  position: absolute;
  content: "";
  background: url("../img/common/ico-arrow-circle.svg") no-repeat center/contain;
  width: 1.2em;
  height: 1.2em;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-btn.bg-blue {
  background: #0099B3;
  border-color: #0099B3;
}
.c-btn.bg-blue:focus-visible {
  color: #0099B3;
}
.c-btn.bg-blue .inn-txt::after {
  background-image: url("../img/common/ico-arrow-circle-blue02.svg");
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section .lead-wrap {
  padding-block: 16px;
  background-color: #0099B3;
}
.home .mv-section .lead-txt {
  font-size: 32px;
  text-align: center;
  color: #FFF;
}
.home .points-section {
  padding-top: 0;
  padding-bottom: 40px;
}
.home .points-section .points .contents-wrap {
  background: -webkit-gradient(linear, left bottom, left top, from(#E0F3F6), to(#FFF)), #E7F3F9;
  background: linear-gradient(0deg, #E0F3F6 0%, #FFF 100%), #E7F3F9;
  background-size: 100% 150px, 100%;
  background-repeat: no-repeat;
  background-position: top center, center;
  padding-block: 32px 60px;
}
.home .points-section .points .top-txt {
  color: #626264;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7142857143;
  position: relative;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 26px;
}
.home .points-section .points .top-txt img {
  -webkit-align-self: end;
      -ms-flex-item-align: end;
          align-self: end;
}
.home .points-section .points .point-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 47px clamp(24px, 3.2142857143vw, 36px);
}
.home .points-section .points .point-wrap .point-list-area,
.home .points-section .points .point-wrap .rec-area {
  border-radius: 8px;
  background: #FFF;
  padding-inline: 24px;
}
.home .points-section .points .point-wrap .point-list-area {
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 3px 3px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 3px 3px rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-block: 23px 30px;
}
.home .points-section .points .point-wrap .point-list-area .point-list {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3636363636;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.home .points-section .points .point-wrap .point-list-area .point-list li::before {
  height: 1.3636363636em;
}
.home .points-section .points .point-wrap .rec-area {
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 4px;
  padding-block: 42px 24px;
}
.home .points-section .points .point-wrap .rec-area::before {
  position: absolute;
  content: "";
  background: url("../img/common/ico-triangle.svg") no-repeat center/contain;
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  width: auto;
  height: 38px;
  aspect-ratio: 139/38;
  top: -23px;
  left: 0;
  right: 0;
  margin: auto;
}
.home .points-section .points .point-wrap .rec-area .logo-area {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.home .points-section .points .point-wrap .rec-area .txt {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4583333333;
  color: #0099B3;
  text-align: right;
}
.home .points-section .points .point-wrap .overlay-area {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 47px clamp(24px, 3.2142857143vw, 36px);
}
.home .bank-each .top-logo-area {
  position: relative;
}
.home .bank-each .top-logo-area + .c-ttl01 {
  margin-top: 64px;
}
.home .bank-each .top-logo-area {
  display: grid;
  grid-template-columns: auto min(80%, 500px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px 24px;
}
.home .bank-each .top-logo-area .txt {
  display: inline-block;
  background-color: #D50000;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  line-height: 1.1;
  padding: 5px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  white-space: nowrap;
}
.home .bank-each .top-logo-area .txt.bg-black {
  background: #414143;
  padding-inline: 12px;
}
.home .bank-each .top-logo-area .c-yourbank-wrap img {
  max-width: 240px;
}
.home .bank-each .c-ttl01 {
  margin-top: 72px;
}
.home .bank-each .c-desc-txt.wi-884 {
  max-width: 884px;
}
.home .bank-each .c-desc-txt.wi-800 {
  max-width: 800px;
}
.home .bank-each .merit-area {
  border-radius: 16px;
  background: #F1F1F4;
  padding: 56px clamp(30px, 6.25vw, 70px);
  display: grid;
  grid-template-columns: 1fr min(30%, 226px);
  grid-template-areas: "list img" "info img";
  gap: 22px clamp(20px, 4.1071428571vw, 46px);
}
.home .bank-each .merit-area .merit-list-area {
  grid-area: list;
  border-radius: 16px;
  background: #FFF;
  padding-block: 29px 35px;
  padding-inline: clamp(10px, 2.6785714286vw, 30px);
}
.home .bank-each .merit-area .merit-list-area .merit-list {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.home .bank-each .merit-area .img-area {
  grid-area: img;
}
.home .bank-each .merit-area .info-area {
  grid-area: info;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}
.home .bank-each .staff-txt-area {
  display: grid;
  grid-template-columns: min(25%, 99px) auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  max-width: 552px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 20px;
}
.home .bank-each .staff-txt-area .txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}
.home .bank-each .video-area {
  max-width: 500px;
  margin-inline: auto;
  margin-block: 24px;
}
.home .bank-each .note-txt {
  max-width: 820px;
  margin-inline: auto;
  display: block;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}
.home .bank-each .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .bank-each .btn-wrap + .note-txt {
  margin-top: 18px;
}
.home .bank-each .btn-wrap .flow-btn {
  width: 100%;
  max-width: 302px;
}
.home .bank-each .flow-list {
  margin-block: 64px 55px;
  max-width: 880px;
  margin-inline: auto;
}
.home .bank-each .flow-list > li + li {
  margin-top: 32px;
}
.home .bank-each .flow-list > li .flow-ttl {
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .bank-each .flow-list > li .logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-align: center;
  margin-block: 22px 14px;
}
.home .bank-each .flow-list > li .logo-area img {
  max-width: 355px;
  width: 100%;
}
.home .bank-each .flow-list > li .logo-area .txt {
  font-size: 18px;
  line-height: 2;
}
.home .bank-each .flow-list > li .logo-area .txt .blue {
  color: #0099B3;
}
.home .bank-each .flow-list > li .download-area {
  border-radius: 10px;
  background: #E7F3F9;
  padding-block: 40px;
  padding-inline: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.home .bank-each .flow-list > li .download-area .ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1666666667;
  color: #0099B3;
}
.home .bank-each .flow-list > li .download-area .qr-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 370px;
}
.home .bank-each .flow-list > li .download-area .qr-wrap .txt {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: #231815;
}
.home .bank-each .flow-list > li .download-area .qr-wrap img {
  border-radius: 10px;
  background: #FFF;
  padding: 10px;
}
.home .bank-each .flow-list > li > .img-area {
  max-width: 318px;
  margin-inline: auto;
  margin-block: 40px 55px;
}
.home .bank-each .flow-list > li .note {
  font-size: 16px;
  line-height: 1.6875;
  color: #000;
}
.home .bank-each .aco-wrap .flow-btn .inn-txt::after {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: rotate;
  transition-property: rotate;
}
.home .bank-each .aco-wrap.is-active .flow-btn .inn-txt::after {
  rotate: -180deg;
}
.home .bank-each.formore .c-desc-txt {
  margin-bottom: 40px;
}
.home .bank-each.formore .formore-img-area {
  max-width: 860px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(16px, 2.7678571429vw, 31px);
  margin-bottom: 40px;
}
.home .bank-each.formore .formore-img-area .img-area {
  text-align: center;
}
.home .bank-each.formore .formore-img-area .img-area .img {
  display: block;
}
.home .about-section {
  color: #626264;
  text-align: left;
}
.home .about-section .ttl,
.home .about-section .list {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.home .about-section .ttl {
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}
.home .about-section .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home .about-section .note-txt {
  font-size: 14px;
  margin-top: 40px;
  display: block;
}
.home .cost-section .ttl-area {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) auto 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.home .cost-section .ttl-area .c-ttl01 {
  margin-bottom: 0;
  padding-bottom: 18px;
  line-height: 1.25;
}
.home .cost-section .ttl-area .c-ttl01::after {
  width: 100%;
}
.home .cost-section .ttl-area .c-ttl01 .blue {
  color: #0099B3;
}
.home .cost-section .ttl-area .c-ttl01 .blue sup {
  font-size: 0.55em;
}
.home .cost-section .ttl-area .note {
  font-size: clamp(16px, 1.6071428571vw, 18px);
  line-height: 1.5;
}
.home .cost-section .top-txt {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 21px;
  color: #000;
}
.home .cost-section .calc-area {
  max-width: 930px;
  margin-inline: auto;
}
.home .cost-section .calc-area .calc-top {
  display: grid;
  grid-template-columns: 1fr min(20%, 156.276px) 1fr;
  gap: 6px;
}
.home .cost-section .calc-area .calc-top .calc-each {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  height: 100%;
  width: 100%;
}
.home .cost-section .calc-area .calc-top .calc-each .note {
  font-size: 18px;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box {
  margin-top: auto;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .ttl {
  background: #39C;
  border-radius: 100vw;
  padding: 15px;
  width: 100%;
  max-width: 226px;
  margin-inline: auto;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -1.25em;
  position: relative;
  z-index: 2;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box {
  border-radius: 8px;
  border: 2px solid #39C;
  background: #FFF;
  padding-block: 50px 24px;
  padding-inline: 16px;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  white-space: nowrap;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt .num {
  font-weight: 700;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt .num.left {
  font-size: clamp(36px, 4.0178571429vw, 45px);
  line-height: 0.8;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt .num.left .small {
  font-size: clamp(20px, 2.6785714286vw, 30px);
  line-height: 1.2;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt .num.right {
  font-size: clamp(45px, 4.9107142857vw, 55px);
  line-height: 0.6545454545;
  color: #EE8800;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt .num.right .small {
  font-size: clamp(32px, 3.5714285714vw, 40px);
  line-height: 0.75;
}
.home .cost-section .calc-area .calc-top .calc-each .calc-box .box .txt > img {
  width: clamp(28px, 3.5714285714vw, 40px);
  margin-inline: clamp(16px, 2.1428571429vw, 24px) clamp(8px, 1.5178571429vw, 17px);
}
.home .cost-section .calc-area .calc-top .plus-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .cost-section .calc-area .calc-top .plus-area .plus {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: #EE8800;
  margin-top: -14px;
}
.home .cost-section .calc-area .calc-bottom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-block: 34px 28px;
}
.home .cost-section .calc-area .calc-bottom .txt {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.125;
  text-align: center;
}
.home .cost-section .calc-area .calc-bottom .txt .num {
  color: #EE8800;
  font-size: 55px;
  line-height: 1.125;
}
.home .cost-section .note-txt {
  font-size: 18px;
  line-height: 1.5;
}
.home .cost-section .top-area > .txt {
  border-radius: 20px;
  background: #0099B3;
  padding-block: 32px 35px;
  padding-right: 55px;
  color: #FFF;
  font-size: clamp(24px, 3.1034482759vw, 36px);
  font-weight: 700;
  line-height: 1.1111111111;
  text-align: center;
  width: 100%;
  display: block;
}
.home .cost-section .top-area > .txt .inn-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.home .cost-section .top-area > .txt .big {
  font-size: clamp(32px, 4.1379310345vw, 48px);
  font-weight: 500;
  line-height: 0.8333333333;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.home .cost-section .top-area > .caution-txt {
  font-size: 24px;
  font-weight: 700;
  line-height: 0.75;
  color: #FFF;
  padding-block: 26px;
  padding-right: 20px;
  border-radius: 35px;
  background: #0099B3;
  margin-top: 40px;
  margin-bottom: 64px;
}
.home .cost-section .c-desc-txt {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 46px;
}
.home .overlay-area {
  position: absolute;
  width: 100%;
  height: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.home .overlay-block {
  display: grid;
  place-items: center;
  padding-inline: 16px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.home .overlay-block .overlay-txt {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pc {
    display: none !important;
  }
  .c-header .logo-area {
    padding-block: 16px;
    max-width: 150px;
  }
  .c-ttl01 {
    margin-bottom: 28px;
    font-size: clamp(18px, 6.4vw, 24px);
    padding-bottom: 16px;
  }
  .c-ttl02 {
    margin-bottom: 28px;
    font-size: clamp(18px, 6.4vw, 24px);
    padding-bottom: 16px;
  }
  .c-section {
    padding-block: 40px;
  }
  .c-icon-txt.ico-caution02 {
    padding-left: 50px;
  }
  .c-icon-txt.ico-caution02::before {
    width: 30px;
    left: 12px;
  }
  .c-icon-txt.ico-light {
    padding-left: clamp(40px, 14.8148148148vw, 80px);
  }
  .c-icon-txt.ico-light::before {
    left: 4px;
    max-width: clamp(40px, 14.8148148148vw, 80px);
    max-height: 100px;
  }
  .c-yourbank-wrap img {
    max-width: clamp(160px, 37.037037037vw, 200px);
  }
  .c-yourbank-wrap .logo-txt {
    font-size: clamp(20px, 5.9259259259vw, 32px);
  }
  .c-contents-wrap + .c-contents-wrap {
    margin-top: 40px;
  }
  .c-contents-wrap > .ttl:not(.no-icon) {
    padding-inline: clamp(50px, 8.4745762712vw, 65px);
  }
  .c-contents-wrap > .ttl:not(.no-icon)::before {
    height: clamp(40px, 9.1666666667vw, 55px);
    top: auto;
    bottom: -2px;
    left: clamp(-0.625rem, -8.295rem + 32.727vw, 5rem);
  }
  .c-contents-wrap > .ttl:not(.no-icon).ico-staff::before {
    height: clamp(60px, 13.3333333333vw, 80px);
    left: clamp(-0.375rem, -17.441rem + 45.509vw, 4.375rem);
  }
  .c-contents-wrap > .ttl {
    font-size: clamp(18px, 4.4vw, 22px);
  }
  .c-contents-wrap > .ttl .big {
    font-size: clamp(24px, 8.5333333333vw, 32px);
  }
  .c-contents-wrap > .contents-wrap {
    padding: 40px 16px;
  }
  .c-desc-txt {
    font-size: 16px;
    text-align: left;
  }
  .c-tbl01 th, .c-tbl01 td {
    font-size: 14px;
  }
  .c-tbl01 th {
    padding-right: 10px;
    width: 30%;
  }
  .c-tbl01 td {
    padding-inline: 10px;
  }
  .c-tbl01 td small {
    font-size: 12px;
  }
  .c-btn {
    font-size: 16px;
    padding-inline: 24px 16px;
  }
  .home .mv-section .lead-wrap {
    padding-block: 8px;
  }
  .home .mv-section .lead-txt {
    font-size: 18px;
  }
  .home .points-section .points .top-txt {
    font-size: clamp(16px, 4.8vw, 18px);
    margin-bottom: 18px;
  }
  .home .points-section .points .point-wrap {
    grid-template-columns: 100%;
    row-gap: 20px;
    max-width: 540px;
    margin-inline: auto;
  }
  .home .points-section .points .point-wrap .point-list-area,
  .home .points-section .points .point-wrap .rec-area {
    padding: 16px;
  }
  .home .points-section .points .point-wrap .point-list-area .point-list {
    font-size: 16px;
    line-height: 1.5;
    gap: 5px;
  }
  .home .points-section .points .point-wrap .rec-area:last-child {
    margin-bottom: 0;
  }
  .home .points-section .points .point-wrap .rec-area {
    margin-bottom: 12px;
  }
  .home .points-section .points .point-wrap .rec-area::before {
    height: 20px;
    top: -10px;
  }
  .home .points-section .points .point-wrap .rec-area .logo-area .logo-neobank {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
    display: block;
  }
  .home .points-section .points .point-wrap .rec-area .txt {
    font-size: 16px;
  }
  .home .points-section .points .point-wrap .rec-area .c-yourbank-wrap {
    justify-self: center;
  }
  .home .points-section .points .point-wrap .overlay-area {
    grid-template-columns: 100%;
  }
  .home .points-section .points .point-wrap .overlay-area .overlay-block {
    height: 40%;
  }
  .home .bank-each .top-logo-area + .c-ttl01 {
    margin-top: 48px;
  }
  .home .bank-each .top-logo-area {
    grid-template-columns: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .home .bank-each .top-logo-area .txt {
    font-size: 16px;
    padding-inline: 18px;
  }
  .home .bank-each .top-logo-area .c-yourbank-wrap img {
    max-width: clamp(180px, 44.4444444444vw, 240px);
    margin-inline: auto;
  }
  .home .bank-each .c-ttl01 {
    margin-top: 56px;
  }
  .home .bank-each .merit-area.explain {
    grid-template-areas: "img" "list";
  }
  .home .bank-each .merit-area {
    padding: 30px 20px;
    grid-template-columns: 100%;
    grid-template-areas: "img" "list" "info";
    row-gap: 20px;
  }
  .home .bank-each .merit-area .merit-list-area {
    padding: 20px 16px;
  }
  .home .bank-each .merit-area .merit-list-area .merit-list {
    font-size: 16px;
  }
  .home .bank-each .merit-area .img-area {
    justify-self: center;
    max-width: 200px;
  }
  .home .bank-each .merit-area .info-area {
    font-size: 14px;
  }
  .home .bank-each .staff-txt-area {
    max-width: 440px;
    grid-template-columns: min(20%, 80px) 1fr;
    gap: 10px;
  }
  .home .bank-each .staff-txt-area .txt {
    font-size: 16px;
  }
  .home .bank-each .note-txt {
    font-size: 14px;
  }
  .home .bank-each .flow-list {
    margin-block: 40px;
  }
  .home .bank-each .flow-list > li .flow-ttl {
    font-size: 16px;
  }
  .home .bank-each .flow-list > li .logo-area .txt {
    font-size: 16px;
  }
  .home .bank-each .flow-list > li .download-area {
    padding-block: 16px;
    padding-inline: clamp(8px, 4.2666666667vw, 16px);
  }
  .home .bank-each .flow-list > li .download-area .ttl {
    font-size: 20px;
  }
  .home .bank-each .flow-list > li .download-area .app-area {
    display: grid;
    grid-template-columns: min(25%, 90px) 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(8px, 4.2666666667vw, 16px);
  }
  .home .bank-each .flow-list > li .download-area .app-area .c-btn {
    max-width: 380px;
    justify-self: center;
    padding-inline: clamp(16px, 6.4vw, 24px) clamp(8px, 4.2666666667vw, 16px);
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
  .home .bank-each .flow-list > li .download-area .qr-wrap {
    gap: 0px;
  }
  .home .bank-each .flow-list > li .download-area .qr-wrap .txt {
    margin-bottom: 8px;
    font-size: clamp(12px, 3.7333333333vw, 14px);
    line-height: 1.4;
  }
  .home .bank-each .flow-list > li > .img-area {
    max-width: 150px;
    margin-block: 20px 30px;
  }
  .home .bank-each .flow-list > li .note {
    font-size: 14px;
  }
  .home .bank-each.formore .c-desc-txt {
    margin-bottom: 32px;
  }
  .home .bank-each.formore .formore-img-area {
    margin-bottom: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
  }
  .home .about-section .ttl,
  .home .about-section .list {
    font-size: 14px;
  }
  .home .about-section .ttl {
    margin-top: 16px;
  }
  .home .about-section .note-txt {
    font-size: 12px;
    margin-top: 30px;
  }
  .home .cost-section .ttl-area .note {
    font-size: 14px;
  }
  .home .cost-section .top-txt {
    font-size: 16px;
  }
  .home .cost-section .calc-area .calc-top {
    grid-template-columns: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
  .home .cost-section .calc-area .calc-top .calc-each .note {
    font-size: 14px;
  }
  .home .cost-section .calc-area .calc-top .calc-each .calc-box .ttl {
    font-size: 16px;
    padding: 12px;
  }
  .home .cost-section .calc-area .calc-top .calc-each .calc-box .box {
    padding-block: 32px 24px;
  }
  .home .cost-section .calc-area .calc-top .plus-area {
    margin-inline: auto;
    margin-top: 4px;
  }
  .home .cost-section .calc-area .calc-top .plus-area img {
    max-height: 50px;
    width: auto;
  }
  .home .cost-section .calc-area .calc-top .plus-area .plus {
    font-size: 50px;
    margin-top: -8px;
  }
  .home .cost-section .calc-area .calc-bottom {
    margin-block: 10px 28px;
  }
  .home .cost-section .calc-area .calc-bottom .txt {
    font-size: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
  }
  .home .cost-section .calc-area .calc-bottom .txt .equal {
    rotate: 90deg;
  }
  .home .cost-section .calc-area .calc-bottom .txt .num {
    font-size: 36px;
  }
  .home .cost-section .note-txt {
    font-size: 16px;
  }
  .home .cost-section .top-area {
    max-width: 500px;
    margin-inline: auto;
  }
  .home .cost-section .top-area > .txt {
    font-size: clamp(14px, 2.962962963vw, 16px);
    padding-block: 20px;
    padding-right: clamp(20px, 2.5862068966vw, 30px);
    margin-inline: auto;
    max-width: 100%;
  }
  .home .cost-section .top-area > .txt .inn-txt {
    gap: 10px;
  }
  .home .cost-section .top-area > .txt .big {
    font-size: clamp(16px, 3.7037037037vw, 20px);
  }
  .home .cost-section .top-area > .caution-txt {
    padding-block: 20px;
    padding-right: 12px;
    font-size: clamp(16px, 1.5517241379vw, 18px);
    margin-block: 16px 28px;
  }
  .home .cost-section .c-desc-txt {
    font-size: 18px;
    margin-bottom: 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .home .overlay-area {
    height: 160%;
  }
  .home .overlay-block .overlay-txt {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1160px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-logo-in-text {
    min-height: 21px;
  }
  .home .points-section .points .contents-wrap {
    padding-inline: clamp(24px, 3.2142857143vw, 36px);
  }
  .home .points-section .points .point-wrap .point-list-area {
    grid-row: 1;
  }
  .home .points-section .points .point-wrap .rec-area {
    grid-row: 2;
    padding-right: 20px;
  }
  .home .points-section .points .point-wrap .rec-area .c-yourbank-wrap {
    padding-left: clamp(0px, 1.4285714286vw, 16px);
  }
  .home .points-section .points .point-wrap .rec-area .c-yourbank-wrap .logo-txt {
    font-size: clamp(20px, 2.8571428571vw, 32px);
  }
  .home .bank-each .top-logo-area .c-yourbank-wrap .logo-txt {
    font-size: 36px;
  }
  .home .bank-each .merit-area.explain {
    grid-template-columns: 1fr min(35%, 250px);
    grid-template-areas: "list img";
    -webkit-column-gap: 22px;
       -moz-column-gap: 22px;
            column-gap: 22px;
    padding-bottom: 36px;
  }
  .home .bank-each .flow-list > li .download-area .app-area .app-icon {
    max-width: 130px;
    margin-block: 16px 20px;
  }
  .home .bank-each.formore .formore-img-area {
    max-height: 210px;
  }
  .home .bank-each.formore .formore-img-area .img-area img {
    height: 100%;
    width: auto;
  }
  .home .cost-section {
    padding-bottom: 88px;
  }
}
@media (any-hover: hover) {
  .c-link-txt:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .c-btn:hover {
    background: #FFF;
    color: #EE8800;
  }
  .c-btn.bg-blue:hover {
    color: #0099B3;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .js--scroll-item {
    opacity: 0;
    translate: 0 20px;
    -webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
  }
  .js--scroll-item.is-shown {
    opacity: 1;
    -webkit-animation: scroll-blur 0.6s 0.2s forwards;
            animation: scroll-blur 0.6s 0.2s forwards;
  }
  @-webkit-keyframes scroll-blur {
    100% {
      translate: 0 0;
    }
  }
  @keyframes scroll-blur {
    100% {
      translate: 0 0;
    }
  }
}
@media only screen and (max-width: 767px) and (max-width: 330px) {
  .home .points-section .points .point-wrap .overlay-area .overlay-block {
    height: 36%;
  }
}
@media only screen and (max-width: 1000px) {
  .home .cost-section .ttl-area {
    grid-template-columns: 100%;
    max-width: 610px;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 16px;
  }
  .home .cost-section .ttl-area .note {
    justify-self: end;
  }
}
@media only screen and (min-width: 1001px) {
  .home .cost-section .ttl-area .c-ttl01 {
    grid-column: 2;
  }
  .home .cost-section .ttl-area .note {
    grid-column: 3;
    align-self: center;
  }
}