@charset "utf-8";
/* CSS Document */

body {
  font-family: 'Noto Sans JP', sans-serif;
  padding: 0;
  margin: 0;
}

ul {
  /* list-style: none; */
  /* padding: 0; */
  padding-left: 30px;
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

img {
  width: 100%;
}

p {
  line-height: 1.4;
  margin: 0 auto;
}

.pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.sp_only90 {
  display: none;
}
@media screen and (max-width: 388px) {
  .sp_only90 {
    display: block;
  }
}

/*ヘッダー*/
header {
  background-color: #fff;
  padding: 15px 0;
}

.head-box {
  max-width: 1024px;
  margin: 0 auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: ' ';
  clear: both;
  height: 0;
}

.logo {
  width: 200px;
  float: left;
}

.logo img {
  width: 100%;
}

.head-link {
  float: right;
}
@media screen and (max-width: 767px) {
  header {
    padding: 15px 5px;
    box-sizing: border-box;
  }

  .head-link {
    width: 28%;
  }
  .logo {
    width: 36%;
  }
}
@media screen and (max-width: 399px) {
  .logo {
    width: 36%;
  }
}

/*fv*/

#fv {
  background-color: #f1b16c;
}

.fv-wrap {
  background-image: url('../img/fv-deco.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 4em;
  padding-top: 4em;
  margin: 0 auto;
  padding: 4em 10px;
}

.fv-container {
  max-width: 800px;
  margin: 0 auto;
}

.yellow-title {
  position: relative;
  color: #ffec67;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  display: table;
  margin: 0 auto 20px;
}

.yellow-box {
  position: relative;
}

.yellow-box::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  background-image: url('../img/yellow-title-deco.png');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 480px;
  height: 50px;
}

@media screen and (max-width: 767px) {
  .yellow-box::before {
    background-image: url('../img/yellow-title-deco_sp.png');
    width: 100%;
    height: auto;
    padding-top: 18.86%;
    top: 13px;
    bottom: auto;
  }
}

.title-img {
  max-width: 770px;
  margin: 0 auto;
  width: 100%;
}

.fv-head {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 26px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .fv-head {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fv-title {
  text-align: center;
}

.fv-title-01 {
  display: inline-block;
  width: 372px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .fv-title-01 {
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/*ポイント*/

.point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .point-list {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 40px;
  }
}

.listBlock {
  background-color: #fff;
  border: solid #3d37a2 5px;
  border-radius: 0 0 30px;
  padding: 16px 0 26px;
}

.listTitle {
  color: #3d37a2;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}

.listTxt {
  color: #2a2a2a;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6em;
  margin-top: 5px;
}

.list-pink {
  font-size: 32px;
  color: #e34e93;
}

.list-pink small {
  font-size: 26px;
}

.listSmall {
  color: #3d37a2;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  line-height: 1em;
  margin-top: 10px;
}

.plusmargin {
  position: relative;
}

/*wave*/
.wave {
  line-height: 0;
  overflow: hidden;
}

/*contents1*/

#contents1 {
  padding-top: 6em;
  padding-bottom: 8em;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  top: -3px;
  background: #fff;
  z-index: 2;
}

.link-btnBox {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.link-btn {
  width: calc((100% - 80px) / 2);
  margin-bottom: 1.4em;
  border-radius: 50px;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.16);
}

.application p {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  padding: 20px 10px;
  color: #fff;
}

.simulation p {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  padding: 20px 10px;
  color: #f1b16c;
}

.application {
  background-color: #f1b16c;
  color: #fff;
  border: solid 4px #f1b16c;

  position: relative;
}

.simulation {
  background-color: #fff;

  border: solid 3px #f1b16c;
  position: relative;
}

.link-btn:hover {
  box-shadow: none;
  transition: all 0.5s;
}

.application p::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.simulation p::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 3px #f1b16c;
  border-right: solid 3px #f1b16c;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

.point-title {
  font-size: 2.2em;
  text-align: center;
  color: #353535;
  font-weight: bold;
  margin-top: 4em;
  margin-bottom: 3em;
}

.fnt-big {
  color: #f1b16c;
  font-size: 1.3em;
}

/*トピック*/

.topic-box {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 6em;
}

.topicTitle-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1100px;
  padding-bottom: 20px;
}

.number {
  font-size: 2.2em;
  text-align: left;
  font-weight: bold;
  line-height: 1.1em;
  border: solid 1.8px #f1b16c;
  padding: 5px 15px;
  color: #f1b16c;
  margin: 0;
}

.topic-title {
  font-size: 2em;
  text-align: left;
  font-weight: bold;
  line-height: 1.1em;

  padding: 5px 15px;
  color: #f1b16c;
  margin: 0;
}

/**img0218**/
.topicTitle-img {
  max-width: 750px;
  width: 100%;
}

.topic-txt {
  font-size: 1.2em;
  text-align: left;
  font-weight: 400;
  line-height: 1.6em;
  padding-top: 20px;
  color: #333333;
  border-top: solid #a1a1a1 1px;
  margin-top: 0.5em;
}

.toEntry {
  max-width: 480px;
  margin: 0 auto;
  background-color: #ffec67;
  border: solid 3px #a55600;
  box-shadow: 7px 8px 0px 0px #a55600;
  cursor: pointer;
  margin-top: 9em;
  position: relative;
}

.toEntry p {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  color: #a55600;
  line-height: 1.8em;
  padding: 20px 10px;
}

.toEntry:hover {
  box-shadow: none;
  transition: all 0.5s;
}

.toEntry::after {
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 30px;
  line-height: 0px;
  font-size: 0px;
  width: 0;
  height: 0;
  border-top: solid 13px transparent;
  border-right: solid 13px transparent;
  border-bottom: solid 13px transparent;
  border-left: solid 13px #a55600;
}

.entrytarget {
  background-color: #f3f3f3;
  padding-top: 2em;
  padding-bottom: 8em;
}

.entrytarget-wrap {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 4em;
}

/*下線タイトル*/
.target-title {
  font-size: 2em;
  font-weight: 600;
  color: #1e1e1e;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  /* display: inline-block; */
  position: relative;
}

.target-title::after {
  content: '';
  width: 75px;
  height: 4px;
  background-color: #f1b16c;
  left: 43%;
  position: absolute;
  bottom: -5px;
}

.target-txt {
  text-align: left;
  font-size: 1.2em;
  line-height: 1.8em;
  color: #333333;
  margin-top: 3em;
}

.target-txt p {
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
  color: #333333;
}

.target-txt2 {
  text-align: left;
  font-size: 1.2em;
  line-height: 1.8em;
  color: #333333;
  margin-top: 3em;
}

.target-txt2 p {
  text-align: left;
  font-size: 1em;
  line-height: 1.8em;
  color: #333333;
}

.target-txt2 a {
  color: #333;
  text-decoration: underline;
}

.overview-btn {
  background-color: #f1b16c;

  border-radius: 50px;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.16);
  max-width: 350px;
  margin: 0 auto;
  margin-top: 3em;
  position: relative;
}

.overview-btn p {
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  line-height: 1.8em;
  padding: 20px 10px;
}

.overview-btn:hover {
  box-shadow: none;
  transition: all 0.5s;
}

.overview-btn p::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: all 0.3s;
}

/*ご融資までの流れ*/

#entryHow {
  background-color: #f1b16c;
  padding: 5em 10px 5em 10px;
}

.entryHow-wrap {
  background-color: #fbcd9a;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5em 2em 5em 2em;
  margin-top: 7em;
}

.entryHow-inner {
  overflow-x: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.step-wrap {
  max-width: 447px;
  margin: 0 15px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.24);
  padding-bottom: 177px;
  margin-bottom: 1em;
}

.circle-arrow {
  position: relative;
}

.circle-arrow:before {
  content: '';
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  border: solid 5px #f1b16c;
  position: absolute;
  top: -433px;
  right: -55px;
  bottom: 0;
  margin: auto;
  z-index: 100;
}
.circle-arrow:after {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 5px #f1b16c;
  border-right: solid 5px #f1b16c;
  transform: rotate(45deg);
  position: absolute;
  top: -434px;
  right: -20px;
  bottom: 0;
  margin: auto;
  z-index: 100;
}

.stepSticker {
  background-color: #ffec67;
  border-radius: 0 0 20px 0;
  padding: 5px 15px;
  display: inline-block;
}

.stepSticker p {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #a55600;
}

.step-title {
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  color: #383838;
}

.step-copy {
  font-size: 1em;
  line-height: 1.6em;
  color: #383838;
  margin-top: 1em;
  font-weight: 500;
}

.slide-img {
  max-width: 205px;
  margin: 0 0 0 auto;
  width: 100%;
  margin-top: 1em;
}

.entry-btn {
  max-width: 350px;
  margin: 0 auto;

  background-color: #ffec67;
  border-radius: 50px;
  margin-top: 1.5em;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.16);
}

.entry-btn p {
  text-align: center;
  color: #a55600;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 10px;
}

.arrow {
  position: relative;
}
.arrow:before {
  content: '';
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
.arrow:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #a55600;
  border-right: solid 2px #a55600;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
  margin: auto;
}

.entry-btn:hover {
  box-shadow: none;
  transition: all 0.5s;
}

.step-notice {
  text-align: left;
  color: #565656;
  font-size: 15px;
  font-weight: 400;
  margin-top: 1em;
}

.gradation-btn {
  max-width: 350px;
  margin: 0 auto;
  background: #f1b16c;
  background: linear-gradient(92deg, #ffe0a6 -36.95%, #f5952c 58.85%), #ffec67;
  border-radius: 50px;
  margin-top: 1.5em;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.16);
}

.gradation-btn p {
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4em;
  padding: 15px 10px;
}

.gradation-btn .arrow:before {
  content: '';
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
.gradation-btn .arrow:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #d35fa5;
  border-right: solid 2px #d35fa5;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
  margin: auto;
}

.gradation-btn:hover {
  box-shadow: none;
  transition: all 0.5s;
}

/*how　タイトル*/
.parallelogram {
  text-align: center;
}

.parallelogram p {
  position: relative;
  display: inline-block;
  padding: 8px 30px;
  color: #a55600;
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.4em;
  text-decoration: none;
  z-index: 10;
  margin: 0 auto;
}

/* 疑似要素に平行四辺形の装飾を指定する */
.parallelogram p::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -10;

  background-color: #f1b16c;
  transform: skewX(35deg);
  margin: 0 auto;
  border-left: solid #a55600 3.5px;
  border-right: solid #a55600 3.5px;
}

.redline {
  background-color: #a55600;
  padding: 1px 0;
  margin-top: -2.5em;
}

.parallelogram-small {
  font-size: 0.8em;
}

/*インフォ*/

#info {
  margin-bottom: 4em;
}

.contact {
  max-width: 1024px;
  margin: 0 auto;
  padding: 50px 10px;
  font-family: 'メイリオ', Osaka, 'ヒラギノ角ゴ Pro W3', 'HiraKakuProN-W3';
}

#sonota {
  padding: 30px 0;
  background-color: #fff;
  margin-bottom: 50px;
}

#sonota a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: auto;
  font-weight: bold;
  color: #fff;
  background: #009370;
  background-size: 8px 8px;
  position: relative;
  line-height: 1.5em;
}

.contact-box {
  border: 1px solid #ddd;
  padding: 30px;
  text-align: center;
}

.contact-box h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  margin-top: 0;
}

.c05 {
  margin-bottom: 30px;
}

.is-sp {
  display: none;
}

.is-pc {
  display: block;
}

.contact-box img {
  text-align: center;
  margin: 15px auto;
  max-width: 382px;
}

#sonota a::after {
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 15px;
  line-height: 0px;
  font-size: 0px;
  width: 0;
  height: 0;
  border-top: solid 10px transparent;
  border-right: solid 10px transparent;
  border-bottom: solid 10px transparent;
  border-left: solid 10px #fff;
}

.contact-inner {
  position: relative;
  max-width: 475px;
  margin: 0 auto;
}

.shinchan {
  max-width: 80px;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  right: -88px;
  top: 0px;
}

.shinchan2 {
  max-width: 77px;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  left: -88px;
  top: 0px;
}

.shinchan img {
  width: 100%;
}

.shinchan2 img {
  width: 100%;
}

.list-bold {
  font-weight: 600;
  font-size: 1.1em;
}

.target-txt p {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}
.target-txt p::before {
  content: '※';
}

.target-txt2-normal {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.step-notice {
  padding-left: 1em;
  text-indent: -1em;
}
.step-notice::before {
  content: '※';
}

/*下線 波*/
.waveline {
  text-underline-offset: 0.2em;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #ffec67;
  padding-top: 4px;
  text-decoration-thickness: 3px;
}

/*footer*/

footer {
  background-color: #444;
  padding: 30px 0;
}

footer p {
  text-align: center;
  color: #fff;
  font-size: 1em;
  line-height: 1.5em;
  font-family: 'メイリオ', Osaka, 'ヒラギノ角ゴ Pro W3', 'HiraKakuProN-W3';
}

@media screen and (max-width: 1030px) {
  .plusmargin::after {
    bottom: -33%;
  }
}

@media screen and (max-width: 999px) {
  .yellow-box::after {
    width: 50px;
    height: 43px;
  }

  .listTxt {
    padding: 5px;
  }

  .listTitle {
    font-size: 1.2em;
  }

  .listTxt {
    font-size: 1.45em;
  }
}

@media screen and (max-width: 824px) {
  .listTxt {
    font-size: 1.3em;
  }
}

/*sp*/
@media screen and (max-width: 768px) {
  .fv-wrap {
    background-image: url('../img/fv-deco_sp.png');
    padding: 55px 0 150px;
  }

  .fv-title {
    padding: 0 16px;
  }

  .fv-inner {
    display: block;
  }

  .yellow-title {
    font-size: 32px;
  }

  .title-img {
    width: 94%;
  }

  .fv-right {
    width: 55%;
    margin: 0 auto;
  }

  .listTitle {
    font-size: 1.2em;
  }

  .listTxt {
    padding: 5px 2px;
    font-size: 1.3em;
  }

  .listSmall {
    font-size: 1em;
  }

  .w-sp {
    width: 56%;
  }

  .link-btn {
    width: calc((100% - 20px) / 1);
  }

  .application p {
    font-size: 1.1em;
  }

  .simulation p {
    font-size: 1.1em;
  }

  .point-title {
    font-size: 1.8em;
  }

  .number {
    font-size: 24px;
    line-height: 1.3em;
  }

  .topic-title {
    font-size: 20px;
    line-height: 1.7em;
  }

  .wave {
    margin-top: -50px;
  }

  .waveline {
    text-underline-offset: 0.2em;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #ffec67;
    padding-top: 4px;
    text-decoration-thickness: 3px;
  }

  .topic-txt {
    font-size: 1.1em;
    line-height: 1.8em;
  }

  .toEntry {
    width: 90%;
  }

  .toEntry p {
    font-size: 1.3em;
  }

  .toEntry::after {
    right: 10px;
    top: 28px;

    border-top: solid 10px transparent;
    border-right: solid 10px transparent;
    border-bottom: solid 10px transparent;
    border-left: solid 10px #a55600;
  }

  .entrytarget {
    padding-left: 10px;
    padding-right: 10px;
  }

  .target-title {
    font-size: 1.6em;
  }

  .target-txt p {
    font-size: 1em;
    line-height: 1.9em;
  }

  .target-txt2 p {
    font-size: 1em;
    line-height: 1.9em;
  }

  .overview-btn p {
    font-size: 1.2em;
  }

  .parallelogram p {
    font-size: 1.4em;
    padding: 8px 12px;
  }

  .parallelogram p::before {
    border-left: solid #a55600 3px;
    border-right: solid #a55600 3px;
  }

  #entryHow {
    padding: 3em 0;
  }

  .entryHow-wrap {
    padding: 5em 1em 5em 1em;
    margin-top: 5em;
  }

  .step-wrap {
    padding: 11px 11px 7em 11px;
    margin: 0 4px;
  }

  .stepSticker p {
    font-size: 1em;
  }

  .step-title {
    font-size: 1.3em;
  }

  .entry-btn p {
    font-size: 1.1em;
  }

  .step-notice {
    font-size: 0.9em;
  }

  .gradation-btn p {
    font-size: 1em;
  }

  .slide-img {
    width: 50%;
  }

  .shinchan {
    right: 0%;
    top: 228px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  .shinchan2 {
    left: 36%;
    top: 228px;
    right: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  .contact-box {
    padding: 30px 30px 8em 30px;
  }

  footer p {
    font-size: 0.8em;
  }

  .circle-arrow:before {
    content: '';
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: solid 4px #f1b16c;
    position: absolute;
    top: -433px;
    right: -22px;
    bottom: 0;
    margin: auto;
    z-index: 100;
  }
  .circle-arrow:after {
    content: '';
    width: 15px;
    height: 15px;
    border: 0;
    border-top: solid 4px #f1b16c;
    border-right: solid 4px #f1b16c;
    transform: rotate(45deg);
    position: absolute;
    top: -434px;
    right: -5px;
    bottom: 0;
    margin: auto;
    z-index: 100;
  }

  .topmargin {
    margin-top: 2.5em;
  }

  .plusmargin::after {
    bottom: -33%;
  }
}

@media screen and (max-width: 440px) {
  .shinchan {
    right: -16%;
    top: 228px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  .shinchan2 {
    left: 29%;
    top: 228px;
    right: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}

@media screen and (max-width: 410px) {
  .listTitle {
    font-size: 0.9em;
  }

  .listTxt {
    padding: 5px 2px;
    font-size: 1em;
  }

  .listSmall {
    font-size: 0.9em;
  }

  .yellow-box::after {
    width: 44px;
    height: 40px;
    left: 5px;
    top: 86px;
  }

  .plusmargin::after {
    bottom: -36%;
  }
}

@media screen and (max-width: 400px) {
  .plusmargin::after {
    bottom: -38%;
    font-size: 0.6em;
  }
}

/*マーカー*/
.marker {
  background: linear-gradient(transparent 60%, #ffeb5f 40%);
  display: inline;
  background-size: 100% 100%;
}

@media screen and (max-width: 768px) {
  .marker {
    background: linear-gradient(transparent 65%, #ffeb5f 35%);
  }
}

/*****プレゼントキャンペーンバナー******/
.cp-banner {
  max-width: 28vw;
  width: 100%;
  position: fixed;
  right: 0;
  z-index: 100;
  bottom: 3vh;
  box-shadow: -5px 6px 15px -9px #777777;
}

@media screen and (max-width: 1300px) {
  .cp-banner {
    max-width: 39vw;
  }
}

@media screen and (max-width: 1140px) {
  .cp-banner {
    max-width: 45vw;
  }
}

@media screen and (max-width: 768px) {
  .cp-banner {
    bottom: 0%;
    top: auto;
    max-width: 100vw;
    box-shadow: 0px -5px 15px -9px #777777;
  }

  footer {
    margin-bottom: 17%;
  }
}
