@media screen and (min-width: 768px) {
  .method__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.method-carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .method-carousel {
    margin-left: auto;
    margin-right: auto;
    max-width: 966px;
  }
}
.method-carousel__item {
  position: relative;
  overflow: hidden;
  width: 85%;
  height: auto;
  border-radius: 10px;
  background: #F0F4FF;
  padding: 8px 15px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .method-carousel__item {
    width: 330px;
  }
}
.method-carousel__item::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .method-carousel__item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.7;
    z-index: 1;
  }
}
.method-carousel__item.swiper-slide-active::before {
  display: none;
}
.method__label{
  width: 40px;
  height: 40px;
  background-color: #ffcfc9;
  border-radius: 50%;
  color: #0000b3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 16px;
  white-space: nowrap;
}
.method__label--number{
  font-size: 2rem;
  font-family: Arial, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.method-carousel__img {
  width: 55%;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.method-carousel .method-block__info{
  margin: 30px 0 0;
  width: 100%;
}
.method-block__info > * + *{
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .method-block__info > * + *{
    margin-top: 16px;
  }
}
.method-carousel .method-block__lead-text {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 0 20px;
}
.method-carousel .section__list-char{
  left: 2%;
}
@media screen and (min-width: 768px) {
    .method-carousel .section__list-char{
        left: 10px;
    }
}

.method-carousel__button-prev, .method-carousel__button-next {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .method-carousel__button-prev, .method-carousel__button-next {
    width: 40px;
    height: 40px;
  }
}
.method-carousel__button-prev::after, .method-carousel__button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/common2024/images/icon/icon_carousel_control.svg) no-repeat;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.method-carousel__button-prev {
  transform: rotate(180deg);
  left: 5px;
}
@media screen and (min-width: 768px) {
  .method-carousel__button-prev {
    left: calc((100% - 394px) / 2);
  }
}
.method-carousel__button-next {
  right: 5px;
}
@media screen and (min-width: 768px) {
  .method-carousel__button-next {
    right: calc((100% - 394px) / 2);
  }
}
.method-carousel__pagination {
  font-size: 0;
  line-height: 1;
  bottom: 0;
}
.method-carousel__pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0;
  background: #f3f3f3;
}
.method-carousel__pagination .swiper-pagination-bullet:nth-child(n+2) {
  margin-left: 15px;
}
.method-carousel__pagination .swiper-pagination-bullet-active {
  background: #285ae1;
}