@media print, screen and (min-width: 48.06125em) {
    .fv-swiper {
        width: 70%;
    }
}

@media print, screen and (max-width: 48.06125em) {
    .fv-swiper {
        width: 100%;
        margin-bottom: 36px;
    }
}

.swiper-slide {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv-swiper-slide {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: row-reverse;
}

@media print, screen and (max-width: 48.06125em) {
    .fv-swiper-slide {
        flex-direction: column;
    }
}

@media print, screen and (min-width: 48.06125em) {
    .fv-swiper-img {
        width: 100%;
        height: 35.5vw;
        position: relative;
        display: block;
    }
}

@media print, screen and (max-width: 48.06125em) {
    .fv-swiper-img {
        width: 100%;
        height: 0px;
        padding-bottom: 100%;
        position: relative;
    }
}

.fv-swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

/* #32212 の対応で、画像のアスペクト比が変わらないように、「object-fit: fill;」のスタイルを削除。height はauto を設定 */
@media print, screen and (min-width: 48.06125em) {
    .fv-swiper-img img {
        height: auto;
    }
}

.fv-swiper-text {
    font-family: "Hiragino Kaku Gothic W5 JIS2004", sans-serif;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 30px;
    margin-left: 17px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media print, screen and (max-width: 48.06125em) {
    .fv-swiper-text {
        font-size: 4.83092vw;
        line-height: 1.5;
    }
}

/* 
#32212 の対応でFVエリアのテキストが45字まで切れず表示できるように、
タブレットのウィンドウ幅になったら文字サイズを小さくして、margin-top を0px にする 
.fv-swiper-text a:first-child にmax-height を設定していたのを削除
*/
@media print, screen and (min-width: 48.06125em) {
    .fv-swiper-text {
        width: 95%;
        margin-top: 0px;
        margin-left: 0px;
        max-width: 280px;
        font-size: 16px;
        line-height: 24px;
    }

    .fv-swiper-text a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fv-swiper-btn {
        display: none;
    }
}

/* もともとPC 用に設定していたスタイルを設定 。ブレークポイントは62em に設定している。以下のlg の値
overrides\app\theme\foundations\breakpoints.js*/
@media print, screen and (min-width: 62em) {
    .fv-swiper-text {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }
}

  .fadeOutText{
    color: #ffffff;
    transition: color 0.5s ease;
  }

@media print, screen and (min-width: 48.06125em) {
    .fv-swiper-btn {
        width: 100%;
        max-width: 280px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2px;
        background-color: #323232;
        margin-top: 22px;
    }

    .fv-swiper-btn:hover {
        background-color: rgba(50, 50, 50, 0.3);
        transition: background-color 0.3s;
    }
}

.fv-btn-text {
    font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
    font-size: 13px;
    letter-spacing: 0em;
    text-align: center;
    color: #fffcf4;
    position: relative;
    width: 100%;
}

.fv-btn-icon {
    position: absolute;
    right: 16px;
    top: 9px;
}

/* .swiper-pagination {
    top: 100vw !important;
    bottom: unset;
    text-align: right !important;
    padding-right: 20px;
}

@media print, screen and (min-width: 48.06125em) {
    .swiper-pagination {
        display: none;
    }
}

.swiper-pagination-bullet {
    width: 4px !important;
    height: 4px !important;
    background: #323232 !important;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    background: #323232 !important;
    opacity: 1;
    transition: opacity 0.3s;
} */

.autoplay-progress {
    position: absolute;
    bottom: -3px;
    left: -3px;
    z-index: 10;
    width: 10px;
    height: 10px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: #000000;
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 1px;
    stroke: #000000;
    fill: none;
    stroke-dashoffset: calc(31.4 * (1 - var(--progress)));
    stroke-dasharray: 31.4;
    transform: rotate(-90deg);
}

.navi-area {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.navi-area-line {
    display: flex;
    border-bottom: 1px solid #ffffff;
}

.navi-area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #323232;
    border-right: 1px solid #ffffff;
    font-family: "Hiragino Kaku Gothic W5 JIS2004", sans-serif;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
}

.fv-swiper .swiper-wrapper{
    transition-timing-function: ease;
}

