/**強みセクション */

.strongSwiper-slide {
    width: 350px;
    height: 100%;
}

.strong-section {
    background-color: #ffe6e6;
    /* 高さを800pxに設定 */
    position: relative;
    padding-top: 6vw;
    padding-bottom: 4vw;
    overflow: visible;
}

.strongSwiper {
    width: 100%;
    height: 120%;
}

.strongSwiper .swiper-slide {
    margin-top: 50px;
    margin-bottom: 50px;
    width: fit-content;
    height: fit-content;
}


/* 矢印ボタン */

.strongSwiper .swiper-slide-next .swiper-button-next {
    background: #ff4500;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: abusolute;
    left: -80px;
    z-index: 10;
    transition: transform 1s ease-in-out;
}

.strongSwiper .swiper-slide-prev .swiper-button-prev {
    background: #ff4500;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: abusolute;
    left: calc(100% + 10px);
    z-index: 10;
    transition: transform 1s ease-in-out;
}

.strongSwiper .swiper-slide:not(.swiper-slide-prev) .swiper-button-prev,
.strongSwiper .swiper-slide:not(.swiper-slide-next) .swiper-button-next {
    display: none;
}

.strongSwiper .swiper-slide-active .swiper-button-next,
.strongSwiper .swiper-slide-active .swiper-button-prev {
    display: none;
}


/* 矢印アイコンの色 */

.strongSwiper .swiper-button-prev::after,
.strongSwiper .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
}

.strongSwiper .swiper-button-next::after,
.strongSwiper .swiper-button-prev::after {
    display: none;
}

.strongSwiper .swiper-button-next svg,
.strongSwiper .swiper-button-prev svg {
    fill: white;
    width: 20px;
    height: 20px;
}

.strong-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    padding-top: 40px;
}

.strong-card .image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.strong-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 320px;
    max-height: 240px;
}

.strong-card .content {
    flex: 2;
    margin: 20px 0;
    max-width: 320px;
    min-height: 80px;
}

.strong-card .content .title {
    font-size: 1.2em;
    margin-top: 20px 0;
    margin-bottom: 10px;
    text-align: center;
    color: red;
    font-weight: bold;
    white-space: normal;
    /* 改行を許可 */
    word-wrap: break-word;
    /* 長い単語を折り返す */
    overflow-wrap: break-word;
    /* 長い単語を折り返す */
    max-width: 100%;
    /* 幅を親要素の100%に制限 */
    overflow: hidden;
    /* はみ出したテキストを隠す */
}

.strong-card .number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: red;
    padding: 5px;
    font-size: 45px;
    z-index: 10;
}


/* スライドのサイズ調整 */

.strongSwiper .swiper-slide {
    width: fit-content;
    height: fit-content;
    transform: scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* アクティブなスライドのサイズを大きく、他のスライドのサイズを小さく */

.strongSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}


/* その他のスライドはデフォルトで小さく */

.strongSwiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.8);
}


/* レスポンシブ対応 */

@media (max-width: 800px) {
    .strong-card .content .title {
        font-size: 0.9em;
    }
}


/** スマホ */

@media (max-width: 640px) {}

@media (max-width: 530px) {
    .strong-card {
        padding: 15px;
        padding-top: 20px;
        max-width: 350px;
    }
}

@media (max-width: 450px) {
    .strong-card {
        max-width: 320px;
    }
}

@media (max-width: 410px) {
    .strong-card {
        max-width: 300px;
    }
}

@media (max-width: 390px) {
    .strong-card {
        max-width: 280px;
    }
}

@media (max-width: 320px) {}