@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
.sec-solve__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .sec-solve__list {
    gap: 30px 60px;
  }
}
.sec-solve__list li {
  background: #DEF0FE;
  border-radius: 10px;
  width: 100%;
  transition: all 0.4s;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
}
@media screen and (min-width: 769px) {
  .sec-solve__list li {
    width: calc(50% - 30px);
    transform: inherit;
  }
}
.sec-solve__list li a {
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .sec-solve__list li a {
    padding: 30px 40px;
  }
}
.sec-solve__list li:hover {
  background: #B7E0FF;
}
.sec-solve__imgs {
  width: 27.14%;
}
.sec-solve__txtarea {
  width: 64.48%;
}
.sec-solve__txtarea > dt {
  display: block;
  font-weight: 700;
  color: #003E92;
  font-size: clamp(1.8rem, 2.12vw, 2.4rem);
}
.sec-solve__txtarea > dt span {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
.sec-solve__txtarea > dd {
  display: block;
  font-size: clamp(1.5rem, 1.36vw, 1.6rem);
}
.sec-solve__cont {
  border-radius: 10px;
  background: #FFF;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.16));
  padding: 30px 20px;
}
@media screen and (min-width: 769px) {
  .sec-solve__cont {
    padding: 50px 50px;
    transform: inherit;
  }
}
.sec-solve__cont:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .sec-solve__cont:not(:last-child) {
    margin-bottom: 100px;
  }
}
.sec-solve__cont > h3 {
  color: #003E92;
  font-size: clamp(1.8rem, 2.12vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.sec-solve__cont > h4 {
  font-size: clamp(1.9rem, 2.45vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 3rem;
}
.sec-solve__cont > h4 span {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: 500;
  color: #555;
}
.sec-solve__cont .caption {
  font-size: clamp(1.5rem, 1.36vw, 1.6rem);
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .sec-solve__cont--img {
    margin: auto;
  }
}

.bg-blue {
  margin-bottom: auto;
}

.note {
  font-size: clamp(1.3rem, 1.2vw, 1.5rem);
  padding: 0.7em 0;
}
.note-r {
  text-align: right;
}