@charset "UTF-8";

body {
    overflow-x: hidden;
    margin: 0;
    background: #F7F8F3;
}

.js-fade-up--delay-15 {
    --fade-delay: 0.15s;
}

.js-fade-up--delay-30 {
    --fade-delay: 0.3s;
}

.js-fade-up--delay-45 {
    --fade-delay: 0.45s;
}

.js-fade-up--delay-60 {
    --fade-delay: 0.6s;
}

.js-text-reveal:not(.is-prepared) {
    visibility: hidden;
}

.js-text:not(.js-text-reveal):not(.is-prepared) {
    visibility: hidden;
}

.js-text-reveal {
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.js-text-reveal .character {
    display: inline-block;
    transform: translateY(1.3em);
}

.js-text-reveal.is-show .character {
    transition: transform 0.7s var(--ease-out-quart);
    transition-delay: calc(0.06s * var(--index));
    transform: translateY(0);
    font-family: "Montserrat", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
    .js-text-reveal .character {
        transform: none;
        transition: none;
    }
}

.l-contents * {
    font-family: "Zen Old Mincho", serif;
}
.l-contents a {
    transition: .3s;
}

.l-main {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}
.l-contents a:hover,
.l-contents button:hover {
    opacity: 1;
}
.cmn__inner {
    width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.l-contents .ui-full-screen {
    margin-bottom: 0;
}

/*---------------------------------------------------
メインビジュアル スライダー
-----------------------------------------------------*/
.main__wrap {
    width: 100%;
    margin-bottom: 100px;
}

.mv-slider-area {
    position: relative;
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
}

.mv-slider {
    width: 100%;
}

.main__wrap .mv-slider__viewport {
    position: relative;
    width: 100%;
    height: 600px!important;
    overflow: hidden;
    -webkit-mask-image: url("/images/top/main-slide-mask.svg");
    mask-image: url("/images/top/main-slide-mask.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.mv-slider__slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    color: inherit;
    text-decoration: none;
    transition: opacity 1.8s ease, visibility 0s linear 1.8s;
}

.mv-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 1.8s ease, visibility 0s linear 0s;
}

.mv-slider__slide.is-leaving {
    opacity: 0;
    visibility: visible;
    z-index: 1;
    transition: opacity 1.8s ease, visibility 0s linear 1.8s;
}

.mv-slider__media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mv-slider__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transform-origin: center center;
    will-change: transform, opacity;
}

.mv-slider__slide.is-active .mv-slider__media img.is-kenburns {
    animation: mvKenBurns var(--mv-kenburns-duration, 10000ms) ease-out forwards;
}

.mv-slider__slide.is-leaving .mv-slider__media img {
    transition: opacity 1.8s ease;
}

@keyframes mvKenBurns {
    0% {
        transform: scale(1.0);
        opacity: 0.85;
    }
    12% {
        opacity: 1;
    }
    100% {
        transform: scale(1.12);
        opacity: 1;
    }
}

.mv-slider__controls {
    position: absolute;
    right: 43px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    min-width: 14px;
    z-index: 3;
}

.mv-slider__current,
.mv-slider__total {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #2c2c2c;
    white-space: nowrap;
    position: relative;
}
.mv-slider__total:before {
    content: "";
    width: 14px;
    height: 1px;
    background: #2c2c2c;
    position: absolute;
    top: -7px;
    left: -2px;
}

.mv-slider__progress {
    position: relative;
    width: 1px;
    height: 75px;
    background: rgba(44, 44, 44, 0.2);
    overflow: hidden;
}

.mv-slider__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2c2c2c;
    transform-origin: top center;
}

.mv-slider__progress-fill.is-animating {
    animation: mvSliderProgress var(--mv-slide-duration, 5000ms) linear forwards;
}

@keyframes mvSliderProgress {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

[class*=cmn__section--] {
    position: relative;
    padding: 90px 0;
}
.main__inner {
    position: relative;
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
}

.main__Search__btn {
    position: absolute;
    top: 155px;
    right: -30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 183px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main__Search__btn-item {
    margin: 0;
}

.main__Search__btn-link {
    display: block;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 4px 4px 0 #2c2c2c;
    color: #2c2c2c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main__Search__btn-link:hover {
    transform: translate(4px, 4px);
    box-shadow: none;
    opacity: 1;
}

.main__catch {
    font-family: "Montserrat", sans-serif;
    font-size: 151px;
    font-weight: 700;
    position: absolute;
    left: 53.2%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -110px;
    width: 1300px;
    z-index: 1;
    letter-spacing: 15px;
    overflow: hidden;
}

.main__catch.js-text span {
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    opacity: 0;
    line-height: 1.1;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main__catch.js-text.is-show span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .main__catch.js-text span {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.main__catch__text {
    position: absolute;
    top: 335px;
    left: -50px;
    z-index: 2;
    margin: 0;
    color: #2c2c2c;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.4px;
    white-space: nowrap;
    transform: translateX(-50%);
}

@media screen and (max-width: 1280px) {

    .main__inner,
    .mv-slider-area {
        width: calc(1080px * var(--mv-scale));
        max-width: calc(100vw - 40px);
        margin-left: 50px;
    }
    .main__wrap .mv-slider__viewport {
        height: 530px !important;
    }
    .main__catch {
        font-size: 120px;
        width: 1110px;
        bottom: -74px;
        left: 51.2%;
    }
    .main__catch__text {
        left: 110px;
        top: 255px;
    }
    .main__Search__btn {
        right: 72px;
        top: 115px;
        gap: 13px;
    }
    .mv-slider__controls {
        right: 103px;
        bottom: 5px;
    }
    .mv-slider__progress {
        height: 75px;
    }

}

.slick-dots {
    display: none;
}
/*---------------------------------------------------
MESSAGE
-----------------------------------------------------*/
.cmn__section--message {
    padding: 65px 0 110px;
}
.cmn__section--message,
.cmn__section--message * {
    font-family: "Noto Sans JP", sans-serif;
}
.cmn__section--message .cmn__inner {
    width: 1080px;
}
.message__contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message__body {
    width: 486px;
    flex-shrink: 0;
    margin-top: 40px;
}

.message__head {
    margin-bottom: 63px;
}

.message__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.message__label-dot {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.message__label-dot img {
    display: block;
}

.message__title {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.6px;
    color: #2c2c2c;
}

.message__text {
    margin: 0;
    width: 486px;
}

.message__text p {
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #2c2c2c;
}

.message__text p:last-child {
    margin-bottom: 0;
}

.message__link {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    padding-right: 26px;
    color: #2c2c2c;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.8px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.message__link::before {
    content: "";
    position: absolute;
    right: 8px;
    width: 18px;
    height: 6px;
    background: url(/images/top/cmn-arrow.svg) no-repeat center center / contain;
    transition: right 0.3s ease;
}

.message__link::after {
    content: "";
    position: absolute;
    right: 0;
    width: 18px;
    height: 18px;
    background: url(/images/top/cmn-arrow-circle.svg) no-repeat center center / contain;
}

.message__link:hover {
    color: #ff851a;
    opacity: 1;
}

.message__link:hover::before {
    right: 5px;
}

.message__visual {
    width: 538px;
    flex-shrink: 0;
    margin-top: 142px;
}

.message__img {
    display: block;
    width: 100%;
    height: auto;
}

.message__picture-slider {
    overflow: hidden;
    width: 100%;
    margin-top: 162px;
}

.message__picture-slider-track {
    display: flex;
    width: max-content;
    animation: messagePictureScroll 50s linear infinite;
    will-change: transform;
}

.message__picture-slider-group {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-shrink: 0;
    padding-right: 80px;
}

.message__picture-item {
    flex-shrink: 0;
}

.message__picture-item--wide {
    width: 400px;
    height: 371px;
}

.message__picture-item--square {
    width: 349px;
    height: 349px;
}

.message__picture-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes messagePictureScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .message__picture-slider-track {
        animation: none;
    }
}

.cmn__section--message .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--message .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--message .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/*---------------------------------------------------
新築物件
-----------------------------------------------------*/
.cmn__section--shinchiku {
    padding-bottom: 180px;
}
.cmn__section--shinchiku .cmn__inner{
    width: 1080px;
}

.cmn__section--shinchiku,
.cmn__section--shinchiku * {
    font-family: "Noto Sans JP", sans-serif;
}

.shinchiku__head {
    margin-bottom: 60px;
}

.shinchiku__head-line {
    width: 100%;
    height: 1px;
    margin-bottom: 37px;
    background: #2c2c2c;
}

.shinchiku__head-top {
    margin-bottom: 30px;
}

.shinchiku__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.shinchiku__label-dot {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.shinchiku__label-dot img {
    display: block;
}

.shinchiku__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shinchiku__title-left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.shinchiku__title-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 145px;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #737373;
    border-radius: 150px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.5px;
    color: #2c2c2c;
}

.shinchiku__title {
    margin: 0;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.9px;
    color: #2c2c2c;
}

.shinchiku__more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 219px;
    height: 69px;
    padding: 0 20px 0 23px;
    border: 1px solid #2c2c2c;
    border-radius: 5px;
    flex-shrink: 0;
    color: #2c2c2c;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.shinchiku__more:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.shinchiku__more-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.shinchiku__more-icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 25px;
    height: 17px;
}

.shinchiku__more-icon::before {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 28px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: filter 0.3s ease, right 0.3s ease;
}

.shinchiku__more-icon::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 35%;
    width: 25px;
    height: 25px;
    margin-top: -9px;
    background: url(/images/top/cmn-arrow-circle.svg) no-repeat center center / contain;
    transition: filter 0.3s ease;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
}

.shinchiku__more:hover .shinchiku__more-icon::before {
    right: 10px;
    filter: brightness(0) invert(1);
}

.shinchiku__more:hover .shinchiku__more-icon::after {
    filter: brightness(0) invert(1);
}

.shinchiku__list {
    display: flex;
    gap: 40px;
}

.shinchiku__card {
    display: block;
    width: 520px;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shinchiku__card:hover {
    opacity: 1;
    color: #2c2c2c;
}

.shinchiku__card-visual {
    position: relative;
    margin-bottom: 15px;
}

.shinchiku__card-img {
    overflow: hidden;
    width: 100%;
    height: 340px;
    border-radius: 5px;
}

.shinchiku__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.shinchiku__card:hover .shinchiku__card-img img {
    transform: scale(1.08);
}

.shinchiku__card-badge {
    position: absolute;
    top: 0;
    right: 11px;
    width: 50px;
    height: 59px;
}

.shinchiku__card-badge-shape {
    display: block;
    width: 100%;
    height: 100%;
}

.shinchiku__card-badge-text {
    position: absolute;
    top: 11px;
    left: 50%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #fff;
    white-space: nowrap;
    transform: translateX(-50%);
}

.shinchiku__card-name {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shinchiku__card-tag p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    margin: 0 0 17px;
    padding: 2px 10px;
    box-sizing: border-box;
    border: 1px solid #aeaeae;
    border-radius: 130px;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
}

.shinchiku__card-detail {
    margin: 0;
}

.shinchiku__card-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding-bottom: 6px;
    border-bottom: 1px solid #aeaeae;
}

.shinchiku__card-detail-row + .shinchiku__card-detail-row {
    margin-top: 10px;
}

.shinchiku__card-detail-label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
}
.shinchiku__card-detail-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
}
.shinchiku__card-detail-value-wrap span.price,
.shinchiku__card-detail-value{
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1.1px;
}


.shinchiku__card-detail-sub,
.shinchiku__card-detail-unit {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #737373;
}

.shinchiku__card-detail-unit {
    color: #2c2c2c;
}

.cmn__section--shinchiku .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--shinchiku .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.shinchiku__list > .shinchiku__card.js-fade-up:nth-child(1) {
    --fade-delay: 0.15s;
}

.shinchiku__list > .shinchiku__card.js-fade-up:nth-child(2) {
    --fade-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--shinchiku .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*---------------------------------------------------
物件スライダー（共通）
-----------------------------------------------------*/
.cmn__section--bkn .cmn__inner{
    width: 1080px;
}
.cmn__section--bkn {
    padding-top: 63px;
    padding-bottom: 50px;
}
.cmn__section--bkn,
.cmn__section--bkn * {
    font-family: "Noto Sans JP", sans-serif;
}

.bkn__head {
    margin-bottom: 65px;
}

.bkn__head-line {
    width: 100%;
    height: 1px;
    margin-bottom: 37px;
    background: #2c2c2c;
}

.bkn__head-top {
    margin-bottom: 30px;
}

.bkn__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.bkn__label-dot {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.bkn__label-dot img {
    display: block;
}

.bkn__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-right: 10px;
}

.bkn__title {
    margin: 0;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.9px;
    color: #2c2c2c;
}

.bkn__more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 219px;
    height: 69px;
    padding: 0 20px 0 23px;
    border: 1px solid #2c2c2c;
    border-radius: 5px;
    flex-shrink: 0;
    color: #2c2c2c;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bkn__more:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.bkn__more-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.bkn__more-icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 25px;
    height: 17px;
}

.bkn__more-icon::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 30px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: filter 0.3s ease, right 0.3s ease;
}

.bkn__more-icon::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 40%;
    width: 26px;
    height: 26px;
    margin-top: -9px;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
    transition: filter 0.3s ease;
}

.bkn__more:hover .bkn__more-icon::before {
    right: 13px;
    filter: brightness(0) invert(1);
}

.bkn__more:hover .bkn__more-icon::after {
    filter: brightness(0) invert(1);
}

.bkn__slider-area {
    width: 100%;
    overflow: hidden;
}

.bkn__slider {
    overflow: hidden;
}

.bkn__slider .bkn__slide {
    width: 420px;
    height: auto;
    box-sizing: border-box;
}

.bkn__slider:not(.slick-initialized) .bkn__slide + .bkn__slide {
    margin-left: 60px;
}

.bkn__slider.slick-initialized .bkn__slide {
    margin: 0 30px;
}

.bkn__slider.is-static {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.bkn__card {
    display: block;
    width: 420px;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bkn__card:hover {
    opacity: 1;
    color: #2c2c2c;
}

.bkn__card-visual {
    position: relative;
    margin-bottom: 10px;
}

.bkn__card-img {
    overflow: hidden;
    width: 100%;
    height: 275px;
    border-radius: 5px;
}

.bkn__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.bkn__card:hover .bkn__card-img img {
    transform: scale(1.08);
}

.bkn__card-badge {
    position: absolute;
    top: 0;
    right: 14px;
    width: 50px;
    height: 59px;
}

.bkn__card-badge-shape {
    display: block;
    width: 100%;
    height: 100%;
}

.bkn__card-badge-text {
    position: absolute;
    top: 11px;
    left: 50%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #fff;
    white-space: nowrap;
    transform: translateX(-50%);
}

.bkn__card-name {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bkn__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    margin-bottom: 16px;
}

.bkn__card-tags .bkn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 2px 10px;
    box-sizing: border-box;
    border: 1px solid #aeaeae;
    border-radius: 130px;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
}

.bkn__card-detail {
    margin: 0;
}

.bkn__card-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding-bottom: 8px;
    border-bottom: 1px solid #aeaeae;
}

.bkn__card-detail-row + .bkn__card-detail-row {
    margin-top: 10px;
}

.bkn__card-detail-label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
}

.bkn__card-detail-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
}

.bkn__card-detail-value,
.bkn__card-detail-value-wrap span.price {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1.1px;
}

.bkn__card-detail-sub,
.bkn__card-detail-unit {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #737373;
}

.bkn__card-detail-unit {
    color: #2c2c2c;
}

.bkn__controls {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 46px;
    margin-top: 60px;
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}

.bkn__controls .bkn__nav.slick-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 43px;
    height: 30px;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.bkn__controls .bkn__nav.slick-arrow::before {
    content: none;
    display: none;
}

.bkn__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 43px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.bkn__nav--prev .bkn__nav-icon {
    transform: scaleX(-1);
}

.bkn__nav-icon {
    position: relative;
    display: block;
    width: 43px;
    height: 30px;
}

.bkn__nav-icon::before {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    width: 30px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: right 0.3s ease;
}

.bkn__nav-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -13px;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
}

.bkn__nav:hover .bkn__nav-icon::before {
    right: 3px;
}

.bkn__pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #2c2c2c;
}

.bkn__pagination-sep {
    display: block;
    width: 1px;
    height: 14px;
    background: #2c2c2c;
}

.cmn__section--bkn .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--bkn .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--bkn .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .bkn__card-img img {
        transition: none;
    }
}

/*---------------------------------------------------
特集物件
-----------------------------------------------------*/
.cmn__section--feature {
    position: relative;
    background: #f7f8f3;
    padding: 325px 0 100px;
}

.cmn__section--feature,
.cmn__section--feature * {
    font-family: "Noto Sans JP", sans-serif;
}

.feature__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.feature__deco img {
    display: block;
    width: 100%;
    height: auto;
}

.feature__deco--01 {
    top: -303px;
    left: -390px;
    width: 683px;
}

.feature__deco--02 {
    top: 108px;
    right: -392px;
    width: 509px;
}

.cmn__section--feature .cmn__inner {
    z-index: 1;
}

.feature__layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 200px;
    max-width: 1080px;
    margin: 0 auto;
}

.feature__head {
    flex-shrink: 0;
    width: 301px;
}

.feature__label {
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 5.4px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.feature__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.feature__grid {
    display: grid;
    grid-template-columns: repeat(2, 262px);
    gap: 55px 53px;
    flex-shrink: 0;
    margin-top: -80px;
}

.feature__card {
    display: block;
    width: 262px;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.feature__card:hover {
    opacity: 1;
    color: #fff;
}

.feature__card-shape {
    --feature-clip: polygon(50% 0%, 100% 18.59%, 100% 100%, 0% 100%, 0% 18.59%);
    position: relative;
    display: block;
    width: 262px;
    height: 243px;
    overflow: hidden;
    clip-path: var(--feature-clip);
}

.feature__card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.feature__card:hover .feature__card-img {
    transform: scale(1.1);
}

.feature__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.35);
}

.feature__card-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 16px 0px;
    text-align: center;
}

.feature__card-text-line {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.2px;
}

.cmn__section--feature .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--feature .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.feature__grid > .feature__card.js-fade-up:nth-child(1) {
    --fade-delay: 0.15s;
}

.feature__grid > .feature__card.js-fade-up:nth-child(2) {
    --fade-delay: 0.3s;
}

.feature__grid > .feature__card.js-fade-up:nth-child(3) {
    --fade-delay: 0.45s;
}

.feature__grid > .feature__card.js-fade-up:nth-child(4) {
    --fade-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--feature .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .feature__card-img {
        transition: none;
    }
}

/*---------------------------------------------------
お知らせ
-----------------------------------------------------*/
.cmn__section--news {padding-top: 47px;}

.cmn__section--news,
.cmn__section--news * {
    font-family: "Noto Sans JP", sans-serif;
}

.news__head {
    max-width: 1080px;
    margin: 0 auto 71px;
}

.news__label {
    margin: 0 0 13px;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 5.4px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.news__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.news__columns {
    display: flex;
    justify-content: space-between;
    gap: 58px;
    max-width: 1080px;
    margin: 0 auto;
}

.news__column {
    width: 511px;
    flex-shrink: 0;
}

.news__column-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    min-height: 43px;
    margin-bottom: 22px;
}

.news__column-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.2px;
    color: #2c2c2c;
}

.news__column-sub {
    margin: 17px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #e6e7e3;
}

.news__scroll {
    max-height: 450px;
    padding-right: 30px;
}

.news__scroll .simplebar-track.simplebar-vertical {
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background-color: #e6e7e3;
}

.news__scroll .simplebar-scrollbar:before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #2c2c2c;
    border-radius: 0;
    opacity: 1;
}

.news__scroll .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
}

.news__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news__item {
    border-bottom: 1px solid #2c2c2c;
}

.news__item:first-child {
    border-top: 1px solid #2c2c2c;
}

.news__block {
    display: flex;
    align-items: center;
    gap: 41px;
    padding: 30px 0;
    color: #2c2c2c;
    text-decoration: none;
}

.news__thumb {
    display: block;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 5px;
}

.news__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.news__date {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.news__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.news__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 219px;
    height: 69px;
    margin-top: 36px;
    margin-left: auto;
    padding: 0 26px 0 23px;
    border: 1px solid #2c2c2c;
    border-radius: 5px;
    color: #2c2c2c;
    text-decoration: none;
    background: #f7f8f3;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.news__more:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.news__more-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.news__more-icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 25px;
    height: 17px;
}

.news__more-icon::before {
    content: "";
    position: absolute;
    right: 11px;
    top: 37%;
    width: 30px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: filter 0.3s ease, right 0.3s ease;
}

.news__more-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 26px;
    height: 26px;
    margin-top: -14px;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
    transition: filter 0.3s ease;
}

.news__more:hover .news__more-icon::before {
    right: 6px;
    filter: brightness(0) invert(1);
}

.news__more:hover .news__more-icon::after {
    filter: brightness(0) invert(1);
}

.cmn__section--news .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--news .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--news .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*---------------------------------------------------
店舗情報
-----------------------------------------------------*/
.cmn__section--store {
    padding: 100px 0 130px;
}

.cmn__section--store,
.cmn__section--store * {
    font-family: "Noto Sans JP", sans-serif;
}

.store__panel {
    position: relative;
    max-width: 1920px;
    min-height: 780px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.store__media {
    position: absolute;
    inset: 0;
}

.store__bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store__inner {
    position: relative;
    z-index: 1;
}

.store__body {
    padding: 83px 0 80px;
    box-sizing: border-box;
}

.store__head {
    flex-shrink: 0;
    color: #fff;
    margin-left: 30px;
}

.store__label {
    margin: 0 0 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 5.4px;
    text-transform: uppercase;
    color: #fff;
}

.store__label-line {
    display: block;
}

.store__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #fff;
}

.store__cards {
    display: flex;
    gap: 38px;
    flex-shrink: 0;
    margin-top: 61px;
    justify-content: flex-end;
    padding-right: 29px;
}

.store__card {
    display: block;
    width: 353px;
    min-height: 363px;
    padding: 29.5px 28.5px 26px;
    box-sizing: border-box;
    border-radius: 5px;
    background: #fff;
    backdrop-filter: blur(27px);
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store__card:hover {
    opacity: 1;
    color: #2c2c2c;
}

.store__card-img {
    overflow: hidden;
    width: 100%;
    height: 189px;
    margin-bottom: 18px;
    border-radius: 5px;
}

.store__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

a.store__card:hover .store__card-img img {
    transform: scale(1.08);
}

.store__card-name {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #2c2c2c;
    padding-left: 5px;
}

.store__card-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: absolute;
    right: 23px;
    bottom: 25px;
}

.store__card-more-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.store__card-more-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 17px;
}

.store__card-more-icon::before {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 18px;
    height: 6px;
    margin-top: -3px;
    background: url(/images/top/cmn-arrow.svg) no-repeat center center / contain;
    transition: right 0.3s ease;
}

.store__card-more-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: url(/images/top/cmn-arrow-circle.svg) no-repeat center center / contain;
}

a.store__card:hover  {
    background-color: #F7F8F3;
}

a.store__card:hover .store__card-more-icon::before {
    right: 3px;
}

.cmn__section--store .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--store .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.store__cards > .store__card.js-fade-up:nth-child(1) {
    --fade-delay: 0.15s;
}

.store__cards > .store__card.js-fade-up:nth-child(2) {
    --fade-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--store .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .store__card-img img {
        transition: none;
    }
}

/*---------------------------------------------------
スタッフ紹介
-----------------------------------------------------*/
.cmn__section--staff {
    position: relative;
    padding: 240px 0 40px;
}

.cmn__section--staff,
.cmn__section--staff * {
    font-family: "Noto Sans JP", sans-serif;
}

.staff__deco {
    position: absolute;
    top: -240px;
    left: -386px;
    width: 1617px;
    height: 1687px;
    pointer-events: none;
    z-index: 0;
}

.staff__deco img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.35;
}

.staff__inner {
    position: relative;
    z-index: 1;
}

.staff__head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto 60px;
}

.staff__head {
    flex-shrink: 0;
}

.staff__label {
    margin: 0 0 13px;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 5.4px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.staff__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.staff__controls {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 46px;
    flex-shrink: 0;
}

.staff__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 43px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.staff__nav--prev .staff__nav-icon {
    transform: scaleX(-1);
}

.staff__nav-icon {
    position: relative;
    display: block;
    width: 43px;
    height: 30px;
}

.staff__nav-icon::before {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    width: 30px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: right 0.3s ease;
}

.staff__nav-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -13px;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
}

.staff__nav:hover .staff__nav-icon::before {
    right: 3px;
}

.staff__pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #2c2c2c;
}

.staff__pagination-sep {
    display: block;
    width: 1px;
    height: 14px;
    background: #2c2c2c;
}

.staff__slider-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.staff__slider {
    overflow: visible;
}

.staff__slider:not(.slick-initialized),
.staff__slider.is-static {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
}

.staff__slider .staff__slide {
    width: auto;
    height: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

.staff__slider:not(.slick-initialized) .staff__slide:has(.staff__card-visual--home) {
    width: 400px;
}

.staff__slider:not(.slick-initialized) .staff__slide:has(.staff__card-visual--circle) {
    width: 349px;
}

.staff__slider.slick-initialized .staff__slide {
    margin: 0 40px;
}

.staff__slider.slick-initialized .staff__slide:has(.staff__card-visual--home) {
    width: 400px;
}

.staff__slider.slick-initialized .staff__slide:has(.staff__card-visual--circle) {
    width: 349px;
}

.staff__controls .staff__nav.slick-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 43px;
    height: 30px;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.staff__controls .staff__nav.slick-arrow::before {
    content: none;
    display: none;
}

.staff__card {
    display: block;
    color: #2c2c2c;
    text-decoration: none;
}

.staff__card:hover {
    opacity: 1;
    color: #2c2c2c;
}

.staff__card-visual {
    position: relative;
    margin: 0 auto;
}

.staff__card-visual--home {
    width: 400px;
}

.staff__card-visual--circle {
    width: 349px;
}

.staff__card-img {
    overflow: hidden;
    transform: translateZ(0);
}

.staff__card-visual--home .staff__card-img {
    width: 400px;
    height: 371px;
    -webkit-mask-image: url(/images/top/staff-img-home.svg);
    mask-image: url(/images/top/staff-img-home.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.staff__card-visual--circle .staff__card-img {
    width: 349px;
    height: 349px;
    -webkit-mask-image: url(/images/top/staff-img-circle.svg);
    mask-image: url(/images/top/staff-img-circle.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.staff__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.staff__card:hover .staff__card-img img {
    transform: scale(1.08);
}

.staff__card-name {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 4px;
    margin: 9px 0 0;
    min-height: 36px;
    text-align: center;
}

.staff__card-name-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.staff__card-office {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #737373;
}


.cmn__section--staff .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--staff .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--staff .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .staff__card-img img {
        transition: none;
    }
}

/*---------------------------------------------------
スタッフブログ
-----------------------------------------------------*/
.cmn__section--blog {
    padding: 40px 0 150px;
    z-index: 1;
}

.cmn__section--blog,
.cmn__section--blog * {
    font-family: "Noto Sans JP", sans-serif;
}

.blog__inner {
    max-width: 1080px;
}

.blog__head {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
}

.blog__label {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.blog__title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #2c2c2c;
}

.blog__columns {
    display: flex;
    justify-content: center;
    gap: 58px;
}

.blog__list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 55px;
}

.cmn__section--blog .blog__item {
    border-bottom: 1px solid #2c2c2c;
    width: 511px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.blog__item:first-child ,
.blog__item:nth-child(2){
    border-top: 1px solid #2c2c2c;
}

.blog__link {
    display: flex;
    align-items: center;
    gap: 41px;
    padding: 30px 0;
    color: #2c2c2c;
    text-decoration: none;
}

.blog__link:hover {
    opacity: 1;
    color: #2c2c2c;
}

.blog__thumb {
    display: block;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 5px;
}

.blog__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__body-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.blog__date {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.blog__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.blog__more,
.staff__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 343px;
    height: 69px;
    margin-top: 58px;
    margin-left: auto;
    padding: 0 26px 0 23px;
    border: 1px solid #2c2c2c;
    border-radius: 5px;
    color: #2c2c2c;
    text-decoration: none;
    background: #f7f8f3;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.staff__more {
    margin-right: 30px;
}
.blog__more:hover,
.staff__more:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.blog__more-text,
.staff__more-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.blog__more-icon,
.staff__more-icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 25px;
    height: 30px;
}

.blog__more-icon::before,
.staff__more-icon::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 45%;
    width: 30px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: filter 0.3s ease, right 0.3s ease;
}

.blog__more-icon::after,
.staff__more-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 40%;
    width: 26px;
    height: 26px;
    margin-top: -9px;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
    transition: filter 0.3s ease;
}

.blog__more:hover .blog__more-icon::before,
.staff__more:hover .staff__more-icon::before {
    right: 5px;
    filter: brightness(0) invert(1);
}

.blog__more:hover .blog__more-icon::after,
.staff__more:hover .staff__more-icon::after {
    filter: brightness(0) invert(1);
}

.cmn__section--blog .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--blog .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--blog .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*---------------------------------------------------
ハッピーホームのサービス
-----------------------------------------------------*/
.cmn__section--service {
    background: #f7f8f3;
    overflow-x: clip;
    padding-top: 150px;
    padding-bottom: 140px;
    height: 745px;
    position: relative;
    z-index: 1;
}
.cmn__section--service .cmn__inner {
    width: 1080px;
}
.cmn__section--service,
.cmn__section--service * {
    font-family: "Noto Sans JP", sans-serif;
}

.service__layout {
    display: flex;
    align-items: flex-start;
    gap: 126px;
    width: 1920px;
    margin: 0 auto;
    box-sizing: border-box;
    position: absolute;
    height: 459px;
}

.service__aside-col {
    flex-shrink: 0;
    width: 283px;
}

.service__aside {
    padding-top: 110px;
}

.service__label {
    margin: 0 0 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 54px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 5.4px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.service__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.service__controls {
    display: flex;
    align-items: center;
    gap: 46px;
    margin-top: 57px;
}

.service__controls .service__nav.slick-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 43px;
    height: 30px;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.service__controls .service__nav.slick-arrow::before {
    content: none;
    display: none;
}

.service__controls .service__nav.slick-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.service__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 43px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.service__nav--prev .service__nav-icon {
    transform: scaleX(-1);
}

.service__nav-icon {
    position: relative;
    display: block;
    width: 43px;
    height: 30px;
}

.service__nav-icon::before {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    width: 30px;
    height: 10px;
    margin-top: -3px;
    background: url(/images/top/swiper-arrow.svg) no-repeat center center / contain;
    transition: right 0.3s ease;
}

.service__nav-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -13px;
    background: url(/images/top/swiper-arrow-circle.svg) no-repeat center center / contain;
}

.service__nav:hover .service__nav-icon::before {
    right: 3px;
}

.service__pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #2c2c2c;
}

.service__pagination-sep {
    display: block;
    width: 1px;
    height: 14px;
    background: #2c2c2c;
}

.service__slider-area {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.service__slider {
    overflow: visible;
}

.service__slider:not(.slick-initialized) {
    display: flex;
    gap: 35px;
}

.service__slider.slick-initialized .service__slide {
    width: 400px;
    margin-right: 35px;
}

.service__slide {
    flex-shrink: 0;
}

.service__card {
    display: block;
    color: #2c2c2c;
    text-decoration: none;
}

.service__card:hover {
    opacity: 1;
    color: #2c2c2c;
}

.service__card-visual {
    width: 400px;
}

.service__card-img {
    width: 400px;
    height: 371px;
    overflow: hidden;
    -webkit-mask-image: url(/images/top/staff-img-home.svg);
    mask-image: url(/images/top/staff-img-home.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.service__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.service__card:hover .service__card-img img {
    transform: scale(1.08);
}

.service__card-title {
    margin: 16px 0 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.cmn__section--service .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--service .service__slider-area.js-fade-up {
    --fade-delay: 0.15s;
}

.cmn__section--service .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--service .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .service__card-img img {
        transition: none;
    }
}

/*---------------------------------------------------
ロゴスライダー
-----------------------------------------------------*/
.logo__slider {
    overflow: hidden;
    width: 100%;
}

.logo__slider-track {
    display: flex;
    width: max-content;
    animation: logoSliderScroll 80s linear infinite;
    will-change: transform;
}

.logo__slider-group {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    padding-right: 40px;
}

.logo__slider-text {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 100px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ebebeb;
    white-space: nowrap;
}

@keyframes logoSliderScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo__slider-track {
        animation: none;
    }
}

/*---------------------------------------------------
物件を探す
-----------------------------------------------------*/
.cmn__section--search {
    position: relative;
    padding: 0 0 70px;
    overflow: hidden;
    margin-top: 115px;
}

.cmn__section--search,
.cmn__section--search * {
    font-family: "Noto Sans JP", sans-serif;
}

.search__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 780px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.search__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
}

.search__inner {
    position: relative;
    z-index: 1;
    width: 1080px;
    padding-top: 61px;
}

.search__panel {
    padding: 60px 51px 53px;
    border-radius: 5px;
    background: #fff;
}

.search__head {
    margin-bottom: 24px;
}

.search__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #2c2c2c;
}

.search__label-dot {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.search__label-dot img {
    display: block;
}

.search__title {
    margin: 0;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.9px;
    color: #2c2c2c;
}

.search__columns {
    display: flex;
    gap: 11px;
    margin-bottom: 10px;
}

.search__col {
    flex: 1;
    padding: 30px 25px 25px;
    border-radius: 5px;
    background: #f8f8f8;
}

.search__col-label,
.search__land-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 13px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.search__col-label-dot,
.search__land-label-dot {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.search__col-label-dot img,
.search__land-label-dot img {
    display: block;
}

.search__type-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.search__type-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid #aeaeae;
    border-radius: 5px;
    background: #2c2c2c;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.search__type-btn:hover {
    background: #fff;
    color: #2c2c2c;
    opacity: 1;
}

.search__module {
    display: block;
    margin-bottom: 8px;
    padding: 15px 16px 20px;
    border-radius: 5px;
    background: #ededed;
    color: #2c2c2c;
}

.search__module--keyword {
    min-height: 135px;
    margin-bottom: 6px;
}

.search__module-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.search__module-title,
.search__land-link-text,
.search__sub-link-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.search__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: inherit;
    text-decoration: none;
}

.search__more:hover {
    opacity: 1;
}

.search__more-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.search__more-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 17px;
}

.search__more-icon::before {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 18px;
    height: 6px;
    margin-top: -3px;
    background: url(/images/top/cmn-arrow.svg) no-repeat center center / contain;
    transition: filter 0.3s ease, right 0.3s ease;
}

.search__more-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: url(/images/top/cmn-arrow-circle.svg) no-repeat center center / contain;
    transition: filter 0.3s ease;
}

.search__land-link:hover .search__more-text {
    color: #fff;
}

.search__land-link:hover .search__more-icon::before {
    right: 3px;
    filter: brightness(0) invert(1);
}

.search__land-link:hover .search__more-icon::after {
    filter: brightness(0) invert(1);
}

.search__module .search__more:hover .search__more-text {
    color: #ff851a;
}

.search__module .search__more:hover .search__more-icon::before {
    right: 3px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(1000%) hue-rotate(346deg) brightness(102%) contrast(101%);
}

.search__module .search__more:hover .search__more-icon::after {
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(1000%) hue-rotate(346deg) brightness(102%) contrast(101%);
}

.search__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}

.search__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 79px;
    padding: 2px 10px;
    box-sizing: border-box;
    border: 1px solid #aeaeae;
    border-radius: 130px;
    background: #fff;
    height: 29px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: #2c2c2c;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.search__tag:hover {
    background: #2c2c2c;
    border-color: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.search__sub-links {
    display: flex;
    gap: 5px;
    margin-top: 6px;
}

.search__sub-link {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 18px 16px;
    border-radius: 5px;
    background: #ededed;
    color: #2c2c2c;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.search__sub-link:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.search__sub-link-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 17px;
    flex-shrink: 0;
}

.search__sub-link-icon::before {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 18px;
    height: 6px;
    margin-top: -3px;
    background: url(/images/top/cmn-arrow.svg) no-repeat center center / contain;
    transition: filter 0.3s ease, right 0.3s ease;
}

.search__sub-link-icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: url(/images/top/cmn-arrow-circle.svg) no-repeat center center / contain;
    transition: filter 0.3s ease;
}

.search__sub-link:hover .search__sub-link-icon::before {
    right: 3px;
    filter: brightness(0) invert(1);
}

.search__sub-link:hover .search__sub-link-icon::after {
    filter: brightness(0) invert(1);
}

.search__land {
    display: flex;
    align-items: flex-start;
    gap: 127px;
    margin-top: 10px;
    padding: 31px 32px 31px 40px;
    border-radius: 5px;
    background: rgba(170, 170, 170, 0.08);
}

.search__land-label {
    flex-shrink: 0;
    margin: 0;
    min-width: 80px;
}

.search__land-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    flex: 1;
}

.search__land-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    height: 68px;
    padding: 23px 16px;
    border-radius: 5px;
    background: #ededed;
    color: #2c2c2c;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.search__land-link:hover {
    background: #2c2c2c;
    color: #fff;
    opacity: 1;
}

.cmn__section--search .js-fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--fade-delay, 0s);
    will-change: opacity, transform;
}

.cmn__section--search .js-fade-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .cmn__section--search .js-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.search__stats {
    display: flex;
    gap: 10px;
    margin-top: 60px;
}

.search__stats > .search__stat.js-fade-up:nth-child(2) {
    --fade-delay: 0.15s;
}

.search__stats > .search__stat.js-fade-up:nth-child(3) {
    --fade-delay: 0.3s;
}

.search__stat {
    flex: 1;
    min-height: 235px;
    padding: 33px 33px 24px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(27px);
}

.search__stat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.search__stat-label {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.9px;
    color: #2c2c2c;
}

.search__stat-icon {
    display: block;
    flex-shrink: 0;
}

.search__stat-line {
    width: 100%;
    max-width: 290px;
    height: 1px;
    margin: 18px auto 70px;
    background: #2c2c2c;
}

.search__stat-value {
    display: flex;
    align-items: baseline;
    justify-content: end;
    gap: 8px;
    margin: 0;
    padding-right: 9px;
}

.search__stat-num {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 4.8px;
    color: #2c2c2c;
}

.search__stat-unit {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.2px;
    color: #2c2c2c;
}