.ch {
  position: relative;
}

.ch-img {
  position: absolute;
  width: 100%;
  height: 350px;
  background-color: #000;
  z-index: -1;
}

.ch-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.ch-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  max-width: 1100px;
  margin: 0 auto;
}

.ch-board {
  position: relative;
  top: 25%;
  left: 0;
  width: 350px;
  background-color: #fff;
  text-align: center;
  padding: 40px 0 45px 0;
}

@media screen and (max-width: 600px) {
  .ch-board {
    left: calc((100% - 300px) / 2);
    width: 280px;
  }
}
.ch-board::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #1bb3e0;
  z-index: -1;
}

.ch-tit {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background-image: linear-gradient(to left, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .ch-tit {
    font-size: 20px;
  }
}
.ch-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .ch-tit p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.ch-img img {
  -o-object-position: 50% 25%;
     object-position: 50% 25%;
}

@media screen and (max-width: 600px) {
  .ch-img img {
    -o-object-position: 40% 15%;
       object-position: 40% 15%;
  }
}
.expenses {
  max-width: 1100px;
  margin: 0 auto;
  padding: 85px 0 70px;
}

@media screen and (max-width: 600px) {
  .expenses {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .expenses {
    margin: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .expenses {
    padding: 60px 0;
  }
}
.expenses-tit {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .expenses-tit {
    font-size: 18px;
  }
}
.expenses-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .expenses-tit p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.expenses-tit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
}

.expenses-txt {
  text-align: center;
}

.expenses-grid {
  display: grid;
  grid-template-columns: calc((100% - 60px) / 3) 1fr;
  gap: 30px;
  margin-top: 35px;
}

@media screen and (max-width: 600px) {
  .expenses-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 10px;
  }
}
.expenses-grid_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media screen and (max-width: 600px) {
  .expenses-grid_inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.expenses-label {
  color: #fff;
  background-color: #1bb3e0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  margin-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .expenses-label {
    margin-bottom: 30px;
  }
}
.expenses-center,
.expenses-left {
  position: relative;
  border: 3px solid;
  border-radius: 20px;
  padding: 15px 20px;
}

@media screen and (max-width: 600px) {
  .expenses-center {
    padding: 15px 0;
  }
}
.expenses-center::before,
.expenses-center::after,
.expenses-left::before,
.expenses-left::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.expenses-center::after,
.expenses-left::after {
  bottom: -22px;
  border-top: 30px solid #fff;
}

.expenses-center label,
.expenses-left label {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100vh;
  padding: 0 50px;
}

.expenses-center h3,
.expenses-left h3 {
  font-weight: bold;
  letter-spacing: 1px;
}

.expenses-center h3 span,
.expenses-left h3 span {
  font-family: "Jost", sans-serif;
}

.expenses-center p,
.expenses-left p {
  font-size: 10px;
  line-height: 18px;
}

.expenses-center {
  text-align: center;
  border-color: #777;
}

.expenses-center::before {
  border-top: 30px solid #777;
}

.expenses-center label {
  background-color: #777;
}

.expenses-center h3 {
  font-size: 14px;
  margin: 12px 0 5px;
}

.expenses-center h3 span {
  font-size: 30px;
}

.expenses-left {
  height: 171px;
  border-color: #1bb3e0;
}

.expenses-left::before {
  border-top: 30px solid #1bb3e0;
}

.expenses-left label {
  background-color: #1bb3e0;
}

.expenses-left h3 {
  margin: 22px 0 5px 4px;
}

.expenses-left h3 span {
  font-size: 34px;
}

.expenses-left p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.expenses-left p span {
  font-size: 11px;
}

.expenses-img {
  position: absolute;
  bottom: 0;
  right: 3px;
  width: 140px;
  height: auto;
  z-index: -1;
}

@media screen and (max-width: 600px) {
  .expenses-img {
    max-width: 120px;
  }
}
.expenses-img img {
  width: 100%;
  height: auto;
}

.expenses-list {
  margin-top: 30px;
}

@media screen and (max-width: 600px) {
  .expenses-list {
    margin-top: 20px;
  }
}
.expenses-item {
  position: relative;
  letter-spacing: 1px;
  text-align: right;
  padding: 20px 0;
}

.expenses-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#000 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  bottom: 0;
}

.expenses-item label {
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: #cef3ff;
  width: 110px;
  font-weight: 500;
  text-align: center;
  border-radius: 100vh;
  padding: 2px;
}

.expenses-item span {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: bold;
}

.expenses-item ._zero {
  font-size: 56px;
  line-height: 11px;
  margin-right: 3px;
}

.expenses-comment {
  font-weight: 500;
  margin-top: 10px;
}

.expenses ._gray {
  background-color: #777;
}

.expenses ._base {
  background-color: #c6c6c6;
}

.point {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .point {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .point {
    margin: 0 20px;
  }
}
.point-tit {
  position: relative;
  color: #1bb3e0;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .point-tit {
    font-size: 18px;
  }
}
.point-tit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
}

.point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 750px;
  margin: 40px auto 0;
}

@media screen and (max-width: 600px) {
  .point-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.point-cell {
  color: #fff;
  background-color: #1bb3e0;
  padding: 30px;
}

.point-cell h3 {
  position: relative;
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 0 30px;
  margin-bottom: 10px;
}

.point-cell h3::before,
.point-cell h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 20px;
  background-image: linear-gradient(to right, #fff 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.point-cell h3::before {
  left: 0;
  -webkit-transform: translateY(-63%) rotate(65deg);
          transform: translateY(-63%) rotate(65deg);
}

.point-cell h3::after {
  right: 0;
  -webkit-transform: translateY(-63%) rotate(-65deg);
          transform: translateY(-63%) rotate(-65deg);
}

.point-cell p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 34px;
}

@media screen and (max-width: 600px) {
  .point-cell p {
    font-weight: bold;
  }
}
.document {
  max-width: 1100px;
  margin: 80px auto;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .document {
    margin: 60px 20px;
  }
}
.document-line {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.document-line span {
  position: relative;
  display: block;
  width: 300px;
}

@media screen and (max-width: 600px) {
  .document-line span {
    width: 280px;
  }
}
.document-line span::before,
.document-line span::after {
  content: "";
  position: absolute;
  bottom: 4px;
}

.document-line .left::before {
  left: -10px;
  width: 20px;
  height: 10px;
  background-image: linear-gradient(to right, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.document-line .left::after {
  left: 15px;
  height: 30px;
  border-left: 3px solid #fa1b1b;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.document-line .right::before {
  right: 5px;
  height: 15px;
  border-left: 3px solid #fa1b1b;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}

.document-line .right::after {
  right: -1px;
  width: 30px;
  height: 22px;
  background-image: linear-gradient(to right, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  -webkit-transform: rotate(-58deg);
          transform: rotate(-58deg);
}

.document-tit {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .document-tit {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.document-img {
  position: relative;
  display: block;
  background-image: url("../../../../images/document.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 10px;
  padding: 80px 0;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .document-img {
    font-size: 18px;
    padding: 60px;
  }
}
.document-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0.3;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.document-img:hover {
  background-size: 105%;
}

.document-img:hover::before {
  opacity: 0.5;
}

.expenses-graph {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  .expenses-graph {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
}
.expenses-graph img {
  width: 100%;
}

.link {
  display: block;
  max-width: 1100px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 120px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .link {
    margin: 0 20px 80px;
  }
}
.link-wrap {
  position: relative;
  background-color: #000;
  height: 200px;
  overflow: hidden;
}
.link-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  opacity: 0.5;
}
.link-flex {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .link-flex {
    width: calc(100% - 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.link-tit {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .link-tit {
    font-size: 18px;
  }
}
.link-list {
  width: 100%;
  padding-left: 15px;
}
@media screen and (max-width: 600px) {
  .link-list {
    padding-left: 40px;
  }
}
.link-item {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0;
}
.link-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  background-color: #1bb3e0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .link-item {
    font-size: 14px;
    padding: 0;
  }
}
.link-txt {
  color: #1bb3e0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 600px) {
  .link-txt {
    font-size: 14px;
  }
}
.link-txt span {
  position: relative;
  margin-left: -35px;
}
.link-txt span::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 9px;
  width: 20px;
  height: 4px;
  border-right: 1px solid #1bb3e0;
  border-bottom: 1px solid #1bb3e0;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
}