@charset "utf-8";

/* トップオリ：レイアウト枠・body / .l-main（.l-footer は footer.css） */
body {
    margin: 0;
}

.l-main {
    width: auto;
    padding: 0;
    overflow: hidden;
}

.l-main * {
    font-family: 'Noto Serif JP', Serif-serif;
}

.l-main a,
.l-main a:hover,
.l-main a:before,
.l-main a:after,
.l-main a:hover:before,
.l-main a:hover:after {
    opacity: 1;
    transition: .4s;
}

.hero {
    width: 100%;
    background-color: #ffffff;
}

.hero__inner {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 831px;
}

.mv {
    width: 100%;
    height: 660px;
    overflow: hidden;
    line-height: 0;
}

.mv__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contact-bar {
    position: absolute;
    content: "";
    bottom: 65px;
    min-height: 222px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    padding: 59px 80px 0 0;
    box-sizing: border-box;
    display: block;
    width: calc(50vw + 650px);
    left: calc(50% - 50vw);
}

.contact-bar__inner {
    width: 1140px;
    margin: 0 0 0 auto;
    position: relative;
}

.contact-bar__logo {
    position: absolute;
    top: 0;
    right: 35px;
    width: 225px;
    height: 150px;
    z-index: 0;
}

.contact-bar__logo-img {
    display: block;
    width: 225px;
    height: 150px;
    object-fit: contain;
}

/* =========================================
 contact-strip（ヒーロー contact-bar／mid-cta 共通の3列コンタクト）
 ========================================= */
.contact-strip {
    font-family: 'Noto Serif JP', serif;
}

.contact-strip__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 21px;
    width: 1140px;
    max-width: 100%;
}

.contact-strip__col {
    width: 366px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.contact-strip__col--phone {
    gap: 12px;
    min-height: 102px;
}

.contact-strip__col--cta {
    gap: 15px;
}

.contact-strip__lead {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.contact-strip--light .contact-strip__lead {
    color: #262626;
}

.contact-strip--dark .contact-strip__lead {
    color: #ffffff;
    font-weight: 400;
}

.contact-strip__phone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-strip__tel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 0;
}

.contact-strip__tel-icon {
    display: block;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    position: relative;
    top: 2px;
}

.contact-strip__tel-icon img {
    display: block;
    width: 35px;
    height: 35px;
}

.contact-strip__tel-link {
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
}

.contact-strip--light .contact-strip__tel-link {
    color: #262626;
}

.contact-strip--dark .contact-strip__tel-link {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact-strip__hours {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.contact-strip--light .contact-strip__hours {
    color: #737373;
}

.contact-strip--dark .contact-strip__hours {
    color: #ffffff;
}

.contact-strip__btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    padding: 0 0 2px 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #ffffff;
}

.contact-strip__btn-arrow {
    background: url(/images/top/contact-arrow.svg) no-repeat center / cover;
    position: absolute;
    top: 24px;
    right: 20px;
    width: 46px;
    height: 21px;
    line-height: 0;
    transition: .4s;
}

.contact-strip__btn-label {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.contact-strip__btn-arrow {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 46px;
    height: 21px;
    line-height: 0;
}

.contact-strip__btn-arrow img {
    display: block;
    width: 46px;
    height: 21px;
}

.contact-strip__btn--gold {
    background: linear-gradient(103.77deg, #cdba70 0.96%, #c0a94a 100%);
}

.contact-strip__btn--green {
    background: linear-gradient(103.77deg, #35cf74 0.96%, #149f4d 100%);
}

.contact-strip__btn--gold:hover {
    background: #fff;
    border: 1px solid #A3924E;
}

.contact-strip__btn--gold:hover .contact-strip__btn-label {
    color: #A3924E;
}

.contact-strip__btn--gold:hover .contact-strip__btn-arrow {
    background: url(/images/top/contact-arrow-gold.svg) no-repeat center / cover;
    transition: .4s;
}

.contact-strip__btn--green:hover {
    background: #fff;
    border: 1px solid #22B55E;
}

.contact-strip__btn--green:hover .contact-strip__btn-label {
    color: #22B55E;
}

.contact-strip__btn--green:hover .contact-strip__btn-arrow {
    background: url(/images/top/contact-arrow-green.svg) no-repeat center / cover;
    transition: .4s;
}

/* ゴールド枠「一覧を見る」系ボタン（複数セクションで共用） */
.more-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #BEA954;
    background-color: #ffffff;
    text-decoration: none;
}

.more-btn:hover {
    background: linear-gradient(103.77deg, #cdba70 0.96%, #c0a94a 100%);
    border: 1px solid transparent;
}

.more-btn__label {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
    color: #BEA954;
    text-align: center;
}

.more-btn:hover .more-btn__label {
    color: #fff;
}

.more-btn__icon {
    position: absolute;
    left: 191px;
    top: 16px;
    width: 34px;
    height: 15px;
    line-height: 0;
    width: 34px;
    height: 15px;
    background: url(/images/top/staff-intro-more-arrow.svg) no-repeat center / cover;
}

.more-btn:hover .more-btn__icon {
    background: url(/images/top/staff-intro-more-arrow-white.svg) no-repeat center / cover;
}

.message {
    width: 100%;
    width: 1140px;
    margin: 0 auto;
    background-color: #ffffff;
}

.message__wrap {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 460px;
    overflow: visible;
}

.message__photo {
    top: 0;
    height: 460px;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    left: calc(50% - 50vw);
    width: calc(50vw);
    z-index: 0;
}

.message__photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.message__panel {
    position: relative;
    top: 60px;
    width: 755px;
    min-height: 400px;
    padding: 60px 20px 0 60px;
    box-sizing: border-box;
    background-color: #ffffff;
    z-index: 1;
    margin: 0 0 0 auto;
}

.message__deco {
    position: absolute;
    left: 356px;
    top: -103px;
    width: 453px;
    height: 403px;
    z-index: 0;
    pointer-events: none;
}

.message__content {
    position: relative;
    z-index: 1;
}

.message__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 3.2px;
    color: #262626;
}

.message__title-line {
    display: block;
}

.message__title--accent {
    color: #395645;
    line-height: 1.5;
}

.message__body {
    margin-top: 19px;
}

.message__text {
    margin: 0 0 18px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.778;
    letter-spacing: 1.8px;
    color: #262626;
}

.message__text:last-child {
    margin-bottom: 0;
}

.worry {
    width: 100%;
    background-color: #ffffff;
}

.worry__wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0 40px;
    box-sizing: border-box;
}

.worry__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 1140px;
    margin: 0 auto;
}

.worry__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.worry__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 3.2px;
    color: #BEA954;
}

.worry__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1875;
    letter-spacing: 3.2px;
    color: #262626;
}

.worry__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 21px;
    width: 100%;
}

.worry-card {
    position: relative;
    width: 366px;
    flex-shrink: 0;
    height: 211px;
}

.worry-card__media {
    position: relative;
    width: 366px;
    height: 211px;
    overflow: hidden;
    line-height: 0;
}

.worry-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.worry-card__label {
    position: absolute;
    left: 0;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    background-color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
    color: #395645;
    white-space: nowrap;
}

.worry-card__label--row1 {
    top: 111px;
}

.worry-card__label--row2 {
    top: 157px;
}

.section-divider {
    width: 100%;
    background-color: #ffffff;
}

.section-divider__wrap {
    max-width: 100%;
    margin: 0 auto;
    line-height: 0;
}

.section-divider__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 70px;
    margin: 0 auto;
    object-fit: cover;
}

.strength {
    width: 100%;
    background-color: #f9f7ee;
}

.strength__wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
}

.strength__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 1140px;
    margin: 0 auto;
}

.strength__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.strength__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 3.2px;
    color: #BEA954;
}

.strength__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1875;
    letter-spacing: 3.2px;
    color: #262626;
}

.strength__block {
    width: 1140px;
}

.strength__block--01 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

.strength-diagram {
    position: relative;
    width: 469px;
    height: 473px;
    flex-shrink: 0;
}

.strength-diagram__ring {
    position: absolute;
    left: 50%;
    top: calc(50% + 7px);
    width: 339px;
    height: 339px;
    margin: 0;
    line-height: 0;
    transform: translate(-50%, -50%);
}

.strength-diagram__ring img {
    display: block;
    width: 339px;
    height: 339px;
}

.strength-diagram__logo {
    position: absolute;
    left: calc(50% + 2px);
    top: calc(50% - 5px);
    width: 142px;
    height: 84px;
    line-height: 0;
    transform: translate(-50%, -50%);
}

.strength-diagram__logo img {
    display: block;
    width: 142px;
    height: 84px;
    object-fit: contain;
}

.strength-diagram__node {
    position: absolute;
    width: 124px;
    height: 124px;
}

.strength-diagram__node--lawyer {
    left: 172px;
    top: 0px;
}

.strength-diagram__node--care {
    left: 295px;
    top: 51px;
}

.strength-diagram__node--reform {
    left: 347px;
    top: 175px;
}

.strength-diagram__node--tax {
    left: 295px;
    top: 298px;
}

.strength-diagram__node--legal {
    left: 172px;
    top: 349px;
}

.strength-diagram__node--admin {
    left: 49px;
    top: 298px;
}

.strength-diagram__node--surveyor {
    left: -2px;
    top: 174px;
}

.strength-diagram__node--insurance {
    left: 49px;
    top: 51px;
}

.strength-diagram__node--care .strength-diagram__disc {
    padding: 4px 0 5px 2px;
}

.strength-diagram__disc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 124px;
    height: 124px;
    border-radius: 999px;
    box-sizing: border-box;
    background: url(/images/top/bg_strength-diagram.webp) no-repeat center center / cover;
    box-shadow: -3px -1px 4px 0 rgba(255, 255, 255, 0.25), 0 3px 9px 0 rgba(0, 0, 0, 0.06);
}

.strength-diagram__icon {
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    margin: 0 0 4px;
}

.strength-diagram__icon--care {
    width: 57px;
    height: 30px;
}

.strength-diagram__label {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.313;
    text-align: center;
    color: #575050;
    white-space: nowrap;
}

.strength-diagram__label-line {
    display: block;
}

.strength-diagram__sub {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
    color: #A7A5A5;
}

.strength-column {
    position: relative;
    flex-shrink: 0;
    background-color: #f9f7ee;
}

.strength-column--01 {
    width: 621px;
    padding: 0 0 2px;
}

.strength-column__num {
    position: absolute;
    right: -12px;
    top: -119px;
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 160px;
    line-height: 1.5;
    color: #f4f0de;
    white-space: nowrap;
    pointer-events: none;
}

.strength-column__head {
    position: relative;
    z-index: 1;
}

.strength-column__lead {
    margin: 0 0 17px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 2.6px;
    color: #262626;
    position: relative;
    z-index: 1;
}

.strength-column__lead-line {
    display: block;
}

.strength-column__lead--accent {
    color: #a3924e;
    line-height: 1.5;
}

.strength-column__body {
    margin-top: 17px;
    position: relative;
    z-index: 1;
}

.strength-column__text {
    margin: 0 0 16px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.813;
    letter-spacing: 1.6px;
    color: #000000;
}

.strength-column__text:last-child {
    margin-bottom: 0;
}

.strength-column__lead--single {
    margin-top: 0;
}

.strength__block--02 {
    position: relative;
    min-height: 379px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 0;
}

.strength__block--02 .strength-column--02 {
    width: 671px;
    padding: 49px 50px 50px 0;
    box-sizing: border-box;
    left: 31px;
    top: 25px;
}

.strength__block--02 .strength-column__num {
    left: -9px;
    top: -109px;
}

.strength__block--02 .strength-column__lead--single {
    margin-bottom: 17px;
}

.strength-ba {
    position: absolute;
    left: 640px;
    top: 50px;
    width: 500px;
    height: 379px;
}

.strength-ba__half {
    position: absolute;
    top: 0;
    width: 250px;
    height: 379px;
    overflow: hidden;
    line-height: 0;
}

.strength-ba__half--before {
    left: 0;
}

.strength-ba__half--after {
    left: 250px;
}

.strength-ba__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.strength-ba__tag {
    position: absolute;
    top: 341px;
    box-sizing: border-box;
    padding: 4px 10px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    white-space: nowrap;
}

.strength-ba__tag--before {
    left: 166px;
    background-color: #ffffff;
    color: #000000;
}

.strength-ba__tag--after {
    left: 250px;
    width: 84px;
    text-align: center;
    background-color: #A3924E;
    color: #ffffff;
}

.strength__block--03 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 19px;
    padding-top: 0;
}

.strength-media {
    width: 500px;
    height: 379px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
}

.strength-media__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.strength-column--03 {
    width: 671px;
    flex-shrink: 0;
    padding: 30px 0 50px 50px;
    box-sizing: border-box;
    top: 35px;
    right: 50px;
}

.strength-column__num--right {
    left: 494px;
    top: -92px;
    right: auto;
}

/* =========================================
 brand-line
 ========================================= */
.brand-line {
    width: 100%;
}

.brand-line__wrap {
    max-width: 1920px;
    margin: 0 auto;
    height: 128px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.brand-line__wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-line__text {
    position: absolute;
    left: -654px;
    top: -72px;
    margin: 0;
    font-family: 'Marcellus', serif;
    font-size: 180px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #f9f7ee;
    white-space: nowrap;
    pointer-events: none;
}

/* =========================================
 sale-plan
 ========================================= */
.sale-plan {
    width: 100%;
    background: #fff;
}

.sale-plan__wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 76px 0 0;
    box-sizing: border-box;
}

.sale-plan__header {
    width: 1140px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.sale-plan__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 3.2px;
    color: #BEA954;
}

.sale-plan__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1875;
    letter-spacing: 3.2px;
    color: #262626;
}

.sale-plan__bands {
    width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sale-plan__band {
    width: 100%;
}

.sale-plan__band--buyout {
    background-color: #eef8f8;
}

.sale-plan__band--broker {
    background-color: #f3fcff;
}

.sale-plan__band-inner {
    width: 100%;
    margin: 0;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.sale-plan__intro {
    width: 140px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 0 6px;
}

.sale-plan__plan-name {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
}

.sale-plan__plan-name--buyout {
    color: #2a6167;
}

.sale-plan__plan-name--broker {
    color: #1f4b70;
}

.sale-plan__plan-icon {
    width: 117px;
    height: 117px;
    flex-shrink: 0;
    line-height: 0;
}

.sale-plan__plan-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.sale-plan__panels {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.sale-plan-card {
    width: 450px;
    flex-shrink: 0;
    position: relative;
}

.sale-plan-card__tab {
    position: relative;
    width: 400px;
    height: 52px;
    margin-left: 25px;
    line-height: 0;
}

.sale-plan-card__tab-bg {
    display: block;
    width: 400px;
    height: 52px;
}

.sale-plan-card__tab-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    height: 52px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
    pointer-events: none;
}

.sale-plan-card--demerit .sale-plan-card__tab-label {
    padding: 0 0 0 20px;
}

.sale-plan-card__body {
    width: 450px;
    margin-top: -26px;
    padding: 44px 30px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.sale-plan-card__body--short {
    min-height: 285px;
}

.sale-plan-card__body--tall {
    min-height: 326px;
}

.sale-plan-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sale-plan-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
}

.sale-plan-item__icon {
    flex-shrink: 0;
    width: 17px;
    height: 18px;
    line-height: 0;
    padding-top: 4px;
}

.sale-plan-item__icon img {
    display: block;
    width: 17px;
    height: 18px;
}

.sale-plan-item__text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0;
    color: #000000;
}

.sale-plan-item__main {
    display: block;
    line-height: 1.625;
}

.sale-plan-item__note {
    display: block;
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: #6D6D6D;
    position: relative;
    bottom: 1px;
}

.sale-plan-item__sub {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #000000;
}

/* =========================================
 case-study
 ========================================= */
.case-study {
    width: 100%;
    background: #fff;
}

.case-study__wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
}

.case-study__header {
    width: 1140px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.case-study__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #BEA954;
}

.case-study__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1875;
    letter-spacing: 0.1em;
    color: #262626;
}

.case-study__list {
    width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-study-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
}

.case-study-card__media {
    width: 249px;
    height: 346px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
}

.case-study-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.case-study-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-study-card__lead {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-study-card__headline-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 12px;
}

.case-study-card__badge {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    line-height: 0;
}

.case-study-card__badge-bg {
    display: block;
    width: 60px;
    height: 60px;
}

.case-study-card__badge-label {
    position: absolute;
    left: 0;
    top: 11px;
    width: 60px;
    margin: 0;
    padding: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    pointer-events: none;
    letter-spacing: 0.02em;
}

.case-study-card__badge-num {
    position: absolute;
    left: 0;
    top: 27px;
    width: 60px;
    margin: 0;
    padding: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    pointer-events: none;
}

.case-study-card__titles {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.case-study-card__title {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    color: #395645;
}

.case-study-card__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
}

.case-study-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 5px;
    box-sizing: border-box;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #6c6c6c;
    background-color: #f6f6f6;
}

.case-study-card__text {
    width: 100%;
}

.case-study-card__para {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

.case-study-card__comment {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f6f6f6;
}

.case-study-card__comment-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.case-study-card__comment-icon {
    flex-shrink: 0;
    width: 19px;
    height: 22px;
    line-height: 0;
}

.case-study-card__comment-icon img {
    display: block;
    width: 19px;
    height: 22px;
}

.case-study-card__comment-title {
    flex: 1;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #395645;
}

.case-study-card__comment-text {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0;
    color: #000000;
}

/* =========================================
 staff-intro
 ========================================= */
.staff-intro {
    width: 100%;
    background: #fff;
}

.staff-intro__wrap {
    width: 1140px;
    margin: 0 auto;
    padding: 0 0 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
}

.staff-intro__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    text-align: left;
}

.staff-intro__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #A3924E;
}

.staff-intro__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1875;
    letter-spacing: 0.1em;
    color: #262626;
}

.staff-intro__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    width: 100%;
}

.staff-intro__card {
    position: relative;
    width: 261px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.staff-intro__photo {
    position: relative;
    width: 261px;
    height: 196px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    background: #efefef;
}

.staff-intro__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.staff-intro__name {
    position: absolute;
    left: 0;
    top: 176px;
    z-index: 1;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to right, #d7c16b, #A3924E);
}

.staff-intro__body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 20px 12px 16px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    min-height: 88px;
}

.staff-intro__text {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0;
    color: #000000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.staff-intro__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* =========================================
 mid-cta（中間コンタクト・Figma 12150:1420）
 ========================================= */
.mid-cta {
    width: 100%;
    background-color: #ffffff;
}

.mid-cta__wrap {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 200px 0 80px;
    box-sizing: border-box;
}

.mid-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 354px;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.mid-cta__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.mid-cta__band {
    background: linear-gradient(99.64deg, #375d47 26.43%, #3f7355 101.33%);
    bottom: -182px;
    padding: 79px 80px 0 0;
    min-height: 262px;
}

/* =========================================
 purchase-record（買取実績・Figma 12148:973）
 ========================================= */
.purchase-record {
    width: 100%;
    padding: 262px 0 0;
    background-color: #ffffff;
}

.purchase-record__wrap {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 579px;
    width: 100%;
}

.purchase-record__deco {
    position: absolute;
    top: 0;
    left: auto;
    width: calc(50vw + 230px);
    right: calc(50% - 50vw);
    height: 579px;
    overflow: hidden;
    z-index: 0;
    line-height: 0;
}

.purchase-record__deco-base {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.purchase-record__deco-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.purchase-record__deco-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.purchase-record__inner {
    position: relative;
    z-index: 1;
    width: 1140px;
    margin: 0 auto;
    padding-bottom: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.purchase-record__header {
    width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.purchase-record__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #BEA954;
}

.purchase-record__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1875;
    letter-spacing: 0.1em;
    color: #262626;
}

.purchase-record__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 1140px;
}

.purchase-record-card {
    width: 261px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.purchase-record-card__media {
    width: 261px;
    height: 196px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    background: #efefef;
}

.purchase-record-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.purchase-record-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.purchase-record-card__body {
    width: 261px;
    padding: 10px 15px 15px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
}

.purchase-record-card__text {
    margin: 0;
    min-height: 78px;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
}

.purchase-record__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* =========================================
 sales-record（売却実績・Figma 12148:1126）
 ========================================= */
.sales-record {
    width: 100%;
    background-color: #ffffff;
    position: relative;
}

.sales-record:before {
    content: '';
    position: absolute;
    bottom: 0;
    z-index: 0;
    height: 343px;
    background: linear-gradient(92deg, #375D47 26.43%, #3F7355 101.33%);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    width: calc(50vw - 190px);
    left: calc(50% - 50vw);
}

.sales-record__inner {
    width: 1140px;
    margin: 0 auto;
    padding-bottom: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.sales-record__header {
    width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.sales-record__eyebrow {
    margin: 0;
    width: 100%;
    white-space: nowrap;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #BEA954;
}

.sales-record__title {
    margin: 0;
    width: 100%;
    white-space: nowrap;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1875;
    letter-spacing: 0.1em;
    color: #262626;
}

.sales-record__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 1140px;
}

.sales-record-card {
    width: 261px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sales-record-card__media {
    width: 261px;
    height: 196px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    background: #efefef;
}

.sales-record-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sales-record-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.sales-record-card__body {
    width: 261px;
    padding: 10px 15px 15px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
}

.sales-record-card__text {
    margin: 0;
    min-height: 78px;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
}

.sales-record__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* =========================================
 customer-review（お客様の声・Figma 12148:820）
 Frame 32 左帯 bg 12089:317 と同系の770pxグラデーション
 ========================================= */
.customer-review {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.customer-review::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: 0;
    height: 564px;
    background: linear-gradient(92deg, #375D47 26.43%, #3F7355 101.33%);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    width: calc(50vw - 190px);
    left: calc(50% - 50vw);
}

.customer-review__inner {
    position: relative;
    z-index: 1;
    width: 1140px;
    margin: 0 auto;
    padding-bottom: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.customer-review__header {
    width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.customer-review__eyebrow {
    margin: 0;
    width: 100%;
    white-space: nowrap;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #ffffff;
}

.customer-review__title {
    margin: 0;
    width: 100%;
    white-space: nowrap;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.customer-review__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    width: 1140px;
}

.customer-review-card {
    position: relative;
    width: 261px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.customer-review-card__photo {
    position: relative;
    width: 261px;
    height: 196px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    background: #efefef;
}

.customer-review-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.customer-review-card__name {
    position: absolute;
    left: 0;
    top: 176px;
    z-index: 1;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to right, #d7c16b, #A3924E);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 2;
    padding: 2px 10px;
}

.customer-review-card__body {
    width: 100%;
    padding: 24px 20px 12px 16px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    height: 88px;
    overflow: hidden;
}

.customer-review-card__text {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 0;
    color: #000000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.customer-review__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* =========================================
 useful-column（お役立ちコラム・Figma 12150:1503 achievements）
 ========================================= */
.useful-column {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
}

.useful-column__bg {
    top: 333px;
    z-index: 0;
    height: 336px;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    left: auto;
    width: calc(50vw + 670px);
    right: calc(50% - 50vw);
}

.useful-column__bg-base {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.useful-column__bg-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.useful-column__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.useful-column__head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
    width: 1140px;
    margin: 0 auto 39px;
    box-sizing: border-box;
}

.useful-column__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.useful-column__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #BEA954;
}

.useful-column__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #262626;
}

.useful-column__pager {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    width: 142px;
    position: relative;
    bottom: 1px;
}

.useful-column__pager-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    line-height: 0;
}

.useful-column__pager-btn img {
    display: block;
    width: 32px;
    height: 32px;
}

.useful-column__pager-btn--prev img {
    transform: rotate(0deg);
}

.useful-column__pager-status {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    color: #262626;
    white-space: nowrap;
    position: relative;
    bottom: 1px;
}

/* Swiper fraction pagination（ナビ内配置のため bundle 既定の absolute を打ち消し） */
.useful-column__pager .useful-column__pager-status.swiper-pagination {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    transform: none;
}

.useful-column__pager-status .swiper-pagination-current,
.useful-column__pager-status .swiper-pagination-total {
    font: inherit;
    font-weight: inherit;
    color: inherit;
}

.useful-column__slider {
    position: relative;
    z-index: 1;
    width: 1140px;
    margin: 0 auto 30px;
    box-sizing: border-box;
}

.useful-column__slider-view {
    width: 1530px;
    overflow: hidden;
}

/* Swiper（お役立ちコラム・スライダーのみ） */
.useful-column-swiper {
    width: 1530px;
    max-width: 100%;
    min-height: 309px;
    box-sizing: border-box;
    overflow: hidden;
}

/* 4枚以下で Swiper 未起動（.useful-column__slider.no-swiper）のとき */
.useful-column:has(.no-swiper) .useful-column__pager {
    display: none;
}

.useful-column__slider.no-swiper .useful-column-swiper {
    overflow: visible;
}

.useful-column__slider.no-swiper .useful-column-swiper .swiper-wrapper {
    transform: none;
    gap: 32px;
    justify-content: flex-start;
}

.useful-column-swiper .swiper-slide {
    width: 261px;
    height: auto;
    box-sizing: border-box;
    flex-shrink: 0;
}

.useful-column-swiper .swiper-slide .useful-column-card {
    width: 261px;
}

.useful-column__pager-btn--disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.useful-column-card {
    position: relative;
    width: 261px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 10px;
}

.useful-column-card__media {
    position: relative;
    width: 261px;
    height: 196px;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
    background: #efefef;
}

.useful-column-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.useful-column-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.useful-column-card__date {
    position: absolute;
    left: 0;
    top: 180px;
    z-index: 1;
    margin: 0;
    padding: 8px 9px 8px 11px;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    text-align: center;
    background: linear-gradient(95.37deg, #395645 1.72%, #446853 101.33%);
}

.useful-column-card__date time {
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
}

.useful-column-card__body {
    width: 261px;
    padding: 21px 16px 12px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
    min-height: 113px;
}

.useful-column-card__title {
    margin: 0;
    min-height: 80px;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    color: #000000;
}

.useful-column__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
}

.card__link--img img {
    transition: .4s;
}

.card__link:hover .card__link--img img {
    transform: scale(1.05);
    transition: .4s;
}

/* =========================================
 news（新着情報・Figma 12154:2166）
 ========================================= */
.news {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

.news__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
    width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
}

.news__lead {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
}

.news__lead:before {
    content: "";
    position: absolute;
    left: -167px;
    top: -122px;
    z-index: 0;
    width: 453px;
    height: 403px;
    pointer-events: none;
    line-height: 0;
    flex: 1;
    background: url(/images/top/news-deco.svg);
}

.news__deco {
    position: absolute;
    left: -167px;
    top: -122px;
    z-index: 0;
    width: 453px;
    height: 403px;
    pointer-events: none;
    line-height: 0;
}

.news__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.news__eyebrow {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #BEA954;
}

.news__title {
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: #262626;
}

.news__body {
    flex-shrink: 0;
    width: 820px;
    height: 450px;
    box-sizing: border-box;
}

.news__scroll {
    width: 100%;
    max-height: 450px;
    box-sizing: border-box;
    overflow-y: scroll;
    padding: 0 50px 0 0;
}

.news__scroll::-webkit-scrollbar {
    width: 3px;
}

.news__scroll::-webkit-scrollbar-thumb {
    background: #BEA954;
    border-radius: 0;
}

.news__scroll::-webkit-scrollbar-track {
    background: #D9D9D9;
    border-radius: 0;
}


.news__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 767px;
    max-width: 100%;
    box-sizing: border-box;
}

.news__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 0 0 39px;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e2;
}

.news__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news__item-date {
    margin: 0;
    font-family: 'Noto Serif JP', serif;
}

.news__item-date time {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.375;
    letter-spacing: 0;
    color: #000000;
    display: block;
}

.news__item-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}