/* main-container */
.main-container {
    max-width: 1440px;
    margin: 0 auto;
}

.sub-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* common */
.view-more {
    font-size: 20px;
    display: block;
    width: fit-content;
    background-color: #0e7a42;
    padding: 8px 70px;
    color: #fff;
    border-radius: 70px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

.page-top {
    display: none;
}

@media (max-width:768px) {
    .page-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 40px;
        height: 40px;
        background-color: #2e7d32;
        /* 緑 */
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s;
        z-index: 999;
    }

}

.page-top:hover {
    transform: translateY(-4px);
}

.view-more:hover {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.button-hover:hover {
    opacity: 0.5;
}

.section-title {
    font-family: "Noto Sans JP", serif;
    color: #0e7a42;
    font-size: 3rem;
    margin-bottom: 26px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background-color: #0e7a42;
}

.section-subtitle {
    margin-bottom: 34px;
    font-family: "Jomolhari", serif;
    color: #977F39;
}

body {
    font-family: "Zen Kaku Gothic New",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        "Meiryo",
        sans-serif;

    font-size: 1rem;
    line-height: 1.25;
    color: #222;
    overflow-x: hidden;
    max-width: 100vw;
}

.logo-img {
    width: 200px;
    height: auto;
}

/* fv-section */
.fv-section {
    width: 100%;
    height: 25vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fv-section--buy {
    background-image: url(../images/fv-buy.png);
}

.fv-section--sell {
    background-image: url(../images/fv-sell.png);
}

.fv-section--strength {
    background-image: url(../images/fv-strength.png);
    background-position: center 20%;
}

.fv-section--about {
    background-image: url(../images/fv-about.png);
}

.fv-section--news {
    background-image: url(../images/fv-news.png);
}

.fv-section--contact {
    background-image: url(../images/fv-contact.png);
}

.fv-section--assessment {
    background-image: url(../images/fv-assessment.png);
}

.fv-section--review {
    background-image: url(../images/fv-review.png);
}

@media (max-width:768px) {
    .fv-section {
        height: 200px;
    }

    .logo-img {
        width: 100px;
        height: auto;
    }
}

/* 追従ボタン */
.contact-float {
    position: fixed;
    right: 64px;
    bottom: 64px;
    z-index: 99;
    width: 200px;
    height: 180px;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    background-image: url("../images/Vector.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;

    color: #fff;
    font-family: "Noto Sans JP", serif;
    font-size: 1rem;
    text-decoration: none;
}

.contact-float:hover {
    opacity: 0.5 !important;
}

.contact-float span {
    transform: translateY(15px);
}

@media screen and (max-width: 768px) {
    .contact-float {
        display: none;
    }
}

/* header */
.header {
    background: linear-gradient(to right, #ffffff 0%, #0e7a42 100%);
    padding: 9px 36px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    gap: 16px;
    list-style: none;
}

.nav-list li a {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-list li a:hover {
    opacity: 0.5;
}

.header-right,
.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    gap: 16px;
}

/* ハンバーガーメニュー */
.hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: all 0.3s ease;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hamburger-menu {
    position: fixed;
    top: 0;
    padding: 30px 50px;
    right: -100%;
    width: 500px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.hamburger-menu.is-open {
    right: 0;
}

.hamburger-menu-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.hamburger-close {
    background: none;
    border: 2px solid #0e7a42;
    border-radius: 50%;
    font-size: 2rem;
    font-family: "Jomolhari", serif;
    cursor: pointer;
    color: #0e7a42;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.hamburger-close:hover {
    opacity: 0.7;
}

.hamburger-nav-list {
    list-style: none;
    margin: 0;
}

.hamburger-nav-item a {
    display: block;
    padding: 15px 10px;
    color: #0e7a42;
    text-decoration: none;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-nav-item a:hover {
    opacity: 0.5;
}

.hamburger-nav-item--highlight a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 2rem;
    letter-spacing: 0.2em;
    border-bottom: 2px solid #0e7a42;
    margin-bottom: 30px;
}

.menu-logo img {
    width: 158px;
    height: auto;
}

/* オーバーレイ */
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.hamburger-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* レスポンシブ対応 */
@media screen and (max-width:768px) {
    .header {
        padding: 9px 20px;
    }

    .header-inner {
        margin: 0 auto;
    }

    .header-nav {
        display: none;
    }

    .hamburger-menu {
        width: min(375px, 100vw);
        padding: 20px 25px;
    }

    .hamburger-menu-header {
        margin-bottom: 20px;
    }

    .menu-logo img {
        max-width: 150px;
        height: auto;
    }

    .hamburger-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hamburger-nav-item--highlight a {
        font-size: 1.5rem;
        padding: 8px;
        margin-bottom: 20px;
    }

    .hamburger-nav-item--highlight a img {
        max-width: 20px;
        height: auto;
    }

    .hamburger-nav-item a {
        padding: 12px 8px;
        font-size: 0.95rem;
    }
}

/* fv */
.fv {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
}

.fv__slider {
    position: absolute;
    inset: 0;
}

.fv__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.fv__slide.is-active {
    opacity: 1;
}

.fv__inner {
    position: absolute;
    z-index: 2;
    color: #fff;
    bottom: 10%;
    left: 10%;
    text-align: center;
}

.fv-title span {
    font-weight: 400;
    font-size: 3rem;
    background-color: #fff;
    color: #0e7a42;
    display: block;
    width: fit-content;
    padding: 4px 24px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.fv-title .pc-only {
    display: block;
}

.fv-title .sp-only {
    display: none;
}

.fv__slide:nth-child(1) {
    background-image: url("../images/top-fv1.png");
}

.fv__slide:nth-child(2) {
    background-image: url("../images/top-fv2.png");
}

.fv__slide:nth-child(3) {
    background-image: url("../images/top-fv3.png");
}

.fv__slide:nth-child(4) {
    background-image: url("../images/top-fv4.png");
}

.fv__slide:nth-child(5) {
    background-image: url("../images/top-fv5.png");
}

@media screen and (max-width:768px) {
    .fv-title .pc-only {
        display: none;
    }

    .fv-title .sp-only {
        display: block;
    }

    .fv-title span {
        font-size: 26px;
        background-color: #fff;
        color: #0e7a42;
        display: block;
        width: fit-content;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .fv__inner {
        bottom: 10%;
        left: 5%;
        text-align: center;
    }

    .fv {
        height: 550px;
    }

    .fv__slide {
        background-size: cover;
        background-position: 55% top;
    }
}


/* news */
.news {
    background-color: #fdf8ee;
    padding: 100px 0;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.news-column {
    display: flex;
    gap: clamp(30px, 8vw, 135px);
}

.news-column-left {
    flex: 0 0 auto;
}

.news-column-right {
    flex: 1;
}

.front-news-item {
    border-bottom: 1px solid #333;
    margin-bottom: 14px;
}

.front-news-item a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-right: 3.2rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #ccc;
    transition: all 0.5s ease;
}

.front-news-item a:hover {
    opacity: 0.5;
}

.front-news-item a::after {
    content: ">";
    position: absolute;
    right: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    background-color: #c8b06a;
    color: #fff;
    display: grid;
    place-items: center;
    line-height: 1;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transform: translate(0, -50%);
    text-indent: 1px;
}

.front-news-date {
    flex: 0 0 auto;
    white-space: nowrap;
}

.front-news-item a>span:nth-child(2) {
    flex: 0 0 auto;
}

.front-news-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-sp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .news-container {
        max-width: 100%;
        padding: 0 5%;
        /* 画面幅比例に変更 */
        box-sizing: border-box;
    }

    .news-column {
        flex-direction: column;
        gap: 0;
    }

    .news-pc {
        display: none;
    }

    .news-sp {
        display: block;
        margin-top: 30px;
    }
}

@media screen and (max-width:768px) {
    .news-container {
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .section-title::after {
        bottom: -10px;
        height: 1px;
    }

    .news {
        padding: 50px 0;
    }

    .news-column {
        flex-direction: column;
        gap: 0;
    }

    .front-news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .front-news-title {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .front-news-date {
        flex: 0 0 auto;
    }

    .front-news-item a span:nth-child(2) {
        display: none;
    }

    .news-pc {
        display: none;
    }

    .news-sp {
        display: block;
        margin-top: 30px;
    }
}


/* concept */
.concept {
    background-color: #e5eee6;
    padding: 100px 0;
}

.concept-sp {
    display: none;
}

.concept-container {
    max-width: 1000px;
    margin: 0 auto;
}

.concept-media {
    position: relative;
}

.concept-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 650px;
}

.concept-img-wrap {
    position: relative;
    display: block;
    max-width: 650px;
    margin: 0 auto;
}

.concept-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.concept-img {
    position: relative;
    z-index: 1;
}

.concept-deco--01 {
    bottom: -45%;
    left: -10%;
}

.concept-deco--02 {
    top: 30%;
    left: -30%;
}

.concept-deco--03 {
    display: none;
}

.concept-card {
    max-width: 420px;
    padding: 40px;
    background-color: #fff;
    margin-top: -200px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.concept-card-title {
    letter-spacing: 0.3em;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 31px;
    line-height: 1.67;
}

.concept-card-txt {
    letter-spacing: 0.3em;
}

.concept-card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.concept-card-title span {
    color: #0e7a42;
}

.concept-card-txt {
    margin-bottom: 25px;
    line-height: 1.5;
}

.review-archive .review-archive-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1040px) {
    .concept-container {
        padding: 0 5%;
        /* 画面幅比例に変更 */
    }

    .concept-card {
        max-width: 380px;
        margin-top: -150px;
    }
}

@media (max-width: 768px) {
    .concept {
        padding: 56px 0 30px;
    }

    .concept-container {
        margin: 0 auto;
    }

    .concept-card {
        margin: 0 auto;
        padding: 25px 20px;
    }

    .concept-card-title {
        font-size: 1rem;
        letter-spacing: 0;
        width: 100%;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .concept-img {
        display: block;
        width: 240px;
        height: auto;
        margin: 60px auto 90px;
    }

    .concept-deco {
        width: 25%;
        z-index: 5;
    }

    .concept-deco--01 {
        bottom: -45%;
        left: 5%;
    }

    .concept-deco--02 {
        top: -10%;
        left: 0;
    }

    .concept-deco--03 {
        display: block;
        right: 0;
        top: -45%;
    }

    .concept-sp {
        display: block;
    }

    .concept-card-title::after {
        display: none;
    }

    .concept-card-txt {
        margin-bottom: 25px;
        line-height: 1.7;
        letter-spacing: 0.06em;
        font-size: 14px;
    }
}

/* buy */
.buy {
    background-color: #fdf8ee;
    padding: 100px 0;
}

.buy-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.buy-property {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.buy-property-label {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.buy-property-area {
    background-color: #0e7a42;
    color: #fff;
    border-radius: 40px;
    display: inline-block;
    padding: 3px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.buy-property-type {
    background-color: #c3ac66;
    border-radius: 40px;
    display: inline-block;
    padding: 3px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.buy-property-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 16px;
}

.buy-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buy-property-title {
    margin-bottom: 16px;
}

.buy-property-address {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.buy-property-address img {
    margin-right: 5px;
}

.buy-property-address-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.buy-property-address::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.buy-swiper-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.buy-swiper .swiper-wrapper {
    align-items: stretch;
}

.buy-swiper-pagination {
    display: none;
}

.buy-swiper-wrap .swiper-button-prev.buy-swiper-prev,
.buy-swiper-wrap .swiper-button-next.buy-swiper-next {
    width: 50px;
    height: 50px;
    background-color: #c3ac66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-swiper-wrap .swiper-button-prev.buy-swiper-prev::after,
.buy-swiper-wrap .swiper-button-next.buy-swiper-next::after {
    content: '';
    display: none;
}

.buy-swiper-wrap .swiper-button-prev.buy-swiper-prev {
    left: calc((100% - 900px) / 2 - 70px);
}

.buy-swiper-wrap .swiper-button-next.buy-swiper-next {
    right: calc((100% - 900px) / 2 - 70px);
}

.buy-swiper-wrap .buy-swiper-prev,
.buy-swiper-wrap .buy-swiper-next {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.buy-property-comment {
    margin-top: auto;
}

.swiper-horizontal {
    max-width: 900px;
}

@media (max-width: 1300px) and (min-width: 769px) {
    .buy-swiper-wrap {
        padding: 0 70px;
    }

    .buy-swiper-wrap .swiper-button-prev.buy-swiper-prev {
        left: 10px;
    }

    .buy-swiper-wrap .swiper-button-next.buy-swiper-next {
        right: 10px;
    }

    .buy-container {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .buy {
        padding: 50px 0;
    }

    .buy-swiper {
        overflow: visible;
    }

    .buy-properties {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .buy-property {
        width: 100% !important;
        margin: 0 !important;
    }

    .buy-swiper-prev,
    .buy-swiper-next,
    .buy-swiper-pagination {
        display: none !important;
    }

    .buy-property:nth-child(n+4) {
        display: none;
    }

        .buy-container {
        padding: 0 5%;
    }
}

/* sell */
.sell {
    background-color: #e5eee6;
    padding: 100px 0;
}

.sell-container {
    margin: 0 auto;
    max-width: 1000px;
}

.sell-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

.sell-wrapper img {
    border-radius: 20px;
}

.sell-title {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.56;
    color: #0e7a42;
}

.sell-txt {
    margin-bottom: 40px;
    line-height: 2;
}

@media (max-width:1024px) {
    .sell-container {
        padding: 0 5%;
        /* 画面幅比例を維持 */
        margin: 0 auto;
    }
}

@media (max-width:768px) {
    .sell {
        padding: 50px 0;
    }

    .sell-container {
        margin: 0 auto;
        padding: 0 5%;
    }

    .sell-wrapper {
        flex-direction: column;
    }

    .sell-title {
        font-size: 24px;
    }
}

/* strength */
.strength-top {
    background-color: #e5eee6;
    padding: 100px 0;
}

.strength-container-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: 0;
    padding-left: clamp(20px, 5vw, 80px);
}

.strength-box {
    background-color: #fdf8ee;
    border: 5px solid #0a7f43;
    border-right: none;
    border-radius: 32px 0 0 32px;
    padding: 6rem;
}

.strength-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.strength-left {
    width: 45%;
}

.strength-right {
    width: 55%;
}

.strength-img {
    width: 100%;
    height: auto;
    display: block;
}

.strength-txt {
    margin-bottom: 40px;
    line-height: 2;
}

@media (max-width:768px) {
    .strength-container {
        padding-left: 25px;
    }

    .strength-wrapper {
        flex-direction: column-reverse;
    }

    .strength-box {
        padding: 35px 25px;
        border: 1px solid #0a7f43;
        border-right: none;
    }

    .strength-left,
    .strength-right {
        width: auto;
    }

    .strength-top {
        padding: 0;
    }
}

/* review */
.review {
    background-color: #e5eee6;
    padding: 100px 0;
    overflow-x: hidden;
}

.review-container {
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.voice-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.voice-inner-left {
    flex-shrink: 0;
    margin-right: 15px;
}

.voice__image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-bottom: 8px;
}

.voice__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice__meta {
    background-color: #0e7a42;
    color: #fff;
    border-radius: 5px;
    font-size: 11px;
    padding: 5px;
    text-align: center;
}

.voice__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: 0.1em;
}

.voice__review {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-height: 1.6;
    font-size: 14px;
}

.review a.view-more {
    display: block;
    margin-top: 60px;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.review-sp {
    display: none;
}

.review-pc {
    display: grid;
}

@media (max-width: 1024px) {
    .review-pc {
        display: none;
    }

    .review-sp {
        display: block;
    }

    .voice__title {
        font-size: 1rem;
    }


}

@media (max-width: 1024px) {
    .review-archive .review-archive-list {
        grid-template-columns: 1fr;
    }
}

.review-swiper-wrap {
    position: relative;
    padding: 0 50px;
}

.review-swiper {
    overflow: hidden;
}

.review-card.swiper-slide {
    height: auto;
    min-height: 280px;
}

.review-swiper-prev img,
.review-swiper-next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.review-swiper-prev {
    left: 0;
}

.review-swiper-next {
    right: 0;
}

.review-swiper-prev.swiper-button-disabled,
.review-swiper-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.review-pagination {
    margin-top: 20px;
    text-align: center;
    position: static !important;
}

.review-pagination .swiper-pagination-bullet {
    background-color: #0e7a42;
    opacity: 0.5;
}

.review-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .review {
        padding: 50px 0;
    }

    .review-container {
        max-width: none;
        padding: 0 5%;
        /* 画面幅比例を維持 */
    }

    .review a.view-more {
        margin-top: 25px;
    }

    .review-card {
        padding: 10px 15px;
        box-shadow: none;
    }
}

/* access */
.access {
    background-color: #fdf8ee;
    padding: 100px 20px;
}

.access-container {
    max-width: 1000px;
    margin: 0 auto;
}

.access-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.access-map {
    width: 452px;
    flex-shrink: 0;
}

.access-map iframe {
    border-radius: 20px;
    width: 100%;
    height: 410px;
    display: block;
}

.access-info {
    width: 500px;
}

.access-list {
    display: grid;
    grid-template-columns: 120px 1fr;
    row-gap: 0;
    margin-bottom: 40px;
}

.access-list dt,
.access-list dd {
    padding: 12px 0;
    border-bottom: 1px solid #6b6b6b;
    font-size: 14px;
    line-height: 1.6;
}

.access-list dt {
    font-weight: 500;
}

.access-list dd {
    margin: 0;
    word-break: break-word;
}

@media (max-width: 1040px) {
    .access-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .access-map {
        width: 100%;
        max-width: 500px;
    }

    .access-map iframe {
        width: 100%;
        height: 410px;
    }

    .access-info {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .access {
        padding: 50px 5%;
        /* 固定20px → 画面幅比例に変更 */
    }

    .access-container {
        padding: 0;
    }

    .access-wrapper {
        gap: 32px;
    }

    .access-map {
        width: 100%;
        max-width: 100%;
    }

    .access-map iframe {
        width: 100%;
        height: 280px;
    }

    .access-info {
        width: 100%;
        max-width: 100%;
    }

    .access-list {
        grid-template-columns: 90px 1fr;
    }
}

@media (max-width: 480px) {
    .access {
        padding: 50px 5%;
        /* 画面幅比例を維持 */
    }

    .access-container {
        padding: 0;
    }

    .access-list {
        grid-template-columns: 80px 1fr;
        font-size: 13px;
    }
}

/* footer */
.footer-cta {
    display: flex;
    width: 100%;
}

.footer-cta__item {
    flex: 1;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-cta__item a {
    transition: all 0.3s ease;
}

.footer-cta__item a:hover {
    opacity: 0.5;
}

.footer-cta__item p {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.is-line {
    background-color: #65b76e;
}

.is-line a {
    color: #0e7a42;
    border: 3px solid #0e7a42;
}

.is-contact {
    background-color: #c3ac66;
}

.is-contact a {
    color: #604a25;
    border: 3px solid #604a25;
}

.is-assess {
    background-color: #604a25;
}

.is-assess a {
    color: #c3ac66;
    border: 3px solid #c3ac66;
}

.footer-button {
    padding: 5px 50px;
    background-color: #fff;
    border-radius: 70px;
    font-size: 30px;
    font-weight: bold;
}

.footer-button__icon {
    display: none;
}

.footer-bottom {
    background-color: #0e7a42;
    background-image:
        linear-gradient(rgba(14, 122, 66, 0.85),
            rgba(14, 122, 66, 0.85)),
        url("../images/FV_2.png");
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    margin: 0 auto;
}

.footer-button__arrow {
    display: none;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 106px;
    height: 103px;
}

.footer-address {
    font-family: "Noto Sans JP", serif;
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: 0.06em;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.footer-link1 {
    display: flex;
    gap: 40px;
    font-size: 2rem;
    font-family: "Noto Sans JP", serif;
    color: #fff;
    margin-bottom: 42px;
    font-weight: 700;
}

.footer-link1 a,
.footer-link2 a {
    position: relative;
}

.footer-link1 a::after,
.footer-link2 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.footer-link1 a:hover::after,
.footer-link2 a:hover::after {
    width: 100%;
}

.footer-link2 {
    display: flex;
    gap: 25px;
    font-size: 1rem;
    font-family: "Noto Sans JP", serif;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-sns-wrapper {
    margin-bottom: 30px;
}

.footer-sns {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.copyright {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer-cta {
        flex-direction: column;
    }

    .footer-cta p {
        display: none;
    }

    .footer-bottom {
        padding: 0;
    }

    .footer-button {
        padding: 8px 30px;
        width: 200px;
        font-size: 1rem;
        text-align: center;
    }

    .footer-button__icon {
        display: inline-block;
        color: #fff;
        font-size: 36px;
    }

    .footer-cta__item {
        flex-direction: row;
        align-items: center;
        padding: 25px 30px;
        justify-content: space-between;
    }

    .footer-button__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #65b76e;
        width: 14px;
        height: 14px;
        color: #fff;
    }

    .is-contact .footer-button__arrow {
        background-color: #c3ac66;
    }

    .is-assess .footer-button__arrow {
        background-color: #604a25;
    }

    .footer-wrapper {
        padding: 60px 5%;
    }

    .footer-logo {
        width: 83px;
        height: 80px;
        margin-bottom: 30px;
    }

    .footer-link2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
        padding: 0 20px;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 0.06em;
    }

    .footer-link2 a:nth-child(odd) {
        text-align: left;
    }

    .footer-link2 a:nth-child(even) {
        text-align: right;
    }

    .footer-link1 a:hover::after,
    .footer-link2 a:hover::after {
        display: none;
    }

    .footer-logo img {
        width: 83px;
        height: 80px;
    }
}

.property-item {
    border: 1px solid #eee;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.property-item .thumb img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.property-item .meta {
    flex: 1;
}

.property-title {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.address,
.price {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
}

.no-thumb {
    width: 160px;
    height: 120px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.property-detail .media img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* 買う */
.fv-buy-inner {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 24px 40px;
    border-radius: 8px;
}

.fv-buy-title {
    font-size: 55px;
    line-height: 1.27;
    font-family: "Jomolhari", serif;
    color: #0e7a42;
    font-weight: 400;
}

@media (max-width: 768px) {
    .fv-buy {
        height: 30vw;
    }

    .fv-buy-inner {
        padding: 16px 24px;
    }

    .fv-buy-title {
        font-size: 1.5rem;
    }
}

/* buy-step */
.buy-step {
    background-color: #fdf8ee;
    padding: 100px 0 60px 0;
}

.buy-step-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #0a7f43;
    position: relative;
    margin-bottom: 68px;
}

.buy-step-title span {
    display: inline-block;
    justify-content: center;
    background-color: #0a7f43;
    color: #fff;
    border-radius: 10px;
    padding: 0.15em 0.4em;
    width: fit-content;
    text-indent: 0.15em;
    margin-right: 0.15em;
}

.buy-step-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 100px;
    height: 8px;
    background-color: currentColor;
    border-radius: 20px;
}

.step {
    display: flex;
    gap: 30px;
    padding: 20px 9px 20px 40px;
    border: solid 1px #000;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    height: auto;
    min-height: 140px;
    align-items: center;
}

.steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    /* % をやめて固定値に */
}

.steps::before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: calc(79px + 25px);
    /* padding + 円の半径、固定値同士なので絶対にズレない */
    width: 2px;
    background-color: #0a7f43;
    z-index: 1;
}

.step-num {
    height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #0a7f43;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
    line-height: 1;
    padding-inline: 0.2em;
    letter-spacing: 0;
    position: relative;
    z-index: 2;
}

.step-title h3 {
    width: 270px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    font-weight: 400;
    color: #0e7a42;
}

.step:nth-child(even) {
    background-color: transparent;
    border: none;
}

.step:nth-child(even) .step-num {
    background-color: #fff;
    color: #0a7f43;
    border: 2px solid #0a7f43;
}

@media (max-width:1024px) {
    .sub-container {
        margin: 0 auto;
        padding: 0 5%;
    }

    .buy-step {
        padding: 50px 0;
    }

    .buy-step-title {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .buy-step-title::after {
        bottom: -10px;
        height: 5px;
    }

    .buy-step-title span {
        padding: 0.15em 0.4em;
    }

    .steps {
        padding: 0 5%;
        /* SP でも比例余白 */
    }

    .steps::before {
        display: none;
    }

    .step {
        flex-wrap: wrap;
        height: auto;
        padding: 30px 20px;
        gap: 20px;
    }

    .step-num {
        flex-shrink: 0;
    }

    .step-title {
        flex: 1;
    }

    .step-title h3 {
        width: 100%;
    }

    .step-txt {
        width: 100%;
    }
}

/* archive property */
.property-archive {
    padding: 100px 0;
    background-color: #fff;
}

.archive-property-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    /* padding なし → 追加 */
}

.archive-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.archive-property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.archive-property-label {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.archive-property-area {
    background-color: #0e7a42;
    color: #fff;
    border-radius: 40px;
    padding: 3px 20px;
}

.archive-property-type {
    background-color: #c3ac66;
    border-radius: 40px;
    padding: 3px 20px;
}

.archive-property-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 16px;
}

.archive-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-property-name {
    margin-bottom: 16px;
}

.archive-property-address {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.archive-property-address img {
    margin-right: 5px;
    flex-shrink: 0;
}

.archive-property-address-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.archive-property-address::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.archive-property-pagination {
    margin-top: 60px;
    text-align: center;
}

.archive-property-pagination .page-numbers {
    display: inline-block;
    margin: 0 6px;
}

/* フィルターエリア */
.property-filter {
    margin: 65px 0 50px;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.filter-card {
    position: relative;
    background: #e5eee6;
    border: 2px solid #0e7a42;
    border-radius: 12px;
    padding: 45px 40px 55px;
}

.filter-card-title {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #0e7a42;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 17px 50px;
    border-radius: 10px;
    margin: 0;
    white-space: nowrap;
}

.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.filter-checkbox-label:hover {
    opacity: 0.7;
}

.filter-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0e7a42;
}

.filter-checkbox-label span {
    font-size: 14px;
    color: #333;
    user-select: none;
}

.filter-submit-wrapper {
    display: flex;
    justify-content: center;
}

.filter-submit {
    padding: 12px 60px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #c3ac66, #a89456);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 0;
    border-bottom: 5px solid #9a8441;
    transition: margin-top 0.1s, border-bottom-width 0.1s;
}

.filter-submit:hover {
    margin-top: 3px;
    border-bottom: 2px solid #9a8441;
}

.filter-submit:active {
    margin-top: 5px;
    border-bottom: 0px solid #9a8441;
}

.no-properties {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.archive-property-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.archive-property-pagination .page-numbers:not(.prev):not(.next) {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #0e7a42;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    box-sizing: border-box;
}

.archive-property-pagination .page-numbers.current:not(.prev):not(.next) {
    background-color: #0e7a42;
    color: #fff;
}

.archive-property-pagination .page-numbers:not(.prev):not(.next) {
    margin: 0 15px;
}

.archive-property-pagination .prev.page-numbers {
    margin-right: 25px;
}

.archive-property-pagination .next.page-numbers {
    margin-left: 25px;
}

@media (max-width: 768px) {
    .property-archive {
        padding: 50px 0;
    }

    .filter-cards {
        grid-template-columns: 1fr;
    }

    .filter-submit {
        width: 100%;
    }

    .archive-property-grid {
        grid-template-columns: 1fr;
    }
}

.step-txt {
    font-weight: medium;
    line-height: 1.56;
    letter-spacing: 0.2em;
}

/* other-services */
.other-service {
    background-color: #e5eee6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.other-service::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 40%;
    background-color: #0e7a42;
    border-radius: 0 40px 40px 0;
    z-index: 0;
}

.service-list {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 100px;
}

.service-item {
    width: 310px;
}

.service-item h3 {
    font-family: "Noto Sans JP", serif;
    margin: 16px 0;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: medium;
}

.service-item p {
    font-family: "Noto Sans JP", serif;
    margin-bottom: 45px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    color: #fff;
}

.service-image {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-number {
    font-family: 'DIN Next', 'DIN', Arial, sans-serif;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 64px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.06em;
}

.service-title {
    margin-left: 220px;
    margin-bottom: 64px;
}

@media (min-width: 769px) {
    .service-item {
        flex: 1;
        min-width: 0;
    }

    .service-image {
        width: 100%;
        max-width: 240px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .service-list {
        padding: 0 40px;
    }
}

@media (max-width:768px) {
    .service-list {
        flex-direction: column;
        background-color: #0a7f43;
        align-items: center;
        gap: 0;
        border-radius: 20px;
    }

    .other-service {
        padding: 50px 0;
    }

    .other-service::after {
        display: none;
    }

    .service-title {
        margin: 0 0 35px 0;
    }

    .service-item {
        padding: 0 25px;
    }

    .service-item:first-child {
        padding-top: 40px;
    }
}

/* cta */
.cta {
    padding: 60px 0;
    background-color: #e5eee6;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.cta-inner h2 {
    font-family: "Noto Sans JP", serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: medium;
    line-height: 1.56;
    letter-spacing: 0.3em;
    color: #0e7a42;
    margin-bottom: 12px;
}

.cta-tel {
    font-family: "Jomolhari", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: 0.15em;
    color: #0e7a42;
    margin-bottom: 10px;
    display: flex;
    gap: 14.5px;
    align-items: center;
}

.cta-tel img {
    width: clamp(30px, 3vw, 48px);
    height: clamp(30px, 3vw, 48px);
}

.cta-time {
    color: #0e7a42;
    margin-bottom: 29.5px;
}

.cta-left {
    flex-shrink: 0;
}

.cta-inner h2 {
    white-space: nowrap;
}

.cta-right {
    position: relative;
    top: -100px;
    right: -40px;
}

.cta-right img {
    height: auto;
    max-width: 100%;
}

.sp-button {
    display: none;
}

@media (max-width:768px) {
    .cta-inner {
        flex-direction: column;
    }

    .cta-right {
        top: 0;
        right: 0;
    }

    .cta-right img {
        max-width: 100%;
    }

    .cta-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-left h2 {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.3em;
    }

    .cta-tel {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        letter-spacing: 0.15em;
    }

    .cta-tel img {
        width: 30px;
        height: 30px;
    }

    .view-more {
        white-space: nowrap;
        font-size: 16px;
    }

    .sp-button {
        display: flex;
    }

    .pc-button {
        display: none;
    }

    .cta-time {
        margin-bottom: 0;
    }
}

/* strength */
.strength {
    padding: 100px 0 40px;
    background-color: #fdf8ee;
}

.strength-container {
    max-width: 1000px;
}

.strength-container-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    /* padding なし → 追加 */
}

.strength-inner {
    display: flex;
    gap: 40px;
    margin: 60px auto;
}

.strength-inner-left,
.strength-inner-right {
    flex: 1;
}

.strength-inner-right h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2.08;
    letter-spacing: 0.2em;
    color: #0e7a42;
    border: #0e7a42 1px solid;
    border-radius: 70px;
    background-color: #fff;
    text-align: center;
    margin: 9px 0 20px;
}

.strength-inner-right p {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: #000;
}

.strength-inner-left {
    position: relative;
}

.strength-num {
    font-family: 'DIN Next', 'DIN', Arial, sans-serif;
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 90px;
    font-weight: bold;
    color: #0e7a42;
    line-height: 0.67;
    letter-spacing: 0.1em;
}

@media (max-width:1024px) {
    .strength {
        padding: 50px 0;
    }

    .strength-inner {
        flex-direction: column;
    }

    .strength-inner-left {
        margin: 0 auto;
    }

    .strength-inner-right p {
        font-size: 1rem;
    }

    .strength-container-page {
        margin: 0 auto;
        padding: 0 5%;
    }

    .strength-num {
        top: -10px;
        font-size: 45px;
    }
}

/* about */
.message {
    padding: 100px 0;
    background-color: #fdf8ee;
}

.message-content {
    display: flex;
    gap: 30px;
}

.about-logo-wrapper {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 420px;
    aspect-ratio: 420/301;
}

.about-logo-wrapper img {
    width: 264px;
    height: auto;
}

.message-content-left,
.message-content-right {
    flex: 1;
}

.message-content-left p {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
}

.staff {
    padding: 100px 0 40px 0;
}

.staff-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.staff-content-left {
    flex: 11;
}

.staff-content-right {
    flex: 21;
}

.staff-position {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.2em;
}

.staff-class {
    display: inline-block;
    background-color: #0e7a42;
    border-radius: 30px;
    padding: 5px 30px;
    color: #fff;
    margin: 15px 0 25px;
}

.staff-txt {
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: 0.2em;
}

@media (max-width:768px) {
    .message {
        padding: 50px 0;
    }

    .message-content {
        flex-direction: column;
    }

    .staff {
        padding: 50px 0;
    }

    .staff-content {
        flex-direction: column;
    }

    .about-logo-wrapper {
        width: 100%;
    }

    .message-content-left p {
        font-size: 1rem;
    }
}

/* NEWS */
.news-home {
    background-color: #fdf8ee;
    padding: 100px 0;
}

.news-single {
    padding: 100px 0;
    background-color: #fdf8ee;
}

.news-item {
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.news-link {
    display: flex;
    gap: 60px;
    text-decoration: none;
    color: inherit;
}

.news-thumb {
    width: 270px;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-single-date {
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    font-family: "Noto Sans JP", serif;
    position: relative;
    display: inline-block;
}

.news-date {
    margin-bottom: 20px;
    display: inline-block;
    align-self: flex-start;
    border-bottom: 1px solid #000;
}

.news-single-date::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 40px;
}

.back-link img {
    width: 32px;
    height: 32px;
}

.back-txt {
    font-weight: medium;
    letter-spacing: 0.2em;
    font-family: "Noto Sans JP", serif;
}

.news-single-header {
    margin-bottom: 40px;
}

.news-single-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    font-weight: medium;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
}

.news-single-pagination a {
    display: inline-flex;
    align-items: center;
    gap: 21px;
}

.news-single-pagination img {
    width: 32px;
    height: auto;
}

.news-single-pagination a:hover {
    opacity: 0.7;
}

.news-single-thumb {
    margin-bottom: 40px;
}

.news-content {
    margin-bottom: 40px;
    letter-spacing: 0.16em;
    font-family: "Noto Sans JP", serif;
    line-height: 2.22;
    font-size: 1.125;
}

.next-post a {
    flex-direction: row-reverse;
}

@media (max-width:768px) {
    .news-home {
        padding: 50px 0;
    }

    .news-link {
        flex-direction: column;
        gap: 0;
    }

    .news-single-thumb {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .news-thumb {
        width: 100%;
        max-height: 200px;
        aspect-ratio: 16 / 9;
        /* 比率で高さを自動計算 */
    }

    .news-single-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .news-body {
        padding: 20px;
    }
}


/* お問い合わせページ */
.contact {
    padding: 100px 0;
}

.form-title {
    font-size: 2rem;
    font-weight: medium;
    letter-spacing: 0.2em;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: block;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background-color: #0e7a42;
}

.form-group {
    margin-bottom: 20px;
}

.label-text {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.wpcf7 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    /* padding なし → 追加 */
}

.wpcf7 label {
    display: block;
    margin-bottom: 20px;
    font-weight: medium;
    font-size: 20px;
    letter-spacing: 0.2em;
}

.wpcf7 label+br {
    display: none;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 8px;
    font-size: 14px;
}

.wpcf7-form-control-wrap+br {
    display: none;
}

.wpcf7 select {
    margin-top: 8px;
    height: auto;
    padding: 8px 12px;
    font-size: 1rem;
    box-sizing: border-box;
}

.wpcf7 .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    letter-spacing: 0.2em;
}

.wpcf7 .wpcf7-list-item {
    margin: 0;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
    display: none;
}

.wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
    display: inline-block;
    padding: 10px 10px;
    background-color: #ffffff;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    font-family: "Noto Sans JP", serif;
}

.wpcf7 .wpcf7-list-item .wpcf7-list-item-label:hover {
    background-color: #e8f5e9;
}

.wpcf7 .wpcf7-list-item input[type="checkbox"]:checked+.wpcf7-list-item-label {
    background-color: #2e7d32;
    color: #ffffff;
    border-color: #2e7d32;
    font-weight: medium;
    font-family: "Noto Sans JP", serif;
}

.wpcf7 input[type="submit"] {
    display: block;
    margin: 0 auto;
    padding: 15px 40px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #1b5e20;
}

.wpcf7-spinner {
    display: none !important;
}

.privacy-policy {
    padding: 30px 50px;
    text-align: center;
    border: 2px solid #0e7a42;
    margin-top: 40px;
}

.privacy-policy br {
    display: none;
}

.privacy-policy label {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.wpcf7-list-item label {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: inherit !important;
}

.privacy-policy .wpcf7-list-item input[type="checkbox"] {
    display: inline-block !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #000 !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    margin-right: 10px !important;
}

.privacy-policy .wpcf7-list-item input[type="checkbox"]:checked {
    background-color: #2e7d32 !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 2.5l-8 8-3-3' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E") !important;
}

.privacy-policy .wpcf7-list-item .wpcf7-list-item-label {
    display: inline !important;
    padding: 0 !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: inherit !important;
}

.privacy-policy .wpcf7-list-item {
    margin-right: 50px;
}

.privacy-policy a {
    font-size: 18px;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.2em;
    color: #2e7d32;
    text-decoration: underline;
}

.privacy-policy .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0;
}

.privacy-policy .wpcf7-not-valid-tip::after {
    content: "チェックしてください";
    font-size: 18px;
    color: #e53935;
}

.required-mark {
    color: #2e7d32;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.required-label {
    color: #0e7a42;
    font-size: 15px;
    font-weight: medium;
    margin-left: 10px;
    letter-spacing: 0.2em;
}

.label-title {
    font-size: 1.25rem;
    font-family: "Noto Sans JP", serif;
    font-weight: medium;
}

.privacy-title {
    color: #0e7a42;
    font-weight: bold;
}

/* プライバシーポリシーページ */
.privacy-policy-page {
    padding: 100px 0;
}

.privacy-header {
    text-align: center;
}

.privacy-header h1 {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #0e7a42;
}

.privacy-policy-page section {
    margin-top: 40px;
}

.privacy-policy-page p,
.privacy-policy-page li {
    line-height: 1.25;
    letter-spacing: 0.2em;
    font-family: "Noto Sans JP", serif;
}

.privacy-policy-page p {
    margin-top: 30px;
}

.privacy-policy-page ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 50px 0;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .wpcf7 label,
    .label-title {
        font-size: 1rem;
        font-family: "Noto Sans JP", serif;
    }

    .required-mark {
        font-size: 1rem;
    }

    .privacy-policy-page p,
    .privacy-policy-page li,
    .privacy-policy-page h2 {
        font-size: 15px;
        line-height: 1.33;
    }

    .contact {
        padding: 50px 0;
    }

    .privacy-policy label {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px;
    }

    .privacy-policy {
        padding: 20px 16px;
    }

    .privacy-policy label {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .privacy-policy .wpcf7-list-item {
        margin-right: 0;
        width: 100%;
    }

    .privacy-policy .wpcf7-list-item label {
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: wrap;
        gap: 6px;
    }

    .privacy-policy a {
        font-size: 15px;
        word-break: break-word;
    }

    .privacy-policy .wpcf7-not-valid-tip::after {
        font-size: 14px;
    }

    .wpcf7 .wpcf7-checkbox {
        gap: 10px;
    }

    .wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
        font-size: 15px;
    }
}

/* Property Detail */
.single-property-page {
    padding: 40px 0 60px;
}

.single-property .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.property-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: .5px;
}

.property-detail .buy-property-area {
    display: inline;
    vertical-align: middle;
}

.property-detail .property-title {
    display: inline;
    vertical-align: middle;
    margin-left: 37px;
}

.property-header {
    padding-bottom: 20px;
    border-bottom: #0a7f43 3px solid;
}

.property-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 60px;
}

.property-top {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 460px);
    gap: clamp(15px, 2vw, 30px);
    width: 100%;
}

.property-gallery {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 70px;
    box-sizing: border-box;
}

.property-cards.swiper {
    max-width: 100%;
    overflow: hidden;
}

.property-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    overflow: hidden;
}

.property-slide img {
    width: 100%;
    aspect-ratio: 480/345;
    object-fit: cover;
}

.property-swiper-prev,
.property-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-swiper-prev {
    left: 0;
}

.property-swiper-next {
    right: 0;
}

.property-swiper-prev img,
.property-swiper-next img {
    width: 40px;
    height: 40px;
}

.swiper-button-disabled {
    opacity: .3;
    pointer-events: none;
}

.property-pagination {
    margin-top: 25px;
    text-align: center;
}

.property-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #d0d0d0;
    border-radius: 50%;
    transition: .3s;
}

.property-pagination .swiper-pagination-bullet-active {
    background: #2ecc71;
    width: 32px;
    border-radius: 6px;
}

.property-main-info .info-row--price .info-label {
    background-color: #0e7a42;
    color: #fff;
    font-family: "Noto Sans JP", serif;
    font-weight: medium;
    font-size: 20px;
}

.info-label {
    color: #0e7a42;
    font-weight: medium;
    font-size: 15px;
    font-family: "Noto Sans JP", serif;
}

.info-value {
    font-weight: medium;
    font-family: "Noto Sans JP", serif;
}

.property-main-info .info-row.info-row--price {
    border: 2px solid #0e7a42;
    padding: 0;
}

.property-main-info .info-row--price .info-value {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.property-main-info .info-row {
    display: grid;
    grid-template-columns: minmax(100px, 150px) 1fr;
    gap: clamp(10px, 3vw, 40px);
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
    font-family: "Noto Sans JP", serif;
}

.property-main-info .info-label {
    font-weight: medium;
    line-height: 1.25;
    letter-spacing: 0.2em;
    padding: 8px 12px;
    text-align: center;
    font-size: 15px;
}

.property-main-info .info-value {
    font-weight: medium;
    line-height: 1.25;
    letter-spacing: 0.2em;
    padding: 8px 12px;
    text-align: left;
}

.property-button {
    font-family: "Noto Sans JP", serif;
    font-weight: medium;
    line-height: 1.25;
    letter-spacing: 0.2em;
    padding: 17px 100px;
    background-color: #c3ac66;
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.property-button__arrow {
    font-size: 16px;
}

.property-detailed-info {
    width: 100%;
    grid-column: unset;
}

.detailed-info-title {
    font-family: "Noto Sans JP", serif;
    font-weight: medium;
    font-size: 14px;
    line-height: 1.07;
    letter-spacing: 0.2em;
    background-color: #0e7a42;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.info-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2ecc71;
}

/* --- 詳細情報グリッド --- */
.property-detailed-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.property-detailed-info p {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 15px;
}

.property-detailed-info p strong {
    font-family: "Noto Sans JP", serif;
    font-weight: medium;
    line-height: 1.25;
    letter-spacing: 0.2em;
    padding: 20px 30px;
    background: #e5eee6;
    border-top: 1px solid #a8a9a9;
    border-left: 1px solid #a8a9a9;
    border-right: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-detailed-info p span {
    font-family: "Noto Sans JP", serif;
    font-weight: medium;
    line-height: 1.25;
    letter-spacing: 0.2em;
    padding: 20px 30px;
    color: #000;
    border-top: 1px solid #a8a9a9;
    border-left: 1px solid #a8a9a9;
    border-right: none;
    border-bottom: none;
    display: flex;
    align-items: center;
}

/* 右列（偶数）の右端にborder */
.property-detailed-info-grid p:nth-child(even) span {
    border-right: 1px solid #a8a9a9;
}

/* 左列（奇数）が最後（項目数が奇数のとき）は右端にborder */
.property-detailed-info-grid p:last-child:nth-child(odd) span {
    border-right: 1px solid #a8a9a9;
}

/* 最終行のborder-bottom */
.property-detailed-info-grid p:last-child strong,
.property-detailed-info-grid p:last-child span {
    border-bottom: 1px solid #a8a9a9;
}

/* 4の位置：偶数かつ最後から2番目 */
.property-detailed-info-grid p:nth-last-child(2):nth-child(even) strong,
.property-detailed-info-grid p:nth-last-child(2):nth-child(even) span {
    border-bottom: 1px solid #a8a9a9;
}

.property-detailed-info-grid p:nth-child(even):last-child strong,
.property-detailed-info-grid p:nth-child(even):last-child span {
    border-bottom: 1px solid #a8a9a9;
}

/* 項目数が奇数のとき、最後から2番目（左列最終行）にもborder-bottom */
.property-detailed-info-grid p:nth-last-child(2):nth-child(odd) strong,
.property-detailed-info-grid p:nth-last-child(2):nth-child(odd) span {
    border-bottom: 1px solid #a8a9a9;
}

.back-link-container {
    text-align: center;
    padding: 40px 0;
}

.back-to-top {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 204, 113, .3);
    transition: .3s;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, .5);
}

/* ========== 1200px以下 ========== */
@media (max-width: 1200px) {
    .property-top {
        grid-template-columns: 1fr;
    }
}

/* ========== 1024px以下 ========== */
@media (max-width: 1024px) {
    .property-header {
        padding-bottom: 10px;
    }

    .property-detail .buy-property-area {
        display: inline-block;
        vertical-align: middle;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .property-detail .property-title {
        display: block;
        font-size: 1rem;
        margin-left: 0;
    }

    .property-main-container {
        grid-template-columns: 1fr;
    }

    .property-top {
        grid-template-columns: 1fr;
    }

    .property-gallery {
        padding: 0 50px;
    }

    .property-slide {
        width: 100% !important;
        max-width: 100% !important;
    }

    .property-slide img {
        aspect-ratio: unset;
        width: 100% !important;
        height: 250px;
        object-fit: contain;
    }

    .property-swiper-prev,
    .property-swiper-next {
        width: 40px;
        height: 40px;
    }

    .property-swiper-prev {
        left: 0;
    }

    .property-swiper-next {
        right: 0;
    }

    .property-button {
        padding: 15px 60px;
    }

    .property-main-info .info-row {
        grid-template-columns: minmax(80px, 100px) 1fr;
        gap: 0;
    }

    .property-info-table .info-row--price .info-label {
        font-size: 16px;
    }

    .property-info-table .info-row--price .info-value {
        font-size: 16px;
    }

    .property-main-info .info-label,
    .property-main-info .info-value {
        font-size: 14px;
        padding: 8px 6px;
    }

    .property-detailed-info {
        grid-column: unset;
    }

    /* 1カラムに切り替え */
    .property-detailed-info-grid {
        grid-template-columns: 1fr;
    }

    .property-detailed-info p {
        grid-template-columns: 140px 1fr;
    }

    /* 1カラムでは全行のspanに右border */
    .property-detailed-info-grid p span {
        border-right: 1px solid #a8a9a9;
    }

    /* 最終行にborder-bottom */
    .property-detailed-info-grid p:last-child strong,
    .property-detailed-info-grid p:last-child span {
        border-bottom: 1px solid #a8a9a9;
    }

    /* PCの奇数最終行ルールを無効化（1カラムでは不要） */
    .property-detailed-info-grid p:nth-last-child(2):nth-child(odd) strong,
    .property-detailed-info-grid p:nth-last-child(2):nth-child(odd) span {
        border-bottom: none;
    }

    .property-detailed-info p strong {
        border-right: none;
        font-size: 14px;
        padding: 12px 8px;
    }

    .property-detailed-info p span {
        font-size: 14px;
        padding: 12px 8px;
    }
}

/* ========== 600px以下 ========== */
@media (max-width: 600px) {
    .property-gallery {
        padding: 0;
    }

    .property-swiper-prev,
    .property-swiper-next {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.75);
        border-radius: 50%;
        padding: 4px;
    }

    .property-swiper-prev {
        left: 8px;
    }

    .property-swiper-next {
        right: 8px;
    }

    .property-swiper-prev img,
    .property-swiper-next img {
        width: 28px;
        height: 28px;
    }
}

/* ========== 480px以下 ========== */
@media (max-width: 480px) {
    .property-slide img {
        height: 200px;
    }
}

/* ========== 印刷 ========== */
@media print {

    .property-swiper-prev,
    .property-swiper-next,
    .property-pagination,
    .back-link-container {
        display: none;
    }

    .property-main-container {
        grid-template-columns: 1fr;
    }
}

/* assessment */
.assessment-title {
    background-color: #e5eee6;
    color: #0e7a42;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 7px 0;
    margin-bottom: 15px;
    margin-top: 40px;
}