/*-------------------------
  共通
-------------------------*/
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.btn-primary {
    background-color: #00B72B;
    border-color: #00B72B;
}

.btn-primary:hover {
    background-color: #00B72B;
    border-color: #00B72B;
}

.btn:hover {
    border-color: #00B72B;
}


.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: #00B72B;
    border-color: #00B72B;
}
ul {
    padding-left: 0;
}

html {
    overflow-x: hidden;
}

.row {
    margin-right: 0;
    margin-left: 0;
}
/*-------------------------
  ヘッダー
-------------------------*/

/* ナビ
-------------------------*/
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.nav-link {
    font-weight: bold;
}

.nav-item {
    position: relative;
    padding: 0 1em;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;

}
.nav-item:before {
    background: #00b72b;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.nav-item:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.nav-item:last-child:before {
    background: none;
}

@media(max-width: 991px){
    .nav-item {
        border-bottom: 1px solid #fff;
    }

    .navbar-nav li:nth-child(6) {
        border-bottom: none;
    }
    .nav-item:before {
        display: none;
    }
}

@media(min-width: 992px){
    .btn_privacypolicy {
        display: none;
    }
}

/* TEL
-------------------------*/
@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}

.nav_tel {
    font-size: 1.5rem;
    color: #fff;
    background-image:url("../img/icon_tel.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-left: 1.75rem!important;
}

.btn_tel {
    background: #00B72B;
}

/* ハンバーガーメニュー
-------------------------*/

.navbar-toggler {
    position: fixed;
    top: 4px;
    z-index: 9999;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
@media(max-width: 991px){
    .navbar-collapse .btn_tel {
        display: none;
    }

    .navbar-collapse {
        background:#F2F2E9;
    }
}
/*-------------------------
  フッター
-------------------------*/
footer {
    border-top: 1px solid #00b72b;
}

/* プロフィール
-------------------------*/
@media(max-width: 767px){
    .profile{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fotter_logo {
        margin-bottom: 1rem;
    }
}

/* sns
-------------------------*/
.sns_btn {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.sns_btn li {
    width: 20%;
    padding: 0 1rem;
}

.sns_btn li img {
    max-width: 35px;
}

/* カテゴリー
-------------------------*/
.footer_nav {
    list-style: none;
}

.footer_nav li a:before {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background: #00b72b;
    margin-right: 4px;
    border-radius: 2px;
}

.footer_nav li a {
    font-size: 1rem;
    color: #333333;
    text-decoration: none;
}

.footer_nav li {
    padding: 0.25rem 0;
}

@media(max-width: 767px){
    .footer_nav{
        display: none;
    }
}

/*-------------------------
  サイドメニュー
-------------------------*/

/* カテゴリー
-------------------------*/
.side_menu {
    display: none;
}

/*-------------------------
  トップページ
-------------------------*/

/* 見出し
-------------------------*/
.top_head3 h3 {
    font-size: 2rem;
}

.heading01::before {
    content: '';
    display: inline-block;
    margin-right: 20px;
    width: 40px;
    height: 1px;
    background-color: #00B72B;
}

.heading01 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    color:#00B72B;
    margin-bottom: 0.25rem;
}

/* 新着情報
-------------------------*/
.news {
    margin-bottom: 3rem;
    background-image:url("../img/top/news_bg.jpg");
    background-repeat: repeat;
    padding: 2rem 0;
}
.news ul {
    list-style: none;
}

.news a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.news span {
    color: #999993;
    border-left: 2px solid #00B72B;
    padding-left: 0.5rem;
    font-weight: bold;
    width: 150px;
    display: block;
}

.news li {
    border-bottom: 1px dotted #00B72B;
    padding: 1rem;
    display: flex;
}

#wordpress {
    background: #fff;
    padding: 2rem;
    border: 2px solid #00B72B;
    border-radius: 0.375rem;
}

@media(max-width: 767px){
    .news li {
        display: block;
    }

    .news ul {
        margin: 0;
        padding: 0;
    }
}


/* アクセス
-------------------------*/
/* 地図 */
.gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;    /*16:9の比率にしたい場合、9/16=56.25%*/
}

.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.access dl {
    display: flex;
    flex-wrap: wrap;
}

.access dt {
    width: 25%;
}

.access dd {
    width: 75%;
}


/* カテゴリー
-------------------------*/

/* リンク */
.top_cat a {
    text-decoration: none;
}

/* 背景色 */
.top_cat {
    background: #F2F2E9;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

/* 見出し */
.rent h4,.sell h4,.other h4 {
    text-align: center;
    margin-bottom: 2rem;
}

.rent h4 span,.sell h4 span,.other h4 span {
    font-size: 1rem;
}
.rent h4 span {
    color: #00B72B;
}

.sell h4 span {
    color: #fcb900;
}

.other h4 span {
    color: #8A6500;
}

/* カテゴリーのカード */
.top_cat .card-img-top {
    max-width: 65px;
    margin: 0 auto;
    padding: 1rem 0 0.25rem 0;
}

.top_cat .card-text {
    text-align: center;
}

.rent .card {
    border-color: #00B72B;
}

.sell .card {
    border-color: #fcb900;
}

.rent,.sell {
    margin-bottom: 4rem;
}

/* その他の物件
-------------------------*/
.other_ct .btn {
    border: 1px solid #8A6500;
    background: #fff;
    display: block;
}

.other_ct .btn:first-child:active {
    background-color: #fff;
    border-color: #8A6500;
}

/* オススメ物件
-------------------------*/
.recommend_item {
    margin: 3rem 0;
}

.recommend_item .card {
    border-color: #D9D9D0;
}

/* 画像 */
.recommend_item .card-img-top {
    padding: 0;
    object-fit: cover;
    width: 100%;
    height: 180px;
}

@media(max-width: 991px){
    .recommend_item .card-img-top {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
    }

}

.recommend_item .card-footer {
    padding: 0;
    background-color: #00B72B;
    border-top-color: #00B72B;
}

/* 詳細ボタン */
.recommend_item .btn-primary {
    border-bottom-left-radius: calc(0.375rem - (1px));
    border-bottom-right-radius: calc(0.375rem - (1px));
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* カテゴリー */
.estatetype {
    font-size: 0.875rem;
    font-weight: bold;
    color: #00B72B;
}

/* 金額 */
.recommend_item .fee {
    color: #cf2e2e;
    font-size: 1.25rem;
    font-weight: bold;
}

.recommend_item .card-text {
    margin-bottom: 0.5rem;
}

/* 物件名 */
.recommend_item .card-title {
    margin-bottom: 1rem;
    line-height: 1.5;
    border-bottom: 1px dotted #D9D9D0;
    padding-bottom: 0.25rem;
}

/* 住所 */
.address {
    font-size: 0.875rem;
    position:relative;padding-left:20px;
}

.address::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("../img/top/icon_address.png");
    background-size: contain;
    background-repeat:no-repeat;
    position:absolute;
    top:2px;
    left:0;
}

/* 校区 */
.school {
    font-size: 0.875rem;
    position:relative;padding-left:20px;
}

.school::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("../img/top/icon_school.png");
    background-size: contain;
    background-repeat:no-repeat;
    position:absolute;
    top:2px;
    left:0;
}

/* 追従ボタン
-------------------------*/

/* 賃貸物件はこちら */

.fixed_btn1 {
    position:fixed;
    z-index:1;
    background:#00B72B;
    text-decoration:none;
    text-align:center;
    color:#fff;
    padding:1rem 1rem 0.375rem 1rem;
    right:0;
    bottom:350px;
    box-shadow:1px 1px 5px #aaa;
    writing-mode:vertical-lr;
    font-weight: bold;
    border-bottom: 2px solid #00B72B;
    border-left: 2px solid #00B72B;
    border-top: 2px solid #00B72B;
    border-bottom-left-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
    display: flex;

}

/* 売買物件はこちら */

.fixed_btn2 {
    position:fixed;
    z-index:1;
    background:#fcb900;
    text-decoration:none;
    text-align:center;
    color:#fff;
    padding:1rem 1rem 0.375rem 1rem;
    right:0;
    bottom:150px;
    box-shadow:1px 1px 5px #aaa;
    writing-mode:vertical-lr;
    font-weight: bold;
    border-bottom: 2px solid #fcb900;
    border-left: 2px solid #fcb900;
    border-top: 2px solid #fcb900;
    border-bottom-left-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
    display: flex;
}

.fixbtn_arrow {
    width: 25px;
    margin-top: 0.25rem;
}

@media(max-width: 767px){
    .fixed_btn {
        display: none;
    }
}

/* バナー
-------------------------*/
.bnr_area {
    margin-bottom: 4rem;
}

.bnr_area img {
    width: 100%;
}

/*-------------------------
  物件一覧
-------------------------*/
.items_list .row {
    border-top: 2px solid #212529;
}

/* 見出し */
.items_list h3 {
    border-left: 3px solid #00B72B;
    padding-left: 0.5rem;
}

/* 見出し （物件名）*/
.items_list h6 {
    font-size: 1.25rem;
    background: #F2F2E9;
    padding: 1rem;
    display: flex;
    align-items: center;
}

/* 詳細*/
.items_content {
    padding: 0 1rem;
}
.items_content_inner {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dotted #D9D9D0;
}

.items_content_inner dt {
    width: 20%;
}

.items_content_inner dd {
    width: 80%;
}

/* 詳細（テーブル）*/
.items_list table {
    border-color: #D9D9D0;
}

.items_list th {
    width: 16%;
    background: #F2F2E9;
    text-align: center;
}

.items_list td {
    width: 17%;
}

/* 物件種目*/
.items_type {
    font-size: 0.875rem;
    font-weight: normal;
    color: #fff;
    border: 1px solid #00B72B;
    padding: 0.25rem;
    margin-right: 0.5rem;
    background: #00B72B;
    border-radius: 0.375rem;
}

.estate_types {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.estate_types li {
    padding: 0 0.5rem;
    background: #F2F2E9;
    margin: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #D9D9D0;
}

/* ページ*/
.paginator {
    text-align: center;
}

/* 設備 */
.items_content .bg-secondary {
    background-color: #fff3cd !important;
    border: 1px solid #fcb900;
    color: black;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
    .items_list tr {
        display: flex;
        flex-direction: column;
        border-style: none;
    }
    .items_list th,.items_list td {
        width: 100%;
        border-style: none;
    }
    .items_list td {
        text-align: center;
    }

    .items_content .btn {
        width: 100%;
    }

    .items_list table {
        border: 1px solid #D9D9D0;
    }

}

@media screen and (max-width: 991px) {
    .items_list h6 {
        display: block;
    }
    .items_type {
        width: fit-content;
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* ページネーション　*/
.pagination {
    border-color: #D9D9D0;
}

.active>.page-link, .page-link.active {
    background: #F2F2E9;
    border-color: #D9D9D0;
}

.active>.page-link, .page-link.active,.page-link {
    color: #212529;
}

.page-link:hover {
    color: #212529;
    background: #D9D9D0;
}

/*-------------------------
  物件詳細ページ
-------------------------*/
/* 見出し （物件名）*/
.detail_inner h3 {
    padding: 0.5rem;
    background:#F2F2E9;
    border-left: 5px solid #00B72B;
}

/* 物件番号 */
.property_code p,.publication_start_date p {
    margin-bottom: 0;
}


/* 詳細 （上）*/
.detail_inner_table th,.detail_inner_table td {
    border-bottom:1px dotted #D9D9D0;
    vertical-align: middle;
}

.detail_inner_table th {
    /*width: 100px;*/
}

.detail_inner_table {
    table-layout: fixed;
}

.detail_inner_table p {
    margin-bottom: 0;
}

/* 見出し （学区）*/

.school_h5 {
    background:#F2F2E9;
    border: 1px solid #D9D9D0;
    padding: 0.25rem;
    font-size: 1rem;
    display: inline-block;
}

/* 学区 */
.school_table th,.school_table td {
    border-style: dotted;
    border-color: #D9D9D0;
}


@media screen and (max-width: 991px) {
    .detail_inner_table tr {
        display: flex;
        border-style: solid;
        flex-wrap: wrap;
    }
    .detail_inner_table th {
        width: 30%;
        border-style: solid;
        background-color:#F2F2E9;
        display: flex;
        align-items: center;
    }
    .detail_inner_table td {
        border-style:solid;
        width: 70%;
    }

    .detail_inner_table {
        border-left: 1px solid #D9D9D0;
        border-top: 1px solid #D9D9D0;
        border-right: 1px solid #D9D9D0;
    }

}

@media screen and (max-width: 500px) {
    .detail_inner_table tr {
        display: flex;
        border-style: none;
        flex-direction: column;
    }
    .detail_inner_table th {
        width: 100%;
        border-style:solid;
        justify-content: center;
    }
    .detail_inner_table td {
        border-style: solid;
        width: 100%;
    }

}


/* 掲載開始日・物件番号*/
.publication_start_date,.property_code {
    text-align: right;
}

.publication_start_date h5,.publication_start_date p,.property_code h5,
.property_code p {
    display: inline-block;
}

.publication_start_date h5,.property_code h5 {
    font-size: 1rem;
    font-weight: normal;
    margin-right: 0.25rem;
}

/* 金額*/
.detail_inner_table .fee {
    color: #cf2e2e;
    font-size: 1.5rem;
    font-weight: bold;
}

/* メイン画像*/
.img_estate_main {
    max-width: 640px;
    max-height:460px;
}

@media screen and (max-width: 767px) {
    .img_estate_main {
        max-width: none;
        max-height:none;
        width: 100%;
    }

}
.estate_images_area {
    border: 1px solid #D9D9D0;
    padding: 0.5rem;
}

/* サムネイル*/
.thumbnail_list {
    flex-wrap: wrap;
    display: flex;
}

.thumbnail {
    width: calc(100% / 8 - 20px);
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    margin-right: 20px;
    min-width: 100px;
    margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
    .thumbnail {
        width: calc(100% / 3 - 20px);
        margin-right: 0;
    }
    .thumbnail_list {
        justify-content:space-evenly;
    }
}

@media screen and (max-width: 500px) {
    .thumbnail {
        width: calc(100% / 2 - 20px);
        margin-right: 0;
    }
}

/* 詳細 （下) */
.overview_table {
    border-color: #D9D9D0;
    font-size: 12px;
    vertical-align: middle;
    table-layout: fixed;
}

.overview_table th {
    background: #F2F2E9;
    text-align: center;
}

.overview_table p {
    margin-bottom: 0
}

@media screen and (max-width: 991px) {
    .overview_table tr {
        display: flex;
        border-style: none;
        flex-wrap: wrap;
    }
    .overview_table th {
        width: 30%;
        border-style: solid;
        background-color:#F2F2E9;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #D9D9D0;
    }
    .overview_table td {
        border-bottom: 1px solid #D9D9D0;
        width: 70%;
        border-left: none;
        border-right: none;
    }

    .overview_table {
        border-top: 1px solid #D9D9D0;
        border-right: 1px solid #D9D9D0;
        font-size: 1rem;
    }

}

@media screen and (max-width: 767px) {
    .overview_table tr {
        display: flex;
        border-style: none;
        flex-direction: column;
    }
    .overview_table th {
        width: 100%;
        border-style:solid;
        justify-content: center;
        border-right: 1px solid #D9D9D0;
    }
    .overview_table td {
        border-style: solid;
        width: 100%;
        border-left: 1px solid #D9D9D0;
        border-right: 1px solid #D9D9D0;
    }

    .overview_table {
        border-right: none;
    }
}

/* 	保証金 */
.warranty_fee p {
    word-break: keep-all;
}

/* その他一時金　*/
.other_payments_list {
    list-style: none;
    margin-bottom: 0;
}

/* 見出し （h4）*/
.detail_inner h4 {
    padding: 0.5rem;
    border-left: 5px solid #00B72B;
}

/*  接道　　*/
.overview .road_table th {
    background: none;
}

.overview .road_table {
    table-layout: fixed;
    text-align: center;
}

.overview .road_table thead {
    border-bottom: 1px solid #D9D9D0;
}

.overview .road_table th,.overview .road_table td {
    border-style: dotted;
    border-color: #D9D9D0;
}

.overview .road_table tr:last-child th,.overview .road_table tr:last-child td {
    border: none;
}

@media screen and (max-width: 991px){
    .overview .road_table td {
        border-left: none;
        border-right: none;
        width:20%;
    }
    .overview .road_table th {
        width: 20%;
        display: initial;
    }
}

@media screen and (max-width: 767px){
    .overview .road_table td,.overview .road_table th {
        border-left: none;
        border-right: none;
        width: 20%;
    }
    .overview .road_table tr:last-child th {
        border-bottom: 1px dotted #D9D9D0;
    }

    .overview .road_table tr {
        flex-direction: unset;
    }
    .overview .road_table {
        font-size: 0.875rem;
    }

}

/* 設備 */
.overview .bg-secondary {
    background-color: #fff3cd !important;
    border: 1px solid #fcb900;
    color: black;
    font-weight: normal;
    margin-bottom: 0.5rem;
}


/*  地図　　*/
#map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    margin: 2rem 0;
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*  近傍の同種の物件　　*/
.nearby_properties_inner {
    border: 1px solid #D9D9D0;
    padding: 1rem;
    box-sizing: border-box;
}

/*  印刷ボタン　　*/
@media screen and (max-width: 767px){
    .print_btn {
        display: none;
    }
}

/*-------------------------
 お問合せ(物件)
-------------------------*/
/*  見出し　　*/
.inquiry h2 {
    border-bottom: 2px solid;
    padding-bottom: 0.5rem;
}

/* お問合せの物件　
-------------------------*/
/*  見出し　　*/
.inquiry h4 {
    border-left: 3px solid #00B72B;
    padding-left: 0.5rem;
}

/*  物件詳細　　*/
.inquiry_property .bg-secondary {
    background-color: #fff3cd !important;
    border: 1px solid #fcb900;
    color: black;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

/* フォーム　
-------------------------*/
.inquiry_form .col-md-3,.inquiry_form .col-md-9 {
    margin-bottom: 1rem;
}

.inquiry_form .col-md-3 {
    font-weight: bold;
}

.inquiry_form .row {
    border-bottom: 1px dotted #D9D9D0;
    padding: 1rem 0;
}

.inquiry_form .row:last-child {
    border-bottom: none;
}

/*  必須　　*/
.inquiry_form .badge {
    margin-left: 0.25rem;
}

/*  チェックボックス　　*/

.inquiry_form input {
    margin-right: 0.25rem;
}

.inquiry_form label {
    padding: 0.25rem 0;
}


/*  性別　　*/
.inquiry_form .sex .form-control {
    border: none;
}