@charset "utf-8";

/* 物件スライダー（Study流用・ローカル静的確認用） */

/* サイト本体のスタイル（CPは1215px以下でSP） */
@import url("./feature.css");

:root {
    --fPc12Fs: 12px;
    --fPc12Ls: 0.5px;
    --fPc12Lh: 1.84;
    --fPc13Fs: 13px;
    --fPc13Ls: 0.5px;
    --fPc13Lh: 1.69;
    --fPc14Fs: 14px;
    --fPc14Ls: 1px;
    --fPc14Lh: 1.58;
    --fPc16Fs: 16px;
    --fPc16Ls: 1px;
    --fPc16Lh: 1.625;
    --fPc17Fs: 17px;
    --fPc17Ls: 1px;
    --fPc17Lh: 1.5;
    --fPc18Fs: 18px;
    --fPc18Ls: 0.5px;
    --fPc18Lh: 1.78;
    --fPc26Fs: 26px;
    --fPc26Ls: 1px;
    --fSp10Fs: 10px;
    --fSp10Ls: 0;
    --fSp10Lh: 1.4;
    --fSp11Fs: 11px;
    --fSp11Ls: 0;
    --fSp11Lh: 1.4;
    --fSp12Fs: 12px;
    --fSp12Ls: 0;
    --fSp12Lh: 1.67;
    --fSp14Fs: 14px;
    --fSp14Ls: 0.5px;
    --fSp14Lh: 1.57;
    --fSp15Fs: 15px;
    --fSp15Ls: 0.5px;
    --fSp15Lh: 1.6;
}

.imgCover {
    position: relative;
}
.imgCover img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.hoverZoomLink .hoverZoomImg {
    overflow: hidden;
}
.hoverZoomLink .hoverZoomImg img {
    transition: all 0.5s ease-out;
}
.hoverZoomLink:hover .hoverZoomImg img {
    transform: scale(1.05);
}
.cursorPointer {
    cursor: pointer;
}

.txtInnerBox.additionBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.txtInnerBox.additionBox .txtInner.addition {
    width: 48%;
}
.txtInnerBox.additionBox .txtInner.addition:nth-child(2n) {
    margin-left: 4%;
}
.txtInner.addition {
    font-size: 13px;
    letter-spacing: -0.5px;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-top: 3px;
    display: block;
    color: #000;
}
.txtInner.addition.rent {
    margin-bottom: 15px;
    text-align: right;
    color: #1e88e5;
}
.txtInner.addition.rent .rentTxt {
    font-weight: bold;
    font-size: 14px;
}
.roboto-condensed {
    font-family: "Roboto Condensed", sans-serif;
}

/* NEWアイコン（lazysizes未使用でも黄色表示） */
.secStudyEstate .cmnIcoNew {
    font-size: 0;
    width: 50px;
    height: 50px;
    background: url(../img/common/icoNew.png) center top no-repeat;
    z-index: 2;
}
@media only screen and (max-width: 1215px) {
    .secStudyEstate .cmnIcoNew {
        font-size: 10px;
        font-family: Verdana;
        width: 30px;
        height: 13px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff100;
    }
}

/* cmnBtn（詳細を見る）※CP側にcommonのcmnBtnが無いため */
.secStudyEstate .cmnBtn {
    width: 100%;
    max-width: 220px;
    height: 46px;
    margin: 15px auto 20px;
    color: #2b3339;
    font-size: var(--fPc13Fs, 13px);
    letter-spacing: var(--fPc13Ls, 0.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23px;
    box-shadow: 0 0 0 1px #52595f inset;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
}
.secStudyEstate .cmnBtn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #2b3339;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
}
.secStudyEstate .cmnBtnParent:hover .cmnBtn::before,
.secStudyEstate .cmnBtn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.secStudyEstate .cmnBtnParent:hover .cmnBtn,
.secStudyEstate .cmnBtn:hover {
    color: #fff;
}
@media only screen and (max-width: 1215px) {
    .secStudyEstate .cmnBtn {
        width: 100%;
        max-width: none;
        height: 35px;
        margin: 10px 0 0;
        border-radius: 18px;
        font-size: var(--fSp12Fs, 12px);
        letter-spacing: var(--fSp12Ls, 0);
    }
}

/* Study詳細の物件スライダー上書き */
.secStudyEstate.loginSlideList {
    margin-top: 50px;
    padding: 50px 0;
}
.secStudyEstate .wrapperMain {
    width: 102rem;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.secStudyEstate .tweetTit {
    font-size: var(--pcFontSize26, var(--fPc26Fs));
    letter-spacing: var(--fPc26Ls);
    font-weight: 700;
    margin-bottom: 30px;
}
.secStudyEstate.loginSlideList .boxSlider {
    position: relative;
}
.secStudyEstate.loginSlideList .boxSlider.wrapperMain {
    width: 102rem;
    max-width: 100%;
}
.secStudyEstate.loginSlideList .secSearchList {
    margin-top: 0;
    overflow: hidden;
    background: transparent;
    /* 比較欄削除後、top:-20pxのNEWが見切れないよう余白を確保 */
    padding-top: 25px;
}
.secStudyEstate.loginSlideList .searchList {
    display: flex;
    flex-wrap: nowrap;
}
.secStudyEstate.loginSlideList .searchList:not(.active) {
    display: flex;
}
.secStudyEstate.loginSlideList .searchItem {
    width: auto;
    margin-right: 0;
    margin-top: 0;
    height: auto;
}
/* 比較欄削除に伴い、お気に入り位置を画像上へ調整 */
.secStudyEstate.loginSlideList .boxFavorite {
    top: 10px;
}
.secStudyEstate.loginSlideList .searchItem:nth-child(4n),
.secStudyEstate.loginSlideList .searchItem:nth-child(n+5) {
    margin-right: 0;
    margin-top: 0;
}
.secStudyEstate.loginSlideList .swiper-button-prev,
.secStudyEstate.loginSlideList .swiper-button-next {
    width: 80px;
    height: 80px;
    margin-top: 0;
    top: calc(50% - 32px);
}
.secStudyEstate.loginSlideList .swiper-button-prev {
    left: -4rem;
    border-radius: 50%;
    background: url(../img/index/imgBtnHeroPrev.gif) center center / 22px auto no-repeat #fff;
}
.secStudyEstate.loginSlideList .swiper-button-next {
    right: -4rem;
    border-radius: 50%;
    background: url(../img/index/imgBtnHeroNext.gif) center center / 22px auto no-repeat #fff;
}
.secStudyEstate.loginSlideList .swiper-button-next:after,
.secStudyEstate.loginSlideList .swiper-button-prev:after {
    display: none;
}

@media only screen and (max-width: 1215px) {
    .secStudyEstate .wrapperMain,
    .secStudyEstate.loginSlideList .boxSlider.wrapperMain {
        width: 100%;
        padding: 0 2.5rem;
    }
}
@media only screen and (max-width: 1215px) {
    .txtInner.addition {
        font-size: 10px;
        line-height: 1.4;
    }
    .txtInner.addition.rent {
        margin-bottom: 5px;
        text-align: left;
    }
    .secStudyEstate.loginSlideList {
        padding: 0 0 30px;
        max-width: 60rem;
        margin: 50px auto 0;
    }
    .secStudyEstate.loginSlideList .secSearchList {
        padding-top: 0;
    }
    .secStudyEstate.loginSlideList .boxFavorite {
        top: 10px;
    }
    .secStudyEstate .wrapperMain,
    .secStudyEstate.loginSlideList .boxSlider.wrapperMain {
        padding: 0 2.5rem;
    }
    .secStudyEstate .tweetTit {
        font-size: var(--spFontSize24, var(--fSp24Fs));
        letter-spacing: var(--fSp24Ls);
        margin-bottom: 20px;
    }
    .secStudyEstate.loginSlideList .swiper-button-prev,
    .secStudyEstate.loginSlideList .swiper-button-next {
        width: 40px;
        height: 40px;
        display: block;
    }
    .secStudyEstate.loginSlideList .swiper-button-prev {
        left: 0.5rem;
        background-size: 14px auto;
    }
    .secStudyEstate.loginSlideList .swiper-button-next {
        right: 0.5rem;
        background-size: 14px auto;
    }
}
