@charset "UTF-8";

/* イントロダクション（画像右・テキスト左） */
.page_intro {
    margin-bottom: 60px;
    align-items: center;
}

.page_intro .text_box {
    width: 55%;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page_intro .img_box {
    width: 40%;
}

.page_intro .img_box img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom_search_form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.custom_search_form .parts {
    flex: 1;
    min-width: 200px;
}

.custom_search_form .parts p {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.custom_search_form select,
.custom_search_form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.custom_search_form input[type="submit"] {
    background: #71C61C;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
}

.custom_search_form input[type="submit"]:hover {
    opacity: 0.8;
}

.static_arrival_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.static_arrival_list li {
    width: calc(25% - 15px);
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.static_arrival_list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.static_arrival_list .img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.static_arrival_list .text_area {
    padding: 15px;
}

.static_arrival_list .title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.static_arrival_list .price {
    color: #e60012;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.static_arrival_list .info {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.data_table_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.data_table_wrap table {
    width: 100%;
    border-collapse: collapse;
}

.data_table_wrap th,
.data_table_wrap td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.data_table_wrap th {
    font-weight: bold;
}

.bg_light {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.reason_wrap {
    padding: 60px 0;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.align-center {
    align-items: center;
}

/* タブメニュー（物件＆相場） */
.tab_menu {
    display: flex;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.tab_menu li {
    flex: 1;
    padding: 15px 0;
    cursor: pointer;
    font-weight: bold;
    background: #fff;
    text-align: center;
    border-right: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
}

.tab_menu li:last-child {
    border-right: none;
}

.tab_menu li.active {
    background: #71C61C;
    color: #fff;
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

/* 検索セクション用デザイン */
.search_sec_ttl {
    border-left: 5px solid #71C61C;
    padding-left: 15px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.search_dl_wrap {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 20px;
}

.search_dl_wrap dt {
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.search_dl_wrap dt::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #71C61C;
    margin-right: 8px;
}

.search_dl_wrap dt:first-child {
    margin-top: 0;
}

.search_dl_wrap dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search_dl_wrap dd li a {
    display: block;
    padding: 8px 20px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: 0.2s;
    border: 1px solid #e0e0e0;
}

.search_dl_wrap dd li a:hover {
    background: #71C61C;
    color: #fff;
    text-decoration: none;
    border-color: #71C61C;
}

/* 人気の理由（2x2グリッド、左四角画像＋右テキスト、画像余白なし） */
.reason_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.reason_list li {
    display: flex;
    align-items: stretch;
    width: calc(50% - 10px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    margin-bottom: 0;
    overflow: hidden;
}

.reason_list .img {
    width: 160px;
    flex-shrink: 0;
}

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

.reason_list .text_box {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reason_list .catch {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.reason_list .text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* 探すときの注意点（丸画像＋右テキスト） */
.caution_list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.caution_list .img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 30px;
    border: 4px solid #f0f0f0;
}

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

.caution_list .text_box {
    flex: 1;
}

.caution_list .catch {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.caution_list .text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* 家賃相場バー */
.data_table_wrap .th02 {
    width: 65%;
}

.data_table_wrap .td03 {
    text-align: left;
    width: 40%;
    vertical-align: middle;
    border-left: none;
}

.data_table_wrap .td02 {
    font-weight: bold;
    font-size: 16px;
    border-right: 1px solid #ddd;
}

.data_table_wrap .td01 a {
    color: #333;
    text-decoration: underline;
}

.data_table_wrap .bar {
    display: inline-block;
    height: 12px;
    background-color: #71C61C;
    border-radius: 6px;
}

/* 行政データ 2カラム */
.terms_data_table_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.terms_data_table_wrap table {
    width: 48%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
}

.terms_data_table_wrap th,
.terms_data_table_wrap td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.terms_data_table_wrap th {
    background-color: #f7f7f7;
    font-weight: bold;
    width: 40%;
}

.single_feature_page {
    margin-top: 170px;
}

.single_feature_page .page_fv_box {
    margin-bottom: 80px;
}

.single_feature_page #top_area {
    padding-top: 100px;
}

.single_feature_page .arrival_sec .arrival_list .panel_box .link .text_area .size_box .box .number {
    font-size: 16px;
}

.single_feature_page .arrival_sec .arrival_list .panel_box .link .text_area .size_box .box .number .color {
    font-size: 1.5em;
}

.single_feature_page .feature_sec {
    padding: 50px 0 60px;
    background-color: #F2F2F2;
}

.single_feature_page .feature_sec .site_cmn_ttl .ttl.yu {
    font-size: 25px;
    margin-bottom: 1em;
    color: #707070;
}

.single_feature_page .feature_sec .feature_list {
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
}

.single_feature_page .feature_sec .feature_list ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.single_feature_page .feature_sec .feature_list ul a {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    display: block;
    border-bottom: 1px solid #707070;
    line-height: 1.5;
}

.single_feature_page .reason_wrap .site_cmn_ttl .ttl {
    font-size: 24px;
}

.single_feature_page .site_cmn_btn {
    line-height: 60px;
    width: 400px;
}

.single_feature_page .reason_wrap.bg_light .text_box {
    background-color: #f3f3f3;
    padding: 15px;
    align-items: center;
    font-size: 12px;
    line-height: 1.6;
    justify-content: left;
}

.single_feature_page .reason_wrap.bg_light .text_box .kome {
    color: #474747;
    position: relative;
    padding-left: 14px;
}

.single_feature_page .reason_wrap.bg_light .text_box .kome::before {
    display: block;
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

.single_feature_page .reason_wrap.bg_light .text_box .text {
    border-left: 1px dashed #535353;
    padding-left: 22px;
    margin-left: 50px;
    font-size: 12px;
}

.single_feature_page .reason_wrap.bg_light .text_box .text a {
    word-break: break-all;
    color: #009FE8;
    text-decoration: underline;
}

.single_feature_page .reason_wrap.bg_light .text_box .text {
    border: unset;
    margin: unset;
    padding: unset;
}

@media (max-width: 750px) {
    .page_intro {
        flex-direction: column;
        margin-bottom: 10vw;
    }

    .page_intro .text_box,
    .page_intro .img_box {
        width: 100%;
        margin-bottom: 20px;
        font-size: 4vw;
    }

    .static_arrival_list li {
        width: 100%;
    }

    .custom_search_form .parts {
        width: 100%;
    }

    .tab_menu {
        flex-wrap: wrap;
    }

    .tab_menu li {
        width: 50%;
        flex: none;
        border-bottom: 1px solid #ccc;
        font-size: 3.3vw;
        padding: 3vw 0;
    }

    .reason_list li {
        width: 100%;
        flex-direction: column;
    }

    .reason_list .img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 0;
        aspect-ratio: 3/2;
    }

    .reason_list .text_box {
        padding: 20px;
    }

    .caution_list li {
        flex-direction: column;
        text-align: center;
    }

    .caution_list .img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
    }

    .terms_data_table_wrap table {
        width: 100%;
    }

    .single_feature_page {
        margin-top: 20vw;
    }

    .single_feature_page .page_fv_box {
        margin-bottom: 10vw;
    }

    .single_feature_page .feature_sec {
        padding: 10vw 0;
    }

    .single_feature_page .feature_sec .site_cmn_ttl .ttl.yu {
        font-size: 4vw;
    }

    .single_feature_page .feature_sec .feature_list {
        padding: 6vw;
    }

    .single_feature_page .feature_sec .feature_list ul {
        gap: 4vw;
    }

    .single_feature_page .feature_sec .feature_list ul a {
        font-size: 3.8vw;
    }

    .single_feature_page .reason_wrap .site_cmn_ttl .ttl {
        font-size: 24px;
    }

    .single_feature_page .reason_wrap .site_cmn_ttl .ttl {
        font-size: 4.6vw;
    }

    .single_feature_page .arrival_sec .arrival_list {
        padding: 0;
    }

    .reason_wrap {
        padding: 12vw 0;
    }

    .static_arrival_list {
        gap: 10vw;
    }

    .static_arrival_list .text_area {
        padding: 5vw;
    }

    .site_cmn_btn {
        line-height: 14vw;
    }

    .data_table_wrap .td01 a {
        font-size: 3.7vw;
    }

    .terms_data_table_wrap th {
        width: 36%;
    }

    .top_reason_box li+li {
        margin-top: 11vw;
    }

    .caution_list .text {
        font-size: 3.6vw;
    }

    .caution_list .catch {
        font-size: 4.6vw;
    }

    .single_feature_page #top_area {
        padding-top: 15vw;
    }

    .mt-40 {
        margin-top: 8vw;
    }

    .single_feature_page .arrival_sec .arrival_list .panel_box .link .text_area .size_box .box .number .color {
        font-size: 1.3em;
    }

    .search_sec_ttl {
        font-size: 4vw;
    }

    .search_dl_wrap {
        padding: 5vw;
    }

    .search_dl_wrap dt {
        margin: 7vw 0;
        font-size: 4vw;
    }

    .search_dl_wrap dd li a {
        font-size: 3.6vw;
    }

    .data_table_wrap th,
    .data_table_wrap td {
        font-size: 4vw;
    }

    .data_table_wrap .td02 {
        font-size: 3.7vw;
    }

    #reason .reason_list.mt-40 {
        gap: 10vw;
    }

    .terms_data_table_wrap th,
    .terms_data_table_wrap td {
        font-size: 3.6vw;
    }

    .single_feature_page .reason_wrap.bg_light .text_box {
        padding: 4.5vw;
        font-size: 3.4vw;
        margin-top: 0;
    }

    .single_feature_page .reason_wrap.bg_light .text_box .kome {
        padding-left: 4.3vw;
        margin-bottom: 0.9em;
    }

    .single_feature_page .reason_wrap.bg_light .text_box .text {
        font-size: 3.4vw;
    }

    .single_feature_page .site_cmn_btn {
        font-size: 3.6vw;
        width: 100%;
    }

    .data_table_wrap .th02 {
        width: 67%;
    }

}