@charset "utf-8";

.manda__content-cards {
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .manda__content-cards {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}

.manda__content-card {
  border-radius: 10px;
  background: #e8eef2;
  padding: 40px 24px;
}

.manda__content-card-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(26 / 12);
}

.manda__content-card-icon {
  margin-inline: auto;
  margin-top: 30px;
  border-radius: 50%;
  overflow: hidden;
  width: 57.2%;
  height: auto;
  aspect-ratio: 135/135;
}

.manda__content-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-white);
}

.manda__content01-bottom-text {
  margin-top: 69px;
  color: #569cdb;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: clamp(18px, 1.62vw, 22px);
  font-weight: 500;
  letter-spacing: calc(60 / 1000 * 1em);
  line-height: calc(42 / 22);
}

.manda__content01-bottom-text::before {
  content: "";
  background: url(../images/manda__content01-bottom-text1.svg) no-repeat center
    center/contain;
  width: 12px;
  height: 38px;
}
.manda__content01-bottom-text::after {
  content: "";
  background: url(../images/manda__content01-bottom-text2.svg) no-repeat center
    center/contain;
  width: 12px;
  height: 38px;
}

.manda__content01-bottom-icon {
  margin-top: 50px;
  width: clamp(100px, 12.6vw, 172px);
  height: auto;
  aspect-ratio: 172/92;
  margin-inline: auto;
}

.manda__content01-bottom-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.manda__content02-head-box {
  margin-top: 40px;
  margin-inline: auto;
  text-align: center;
  max-width: 543px;
  width: 100%;
  background: url(../images/manda__content02-head-box-bg.png) no-repeat center
    center / cover;
  padding: 41px clamp(30px, 9.16vw, 125px);
  color: var(--color-white);
}

.manda__content02-head-box-text-b {
  font-size: clamp(18px, 1.62vw, 22px);
  font-weight: 500;
  letter-spacing: calc(60 / 1000 * 1em);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  white-space: nowrap;
  gap: 8px;
}

.manda__content02-head-box-text-b::before {
  content: "";
  background: url(../images/manda__content02-text-icon1.svg) no-repeat center
    center/contain;
  width: 12px;
  height: 12px;
}
.manda__content02-head-box-text-b::after {
  content: "";
  background: url(../images/manda__content02-text-icon2.svg) no-repeat center
    center/contain;
  width: 12px;
  height: 12px;
}

.manda__content02-head-box-text {
  margin-top: 17px;
  font-size: clamp(18px, 1.62vw, 22px);
  font-weight: 500;
  letter-spacing: calc(60 / 1000 * 1em);
}

.manda__content03-box.page2__content {
  padding-block: 50px 0;
}

.features__content-row {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 900px) {
  .features__content-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.features__content-row-text {
  max-width: 469px;
}

.features__content-slider {
  padding: 50px 0 76px 20px;
  width: 100%;
  margin-inline: auto 0;
  background: var(--color-white);
  position: relative;
}

@media screen and (min-width: 768px) {
  .features__content-slider {
    padding: 50px 0 76px 40px;
  }
}

@media screen and (min-width: 1200px) {
  .features__content-slider {
    padding: 50px 0 76px 109px;
  }
}

.top__voice-item-image {
  aspect-ratio: 350/210;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.top__voice-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top__voice-item-title {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: calc(22.4 / 14);
}

.feature__navigation {
  position: absolute;
  bottom: 0;
  left: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .feature__navigation {
    left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .feature__navigation {
    left: 109px;
  }
}

/* 専用のボタンスタイル */
.feature__swiper-button-prev,
.feature__swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #dd4487;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.feature__swiper-button-prev::after,
.feature__swiper-button-next::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.feature__swiper-button-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.feature__swiper-button-next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}

.feature__swiper-button-prev.swiper-button-disabled,
.feature__swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.feature__swiper-progressbar {
  position: absolute;
  top: auto !important;
  bottom: 18px;
  width: 60% !important;
  right: 0 !important;
  left: auto !important;
  height: 3px;
  background-color: #d2d9e0;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .feature__swiper-progressbar {
    width: 80% !important;
  }
}

@media screen and (min-width: 1200px) {
  .feature__swiper-progressbar {
    width: 70% !important;
  }
}

.feature__swiper-progressbar .swiper-pagination-progressbar-fill {
  background-color: #dd4486;
  height: 100%;
}
