@charset "UTF-8";
.c-ttl--32 b{
  font-size: 120%;
  color: var(--color-green-key);
}
@media screen and (max-width:769px) {
.c-ttl--32 b{
  font-size: 110%;
}
}
.intro-wrap > p{
  margin-top: 1rem;
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  .intro-wrap > p{
    font-size: 1.6rem;
  }
}
.intro-imgs{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  min-width: 140rem;
  max-width: 140rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:768px) {
  .intro-imgs{
    gap: 1rem;
    width: 100%;
    min-width: unset;
  }
}
.intro-imgs > *{
  width: calc((100% - 4rem) / 3);
  border-radius: 10px;
}
@media screen and (max-width:768px) {
  .intro-imgs > *{
    width: calc((100% - 2rem) / 3);
  }
}
.intro-imgs:has(>*:nth-child(4)) > *{
  width: calc((100% - 6rem) / 4);
}
@media screen and (max-width:768px) {
  .intro-imgs:has(>*:nth-child(4)) > *{
    width: calc((100% - 3rem) / 4);
  }
}
.intro-list{
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  min-width: 140rem;
  margin-top: 10rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:768px) {
  .intro-list{
    min-width: unset;
    width: 92%;
  }
}
.intro-list > li{
  width: calc((100% - 12rem) / 3);
}
.intro-list:has(>*:nth-child(4)) > li{
  width: calc((100% - 18rem) / 4);
}
@media screen and (max-width:768px) {
  .intro-list > li{
    width: 100%!important;
  }
}
.intro-list a{
  display: block;
  background-color: var(--color-white);
  transition: scale 250ms ease, box-shadow 250ms ease;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}
.intro-list a:hover{
  box-shadow: 0px 40px 30px rgba(25, 25, 25, 0.12);;
}
.intro-list-head{
  padding: 3rem 0;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
  background-color: var(--color-gray-150);
}
@media screen and (min-width:769px) {

.intro-list-head>img{
    /* min-width: 27rem; */
}
}
.intro-list-num{
  font-size: 5rem;
  font-family: var(--font-Roboto);
  color: var(--color-green-key);
  position: absolute;
  top: 0;
  left: 2rem;
  transform: translateY(-50%);
}
.intro-list-title{
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-green-key);
  line-height: 1.4;
}
@media screen and (max-width:768px) {
  .intro-list-title{
    font-size: 2.4rem;
  }
}
.intro-list-body{
  padding: 3rem;
  text-align: left;
}
.solution-tag{
  display: block;
  width: fit-content;
  padding: .2em 1em .2em 1.8em;
  border: 1px solid var(--color-green-key);
  border-radius: 18px;
  color: var(--color-green-key);
  position: relative;
  line-height: 1.2;

}
.solution-tag::before{
  content: "#";
  margin-right: .25em;
  left: 14px;
  position: absolute;
}
@media screen and (max-width:768px) {
  .solution-tag{
    font-size: 1.4rem;
  }
}
@media screen and (min-width:768px) {
  .solution-tag{
  white-space: nowrap;
  }
}
.solution-tag + .solution-tag{
  margin-top: 1.5rem;
}
.solution-tag.inline{
  display: inline-block;
  padding: .2em 1em .25em 1.8em;
  margin-top:.75rem;
  margin-right: .75rem;
      position: relative;
}
.p-solve-worry{
  width: calc(100% - 10rem);
  margin: 8rem auto 6rem;
  padding: 4rem 4rem 2rem;
  background-color: var(--color-gray-150);
  border-radius: var(--card-radius);
  position: relative;
}
@media screen and (max-width:768px) {
  .p-solve-worry{
    width: calc(100% - 3rem);
    margin: 6rem auto 4rem;
    padding: 2rem 2rem;
  }
}
.p-solve-worry-title{
  width: fit-content;
  margin: auto;
  font-size: 3.8rem;
  padding-right: 1.35em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-60%);
}
@media screen and (max-width:768px) {
  .p-solve-worry-title{
    font-size: 2.6rem;
  }
}
.p-solve-worry-title::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: .35em;
  background-image: url(../img/solution/kadai_solve-worry-title.png);
  background-size: cover;
  vertical-align: middle;
  position: relative;
  bottom: .125em;
}
.p-solve-worry-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: var(--fw-bold);
}
.p-solve-worry-list > li{
  width: 50%;
  text-align: center;
  padding: 3rem 0;
}
@media screen and (max-width:768px) {
  .p-solve-worry-list > li{
    width: 100%;
  }
}
.p-solve-worry-list img{
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
  /* min-width: 27rem; */
}
.p-solve-worry-txt{
  display: inline-block;
  text-align: left;
}
.p-solve-worry-tag{
  color: var(--color-green-key);
}

.p-solve-worry-list-title{
  text-align: center;
  font-weight: normal;
  font-weight: var(--fw-bold);
  font-size: 2.2rem;
  line-height: 1.4;
}
@media screen and (max-width:768px) {
  .p-solve-worry-tag{
    text-align: center;
  }
  .p-solve-worry-list-title{
    font-size: 2rem !important;
  }
}
.p-solve-worry-relation{
  margin-top: 1rem;
  text-align: center;
  font-weight: normal;
}
.p-solve-worry-relation span{
  display: inline-block;
  padding: .25em .75em .35em;
  margin-right: .5em;
  background-color: var(--color-green-key);
  border-radius: .15em;
  color: #fff;
  line-height: 1;
}
.p-solve-worry-relation td{
  text-align: justify;
}
@media screen and (max-width:769px) {
  .p-solve-worry-relation {
    width: 100%;
    text-align: center;
  }
  .p-solve-worry-relation span{

  display: block;
  }
  .p-solve-worry-relation th, .p-solve-worry-relation td{
    display: block;
   width: 100%;
   text-align: center;

  }
  .p-solve-worry-relation td{
     line-height: 1.4;
  }
}
.p-solve-solution-title {
  text-align: center;
  font-size: 3.6rem;
  color: var(--color-green-key);
}
@media screen and (max-width:960px) {
  .p-solve-solution-title {
    font-size: 2rem;
  }
}
.p-solve-solution-title::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  margin-right: .75em;
  background-image: url(../img/solution/kadai_solve-solution-title.png?d=251222);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-solve-solution-body{
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: calc(100% - 10rem);
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
  margin: 6rem auto 3rem;
}
@media screen and (min-width:769px) and (max-width:960px) {
.p-solve-solution-body{
padding: 0 4rem;
}
}
@media screen and (max-width:960px) {
  .p-solve-solution-body{
    width: calc(100% - 3rem);
    margin-top: 3rem;
    flex-direction: column;
    margin-bottom: 0;


  }
}
.p-solve-solution-list-img{
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    max-width: 43%;
}
@media screen and (min-width:769px) {
.p-solve-solution-list-img{
      display: flex;
    flex-direction: column;
    gap: 8rem;
}
}
.p-solve-solution-list-img>img{
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (max-width:960px) {
  .p-solve-solution-list-img{
    width: 100%;
    height: auto;
    display: contents;
  }
}
.p-solve-solution-list{
  flex: 1;
}
.p-solve-solution-list li{
  /* padding-left: 10rem;
  background-image: url(../img/solution/kadai_solve-solution-item.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 8.2rem auto; */
    display: flex;
    gap: 2rem;
}
.p-solve-solution-list-icon{
      min-width: 80px;
    max-width: 80px;
    display: flex;
    align-items: flex-start;
}
@media screen and (max-width:769px) {
.p-solve-solution-list-icon{
    width: 33%;
}
 .p-solve-solution-list li{
      gap: 1rem;
 }
}
.p-solve-solution-list li:has(+ li){
  margin-bottom: 2rem;
}
.p-solve-solution-list-title{
  font-size: 2.2rem;
  line-height: 1.5;
}
@media screen and (max-width:960px) {
  .p-solve-solution-list-title{
    font-size: 1.8rem;
  }
}
.p-solve-solution-list-title b{
  color: var(--color-orange-500);
}
@media screen and (min-width:769px) {
.intro-list-4colums{
    gap: 2rem !important;
    min-width: 175rem !important;
    justify-content: space-between !important;
}
.intro-list-4colums:has(>*:nth-child(4)) > li {
    width: calc((100% - 12rem) / 4) !important;
}

}
@media screen and (max-width:769px) {
  .intro-imgs-4colums{
    justify-content: center;
  }
.intro-imgs-4colums>img{
  width: 45% !important;
  justify-content: center;

}
}
