/*
Theme Name: 出雲空き家バンク
Description: 家バンク Template
Author: 管理人
*/



body{
	
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:15px;
    line-height: 1.8;
    letter-spacing:0.02em;
}

body.current_black{
    background-color: #000;
    color: #fff;
}
body.current_blue{
    background-color: #0000ff;
    color: #fff ;
}
.in{
    margin: auto;
}
ul,li{
    list-style: none;
}
a{
    display: inline-block;
    transition: 0.5s;
}
a:hover{
    
}
img{
    display: inline-block;
    clear: both;
    max-width: 100%
}
.urw{
    font-family: "franklin-gothic-urw", sans-serif;
    font-weight: 700;
    font-style: normal;
}
/*ロード画面*/
#splash{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: opacity .8s ease;
    transition: opacity .8s ease;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

#container {
    width: 150px;
}
#splash.fadeout {
    opacity: 1;
    z-index: 999;
}
#load_logo .cls-1{
	fill:#0085cb;
	stroke: #0085cb;
}
#load_logo .cls-2{
	fill:#ffc900;
	stroke: #ffc900;
}
#mask .cls-3{
	fill:none;
	stroke:#FFFFFF;
	stroke-miterlimit:10;
	stroke-width:6px;
	stroke-linecap:round;
    stroke-linejoin:round;
	stroke-dasharray: 1500; 
    stroke-dashoffset:1500; 
}

#load_logo :is( path, line ){
	stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.5s ease-in both ;
}
@keyframes svg {
    0% {
        fill: transparent;
        stroke-dashoffset: 400px;
    }
    80% {
        fill: transparent;
    }
    100%{
        stroke-dashoffset: 0;
    }
}

/*見出し-------------------*/
.content_title{
    font-size: 34px;
    font-weight: 500;
    position: relative;
    margin-bottom: 1.2em;
    text-align: center;
    padding-top: 2.8em;
}
.content_title::before{
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 2.5em;
    background-color: #0085cb;
}
.content_title span{
    display: block;
    color: #0085cb;
    line-height: 1;
    font-size: 0.7em;
}
.current_blue .content_title span{
    color: #f7ff00;
}
.current_blue .content_title::before{
    background-color: #f7ff00;
}
/*リンクボタン-------------------*/
.link_button{
    margin-top: 2em;
    text-align: center;
}
.link_button .button_text {
    display: inline-block;
    border: 1px solid ;
    background-color: #fff;
    border-radius: 2em;
    line-height: 1.5;
    overflow: hidden;
    color: #000;
}
.link_button .button_text > div{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 3em;
    padding: 0.5em 1.5em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
}

.link_button .button_text > div::before {
    content: "";
    width: 120%;
    height: 200%;
    position: absolute;
    top: -50%;
    right: 0;
    z-index: -1;
    background: #333;
    border-radius: 0 100% 100% 0;
    transform: translateX(-100%);
    transition: transform ease .5s;
}

.link_button.button_02 .button_text{
    background-color: #0085cb;
    color: #fff;
    border-color: #0085cb;
}
.link_button.button_02 .button_text > div::before {
    background: #fff;
}
.link_button .button_text i{
    font-size: 1.2em;
}
@media (hover: hover) {

    .button_text:hover > div,
    a:hover .button_text > div{
        color: #fff;
    }
    .button_text:hover > div::before,
    a:hover .button_text > div::before {
        transform: translateX(10%);
    }
    
    .link_button.button_02 .button_text:hover > div,
    a:hover .link_button.button_02 .button_text > div{
        color: #0085cb;
    }

}


.closen_button{
    text-align: center;
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    background-color: #0085cb;
    height: 1.3em;
    width: 1.3em;
    vertical-align: middle;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}

/*---ヘッダー-------------------*/
header{
    z-index: 10;
}

.hed_buttons .buttons_home{
    color: #0085cb;
}
.hed_buttons .buttons_human{
    color: #ffc900;
}
.hed_buttons li a {
    text-align: center;
    display: block;
}
.hed_buttons li a i{
    width: 1.6em;
    height: 1.6em;
    padding: 0.3em;
    border-radius: 50%;
    font-size: 40px;
    background-color: currentColor;
    transition: 0.5s;
}
.hed_buttons li a i::before{
    background-color:#fff;
}
.hed_buttons li a p{
    font-size: 9px;
    letter-spacing:0;
}
@media (hover: hover) {
    .hed_buttons li a:hover i{
        transform:rotateY(180deg);
    }
}

/*ハンバーガーボタン*/
.navbotn{
    cursor: pointer;
    width: 50px;
    position: relative;
    z-index: 5;
    margin: 40px auto 0;
}
.navbotn .hamburger{
    position: relative;
    width: 36px;
    height: 25px;
    display: block;
    margin: 0 auto;
    z-index: 2;
    pointer-events: none;
    cursor: pointer;
}
.navbotn .hamburger span{
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000;
    margin: auto;
    transition: 0.5s;
    left: 0;
    border-radius: 10px;
}
.navbotn .hamburger span:nth-child(1){
    top: 0;
}
.navbotn .hamburger span:nth-child(2){
    top: 0;
    bottom: 0;
}
.navbotn .hamburger span:nth-child(3){
    bottom: 0;
}
.navbotn.active .hamburger span:nth-child(1){
    transform:rotate(45deg);
    top: 11px;
}
.navbotn.active .hamburger span:nth-child(2){
    opacity: 0;
    left: 50%;
}
.navbotn.active .hamburger span:nth-child(3){
    transform:rotate(-45deg);
    bottom: 11px;
}
.hed_contactbutton a{
    background-color: #008744;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #008744;
    overflow: hidden;
    position: relative;
}
.hed_contactbutton a::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.3s;
    background-color: #fff;
}
.hed_contactbutton a p{
    font-size: 13px;
    position: relative;
}
.hed_contactbutton a i{
    font-size: 1.5em;
}
@media (hover: hover) {
    .hed_contactbutton a:hover{
        color: #008744;
    }
    .hed_contactbutton a:hover::before{
        height: 100%;
    }
}
/*ナビ--------------------------*/

.nab_b,
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
   visibility: hidden;
    opacity: 0;
}
nav.active,
nav.active .nab_b{
    visibility: visible;
    opacity: 1;
}
.nab_b{
    background-color: rgb(255 255 255 / 20%);
    backdrop-filter: blur(8px);
    transition: 0.5s;
}
.nav_box{
    position: absolute;
    z-index: 5;
    background-color: #0085cb;
    color: #fff;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    padding: 20px;
    width: 50%;
    min-width: 310px;
    transition: 0.5s;
    transform: translateX(-50%);
}
#sidebar ul li{
    opacity: 0;
}
nav.active .nav_box{
    transform: translateX(0);
}
#sidebar ul li{
    transform: translateX(-2em);
}
nav.active #sidebar ul li{
    animation: textanimation 1s forwards;
}
@keyframes textanimation {
    0% {
        transform: translateX(-2em);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

nav.active #sidebar ul li:nth-child(1) {
    animation-delay: 0.2s
}
nav.active #sidebar ul li:nth-child(2) {
    animation-delay: 0.4s
}
nav.active #sidebar ul li:nth-child(3) {
    animation-delay: 0.6s
}
nav.active #sidebar ul li:nth-child(4) {
    animation-delay: 0.8s
}
nav.active #sidebar ul li:nth-child(5) {
    animation-delay: 1s
}
nav.active #sidebar ul li:nth-child(6) {
    animation-delay: 1.2s
}
nav.active #sidebar ul li:nth-child(7) {
    animation-delay: 1.4s
}
nav.active #sidebar ul li:nth-child(8) {
    animation-delay: 1.6s
}
nav.active #sidebar ul li:nth-child(9) {
    animation-delay: 1.8s
}
nav.active #sidebar ul li:nth-child(10) {
    animation-delay: 2s
}
nav.active #sidebar ul li:nth-child(11) {
    animation-delay: 2.2s
}
nav.active #sidebar ul li:nth-child(12) {
    animation-delay: 2.4s
}
#sidebar ul li a{
    display: block;
    padding: 1em;
    position: relative;
}
.menu-menu_1-container li a::before,
.menu-menu_2-container li a::before{
    margin-right: 0.5em;
    vertical-align: middle;
}
.menu-menu_1-container li .sub-menu,
.menu-menu_2-container li .sub-menu{
	margin-top: 0.5em;
    margin-left: 1.5em;
    font-size: 0.8em;
}

/*閲覧補助*/
.auxiliary_button{
    font-size: 12px;
    border: 1px solid;
    border-radius: 5px;
    padding: 0.5em 1em;
    cursor: pointer;
    background-color: #fff;
    color: #000;
}
.auxiliary_box{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffc900;
    z-index: 2;
    padding: 30px 5%;
    color: #000;
    
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    gap:1em;
    transition: 0.5s;
    
    visibility: hidden;
    opacity: 0;
    transform: translatey(50px);
}
.auxiliary_box.active{
    visibility:visible;
    opacity: 1;
    transform: translatey(0);
}
.auxiliary_box .fw,
.auxiliary_box .flexbox{
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.auxiliary_box .fw{
    gap:1em;
}
.auxiliary_box .flexbox{
    gap:0.5em;
}
.auxiliary_box .hed_button{
    cursor: pointer;
    line-height: 1em;
    min-width: 3em;
    padding: 0.4em 1em;
    text-align: center;
    border-radius: 5px;
    border: 1px solid;
    background-color: #fff;
}
.auxiliary_box .current .hed_button{
	box-shadow: 2px 2px 11px -2px #000;
}
.auxiliary_box .bg_black .hed_button{
    background-color: #000;
    color: #fff;
}
.auxiliary_box .bg_blue .hed_button{
    background-color: #0085cb;
    color: #f5ff00;
}
.auxiliary_closen_button{
    right: 10px;
}

/*---フッター-------------------*/

footer{
    background-color: #0085cb;
    color: #fff;
    padding: 50px 0;
    margin-top: 120px;
}
.foot_box{
    font-size: 0.75em;
}
.foot_address{
    margin-top: 3em;
}
.footbox_contact{
    margin-top: 2em;
    line-height: 1.5;
}
.footbox_contact dl{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    gap:1em;
}
.footbox_contact dl + dl{
    margin-top: 1em;
}
.footbox_contact dt{
    font-weight: normal;
    border: 1px solid #fff;
    border-radius: 4px;
    min-width: 5em;
    text-align: center;
}
.foot_nav ul li + li{
    margin-top: 1em;
}
.foot_contact,
.footcontct_warp{
    border-radius: 20px;
}
.foot_contact{
    width: 90%;
    max-width: 1300px;
    margin: 160px auto 0;
    padding: 30px;
    background-image: url(images/foot_contact.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.footcontct_warp{
    background-color: rgb(255 255 255 / 60%);
    padding: 30px;
    color: #000;
}
.footcontct_warp .content_title{
    margin-top: -90px;
    margin-bottom: 0;
}
.footcontct_boxtel{
    display: grid;
    text-align: left;
    gap:5px 10px;
}
.footcontct_boxtel i{
    grid-row: span 2 / span 2;
    font-size: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.footcontct_boxtel p{
    grid-column: span 4 / span 4;
    font-size: 35px;
    line-height: 1;
}
.footcontct_boxtel span{
    grid-column: span 4 / span 4;
    grid-column-start: 2;
    grid-row-start: 2;
    display: block;
    font-size: 12px;
}
.footcontct_box{
    margin-top: 40px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}
.footcontct_boxmail .link_button{
    margin-top: 0;
}
.footcontct_boxmail{
    max-width: 300px;
    width: 100%;
}

.footcontct_boxmail .link_button .button_text{
    display: block;
}
.footcontct_boxmail .link_button .button_text > div{
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
}
.footcontct_boxmail .link_button i{
    position: absolute;
    right: 1em;
}
.foot_buttons{
    margin-top: 120px;
}
.foot_buttons ul{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    grid-gap: 1rem;
}
.foot_buttons ul li{
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.foot_buttons ul li.footbutton_search{
    background-image: url(images/footbutton_search.jpg);
}
.foot_buttons ul li.footbutton_possess{
    background-image: url(images/footbutton_possess.jpg);
}
.foot_buttons ul a{
    position: relative;
    text-align: center;
    display: block;
    padding: 20px 20px;
}
.foot_buttons .link_button{
	margin-top:1em;
}
.foot_buttons ul li.footbutton_search a{
    background-color: rgb(255 201 38 / 60%);
}
.foot_buttons ul li.footbutton_possess a{
    background-color: rgb(0 133 203 / 60%);
}
.foot_buttons ul li.footbutton_josei a{
    background-color: #ffc926;
}
.foot_buttons ul li.footbutton_hojo a{
    background-color: #c92053;
}
.foot_buttons ul a > span,
.foot_buttons ul a > p{
    color: #fff;
    display: block;
    font-weight: 500;
    line-height: 1.2;
}
.foot_buttons ul a > span{
    font-size: 17px;
}
.foot_buttons ul a > p{
    font-size: 30px;
}
/*フッターバナー----*/
.foot_banner{
	margin-top:60px;
}
.foot_banner ul{
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
    grid-gap: 2rem;
}
.foot_banner ul li{
	 display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

/*---ホーム-------------------*/

.home_contemt{
    margin-top: 100px;
}

/*スライド-------*/
.mv{
    position: relative;
    width: 95%;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.mv_box .mv_img >div{
    padding-top: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mv_catch{
    position: absolute;
    top: 6%;
    width: 21%;
    right: 6%;
}
.mv_text{
    position: absolute;
    color: #fff;
    bottom: 2vw;
    right: 6%;
    width: 38vw;
    font-size: 1.6vw;
    text-align: left;
}

/*ホーム更新情報*/
.area_box{
    font-size: 12px;
    line-height: 1.5;
    display: inline-block;
    border: 1px solid;
    padding: 0 1em;
}

.home01list_taitl{
    font-size: 20px;
    font-weight: 500;
	 display: -webkit-flex;
    display: flex;
	webkit-align-items: center;
    align-items: center;
	flex-wrap:wrap;
	gap:0.5em;
}
.home01list_img{
    margin: 10px 0;
	position:relative;
}
.home01list_img > div{
    padding-top: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.home01_list .splide__slide{
    padding: 10px 20px 20px;
}
.home01_list a{
    display: block;
    border-radius: 10px;
    color: #000;
}
.home01_list a:hover{
    box-shadow: 6px 5px 15px 4px #a7aaad;
}
.home01_list .link_button{
    text-align: center;
}
.home01_list .splide__arrows button{
    position: absolute;
    z-index: 1;
    line-height: 1;
    width: 1.5em;
    height: 1.5em;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 30px;
    margin: auto;
    top: 0;
    bottom: 0;
}
.home01_list .splide__arrows button[disabled]{
    opacity: 0.7;
}
.home01_list .splide__arrows button.splide__arrow--next{
    right: 0;
}
.splide__pagination button{
    width: 12px;
    height: 12px;
    background-color: #999;
    border-radius: 50%;
    margin: 5px;
}
.home01_list .splide__pagination{
    margin-top: 30px;
}
.splide__pagination button.is-active{
    background-color: #0085cb;
}
.home_01 .news_list{
	background-color: #fff;
    margin-top: -100px;
    position: relative;
    padding: 20px;
    border-radius: 20px;
}

/*ホーム新着物件*/
.home_02{
    position: relative;
    margin-top: 140px;
}
.home_02 .in{
    position: relative;
    padding-bottom: 100px;
}
.home_02 .news_list{
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    padding-bottom: 60px;
    color: #000;
}
.home_02 .content_title{
    color: #000;
}

/*ホームボタン*/
.home_03{
    position: relative;
    padding: 100px 0;
}
.home_03::before{
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
    background-color: #0085cb;
    left: 0;
    right: 0;
    bottom: 0;
    top: -140px;
}
.home_03 ul li a{
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 20px;
    color: #000;
}
.home03_text{
    font-size: 20px;
    margin-top: 0.5em;
    line-height: 1.5em;
}
.home03_icon img{
    max-width: 126px;
    max-height: 126px;
}

/*--下層ページ----------------------------------*/

/*見出し*/
h2{
    font-size: 36px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1em;
}
h3{
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 1em;
    border-bottom: solid 3px #b1d2eb;
    position: relative;
    padding-left: 0.5em;
    padding-bottom: 0.2em;
}
h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #0085cb;
    bottom: -3px;
    left: 0;
    width: 5em;
}
h4{
    font-size: 25px;
    margin-bottom: 0.8em;
    padding-bottom: 0.3em;
    line-height: 1.5;
    border-bottom: 1px dashed #d0d0d0;
}
h5{
    font-size: 18px;
    margin-bottom: 0.8em;
    line-height: 1.5;
}
h6{
    font-weight: bold;
    margin-bottom: 0.5em;
}

/*--下層ページヘッダー-------------------*/
.contenthed_logo{
    position: absolute;
    z-index: -1;
    top: 35px;
    right: 5%;
    max-width: 263px;
    width: 20%;
}
.hed_taitl{
    margin-top: 120px;
}
.hed_taitl h2 span{
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 1.5;
    padding-left: 4em;
    color: #0085cb;
}
.hed_taitl h2 span::before{
    content: "";
    display: block;
    position: absolute;
    width: 3.5em;
    height: 1px;
    background-color: #0085cb;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
}
/*--ページネーション-------------------------*/
.pagination{
    margin: 60px auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    gap:5px;
    max-width: 600px;
    font-size: 14px;
}
.pagination a,
.pagination span{
    display: inline-block;
    width: 3em;
    height: 3em;
    line-height: 1;
    text-align: center;
    padding: 1em 0;
    border-radius: 50%;
    border: 1px solid rgb(0 0 0 / 0%);
}
.pagination span{
    background-color: #0085cb;
    color: #fff;
}
.m-pagenation__result{
	text-align: center;
    width: 100%;
}

@media (hover: hover) {
    .pagination a:hover{
        color: #0085cb;
        border-color: #0085cb;
    }
}


/*--物件-------------------*/

.hed_img h2{
	padding-bottom:2em;
	padding-left:1em;
}

.found{
    margin-bottom: 40px;
}
.content_listbox .foot_buttons{
	margin-top: 0;
    margin-bottom: 30px;
}
/*検索フォーム*/
.hed_search{
    padding: 0 50px;
    margin-bottom: 120px;
	font-size: 13px;
}
.search_box + .search_box{
    margin-top: 20px;
}
/*チェックボックス*/
.search_list ul{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap:0.5em 2em;
}
.search_list input{
    display: none;
}
.search_list label{
    position: relative;
    cursor: pointer;
    padding-left: 25px;
}
.search_list label::before,
.search_list label::after {
    position: absolute;
    content: '';
    cursor: pointer;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
}

.search_list label::before {
    width: 15px;
    height: 15px;
    background: #ffc900;
    clip-path: polygon(0 70%, 5% 60%, 45% 75%, 90% 10%, 100% 20%, 50% 100%);
    transform: scale(0, 0);
    transition: all 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    z-index: 1;
    left: 3px;
}
.search_list label::after {
    width: 20px;
    height: 20px;
    background: #adaeaf;
    border: 2px solid #adaeaf;
    border-radius: 3px;
}
/*checked時の設定*/
.search_list input:checked + label::before {
    transform: scale(1, 1);
}
.search_list input:checked + label::after {
    background: #fff;
}
@media (hover: hover) {
    .search_list label:hover{
        color: #0085cb;
    }
}

/*セレクトボックス*/
.search_selects{
    margin-bottom: 30px;
}
.search_selectbox .selectbox {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
}
.search_selectbox .selectbox::before {
    position: absolute;
    right: 7px;
    content: '';
    width: 13px;
    height: 11px;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.search_selectbox .selectbox select {
    width: 100%;
    padding: 5px 25px 5px 10px;
    cursor: pointer;
    text-overflow: ellipsis;/*テキストがオーバーしたら'...'で省略*/
    z-index: 1;
    /* 標準のスタイルを無効にする */
    border: none;
    appearance: none;
    outline: none;
    background: transparent;
}
.select_price .search_select{
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.select_price .search_select .selectbox{
    width: calc(50% - 1.5em);
}
/*物件一覧*/
.content_list ul{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
    grid-gap: 60px 50px;
}
.content_listhed{
	position:relative;
}
.content_listhed a{
    overflow: hidden;
    display: block;
    position: relative;
    padding-right: 2.5em;
    padding-bottom: 0.5em;
}
.content_listhed .area_box{
    float: left;
    margin: 0 1em 0 0;
	
}
.contentlist_taitl{
    font-size: 1.2em;
    margin-top: -0.399em;
}
.contentlist_NEW{
	display: inline-block;
    font-size: 0.5em;
    vertical-align: middle;
    background-color: #dc3232;
    color: #fff;
    padding: 0 0.5em;
    border-radius: 2px;
}

.contentlist_img{
    margin: 1em 0;
}
.contentlist_img a{
    display: block;
	position:relative;
}
.contentlist_img a > div{
    padding-top: 60%;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}
.negotiations{
	position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    background-color: #ffc926;
    padding: 0 0.5em;
}
.contentlist_databox{
    display: -webkit-flex;
    display: flex;
    gap:15px;
    border: 1px solid #adaeaf;
}
.prg-ra-checkbox{
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.content_listhed .prg-ra-checkbox{
	position: absolute;
    right: 0;
    top: 0;
	z-index:2;
}
.prg-ra-checkbox button{
   line-height: 1;
    width: 2em;
    height: 2em;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #c3c4c7;
    color: #c3c4c7;
}
.prg-ra-checkbox .prg-fav{
	line-height: 0;
}
.simplefavorite-button.active{
    opacity: 1;
	color:#ffc900;
}
.contentlist_databox .prg-ra-checkbox .prg-fav{
    line-height: 0;
    padding: 3px;
    background-color: #fff;
    border-radius: 5px;
    color: #ffc900;
    border: 2px solid #adaeaf;
}
.contentlist_house_layoutimg{
    width: 120px;
    padding: 20px 0
    
}
.contentlist_house_layoutimg a{
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 90%;
}
.contentlist_data{
    width: 90%;
    font-size: 12px;
    margin: 20px auto;
}
.contentlist_house_layoutimg + .contentlist_data{
    width: calc(100% - 160px - 30px);
}
.contentlist_data table{
    width: 100%;
}
.contentlist_data table tr{
    border-bottom: 1px solid #99999a;
    border-top: 1px solid #99999a;
}
.contentlist_data table th{
    font-weight: normal;
    color: #99999a;
    width: 6em;
}
.contentlist_data table th,
.contentlist_data table td{
    padding: 3px 5px;
}

/*一覧ページマップ*/

.ontent_listfoot{
    margin-top: 120px;
    position: relative;
}
.ontent_listfoot::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
}
.ontent_listfoot::before,
.listfoot_map{
    background-color: #efefef;
}
.listfoot_map{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-bottom: 100px;
}
.listfoot_map .content_title{
    position: relative;
    top: -1.3em;
    margin-bottom: -0.7em;
    color: #000;
}
.map_box #gMap{
    height: 500px;
}
.infoWin .mapdeta_image{
    display: block;
    width: 100%;
    min-width: 200px;
    padding-top: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}
.infoWin table{
    width: 100%;
	max-width: 250px;
    font-size: 12px;
}
.infoWin table tr{
    border-bottom: 1px solid #000;
}
.infoWin table th{
    font-weight: normal;
	width:4.5em;
}
.infoWin table th,
.infoWin table td{
    padding: 2px;
}
.mapdeta_link{
    text-align: center;
	position: sticky;
    bottom: 0;
    background-color: #fff;
	font-size: 11px;
}
.mapdeta_link i{
	font-size:1.2em;
}
.mapdeta_link a{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    gap: 0 3em;
    padding: 0.5em 1.5em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid #000;
    border-radius: 2em;
    margin-top: 1em;
}

/*--物件詳細--------*/
.vacant_house-heddata{
    margin-bottom: 2em;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap:0.5em 1em;
}
.vacant_house-heds{
	display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
	flex-wrap:wrap;
	gap:1em;
}
.vacant_house-heddata dl{
    display: -webkit-flex;
    display: flex;
    font-size: 0.9em;
    gap:0.5em;
}
.vacant_house-heddata dt{
    font-weight: normal;
}
.vacant_house-heddata dt span{
    display: inline-block;
    padding: 0.5em;
    line-height: 1;
    border: 1px solid ;
    border-radius: 5px;
    color: #0085cb;
    font-size: 0.95em;
}
.current_black .vacant_house-heddata dt span{
    color: #ffc900;
}
.current_blue .vacant_house-heddata dt span{
    color: #f7ff00;
    }
.vacant_house-heddata dt span i{
    display: block;
}
.vacant_house-mainimg{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
    grid-gap:30px 70px ;
}
.house-mainim{
    position: relative;
    text-align: center;
}
.house-mainim .negotiations{
    position: absolute;
    background-color: #ffc900;
    padding: 0.5em 2em;
    font-weight: bold;
    top: 0;
    left: 0;
}
.house-mainims ul{
    padding: 20px;
    background-color: #F0F0F0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 90px), 1fr));
    grid-gap: 1em;
}
.house-mainims ul a{
    display: block;
    position: relative;
    height: 80px;
}
.house-mainims ul a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.house-mainims ul i{
    position: absolute;
    font-size: 2.1em;
    width: 1em;
    height: 1em;
    margin: auto;
    bottom: 5px;
    right: 5px;
    color: #fff;
}
.house_layoutimgprint .button_text{
    cursor: pointer;
}
.vacant_house-imgs .basebox{
    margin-top:20px; 
}

.vacant_house-data .house-data dl{
    display: -webkit-flex;
    display: flex;
    padding: 0.5em 1em;
    gap:1em;
    border-top: 1px solid #c3c4c7;
    border-bottom: 1px solid #c3c4c7;
    margin-top: -1px;
}
.vacant_house-data .house-data dl:nth-child(2n + 1){
    background-color: #f7f7f7;
    color: #000;
}
.vacant_house-data .house-data dt{
    font-weight: normal;
    width: 6em;
}
.vacant_house-data .house-data dd{
    width: calc(100% - 5em);
}
.vacant_house-map .acf-map{
    height: 60vw;
    max-height: 500px;
}


/*--更新情報-------------------*/
/*更新情報一覧*/
.news_list li{
    border-bottom: 1px dashed #d0d0d0;
}
.news_list li a{
    padding: 1em;
    position: relative;
}
.news_list li a,
.newslist_data {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap:0.5em 2em;
}
.news_list li a::before{
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -1px;
    background-color: #ffc900;
    transition: 0.3s;
}
.news_cat{
    font-size: 12px;
    line-height: 1;
    color: #0085cb;
    padding: 0.5em 1em;
    min-width: 70px;
    border: 1px solid;
    text-align: center;
}
.current_blue .news_cat{
    color: #f7ff00;
}
@media (hover: hover) {
    .news_list li a:hover::before{
        width: 100%;
    }
}
/*更新情報詳細*/
.news_itemimg{
    margin-top: 30px;
}
.news_itembox .basebox{
    margin: 50px 0;
}
.content_nav ul{
    max-width: 500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 8px;
}
.content_nav ul a{
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap:10px;
}
.content_nav ul .navright a{
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
}
.content_nav .content_nav_arrow{
    line-height: 1;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    text-align: center;
    padding: 0.35em;
}
.content_nav .content_navtaitl{
    text-decoration: underline;
}
.content_nav .content_navtaitl{
    width: calc(100% - 2em - 10px);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*--固定ページ-----------------------------*/
.p_box + .p_box{
    margin-top: 60px;
}
.text_box{
    margin-top: 1.5em;
}
.text_box a{
	text-decoration: underline;
}
.basebox p + p{
    margin-top: 1em;
}
.text_min{
    font-size: 0.9em;
}
.hed_img{
	width: 90%;
	position:relative;
	z-index:-10;
}
.hed_img > div{
	padding-top: 23%;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/*空き家をお探しの方*/
.lookfor_list ul{
    counter-reset: number 0;
}
.lookfor_list ul > li{
    position: relative;
    padding-left: 5.5em;
    padding-top: 1em;
}
.lookfor_list ul > li + li{
    margin: 4em 0;
}
.lookfor_list  ul >li:before {
    counter-increment: number 1;
    content: counter(number) "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background-color: #0085cb;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    padding: 0.9em 0;
    line-height: 1;
}
.current_blue .lookfor_list ul > li:before{
    background-color: #f7ff00;
    color: #000;
}
.lookfor_link{

    text-align: center;
    padding: 50px 20px;
    background-color: #f0f0f0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap:2em;
}

.lookfor_button a{
    font-size: 65px;
    line-height: 1;
    display: block;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    max-width: 250px;
    margin: auto;
    color: #000;
}
.lookfor_link .lookfor_button p{
    font-size: 16px;
    line-height: 1.2;
    padding: 1em;
    font-weight: bold;
}
.lookfor_button a i{
    width: 100%;
    display: block;
    padding: 0.5em;
    color: #fff;
}
.lookfor_pdf a i{
    background-color: #D72D2C;
}
.lookfor_contact a i{
    background-color: #008744;
}
.lookfor_word a i{
    background-color: #0085cb;
}

/*空き家バンク登録支援補助金*/

.ollist ol li{
	padding-left:1.5em;
	position:relative;
}
.ollist ol li::before{
	content:"";
	display:block;
	position:absolute;
	left:0;
	top: 4px;
    width: 20px;
    height: 20px;
	border-radius:50%;
	background-color:#000;
}

.hojotable{
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
    text-align: center;
}
.hojotable dl{
	border: 1px solid #000;
    margin-left: -1px;
	margin-top:-1px;
}
.hojotable dd,
.hojotable dt{
	padding:10px;
}
.hojotable dt{
	border-bottom:1px solid #000;
}


/*コンタクトフォーム*/
.contact_box{
    margin-top: 1.5em;
}
.contact_box table{
    width: 100%;
}
.contact_box table tr{
    border-bottom: 1px dashed #adaeaf;
}
.contact_box table th{
    font-weight: normal;
}
.contact_box table input[type="text"],
.contact_box table input[type="tel"],
.contact_box table input[type="email"],
.contact_box table textarea {
    width: 100%;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
}
.contact_box table input[size="3"]{
    width: 5em;
}
.contact_box table input[size="4"]{
    width: 6em;
}
.red{
    color: #d72d2c;
}
.contact_box dl + dl{
    margin-top: 10px;
}
.contact_box table textarea{
    line-height: 1.5;
    field-sizing: content;
    min-height: 3lh;
    /resize: vertical;
}
/*ラジオボタン*/
.contact_box .wpcf7-radio input{
    display: none;
}
.contact_box .wpcf7-radio label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contact_box .wpcf7-radio label span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
    border: none;
    outline: none;
    appearance: none;
}
.contact_box .wpcf7-radio label span::before,
.contact_box .wpcf7-radio label span::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 0;
}
.contact_box .wpcf7-radio label span::before {
    background: #ffffff;
}
.contact_box .wpcf7-radio label span::after {
    outline: 2px solid #da3c41;
    transition: all 0.3s ease-in-out;
}
/*checked時の設定*/
.contact_box .wpcf7-radio label input:checked + span::after {
    outline: 12px solid #da3c41;
    outline-offset: -10px;
}
/*送信ボタン*/
.contact_submit{
    text-align: center;
    margin-top: 50px;
}
.contact_submit input{
    padding: 0.5em 3em;
    background-color: #0085cb;
    color: #fff;
    border-radius: 5px;
}

.contact_submit input[disabled]{
    opacity: 0.5;
}

/*サイトポリシー*/
.ullist ul{
	counter-reset: number 0;
}
.ullist ul li{
	position:relative;
	padding-left:1em;
}
.ullist ul li::before {
    counter-increment: number 1;
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 0;
}

/*空き家バンクトップ*/
.hed_img > div:has(.bankhed_img) {
	height: 42vw;
	min-height:230px;
	padding:0;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
	text-align:center;
}
.hed_img > div .bankhed_img{
	width:14%;
}
.hed_img > div:has(.bankhed_img) img{
	width:100%;
}
.hed_img .bankhed_img h2{
	padding:0;
	margin:0;
}
.mv_text {
    bottom: 20px;
}
.home_contemt .akiyahome_contemt03{
	padding-top:30px;
	padding-bottom:30px;
	background-color: #f8f8f8;
}
.home_contemt .akiyahome_contemt03 :is(.hed_search, .hed_taitl ){
	margin:0;
}
.home_contemt .hed_taitl .gtr{
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

/*空き家対策について*/
.maa_container {
    font-size: 16px;
    line-height: 1.75;
}
.maa_lead {
    font-weight: 600;
}
.maa_container section {
    margin-top: 6.25vw;
}
.hed_img.measures-against-akiya h2{
    width: 100%;
	padding-bottom:0;
	padding-left:0;
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    line-height: 1.84;
    text-align: center;
}
.hed_img.measures-against-akiya h2>span{
    display: block;
    font-size: 43px;
    position: relative;
    width: fit-content;
    margin: auto;
}
.hed_img.measures-against-akiya h2>span::after{
    content: url(images/img_bubble.svg);
    width: 118%;
    position: absolute;
    top: 85%;
    left: 47%;
    transform: translate(-50%, -50%);
}
.original_text_shadow {
    color: #fff;
    text-shadow: 0px 0px 30px rgba(35, 24, 21, 1);
}
.maa_section_title_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 5.3125vw;
    border-bottom: 1px solid #231815;
    padding-bottom: 8px;
    margin-bottom: 35px;
}
.maa_section_title {
    font-size: 1.1875em;
    font-weight: 600;
    color: #0e639b;
    border-bottom: none;
    padding-left: 0;
    margin-bottom: 0;
}
.maa_section_title::after {
    border: none;
}
.maa_contents .card_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 3.75vw;
}
.maa_contents .card {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    row-gap: 6px;
}
.maa_contents .card>a {
    display: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
}
.maa_contents .card .image {
    width: 100%;
    height: auto;
    border-radius: 0.625vw;
    object-fit: cover;
}
.maa_contents .card_title {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 10px;
}
.maa_contents .card .description {
    text-align: justify;
}
.hed_circle_list li {
    display: flex;
    align-items: flex-start;
}
.hed_circle_list li:before {
    content: "○";
    font-size: 1em;
}
.maa_news_list li {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 1.875vw;
}
.maa_news_list li + li {
    margin-top: 20px;
}
.maa_news_cat_container .category,
.maa_news_list li .category {
    display: block;
    width: 110px;
    color: #fff;
    border-radius: 9999px;
    text-align: center;
    line-height: 1.3125;
    padding-bottom: 2px;
}
.maa_news_list .post_terms .category + .category {
    margin-top: 10px;
}
.maa_news_cat_container {
    display: flex;
    align-items: center;
    gap: 1.5625vw;
    flex-wrap: wrap;
}

