@charset "UTF-8";

.fv__header {
  max-width: 1100px;
  width: 100%;
  padding: 0 10px;
  margin-inline: auto;
  align-items: flex-end;
  padding-top: 1.5em;
}

.fv__texts {
  text-align: left;
  align-items: flex-start;
  gap: 1em;
  width: 60%;
  padding-top: 0;
  padding-bottom: 2em;
}

.fv__img02 {
  width: 40%;
  aspect-ratio: 516 / 420;
  display: flex;
  justify-content: center;
  align-items: bottom;
  position: relative;
  scale: 1.1;
  transform-origin: bottom right;
  img {
    position: absolute;
    bottom: 0;
    top: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.fv-label {
  background-color: #02617B;
  color: #fff;
  border-radius: calc(infinity * 1px);
  padding: .5em 1em;
  font-weight: bold;
  font-size: 1.5em;
}
.fv-title {
  color: #02617B;
  font-weight: bold;
  font-size: 5em;
}
.fv-description {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.6;
}
.has-border {
  position: relative;
  padding-bottom: .3em;
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    --width: 82px;
    left: calc(50% - (var(--width) / 2));
    width: var(--width);
    height: 3px;
    background-color: #02617B;
  }
}
.fv__box-title .gold {
  margin-inline: 0;
}
.fv__box-header::after {
  display: none;
}
.fv__box-header {
  position: relative;
}
.badge {
  display: block grid;
  place-items: center;
  background-color: #B4821E;
  color: #fff;
  font-weight: bold;
  width: 3.5em;
  aspect-ratio: 1 / 1;
  position: absolute;
  border-radius: 100%;
  font-size: 1.5em;
  right: 1.5em;
  top: 1.5em;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    border: 1px solid #fff;
  }
}
.fv__box {

}