.col_2 .box {
  width: calc(calc(100% - 32px) / 2);
}
.col_3 .box {
  width: calc(calc(100% - 64px) / 3);
}
.col_4 .box {
  width: calc(calc(100% - 90px) / 4);
}
.col_5 .box {
  width: calc(calc(100% - 106px) / 5);
}
.mt2em {
  margin-top: 2em;
}
.atten {
  color: #f53c5e;
}

.exsample {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em;
  margin: 1em 0 1em 1em;
}
.exsample .ex_inner {
  flex: 1;
}
.exsample .ex_inner ul + p {
  margin-top: 1em;
  margin-left: -2em;
}

strong {
  font-weight: 600;
  color: var(--color-theme-primary);
}
em {
  font-style: normal;
  font-weight: 600;
}

section {
  background-color: #fff;
  border-radius: 64px;
  margin-top: 2em;
  padding: 7vw 4vw 4vw;
  min-width: 1200px;
}

.thumbnail {
  text-align: center;
}
.thumbnail img {
  max-width: 100%;
  height: auto;
}

.sec01 {
  margin-top: 4vw;
}
.question {
  position: relative;
  width: fit-content;
  padding: 24px 124px 24px 32px;
  border: 2px solid #222;
  font-size: clamp(1.125rem, 0.903rem + 1.11vw, 1.875rem);
  font-weight: 500;
  border-radius: 32px;
}
.question span {
  color: var(--color-theme-primary);
}
.question .icon {
  display: block;
  width: fit-content;
  height: auto;
  position: absolute;
  right: 23px;
  bottom: -5px;
}
.answer {
  position: relative;
  width: 100%;
  padding: 24px 124px 24px 32px;
  border: 2px solid #222;
  font-weight: 500;
  border-radius: 32px;
  margin-top: 3em;
}
.answer .icon {
  display: block;
  width: fit-content;
  height: auto;
  position: absolute;
  right: 23px;
  bottom: 0px;
}
.answer p + p {
  margin-top: 10px;
}

.flexbox {
  gap: 32px;
}

.sec01 .box06 .flexbox {
  gap: 32px;
}
.sec01 .box06 .thumbnail {
  order: 2;
}
.sec01 .box06 dl {
  order: 1;
}
.sec01 .box06 dd {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
  margin-top: 5px;
  font-weight: 500;
}
.sec01 .box06 dd::before {
  content: "";
  display: block;
  width: 1em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: -4px;
  background-image: url(../images/arrow_01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



@media screen and (max-width: 767px) {
  section {
    width: 100%;
    min-width: auto;
  }
  .flexbox {
      flex-wrap: wrap;
    }
  .col_2 .box {
    width: 100%;
  }
  .col_3 .box {
    width: 100%;
  }
  .col_4 .box {
    width: 100%;
  }
  .col_5 .box {
    width: 100%;
  }
  section {
    border-radius: 32px;
  }
  .question,
  .answer {
    border-radius: 16px;
    padding: 1em 1em 2.5em;
    background-color: #fff;
  }
  .answer {
    margin-top: 1.5em;
    font-weight: 400;
  }
  .question .icon,
  .answer .icon {
    width: 80px;
    height: auto;
    right: 50%;
    bottom: -35px;
    transform: translateX(50%);
  }

  .mt2em {
    margin-top: 0;
  }

  .exsample {
    flex-direction: column;
    gap: 0;
  }
  .exsample .ex_inner ul + p {
    margin-left: 0;
  }

}


