@charset "utf-8";
/* ===================================================================
CSS
 file name  :  mypage.css
=================================================================== */
.mypage{
	padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
	.mypage{
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 480px) {
	.mypage{
		padding-bottom: 80px;
	}
}
/* =====================================
ログイン
======================================== */
@media print, screen and (min-width: 769px) {
	.login_wrap{
		display: flex;
		justify-content: space-between;
	}
	.login_wrap .member_box,
	.login_wrap .non_member_box{
		width: 48%;
	}
}
h2.login_title{
	text-align: center;
	color: #202466;
	font-size: 1.8rem;
	font-weight: 500;
}
h2.login_title span{
	position: relative;
	display: inline-block;
	border-bottom: solid 1px #202466;
}
h2.login_title span:before {
	content: "";
	position: absolute;
	bottom: -22px;
	left: 50%;
	margin-left: -17px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}
h2.login_title span:after {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -17px;
	border: 12px solid transparent;
	border-top: 12px solid #202466;
	z-index: 1;
}
.login_form{
	margin-top: 30px;
	border: 5px solid #E5ECF6;
	padding: 30px 40px;
}
.login_form dl dt{
	color: #202466;
	font-weight: 500;
}
.login_form dl dd{
	margin-bottom: 1.5em
}
.login_form .login_btn_area{
	margin: 30px auto auto;
	max-width: 360px;
}
.login_form p.reminder_link{
	margin: 1.5em auto auto;
	text-align: center;
}
p.contact_link{
	margin-top: 1em;
}
.member_form_point{
	margin: 30px auto auto;
	padding: 40px;
	background: #E5ECF6;
}
.member_form_point ul{
	display: inline-block;
	text-align: left;
}
.member_form_point ul li{
	margin-top: 1em;
	display: flex;
	align-items: flex-start;
}
.member_form_point ul li .point{
	color: #202466;
	border: 1px solid #202466;
	border-radius: 50px;
	padding: 0.4em 1em;
	margin-right: 2em;
	line-height: 1;
	font-size: 1.2rem;
}
.member_form_point ul li .point span{
	font-size: 1.6rem;
	margin-left: 0.1em;
	line-height: 1;
}
.member_form_point ul li .text{
	font-size: 1.6rem;
	font-weight: 500;
	color: #202466;
	line-height: 1.6;
}
.member_form_point ul li .text .underline{
	background: linear-gradient(transparent 70%, #D5C971 70%);
}
.member_form_point ul li .text .red{
	font-size: 2.0rem;
	font-weight: 700;
	color: #9A1E00;
	line-height: 1;
}
.member_form_point .member_btn_area{
	margin: 30px auto auto;
	max-width: 360px;
}
.member_form_point .member_btn_area .btn{
	border: 1px solid #B79752;
	background: #B79752;
}
.member_form_point .member_btn_area .btn:hover{
	border: 1px solid #C4B753;
	background: #C4B753;
}
@media screen and (max-width: 768px) {
	.login_wrap{
		max-width: 640px;
		margin: auto;
	}
	.login_wrap .non_member_box{
		margin-top: 50px;
	}
	h2.login_title{
		font-size: 1.4rem;
	}
	h2.login_title span:before {
		bottom: -14px;
		left: 50%;
		margin-left: -10px;
		border: 8px solid transparent;
		border-top: 8px solid #FFF;
	}
	h2.login_title span:after {
		bottom: -16px;
		left: 50%;
		margin-left: -10px;
		border: 8px solid transparent;
		border-top: 8px solid #202466;
	}
	.login_form{
		margin-top: 20px;
		padding: 20px 20px;
	}
	.login_form dl dd{
		margin-bottom: 1em
	}
	.login_form .login_btn_area{
		margin: 20px auto auto;
	}
	.member_form_point{
		margin: 20px auto auto;
		padding: 20px;
	}
	.member_form_point ul li .point{
		font-size: 0.8rem;
	}
	.member_form_point ul li .point span{
		font-size: 1.4rem;
	}
	.member_form_point ul li .text{
		font-size: 1.2rem;
	}
	.member_form_point ul li .text .red{
		font-size: 1.6rem;
	}
	.member_form_point .member_btn_area{
		margin: 20px auto auto;
	}
}
/* =====================================
パスワードを忘れた方
======================================== */
.reminder_wrap{
	max-width: 800px;
	margin: auto;
}
.red{
	color: #D90000;
}
/* =====================================
退会
======================================== */
.cancel_wrap{
	background: #E5ECF6;
	padding: 3em;
}
.cancel_wrap h2{
	color: #202466;
	font-weight: 700;
	margin-bottom: 1.5em;
	text-align: center;
}
.cancel_wrap p{
	text-align: center;
}
@media screen and (max-width: 768px) {
	.cancel_wrap{
		padding: 2em;
	}
	.cancel_wrap p{
		text-align: left;
	}
}
/* =====================================
マイページトップ
======================================== */
.mypage_head{
	background: #F5F7F9;
	padding: 40px;
}
@media print, screen and (min-width: 769px) {
	.mypage_head{
		display: flex;
		justify-content: space-around;
	}
	.mypage_head div{
		width: 47%;
	}
}
.mypage_head .btn.search::before{
	background: url("../images/sch/icon_search.png") no-repeat;
}
.mypage_head .btn.favorite::before{
	background: url("../images/sch/icon_favorite_white.png") no-repeat;
}
.mypage_bottom .btn.profile::before{
	background: url("../images/common/icon_member_white.png") no-repeat;
}
.mypage_bottom .btn.contact::before{
	background: url("../images/common/icon_mail_white.png") no-repeat;
}
.mypage_head .btn.search::before,
.mypage_head .btn.favorite::before,
.mypage_bottom .btn.profile::before,
.mypage_bottom .btn.contact::before{
	content: "";
	display: inline-block;
	width: 1.4em;
	height: 1.4em;
	margin: -3px 1em 0 0;
	background-size: contain;
	vertical-align: middle;
}
h2.mypage_subtitle{
	margin-top: 100px;
	text-align: center;
	color: #202466;
	font-size: 2.4rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
}
h2.mypage_subtitle::before,
h2.mypage_subtitle::after{
	border-top: 1px solid #9AA0A9;
	content: "";
	width: 3em;
}
h2.mypage_subtitle::before {
	margin-right: 2em;
}
h2.mypage_subtitle::after {
	margin-left: 2em;
}
ul.mypage_bkn_list{
	display: flex;
	flex-wrap: wrap;
}
@media print, screen and (min-width: 769px) {
	ul.mypage_bkn_list{
		margin-left: -3%;
		padding-top: 20px;
	}
}
ul.mypage_bkn_list li{
	margin-top: 50px;
	width: 25%;
	padding-left: 3%;
}
ul.mypage_bkn_list li a{
	text-decoration: none;
	color: #333;
}
ul.mypage_bkn_list li a:hover .photo{
	opacity: 0.7;
}
ul.mypage_bkn_list li .photo{
	width: 100%;
	height:185px;
}
ul.mypage_bkn_list li .photo img{
	width: 100%;
	height:185px;
	object-fit:cover;
}
ul.mypage_bkn_list li .k_d_wrap{
	display: flex;justify-content: space-between;
	margin-top: 15px;
}
ul.mypage_bkn_list li .k_d_wrap .kind{
	color: #202466;
	background: #E5ECF6;
	border-radius: 30px;
	width: 110px;
	text-align: center;
	font-size: 1.2rem;
}
ul.mypage_bkn_list li .k_d_wrap .date{
	color: #405E96;
	font-size: 1.2rem;
}
ul.mypage_bkn_list li .bkn_name{
	margin-top: 1em;
	font-weight: 700;
	height: 56px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
    overflow: hidden;
}
ul.mypage_bkn_list li .access{
	margin-top: 0.5em;
	height: 56px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
    overflow: hidden;
}
ul.mypage_bkn_list li .plan_price{
	border-top: 1px solid #CCC;
	margin-top: 1em;
	padding-top: 1em;
    display:flex;
}
ul.mypage_bkn_list li .plan{
    width:40%;
}
ul.mypage_bkn_list li .price{
	font-weight: 700;
	line-height: 1.2;
    width:60%;
    text-align:right;
}
ul.mypage_bkn_list li .price span{
	color: #202466;
	font-size: 2.0rem;
}
.mypage_bottom{
	border-top: 1px solid #CCCCCC;
}
@media print, screen and (min-width: 769px) {
	.mypage_bottom{
		margin-top: 100px;
		padding-top: 100px;
		display: flex;
		justify-content: space-between;
	}
	.mypage_bottom div{
		width: 36%;
	}
	.mypage_bottom div.cancel_btn_wrap{
		width: 20%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
}
.mypage_bottom div.cancel_btn_wrap div{
	width: 80%;
}
.mypage_bottom div.cancel_btn_wrap div .btn{
	color: #202466;
	background: #FFF;
	padding: 0.8em;
}
.mypage_bottom div.cancel_wrap div .btn:hover{
	color: #FFF;
	background: #202466;
}
@media screen and (max-width: 768px) {
	.mypage_head{
		background: #F5F7F9;
		padding: 20px 20px 40px 20px;
	}
	.mypage_head div{
		max-width: 360px;
		margin: 20px auto auto;
	}
	h2.mypage_subtitle{
		margin-top: 50px;
		font-size: 1.6rem;
	}
	h2.mypage_subtitle::before,
	h2.mypage_subtitle::after{
		width: 2.5em;
	}
	h2.mypage_subtitle::before {
		margin-right: 1.5em;
	}
	h2.mypage_subtitle::after {
		margin-left: 1.5em;
	}
	ul.mypage_bkn_list{
		margin: 0 auto;
		max-width: 640px;
		justify-content: space-between;
	}
	ul.mypage_bkn_list li{
		margin-top: 30px;
		width: 47%;
		padding-left: 0;
	}
	ul.mypage_bkn_list li .k_d_wrap .kind{
		width: 100px;
		font-size: 1.0rem;
	}
	ul.mypage_bkn_list li .k_d_wrap .date{
		color: #405E96;
		font-size: 1.0rem;
	}
	ul.mypage_bkn_list li .bkn_name{
		height: 48px;
	}
	ul.mypage_bkn_list li .access{
		height: 48px;
	}
	ul.mypage_bkn_list li .price span{
		font-size: 1.8rem;
	}
	.mypage_bottom{
		margin-top: 40px;
		padding-top: 40px;
	}
	.mypage_bottom div{
		margin: 20px auto;
		max-width: 360px;
	}
	.mypage_bottom div.cancel_wrap{
		max-width: 260px;
	}
}
@media screen and (max-width: 480px) {
	ul.mypage_bkn_list li .photo{
		height:130px;
	}
	ul.mypage_bkn_list li .photo img{
		height:130px;
	}
}
/* =====================================
お気に入り物件
======================================== */
.bkn_list_wrap{
	max-width: 900px;
	margin: auto;
}
.bkn_list_wrap .check_btn_area{
	margin-top: 20px;
	display: flex;
	align-items: center;
	background: #E5ECF6;
	padding: 10px 20px;
	position: relative;
}
.bkn_list_wrap .check_btn_area.top::before{
	content: "";
	position: absolute;
	bottom: -28px;
	left: 3%;
	border: 14px solid transparent;
	border-top: 14px solid #E5ECF6;
}
.bkn_list_wrap .check_btn_area.bottom::before{
	content: "";
	position: absolute;
	top: -28px;
	left: 3%;
	border: 14px solid transparent;
	border-bottom: 14px solid #E5ECF6;
}
.bkn_list_wrap .check_btn_area .check_navi{
	padding-left: 2em;
	background: url("../images/sch/img_check.png") no-repeat left center;
	background-size: 18px auto;
	margin-right:1em;
}
@media print, screen and (min-width: 641px) {
	.bkn_list_wrap .check_btn_area div{
		width: 33%;
		max-width: 220px;
		padding-right: 1em;
	}
	.bkn_list_wrap .bkn_footer div{
		width: 33%;
		padding-right: 0.5em;
	}
	.bkn_list_wrap .check_btn_area a.btn,
	.bkn_list_wrap .bkn_footer a.btn{
		font-size: 1.4rem;
		padding: 0.5em;
		max-width: 220px;
	}
}
@media screen and (max-width: 768px) {
	.bkn_list_wrap .check_btn_area a.btn,
	.bkn_list_wrap .bkn_footer a.btn{
		font-size: 1.2rem;
	}
}
.bkn_list_wrap .check_btn_area a.btn.request,
.bkn_list_wrap .bkn_footer a.btn.request{
	border: 1px solid #B79752;
	background: #B79752;
}
.bkn_list_wrap .check_btn_area a.btn.request:hover,
.bkn_list_wrap .bkn_footer a.btn.request:hover{
	border: 1px solid #C4B753;
	background: #C4B753;
}
.bkn_list_wrap .check_btn_area a.btn.favorite,
.bkn_list_wrap .bkn_footer a.btn.favorite{
	border: 1px solid #60004E;
	color: #60004E;
	background: #FFFFFF;
}
.bkn_list_wrap .check_btn_area a.btn.favorite:hover,
.bkn_list_wrap .bkn_footer a.btn.favorite:hover{
	background: #F5E4F2;
}
.bkn_list_wrap .bkn_footer a.btn.detail::before{
	background: url("../images/sch/icon_search.png") no-repeat;
	width: 1.4em;
	height: 1.4em;
	margin: -2px 1em 0 0;
}
.bkn_list_wrap .check_btn_area a.btn.request::before,
.bkn_list_wrap .bkn_footer a.btn.request::before{
	background: url("../images/sch/icon_request.png") no-repeat;
	width: 1.4em;
	height: 1.4em;
	margin: -3px 1em 0 0;
}
.bkn_list_wrap .check_btn_area a.btn.favorite::before,
.bkn_list_wrap .bkn_footer a.btn.favorite::before{
	background: url("../images/sch/icon_favorite_delete.png") no-repeat;
	width: 16px;
	height: 14px;
	margin: 0 1em 0 0;
}
.bkn_list_wrap .check_btn_area a.btn.request::before,
.bkn_list_wrap .check_btn_area a.btn.favorite::before,
.bkn_list_wrap .bkn_footer a.btn.request::before,
.bkn_list_wrap .bkn_footer a.btn.favorite::before,
.bkn_list_wrap .bkn_footer a.btn.detail::before{
	content: "";
	display: inline-block;
	background-size: contain;
	vertical-align: middle;
}
/*物件コマ*/
.bkn_list li{
	margin-top: 30px;
	border: 1px solid #CCCCCC;
	position: relative;
}
.bkn_list .bkn_header{
	padding: 25px 40px 20px 80px;
}
@media screen and (max-width: 768px) {
	.bkn_list .bkn_header{
		padding: 25px 20px 20px 60px;
	}
}
.bkn_list .bkn_header .check_area{
	position: absolute;
	top: 0;
	left :0;
	width: 40px;
	height: 100%;
	border-right: 1px solid #CCCCCC;
	background: #F5F7F9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bkn_list .bkn_header .check_area .check_only{
	margin-top: -20px;
	margin-left: -20px;
}
.bkn_list .bkn_header .check_area img.lock{
	width: 19px;
}
/*アイコン 一覧詳細共通*/
.icons{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.icons .kind{
	background: #E5ECF6;
	border-radius: 30px;
	color: #202466;
	text-align: center;
	font-size: 1.2rem;
	padding: 0.5em 0.8em;
	line-height: 1;
	margin-bottom: 0.5em;
}
.icons .icon_new,
.icons .icon_recommend,
.icons .icon_price,
.icons .icon_exclusive{
	border: 1px solid #9A1E00;
	border-radius: 30px;
	color: #9A1E00;
	font-size: 1.2rem;
	padding: 0.3em 0.8em;
	line-height: 1;
	margin-left: 0.5em;
	margin-bottom: 0.5em;
}
.icons .icon_new::before{
	background: url("../images/sch/icon_new.png") no-repeat;
}
.icons .icon_recommend::before{
	background: url("../images/sch/icon_recommend.png") no-repeat;
}
.icons .icon_price::before{
	background: url("../images/sch/icon_price.png") no-repeat;
}
.icons .icon_exclusive::before{
	background: url("../images/sch/icon_exclusive.png") no-repeat;
}
.icons .icon_new::before,
.icons .icon_recommend::before,
.icons .icon_price::before,
.icons .icon_exclusive::before{
	content: "";
	display: inline-block;
	background-size: contain;
	vertical-align: middle;
	width: 1.2em;
	height: 1.2em;
	margin: -2px 0.3em 0 0;
}
h3.bkn_name a{
	color: #202466;
	font-size: 1.8rem;
	font-weight: 500;
	text-decoration: none;
}
@media print, screen and (min-width: 641px) {
	.bkn_list .bkn_body{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
}
.bkn_list .bkn_body{
	padding: 0px 40px 20px 80px;
}
@media screen and (max-width: 768px) {
	.bkn_list .bkn_body{
		padding: 0px 20px 20px 60px;
	}
}
.bkn_list .bkn_body .outline_wrap{
	width: calc(100% - 240px);
	padding-right: 20px;
}
.bkn_list .bkn_body .photo_wrap{
	width: 240px;
}
.bkn_list .bkn_body .outline dl{
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #CCCCCC;
	padding: 0.7em 0;
}
.bkn_list .bkn_body .outline dl.price{
	border-top: 1px solid #CCCCCC;
}
.bkn_list .bkn_body .outline dl.price .price_num{
	color: #202466;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	margin-right: 0.2em;
}
.bkn_list .bkn_body .outline dl dt{
	width: 90px;
	color: #405E96;
}
.bkn_list .bkn_body .outline dl dd{
	width: calc(100% - 90px);
}
.bkn_list .bkn_body .outline .half{
	display: flex;
	justify-content: space-between;
}
.bkn_list .bkn_body .outline .half dl{
	width: 100%;
	max-width: 48%
}
.bkn_list .bkn_body .outline_wrap p.update{
	font-size: 1.2rem;
	margin-top: 1em;
}
.bkn_list .bkn_body .photo_wrap .thumbnail{
	display: none;
	transition: all .3s;
	width: 240px;
	height: 300px;
}
.bkn_list .bkn_body .photo_wrap .thumbnail img{
	width: 100%;
	height: 300px;
	object-fit:contain;
	object-position: top;
}
.bkn_list .bkn_body .photo_wrap .thumbnail.show {
	display: block;
}
.bkn_list .bkn_body .photo_wrap .thumbnail.exclusive{
	display: block;
	height: 160px;
}
.bkn_list .bkn_body .photo_wrap .thumbnail.exclusive img{
	height: 160px;
}
.bkn_list .bkn_body .photo_wrap .thumbnail-tab{
	display: flex;
	align-items: center;
}
.bkn_list .bkn_body .photo_wrap .thumbnail-tab .tab-btn{
	width: 50%;
	padding: 5px 0.1em;
}
.bkn_list .bkn_body .photo_wrap .thumbnail-tab .tab-btn div{
	text-align: center;
	background: #E6E6E6;
	color: #333333;
	padding: 0.5em;
	border-radius: 3px;
	cursor: pointer;
	transition: all .3s;
}
.bkn_list .bkn_body .photo_wrap .thumbnail-tab .tab-btn.show div{
	background: #4D4D4D;
	color: #FFFFFF;
}
.bkn_list .bkn_footer{
	padding: 0px 40px 30px 80px;
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	.bkn_list .bkn_footer{
		padding: 0px 20px 30px 60px;
	}
}
/*ページャー*/
.list_pagenav_wrap{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	justify-content: center;
}
.list_pagenav_wrap .pager a{
	padding: 5px;
	margin: 0 0.2em;
	color: #333;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	line-height: 1.2;
}
.list_pagenav_wrap .pager a.page_link{
	border: 1px solid #585858;
	height: 30px;
    min-width: 30px;
    border-radius: 30px;
}
.list_pagenav_wrap .pager a.page_link:hover,
.list_pagenav_wrap .pager a.page_link.on{
	color: #FFF;
	background: #585858;
}
.list_pagenav_wrap .pager a.arrow{
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.sch_list_wrap{
		margin: 50px auto auto;
		padding: 0 0px 50px 0px;
	}
	.sch_list_wrap .bkn_list_wrap{
		padding: 20px;
	}
	.sch_list_wrap .sch_option_wrap{
		padding: 20px;
	}
	.bkn_list_wrap h1.list_title{
		font-size: 1.8rem;
	}
	.bkn_list_wrap .sch_results{
		padding: 0;
	}
	.bkn_list_wrap .sch_results span{
		font-size: 1.8rem;
	}
	.bkn_list_wrap .list_navi .bkn_num span{
		font-size: 1.8rem;
	}
	/*物件コマ*/
	.bkn_list li{
		margin-top: 25px;
	}
	/*アイコン 一覧詳細共通*/
	.icons .kind{
		font-size: 1.0rem;
	}
	.icons .icon_new,
	.icons .icon_recommend,
	.icons .icon_price,
	.icons .icon_exclusive{
		font-size: 1.0rem;
	}
	h3.bkn_name a{
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 640px) {
	.bkn_list_wrap .check_btn_area{
		margin-top: 20px;
		display: inherit;
		padding: 10px 20px;
		text-align: center;
	}
	.bkn_list_wrap .check_btn_area.top::before{
		content: none;
	}
	.bkn_list_wrap .check_btn_area.bottom::before{
		content: none;
	}
	.bkn_list_wrap .check_btn_area .check_navi{
		margin: auto;
	}
	.bkn_list_wrap .check_btn_area div,
	.bkn_list_wrap .bkn_footer div{
		margin: 10px auto auto;
		width: 100%;
		max-width: 360px;
	}
	.bkn_list_wrap .check_btn_area a.btn,
	.bkn_list_wrap .bkn_footer a.btn{
		font-size: 1.4rem;
		padding: 0.8em 0.5em;
	}
	/*物件コマ*/
	.bkn_list li{
		margin-top: 20px;
	}
	.bkn_list .bkn_header{
		padding: 15px 10px 15px 45px;
		position: relative;
		border-bottom: 1px solid #CCCCCC;
	}
	.bkn_list .bkn_header .check_area{
		top: 0;
		left :0;
	}
	.bkn_list .bkn_header .check_area .check_only{
		margin-left: -18px;
	}
	.bkn_list .bkn_header .check_area img.lock{
		width: 16px;
	}
	h3.bkn_name a{
		font-size: 1.2rem;
	}
	.bkn_list .bkn_body{
		padding: 20px 0;
	}
	.bkn_list .bkn_body .outline_wrap{
		width: 100%;
		padding-right: 0;
	}
	.bkn_list .bkn_body .photo_wrap{
		width: 300px;
		margin: auto;
	}
	.bkn_list .bkn_body .outline{
		margin-top: 20px;
		padding: 0 10px;
	}
	.bkn_list .bkn_body .outline dl.price .price_num{
		font-size: 1.8rem;
	}
	.bkn_list .bkn_body .outline dl dt{
		width: 65px;
	}
	.bkn_list .bkn_body .outline dl dd{
		width: calc(100% - 65px);
	}
	.bkn_list .bkn_body .outline_wrap p.update{
		font-size: 1.0rem;
		padding: 0 10px;
	}
	.bkn_list .bkn_body .photo_wrap .thumbnail{
		width: 300px;
		height: auto;
	}
	.bkn_list .bkn_body .photo_wrap .thumbnail img{
		width: 100%;
		height: auto;
	}
	.bkn_list .bkn_body .photo_wrap .thumbnail.exclusive{
		height: 190px;
	}
	.bkn_list .bkn_body .photo_wrap .thumbnail.exclusive img{
		height: 190px;
	}
	.bkn_list .bkn_footer{
		padding: 0px 20px 20px 20px;
	}
	/*ページャー*/
	.list_pagenav_wrap{
		margin-top: 30px;
	}
	.list_pagenav_wrap .pager a{
		padding: 6px;
		margin: 0 0.2em;
	}
}
/* =====================================
希望条件
======================================== */
.joken_head{
	background: #F5F7F9;
	color: #405E96;
	display: flex;
}
.joken_head div,
.joken_body li > div{
	padding: 1em 0.5em;
	text-align: center;
}
@media print, screen and (min-width: 769px) {
	.joken_head div.h_number,
	.joken_body div.b_number{
		width: 7%;
	}
	.joken_head div.h_bkn_num,
	.joken_body div.b_bkn_num{
		width: 13%;
	}
	.joken_head div.h_joken,
	.joken_body div.b_joken{
		width: 50%;
	}
	.joken_head div.h_action,
	.joken_body div.b_action{
		width: 30%;
	}
}
.joken_body ul li{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #CCC;
}
.joken_body div.b_bkn_num .bkn_num{
	color: #202466;
	font-size: 1.8rem;
	font-weight: 700;
}
.joken_body div.b_joken{
	text-align: left;
}
.joken_body div.b_action{
	display: flex;
	align-items: center;
	justify-content: center;
}
.joken_body div.b_action .btn{
	font-size: 1.4rem;
	padding: 0.3em 1.3em;
	margin-right: 0.5em;;
}
.joken_body div.b_action .btn.joken_input{
	color: #202466;
	background: #FFF;
	padding: 0.3em 2em;
}
.joken_body div.b_action .btn.joken_input:hover{
	color: #FFF;
	background: #0051B9;
}
@media screen and (max-width: 768px) {
	.joken_head div,
	.joken_body li > div{
		padding: 0.5em;
	}
	.joken_head div.h_number,
	.joken_body div.b_number{
		width: 10%;
	}
	.joken_head div.h_bkn_num,
	.joken_body div.b_bkn_num{
		width: 20%;
	}
	.joken_head div.h_joken,
	.joken_body div.b_joken{
		width: 70%;
	}
	.joken_head div.h_action{
		display: none;
	}
	.joken_body div.b_action{
		width: 100%;
	}
	.joken_body ul li{
		flex-wrap: wrap;
		padding: 0.8em 0;
	}
	.joken_body div.b_number{
		background: #F5F7F9;
	}
	.joken_body div.b_bkn_num .bkn_num{
		font-size: 1.4rem;
	}
	.joken_body div.b_action .btn{
		font-size: 1.2rem;
	}
}
/* =====================================
希望条件登録モーダル
======================================== */
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}
.modal__bg{
	height: 100vh;
	position: absolute;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	background-image: url("../images/common/modal_close.png");
	background-repeat: no-repeat;
	background-size: 27px auto;
	background-position: right 5% top 20px;
}
.modal__content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	height: 80vh;
	max-width: 1080px;
	background: #FFF;
	overflow-y: scroll;
}
.modal__content .modal_box{
	padding: 50px 30px;
	margin: auto;
	max-width: 1080px;
}
.sch_joken table{
	width: 100%;
	border-bottom: 1px solid #E5ECF6;
}
.sch_joken table th{
	width: 20%;
	border-top: 1px solid #E5ECF6;
	text-align: left;
	color: #202466;
	padding: 20px 10px;
	vertical-align: middle;
}
.sch_joken table td{
	width: 80%;
	border-top: 1px solid #E5ECF6;
	padding: 20px 10px;
}
.sch_joken ul.list_col3,
.sch_joken ul.list_col4{
	display: flex;
	flex-wrap: wrap;
}
.sch_joken ul.list_col3 li{
	width: 33.333%;
	margin: 0.5em 0;
}
.sch_joken ul.list_col4 li{
	width: 25%;
	margin: 0.5em 0;
}
.sch_joken .select_wrap{
	width: 200px;
}
@media screen and (max-width: 768px) {
	.modal__content .modal_box{
		padding: 30px 20px;
	}
	.sch_joken table th{
		display: block;
		width: 100%;
		padding: 1em 20px;
		background: #E5ECF6;
	}
	.sch_joken table td{
		display: block;
		width: 100%;
		padding: 1em 5px;
	}
	.sch_joken ul.list_col4 li{
		width: 50%;
		margin: 10px 0;
	}
	.sch_joken .select_wrap{
		width: 45%;
		max-width: 250px;
	}
}
.selectdiv {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);  
  min-width: 300px;
  width: 25%;
  margin: 50px 0;
}
.selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  top: 18px;
  padding: 0 0 2px;
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; 
  display: block;
  width: 100%;
  font-size: 16px;
  border: 1px solid #202466;
  border-radius: 100px;
  color: #202466;
  background: #FFF;
  padding: 0.8em;
  text-align: center;
}

/* =====================================
フリーワードで探す　20240131追加
======================================== */
.freeword_wrap{
	max-width: 1200px;
	margin: 0 auto auto;
	padding: 0 40px;
}
.freeword{
	position: relative;
	margin: 40px auto auto;
	width: 100%;
	max-width: 560px;
	overflow: hidden;
}
.freeword input[type="text"]{
	border: 1px solid #999;
	border-radius: 100px;
	padding: 0.5em 1em;
	height: 40px;
}
.freeword input[type="text"]:focus {
	outline: 0;
}
.freeword input[type="submit"]{
	cursor: pointer;
	border: 1px solid #999;
	border-left: none;
	border-radius: 0 100px 100px 0;
	background-color: #FFF;
	background-image: url("../images/sch/icon_search_gray.png");
	background-repeat: no-repeat;
	background-size: auto 50%;
	background-position: center center;
	outline : none;
	position: absolute;
	right: 0;
	width: 50px;
	height: 40px;
}
@media screen and (max-width: 768px) {
	.freeword_wrap{
		margin: 0 auto auto;
		padding: 0 20px;
	}
	.freeword{
		margin: 20px auto auto;
	}
}

h2.freeword_subtitle{
	color: #202466;
	font-size: 2.4rem;
	line-height: 2;
	font-weight: 700;
	text-align: center;
}
h2.freeword_subtitle span{
	font-size: 1.4rem;
	font-weight: 300;
	color: #6E7987;
	display: flex;
	align-items: center;
	justify-content: center;
}
h2.freeword_subtitle span::before,
h2.freeword_subtitle span::after{
	border-top: 1px solid #9AA0A9;
	content: "";
	width: 3em;
}
h2.freeword_subtitle span::before {
	margin-right: 2em;
}
h2.freeword_subtitle span::after {
	margin-left: 2em;
}
@media screen and (max-width: 768px) {
	h2.freeword_subtitle{
		font-size: 1.6rem;
	}
	h2.freeword_subtitle span{
		font-size: 1.0rem;
	}
}