@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Open+Sans:wght@700&display=swap");

/* ----- */
#modal-smcc {
  a.button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 90px;
    padding: 0 40px;
    font-weight: 700;
    color: #003f98;
    white-space: nowrap;
    border: 1.5px solid #003f98;
    border-radius: 56px;
  }
  
  a.button:hover {
    text-decoration: none;
  }
  
  a.button:after {
    content: "";
    background: #003f98;
    height: 15px;
    width: 13px;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    right: 30px;
  }
  
  a.button-blue {
    background: #003f98;
    color: #fff;
    white-space: nowrap;
    border: 1px solid #003f98;
    border-radius: 56px;
    text-decoration: none;
  }
  
  a.button-blue:hover {
    text-decoration: none;
  }
  
  a.button-blue:after {
    content: "";
    background: #ffffff;
    height: 15px;
    width: 13px;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    right: 30px;
  }
  
  img {
    width: 100%;
  }
}

@media all and (max-width: 750px) {
  #modal-smcc {
    a.button {
      font-size: 4.267vw;
      line-height: 12vw;
      padding: 0 5.333vw;
      border: 1.5px solid #003f98;
      border-radius: 7.467vw;
    }
    
    a.button:hover {
      text-decoration: none;
    }
    
    a.button:after {
      height: 2vw;
      width: 1.733vw;
      right: 4vw;
    }
    
    a.button-blue {
      border-radius: 7.467vw;
      text-decoration: none;
    }
    
    a.button-blue:after {
      height: 2vw;
      width: 1.733vw;
      right: 4vw;
    }
    
    img {
      width: 100%;
    }
  }
}

/* ---------- ● kv ---------- */
#modal-smcc {
  #kv {
    padding: 50px 0 0;
  }
  
  #kv-feature {
    position: relative;
  }
  
  #kv .kv-image {
    max-width: 636px;
    margin: auto;
    padding: 0 1em;
  }
  
  #kv .kv-note {
    font-size: 16px;
    max-width: 636px;
    margin: 40px auto;
    padding: 0 33px 0 33px;
    text-align: left;
  }
  
  #kv .kv-text {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 40px;
  }
  
  #kv .kv-text a {
    text-decoration: underline;
    transition: .3s all;
  }
  
  #kv .kv-text a:hover {
    opacity: .5;
  }
  
  #kv .kv-text span {
    font-size: 15px;
  }
  
  #kv .kv-button {
    max-width: 512px;
    margin: 40px auto 60px;
  }
}

@media all and (max-width: 750px) {
  #modal-smcc {
    #kv {
      padding: 6.667vw 0 0;
    }
    
    #kv .kv-image {
      max-width: 84.8vw;
      padding: 0 1em;
    }
    
    #kv .kv-note {
      font-size: 2.133vw;
      max-width: 84.8vw;
      margin: 5.333vw auto;
      padding: 0 4.4vw 0 4.4vw;
    }
    
    #kv .kv-text {
      font-size: 4.267vw;
      margin: 0 0 5.333vw;
      padding: 0 1em;
    }
    
    #kv .kv-text span {
      font-size: 2.3vw;
    }
    
    #kv .kv-button {
      max-width: 68.267vw;
      margin: 5.333vw auto 8vw;
    }
  }
}

/* ---------- ● feature ---------- */
#modal-smcc {
  #feature {
    background: #eceef0;
    position: relative;
    overflow: visible;
    padding: 0 0 210px;
  }
  
  #feature::after {
    content: "";
    background: #eceef0;
    position: absolute;
    height: calc(tan(60deg)* 145px / 2);
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    bottom: -125px;
  }
  
  #feature .feature-list {
    padding: 60px 0 0;
  }
  
  #feature .feature-item {
    width: calc(100% - 60px);
    margin: 0 auto 30px;
    border: 2px solid #004098;
    box-shadow: 4.5px 4.5px 0 rgba(0,0,0,.2);
    background: #fff;
  }
  
  #feature .feature-item__title {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  #feature .feature-item__title-number {
    font-size: 70px;
    font-weight: 700;
    width: 96px;
    height: 96px;
    line-height: 120px;
    text-align: center;
    color: #fff;
    background: #004098;
    margin: 0 30px 0 0;
  }
  
  #feature .feature-item__title-text {
    margin: 20px 0 0;
  }
  
  #feature .feature-item__title-icon {
    position: absolute;
  }
  
  #feature .feature-item__image-logo {
    margin: auto;
  }
  
  #feature .feature-item__note {
    font-size: 16px;
  }
  
  #feature .feature-item__point {
    width: calc(100% - 40px);
    margin: 20px auto;
    border: 3px solid #009744;
    background: #fffbb2;
    border-radius: 20px;
    padding: 40px 30px;
  }
  
  #feature .feature-item__point-note p {
    font-size: 16px;
    text-indent: -1em;
    padding-left: 1em;
  }
  
  #feature .feature-item__list {
    display: flex;
  }
  
  #kv-feature .feature-sticky {
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    pointer-events: none;
  }
  
  #kv-feature .feature-sticky__inner {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #eceef0;
    padding: 0 0 20px;
  }
  
  #kv-feature .feature-sticky__text {
    max-width: 592px;
    margin: 45px 1em 35px;
  }
  
  #kv-feature .feature-button {
    position: relative;
    background: #eceef0;
    width: 100%;
    padding: 0 85px;
    margin: auto;
    pointer-events:auto;
  }
  
  #feature .feature-item--01 .feature-item__title-text {
    max-width: 262px;
  }
  
  #feature .feature-item--01 .feature-item__title-icon {
    right: 10px;
    top: -20px;
    width: 90px;
  }
  
  #feature .feature-item--01 .feature-item__image-logo {
    max-width: 535px;
    margin-top: 55px;
    margin-bottom: 55px;
    padding: 0 1em;
  }
  
  #feature .feature-item--01 .feature-item__note {
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 40px;
  }
  
  #feature .feature-item--01 .feature-item__point-title {
    max-width: 562px;
    margin: auto;
  }
  
  #feature .feature-item--01 .feature-item__point-content {
    max-width: 503px;
    margin: 20px auto 30px;
  }
  
  #feature .feature-item--02 .feature-item__title-text {
    max-width: 490px;
  }
  
  #feature .feature-item--02 .feature-item__content-title {
    max-width: 588px;
    margin: 45px 1em 0;
  }
  
  #feature .feature-item--02 .feature-item__list {
    padding: 40px 40px 50px;
  }
  
  #feature .feature-item--02 .feature-item__list-icon {
    width: 70px;
    margin: 100px 0 0;
    padding: 0 8px;
  }
}

@media all and (max-width: 750px) {
  #modal-smcc {
    #feature {
      padding: 0 0 28vw;
    }
    
    #feature::after {
      height: calc(tan(60deg)* 19.333vw / 2);
      bottom: -16.667vw;
    }
    
    #feature .feature-list {
      padding: 8vw 0 0;
    }
    
    #feature .feature-item {
      width: calc(100% - 8vw);
      margin: 0 auto 4vw;
    }
  
    #feature .feature-item__title-number {
      font-size: 9.333vw;
      width: 16vw;
      height: 16vw;
      line-height: 16vw;
      margin: 0 4vw 0 0;
    }
    
    #feature .feature-item__title-text {
      margin: 1.667vw 0 0;
    }
    
    #feature .feature-item__note {
      font-size: 2.133vw;
    }
    
    #feature .feature-item__point {
      width: calc(100% - 5.333vw);
      margin: 2.667vw auto;
      border-radius: 2.667vw;
      padding: 5.333vw 4vw;
    }
    
    #feature .feature-item__point-note p {
      font-size: 2.133vw;
    }
    
    #kv-feature .feature-sticky__inner {
      padding: 0 0 2.667vw;
    }
    
    #kv-feature .feature-sticky__text {
      width: 78.933vw;
      margin: 6vw auto 4.667vw;
    }
    
    #kv-feature .feature-button {
      padding: 0 11.333vw;
    }
    
    #feature .feature-item--01 .feature-item__title-text {
      width: 40.867vw;
    }
    
    #feature .feature-item--01 .feature-item__title-icon {
      right: 1.333vw;
      top: -2.667vw;
      width: 12.8vw;
    }
    
    #feature .feature-item--01 .feature-item__image-logo {
      width: 71.333vw;
      margin-top: 7.333vw;
      margin-bottom: 7.333vw;
    }
    
    #feature .feature-item--01 .feature-item__note {
      padding-left: 6.667vw;
      padding-right: 6.667vw;
      margin-bottom: 5.333vw;
    }
    
    #feature .feature-item--01 .feature-item__point-title {
      width: 60.933vw;
    }
    
    #feature .feature-item--01 .feature-item__point-content {
      width: 60.067vw;
      margin: 2.667vw auto 4vw;
    }
    
    #feature .feature-item--02 .feature-item__title-text {
      width: 50.333vw;
    }
    
    #feature .feature-item--02 .feature-item__content-title {
      width: 60.4vw;
      margin: 6vw auto 0;
    }
    
    #feature .feature-item--02 .feature-item__list {
      padding: 5.333vw 5.333vw 6.667vw;
    }
    
    #feature .feature-item--02 .feature-item__list-icon {
      width: 9.333vw;
      margin: 13.333vw 0 0;
      padding: 0 1.067vw;
    }
  }
}

/* ---------- ● bank ---------- */
#modal-smcc {
  #bank {
    background: #d7e75b;
    padding: 165px 0 0;
  }
  
  #bank .bank-title {
    max-width: 611px;
    margin: auto;
    padding: 0 1em
  }
  
  #bank .bank-items {
    margin: 45px 0 0;
  }
  
  #bank .bank-item {
    width: calc(100% - 60px);
    margin: 0 auto 30px;
    border: 2px solid #004098;
    box-shadow: 4.5px 4.5px 0 rgba(0,0,0,.2);
    background: #fff;
  }
  
  #bank .bank-item p {
    font-size: 28px;
    margin: 30px 0;
  }
  
  #bank .bank-item p.note {
    font-size: 16px;
  }
  
  #bank .bank-item p + .note {
    margin: -20px 0 0;
  }
  
  .bank-item__content {
    padding: 70px 50px 20px;
  }
  
  .bank-item__logo--olive {
    max-width: 438px;
    margin: auto;
  }
  
  .bank-item__text--01 {
    width: 346px;
    margin: 50px auto;
  }
  
  .bank-item__image--card {
    max-width: 530px;
    margin: 0 auto 30px;
  }
  
  .bank-item__text--02 {
    max-width: 580px;
    margin: 80px auto 40px;
  }
  
  .bank-item__image--graph {
    max-width: 445px;
    margin: auto;
  }
  
  .bank-pr {
    font-size: 30px;
    font-weight: 700;
    padding: 10px 0 40px;
    text-align: center;
  }
  
  .foot-button {
    max-width: 580px;
    margin: 30px auto;
    padding: 0 30px;
  }
}

@media all and (max-width: 750px) {
  #modal-smcc {
    #bank {
      padding: 22vw 0 0;
    }
    
    #bank .bank-title {
      width: 81.467vw;
    }
    
    #bank .bank-items {
      margin: 6vw 0 0;
    }
    
    #bank .bank-item {
      width: calc(100% - 8vw);
      margin: 0 auto 4vw;
    }
    
    #bank .bank-item p {
      font-size: 3.733vw;
      margin: 4vw 0;
    }
    
    #bank .bank-item p.note {
      font-size: 2.133vw;
    }
    
    #bank .bank-item p + .note {
      margin: -2.667vw 0 0;
    }
    
    .bank-item__content {
      padding: 9.333vw 6.667vw 2.667vw;
    }
    
    .bank-item__logo--olive {
      width: 58.4vw;
    }
    
    .bank-item__text--01 {
      width: 46.133vw;
      margin: 6.667vw auto;
    }
    
    .bank-item__image--card {
      width: 60.667vw;
      margin: 0 auto 4vw;
    }
    
    .bank-item__text--02 {
      width: 60.333vw;
      margin: 10.667vw auto 5.333vw;
    }
    
    .bank-item__image--graph {
      width: 59.333vw;
    }
    
    .bank-pr {
      font-size: 4vw;
      padding: 1.333vw 0 5.333vw;
    }
    
    .foot-button {
      width: 77.333vw;
      margin: 4vw auto;
    }
  }
}