body {
    margin: 0;
}

/* ↓タイトルバー↓ */
.taitle_bar {
    position: relative;
}

.taitle_bar img {
    width: 100%;
}

/* PC用のスタイル */
@media screen and (min-width: 900px) {
    .title_img_PC {
        display: block; /* MV_text_areaを表示 */
    }

    .title_img_SP {
        display: none; /* mobile_text_areaを非表示 */
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 899px) {
    .title_img_PC {
        display: none; /* MV_text_areaを非表示 */
    }

    .title_img_SP {
        display: block; /* mobile_text_areaを表示 */
    }
}

.title_bar_company {
    position: absolute;
    top: 65%; /* 垂直方向に中央揃え */
    left: 50%; /* 水平方向に中央揃え */
    transform: translate(-50%, -50%); /* 中央に位置調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_en {
    margin-bottom: 5px;
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(12px, 0.7vw, 14px);
    letter-spacing: 7px;
    color: #fff;
}

.underline {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 1.6vw, 32px);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    color: #fff;
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* 下線の上下位置調整 */
    display: inline-block;
    width: 36px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    transform: translateX(-50%); /* 位置調整 */
    background-color: #fff; /* 下線の色 */
}
/* ↑タイトルバー↑ */

/* ↓実績↓ */
.property-Detail_area {
    margin: 5% 22% 0;
    justify-content: center;
}

.property_tag {
    margin-bottom: 3%;
    padding: 4px 8px;
    width: fit-content;
    color: #fff;
    background-color: #1e5e98;
    z-index: 30;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    text-align: center;
}

.property_content {
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

.content-right {
    width: fit-content;
}

.land-img-length {
    height: 597px;
    width: 448px;
    margin-bottom: 16px;
}

.land-img-width {
    height: 336px;
    width: 448px;
    margin-bottom: 16px;
}

.property_content iframe {
    height: 300px;
    width: 448px;
}

table {
    margin: 0 5% 10% 0;
    border-collapse:collapse;
}

th {
    vertical-align: text-top;
    font-weight: 300;
    white-space: nowrap
}

td {
    padding: 0 4%;
    width: 1500px;
}

.tb_border {
    border-bottom: solid 1px #343434;
    padding-bottom: 4%;
}

.tb_border02 {
    border-bottom: solid 1px #c6c6c6;
}

.tb_top {
    padding-top: 4%;
}

.tb_un {
    padding-bottom: 4%;
}

ol {
    padding: 0 4%;
}

.btn_01 {
    text-align: center;
    white-space: nowrap;
}

.detail_btn {
    border-radius: 4px;
    background-color: #1e1e1e;
    padding: 16px 92px;
    text-decoration: none;
    color: white;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    transition: 0.3s;
}

.detail_btn:hover {
    opacity: 0.7;
}

.all_property_link {
    padding: 10% 0 10%;
    text-align: center;
    margin: 0 auto;
}

.all_property_link a {
    color: #1e1e1e;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.all_property_link a:hover {
    color: #b3a07c;

}

.btn_02 {
    text-align: center;
    white-space: nowrap;
    display: none;
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 1200px) {
    .property_content {
        display: block;
    }

    table {
        margin: 0 0 15% 0;
    }

    .property_content img {
        width: 100%;
    }

    .btn_01 {
        display: none;
    }

    .btn_02 {
        padding-top: 5%;
        display: block;
    }

    .property_content iframe {
        height: 300px;
        width: 100%;
    }

    .property_content img {
        height: 100%;
    }
}

@media screen and (max-width: 786px) {
    .property-Detail_area {
        margin: 11% 5%;
    }

    .all_property_link {
        padding: 20% 0;
    }
}
/* ↑実績↑ */