body {
    margin: 0;
}

/* ↓メインビジュアル↓ */
.MV_area {
    position: relative;
}

.MV_area img {
    width: 100%;
}

.MV_text_area {
    padding: 15% 0 15% 20%;
    position: absolute;
    top: 50%; /* 垂直方向に中央揃え */
    left: 27%; /* 水平方向に中央揃え */
    transform: translate(-50%, -50%); /* 中央に位置調整 */
}

.main_lead {
    padding: 0 0 1.5% 0;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: clamp(30px, 3.3vw, 65px);
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #1C5085 0%, #110E2B 100%) 1;
    letter-spacing: 4px;
}

.main_text {
    margin-top: 3%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    font-size: clamp(16px, 0.8vw, 17px);
    line-height: 2.5rem;
    width: fit-content
}

/* PC用のスタイル */
@media screen and (min-width: 769px) {
    .fixed_btn { 
        display: none;
    }

    .MV_img_PC {
        display: block; /* MV_text_areaを表示 */
    }

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

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

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

/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
    .fixed_btn { 
        display: block;
        position: fixed; /* 追従させる為にfixedの値を記述します */
        z-index: 30; /* 他の要素の下に隠れないように全面配置させます */
        bottom: 1.5%;
        right: 2.5%;
        padding: 1% 4% 2%;
        border: none;
        border-radius: 4px;
        background-color: #b3a07c;
        box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.25);
        text-align: center; /* テキストを中央揃えにします */
        text-decoration: none; /* テキストの下線を削除します */
        color: #fff; /* テキストカラーを白にします */
        font-family: "Noto Sans JP", sans-serif;
    }
    
    .fixed_btn a { 
        display: block;
        color: #fff;
        text-decoration: none;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
    }
    
    .tel_number {
        font-size: 16px;
    }
    
    .tel_time {
        margin: 0;
        font-size: 11px;
        color: #fff;
    }
    


    .MV_img_PC {
        display: none; /* MV_text_areaを非表示 */
    }

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

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

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

    .mobile_text_area {
        padding: 13% 0;  
        position: absolute;
        top: 50%; /* 垂直方向に中央揃え */
        left: 50%; /* 水平方向に中央揃え */
        transform: translate(-50%, -50%); /* 中央に位置調整 */
        white-space: nowrap
    }

    .main_lead_mobile {
        padding: 0 0 1.5% 0;
        font-family: "Noto Serif JP",serif;
        font-weight: 500;
        font-style: normal;
        color: #fff;
        font-size: clamp(30px, 3.4vw, 67px);
        border-bottom: 3px solid;
        border-image: linear-gradient(to right, #1C5085 0%, #110E2B 100%) 1;
        width: fit-content
    }
    
    .main_text_mobile {
        margin-top: 3%;
        font-family: "Noto Sans JP", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        color: #fff;
        font-size: clamp(16px, 0.8vw, 17px);
        line-height: 2.5rem;
        width: fit-content
    }
}
/* ↑メインビジュアル↑ */

/* ↓事業内容↓ */
.business_area {
    padding: 6.3% 0;
}

.business_title {
    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: #1C5085;
}
  
.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;
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /*下線の上下位置調整*/
    display: inline-block;
    width: 36px; /*下線の幅*/
    height: 3px; /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%); /*位置調整*/
    background-color: #1C5085; /*下線の色*/
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 88px 20% 0 20%;
}

.card_a {
    width: calc(50% - 10px);
    box-sizing: border-box;
    margin-bottom: 40px;
}

@media (min-width: 375px) {
    .card_a {
        width: calc(100% - 3%);
    }
}

@media (min-width: 768px) {
    .card_a {
        width: calc(50% - 3%);
    }
}

@media (min-width: 1650px) {
    .card_a {
        width: calc(25% - 3%);
    }
}

.card_01 {
    background-image: url("../img/business01_PC.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.card_02 {
    background-image: url("../img/business02_PC.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.card_03 {
    background-image: url("../img/business03_PC.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.card_04 {
    background-image: url("../img/business04_PC.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.business_title_sub {
    margin-top: 85%;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.business_text_sub {
    margin-bottom: 15%;
    line-height: 1.7;
    color: #fff;
    padding: 0 8%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 14px
}

.btn_01 {
    margin-top: 54px;
    text-align: center;
}

.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: .3s;
}

.detail_btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .card-container {
        margin: 0 10%;
    }

    .business_title{
        margin:  12% 0 10% 0;
    }

    .card_04 {
        margin-bottom: 5%;
    }

    .btn_01 {
        margin-bottom: 15%;
    }
}
/* ↑事業内容↑ */


/* ↓企業情報↓ */
.company_area{
    position: relative;
}

.company_area img {
    width: 100%;
}

.company_content {
    position: absolute;
    top: 47%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.company_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
  
.company_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;
}
  
.company_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;
}

.company_underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /*下線の上下位置調整*/
    display: inline-block;
    width: 36px; /*下線の幅*/
    height: 3px; /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%); /*位置調整*/
    background-color: #fff; /*下線の色*/
}

.btn_02 {
    margin-top: 25%;
    text-align: center;
    white-space: nowrap;
}

.detail_btn_02 {
    border-radius: 4px;
    border: solid 1px;
    padding: 16px 92px;
    text-decoration: none;
    color: #fff;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    transition: .3s;
}

.detail_btn_02:hover {
    background-color: #fff;
    color: #1e1e1e;
}

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

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

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

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

    .company_content {
        position: absolute;
        top: 47%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}
/* ↑企業情報↑ */


/* ↓取り扱い物件↓ */
.property_area {
    margin-bottom: 6%;
}

.property_card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card_b {
    width: calc(50%);
    box-sizing: border-box;
}

@media (min-width: 375px) {
    .card_b {
        width: calc(100%);
    }
}

@media (min-width: 1400px) {
    .card_b {
        width: calc(50%);
    }
}

.property_card_01 {
    background-image: url("../img/Image_Left_PC.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.property_card_02 {
    background-image: url("../img/Image_Right_PC.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.property_content {
    margin: 10% 0 15% 15.7%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width:1400px) {
    .property_card_02 {
        background-image: url("../img/Image_Right_SP.jpg");
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .property_content {
        margin: 0 auto;
        padding: 10%;
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.property_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}
  
.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: #1C5085;
}
  
.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;
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /*下線の上下位置調整*/
    display: inline-block;
    width: 36px; /*下線の幅*/
    height: 3px; /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%); /*位置調整*/
    background-color: #1C5085; /*下線の色*/
}

.property_text_sub {
    margin: 40px 0 48px 0;
    width: fit-content;
    line-height: 1.7;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 14px
}

.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;
    white-space: nowrap;
    transition: .3s;
}

.detail_btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1200px) {
    .property_area {
        margin-bottom: 15%;
    }
}

/* PC用のスタイル */
@media screen and (min-width: 769px) {
    .property_img_SP {
        display: none; /* mobile_text_areaを非表示 */
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 769px) {
    .property_img_SP {
        display: block; /* mobile_text_areaを表示 */
        width: 100%;
    }
}
/* ↑取り扱い物件↑ */



/* ↓取引実績↓ */
.record_area {
    position: relative;
    margin: 6.3% 0 6.3% 0;
}

.image-wrapper {
    text-align: center;
}

.image-wrapper img {
    display: inline-block;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
}

.record_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.record_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-bottom: 25%;
}

.record_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;
}

.record_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;
}

.record_underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /*下線の上下位置調整*/
    display: inline-block;
    width: 36px; /*下線の幅*/
    height: 3px; /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%); /*位置調整*/
    background-color: #fff; /*下線の色*/
}

.btn_04 {
    padding-bottom: 10%;
}

.detail_btn_04 {
    border-radius: 4px;
    border: solid 1px;
    padding: 16px 92px;
    text-decoration: none;
    color: #fff;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    white-space: nowrap;
    transition: .3s;
}

.detail_btn_04:hover {
    background-color: #fff;
    color: #1e1e1e;
}

/* PC用のスタイル */
@media screen and (min-width: 1201px) {
    .record_img_PC {
        display: block !important;
    }

    .record_img_SP {
        display: none !important;
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 1200px) {
    .record_area {
        margin-bottom: 20%;
    }

    .record_img_PC {
        display: none !important;
    }

    .record_img_SP {
        display: block !important;
    }

    .image-wrapper img {
        width: 90%;
    }
}
/* ↑取引実績↑ */

/* ↓新着情報↓ */
.news_area {
    display: flex;
    margin-bottom: 6%;
}
    
.news_content {
    width: fit-content;
    margin: 0 4.6% 0 22%;
}

.news_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
}
  
.news_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: #1C5085;
}
  
.news_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;
}

.news_underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /*下線の上下位置調整*/
    display: inline-block;
    width: 36px; /*下線の幅*/
    height: 3px; /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%); /*位置調整*/
    background-color: #1C5085; /*下線の色*/
}

.btn_05 {
    margin-top: 88px;
    text-align: center;
    padding-bottom: 40%;
}

.news_list {
    padding: 0;
    margin: 0;
    width: 37%;
}

li {
    list-style: none;
}

.news_list_content {
    border-bottom: solid 1px #b3a07c;
    margin-bottom: 24px;
}

.date {
    margin-right: 16px;
    font-family: "Frank Ruhl Libre",serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #1e1e1e;
}

.news_tag {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    color: #fff;
    padding: 4px 12px;
    background-color: #b3a07c;
    white-space: nowrap;
}

.news_list_title {
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(15px, 1vw, 20px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* 省略記号を表示 */
}

.news_list_title a {
    text-decoration: none; /* 下線を消す */
    color: #1e1e1e; /* リンクの色を指定する */
    transition: 0.2s;
}

.news_list_title a:hover {
    opacity: 0.7;
}

.btn_05_SP {
    display: none;
}

@media screen and (max-width: 1220px) {
    .news_area {
        flex-direction: column; /* 画面幅が1220px以下の場合、列方向に配置 */
        margin-bottom: 20%;
    }

    .news_content {
        width: 100%; /* 幅を100%に設定 */
        margin: 0; /* マージンをリセット */
        padding-bottom: 40px;
    }

    .news_list {
        width: 100%; /* 幅を100%に設定 */
    }

    .news_list_content {
        margin: 0 10% 24px 10%;
    }

    .btn_05 {
        display: none;
    }

    .btn_05_SP {
        display: block !important;
        margin: 5% auto 0;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .news_area {
        margin: 0 10% 25% 10%;
    }

    .news_list_content {
        margin: 24px 0 0 0;
    }

    .btn_05_SP {
        display: block !important;
        margin: 15% auto 0;
        text-align: center;
    }
}

/* ↑新着情報↑ */


/* ↓採用情報↓ */
.recruit_area {
    position: relative;
    margin: 6.3% 0 8% 0;
    position: relative;
}

.image-wrapper {
    text-align: center;
}

.image-wrapper img {
    display: inline-block;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
}

.recruit_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.recruit_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-bottom: 25%;
}

.recruit_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;
}

.recruit_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;
}

.recruit_underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /*下線の上下位置調整*/
    display: inline-block;
    width: 36px; /*下線の幅*/
    height: 3px; /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%); /*位置調整*/
    background-color: #fff; /*下線の色*/
}

.btn_06 {
    padding-bottom: 10%;
}

.detail_btn_06 {
    border-radius: 4px;
    border: solid 1px;
    padding: 16px 92px;
    text-decoration: none;
    color: #fff;
    font-family: "Noto Serif JP",serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    white-space: nowrap;
    transition: .3s;
}

.detail_btn_06:hover {
    background-color: #fff;
    color: #1e1e1e;
}

/* PC用のスタイル */
@media screen and (min-width: 1201px) {
    .recruit_img_PC {
        display: block !important;
    }

    .recruit_img_SP {
        display: none !important;
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 1200px) {
    .recruit_area {
        margin-bottom: 20%;
    }

    .recruit_img_PC {
        display: none !important;
    }

    .recruit_img_SP {
        display: block !important;
    }

    .image-wrapper img {
        width: 90%;
    }
}
/* ↑採用情報↑ */