@charset "utf-8";

.select_form_box {
	height: auto;
	z-index: 10;
}

.select_form_box .category_box {
	display: none;
	position: relative;
	padding-bottom: 20px;
}

.select_form_box .category_box.show {
	display: block;
}

.select_form_box .category_box .category_bg {
	background: #F2F2F2;
}

.select_form_box .category_box .category_bg .button_container {
	box-sizing: border-box;
	padding: 20px 0;
}

.select_form_box .category_box .category_bg .topSearchForm__button {
	width: 130px;
	margin: 0 auto;
}

.select_form_box .category_box .category_bg .topSearchForm__button button{
	font-size: 12px;
}

.select_form_box .category_box li {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 0;
	text-align: left;
	border-bottom: #fff solid 1px;
	position: relative;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.select_form_box .category_box li:last-child {
	border-bottom: none;
}

.select_form_box .category_box .title {
	font-weight: bold;
	padding-left: 14px;
	position: relative;
	margin-bottom: 10px;
}

.select_form_box .category_box .toggle_panel {
	pointer-events: none;
}

.select_form_box .category_box .toggle_panel.selected .icon_inner::after {
	display: none;
}

.select_form_box .category_box .toggle_icon {
	display: none;
	position: absolute;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.select_form_box .category_box .toggle_icon .icon_inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.select_form_box .category_box .toggle_icon .icon_inner::before,
.select_form_box .category_box .toggle_icon .icon_inner::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background-color: #333;
	top: 45%;
	left: 4px;
}

.select_form_box .category_box .toggle_icon .icon_inner::before {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.select_form_box .category_box .toggle_icon .icon_inner::after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.select_form_box .category_box .toggle_box {
	display: block;
}

.select_form_box .category_box .selectbox_container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.select_form_box .category_box .selectbox_container .select_wrap {
	display: inline-block;
	width: 104px;
	height: 27px;
	position: relative;
	z-index: 1;
}

.select_form_box .category_box .selectbox_container .select_wrap .icon {
	position: absolute;
	z-index: 2;
	right: 9px;
	top: 48%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 4px 0 4px;
	border-color: #333 transparent transparent transparent;
	pointer-events: none;
	display: none;
}

.select_form_box .category_box .selectbox_container .select_wrap select {
	width: 100%;
	height: 27px;
	border: 1px solid #DDDDDD;
	border-radius: 2px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-size: 12px;
}

.select_form_box .category_box .selectbox_container .select_form_box_space {
	font-size: 12px;
}

.select_form_box .category_box .checkbox_container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.select_form_box .category_box .checkbox-field {
	width: 100%;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 10px;
}

.select_form_box .category_box .checkbox-field:last-child{
	margin-bottom: 0;
}

.select_form_box .category_box .checkbox-field label input {
	display: none;
}

.select_form_box .category_box .checkbox-field label input:checked + .checkbox-field-text:after {
	display: block;
}

.select_form_box .category_box .checkbox-field label {
	display: inline-block;
}

.select_form_box .category_box .checkbox-field label .checkbox-field-text {
	padding-left: 25px;
	position: relative;
	cursor: pointer;
	font-size: 12px;
	font-weight: 500;
	display: inline-block;
	word-break: break-all;
}

.select_form_box .category_box .checkbox-field label .checkbox-field-text:before {
	content: "";
	position: absolute;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	border: 1px solid #DDDDDD;
	background-color: #fff;
	border-radius: 2px;
}

.select_form_box .category_box .checkbox-field label .checkbox-field-text:after {
	content: "";
	position: absolute;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: none;
	width: 16px;
	height: 10px;
	left: 0;
	top: 50%;
	margin-top: -8px;
	-webkit-transform: scale(0.5) rotate(-45deg);
	-ms-transform: scale(0.5) rotate(-45deg);
	transform: scale(0.5) rotate(-45deg);
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
}

/*ナビ展開時*/
.navi_wrap{
	display:none;
	position:absolute;
	width:100%;
	background:rgba(255,255,255,0.9);
	z-index:333;
	top:-5px;
	left:0;
}


/*side_fixed*/
.side_fixed{
	position:fixed;
	right:0;
	top:40%;
	z-index:33;
}

.side_fixed img{
	height:0;
}

/*pankuzu*/

.bread .width_box1{
	padding: 10px 10px;
}

#bread_area{
	font-size: 12px;
	word-break: break-all;
	/* width:960px;
	margin:0 auto; */
	font-weight:bold;
}

#bread_area li{
	display: inline;
	margin-right: 0.2em;
}

#bread_area li + li:before{
	content: "\FF1E"; /*	content: ">";*/
}
.conditions_container{
	margin-bottom: 40px;
}
.conditions_container .conditions{
	border: #999 solid 1px;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.conditions_container .conditions li{
	display: inline-block;
}

/*---------------------------------------------------

common

----------------------------------------------------*/

.sp{ display: none; }
.inblock{display:inline-block;}
.pc_br{display:block;}

#border_display{
	width: 100%;
	min-width: 1082px;
	height: auto;
	overflow: hidden;
	position:relative;
}

body{
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 400;
}

body img{
	vertical-align:middle;
}

input, select {
	-webkit-appearance: none;
	appearance: none;
}

.width_box1{
	max-width:1082px;
	margin-left:auto;
	margin-right:auto;
	padding: 0 10px;
}

.bg_image1{
	background:url(../img/cmn/bg_repeat.jpg);
}

#main_wrap{
	padding-top:20px;
}


#main_content{
	padding-top:55px;
}

#sub_main_area{
	border-top:2px solid #dddddd;
	border-bottom:2px solid #dddddd;
	background:url(../img/cmn/bg_repeat.jpg);
	text-align:center;
	font-weight:bold;
	font-size:28px;
	text-align:center;
	padding:40px 0;
	margin-bottom:8px;
}

#sub_main_area .bg_link{
	background:url(../img/link/ico_h2.png) left center no-repeat;
	background-size:51px auto;
	padding:10px 0 10px 60px;
}

#sub_main_area .bg_consulting{
	background:url(../img/consulting/ico_h2.png) left center no-repeat;
	background-size:51px auto;
	padding:10px 0 10px 60px;
}

#sub_main_area .bg_staff{
	background:url(../img/staff/ico_h2.png) left center no-repeat;
	background-size:31px auto;
	padding:10px 0 10px 45px;
}

#sub_main_area .bg_company{
	background:url(../img/company/ico_h2.png) left center no-repeat;
	background-size:41px auto;
	padding:10px 0 10px 60px;
}

#sub_main_area .bg_contact{
	background:url(../img/contact/ico_h2.png) left center no-repeat;
	background-size:47px auto;
	padding:10px 0 10px 60px;
}

#sub_main_area .bg_rent{
	background:url(../img/bukken/ico_h2.png) left center no-repeat;
	background-size:48px auto;
	padding:20px 0 10px 60px;
}
#sub_main_area .bg_buy{
	background:url(../img/bukken/ico_h2_buy.png) left center no-repeat;
	background-size:48px auto;
	padding:20px 0 10px 60px;
}

.margin_zero{
	margin: 0!important;
}

/*見出し*/
.h2_title{
	font-size: 20px;
	text-align: center;
	margin-bottom: 50px;
	font-weight: bold;
}

.bg_head2{
	background:url(../img/cmn/ico2.jpg) left center no-repeat #033366;
	font-weight:bold;
	color:#fff;
	font-size:20px;
	padding:8px 30px;
	margin-bottom:25px;
}

.border_head1{
	font-weight:bold;
	font-size:13px;
	color:#000;
	border-bottom:1px solid #000;
	padding-left: 20px;
	padding-top: 8px;
	padding-bottom:8px;
	margin-bottom:30px;
	clear:both;
	position: relative;
}

.border_head1::before{
	content: '';
	display: block;
	position: absolute;
	width: 5px;
	height: 100%;
	top: 0;
	left: 0;
	background: #f0efef;
}

.pagetitle_container .width_box1{
	padding: 60px 10px 0;
	position: relative;
}

.pagetitle_container .width_box1 .line_zoom{
	position: absolute;
	right: 10px;
	bottom: 60px;
	margin: 0;
}

.h1_title{
	font-size: 42px;
	font-weight: 900;
	text-align: center;
	line-height: 1;
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 0.1em;
	color: #040000;
}

.h1_title span{
	display: block;
	margin-top: 10px;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
}

.h1_title.left{
	text-align: left;
}

/*---------------------------------------------------

header

----------------------------------------------------*/

#absh1{
	display:block;
	background:#fff;
	color:#040000;
	text-align:center;
	padding-top: 20px;
}
#absh1 span{
	display:block;
	max-width:1082px;
	margin-left: auto;
	font-size:11px;
	text-align: right;
}
#absh1 b{
	display:inline-block;
	margin:0 30px 0 10px;
	font-size: 24px;
	position: relative;
	top: 4px;
	font-weight: 900;
}

#absh1 .header_flex{
	display: flex;
	max-width: 1082px;
	margin: 0 auto;
	align-items: baseline;
}

#absh1 .sns_list1 li{width:30px;}

#absh1 .sns_list1 li,
#absh1 .sns_list1{
	display:inline-block;
}

#absh1 .sns_list1 li{
	display:inline-block;
	margin:0 3px;
}

#header_area{
	max-width:1082px;
	margin:0 auto;
	z-index:99992;
	padding: 0 20px;
}

#header_in{
	display: flex;
	justify-content: space-between;
}

#header_in.fixed{
	padding-bottom:100px;
}

#logo{
	text-align:center;
/*	padding-bottom:130px;*/
}
#logo img{
	width:160px;
}

/*navi*/
#sp_navi{
	display:none;
}

.gnavi{
	display:table;
	width:100%;
	padding:30px 0 0;
}
.gnavi li{
	display:table-cell;
	text-align:center;
	width:auto;
	border-left: #040000 solid 1px;
}

.gnavi li:last-child{
	border-right: #040000 solid 1px;
}

.gnavi li a{
	display:block;
	color:#040000;
	padding: 0 20px;
	-webkit-transition:0.5s;
	transition:0.5s;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}

.gnavi li a:hover{
	text-decoration:none;
	color:#033366;
}

/*追従*/
#pc_navi.fixed{
	position:fixed;
	top:0;
	left:0;
	background:#fff;
	width:100%;
	z-index:9999;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
	min-width: 1082px;
}

.fixed .gnavi{
	margin:0 auto;
	display:table;
	width:960px;
	padding:10px;
}

/*---------------------------------------------------

footer

----------------------------------------------------*/

#footer_area{
	/* background:url(../img/cmn/bg_ftter.jpg) top center repeat-x; */
	/* padding-top:110px; */
	padding-bottom: 30px;
}

#footer_in{
	max-width:1082px;
	margin:0 auto;
	padding:0 10px 35px;
	overflow:hidden;
}

.fnavi{
	overflow:hidden;
	width: fit-content;
	margin: 0 auto;
	padding-top:13px;
}

.fnavi li{
	display:table-cell;
	text-align:center;
	width:auto;
	border-left: #040000 solid 1px;
}

.fnavi li:last-child{
	border-right: #040000 solid 1px;
}

.fnavi li a{
	display:block;
	color:#040000;
	padding: 0 20px;
	-webkit-transition:0.5s;
	transition:0.5s;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}

.fnavi li a:hover{
	text-decoration:none;
	color:#033366;
}

.pagetop{
	float:right;
	width:44px;
}

#copyright{
	background:#fff;
	color:#040000;
	font-size:12px;
	text-align:center;
	padding:4px 0 4px;
}

/*---------------------------------------------------

index

----------------------------------------------------*/

.president{
	position: fixed;
	bottom: 0;
	right: 30px;
	width: 210px;
	z-index: 1;
	transition: all 0.3s;
	opacity: 0;
	transform: translateY(300px);
}

.president.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(300px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.president.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(300px);
  }
}

.line_zoom{
	text-align: right;
	margin-bottom: 30px;
}

.line_zoom a{
	width: fit-content;
	background: #dcdddd;
	border: #040000 solid 1px;
	text-align: right;
	padding: 5px 20px;
	margin-left: auto;
	margin-right: 0;
}

.line_zoom a:hover{
	text-decoration: none;
}

.main_select_area{
	display: flex;
	justify-content: space-between;
}

.topSearchArea {
    width: 100%;
    border-radius: 4px;
    background-color: #fff;
}

.topSearchForm {
    display: table;
    font-size: 14px;
	margin-bottom: 30px;
}

.topSearchRent {
    display: inline-table;
    position: relative;
}

.topSearchRent__limit {
    display: table-cell;
    position: relative;
}

.topSearchMenu {
    position: relative;
    font-size: 10px;
    cursor: pointer;
	height: 44px;
	box-sizing: border-box;
}

.topSearchRent__limit .topSearchMenu {
    width: 100px;
}

.topSearchMenu__text {
    margin-bottom: 0;
    overflow: hidden;
    color: #b5b5b5;
    font-size: 15px;
    font-size: 0.9375rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topSearchRent__limit .topSearchMenu__text {
    padding-left: 26px;
}

.topSearchRent__limit .panel {
    top: 78px;
}

.topSearchForm .panel {
    display: none;
    position: absolute;
    z-index: 100;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.75);
}

.topSearchForm .panel.active {
    display: block;
}

.topSearchRent__limit .item-list {
    width: 152px;
    max-height: 450px;
    overflow-x: hidden;
}

.topSearchForm .item-list {
    margin: -22px 0 0 0;
    padding: 0 0 3px;
    border: 1px solid #ececec;
    border-bottom: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
    background-color: #fff;
}

.topSearchForm .item-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topSearchForm .item-list li span {
    display: block;
    padding: 8px 10px;
    cursor: pointer;
}

.topSearchRentText {
    display: inline-table;
    padding: 5px;
    color: #b5b5b5;
}

.topSearchPersons {
    display: inline-table;
    position: relative;
    width: 100%;
	border-top: #040000 solid 1px;
}

.topSearchPersons.sp {
    display: none;
}

.topSearchPersons:last-child {
	border-bottom: #040000 solid 1px;
}

.topSearchPersons__layout {
    display: table-cell;
    position: relative;
	text-align: center;
}

.topSearchPersons__layout .topSearchMenu {
    position: relative;
    min-height: 12px;
    border: none;
    cursor: pointer;
	height: auto;
}

.topSearchPersons__layout .topSearchMenu__text {
    width: 100%;
	box-sizing: border-box;
	padding: 22px 40px 22px 38px;
	background: url(../img/top/ico_all.png) no-repeat 97% center;
    background-size: 12px;
    background-position: right 10px top 48%;
}

.topSearchMenu__text {
    margin-bottom: 0;
    overflow: hidden;
    color: #040000;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rent_budget .flex{
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rent_budget .stage .topSearchMenu{
	height: auto;
}

.rent_budget .stage .topSearchMenu .topSearchMenu__text{
	width: auto;
	padding: 10px;
	background: none;
}

.rent_budget .budget_select{
	padding: 10px;
	border: 1px solid #ececec;
	cursor: pointer;
}

.rent_budget .panel{
	width: 300px;
}

.topSearchPersons__panel {
    top: 90px;
    width: 230px;
	right: 0;
}

.topSearchPersons__panel._2clms {
    width: 450px;
}

.panel_left .topSearchPersons__panel{
	left: 0;
	right: auto;
}

.panel_left  .topSearchPersons__panel .stage:before{
	left: 70px;
}

.panel_left  .topSearchPersons__panel .stage:after{
	left: 69px;
}

.panel_left  .topSearchPersons__panel._2clms .stage:before{
	left: 70px;
}

.panel_left  .topSearchPersons__panel._2clms .stage:after{
	left: 69px;
}

.rent_budget .topSearchPersons__panel .stage::before{
	left: 230px;
}

.rent_budget .topSearchPersons__panel .stage::after{
	left: 231px;
}

.topSearchForm .stage {
    margin: -22px 0 0 0;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
    background-color: #fff;
}

.topSearchPersons__panel .stage:before {
    position: absolute;
    top: -41px;
    left: 170px;
    z-index: 2;
    border: 9px solid transparent;
    border-bottom: 11px solid #fff;
    content: "";
}

.topSearchPersons__panel .stage:after {
    position: absolute;
    top: -44px;
    left: 171px;
    z-index: 1;
    border: 10px solid transparent;
    border-bottom: 13px solid #ececec;
    content: "";
}

.topSearchPersons__panel._2clms .stage:before {
    left: 390px;
}

.topSearchPersons__panel._2clms .stage::after {
    left: 391px;
}

.item-select2 {
    padding: 0;
    margin: 0;
}

.topSearchPersons__panel .item-select2 {
    display: flex;
	flex-wrap: wrap;
}

.topSearchPersons__panel .item-select2 li {
    padding: 10px;
    border-bottom: none;
	text-align: center;
}

.topSearchPersons__panel._2clms .item-select2 li {
    display: inline-block;
    width: 200px;
}

.buy_list .item-select2 li{
	border-bottom: 1px solid #dadada;
	width: 100%;
}

.buy_list .item-select2 li:last-child{
	border-bottom: none;
}

.buy_list .item-select2 li a{
	display: block;
}

.buy_list .item-select2 li a:hover{
	text-decoration: none;
}

.item-select2 li {
    list-style: none;
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
    margin: 0;
}

.item-select2 li input[type=radio], .item-select2 li input[type=checkbox] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: url(../img/top/parts-checkbox-rect-normal.png) no-repeat 0;
    background-size: 20px auto;
    margin: 6px 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: none;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-focus-ring-color: rgba(255,255,255,0);
    outline: none;
}

.item-select2 input[type=radio], .item-select2 input[type=checkbox] {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    z-index: 1100;
}

.item-select2 li input[type=checkbox]:checked {
    background-image: url(../img/top/parts-checkbox-rect-checked.png);
    background-size: 20px auto;
}

.item-select2 input[type=radio]+label, .item-select2 input[type=checkbox]+label, .item-select2 .search-link {
    position: relative;
    display: block;
    margin-bottom: 0;
    margin-top: 12px;
    line-height: 1;
}

.item-select2 input[type=radio]+label, .item-select2 input[type=checkbox]+label {
    padding-left: 25px;
    cursor: pointer;
}
.topSearchPersons__panel .item-select2 li label {
    font-weight: normal;
    font-size: 13px;
    font-size: 0.8125rem;
}
.item-select2 li label {
    color: #6B6B6B;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 0.8 !important;
	text-align: left;
}

.topSearchPersons__botton {
    width: 100%;
    padding: 10px;
	box-sizing: border-box;
}

.topSearchPersons__botton--decision {
    width: 100%;
    height: 40px;
    background-color: #f4f4f4;
    border-radius: 4px;
	display: inline-block;
	border: none;
	font-size: 0.9375rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.topSearchForm__button {
	text-align: center;
    font-size: 16px;
    color: #040000;
    background: #dcdddd;
    border: #040000 solid 1px;
    border-radius: 15px;
    cursor: pointer;
    padding: 5px 0;
    width: 184px;
    margin: 0;
}

.topSearchForm__button button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	font-size: 16px;
}

.main_select_area .select_form_box{
	width: 184px;
	margin-left: 15px;
}

.main_select_area .form_dl{
	display:table;
	width:100%;
}

.main_select_area .form_dl dt,
.main_select_area .form_dl dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:top;
}

.main_select_area .form_dl dt{
	width:155px;
	font-size:16px;
	padding:30px 0 0;
}

.main_select_area .form_dl dd{
	padding:25px 0;
	font-size:16px;
}

.main_select_area .form_dl dd input[type="text"],
.main_select_area .form_dl dd input[type="email"],
.main_select_area .form_dl dd input[type="tel"],
.main_select_area .form_dl dd textarea{
	box-sizing:border-box;
	width:100%;
	border:1px solid #dddddd;
	padding:5px;
	font-family:inherit;
	font-size:inherit;
	resize:vertical;
}

.main_select_area .form_dl dd textarea{
	height:220px;
}

.main_select_area input[type="button"],input[type="submit"] {
	border-radius: 0;
	-webkit-appearance: none;
}

.main_select_area .select_btn,
.main_select_area .submit_btn{
	text-align:center;
}

.main_select_area .submit_btn button{
	font-size:16px;
	color:#040000;
	background:#dcdddd;
	border:#040000 solid 1px;
	border-radius: 15px;
	cursor: pointer;
	padding:5px 0;
	width:184px;
	margin:0;
}

.main_select_area .select_btn_flex{
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.main_select_area .select_btn{
	width: fit-content;
}

.main_select_area .select_btn button{
	font-size:14px;
	color:#040000;
	background:#fff;
	border:#040000 solid 1px;
	border-radius: 15px;
	cursor: pointer;
	padding:5px 0;
	width:80px;
	margin:0;
}

.main_select_area .select_btn.active button{
	background:#dcdddd;
}

.main_select_area .category_box.show{
	display: block;
}

.main_select_area .category_box{
	display: none;
	position: relative;
}

.main_select_area .category_list{
	margin-bottom: 30px;
	word-break: break-all;
	word-wrap: break-word;
}

.main_select_area .category_list:after{
	content:" ";
	clear:both;
	visibility:hidden;
	display:block;
	line-height:0;
	font-size:0;
}
.main_select_area .category_list > li{
	position: relative;
	float:none;
	width: 100%;
	margin: 0;
}
.main_select_area .category_list > li:nth-child(1){
	clear: both;
	margin-left: 0;
}

.main_select_area .category_list > li:nth-child(4){
	margin-left:0;
	float:none;
}

.main_select_area .category_list > li:last-child{
	border-bottom: #040000 solid 1px;
}

/*並び替え*/
.main_select_area .category_list .list{
	line-height: 1.2;
	color: #040000;
	font-weight:bold;
	text-align: center;
}
.main_select_area .category_list .list a:hover{
	text-decoration:none;
}

.main_select_area .border_bottom{
	border-bottom: #040000 solid 1px;
}

.main_select_area .category_list .select{
	position: relative;
	min-height: 12px;
	padding: 30px 40px 30px 38px;
	border: none;
	border-top: #040000 solid 1px;
	cursor: pointer;
	background: url(../img/top/ico_all.png) no-repeat 97% center;
	background-size:12px;
	background-position: right 10px top 48%;
}

.main_select_area .category_list li .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(1) .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(2) .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(3) .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(4) .select:after{
	display: none;
}

.main_select_area .category_list ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid #033366;
	border-top: 0;
	background: #fff;
	box-sizing: border-box;
	z-index: 100;
}
.main_select_area .category_list a{
	display: block;
	padding: 12px 10px 10px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-webkit-transition-property: opacity,color,border-color;
	transition-property: opacity,color,border-color;
}
.main_select_area .category_list .sort1 li:nth-child(1) a,
.main_select_area .category_list .sort2 li:nth-child(2) a,
.main_select_area .category_list .sort3 li:nth-child(3) a,
.main_select_area .category_list .sort4 li:nth-child(4) a,
.main_select_area .category_list .sort5 li:nth-child(5) a,
.main_select_area .category_list li.active a,
.main_select_area .category_list a:hover{
	color: #fff;
	background: #033366;
}
.main_select_area .category_list ul li+li a{
	border-top: 1px solid #033366;
}

#main_slide_area{
	margin-bottom:0;
}

#main_slide_area .sp_slide{
	display:none;
}

#top_bukken .bukken_list{
	overflow:hidden;
	margin:0 0 50px;
}
/* #top_bukken .bukken_list li a span.info{
	padding-top: 25px;
} */

.bukken_list li{
	float:left;
	width:185px;
	box-sizing:border-box;
	background:url(../img/cmn/bg_repeat.jpg);
	margin-left:40px;
	margin-bottom:58px;
}
.bukken_list li a{
	display:block;
	padding:8px 0 10px;
	background:#fff;
	-webkit-transition:0.5s;
	transition:0.5s;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
.bukken_list li a span{
	display:block;
}

.bukken_list li a span.info{
	font-size:12px;
	display:block;
	position:relative;
	text-align: center;
}
.bukken_list li a span.cg_class{
	background:#033366;
	color:#fff;
	display:inline-block;
	padding:0 10px;
	margin-bottom:5px;
	margin-right:5px;
}
.bukken_list li a span.cg_status{
	border:1px solid #666;
	display:inline-block;
	padding:0 10px;
	margin-bottom:5px;
	margin-right:5px;
}

.bukken_list li a span.image{
	margin-bottom:10px;
}

.bukken_list li a span.info .flex{
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	text-align: center;
	margin: -8px auto 5px;
}

.bukken_list li a span.info strong{
	display:inline-block;
	padding:1px 5px 0px;
	margin: 0 5px;
	font-weight:normal;
	font-size:12px;
	line-height:1.4;
	font-weight:bold;
}
/* .bukken_list li a span.info .address_m{
} */

.bukken_list li a span.info .sta_m{
	display:inline-block;
	padding:1px 5px 0px;
	margin: 0 8px;
	font-weight:normal;
	font-size:12px;
	line-height:1.4;
	font-weight:bold;
	color:#EE7700;
	border:2px solid #EE7700;
}
.bukken_list li a span.info .sta_s{
	display:inline-block;
	padding:1px 5px 0px;
	margin: 0 8px;
	font-weight:normal;
	font-size:12px;
	line-height:1.4;
	font-weight:bold;
	color:#fff;
	border:2px solid #040000;
	background:#040000;
}

.bukken_list li a span.info strong.abs_bu{
	background:#fff;
	color:#040000;
	border:2px solid #040000;
}
.bukken_list li a span.info strong.abs_bs{
	background:#fff;
	color:#861474;
	border:2px solid #861474;
}

.bukken_list li:nth-child(5n+5){
	float:right;
	margin-left:0;
}

.bukken_list li:nth-child(5n+1){
	clear:both;
	margin-left:0;
}
.bukken_list li a span.catch{
	font-weight:bold;
	margin:0 0 5px;
}

.bukken_list li a span.title{
	display:block;
	min-height:25px;
	padding:0 0 4px;
	font-weight:bold;
	color:#040000;
	font-size:12px;
    line-height:1.4;
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 4px;
}
.bukken_list li a span.address{
	font-size:12px;
	padding:5px 0;
}
.bukken_list > li span.icon img{
	margin-right:5px;
	width:32px;
}

.bukken_list > li span.kukaku{
	background:#dcdddd;
	color:#000;
	display:inline-block;
	padding:1px 10px;
	margin-bottom:5px;
	margin-right:5px;
}

.bukken_list .ico_list li{
	display:inline-block;
}

.bukken_list li a:hover{
	text-decoration: none;
}

.bukken_list li a:hover img:not(.over),
.bukken_list li a:active img:not(.over){
	opacity:1;
}
#top_cach{
	text-align:center;
}
.top_cach_head{
	font-size:24px;
	color:#fff;
	position:relative;
	top:-35px;
	line-height:2;
	z-index:1;
}
.top_cach_head .bg_color1{
	background:#033366;
	padding:6px 15px 4px;
	margin-top:15px;
	display:inline-block;
	line-height:1.6;
}
#top_cach .text1{
	position:relative;
	line-height:1.8;
	font-size:16px;
}

#top_cach .text1 p+p{
	padding-top:25px;
}

#top_cach{
	padding-bottom:30px;
	margin-bottom:75px;
}

#top_info_area{
	overflow:hidden;
	margin-bottom:60px;
}

.top_news{
	float:left;
	width:460px;
	padding-bottom:12px;
	word-break:break-all;
}

.top_info{
	float:right;
	width:460px;
	min-height:320px;
	padding-bottom:10px;
}

.bg_head1{
	border-bottom: #040000 solid 1px;
	width: 234px;
	font-size:18px;
	font-weight:bold;
	color:#040000;
	padding:10px 0 5px 10px;
	margin-bottom:30px;
}

/* .top_news .bg_head1{
	background:url(../img/top/ico_news.png) 10px center no-repeat;
	background-size:27px auto;
	margin-bottom:10px;
}

.top_info .bg_head1{
	background:url(../img/top/ico_company.png) 10px center no-repeat;
	background-size:22px auto;
} */

/* .top_info .info_logo{width:183px;} */

.top_info .info_dl{
	display:table;
	line-height:1.8;
	margin-bottom:7px;
	width:100%;
}

.top_info .info_dl dt,
.top_info .info_dl dd{
	display:table-cell;
}

.top_info .info_dl dt{
	box-sizing:border-box;
	font-weight:bold;
	padding-left:10px;
	width:107px;
}

.gmap_link{
	display:inline-block;
	color:#040000;
}

.top_news .news_list{
	height: 258px;
}

.top_news .news_list li{
	display:block;
	padding-bottom:20px;
	width:100%;
}

.top_news .news_list li .day,
.top_news .news_list li .text1{
	display:table-cell;
}

.top_news .news_list li .day{
	box-sizing:border-box;
	font-weight:bold;
	padding-left:10px;
	width:122px;
}

/*single markup style*/
.post_single{
	overflow:hidden;
	padding:0 0 0 10px;
}
.post_single p{
	line-height:1.6;
}
.post_single img{
	max-width:100%;
	height:auto;
}
.post_single img.alignright{
	float:right;
	margin:0 0 15px 15px;
	display:block;
}
.post_single img.alignleft{
	float:left;
	margin:0 15px 15px 0;
	display:block;
}
.post_single img.aligncenter{
	display:block;
	margin:0 auto 15px;
}
.post_single h1{
	font-size:36px;
	border-bottom:6px solid;
	margin:0 0 35px;
}
.post_single h2{
	font-size:32px;
	border-bottom:5px solid;
	margin:0 0 35px;
}
.post_single h2{
	font-size:28px;
	border-bottom:4px solid;
	margin:0 0 35px;
}
.post_single h4{
	font-size:24px;
	border-bottom:3px solid;
	margin:0 0 35px;
}
.post_single h5{
	font-size:20px;
	border-bottom:2px solid;
	margin:0 0 35px;
}
.post_single h6{
	font-size:16px;
	border-bottom:1px solid;
	margin:0 0 35px;
}
.post_single td{
	padding:10px;
	border:1px solid;
}
.post_single table{
	margin-bottom:25px;
}
.post_single ul,
.post_single ol{
	padding-left:2.0em;
	margin-bottom:25px;
}
.post_single ul li{
	list-style:outside;
	margin-bottom:10px;
	line-height:1.4;
}
.post_single ol li{
	list-style:outside decimal;
	margin-bottom:10px;
	line-height:1.4;
}
.post_single a{
	text-decoration:underline;
	color:#033366;
}

/*---------------------------------------------------

link

----------------------------------------------------*/


#link_list_area{
	overflow:hidden;
}
.link_list{
	padding: 0 40px;
	margin:0 0 60px;
	overflow:hidden;
}
.link_list li{
	width:440px;
	font-size:12px;
	padding-left:17px;
	line-height:1.875;
	margin-bottom:20px;
	position: relative;
}
.link_list li::before{
	content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 6px;
    left: 0;
    background: #000;
}
.link_list li:nth-child(even){
	float:right;
}
.link_list li:nth-child(odd){
	clear:both;
	float:left;
}

/*---------------------------------------------------

staff

----------------------------------------------------*/

.gray_bg{
	background: #eeecec;
	padding: 20px 50px 0;
	margin-bottom: 70px;
}

#greeting_area{
	margin-bottom:50px;
	margin-top:20px;
}

#greeting_area .h2_title{
	margin-bottom:30px;
}

#greeting_area .greeting_box{
	box-sizing: border-box;
	padding: 20px 30px 30px;
	background: #fff;
	margin: 0 auto;
	box-shadow: 0px 0px 6px rgb(0 0 0 / 8%);
	width: 740px;
	position: relative;
}

#greeting_area .flex{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

#greeting_area .image{
	width: 25%;
	margin: 0 auto;
}

#greeting_area .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#greeting_area .text{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#greeting_area .greeting_text_box{
	max-width: 335px;
	margin-bottom: 20px;
}

.link_flex{
	display: flex;
}

.link_flex.u-sp{
	display: none !important;
}

.link_flex a:first-child{
	margin-right: 10px;
}

.link_flex .blog{
	width: 40px;
}

.link_flex .facebook{
	width: 55px;
}

.representative{
	display: flex;
}

.representative_name{
	text-align: center;
    display: block;
    margin-right: 15px;
}

.representative_name .bg_name,
.representative_name .text_name{
	box-sizing:border-box;
	display:block;
}

.representative_name .bg_name{
	color:#040000;
	border: #040000 solid 1px;
	font-size:16px;
	width:fit-content;
	padding:3px 10px;
	margin: 0 auto 10px;
	line-height:1.0;
	text-align:center;
	letter-spacing: 0.1em;
}

.representative_name .text_name{
	color:#040000;
	font-weight:bold;
	font-size:22px;
	line-height:1.3;
}

.representative_name .text_name .eng_text{
	font-size:12px;
	display:block;
	margin-top:2px;
}

.greeting_text1{
	line-height:1.2;
	font-size:25px;
	text-align: center;
	display: inline-block;
	color: #040000;
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700;
	font-style: normal;
}

#greeting_area .image_list{
	margin-bottom:20px;
}
#greeting_area .image_list li{
	display:inline-block;
	margin-right:5px;
	width:36px;
}

#greeting_area .list li{
	text-indent:-1em;
	padding-left:1em;
	line-height:1.2;
}

#greeting_area .list li+li{
	margin-top:2px;
}

.staff_list{
	padding: 0 30px;
}

.staff_list::after{
	content: "";
	display: block;
	clear: both;
}

.staff_list > li{
	float:left;
	width:48%;
	min-height: 300px;
	padding:25px 0 0 25px;
	margin-bottom:60px;
	box-sizing:border-box;
	position: relative;
	background: #fff;
	box-shadow: 0px 0px 6px rgb(0 0 0 / 8%);
}

.staff_list > li:nth-child(2n){
	float:right;
	margin-left:0;
}
.staff_list > li:nth-child(2n+1){
	clear:both;
}

.staff_list > li .image{
	max-width:150px;
	position: absolute;
	right: 20px;
	bottom: 10px;
}

.staff_list li .prof_body{
	height: 88%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.staff_list li .prof_body .name_text{
	font-weight:bold;
	color:#040000;
	font-size:22px;
	line-height:1.3;
	margin-left:5px;
	margin-bottom:10px;
	text-align:center;
	display: inline-block;
}

.staff_list li .prof_body .name_text .eng_text{
	display:block;
	font-size:16px;
}

.staff_list li .prof_body .greeting_text_box{
	max-width: 250px;
	margin-top: 10px;
}

.staff_list li .list li{
	text-indent:-1em;
	padding-left:1em;
	line-height:1.7;
	font-size: 12px;
}

#staff_prof{
	padding-bottom:10px;
}

/*---------------------------------------------------

company

----------------------------------------------------*/

#company_comme .width_box1{
	padding-top: 60px;
	margin-bottom:50px;
	border-top: #040000 solid 1px;
}

#company_comme .flex{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 70px;
	margin-bottom: 120px;
}

#company_comme .image{
	width: 290px;
	height: auto;
}

#company_comme .text{
	width: 700px;
}

#company_comme .company_text{
	position:relative;
	padding:0 30px;
	font-size:16px;
}

#company_comme .company_text+.company_text{
	margin-top:30px;
}

.company_list1{
	width:520px;
	border-top:1px solid #fff;
}

.company_list1 li{
	display:table;
	width:100%;
	border-bottom:1px solid #fff;
	padding:15px 0 13px;
}

.company_list1 li .ttl1,
.company_list1 li .text1{
	display:table-cell;
	box-sizing:border-box;
}

.company_list1 li .text1{
	padding-left:10px;
}

.company_list1 li .ttl1{
	font-weight:bold;
	color:#040000;
	width:146px;
	padding-right:20px;
}

.company_list1.list1{
	float:left;
	margin-bottom:30px;
}
.company_list1.list2{
	float:right;
	margin-bottom:30px;
}

#company_about .map_area{
	clear:both;
}

#company_about .map_area iframe{
	width:100%;
	height:280px;
	vertical-align:middle;
}

#company_about{
	padding: 50px 30px;
	margin-bottom:80px;
	background: #e4e4e4;
	width: 1082px;
}

#company_about::after{
	content: "";
	clear: both;
	display: block;
}

#company_step{
	overflow:hidden;
	margin-bottom:60px;
}

.step_tb1{
	width:520px;
}

.step_tb1.tb1{
	float:left;
}

.step_tb1.tb2{
	float:right;
}

.step_tb1 tr{
	margin-bottom: 15px;
	display: block;
}


.step_tb1 td{
	box-sizing:border-box;
}

.step_tb1 .year_td{
	width:80px;
	padding-left:5px;
	padding-right:5px;
	background:#e8e8e8;
	text-align:center;
}
.step_tb1 .month_td{
	text-align:center;
	background:#e8e8e8;
	width:60px;
}
.step_tb1 .text_td{
	padding:0 5px;
}

/*---------------------------------------------------

consulting

----------------------------------------------------*/
#consulting_area{
	margin-bottom:60px;
}

.post_text{
	overflow:hidden;
}
.post_text p{
	margin-bottom:25px;
	line-height:1.6;
}
.post_text img{
	max-width:100%;
	height:auto;
}
.post_text img.alignright{
	float:right;
	margin:0 0 15px 15px;
	display:block;
}
.post_text img.alignleft{
	float:left;
	margin:0 15px 15px 0;
	display:block;
}
.post_text img.aligncenter{
	display:block;
	margin:0 auto 15px;
}
.post_text h1{
	font-size:36px;
	border-bottom:6px solid;
	margin:0 0 35px;
}
.post_text h2{
	font-size:24px;
	margin:0 0 35px;
	padding: 15px 20px;
	background: #F5F5F5;
    font-weight: bold;
    letter-spacing: 0.08em;
    line-height: 1.33333;
}
.post_text h3{
	font-size:22px;
	font-weight: bold;
	border-top: 2px solid #000;
    border-bottom: 2px solid #000;
	margin:45px 0 35px;
	padding: 7px 10px;
	line-height: 1.5;
}
.post_text h4{
	font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    margin: 0 0 10px;
}
.post_text h4::before{
	content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #7E8A97;
    position: absolute;
    left: 0;
    top: 16px;
}
.post_text h5{
	font-size:16px;
	border-bottom:2px solid;
	margin:0 0 35px;
}
.post_text h6{
	font-size:16px;
	border-bottom:1px solid;
	margin:0 0 35px;
}
.post_text td{
	padding:10px;
	border:1px solid;
}
.post_text table{
	margin-bottom:25px;
}
.post_text blockquote{
	border: 2px solid #000;
    padding: 15px;
	padding-bottom: 0;
    margin-bottom: 20px;
}
.post_text ul,
.post_text ol{
	padding-left:20px;
	margin-bottom:25px;
}
.post_text ul li{
	margin-bottom:10px;
	line-height:1.4;
	position: relative;
}
.post_text ul li::before{
	content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 5px;
    left: -19px;
    background: #000;
}
.post_text ol li{
	list-style:outside decimal;
	margin-bottom:10px;
	line-height:1.4;
}
.post_text a{
	color: #fff;
    text-align: center;
    padding: 10px;
    background: #000;
    font-weight: 500;
    border-radius: 5px;
}

.post_text a:hover{
	text-decoration: none;
}

/*---------------------------------------------------

contact

----------------------------------------------------*/

.qa_text1{
	text-align:center;
	font-weight:bold;
	font-size:16px;
	line-height:1.875;
	margin-bottom:30px;
}

.qa_box{
	box-sizing:border-box;
	border:2px solid #033366;
	width:470px;
	padding:20px 18px 25px;
	margin-bottom:35px;
}

.qa_box.qa1{
	float:left;
}

.qa_box.qa2{
	float:right;
}

.qa_box .qa_head{
	border-bottom:2px solid #033366;
	font-size:22px;
	font-weight:bold;
	text-align:center;
	padding-bottom:10px;
}

.qa_box .qa_head .small_text{
	display:block;
	font-size:18px;
}

.qa_box .qa_dl{
	font-size:16px;
}

.qa_box .qa_dl dt{
	font-weight:bold;
	background:url(../img/contact/q.jpg) left 20px no-repeat;
	padding:25px 0 0 45px;
	min-height:30px;
	margin-bottom:5px;
}

.qa_box .qa_dl dd{
	background:url(../img/contact/a.jpg) left top no-repeat;
	padding:5px 0 0 45px;
	min-height:30px;
}

.qa_box .qa_dl dd+dt{
	border-top:1px solid #dddddd;
	margin-top:15px;
}

.qa_text2{
	clear:both;
	font-weight:bold;
	font-size:20px;
	text-align:center;
	margin-bottom:5px;
}

.qa_arrow{
	text-align:center;
	margin-bottom:10px;
}

.qa_tel{
	font-weight:bold;
	font-size:36px;
	color:#033366;
	text-align:center;
	line-height:1.2;
}

.qa_tel a{
	color:#033366;
}

.qa_tel .bg1{
	background:url(../img/contact/tel.png) left 11px no-repeat;
	background-size:39px auto;
	padding-left:55px;
	line-height:1.0px;
}

#contact_qa{
	margin-bottom:100px;
}

.tel_box{
	text-align: center;
}

.tel_box .tel_image{
	width: 40px;
	margin: 0 auto 15px;
}

.tel_box p{
	line-height: 1.7;
	font-size: 12px;
	font-weight: 600;
}

.tel_box .number{
	font-size: 30px;
	font-family: 'Bebas Neue', cursive;
	color: #040000;
	font-weight: bold;
	margin-bottom: 5px;
	letter-spacing: 0.1em;
    line-height: 1.5;
}

#contact_qa2{
	margin-bottom:40px;
}

.mail_box{
	text-align: center;
}

.mail_box .mail_image{
	width: 40px;
	margin: 0 auto 15px;
}

.mail_box p{
	line-height: 1.7;
	font-size: 12px;
	font-weight: 600;
}

.mail_box .u_sp{
	display: none;
}

#contact_qa3{
	margin-bottom:200px;
}

.mail_post{
	text-align: center;
}

.mail_post .mail_image{
	width: 40px;
	margin: 0 auto 15px;
}

.mail_post p{
	line-height: 1.7;
	font-size: 12px;
	font-weight: 600;
}

.mail_post .thanks_text{
	line-height: 1.7;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 30px;
}

.mail_post .u_sp{
	display: none;
}

.form_text1{
	font-size:16px;
	margin-bottom:20px;
}

.form_text1 .form-req{
	color:#ee0000;
}

.form_box{
	border:2px solid #000;
	border-radius: 10px;
	padding:25px 50px 45px;
}

.form_flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form_center.form_dl {
	margin: 0 auto;
	width: fit-content;
}

.form_center.form_dl dd{
	padding-top: 15px;
    padding-bottom: 35px;
}

.form_center.form_dl dt{
	width: auto;
	padding-right: 30px;
	padding-top: 15px;
    padding-bottom: 35px;
}

.p-contact01__form-inputradio input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.p-contact01__form-inputradio input + span {
	cursor: pointer;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	font-weight: 600;
}

.p-contact01__form-inputradio input + span:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #222;
}

.p-contact01__form-inputradio input:checked + span:after {
	content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 8px;
    left: 0px;
    top: 5px;
    -webkit-transform: scale(0.5) rotate(-45deg);
    -ms-transform: scale(0.5) rotate(-45deg);
    transform: scale(0.5) rotate(-45deg);
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
}

.form_dl{
	display:table;
	width:48%;
}

.form_dl.w100{
	width: 100%;
}

.form_dl dt,
.form_dl dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:top;
}

.form_dl dt{
	width:170px;
	font-size:16px;
	font-weight: 600;
	padding:30px 0 0;
}

.form_dl dt .form-req{
	background: #000;
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    position: relative;
    padding: 3px 7px;
    margin-left: 5px;
    line-height: 1;
}

.form_dl dd{
	padding:25px 0;
	font-size:16px;
}

.form_dl dd input[type="text"],
.form_dl dd input[type="email"],
.form_dl dd input[type="tel"],
.form_dl dd textarea{
	box-sizing:border-box;
	width:100%;
	border:2px solid #dddddd;
	padding:5px;
	font-family:inherit;
	font-size:inherit;
	resize:vertical;
}

.form_dl dd textarea{
	height:220px;
}

input[type="button"],input[type="submit"] {
	border-radius: 0;
	-webkit-appearance: none;
}

.submit_btn{
	text-align:center;
}

.submit_btn input{
	font-size:16px;
	color:#fff;
	background:#000;
	border:none;
	cursor: pointer;
	padding:5px 0;
	width:200px;
	margin:0 5px;
	border-radius: 5px;
}

#form_area{
	padding-top:120px;
	margin-top:-120px;
	margin-bottom:60px;
}

.complete_text{
	font-size:16px;
	font-weight:bold;
	color:#033366;
}

/*---------------------------------------------------

bukken

----------------------------------------------------*/

#buuken_area{
	word-break:break-all;
	margin-bottom:60px;
	margin-left: 50px;
	width: 100%;
}

#buuken_area .bukken_grid_list{
	position: relative;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-auto-rows: minmax(auto, auto);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 26px 23px;
	margin-bottom: 30px;
}

.bukken_grid_list li{
	float:left;
	width:100%;
	height: 100%;
	box-sizing:border-box;
	border-bottom:1px solid #dddddd;
}
.bukken_grid_list li a{
	display:block;
	padding:8px 0 10px;
	background:#fff;
	-webkit-transition:0.5s;
	transition:0.5s;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
.bukken_grid_list li a span{
	display:block;
}

.bukken_grid_list li a span.info{
	font-size:12px;
	display:block;
	position:relative;
}
.bukken_grid_list li a span.cg_class{
	background:#033366;
	color:#fff;
	display:inline-block;
	padding:0 10px;
	margin-bottom:5px;
	margin-right:5px;
}
.bukken_grid_list li a span.cg_status{
	border:1px solid #666;
	display:inline-block;
	padding:0 10px;
	margin-bottom:5px;
	margin-right:5px;
}

.bukken_grid_list li a span.image{
	margin-bottom:10px;
}
.bukken_grid_list li a span.info strong{
	position:absolute;
	top:-2px;
	left:0px;
	display:inline-block;
	padding:1px 5px 0px;
	font-weight:normal;
	font-size:12px;
	line-height:1.4;
	font-weight:bold;
}
.bukken_grid_list li a span.info .address_m{
}

.bukken_grid_list li a span.info .sta_m{
	display:inline-block;
	padding:1px 5px 0px;
	font-weight:normal;
	font-size:12px;
	line-height:1.4;
	font-weight:bold;
	color:#EE7700;
	border:2px solid #EE7700;
	position:absolute;
	top:-2px;
	right:52px;
}
.bukken_grid_list li a span.info .sta_s{
	display:inline-block;
	padding:1px 5px 0px;
	font-weight:normal;
	font-size:12px;
	line-height:1.4;
	font-weight:bold;
	color:#fff;
	border:2px solid #040000;
	background:#040000;
	position:absolute;
	top:-2px;
	left:57px;
}

.bukken_grid_list li a span.info strong.abs_bu{
	background:#fff;
	color:#040000;
	border:2px solid #040000;
}
.bukken_grid_list li a span.info strong.abs_bs{
	background:#fff;
	color:#861474;
	border:2px solid #861474;
}

.bukken_grid_list li a span.catch{
	font-weight:bold;
	margin:0 0 5px;
}

.bukken_grid_list li a span.title{
	display:block;
	min-height:25px;
	padding:0 0 4px;
	font-weight:bold;
	color:#000;
	font-size:15px;
    line-height:1.4;
}
.bukken_grid_list li a span.address{
	font-size:12px;
	padding:5px 0;
}
.bukken_grid_list > li span.icon img{
	margin-right:5px;
	width:32px;
}

.bukken_grid_list > li span.kukaku{
	background:#dcdddd;
	color:#000;
	display:inline-block;
	padding:1px 10px;
	margin-bottom:5px;
	margin-right:5px;
}

.bukken_grid_list .ico_list li{
	display:inline-block;
}
.bukken_grid_list li a:hover{
	text-decoration:none;
	background:none;
}

.bukken_grid_list li a:hover img:not(.over),
.bukken_grid_list li a:active img:not(.over){
	opacity:1;
}

.wp-pagenavi {
	clear: both;
	padding:5px;
	text-align:center;
}

.wp-pagenavi a,.wp-pagenavi span {
	text-decoration: none;
	padding: 3px 5px !important;
	margin: 2px !important;
	border:2px solid #dcdddd !important;
	color:#000;
	background:#dcdddd;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	background:#fff;
	color:#000;
}

.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last{
	display:none;
}

.category_list{
	margin-bottom: 60px;
	word-break: break-all;
	word-wrap: break-word;
}
.category_list:after{
	content:" ";
	clear:both;
	visibility:hidden;
	display:block;
	line-height:0;
	font-size:0;
}
.category_list > li{
	position: relative;
	float:left;
	width: 230px;
	margin: 0 0 0 15px;
}
.category_list > li:nth-child(1){
	clear: both;
	margin-left: 0;
}

.category_list > li:nth-child(4){
	margin-left:0;
	float:right;
}



/*並び替え*/


.category_list .list{
	line-height: 1.2;
	color: #033366;
	font-weight:bold;
}
.category_list .list a:hover{
	text-decoration:none;
}

.category_list .select{
	position: relative;
	min-height: 12px;
	padding: 10px 40px 8px 38px;
	border: 2px solid #033366;
	cursor: pointer;
	background: url(../img/bukken/ico_all.png) no-repeat 97% center;
	background-size:12px;
}

.category_list li .select:after{
	position: absolute;
	top: -100%; bottom: -100%;
	left: 10px;
	margin: auto 0;
}

.category_list li:nth-child(1) .select:after{
	width: 20px;
	height: 20px;
	content: " ";
	background: url(../img/bukken/ico_kukaku.png) no-repeat left center;
	background-size:20px auto;
}

.category_list li:nth-child(2) .select:after{
	width: 14px;
	height: 19px;
	content: " ";
	background: url(../img/bukken/ico_tiiki.png) no-repeat left center;
	background-size:14px auto;
}

.category_list li:nth-child(3) .select:after{
	width: 19px;
	height: 19px;
	content: " ";
	background: url(../img/bukken/ico_madori.png) no-repeat left center;
	background-size:19px auto;
}

.category_list li:nth-child(4) .select:after{
	width: 18px;
	height: 18px;
	content: " ";
	background: url(../img/bukken/ico_narabikae.png) no-repeat left center;
	background-size:18px auto;
}

.category_list ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid #033366;
	border-top: 0;
	background: #fff;
	box-sizing: border-box;
	z-index: 100;
}
.category_list a{
	display: block;
	padding: 12px 10px 10px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-webkit-transition-property: opacity,color,border-color;
	transition-property: opacity,color,border-color;
}
.category_list .sort1 li:nth-child(1) a,
.category_list .sort2 li:nth-child(2) a,
.category_list .sort3 li:nth-child(3) a,
.category_list .sort4 li:nth-child(4) a,
.category_list .sort5 li:nth-child(5) a,
.category_list li.active a,
.category_list a:hover{
	color: #fff;
	background: #033366;
}
.category_list ul li+li a{
	border-top: 1px solid #033366;
}

/*詳細*/

#bukken_single{
	padding:0 10px 50px;
}
#bukken_single .title{
	display:block;
	padding:5px 5px 0;
	border-bottom:1px solid #666;
	margin:0 0 5px;
	font-size:18px;
	font-weight:bold;
	overflow:hidden;
}
#bukken_single .title span.tit{
	display:inline-block;
	line-height:22px;
	float:left;
	margin-right:10px;
	padding-top:3px;
	margin-bottom:5px;
}
#bukken_single .title span.cg_wrap{
	margin-bottom:5px;
	display:inline-block;
	float:left;
}
#bukken_single .title span.cg_class{
	border:1px solid #666;
	display:inline-block;
	padding:0 10px;
	font-size:12px;
	line-height:22px;
	float:left;
	margin-right:10px;
}
#bukken_single .title span.cg_status{
	border:1px solid #666;
	display:inline-block;
	padding:0 10px;
	font-size:12px;
	float:left;
	line-height:22px;
}
#bukken_single .day{
	text-align:right;
	margin:0 0 10px;
}
#bukken_single .box1{
	overflow:hidden;
}
#bukken_single .box1 .boxl{
	width:49%;
	float:left;
}
#bukken_single .box1 .boxr{
	width:49%;
	float:right;
}
#bukken_single .box1 .madori{
	border:2px solid #ccc;
	text-align:center;
	padding:10px;
}
#bukken_single .catch{
	font-weight:bold;
	font-size:18px;
	margin:0 0 10px;
}
#bukken_single .comment p{
	margin:0 0 10px;
}
#bukken_single .box1 .boxr table{
	width:100%;
	border:2px solid #333;
	margin-bottom:15px;
}
#bukken_single .box1 .boxr table th{
	padding:5px;
	background:#eee;
	border:1px solid #999;
	width:120px;
	vertical-align:top;
}
#bukken_single .box1 .boxr table td{
	padding:5px;
	border:1px solid #999;
}
#bukken_single .box1 .boxr table td.setsubi{
	padding-bottom:0px;
}
#bukken_single .box1 .boxr table td.setsubi ul{
	overflow:hidden;
}
#bukken_single .box1 .boxr table td.setsubi li{
	float:left;
	margin:0 10px 7px 0;
	display:inline-block;
	padding:2px 5px;
	border:1px solid #666;
}
#bukken_single .box360{
	padding:50px 0 30px;
	text-align:center;
}
#bukken_single .box2{
	padding:50px 0;
}
#bukken_single .box360 .title{
	text-align:center;
	font-size:18px;
	margin:0 0 15px;
	border-bottom:1px solid;
}
#bukken_single .box360 ul{
	overflow:hidden;
}
#bukken_single .box360 ul li:nth-child(odd){
	float:left;
	clear:both;
}
#bukken_single .box360 ul li:nth-child(even){
	float:right;
}
#bukken_single .box360 ul li{
	max-width:49%;
	margin-bottom:15px;
}
#bukken_single .box360 ul li iframe{
	width:100%;
}


#bukken_single .box2 ul{
	overflow:hidden;
}
#bukken_single .box2 ul li{
	float:left;
	padding:5px;
	width:16.5%;
	box-sizing:border-box;
	text-align:center;
	font-size:12px;
}
#bukken_single .box2 ul li a{
	display:block;
	padding:5px;
}
#bukken_single .box2 ul li a:hover{
	text-decoration:none;
}
#bukken_single .box2 ul li:nth-child(6n+1){
	clear:both;
}
#bukken_single .box2 .hosoku{
	text-align:center;
}
#bukken_single .googlemap iframe{
	width:100%;
	height:400px;
	margin:0 0 10px;
}
#bukken_single .maplink{
	text-align:right;
}
#bukken_single .maplink a{
	border:1px solid #333;
	display:inline-block;
	font-size:16px;
	padding:4px 10px;
}
#bukken_single .maplink a:hover{
	background:#333;
	color:#fff;
	text-decoration:none;
}
.single_link{
	padding:30px 0 60px;
	text-align:center;
}
.single_link a{
	display:inline-block;
	width:200px;
	background:#033366;
	color:#fff;
	font-size:16px;
	padding:10px 0;
	border:2px solid #033366;
	margin:0 10px 20px;
}
.single_link a:hover{
	background:#fff;
	color:#033366;
	text-decoration:none;
}


/*---------------------------------------------------

online

----------------------------------------------------*/

.online_box{
	text-align: center;
	margin-bottom: 100px;
}

.online_box p{
	font-size: 13px;
}

.online_box .caption{
	max-width: 345px;
	background: #000;
	box-sizing: border-box;
	padding: 8px 0;
	margin: 0 auto 30px;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.online_box .flow_container{
	margin-top: 80px;
}

.online_box .online_flow{
	width: fit-content;
	margin: 0 auto 5px;
	position: relative;
}

.online_box .online_flow p{
	padding: 2px 25px;
	border: #000 solid 2px;
	border-radius: 16px;
	font-weight: 600;
}

.online_box .online_triangle{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10.5px 0 10.5px;
	border-color: #000000 transparent transparent transparent;
	margin: 0 auto 5px;
}

.online_box .online_dot{
	position: absolute;
	right: -42px;
    top: 50%;
	display: flex;
}

.online_box .online_dot span{
	width: 2px;
	height: 2px;
	border-radius: 100px;
	background: #000;
	margin-right: 5px;
}

.online_box .online_dot span:last-child{
	margin-right: 0;
}

.online_box .linezoom{
	position: absolute;
	right: -400px;
    top: 3px;
}

.online_box .linezoom p{
	font-size: 12px;
	border: none;
	text-align: left;
}

.online_box .linezoom span{
	font-size: 14px;
	font-weight: bold;
	margin-right: 8px;
}

.online_box .linezoom .small{
	font-size: 10px;
}

#precautions{
	background: #f0efef;
	margin-bottom: 100px;
}

.precautions_inner{
	padding: 70px 20px 100px;
	text-align: center;
}

.precautions_inner h2{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 30px;
}

.precautions_inner ul{
	width: fit-content;
	margin: 0 auto;
}

.precautions_inner ul li{
	font-size: 12px;
	text-align: left;
	list-style: disc;
}

@media print{
	#bread_area, #sub_main_area, #side_fixed, #header_area, #absh1, .single_link, #footer_area{
		display:none !important;
	}
}

@media only screen and (max-width:1120px){
	.bukken_list li{
		margin-left:35px;
	}
}

@media only screen and (max-width:650px){

/*---------------------------------------------------

common

----------------------------------------------------*/
.sp{ display: block; }
.sp_br{display:block;}
.pc{ display: none; }
.pc_br{display:inline;}
.sp_br{display:block;}

#border_display{
	width: auto;
	min-width: inherit;
	height: auto;
	padding-top:80px;
}

body{
	min-width:320px;
}

.width_box1{
	padding:0 15px;
}

#main_wrap {
	padding-top:0;
}

#main_content{
	padding-top:40px;
}

/*side_fixed*/


.side_fixed img{
	height:auto;
	width:40px;
}

.side_fixed li+li{
	margin-top:20px;
}

/*pankuzu*/

.bread .width_box1{
	padding: 5px 15px;
}

/* #bread_area{
	display:none;
} */

.pagetitle_container .width_box1{
	padding: 30px 15px 0;
}

.h1_title{
	font-size: 42px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.1em;
}

.h1_title span{
	display: block;
	margin-top: 10px;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
}

.h1_title.left{
	text-align: left;
}

.h2_title{
	font-size: 20px;
	margin-bottom: 30px;
}

/*---------------------------------------------------

header

----------------------------------------------------*/

#absh1{
	display:none;
}

#header_area{
	min-width:320px;
	position:fixed;
	padding:0;
	top:0;
	left:0;
	width:100%;
	background:#fff;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
	height: 80px;
}

#logo{
	padding-bottom:0;
	margin: 0 auto;
	position: absolute;
	left: 30px;
	bottom: -27px;
	width: 100px;
}

#header_in{
	padding:18px 0;
	position:relative;
	min-width:320px;
}
#header_in.fixed{
	padding-bottom:18px;
}
#absh1 .sns_list1 li,
#absh1 .sns_list1{
	display:inline-block;
}

#absh1 .sns_list1 li{
	display:inline-block;
	margin:0 3px;
}

/*navi*/
#sp_navi{
	display:block;

}

#pc_navi{
	display:none;
}

.panel-btn .menu_txt {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 8px;
    transition: 0.4s;
    color: #040000;
	font-weight: bold;
}
.panel-btn {
	position:absolute;
	top:10px;
	right:15px;
	z-index:99999;
	width:50px;
    display: block;
    padding: 13px 10px 15px;
    text-align: center;
    cursor: pointer;
}
.menu_trigger,
.menu_trigger span {
    display: inline-block;
    transition: 0.4s;
    box-sizing: border-box;
}
.menu_trigger {
    position: relative;
    width: 40px;
    height: 22px;
}
.menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #040000;
    border-radius: 4px;
}
.menu_trigger span:nth-of-type(1) {
    top: 0;
}
.menu_trigger span:nth-of-type(2) {
    top: 44%;
}
.menu_trigger span:nth-of-type(3) {
    bottom: 0;
}
.panel-btn.open .menu_trigger span:nth-of-type(1) {
transform: translateY(6px) rotate(-45deg);
}
.panel-btn.open .menu_trigger span:nth-of-type(2) {
opacity: 0;
}
.panel-btn.open .menu_trigger span:nth-of-type(3) {
transform: translateY(-14px) rotate(45deg);
}
.panel-btn.open .menu_trigger span {
background-color: #040000;
}

/* .panel-btn.open img{
	opacity:0;
}

.panel-btn.open{
	background:url(../img/cmn/ico_menu_c.png) top center no-repeat;
	background-size:50px 50px;
} */

.sp_menu_panel{
	min-width:320px;
	box-sizing:border-box;
	display:none;
	position:fixed;
	width:100%;
	z-index:99999;
	top:105px;
	padding:0 15px;
	right: 0;
}

/*
.navi_wrap.wrap_on{
	display:block;
}
*/

.sp_menu_panel li{
	width:100%;
	float:left;
	text-align:center;
	margin-bottom:22px;
}

.sp_menu_panel li a{
	display:block;
	line-height:1.2;
}

.sp_menu_panel li:nth-child(4n){
	float:right;
	margin-left:0;

}

.sp_menu_panel li:nth-child(4n+1){
	clear:both;
	margin-left:0;
}

.sp_menu_panel li a{
	display:block;
	padding: 10px;
}

.sp_menu_panel li a:hover{
	text-decoration:none;
}

.sp_menu_panel .sns_list1 li{width:30px;}

.sp_menu_panel .sns_list1 li,
.sp_menu_panel .sns_list1{
	display:inline-block;
}

.sp_menu_panel .sns_list1 li{
	display:inline-block;
	margin:0 10px;
}

.sp_menu_panel .sns_list1 li a{
	padding: 0;
}

/* .sp_menu_panel .bg1 a{background-image:url(../img/cmn/nav_top.png);}
.sp_menu_panel .bg2 a{background-image:url(../img/cmn/nav_rent.png);}
.sp_menu_panel .bg3 a{background-image:url(../img/cmn/nav_buy.png);}
.sp_menu_panel .bg4 a{background-image:url(../img/cmn/nav_company.png);}
.sp_menu_panel .bg5 a{background-image:url(../img/cmn/nav_staff.png);}
.sp_menu_panel .bg6 a{background-image:url(../img/cmn/nav_consal.png);}
.sp_menu_panel .bg7 a{background-image:url(../img/cmn/nav_contact.png);}
.sp_menu_panel .bg8 a{background-image:url(../img/cmn/nav_link.png);} */

/*---------------------------------------------------

footer

----------------------------------------------------*/

#footer_area{
	background-size:auto 60px;
	padding-top:40px;
}

#footer_in{
	margin:0 auto;
	padding:0 15px 15px;
	overflow:hidden;
}

.fnavi{
	display:none;
}

.fnavi li{
	float:left;
	font-weight:bold;
	margin-right:50px;
}

.pagetop{
	float:right;
}

#copyright{
	font-size:12px;
	padding:4px 0 4px;
}

/*---------------------------------------------------

index

----------------------------------------------------*/

.select_sp_flex{
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	padding-right: 2px;
}

.select_sp_flex.sub_content{
	margin-bottom: 20px;
}

.select_sp_flex.sub_content .line_zoom{
	top: 0;
}

.select_sp_flex .text{
	padding-top: 10px;
}

.line_zoom{
	text-align: right;
	margin-bottom: 0;
	position: relative;
	top: -15px;
}

.line_zoom a{
	text-align: center;
	padding: 5px 10px;
	display: inline-block;
}

.main_select_area{
	flex-direction: column;
	padding: 0;
}

.topSearchArea {
    width: 100%;
    border-radius: 4px;
    background-color: #fff;
}

.topSearchForm {
    display: flex;
    font-size: 14px;
	margin-bottom: 30px;
	width: 100%;
	position: relative;
}

.topSearchRent {
    display: inline-table;
    position: relative;
	width: 42%;
}

.topSearchRent__limit {
    display: table-cell;
    position: relative;
}

.topSearchMenu {
    position: relative;
    font-size: 10px;
    cursor: pointer;
	height: 44px;
	box-sizing: border-box;
}

.topSearchRent__limit .topSearchMenu {
    width: 153px;
    padding: 12px 0 12px 12px;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.topSearchMenu__text {
    margin-bottom: 0;
    overflow: hidden;
    color: #b5b5b5;
    font-size: 15px;
    font-size: 0.9375rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rent_budget .stage .topSearchMenu{
	height: auto;
	width: 100%;
	padding: 0;
}

.rent_budget .stage .topSearchMenu .topSearchMenu__text{
	width: auto;
	padding: 10px;
	background: none;
}

.rent_budget .budget_select{
	width: 100%;
	font-size: 16px;
}

.topSearchRent__limit .topSearchMenu__text {
    padding-left: 26px;
}

.topSearchRent__limit .panel {
    top: 78px;
}

.rent_commit .panel{
	right: 0;
}

.rent_type .panel .stage::before,
.rent_type  .panel .stage::after,
.buy_type .panel .stage::before,
.buy_type  .panel .stage::after{
	left: 15%;
}

.rent_budget .panel .stage::before,
.rent_budget .panel .stage::after,
.buy_budget .panel .stage::before,
.buy_budget  .panel .stage::after{
	left: 30%;
}

.rent_floor .panel .stage::before,
.rent_floor .panel .stage::after,
.buy_update .panel .stage::before,
.buy_update  .panel .stage::after{
	left: 70%;
}

.rent_commit .panel._2clms .stage::before,
.rent_commit .panel._2clms .stage::after{
	left: 85%;
}

.topSearchForm .panel {
	background-color: transparent;
	width: 90vw;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.topSearchForm .panel.active {
    display: block;
}

.topSearchRent__limit .item-list {
    width: 152px;
    max-height: 450px;
    overflow-x: hidden;
}

.topSearchForm .item-list {
    margin: -22px 0 0 0;
    padding: 0 0 3px;
    border: 1px solid #ececec;
    border-bottom: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
    background-color: #fff;
}

.topSearchForm .item-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topSearchForm .item-list li span {
    display: block;
    padding: 8px 10px;
    cursor: pointer;
}

.topSearchRentText {
    display: inline-table;
    padding: 5px;
    color: #b5b5b5;
}

.topSearchPersons {
    display: inline-table;
    position: unset;
    width: 25%;
	border-top: none;
	border-bottom: #040000 solid 1px;
	border-right: #040000 solid 1px;
}

.topSearchPersons__layout {
    display: table-cell;
	position: inherit;
    /* position: relative; */
	text-align: center;
}

.topSearchPersons__layout .topSearchMenu {
    position: relative;
    min-height: 12px;
    border: none;
    cursor: pointer;
	height: auto;
}

.topSearchPersons.sp {
    display: inline-table;
}

.topSearchPersons:last-child {
	border-right: none;
}

.buy_list .item-select2 li {
    padding: 10px;
    border-bottom: none;
	width: fit-content;
	box-sizing: border-box;
	float: left;
}

.buy_list .item-select2 li{
	width: 100%!important;
	float: none!important;
}

.buy_list .item-select2 li:last-child{
	border-bottom: none!important;
}

.buy_list .item-select2 li a{
	display: block;
}

.topSearchPersons__layout .topSearchMenu__text {
    padding: 20px 2px;
	background: url(../img/top/ico_all.png) no-repeat 97% center;
	background-size: 12px;
    background-position: right 50% bottom 15%;
	min-height: 84.78px;
}

.topSearchMenu__text {
    margin-bottom: 0;
    overflow: hidden;
    color: #040000;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: inherit;
}

.topSearchPersons__panel {
	top: 100px;
	width: 81%;
	z-index: 10000;
}

.topSearchForm .stage {
    margin: -22px 0 0 0;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
    background-color: #fff;
}

.topSearchPersons__panel .stage:before {
    position: absolute;
    top: -41px;
    left: 70px;
    z-index: 2;
    border: 9px solid transparent;
    border-bottom: 11px solid #fff;
    content: "";
}

.topSearchPersons__panel .stage:after {
    position: absolute;
    top: -44px;
    left: 69px;
    z-index: 1;
    border: 10px solid transparent;
    border-bottom: 13px solid #ececec;
    content: "";
}

.item-select2 {
    padding: 0;
    margin: 0;
}

.topSearchPersons__panel .item-select2 li {
    padding: 10px !important;
    border-bottom: none;
	width: fit-content;
	box-sizing: border-box;
	float: left;
}

.topSearchPersons__panel._2clms .item-select2 li {
    display: inline-block;
    width: auto;
}

.item-select2 li {
    list-style: none;
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
    margin: 0;
}

.item-select2 li input[type=radio], .item-select2 li input[type=checkbox] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: url(../img/top/parts-checkbox-rect-normal.png) no-repeat 0;
    background-size: 20px auto;
    margin: 6px 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: none;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-focus-ring-color: rgba(255,255,255,0);
    outline: none;
}

.item-select2 input[type=radio], .item-select2 input[type=checkbox] {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    z-index: 1100;
}

.item-select2 li input[type=checkbox]:checked {
    background-image: url(../img/top/parts-checkbox-rect-checked.png);
    background-size: 20px auto;
}

.item-select2 input[type=radio]+label, .item-select2 input[type=checkbox]+label, .item-select2 .search-link {
    position: relative;
    display: block;
    margin-bottom: 0;
    margin-top: 12px;
    line-height: 1;
}

.item-select2 input[type=radio]+label, .item-select2 input[type=checkbox]+label {
    padding-left: 25px;
    text-align: left;
}
.topSearchPersons__panel .item-select2 li label {
    font-weight: normal;
    font-size: 13px;
    font-size: 0.8125rem;
}
.item-select2 li label {
    color: #6B6B6B;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: bold;
    line-height: 0.8 !important;
}

.topSearchPersons__botton {
    width: 100%;
    padding: 10px;
	box-sizing: border-box;
}

.topSearchPersons__botton--decision {
    width: 100%;
    height: 40px;
    background-color: #f4f4f4;
    border-radius: 4px;
	display: inline-block;
	border: none;
	font-size: 0.9375rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.topSearchForm__button {
    font-size: 16px;
    padding: 5px 0;
    width: 184px;
    margin: 0 auto;
}

.topSearchForm__button button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	font-size: 16px;
}

.main_select_area .select_form_box{
	width: 100%;
	margin-left: 0;
}

.main_select_area .form_dl{
	display:table;
	width:100%;
}

.main_select_area .form_dl dt,
.main_select_area .form_dl dd{
	display:table-cell;
	box-sizing:border-box;
	vertical-align:top;
}

.main_select_area .form_dl dt{
	width:155px;
	font-size:16px;
	padding:30px 0 0;
}

.main_select_area .form_dl dd{
	padding:25px 0;
	font-size:16px;
}

.main_select_area .form_dl dd input[type="text"],
.main_select_area .form_dl dd input[type="email"],
.main_select_area .form_dl dd input[type="tel"],
.main_select_area .form_dl dd textarea{
	box-sizing:border-box;
	width:100%;
	border:1px solid #dddddd;
	padding:5px;
	font-family:inherit;
	font-size:inherit;
	resize:vertical;
}

.main_select_area .form_dl dd textarea{
	height:220px;
}

.main_select_area input[type="button"],input[type="submit"] {
	border-radius: 0;
	-webkit-appearance: none;
}

.main_select_area .select_btn,
.main_select_area .submit_btn{
	text-align:center;
}

.main_select_area .submit_btn button{
	font-size:16px;
	color:#040000;
	background:#dcdddd;
	border:#040000 solid 1px;
	border-radius: 15px;
	cursor: pointer;
	padding:5px 0;
	width:184px;
	margin:0;
}

.main_select_area .select_btn_flex{
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.main_select_area .select_btn{
	width: fit-content;
}

.main_select_area .select_btn button{
	font-size:14px;
	padding:5px 0;
	width:80px;
	margin:0 15px;
}

.main_select_area .select_btn.active button{
	background:#dcdddd;
}

.main_select_area .category_list{
	display: flex;
	justify-content: space-between;
}
.main_select_area .category_list:after{
	content:" ";
	clear:both;
	visibility:hidden;
	display:block;
	line-height:0;
	font-size:0;
}
.main_select_area .category_list > li{
	position: relative;
	float:none;
	width: 100%;
	margin: 0;
	border-right: #040000 solid 1px;
	border-bottom: #040000 solid 1px;
}
.main_select_area .category_list > li:nth-child(1){
	clear: both;
	margin-left: 0;
}

.main_select_area .category_list > li:nth-child(4){
	margin-left:0;
	float:none;
}

.main_select_area .category_list > li:last-child{
	border-right: none;
}

/*並び替え*/
.main_select_area .category_list .list{
	line-height: 1.2;
	color: #040000;
	font-weight:bold;
	text-align: center;
}
.main_select_area .category_list .list a:hover{
	text-decoration:none;
}

.main_select_area .category_list .select{
	position: relative;
	min-height: 12px;
	padding: 20px 10px;
	border: none;
	border-top: none;
	background: url(../img/top/ico_all.png) no-repeat 97% center;
	background-size:12px;
	background-position: right 50% bottom 15%;
}

.main_select_area .category_list li .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(1) .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(2) .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(3) .select:after{
	display: none;
}

.main_select_area .category_list li:nth-child(4) .select:after{
	display: none;
}

.main_select_area .category_list ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid #033366;
	border-top: 0;
	background: #fff;
	box-sizing: border-box;
	z-index: 100;
}
.main_select_area .category_list a{
	display: block;
	padding: 12px 10px 10px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-webkit-transition-property: opacity,color,border-color;
	transition-property: opacity,color,border-color;
}
.main_select_area .category_list .sort1 li:nth-child(1) a,
.main_select_area .category_list .sort2 li:nth-child(2) a,
.main_select_area .category_list .sort3 li:nth-child(3) a,
.main_select_area .category_list .sort4 li:nth-child(4) a,
.main_select_area .category_list .sort5 li:nth-child(5) a,
.main_select_area .category_list li.active a,
.main_select_area .category_list a:hover{
	color: #fff;
	background: #033366;
}
.main_select_area .category_list ul li+li a{
	border-top: 1px solid #033366;
}

#main_slide_area{
	margin-bottom:0;
}

#main_slide_area .pc_slide{
	display:none;
}

#main_slide_area .sp_slide{
	display:block;
	text-align:center;
}
#top_cach .text1{
	font-size:14px;
	text-align:left;
}

.bukken_title{
	font-size: 20px;
	font-weight: bold;
	max-width: 220px;
	text-align: center;
	padding-bottom: 10px;
	margin: 0 auto 20px;
	border-bottom: #040000 solid 1px;
}

.bukken_list li{
	width:48%;
	margin-left:0;
	margin-bottom:10px;
}
.bukken_list li a{
	-webkit-transition:none;
	transition:none;
	padding: 0;
}

.bukken_list li:nth-child(4n){
	float:left;
}

.bukken_list li:nth-child(4n+1){
	clear:none;
}

.bukken_list li:nth-child(5n+5){
	float:left;
	margin-left:0;
}

.bukken_list li:nth-child(5n+1){
	clear:inherit;
	margin-left:0;
}

.bukken_list li:nth-child(odd){
	clear:both;
}

.bukken_list li:nth-child(even){
	float:right;
}

.bukken_list .image img{
	width:100%;
}

.bukken_list li a:hover{
	background:#fff;
}

#top_info_area{
	margin-bottom:30px;
}

.top_info,
.top_news{
	float:none;
	width:auto;
}

.top_info .info_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom:20px;
	width: 234px;
	padding: 10px 0 5px 10px;
	box-sizing: border-box;
	border-bottom: #040000 solid 1px;
}

.top_info .info_flex .company_title{
	width: auto;
	padding: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.top_info .info_flex .sns_list1{
	display: flex;
	align-items: center;
}

.top_info .info_flex .sns_list1 li{width:25px;}

.top_info .info_flex .sns_list1 li,
.top_info .info_flex .sns_list1{
	display:inline-block;
}

.top_info .info_flex .sns_list1 li{
	display:inline-block;
	margin:0;
}

.top_news{
	margin-bottom:30px;
}

.bg_head1{
	font-size:20px;
	margin-bottom:20px;
}

.top_info .info_dl{
	display:table;
	line-height:1.8;
	margin-bottom:7px;
}

.top_info .info_dl dt,
.top_info .info_dl dd{
	display:table-cell;
}

.top_news .news_list{
	height: auto;
	overflow:visible;
}

.top_news .news_list li:nth-child(n + 3){
	display: none;
}

/*single markup style*/

.post_single img.alignright,
.post_single img,
.post_single img.alignleft{
	float:none;
	margin:0 auto;
	display:block;
}
.post_single img.emoji {
    display: inline !important;
}

/*---------------------------------------------------

link

----------------------------------------------------*/


#link_list_area{
	overflow:hidden;
}
.link_list{
	padding: 0;
}
.link_list li{
	float:none;
	width:auto;
}
.link_list li:nth-child(even){
	float:none;
}
.link_list li:nth-child(odd){
	float:none;
}

/*---------------------------------------------------

staff

----------------------------------------------------*/

.gray_bg{
	padding: 40px 15px;
	margin-bottom: 0;
}

#greeting_area{
	margin-bottom:30px;
	margin-top:0;
}

#greeting_area .h2_title{
	margin-bottom:30px;
}

#greeting_area .greeting_box{
	padding: 15px;
	width: 100%;
}

#greeting_area .flex{
	flex-direction: column-reverse;
	margin-bottom: 10px;
}

#greeting_area .image{
	width: 50%;
}

#greeting_area .greeting_text_box{
	margin-top: 20px;
}

.link_flex.u-pc{
	display: none !important;
}

.link_flex.u-sp{
	display: flex !important;
}

.link_flex{
	margin: 20px auto;
	justify-content: center;
}

.link_flex .blog{
	width: 80px;
}

.link_flex .facebook{
	width: 90px;
}

.representative{
	display: block;
}

.representative_name{
	margin: 15px 0;
}

.representative_name .bg_name{
	margin-bottom: 5px;
}

.representative_name .text_name{
	color:#040000;
	font-weight:bold;
	font-size:22px;
	line-height:1.3;
}

.representative_name .text_name .eng_text{
	font-size:12px;
	display:block;
	margin-top:2px;
}

.representative .list{
	padding: 15px;
	border: #040000 solid 1px;
}

.greeting_text_box{
	margin: 0 auto;
}

.greeting_text1{
	line-height:1.2;
	font-size:25px;
}

#greeting_area .image_list{
	margin-bottom:20px;
}
#greeting_area .image_list li{
	display:inline-block;
	margin-right:5px;
	width:36px;
}

#greeting_area .list li{
	text-indent:-1em;
	padding-left:1em;
	line-height:1.2;
}

#greeting_area .list li+li{
	margin-top:2px;
}

.staff_list{
	margin-left:0;
	padding: 0;
}

.staff_list::after{
	content: "";
	display: block;
	clear: both;
}

.staff_list > li{
	float:none;
	width:auto;
	margin-left:0;
	padding:15px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column-reverse;
}

.staff_list > li:nth-child(2n){
	float:none;
}

.staff_list > li:nth-child(2n+1){
	clear:both;
}

.staff_list > li .image{
	max-width:none;
	width: 50%;
	text-align: center;
	margin: 0 auto;
	position: relative;
	right: 0;
	bottom: 0;
}

.staff_list li .prof_body{
	padding: 15px 0 0;
    position: relative;
    text-align: center;
}

.staff_list li .prof_body .name_text{
	font-size:22px;
	line-height:1.3;
	margin-left:0;
	margin-bottom:10px;
}

.staff_list li .prof_body .name_text .eng_text{
	display:block;
	font-size:16px;
}

.staff_list li .list{
	padding: 15px;
	border: #040000 solid 1px;
	text-align: left;
}

.staff_list li .list li{
	text-indent:-1em;
	padding-left:1em;
	line-height:1.2;
}

#staff_prof{
	padding: 0;
}

/*---------------------------------------------------

company

----------------------------------------------------*/

#company_comme{
	margin-bottom:50px;
}

#company_comme .flex{
	flex-direction: column-reverse;
	margin-top: 0;
	margin-bottom: 0;
}

#company_comme .image{
	width: 180px;
	margin-bottom: 30px;
}

#company_comme .text{
	width: 100%;
}

#company_comme .company_text{
	padding:0 0;
	margin-top: 10px;
}

#company_comme .company_text+.company_text{
	margin-top:10px;
}

.company_list1{
	width:auto;
}

.company_list1 li{
	display:block;
}

.company_list1 li .ttl1,
.company_list1 li .text1{
	display:block;
}

.company_list1 li .text1{
	padding-left:0;
}

.company_list1 li .ttl1{
	width:auto;
	padding-right:0;
}
.company_list1.list1{
	float:none;
	margin-bottom:0;
}
.company_list1.list1 li:last-child{
	border:none;
}

.company_list1.list2{
	float:none;
	margin-bottom: 0;
}


#company_about{
	margin-bottom:50px;
	width: 100%;
	box-sizing: border-box;
	padding: 50px 15px;
}

.step_tb1{
	width:100%;
}

.step_tb1.tb1{
	float:none;
	border:none;
}

.step_tb1.tb2{
	float:none;
	border:none;
}

.step_tb1 .year_td{
	display:inline-block;
	width:auto;
	color:#040000;
	margin-right:10px;
	float:left;
	background:none;
	border:none;
	font-size:16px;
}
.step_tb1 .month_td{
	display:inline-block;
	width:auto;
	background:none;
	border:none;
	color:#040000;
	float:left;
	font-size:16px;
}
.step_tb1 .text_td{
	clear:both;
	display:block;
	border-left:none;
	border-right:none;
	border-bottom:1px solid #040000;
	padding:0 0 15px;
}

/*---------------------------------------------------

contact

----------------------------------------------------*/

.qa_text1{
	text-align:center;
	font-weight:bold;
	font-size:16px;
	line-height:1.875;
	margin-bottom:30px;
}

.qa_box{
	width:auto;
	padding:20px 10px;
}
.qa_box.qa2,
.qa_box.qa1{
	float:none;
}

.qa_text2{
	text-align:left;
}

.qa_arrow{
	text-align:center;
	margin-bottom:10px;
}

.qa_tel{
	font-size:28px;
}

.qa_tel a{
	color:#033366;
}

.qa_tel .bg1{
	background-size:auto 20px;
	padding-left:35px;

}

.qa_tel .bg1{
	background:url(../img/contact/tel.png) left 4px no-repeat;
	background-size:auto 20px;
	padding-left:35px;
}


#contact_qa{
	margin-bottom:60px;
}

.mail_box .u_sp{
	display: block;
}

.form_box{
	border:2px solid #dddddd;
	padding:10px 10px 15px;
}

.form_center.form_dl {
	margin: 0;
	width: fit-content;
}

.form_center.form_dl dd{
	padding-top: 0;
    padding-bottom: 20px;
}

.form_center.form_dl dt{
	width: auto;
	padding-right: 0;
	padding-top: 0;
    padding-bottom: 0;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
}

.p-contact01__form-inputradio input + span {
	padding-left: 20px;
	margin-right: 20px;
	display: inline-block;
}

.p-contact01__form-inputradio input + span:before {
	top: 4px;
	left: 0;
	width: 15px;
	height: 15px;
}

.p-contact01__form-inputradio input:checked + span:after {
    width: 14px;
    height: 8px;
    left: 0px;
    top: 5px;
}

.form_dl{
	display:block;
	width: 100%;
}

.form_dl dt,
.form_dl dd{
	display:block;
}

.form_dl dt{
	width:auto;
	padding:10px 0 0;
}

.form_dl dd{
	padding:5px 0 10px;
}

.form_dl dd input[type="text"],
.form_dl dd input[type="email"],
.form_dl dd input[type="tel"],
.form_dl dd textarea{
	font-size:23px;
}


.submit_btn input{
	margin:5px 0;
	padding:15px 0;
}

#form_area{
	margin-bottom:30px;
}

/*---------------------------------------------------

bukken

----------------------------------------------------*/

#buuken_area{
	margin-bottom:30px;
	margin-left: 0;
	box-sizing: border-box;
	padding: 40px 15px 0;
}

#buuken_area .bukken_grid_list{
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.category_list{
	margin-bottom: 40px;
}

.category_list > li{
	float: none;
	width: auto;
	margin:0 0 10px;
}

.category_list > li:nth-child(4){
	float:none;
}

/*並び替え*/

.category_list ul{
	position: relative;
}

/*詳細*/

#bukken_single{
	padding:0 15px 50px;
}
#bukken_single .box1 .boxr,
#bukken_single .box1 .boxl{
	width:auto;
	float:none;
}

#bukken_single .box1 .boxl{
	text-align:center;
	margin-bottom:20px;
}

#bukken_single .box360 ul li:nth-child(odd){
	float:none;
	clear:both;
}
#bukken_single .box360 ul li:nth-child(even){
	float:none;
	clear:both;
}
#bukken_single .box360 ul li{
	max-width:100%;
	margin-bottom:15px;
}
#bukken_single .box360 ul li iframe{
	width:100%;
}

/*
#bukken_single .box1 .boxr table th{
	width:auto;
}

#bukken_single .box1 .boxr table th,
#bukken_single .box1 .boxr table td{
	display:block;
	padding:10px;
}
*/


#bukken_single .box2 ul{
	overflow:hidden;
}
#bukken_single .box2 ul li{
	float:left;
	width:25%;
}
#bukken_single .box2 ul li a{
	padding:0;
}
#bukken_single .box2 ul li:nth-child(6n+1){
	clear:none;
}

#bukken_single .box2 ul li:nth-child(4n+1){
	clear:both;
}

#bukken_single .box2 .hosoku{
	text-align:center;
}
#bukken_single .googlemap iframe{
	width:100%;
	height:400px;
	margin:0 0 10px;
}
#bukken_single .maplink{
	text-align:right;
}
#bukken_single .maplink a{
	border:1px solid #333;
	display:inline-block;
	font-size:16px;
	padding:4px 10px;
}
#bukken_single .maplink a:hover{
	background:#333;
	color:#fff;
	text-decoration:none;
}
.single_link a.sp_none{ display: none; }
.single_link{
	padding:50px 0;
	text-align:center;
}


/*---------------------------------------------------

consulting

----------------------------------------------------*/

.post_text img.alignright,
.post_text img,
.post_text img.alignleft{
	float:none;
	margin:0 auto;
	display:block;
}
.post_text img.emoji {
    display: inline !important;
}
.post_text table {
	width:100% !important;
}


/*---------------------------------------------------

online

----------------------------------------------------*/

.online_box{
	margin-bottom: 60px;
}

.online_box .flow_container{
	margin-top: 50px;
}

.online_box .online_dot{
	position: relative;
	right: 0;
    top: 0;
	flex-direction: column;
	width: fit-content;
	margin: 10px auto 0;
}

.online_box .online_dot span{
	margin-right: 0;
	margin-bottom: 5px;
}

.online_box .linezoom{
	position: relative;
	right: 0;
    top: 0;
}

.online_box .linezoom p{
	padding: 0;
}

#precautions{
	background: #f0efef;
	margin-bottom: 100px;
}

.precautions_inner{
	padding: 40px 20px 50px;
}

.precautions_inner h2{
	margin-bottom: 20px;
}

.precautions_inner ul li{
	margin-left: 20px;
}

.select_form_box {
	margin-bottom: 26px;
}

.select_form_box .select_btn {
	margin: 0 6px;
	font-size: 18px;
	width: 46%;
	padding: 8px 0;
}

.select_form_box .category_box .title {
	margin-bottom: 0;
}

.select_form_box .category_box li {
	padding: 10px 0;
}

.select_form_box .category_box .toggle_panel {
	pointer-events: auto;
}

.select_form_box .category_box .toggle_icon {
	display: block;
}

.select_form_box .category_box .toggle_box {
	display: none;
	padding-top: 10px;
}

.select_form_box .category_box .selectbox_container {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.select_form_box .category_box .selectbox_container .select_wrap {
	width: 44%;
	min-width: 140px;
}

.select_form_box .category_box .checkbox_container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 0 10px;
}

.select_form_box .category_box .checkbox-field {
	width: 100%;
}

.select_form_box .category_box .checkbox-field:nth-child(2n) {
	padding-left: 0;
}

.select_form_box .category_box .detail .checkbox_container {
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
	gap: 0 10px;
}

.select_form_box .category_box .detail .checkbox-field {
	width: 100%;
}

.select_form_box .category_box .detail .checkbox-field:nth-child(2n) {
	padding-left: 0;
}

}