sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.3em;
}

.kv {
  display: flex;
  align-items: center;
  background-image: url('../images/kv.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
  height: 300px;
  padding: 0 140px;
  color: #FFF;
}

@media (max-width: 768px) {
  .kv {
    align-items: flex-start;
    background-image: url('../images/kv__sp.png');
    margin-top: 0;
    height: 310px;
    padding: 90px 24px 0;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.point {
  flex: 1;
  position: relative;
}

.point-badge {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: linear-gradient(90deg, #44698B 0%, #042646 100%);
  color: #fff;
  padding: 8px 0;
  z-index: 1;
  width: 100%;
  max-width: 235px;
}

.point-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  width: 100%;
  height: 135px;
  padding-top: 10px;
}
.point-body::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 40px;
  background: #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #fff;
}

@media (max-width: 768px) {
  .point:not(:first-child) {
    margin-top: 20px;
  }
  .point-badge {
    top: -35px;
    padding: 5px 0;
    max-width: 180px;
  }
  .point-body {
    height: auto;
    padding: 30px 0 20px;
  }
  .point-body::after {
    bottom: -20px;
    transform: translateX(-50%) rotate(60deg);
    width: 15px;
    height: 34px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.card-title-wrapper {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #44698B 0%, #042646 100%);
  color: #fff;
  font-weight: bold;
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 195px;
  padding: 20px 0;
  font-size: 32px;
  border-right: 2px solid #fff;
}

.card-title {
  flex: 1;
  font-size: 26px;
  padding-left: 20px;
}

.card-content {
  padding: 60px 40px;
  background-color: #FFF;
  border-left: 2px solid #EBEBEB;
  border-right: 2px solid #EBEBEB;
  border-bottom: 2px solid #EBEBEB;
}

@media (max-width: 768px) {
  .card-title-wrapper {
    flex-direction: column;
  }
  .card-number {
    min-width: auto;
    width: 100%;
    padding: 5px 0;
    border-right: none;
    border-bottom: 2px solid #fff;
    font-size: 18px;
  }
  .card-title {
    font-size: 16px;
    padding: 10px 0;
    text-align: center;
  }
  .card-content {
    padding: 30px 15px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.inner-title {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.inner-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 130px;
  height: 1px;
  background-color: #000;
}

@media (max-width: 768px) {
  .inner-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .inner-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.section-title-wrapper {
  color: #042646;
}

.section-title {
  font-size: 34px;
  font-weight: 500;
}

.section-subtitle {
  position: relative;
  padding-left: 60px;
  font-size: 12px;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #042646;
}

.underline-text {
  position: relative;
  padding-bottom: 12px;
  text-align: center;
}

.underline-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 1px;
  background-color: #2C2C2C;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
    text-align: center;
  }
  .section-subtitle {
    position: static;
    padding-left: 0;
    font-size: 12px;
    text-align: center;
    margin-top: 3px;
  }
  .section-subtitle::before {
    display: none;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.col-3 {
  display: flex;
}

.col-item {
  flex: 1;
  position: relative;
  padding: 0 40px;
}

.col-item:first-child {
  padding-left: 0;
}

.col-item:last-child {
  padding-right: 0;
}

.col-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}

@media (max-width: 768px) {
  .col-3 {
    flex-direction: column;
  }
  .col-item {
    padding: 35px 0 40px;
  }
  .col-item:not(:last-child)::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.parallax {
  position: relative;
  background-image: url('../images/bg-image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  margin-top: 100px;
}

.card-2col {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.card-box {
  flex: 1;
  max-width: 550px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.card-header {
  position: relative;
  text-align: center;
  background-color: #173D60;
  color: #fff;
  padding: 16px 0;
  font-size: 20px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 45px solid #173D60;
}

.card-body {
  padding: 40px 0 25px;
  background-color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-bottom: 25px;
}

.card-icon {
  max-width: 130px;
}

@media (max-width: 768px) {
  .parallax {
    background-image: url('../images/bg-image__sp.png');
    padding: 60px 0;
    margin-top: 60px;
    background-attachment: scroll;
  }
  .card-2col {
    flex-direction: column;
    align-items: center;
  }
  .card-box {
    flex: none;
    width: 100%;
    max-width: 450px;
  }
  .card-header {
    font-size: 14px;
    padding: 14px 0;
  }
  .card-body {
    padding: 20px 0 30px;
  }
  .card-content-wrapper {
    margin-bottom: 10px;
    gap: 15px;
  }
  .card-icon {
    max-width: 70px;
  }
  .parallax .btn-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */