﻿* {
    /* はみ出し確認用*/
    /*outline: 1px solid red;*/
}




.detailpc_catchbar {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* -------------------------
   左アイコン群
------------------------- */

.detailpc_icons {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.detailpc_icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .detailpc_icon img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

.detailpc_torihiki_icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .detailpc_torihiki_icon img {
        max-width: 80px;
        max-height: 60px;
        width: auto;
        height: auto;
    }

/* -------------------------
   キャッチコピー
------------------------- */

.detailpc_catch {
    flex: 1;
    /* text-align: center; */
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
    padding: 0 15px;
}

/* -------------------------
   値下げアイコン
------------------------- */

.detailpc_down {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .detailpc_down img {
        width: 80px;
        height: auto;
    }

/* -------------------------
   家賃
------------------------- */

.detailpc_rent {
    flex: 0 0 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.detailpc_rent_label {
    font-size: 18px;
    color: #444;
}

.detailpc_rent_price {
    font-size: 32px;
    font-weight: bold;
    color: #d80000;
    font-family: 'M PLUS 1', sans-serif;
}

.detailpc_rent_tax {
    margin-top: 4px;
    font-size: 14px;
    color: #666;
}

/* -------------------------
   フォント読込後
------------------------- */

html.fonts-loaded .detailpc_rent_price {
    font-family: 'M PLUS 1', sans-serif;
}









    .detailpc {
        max-width: 1280px;
        margin: 20px auto;
    }

    .detailpc_main {
        display: flex;
        gap: 20px;
    }

    .detailpc_photo {
        width: 48%;
        min-height: 400px;
        border: 1px solid #ddd;
    }

        .detailpc_photo img {
            width:100%;
        
        }

.detailpc_photo li{
    font-size:20px;
    line-height:40px;
}





    .detailpc_info {
        width: 52%;
        border: 1px solid #ddd;
    }



.detailpc_info_row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.detailpc_info_title {
    flex: 0 0 20%;
    padding: 10px;
    background: #f7f7f7;
    font-weight: bold;
}

.detailpc_info_data {
    flex: 1;
    padding: 10px;
}



/* 建物診断・土地情報用ボタン */
.pdf_buttons {
    margin: 20px 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pdf_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

    .pdf_btn:hover {
        background: #f5f8fb;
        border-color: #32ADFF;
        color: #32ADFF;
        transform: translateY(-1px);
    }

    .pdf_btn:before {
        content: "PDF";
        font-size: 11px;
        font-weight: bold;
        background: #e74c3c;
        color: #fff;
        padding: 2px 5px;
        border-radius: 3px;
        margin-right: 8px;
    }
/*  */



.cost_box {
    margin-top: 25px;
    border: 1px solid #dcdcdc;
    background: #fff;
}

.cost_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f7f7f7;
    border-bottom: 1px solid #dcdcdc;
}

.cost_title {
    font-size: 20px;
    font-weight: bold;
}

.cost_total {
    font-size: 16px;
}

.cost_total_price {
    margin-left: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #d80000;
}

.cost_tax {
    color: #666;
}

.cost_columns {
    display: flex;
}

.cost_column {
    flex: 1;
}

    .cost_column:first-child {
        border-right: 1px solid #dcdcdc;
    }

.cost_column_title {
    padding: 10px;
    background: #fafafa;
    font-weight: bold;
    border-bottom: 1px solid #dcdcdc;
}

.cost_row {
    display: grid;
    grid-template-columns: 35% 40% 25%;
    padding: 8px 10px;
    border-bottom: 1px solid #efefef;
    align-items: center;
}

.cost_name {
    font-weight: bold;
}

.cost_price {
    text-align: right;
    font-size:110%;
}

.cost_tax {
    text-align: right;
    color: #666;
    font-size: 90%;
}


/*金額の下の備考欄*/
/*
.cost_note {
    border-top: 1px solid #dcdcdc;
}

.cost_note_title {
    padding: 10px 15px;
    font-weight: bold;
    background: #fafafa;
    border-bottom: 1px solid #dcdcdc;
}

.cost_note_body {
    padding: 12px 15px;
    line-height: 1.8;
    color: #555;
    background: #fff;
}
*/




.cost_note {
    border-top: 1px solid #dcdcdc;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.cost_note_title {
    padding: 10px 15px;
    font-weight: bold;
    background: #fafafa;
    border-bottom: 1px solid #dcdcdc;
}

.cost_note_text {
    flex: 1;
    font-size: 90%;
    line-height: 1.7;
}

.cost_note_image {
    width: 480px;
    padding:10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cost_note_img {
    max-width: 100%;
    height: auto;
    display: block;
}













.detailpc_gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.detailpc_gallery_item {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}

.detailpc_gallery_title {
    display:none;
    padding: 8px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.detailpc_gallery_image {
    position: relative;
    max-width:640px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .detailpc_gallery_image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.detailpc_badge {
    position: absolute;
    top: 8px;
    right: 8px; /* ← 右寄せ */
    z-index: 10;
    width: 40%; /* ← 画像エリアの40% */
    max-width: 120px; /* 必要なら上限 */
    height: auto;
}









.detailpc_section_title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #e9528e;
}

.detailpc_theta {
    width: 100%;
    height: 650px;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
}

.detailpc_map {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    background: #fff;
}

#map {
    width: 100%;
    height: 100%;
    border: 1px #e9528e dotted;
}



.zero_disp {
    width: 100%;
    background: #2750F4;
    color: #fff;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

.zero_title {
    font-size: 28px;
    font-weight: bold;
    white-space: nowrap;
}

.zero_text {
    font-size: 22px;
    white-space: nowrap;
}

.zero_note {
    margin-left: auto;
    font-size: 15px;
    opacity: 0.9;
    white-space: nowrap;
}



#container_1 {
    width: 100%;
    visibility: hidden;
    min-height: 400px;
    display: block;
}

    #container_1 .bx-pager-item a {
        background: #f90;
    }

    #container_1 a.active {
        background: #f30;
    }

    #container_1 .bx-wrapper,
    #container_1 .bx-viewport {
        background: transparent !important;
    }

    #container_1 .bx-wrapper,
    #container_1 .bx-wrapper .bx-viewport,
    #container_1 .bx-wrapper img {
        border-radius: 5px;
        overflow: hidden;
    }

.bxs_slide {
    width: 100%;
    margin: 0 0 10px 0;
    background-color: transparent;
}

    .bxs_slide img {
        width: 100%;
        height: auto;
    }

/*---------- 検索結果 ----------*/

.result_title {
    width: 100%;
    font-size: 138.5%;
    color: #e9528e;
    display: flex;
    align-items: center;
}

.result_title_left {
    font-weight: bold;
}

.result_title_right {
    margin-left: auto;
    padding-right:1rem;
    font-size: 70%;
    color: #666;
    text-align: right;
}

.result_err {
    width: 100%;
    margin: 10px 0 10px 0;
    font-size: 123%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result_box {
    width: 95%;
    margin: 0px auto;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.bukken_name {
    font-weight: 600;
    font-size: 15px;
    margin: 6px 0 4px;
}

.result_box .w100 {
    line-height: 1.5;
    padding: 1px 0;
}

    .result_box .w100:not(.bukken_name) {
        color: #555;
        font-size: 13px;
    }

.result2, .result3, .result4 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.photo {
    width: calc(100% - 10px);
    padding: 3px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 20;
}

    .photo img {
        width: 100%;
        border-radius: 5px;
        transition: transform .35s ease;
    }

    .photo:hover img {
        /*
        transform: scale(1.05);
            */
    }

.photo_bcode {
    height: 16px;
    position: absolute;
    top: 10px;
    text-align: center;
    line-height: 16px;
    color: White;
    background-color: Black;
}

.photo_bcode_bai {
    width: 60px;
    right: 10px;
}

.photo_bcode_chi {
    width: 120px;
    right: 10px;
}

.photo_kanri {
    width: 120px;
    position: absolute;
    top: 30px;
    right: 5px;
    text-align: center;
    border-radius: 5px;
}

.photo_kanri img {
    width:100%;
    height:auto;    
}

.icon_kakaku {
    z-index: 10;
}

.w100title {
    width: 100%;
    padding: 8px 0px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120%;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.w80f {
    width: calc(100% - 5px);
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.w20s {
    width: 20%;
    padding-left: 3px;
    justify-content: center;
}

    .w20s img {
        width: 95%;
        border-radius: 5px;
    }

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 20px;
}

    ul li {
        margin-bottom: 2px;
        display: block;
    }

.kakaku {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    font-size: 175%;
    gap: 4px;
}

html.fonts-loaded .my_kakaku {
    font-family: 'M PLUS 1', sans-serif;
}

.my_kakaku {
    margin-left:1em;
}

.kakaku_down img {
    width: 27px;
    height: 28px;
}

.kakaku_kbn img {
    height: 24px;
}

.kakaku_down,
.kakaku_kbn {
    display: flex;
    align-items: center;
}

.subtitle {
    margin-top:30px;
    font-size: 123%;
    color: #e9528e;
}

.result4 ul {
    white-space: normal;
}

.aeoncard {
    width:90%;
    margin:5px auto 5px auto;
}    
    
    .aeoncard img{
        width:100%;
    }


.map_title {
    width: 95%;
    margin: 20px auto 0 auto;
}


#theta {
    width: 95%;
    margin: 20px auto 0 auto;
}







       