﻿:root {
    --yj-section-brand: #4ea2b2;
    --yj-section-primary: #397d8a;
    --yj-section-primary-dark: #255d67;
    --yj-section-primary-pale: #eef8fa;
    --yj-section-primary-soft: #dceff2;
    --yj-section-text: #24383d;
    --yj-section-muted: #5d7075;
    --yj-section-line: #d9e8eb;
    --yj-section-offwhite: #f7fafb;
    --yj-section-white: #fff;
}

.yj-front-sections {
    position: relative;
    z-index: 2;
    isolation: isolate;
    color: var(--yj-section-text);
    background: transparent;
}

.yj-front-sections *,
.yj-front-sections *::before,
.yj-front-sections *::after {
    box-sizing: border-box;
}

.yj-front-sections img {
    display: block;
    max-width: 100%;
}

.yj-front-sections a {
    text-decoration: none;
}

.yj-front-sections h2,
.yj-front-sections h3 {
    padding: 0;
    color: var(--yj-section-text);
    border: 0;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.yj-front-sections h2::before,
.yj-front-sections h2::after,
.yj-front-sections h3::before,
.yj-front-sections h3::after {
    display: none;
}

.yj-section-kicker {
    margin: 0 0 10px;
    color: var(--yj-section-primary);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.yj-appraisal {
    position: relative;
    z-index: 5;
    margin-top: 0;
    margin-bottom: -92px;
    transform: translateY(-92px);
}

.yj-appraisal__panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(30px, 4vw, 48px);
    padding: clamp(32px, 4vw, 48px);
    background: var(--yj-section-white);
    border: 1px solid rgba(78, 162, 178, 0.24);
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(37, 93, 103, 0.16);
}

.yj-appraisal__intro {
    padding-right: clamp(24px, 3vw, 42px);
    border-right: 1px solid var(--yj-section-line);
}

.yj-appraisal__intro h2 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.35;
}

.yj-appraisal__lead {
    margin: 0 0 24px;
    color: var(--yj-section-muted);
    font-size: 0.94rem;
    line-height: 1.85;
}

.yj-benefit-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.yj-benefit {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 8px;
    background: var(--yj-section-primary-pale);
    border-radius: 10px;
    text-align: center;
}

.yj-benefit img {
    width: 38px;
    height: 38px;
}

.yj-benefit span {
    color: var(--yj-section-primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.35;
}

.yj-appraisal__choice {
    align-self: center;
}

.yj-appraisal__choice-label {
    margin: 0 0 14px;
    color: var(--yj-section-muted);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.yj-property-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.yj-property-type {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    color: var(--yj-section-text);
    background: var(--yj-section-white);
    border: 1px solid var(--yj-section-line);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(37, 93, 103, 0.06);
    font-weight: 800;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.yj-property-type:hover,
.yj-property-type:focus-visible {
    color: var(--yj-section-primary-dark);
    background: var(--yj-section-primary-pale);
    border-color: var(--yj-section-brand);
    box-shadow: 0 12px 28px rgba(37, 93, 103, 0.12);
    transform: translateY(-3px);
}

.yj-property-type img {
    width: 54px;
    height: 54px;
}

.yj-appraisal__button {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 26px;
    color: var(--yj-section-white);
    background: var(--yj-section-primary);
    border: 2px solid var(--yj-section-primary);
    border-radius: 9px;
    box-shadow: 0 12px 26px rgba(37, 93, 103, 0.17);
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.yj-appraisal__button:hover,
.yj-appraisal__button:focus-visible {
    color: var(--yj-section-white);
    background: var(--yj-section-primary-dark);
    border-color: var(--yj-section-primary-dark);
    box-shadow: 0 15px 32px rgba(37, 93, 103, 0.24);
    transform: translateY(-2px);
}

.yj-property-type:focus-visible,
.yj-appraisal__button:focus-visible {
    outline: 3px solid rgba(78, 162, 178, 0.48);
    outline-offset: 3px;
}

.yj-content-section {
    padding: clamp(78px, 8vw, 112px) 0;
}

.yj-section-heading {
    max-width: 760px;
    margin: 0 auto clamp(34px, 5vw, 52px);
    text-align: center;
}

.yj-section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.35;
}

.yj-section-heading h2::after {
    display: block;
    width: 54px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--yj-section-brand);
    content: "";
}

.yj-section-heading > p:last-child {
    margin: 0;
    color: var(--yj-section-muted);
    line-height: 1.9;
}

.yj-concerns {
    padding-top: clamp(92px, 10vw, 132px);
    background: var(--yj-section-white);
}

.yj-concern-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.yj-concern-card {
    padding: 34px 24px 30px;
    background: var(--yj-section-offwhite);
    border: 1px solid var(--yj-section-line);
    border-radius: 16px;
    text-align: center;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.yj-concern-card:hover {
    box-shadow: 0 16px 38px rgba(37, 93, 103, 0.12);
    transform: translateY(-4px);
}

.yj-concern-card img {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
}

.yj-concern-card h3 {
    margin: 0 0 10px;
    font-size: 1.16rem;
    line-height: 1.5;
}

.yj-concern-card p {
    margin: 0;
    color: var(--yj-section-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.yj-reasons {
    background: var(--yj-section-primary-pale);
}

.yj-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.yj-reason-card {
    overflow: hidden;
    background: var(--yj-section-white);
    border: 1px solid rgba(78, 162, 178, 0.2);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(37, 93, 103, 0.1);
}

.yj-reason-card__visual {
    position: relative;
    height: 230px;
}

.yj-reason-card__photo {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center 58%;
}

.yj-reason-card__badge {
    position: absolute;
    z-index: 2;
    bottom: -34px;
    left: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    background: var(--yj-section-white);
    border: 3px solid var(--yj-section-brand);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(37, 93, 103, 0.2);
    transform: translateX(-50%);
}

.yj-reason-card__badge img {
    display: block;
    width: 44px;
    height: 44px;
}

.yj-reason-card__icon-wrap {
    display: grid;
    min-height: 230px;
    place-items: center;
    background:
        radial-gradient(circle at center, #fff 0 34%, transparent 35%),
        linear-gradient(145deg, var(--yj-section-primary-soft), #f7fbfb);
}

.yj-reason-card__icon-wrap img {
    width: 122px;
    height: 122px;
}

.yj-reason-card__body {
    position: relative;
    z-index: 1;
    padding: 50px 28px 32px;
}

.yj-reason-card__number {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--yj-section-primary);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.yj-reason-card h3 {
    margin: 0 0 12px;
    font-size: 1.28rem;
    line-height: 1.55;
}

.yj-reason-card p {
    margin: 0;
    color: var(--yj-section-muted);
    font-size: 0.94rem;
    line-height: 1.85;
}

.yj-methods {
    background: var(--yj-section-white);
}

.yj-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.yj-method-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: clamp(28px, 3vw, 38px);
    background: var(--yj-section-white);
    border: 1px solid var(--yj-section-line);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(37, 93, 103, 0.1);
}

.yj-method-card > img {
    width: 122px;
    height: 122px;
}

.yj-method-card__lead {
    margin: 0 0 2px;
    color: var(--yj-section-primary);
    font-size: 0.88rem;
    font-weight: 900;
}

.yj-method-card h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    line-height: 1.45;
}

.yj-method-card p:not(.yj-method-card__lead) {
    margin: 0 0 14px;
    color: var(--yj-section-muted);
    font-size: 0.93rem;
    line-height: 1.8;
}

.yj-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yj-section-primary);
    font-weight: 800;
}

.yj-text-link:hover,
.yj-text-link:focus-visible {
    color: var(--yj-section-primary-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.yj-section-heading--inline {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
}

.yj-section-heading--inline h2::after {
    margin-left: 0;
}

.yj-section-heading--inline > div > p:last-child {
    margin: 0;
    color: var(--yj-section-muted);
    line-height: 1.8;
}

.yj-outline-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    color: var(--yj-section-primary-dark);
    background: transparent;
    border: 2px solid var(--yj-section-primary);
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.yj-outline-button:hover,
.yj-outline-button:focus-visible {
    color: var(--yj-section-white);
    background: var(--yj-section-primary);
    transform: translateY(-2px);
}

.yj-results {
    color: var(--yj-section-text);
    background:
        radial-gradient(circle at 88% 14%, rgba(78, 162, 178, 0.13), transparent 28%),
        linear-gradient(180deg, #edf7f8 0%, #f7fbfc 100%);
}

.yj-results .yj-section-heading h2 {
    color: var(--yj-section-text);
}

.yj-results .yj-section-kicker {
    color: var(--yj-section-primary);
}

.yj-results .yj-text-link {
    color: var(--yj-section-primary-dark);
}

.yj-results .yj-text-link:hover,
.yj-results .yj-text-link:focus-visible {
    color: var(--yj-section-primary);
}

.yj-results .yj-section-heading h2::after {
    background: var(--yj-section-brand);
}

.yj-results__grid,
.yj-property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.yj-results__grid > .bukkenbox,
.yj-property-grid > .bukkenbox {
    display: flex;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    flex: none !important;
    flex-direction: column;
    padding: 0 !important;
}

.yj-results__grid > .bukkenbox:nth-of-type(n+4),
.yj-property-grid > .bukkenbox:nth-of-type(n+4) {
    display: none;
}

.yj-results__grid .borderd_box {
    height: 100%;
    overflow: hidden;
    background: var(--yj-section-white);
    border: 1px solid rgba(78, 162, 178, 0.28);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(37, 93, 103, 0.11);
}

.yj-results__grid .imaged_area {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e7f0f2;
}

.yj-results__grid .overview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
}

.yj-results__grid .overview[src*="/kodate.png"] {
    padding: 26px 34px;
    object-fit: contain;
    background:
        radial-gradient(circle at 50% 44%, #fff 0 34%, transparent 35%),
        linear-gradient(145deg, #edf5f6, #dcebed);
}

.yj-results__grid .overd_img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(70%, 210px);
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.yj-results__grid .borderd_box > .contents {
    padding: 22px 22px 24px;
    background: var(--yj-section-white);
}

.yj-results__grid .over_message {
    display: block;
    color: var(--yj-section-text);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.7;
}

.yj-new-properties {
    background: var(--yj-section-offwhite);
}

.yj-property-group + .yj-property-group {
    margin-top: clamp(56px, 7vw, 84px);
}

.yj-property-group__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.yj-property-group__kicker {
    margin: 0 0 8px;
    color: var(--yj-section-primary);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.3;
}

.yj-property-group__heading h3 {
    margin: 0;
    padding: 0;
    color: var(--yj-section-text);
    border: 0;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 900;
    line-height: 1.45;
}

.yj-property-group__heading h3::before,
.yj-property-group__heading h3::after {
    display: none;
}

.yj-property-group__heading .yj-outline-button {
    min-height: 48px;
    padding: 10px 20px;
    font-size: 0.86rem;
}

.yj-property-group--rent {
    padding: clamp(26px, 4vw, 42px);
    background:
        radial-gradient(circle at 94% 8%, rgba(78, 162, 178, 0.12), transparent 28%),
        var(--yj-section-primary-pale);
    border: 1px solid var(--yj-section-line);
    border-radius: 24px;
}

.yj-property-grid > .bukkenbox {
    overflow: hidden;
    background: var(--yj-section-white);
    border: 1px solid var(--yj-section-line);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(37, 93, 103, 0.1);
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.yj-property-grid > .bukkenbox:hover {
    box-shadow: 0 22px 52px rgba(37, 93, 103, 0.16);
    transform: translateY(-5px);
}

.yj-property-grid .borderd_box {
    flex: 1;
    border: 0;
}

.yj-property-grid .borderd_box > a:first-child {
    display: block;
    overflow: hidden;
}

.yj-property-grid .bukkenview_img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.yj-property-grid > .bukkenbox:hover .bukkenview_img {
    transform: scale(1.035);
}

.yj-property-grid .borderd_box > .contents {
    padding: 22px 20px 12px;
}

.yj-property-grid .syumokucode {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 12px;
    color: var(--yj-section-white);
    background: var(--yj-section-primary);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
}

.yj-property-grid .tatemonoName {
    min-height: 3.3em;
    margin-bottom: 10px;
    color: var(--yj-section-text);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.65;
}

.yj-property-grid .bukkenKakaku {
    margin-bottom: 12px;
    color: #a8441c;
    font-size: 0.95rem;
    font-weight: 800;
}

.yj-property-grid .bigkakaku {
    font-size: 1.55rem;
    font-weight: 900;
}

.yj-property-grid .madorihoka,
.yj-property-grid .ekitoho {
    padding: 5px 0;
    color: var(--yj-section-muted);
    border-top: 1px solid #edf2f3;
    font-size: 0.84rem;
    line-height: 1.55;
}

.yj-property-grid > .bukkenbox > .contents {
    padding: 0 20px 22px;
    background: var(--yj-section-white);
}

.yj-property-grid .btn {
    min-height: 46px;
    color: var(--yj-section-primary-dark);
    background: var(--yj-section-white);
    border: 1px solid var(--yj-section-primary);
    border-radius: 8px;
    font-weight: 800;
}

.yj-property-grid .btn:hover,
.yj-property-grid .btn:focus-visible {
    color: var(--yj-section-white);
    background: var(--yj-section-primary);
}

.yj-home-editorial.siteContent {
    padding-top: clamp(76px, 8vw, 108px);
    padding-bottom: clamp(76px, 8vw, 108px);
    background: var(--yj-section-white);
}

.yj-home-editorial__main {
    min-width: 0;
}

.yj-editorial-section {
    padding: clamp(34px, 4vw, 50px);
    border: 1px solid var(--yj-section-line);
    border-radius: 20px;
}

.yj-editorial-section + .yj-editorial-section {
    margin-top: clamp(34px, 5vw, 54px);
}

.yj-editorial-section--updates {
    background: var(--yj-section-white);
    box-shadow: 0 16px 40px rgba(37, 93, 103, 0.08);
}

.yj-editorial-section--blog {
    background:
        radial-gradient(circle at 92% 12%, rgba(78, 162, 178, 0.12), transparent 28%),
        var(--yj-section-primary-pale);
}

.yj-editorial-heading {
    margin-bottom: 30px;
}

.yj-editorial-heading h2 {
    margin: 0 0 12px;
    padding: 0;
    color: var(--yj-section-text);
    border: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.025em;
}

.yj-editorial-heading h2::before,
.yj-editorial-heading h2::after {
    display: none;
}

.yj-editorial-heading > p:last-child {
    margin: 0;
    color: var(--yj-section-muted);
    line-height: 1.85;
}

.yj-editorial-list .postList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.yj-editorial-list--blog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.yj-editorial-list .postList > *,
.yj-editorial-list--blog > .media,
.yj-editorial-list--blog > article {
    min-width: 0;
    margin: 0;
    padding: 22px;
    overflow: hidden;
    background: var(--yj-section-white);
    border: 1px solid var(--yj-section-line);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(37, 93, 103, 0.07);
}

.yj-editorial-list .media,
.yj-editorial-list .postList_item {
    display: block;
}

.yj-editorial-list .media-body {
    width: auto;
}

.yj-editorial-list .media-heading,
.yj-editorial-list .entry-title {
    margin: 0 0 10px;
    padding: 0;
    color: var(--yj-section-text);
    border: 0;
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.65;
}

.yj-editorial-list .media-heading::before,
.yj-editorial-list .media-heading::after,
.yj-editorial-list .entry-title::before,
.yj-editorial-list .entry-title::after {
    display: none;
}

.yj-editorial-list a {
    color: var(--yj-section-primary);
}

.yj-editorial-list a:hover,
.yj-editorial-list a:focus-visible {
    color: var(--yj-section-primary-dark);
}

.yj-home-editorial .yj-editorial-list .entry-meta_items_term_button {
    color: var(--yj-section-white);
    background: var(--yj-section-primary);
    border-color: var(--yj-section-primary);
    border-radius: 999px;
}

.yj-home-editorial .yj-editorial-list .entry-meta_items_term_button:hover,
.yj-home-editorial .yj-editorial-list .entry-meta_items_term_button:focus-visible {
    color: var(--yj-section-white);
    background: var(--yj-section-primary-dark);
    border-color: var(--yj-section-primary-dark);
}

.yj-editorial-list .entry-meta,
.yj-editorial-list .published,
.yj-editorial-list time {
    color: var(--yj-section-muted);
    font-size: 0.78rem;
}

.yj-editorial-list img {
    border-radius: 9px;
}

.yj-editorial-list .navigation.pagination {
    grid-column: 1 / -1;
    margin: 12px 0 0;
}

.yj-editorial-list .navigation.pagination .nav-links {
    justify-content: center;
}

@media (max-width: 991px) {
    .yj-appraisal {
        margin-top: 0;
        margin-bottom: -64px;
        transform: translateY(-64px);
    }

    .yj-appraisal__panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .yj-appraisal__intro {
        padding: 0 0 26px;
        border-right: 0;
        border-bottom: 1px solid var(--yj-section-line);
    }

    .yj-benefit-list {
        max-width: 520px;
    }

    .yj-concern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yj-reason-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .yj-reason-card {
        display: grid;
        grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
    }

    .yj-reason-card__visual {
        height: 100%;
        min-height: 250px;
    }

    .yj-reason-card__photo,
    .yj-reason-card__icon-wrap {
        height: 100%;
        min-height: 250px;
    }

    .yj-reason-card__badge {
        top: 50%;
        right: -34px;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
    }

    .yj-reason-card__body {
        padding: 28px 28px 32px 50px;
    }

    .yj-method-grid {
        grid-template-columns: 1fr;
    }

    .yj-results__grid,
    .yj-property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yj-editorial-list .postList,
    .yj-editorial-list--blog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .yj-appraisal {
        margin-top: 0;
        margin-bottom: -36px;
        transform: translateY(-36px);
    }

    .yj-appraisal__panel {
        gap: 24px;
        padding: 28px 20px 22px;
        border-radius: 16px;
    }

    .yj-appraisal__intro h2 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .yj-appraisal__lead {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .yj-benefit-list {
        gap: 7px;
    }

    .yj-benefit {
        padding: 11px 4px;
    }

    .yj-benefit img {
        width: 34px;
        height: 34px;
    }

    .yj-benefit span {
        font-size: 0.7rem;
    }

    .yj-property-type-grid {
        gap: 8px;
    }

    .yj-property-type {
        min-height: 98px;
        padding: 10px 5px;
        font-size: 0.82rem;
    }

    .yj-property-type img {
        width: 46px;
        height: 46px;
    }

    .yj-appraisal__button {
        min-height: 54px;
        padding: 12px 20px;
    }

    .yj-content-section {
        padding: 68px 0;
    }

    .yj-concerns {
        padding-top: 80px;
    }

    .yj-section-heading {
        margin-bottom: 32px;
    }

    .yj-section-heading h2 {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
        word-break: keep-all;
    }

    .yj-section-heading > p:last-child {
        font-size: 0.92rem;
        line-height: 1.75;
        text-align: left;
    }
    /* 要望により、2カラム化（手作業）*/
    /* 
    .yj-concern-grid,
    .yj-reason-grid {
        grid-template-columns: 1fr;
    } */

    .yj-concern-card {
        padding: 28px 22px 26px;
    }

    .yj-reason-card {
        display: block;
    }

    .yj-reason-card__visual {
        height: 210px;
        min-height: 210px;
    }

    .yj-reason-card__photo,
    .yj-reason-card__icon-wrap {
        height: 210px;
        min-height: 210px;
    }

    .yj-reason-card__badge {
        top: auto;
        right: auto;
        bottom: -31px;
        left: 50%;
        width: 62px;
        height: 62px;
        transform: translateX(-50%);
    }

    .yj-reason-card__badge img {
        width: 40px;
        height: 40px;
    }

    .yj-reason-card__body {
        padding: 46px 22px 28px;
    }

    .yj-method-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 22px;
        text-align: center;
    }

    .yj-method-card > img {
        width: 106px;
        height: 106px;
        margin: 0 auto;
    }

    .yj-section-heading--inline {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .yj-section-heading--inline h2 {
        word-break: normal;
    }

    .yj-section-heading--inline .yj-outline-button {
        width: 100%;
    }

    .yj-property-group__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .yj-property-group__heading .yj-outline-button {
        width: 100%;
    }

    .yj-property-group--rent {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .yj-results__grid,
    .yj-property-grid {
        grid-template-columns: 1fr;
    }

    .yj-property-grid .bukkenview_img {
        height: 220px;
    }

    .yj-home-editorial.siteContent {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .yj-editorial-section {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .yj-editorial-heading {
        margin-bottom: 24px;
    }

    .yj-editorial-heading h2 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .yj-editorial-heading > p:last-child {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .yj-editorial-list .postList,
    .yj-editorial-list--blog {
        grid-template-columns: 1fr;
    }

    .yj-editorial-list .postList > *,
    .yj-editorial-list--blog > .media,
    .yj-editorial-list--blog > article {
        padding: 20px;
    }
}

@media (max-width: 380px) {
    .yj-appraisal__panel {
        padding-right: 16px;
        padding-left: 16px;
    }

    .yj-benefit-list {
        grid-template-columns: 1fr;
    }

    .yj-benefit {
        flex-direction: row;
    }
}

/*
 * WordPress / Lightning の既定HTMLに対する更新情報・ブログ表示。
 * front-page.phpを変更していない環境でも、既存の
 * h2 / .postList / article.media / .pagination をカード表示にする。
 */
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
    align-items: stretch;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .inner_nav,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > h2,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .navigation.pagination {
    grid-column: 1 / -1;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > h2 {
    position: relative;
    margin: 0;
    padding: 0 0 24px;
    color: var(--yj-section-text);
    border: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.025em;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > h2::before {
    display: block !important;
    margin: 0 0 8px;
    color: var(--yj-section-primary);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.18em;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > h2::after {
    display: block !important;
    width: 54px;
    height: 3px;
    margin-top: 16px;
    content: "";
    background: var(--yj-section-brand);
    border: 0;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .inner_nav + h2 {
    margin-top: clamp(42px, 5vw, 64px);
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .inner_nav + h2::before {
    content: "INFORMATION";
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList + h2 {
    margin-top: clamp(64px, 8vw, 96px);
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList + h2::before {
    content: "LOCAL & LIFE";
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList > article.media,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > article.media {
    position: relative;
    display: block;
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 24px;
    overflow: hidden;
    background: var(--yj-section-white);
    border: 1px solid var(--yj-section-line);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(37, 93, 103, 0.08);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > article.media {
    background:
        radial-gradient(circle at 100% 0, rgba(78, 162, 178, 0.13), transparent 42%),
        var(--yj-section-primary-pale);
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > article.media::before {
    display: block;
    margin: 0 0 14px;
    color: var(--yj-section-primary);
    content: "STAFF BLOG";
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.16em;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media > .hentry,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .media-body {
    height: 100%;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .media-body {
    display: flex;
    flex-direction: column;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-meta {
    display: flex;
    gap: 8px 10px;
    align-items: center;
    margin: 0 0 14px;
    color: var(--yj-section-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-meta_items {
    float: none;
    margin: 0;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-meta_items_term {
    margin-left: auto;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-meta_items_term_button {
    padding: 3px 9px;
    color: var(--yj-section-white);
    background: var(--yj-section-primary);
    border: 0;
    border-radius: 999px;
    font-size: 0.7rem;
    line-height: 1.3;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .media-heading,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-title {
    margin: 0;
    padding: 0;
    color: var(--yj-section-text);
    border: 0;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.7;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .media-heading::before,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .media-heading::after,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-title::before,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-title::after {
    display: none;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-title a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--yj-section-text);
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-title a:hover,
body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-title a:focus-visible {
    color: var(--yj-section-primary-dark);
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList > .navigation.pagination {
    grid-column: 1 / -1;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one .navigation.pagination {
    margin: 26px 0 0;
    overflow-x: auto;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one .navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one .navigation.pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one .navigation.pagination .page-numbers {
    border-radius: 7px;
}

@media (hover: hover) {
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList > article.media:hover,
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > article.media:hover {
        border-color: rgba(78, 162, 178, 0.55);
        box-shadow: 0 18px 38px rgba(37, 93, 103, 0.14);
        transform: translateY(-3px);
    }
}

@media (max-width: 991px) {
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one,
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one,
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList {
        grid-template-columns: 1fr;
    }

    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > h2 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .inner_nav + h2 {
        margin-top: 36px;
    }

    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList + h2 {
        margin-top: 62px;
    }

    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > .postList > article.media,
    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one > article.media {
        padding: 20px;
    }

    body.home .siteContent:not(.yj-home-editorial) .mainSection.mainSection-col-one article.media .entry-meta {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .yj-property-type,
    .yj-appraisal__button,
    .yj-concern-card,
    .yj-outline-button,
    .yj-property-grid > .bukkenbox {
        transition: none;
    }
}
