@charset "UTF-8";
/*
Theme Name:株式会社ジェム
*/


/* ページング */

/* 全体 */
.wp-pagenavi {
    display: flex;
    justify-content: center;
}

/* ボタンフォント */
.wp-pagenavi a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 1em;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.259);
    border-radius: 2em;
    text-align: center;
    text-decoration: none;
    color: #000;
}

/* 現在のページ */
.wp-pagenavi .current {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 1em;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.259);
    border-radius: 2em;
    text-align: center;
    text-decoration: none;
    background: #8C8D8E;
    color: #fff;
}

/* 前ボタン・次ボタン */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    background: #003161;
    color: #fff;
}

.wp-pagenavi .previouspostslink:after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 4px);
    width: 4px;
    height: 4px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(-135deg);
}
.wp-pagenavi .nextpostslink:after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 2px);
    width: 4px;
    height: 4px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
}


/* お問い合わせ　入力チェック*/
.error_txt {
    color: red;
}

.error_txt_confilmArea {
    color: red;
    height: auto !important;
    margin: 0px auto !important;
    text-align: center;
}



.property_main_photo {
	width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin: 0 auto;
    overflow: hidden;
	position: relative;	/* 相対位置指定 */
}

.property_main_photo .picture {
    width: 100%;
    height: 100%;
    position: absolute;	/* 絶対位置指定 */
	top: 0;
	left: 0;
}

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