@charset "utf-8";

.search-ttl__wrap{
	position: relative;
	margin: 0 30px 0 20px;
}
.search-ttl__wrap img{
    position: absolute;
    width: 265px;
    height: 150px;
    display: block;
    top: 2px;
    right: 0;
	z-index: -1;
}
.search-ttl__wrap .search-txt{
	font-size: 1.2rem;
	margin-top: 10px;
}
.search-ttl__wrap .ttl-icon-search__sub{
	display: block;
	font-size: 1.4rem;
	color: #c1272d;
	font-weight: normal;
}
@media screen and (max-width: 767px){
	.search-ttl__wrap{
		text-align: center;
		margin: 0;
	}
	.search-ttl__wrap .ttl-icon-search{
		padding: 0!important;
		margin-top: 20px;
		display: flex;
		flex-direction: column-reverse;
		color: #c1272d;
	}
	.search-ttl__wrap .ttl-icon-search__sub{
		margin-top: 4px;
	}
}
@media screen and (min-width: 768px){
	.search-ttl__wrap .search-txt{
		font-size: 1.4rem;
		margin-top: 5px;
	}
	.search-ttl__wrap .ttl-icon-search {
		background-image: url(/img/icon/ico_search_ttl.svg);
	}
	.search-ttl__wrap .ttl-icon-search__sub{
		font-size: 1.6rem;
		margin-bottom: 3px;
	}
}

.searchBox__wrap{
	background-color: #f5f5f5;
	padding: 10px;
	margin-top: 20px;
}
.searchBox{
	border-radius: 10px;
	padding: 15px 15px 25px 15px;
	background-color: #fff;
	box-shadow: rgb(0, 0, 0, 0.06) 0px 0px 10px 0;
}
.step-ttl{
	font-size: 1.8rem;
	font-weight: bold;
	border-left: 4px solid #c1272d;
	padding-left: 12px;
	line-height: 1.5;
}
.step-ttl .step-ttl-num{
	color: #c1272d;
	margin-right: 12px;
}
.label-ttl{
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 1.6rem;
}
.label-ttl2{
	font-weight: bold;
	margin-bottom: 7px;
	font-size: 1.8rem;
}
.stepBox1{
	position: relative;
	margin-bottom: 50px;
}
.stepBox1::after{
	position: absolute;
    content: "";
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-top: 15px solid #ffe566;
    bottom: -35px;
    left: 50%;
    transform: translate(-50%, 0);
}
@media screen and (min-width: 768px){
	.searchBox__wrap{
		background-color: #fff;
		margin-top: 0;
		padding: 0;
	}
	.searchBox{
		margin-top: 30px;
		border-radius: 20px;
		padding: 25px 38px 30px;
		border: 2px solid #ebebeb;
		box-shadow: none;
	}
	.searchBox .step-ttl{
		font-size: 2rem;
		border-left: 6px solid #c1272d;
		padding-left: 15px;
	}
	.searchBox .step-ttl .step-ttl-num{
		margin-right: 20px;
	}
	.stepBox1{
		margin-bottom: 60px;
	}
	.stepBox1::after{
		border-right: 35px solid transparent;
		border-left: 35px solid transparent;
		border-top: 20px solid #ffe566;
		bottom: -45px;
	}
}

/*radioButton*/
input[type="radio"]{
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #bfbfbf;
	background-color: #fff;
	border-radius: 50%;
	appearance: none;
	box-shadow: inset 0px 3px 2px 0px rgba(235, 235, 235, 1);
	cursor: pointer;
}
input[type="radio"]:checked{
	border: 1px solid #d92b2b;
}
input[type="radio"]:checked:before{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #d92b2b;
	content: '';
}
label:has(input[type="radio"]:checked){
	background-image: linear-gradient(0deg, rgba(255, 243, 243, 1));
}
button {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.radioButton .label__wrap{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 60px;
}
.radioButton .label__wrap:has(.err-bg){
	background-image: none;
	background-color: #ffd8d8;;
}
.radioButton .label__wrap label{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	border: 1px solid #bfbfbf;
	padding-left: 12px;
	font-weight: bold;
	font-size: 1.6rem;
}
.radioButton .label__wrap span{
	width: calc(100% - 32px);
	margin-left: 8px;
	line-height: 1.4;
}
.radioButton .label__wrap .note-txt{
	font-size: 1.2rem;
	margin-left: 0;
}
.radioButton .col2 {
	display: flex;
	flex-wrap: wrap;
}
.radioButton .col2 .label__wrap {
	width: 100%;
	box-sizing: border-box;
	border-radius: 8px;
}
.radioButton_step1{
	margin-top: 15px;
}
@media screen and (max-width: 767px) {
	.radioButton .label__wrap:nth-of-type(n+2) label{border-top: none;}
	.radioButton .label__wrap:first-of-type label{border-radius: 8px 8px 0 0;}
	.radioButton .label__wrap:last-of-type label{border-radius: 0 0 8px 8px;}
}
@media screen and (min-width: 768px) {
	input[type="radio"]{
		width: 20px;
		height: 20px;
	}
	input[type="radio"]:checked:before{
		width: 12px;
		height: 12px;
	}
	label:has(input[type="radio"]){
		cursor: pointer;
	}
	.radioButton .label__wrap{
		min-height: 70px;
	}
	.radioButton .label__wrap label{
		font-size: 1.8rem;
		padding-left: 17px;
		border-radius: 8px;
	}
	.radioButton .label__wrap span{
		width: calc(100% - 40px);
		margin-left: 10px;
	}
	.radioButton .label__wrap .note-txt{
		font-size: 1.6rem;
	}
	.radioButton .col2 .label__wrap{
		width: calc(50% - 5px);
	}
	.radioButton .col2 .label__wrap:nth-of-type(odd){
		margin-right: 10px;
	}
	.radioButton .col2 .label__wrap:nth-of-type(n+3){
		margin-top: 10px;
	}
	.radioButton_step1{
		margin-top: 20px;
	}
}

/*selectBox*/
select{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.selectBox select{
    background-color: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    padding: 10px 15px;
    height: 46px;
    width: 100%;
	font-size: 1.6rem;
	cursor: pointer;
}
.selectBox select:disabled{
	background-color: #f5f5f5;
	color: #818181;
    cursor: default;
}
.selectBox .selectBox_inner{
	position: relative;
}
.selectBox .selectBox_inner_text{
	font-size: 1.5rem;
	margin-bottom: 2px;
    display: inline-block;
}
.selectBox .selectBox_inner::after{
	content: "";
    position: absolute;
    right: 13px;
    top: 40%;
    width: 10px;
    border-bottom: 1px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #595959;
	background-repeat: no-repeat;
	pointer-events: none;
}
.selectBox:has(select:disabled) .selectBox_inner::after{
	border-top: 8px solid #979797;
}
.selectBox_fire_kingaku{
	margin-top: 15px;
	width: 100%;
	float: left;
	margin-right: 20px;
}
.selectBox_fire_kingaku .sim-w225{
	margin-top: 0;
}
@media screen and (max-width:767px) {
	.selectBox_fire_kingaku .sim-w225{
		width: calc(50% - 7.5px)!important;
	}
	.selectBox_fire_kingaku .sim-w225:last-child{
		margin-right: 0;
	}
}
@media screen and (min-width:768px) {
	.selectBox select{
		height: 46px;
	}
	.selectBox .selectBox_inner_text{
		margin-bottom: 0;
	}
	.selectBox_fire_kingaku{
		width: 470px;
	}
	.selectBox_fire_kingaku .selectBox{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.selectBox_fire_kingaku .selectBox .selectBox_inner{
		width: calc(100% - 2em - 13px);
	}
}

/*checkBox*/
input[type="checkbox"]{
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #bfbfbf;
	background-color: #fff;
	border-radius: 5px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}
input[type="checkbox"]:checked{
	background-color: #d92b2b;
	border: 1px solid #d92b2b;
}
input[type="checkbox"]:checked:before{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%) rotate(45deg);
    width: 9px;
    height: 14px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    content: '';
}
input[type="checkbox"]:checked:disabled {
	opacity: 0.5;
}
label:has(input[type="checkbox"]:checked:disabled){
	cursor: default;
}
label:has(input[type="checkbox"]:checked){
	background-color: #fff3f3;
}
.checkBox label{
	width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #bfbfbf;
    padding-left: 13px;
}
.checkBox label{
	font-size: 1.5rem;
}
.checkBox .label__wrap{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 48px;
}
.checkBox_hosho .label__wrap{
	min-height: 70px;
}
.checkBox .label__wrap:has(.err-bg){
	background-image: none;
	background-color: #ffd8d8;;
}
.checkBox .label__wrap span{
	width: calc(100% - 32px);
	margin-left: 8px;
	line-height: 1.4;
}
.checkBox .label__wrap span.required-text{
	font-size: 1.2rem;
	color: #e62e2e;
	margin-left: 0;
}
.checkBox .label__wrap .img_hosho{
	position: absolute;
	width: 46px;
	height: 46px;
	right: 46px;
}
.checkBox .col2,
.checkBox .col3 {
	display: flex;
	flex-wrap: wrap;
}
.checkBox .col2 .label__wrap,
.checkBox .col3 .label__wrap {
	width: 100%;
	box-sizing: border-box;
}
.checkBox label:not(:last-of-type){
	margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
	.checkBox .col2 .label__wrap:nth-of-type(n+2) label{border-top: none;}
	.checkBox .col2 .label__wrap:first-of-type label{border-radius: 8px 8px 0 0;}
	.checkBox .col2 .label__wrap:last-of-type label{border-radius: 0 0 8px 8px;}
	.checkBox .col2.sp-col2 .label__wrap:nth-of-type(2n) label{border-left: none;}
	.checkBox .col2.sp-col2 .label__wrap:nth-of-type(n+2) label{border-top: none;}
	.checkBox .col2.sp-col2 .label__wrap:first-of-type label{border-top-right-radius: 0;}
	.checkBox .col2.sp-col2 .label__wrap:nth-of-type(2) label{border-top-right-radius: 8px;border-top: 1px solid #bfbfbf}
	.checkBox .col2.sp-col2 .label__wrap:last-of-type:nth-of-type(odd) label{border-bottom-left-radius: 8px;}
	.checkBox .col2.sp-col2 .label__wrap:last-of-type:nth-of-type(even) label{border-bottom-left-radius: 0;}
	.checkBox .col2.sp-col2 .label__wrap:nth-last-of-type(2):nth-of-type(odd) label{border-bottom-left-radius: 8px;}
	.checkBox .col2.sp-col2 .label__wrap:nth-last-of-type(2):nth-of-type(even) label{border-bottom-right-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(n+2) label{border-top: none;}
	.checkBox .col3 .label__wrap:first-of-type label{border-radius: 8px 8px 0 0;}
	.checkBox .col3 .label__wrap:last-of-type label{border-radius: 0 0 8px 8px;}
}
@media screen and (min-width: 768px) {
	input[type="checkbox"]{
		width: 24px;
		height: 24px;
	}
	.checkBox label{
		cursor: pointer;
		font-size: 1.6rem;
		padding-left: 17px;
	}
	.checkBox .label__wrap{
		min-height: 56px;
	}
	.checkBox_hosho .label__wrap{
		min-height: 80px;
	}
	.checkBox .label__wrap span{
		width: calc(100% - 40px);
		margin-left: 10px;
	}
	.checkBox .label__wrap .img_hosho{
		width: 50px;
		height: 50px;
		right: 50px;
	}
	.checkBox .col2 .label__wrap{
		width: calc(100% / 2);
	}
	.checkBox .col2 .label__wrap:nth-of-type(2n) label{border-left: none;}
	.checkBox .col2 .label__wrap:nth-of-type(n+3) label{border-top: none;}
	.checkBox .col2 .label__wrap:first-of-type label{border-top-left-radius: 8px;}
	.checkBox .col2 .label__wrap:nth-of-type(2) label{border-top-right-radius: 8px;}
	.checkBox .col2 .label__wrap:last-of-type label{border-bottom-right-radius: 8px;}
	.checkBox .col2 .label__wrap:last-of-type:nth-of-type(odd) label{border-bottom-left-radius: 8px;}
	.checkBox .col2 .label__wrap:nth-last-of-type(2):nth-of-type(odd) label{border-bottom-left-radius: 8px;}
	.checkBox .col2 .label__wrap:nth-last-of-type(2):nth-of-type(even) label{border-bottom-right-radius: 8px;}

	.checkBox .col3 .label__wrap{
		width: calc(100% / 3);
	}
	.checkBox .col3 .label__wrap:nth-of-type(3n+2) label,
	.checkBox .col3 .label__wrap:nth-of-type(3n) label{border-left: none;}
	.checkBox .col3 .label__wrap:nth-of-type(n+4) label{border-top: none;}
	.checkBox .col3 .label__wrap:first-of-type label{border-top-left-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(3) label{border-top-right-radius: 8px;}
	.checkBox .col3 .label__wrap:last-of-type label{border-bottom-right-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(3n+1):last-of-type label{border-bottom-left-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(3n+1):nth-last-of-type(2) label{border-bottom-left-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(3n+1):nth-last-of-type(3) label{border-bottom-left-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(3n):nth-last-of-type(3) label{border-bottom-right-radius: 8px;}
	.checkBox .col3 .label__wrap:nth-of-type(3n):nth-last-of-type(2) label{border-bottom-right-radius: 8px;}
}

/*幅・カラム設定*/
.sim-w-types,
.sim-w125,
.sim-w200,
.sim-w225{
	width: 100%;
	float: left;
	margin-right: 15px;
	margin-top: 15px;
}
@media screen and (max-width:767px) {
	.sp-col2 > div{
		width: 50%!important;
	}
	.sp-col2 > div:last-child{
		margin-right: 0;
	}
}
@media screen and (min-width:768px) {
	.sim-w125{width: 125px;}
	.sim-w200{width: 200px;}
	.sim-w225{width: 225px;}
	.sim-w125,
	.sim-w200,
	.sim-w225{
		margin-right: 20px;
	}
}
.sim-mr0{
	margin-right: 0;
}

/*絞り込み条件*/
.ac-search-icon{
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	background-color: #595959;
	color: #fff;
	text-align: center;
	padding: 10px 8px;
	margin-top: 20px;
	border-radius: 5px;
	cursor: pointer;
}
.ac-search-icon.is_close{
	box-shadow: 0px 3px 0 0 rgba(230, 230, 230, 1);
}
.ac-search-icon::before{
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    box-shadow: none;
    margin-top: auto;
    transform: translate(0, -50%);
	right: 12px;
}
.ac-search-icon span::before,
.ac-search-icon span::after{
    margin-top: auto;
	background-color: #595959;
	width: 14px;
	right: 17px;
}
.ac-search-icon.is_close span::after{
	-webkit-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
}
.ac-search-icon span::before{
    transform: translate(0, -50%);
}
.ac-search-icon span::after{
    transform: translate(0, -50%);
}
.ac-search-block > *:first-child{
	margin-top: 18px;
}
.ac-search-block .checkBox{
	margin-bottom: 15px;
}
@media screen and (min-width:768px) {
	.ac-search-icon{
		font-size: 1.8rem;
		padding: 8px;
	}
	.ac-search-block .checkBox{
		margin-bottom: 18px;
	}
}

/*box*/
.box-conditions{
	border: 1px dotted #b3b3b3;
    margin-top: 20px;
    padding: 10px;
	font-size: 1.2rem;
}
@media screen and (min-width:768px) {
	.box-conditions{
		font-size: 1.4rem;
		padding: 12px 15px;
	}
}

/*button*/
.btn-clear{
	text-align: center;
}
.btn-clear button{
	color: #1d3994;
	text-decoration: underline;
	font-size: 1.4rem;
}
.searchBox .btn-sim__wrap{
	padding: 0 10px;
}
.searchBox .btn-sim__wrap .btn-sim{
	margin: 15px auto 0;
	font-size: 2.4rem;
}
@media screen and (min-width:768px) {
	.searchBox .btn-sim__wrap{
		padding: 0;
	}
	.searchBox .btn-sim__wrap .btn-sim{
		width: 340px;
		margin: 20px auto 0;
	}
	.btn-clear button:hover{
		text-decoration: none;
	}
}

/*ヘルプアイコン*/
.icon_help{
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 5px;
	cursor: pointer;
}
.icon_help img{
	vertical-align: top;
}
.label-ttl .icon_help img{
	margin-top: 1px;
}
.radioButton .icon_help,
.checkBox .icon_help{
	position: absolute;
	right: 13px;
}
@media screen and (min-width:768px) {
	.radioButton .icon_help,
	.checkBox .icon_help{
		right: 15px;
	}
}

/*footer上部の余白をなくすための記述*/
@media screen and (max-width:767px) {
	#content:has(.searchBox) + #footer {
	margin: 0;
	}
}

/*------------------------------------------------------------
.modal
------------------------------------------------------------*/
.mfp-wrap{
	overflow-y: scroll;
	overscroll-behavior-y: none;
}
.mfp-container{
	top: 0!important;
}
.mfp-content .magnific-block {
    max-height: calc(100vh - 50px);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.mfp-content {
    max-width: 830px !important;
}
.magnific-block{
	border-radius: 10px;
	padding: 15px;
}
.mfp-close-btn-in .mfp-close{
    color: #999 !important;
    background: transparent;
    top: 22px;
    right: 22px;
    width: 30px;
    height: 30px;
    font-size: 40px;
    line-height: 30px;
}
.search-modal-txt-section{
	margin-top: 8px;
}
.search-modal-ttl{
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 3px solid #c1272d;
	padding-bottom: 5px;
    margin-bottom: 15px;
}
.search-modal-ttl span{
	font-size: 1.6rem;
}
.search-modal-ttl2{
	font-size: 1.6rem;
	font-weight: bold;
	background-color: #fff0f0;
	border-radius: 5px;
	padding: 7px 15px;
	margin-bottom: 10px;
}
.search-modal-list{
	margin-top: 8px;
}
.search-modal-list.row-col2{
	gap: 0;
}
.search-modal-list li{
	margin-bottom: 4px;
}
.search-modal-list dt{
	font-weight: bold;
	margin-bottom: 5px;
}
.search-modal-list dd{
	margin-bottom: 4px;
}
.search-modal__hosyo-img{
	width: 100%;
	margin: 0 auto 20px;
	background-color: #f5f5f5;
	border-radius: 10px;
	text-align: center;
	padding: 20px;
}
.search-link-basis{
	margin-top: 10px;
}
.search-link-basis .link-basis{
	text-decoration: underline;
}
@media screen and (min-width:768px) {
	.magnific-block{
		padding: 30px;
	}
	.mfp-close-btn-in .mfp-close{
		top: 26px;
		right: 26px;
		width: 34px;
		height: 34px;
		font-size: 42px;
		line-height: 34px;
	}
	.search-modal-ttl{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.search-modal-ttl span{
		font-size: 1.8rem;
	}
	.search-modal-ttl2{
		font-size: 1.8rem;
	}
	.search-modal-list.row-col2{
		grid-template-columns: repeat(2, 1fr);
		gap: 0 20px;
	}
	.search-modal__hosyo-img{
		width: 600px;
	}
	.search-modal__hosyo-img img{
		width: 280px;
	}
	.search-link-basis .link-basis:hover{
		text-decoration: none;
	}
}
#spfnav-fixed.slide-sp{
	display: none;
}


/*------------------------------------------------------------
サーチ画面
------------------------------------------------------------*/
.body-search #footer .fnavi .pagetop:not(.is_absolute) a{
	bottom: 0;
}
.body-search #footer .fnavi .pagetop.is_absolute{
	top: -142px;
}
.index-search {
    overflow: hidden;
    width: 1000px;
    padding: 0 20px 0 20px;
    margin: 0px auto;
}
.ttl-search{
	font-size: 1.8rem;
	margin: 10px;
	text-align: center;
	line-height: 1.4;
}
.result-block{
	margin-bottom: 10px;
}
@media screen and (min-width:768px) {
	.body-search{
		padding-bottom: 80px;
	}
	.body-search:has(.table-container-chintai) {
		padding-bottom: 0;
	}
	.ttl-search{
		font-size: 2.2rem;
		margin: 20px 0 5px;
		text-align: left;
		line-height: 1.6;
	}
	th[scope="row"]::after{
        content: "";
        position: absolute;
        top: 0;
        right: -1px;
        width: 1px;
        height: 100%;
        border-right: 1px solid #ccc;
	}
}

@media screen and (max-width:767px) {
	th[scope="row"]::after {
        content: "";
        position: absolute;
        top: 0;
        right: -1px;
        width: 4px;
        height: 100%;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.16);
        pointer-events: none;
        border-right: 1px solid #ccc;
	}
	.ttl-search__small{
		font-size: 1.4rem;
	}
}

/*試算条件エリア*/
.cond-block{
	border: 2px solid #e6e6e6;
	border-radius: 10px;
	padding: 10px;
	margin: 0 10px;
}
.cond-block .cond-more-block{
	width: 100%;
}
.cond-block .cond-detail{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2rem;
}
.cond-block .cond-detail dt{
	position: relative;
	width: 60px;
	margin-left: 0;
	font-weight: bold;
}
.cond-block .cond-detail dt img{
	position: absolute;
	width: 14px;
	height: 14px;
	top: 1px;
	left: -20px;
}
.cond-block .cond-detail dd{
	width: calc(100% - 60px);
}
.cond-block .cond-detail dt:nth-of-type(2),
.cond-block .cond-detail dd:nth-of-type(2) {
	margin-top: 6px;
}
.cond-block .cond-detail_other{
	font-size: 1.2rem;
	border-top: 1px dotted #b3b3b3;
	margin: 5px 0 0 0;
	padding: 8px 0 0 0;
}
@media screen and (min-width:768px) {
	.cond-block{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 20px 0 0 0;
		padding: 15px 20px;
	}
	.cond-block .cond-detail{
		margin-right: 20px;
	}
	.cond-block .cond-detail dt{
		margin-left: 20px;
		width: 70px;
	}
	.cond-block .cond-detail dd{
		width: calc(100% - 90px);
	}
	.cond-block .cond-detail_other{
		margin: 5px 20px 0 0;
	}
}

/*試算条件エリア*/
.btn-change-cond{
	cursor: pointer;
}
.btn-change-cond a{
	display: inline-block;
	width: 100%;
	border: 1px solid #bfbfbf;
	border-radius: 8px;
	width: 100%;
	height: 40px;
	text-align: center;
	padding: 8px;
	font-weight: bold;
	box-shadow: 0px 2px 0 0 rgba(230, 230, 230, 1);
	color: #333!important;
}
.btn-change-cond a span{
	position: relative;
}
.btn-change-cond a span img{
	position: absolute;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    top: 50%;
    transform: translate(0, -50%);
}
@media screen and (min-width:768px) {
	.btn-change-cond a{
		width: 160px;
		height: 50px;
		padding: 11px 30px 11px 5px;
	}
	.btn-change-cond a span img{
		right: -30px;
	}
	.btn-change-cond a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:767px) {
	.btn-change-cond{
		margin-top: 6px;
	}
	.cond-more-block {
		position: relative;
		max-height: 40px;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
	.cond-more-block.is-open::after{
		content: none;
	}
	.cond-more-block__btn {
		display: none;
		cursor: pointer;
		text-align: center;
		color: #666;
		margin-top: 5px;
		font-size: 1.2rem;
	}
	.cond-more-block__btn span{
		position: relative;
	}
	.cond-more-block__btn span::after{
		position: absolute;
		margin: auto;
		content: "";
		vertical-align: middle;
		right: -20px;
		top: 50%;
		bottom: 4px;
		width: 9px;
		height: 9px;
		border-top: 2px solid #b3b3b3;
		border-right: 2px solid #b3b3b3;
		transform: translate(-50%, -50%) rotate(135deg);
		transition: transform 0.3s ease;
	}
	.cond-more-block__btn.is-open span::after{
		transform: translate(-50%, 0) rotate(-45deg);;
	}
	.cond-more-block::after{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 40px;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
	}
	.cond-more-block.is-no-more::after {
		content: none;
	}
}

/*試算結果ヘッダ－*/
.result-head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px;
}
.result-count .result-num{
	font-weight: bold;
	color: #e62e2e;
	font-size: 1.6rem;
}
.result-count .result-plan{
	font-size: 1.4rem;
}
.selectBox_sort{
	width: 155px;
	margin-left: 14px;
}
.sort-area{
    display: flex;
    align-items: center;
}
.result-head .selectBox select{
	height: 40px;
	font-size: 1.4rem;
	padding: 7px 10px;
}
@media screen and (min-width:768px) {
	.result-head{
		margin: 12px 0;
	}
	.selectBox_sort{
		width: 180px;
	}
	.selectBox_sort select{
		height: 40px;
		padding: 0 12px;
	}
	.result-count .result-num{
		font-size: 1.8rem;
	}
	.result-head .selectBox select{
		font-size: 1.6rem;
	}
}

/*試算結果テーブル*/
.slider-nav{
    position: sticky;
    top: 0;
}
.btn-prev,.btn-next{
	position: absolute;
    top: 50px;
    background: #fff;
    display: block;
    width: 50px;
    height: 120px;
    border-radius: 8px;
    z-index: 100;
    border: 1px solid #bfbfbf;
    box-shadow: 0px 3px 0px 0px #e6e6e6;
    background: #fff;
    cursor: pointer;
}
.btn-prev{
	left: -70px;
}
.btn-next{
	right: -70px;
}
.btn-prev.disabled{
	display: none;
}
.btn-next.disabled{
	display: none;
}
.btn-prev span,btn-next span{
	position: relative;
    display: block;
    width: 50px;
    height: 120px;
}
.btn-prev span::after,.btn-next span::before{
	content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    pointer-events: none;
}
.btn-prev span::after{
    border-bottom: 15px solid transparent;
    border-left: 0 solid transparent;
    border-right: 15px solid #808080;
    border-top: 15px solid transparent;
}
.btn-next span::before{
    border-bottom: 15px solid transparent;
    border-left: 15px solid #808080;
    border-right: 0 solid transparent;
    border-top: 15px solid transparent;
}
.result-table{
	table-layout: fixed;
	word-wrap: break-word;
	white-space: normal;
	border-collapse: separate;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .4s;
	transition-duration: .4s;
}
.result-table a{
	text-decoration: underline;
}
.result-table tr,
.result-table th,
.result-table td{
	text-align: center;
	font-size: 1.2rem;
	padding: 5px 4px;
	line-height: 1.5;
}
.result-table tr{
	vertical-align: middle;
}
.result-table th{
	width: 100px;
	min-width: 100px;
	max-width: 100px;
	background-color: #f5f5f5;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px solid #ccc;
}
.result-table td{
	width: 90px;
	min-width: 90px;
	max-width: 90px;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background-color: #fff;
}
.result-table .row-section th{
	background-color: #595959;
    color: #fff;
    height: 30px;
    padding: 0;
	font-weight: normal;
	line-height: 1.4;
}
.result-table .row-section th > span{
	position: absolute;
	left: 0;
    display: block;
    font-weight: bold;
    padding: 8px;
    width: 100%;
	font-weight: normal;
	background-color: #595959;
	height: 30px;
	border-bottom: 1px solid #ccc;
}
.result-table .row-section th .row-section_txt-l{
	font-size: 1.2rem;
	font-weight: bold;
}
.result-table .row-ranking th{
	line-height: 1;
}
.result-table .row-ranking td{
	font-size: 1.2rem;
}
.result-table .row-company td{
	vertical-align: top;
	padding-bottom: 0;
	padding-top: 8px;
	border-bottom: none;
}
.result-table .row-company td p{
	line-height: 1.4;
}
.result-table .row-product td{
	vertical-align: top;
	padding: 0 5px 8px;
}
.result-table .row-product td img,
.result-table .row-product td a{
	display: block;
	margin: 0 auto;
	font-size: 1.1rem;
}
.result-table .row-product td img{margin-top: 2px;}
.result-table .row-product td a{margin-top: 5px;}
.result-table .row-price th{
	position: relative;
	background-color: #ffebeb;
	font-size: 1.2rem;
	padding: 5px 8px;
}
#headerTable.result-table .row-price th{
	font-size: 1.2rem;
}
.result-table .row-price td{
	color: #e62e2e;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 5px 8px;
	line-height: 1.4;
}
.result-table .row-price td span{font-size: 1.6rem;}
.result-table .row-price td .price-medium-txt{font-size: 1.4rem;}
.result-table .row-price td .price-small-txt{font-size: 1.2rem;}
.result-table .row-price td .price-note-txt{font-size: 1.2rem;font-weight: normal;}
.result-table .row-price td .price-note-txt span{font-size: 1.2rem;}

.table-container-ippan .result-table .row-price td{
	line-height: 1.3;
}
.result-table .row-hosyo th{
	position: relative;
	padding: 6px 10px;
}
.result-table .row-hosyo th .img_hosho{
	position: absolute;
	width: 28px;
	height: 28px;
	top: 50%;
    right: 5px;
    transform: translate(0, -50%);
}
.result-table .row-hosyo td{
	padding: 6px 8px;
}
.result-table .row-hosyo td .is-covered,
.result-table .row-hosyo td .is-not-covered{
	font-family: "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif, Arial;
	font-size: 1.8rem;
}
.result-table .row-hosyo td .is-not-covered{
	font-weight: bold;
}
.result-table .row-hosyo th::before{
	content: "";
	position: absolute;
	width: 4px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #777;
}
.result-table .row-policyholder td ul.policyholder-types{
	display: flex;
	font-family: "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif, Arial;
}
.result-table .row-policyholder td ul.policyholder-types li{
	display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid #ccc;
	border-radius: 5px;
	color: #b3b3b3;
	width: calc(100% / 2);
	height: 40px;
}
.result-table .row-policyholder td ul.policyholder-types li:first-of-type{
	margin-right: 4px;
}
.result-table .row-policyholder td ul.policyholder-types li.ic_kojin{
	border: 1px solid #00a031;
	color: #00a031;
}
.result-table .row-policyholder td ul.policyholder-types li.ic_hojin{
	border: 1px solid #d92b2b;
	color: #d92b2b;
}
.result-table .row-number td{
	vertical-align: middle;
}
.result-table .row-hosyo.hosyo1 th{background-color: #fff4eb;}
.result-table .row-hosyo.hosyo1 th::before{background-color: #ffa64d;}
.result-table .row-hosyo.hosyo2 th{background-color: #effaea;}
.result-table .row-hosyo.hosyo2 th::before{background-color: #88cc66;}
.result-table .row-hosyo.hosyo3 th{background-color: #ebf8ff;}
.result-table .row-hosyo.hosyo3 th::before{background-color: #5cb8e6;}
.result-table .row-hosyo.hosyo4 th,.result-table .row-hosyo.hosyo5 th,.result-table .row-hosyo.hosyo6 th,.result-table .row-hosyo.hosyo7 th{background-color: #ebf1ff;}
.result-table .row-hosyo.hosyo4 th::before,.result-table .row-hosyo.hosyo5 th::before,.result-table .row-hosyo.hosyo6 th::before{height: calc(100% + 1px);background-color: #527acc;}
.result-table .row-hosyo.hosyo7 th::before{background-color: #527acc;}
.result-table .row-hosyo.hosyo8 th{background-color: #f5ebfa;}
.result-table .row-hosyo.hosyo8 th::before{background-color: #9b6bb3;}
.result-table .row-hosyo.hosyo4 th,
.result-table .row-hosyo.hosyo4 td,
.result-table .row-hosyo.hosyo5 th,
.result-table .row-hosyo.hosyo5 td,
.result-table .row-hosyo.hosyo6 th,
.result-table .row-hosyo.hosyo6 td{
	border-bottom: 1px dotted #ccc;
}
.result-table .row-hosyo.hosyo1 th,
.result-table .row-hosyo.hosyo2 th,
.result-table .row-hosyo.hosyo3 th,
.result-table .row-hosyo.hosyo7 th,
.result-table .row-hosyo.hosyo8 th{
	height: 64px;
}
.result-table .row-section,
.result-table .row-section-btn{
	vertical-align: top;
}
.result-table .not-set{color: #333!important;font-weight: normal!important;font-size: 1.2rem!important;}
.result-table .align-top{vertical-align: top!important;}
.result-table .align-middle{vertical-align: middle!important;}
@media screen and (max-width:767px) {
	.result-table a{
		font-size: 1.1rem;
	}
	.result-table .row-company td br,
	.result-table .row-product td br,
	.result-table .row-plan td br{
		display: none;
	}
	.result-table .row-product td p{
		margin-top: 3px;
	}
	.result-table .row-section th.sp-height-2lines{
		height: 46px;
	}
	.result-table .row-section th.sp-height-2lines > span{
		height: 46px;
	}
	.result-table .row-remarks td{
		font-size: 1.1rem;
		text-align: left;
	}
	.result-table .row-number td{
		font-size: 1.1rem;
	}
	.table-container-ippan .result-table .row-hosyo.hosyo1 th,
	.table-container-ippan .result-table .row-hosyo.hosyo2 th,
	.table-container-ippan .result-table .row-hosyo.hosyo3 th,
	.table-container-ippan .result-table .row-hosyo.hosyo8 th{
		height: 46px;
	}
	.table-container-kumiai .result-table .row-price td span{
		font-size: 1.2rem;
	}
	.table-header-scroll .result-table .row-product td{
		padding: 6px 4px;
	}
	.table-header-scroll .result-table .row-cv td{
		padding: 4px 4px;
	}
	.result-table .row-product td a{
		margin-top: 5px;
	}
}
@media screen and (min-width:768px) {
	.result-table tr,
	.result-table th,
	.result-table td{
		padding: 10px 8px;
		line-height: 1.6;
	}
	.result-table th{
		width: 120px;
		min-width: 120px;
		max-width: 120px;
	}
	.result-table td{
		width: 140px;
		min-width: 140px;
		max-width: 140px;
	}
	.table-container-kumiai .result-table td{
		width: 168px;
		min-width: 168px;
		max-width: 168px;
	}
	.result-table .row-ranking td{
		font-weight: bold;
		font-size: 1.4rem;
		line-height: 1;
		padding: 0;
	}
	.result-table .row-section th{
		line-height: 1;
		height: 30px;
	}
	.result-table .row-section th .row-section_txt-l{
		font-size: 1.4rem;
	}
	.result-table .row-product td{
		padding: 0 8px 10px;
	}
	.result-table .row-company td{
		padding-top: 10px;
	}
	.result-table .row-company td a{
		font-size: 1.2rem;
	}
	.result-table .row-product td a {
		font-size: 1.2rem;
	}
	.result-table .row-product td img{
		max-width: 120px;
	}
	.table-header-scroll .result-table .row-product td p{
		margin-top: 2px;
	}
	.result-table .row-price td{
		font-size: 1.6rem;
	}
	.result-table .row-price th{
		font-size: 1.4rem;
	}
	.result-table .row-price td span{
		font-size: 2.2rem;
	}
	#headerTable.result-table .row-product td img{
		margin-top: 10px;
	}
	#headerTable.result-table .row-product td{
		padding-bottom: 8px;
	}
	.result-table .row-cv td{
		padding: 7px 8px 10px;
	}
	.result-table .row-hosyo th .img_hosho{
		width: 34px;
		height: 34px;
	}
	.result-table a:hover{
		text-decoration: none;
	}
	.btn-prev:hover,.btn-next:hover{
		opacity: 0.7;
	}
	.result-table .row-policyholder td{
		padding: 5px 8px;
	}
	.result-table .row-policyholder td ul.policyholder-types li{
		height: 26px;
	}
	.result-table .row-policyholder td ul.policyholder-types li:first-of-type{
		margin-right: 5px;
	}
	.result-table .row-hosyo.hosyo1 th,
	.result-table .row-hosyo.hosyo2 th,
	.result-table .row-hosyo.hosyo3 th,
	.result-table .row-hosyo.hosyo7 th,
	.result-table .row-hosyo.hosyo8 th{
		height: 70px;
	}
	.result-table .row-price td .price-medium-txt{font-size: 2rem;}
	.result-table .row-price td .price-small-txt{font-size: 1.4rem;}
	.result-table .row-price td .price-note-txt{font-size: 1.4rem;}
	.result-table .row-price td .price-note-txt span{font-size: 1.2rem;}
}
/*内訳*/
.ac-price-btn{
	position: absolute;
    font-size: 1rem;
    font-weight: normal;
    background-color: #fff;
    padding: 6px;
    height: 26px;
    border-radius: 8px;
    cursor: pointer;
    width: 46px;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}
.ac-price-btn span::before,
.ac-price-btn span::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
    margin-top: auto;
	background-color: #595959;
	width: 8px;
	right: 8px;
	height: 2px;
}
.ac-price-btn.is_close span::after{
	-webkit-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
}
.ac-price-btn span::before{
    transform: translate(0, -50%);
}
.ac-price-btn span::after{
	transition:  all .3s;
    transform: translate(0, -50%);
}
.ac-price-block .ac-inner{
    display:none;
}
.ac-price-block > td{
	padding: 0;
	border-left: none;
	border-bottom: none;
}
.ac-price-block{
	border: none!important;
}
.ac-price-block .ac-inner th.vertical-txt{
	border-right: 1px solid #ccc;
	padding: 0;
}
.ac-price-block th{
	background-color: #ffebeb;
	font-weight: normal;
	width: auto;
	min-width: auto;
    max-width: auto;
}
th.vertical-txt{
	text-align: center;
	width: 30px;
	min-width: 30px;
    max-width: 30px;
}
th.vertical-txt span{
	writing-mode: vertical-rl;
    text-align: center;
    vertical-align: middle;
	letter-spacing: 0.06em;
}

#bodyTable .ac-price-block th.type-building,
#bodyTable .ac-price-block th.type-contents{
	background-color: #fff3f3;
	left: 30px;
	padding: 7px 8px;
}
.ac-price-block td{
	font-size: 1.4rem;
}
.ac-price-block .ac-inner th,
.ac-price-block .ac-inner td{
	padding: 7px 6px;
}
.ac-price-block .ac-inner table tr:nth-of-type(2n+1) th{
	border-bottom: 1px dotted #ccc;
}
.ac-price-block .ac-inner table tr:nth-of-type(2n+1) td{
	border-bottom: 1px dotted #ccc;
}
.ac-price-block .ac-inner table tr:nth-of-type(2n+1) th.vertical-txt{
	border-bottom: 1px solid #ccc;
}
@media screen and (max-width:767px) {
	.ac-price-block .ac-inner th.vertical-txt{
		width: 40px;
		min-width: 40px;
		max-width: 40px;
	}
	th.vertical-txt span,
	.ac-price-block .ac-inner th.vertical-txt span{
		writing-mode: horizontal-tb;
	}
	#bodyTable .ac-price-block th.type-building,
	#bodyTable .ac-price-block th.type-contents{
		left: 40px;
	}
	.ac-price-block td{
		font-size: 1.2rem;
	}
}
@media screen and (min-width:768px) {
	.ac-price-btn{
		font-size: 1.2rem;
		padding: 4px 10px;
		width: 60px;
	}
	.ac-price-btn span::before,
	.ac-price-btn span::after{
		width: 10px;
		right: 10px;
	}
	th.vertical-txt span{
		letter-spacing: 0.2em;
	}
}

/*試算条件*/
.row-section-btn th{
	position: relative;
	background-color: #595959;
    color: #fff;
    line-height: 1;
	padding: 0;
	height: 36px;
}
.row-section-btn .ac-section-btn{
	position: absolute;
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 12px 8px;
	cursor: pointer;
	width: 100%;
	background-color: #595959;
	height: 36px;
	border-bottom: 1px solid #ccc;
}
.ac-section-btn::before,
.ac-section-btn::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
    margin-top: auto;
	background-color: #fff;
	width: 14px;
	right: 10px;
	height: 2px;
}
.ac-section-btn.is_close::after{
	-webkit-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
}
.ac-section-btn::before{
    transform: translate(0, -50%);
}
.ac-section-btn::after{
	transition:  all .3s;
    transform: translate(0, -50%);
}
.ac-section-block{
	border: none!important;
}
.result-table td.txt-left{
	text-align: left;
}
.ac-section-block > td{
	padding: 0;
	border-left: none;
	border-bottom: none;
}
.ac-section-block.row-kumiai-hosho .ac-inner th{
	width: auto;
    min-width: auto;
    max-width: auto;
	left: 30px;
}
.ac-section-block.row-kumiai-hosho .ac-inner th.vertical-txt {
    border-right: 1px solid #ccc;
    padding: 0;
	width: 30px;
    min-width: 30px;
    max-width: 30px;
}
#bodyTable .ac-section-block.row-kumiai-hosho .ac-inner th{
	left: 30px;
}
#bodyTable .ac-section-block.row-kumiai-hosho .ac-inner th.vertical-txt{
	left: 0;
	background-color: #ebebeb;
}
@media screen and (max-width:767px) {
	.ac-section-block.row-kumiai-hosho .ac-inner th.vertical-txt {
		width: 25px;
		min-width: 25px;
		max-width: 25px;
	}
	#bodyTable .ac-section-block.row-kumiai-hosho .ac-inner th{
		left: 25px;
	}
}
@media screen and (min-width:768px) {
	.row-section-btn th{
		height: 40px;
	}
	.row-section-btn .ac-section-btn{
		font-size: 1.6rem;
		padding: 13px 8px;
		height: 40px;
	}
}
/*CVボタン*/
.btn-contact_search a{
	font-size: 1.3rem;
	text-decoration: none;
	height: 48px;
}
.btn-contact_search label,
.btn-net_search a{
	display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
	padding: 7px 0;
    transition: all .3s;
    width: 100%;
    height: 48px;
	cursor: pointer;
	text-decoration: none;
}
.btn-contact_search label{
    font-size: 1.3rem;
    background-color: #e52e2e;
    background: linear-gradient(to bottom, #ff3333 0%, #e52e2e 100%);
}
.btn-contact_search label input[type="checkbox"]{
	width: 14px;
	height: 14px;
	border: none;
	margin-right: 4px;
	border-radius: 3px;
}
.btn-contact_search label input[type="checkbox"]:before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%) rotate(45deg);
    width: 7px;
    height: 10px;
    border-right: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
    content: '';
}
.btn-contact_search label:has(input[type="checkbox"]:checked){
	background-color: #fff;
	background: linear-gradient(#fff 0%, #fff 100%);
    box-shadow: none;
	border: 1px solid #e52e2e;
	color: #e52e2e;
}
.btn-contact_search label input[type="checkbox"]:checked{
	background-color: #fff;
	border: 1px solid #e52e2e;
}
.btn-contact_search label input[type="checkbox"]:checked:before{
    border-right: 3px solid #e52e2e;;
    border-bottom: 3px solid #e52e2e;;
}
.btn-net_search a{
	font-size: 1.2rem;
    background-color: #ff7f00;
    background: linear-gradient(to bottom, #ff9500 0%, #ff7f00 100%);
}
.btn-net_search a span{
	font-size: 1.2rem;
	font-weight: normal;
}
@media screen and (max-width:767px){
	.btn-net_search a,
	.btn-contact_search a{
		box-shadow: none;
	}
	.table-header-scroll .btn-contact_search a,
	.table-header-scroll .btn-contact_search label,
	.table-header-scroll .btn-net_search a{
		padding: 3px 0;
		height: 40px;
		line-height: 1.4;
	}
}
@media screen and (min-width:768px) {
	.btn-contact_search a{
		font-size: 1.6rem;
	}
	.btn-contact_search a,
	.btn-contact_search label,
	.btn-net_search a{
		height: 56px;
	}
	.table-container-kumiai .btn-contact_search label{
		height: 46px;
	}
	.btn-contact_search label{
		font-size: 1.6rem;
		box-shadow: 0 3px 0 #a62121;
	}
	.btn-contact_search label input[type="checkbox"]{
		width: 20px;
		height: 20px;
		margin-right: 8px;
		border-radius: 5px;
	}
	.btn-contact_search label input[type="checkbox"]:before{
		width: 8px;
		height: 12px;
	}
	.btn-contact_search label:has(input[type="checkbox"]:checked){
		transform: translate3d(0, 2px, 0);
	}
	.btn-net_search a{
		font-size: 1.5rem;
		box-shadow: 0 3px 0 #eb3b00;
	}
	.btn-net_search a:hover{
		background-color: #ff7f00;
		background: linear-gradient(#ff7f00 0%, #ff7f00 100%);
		box-shadow: none;
		transform: translate3d(0, 2px, 0);
	}
}
/*固定ボタン*/
.siryo-area{
	display: block;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 21;
}
.siryo-area .siryo-area__btn{
	width: 100%;
	margin: 0 auto;
	padding: 5px 15px;
}
.siryo-area .siryo-area__btn .btn-contact{
	position: relative;
	font-size: 1.4rem;
	padding-left: 25px;
	flex-wrap: wrap;
}
.siryo-area .siryo-area__btn .btn-contact b{
	font-size: 2rem;
	margin-left: 4px;
}
.siryo-area .siryo-area__btn .btn-contact .btn-contact-tx-free{
	font-size: 1.4rem;
}
.siryo-area .siryo-area__btn .btn-contact .chk_num{
	position: absolute;
	background-color: #fff;
	border: 1px solid #ff4c4c;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
    justify-content: center;
    align-items: center;
	color: #ff4c4c;
	top: -12px;
    right: -12px;
	font-size: 1.6rem;
	line-height: 1;
}
@media screen and (min-width: 768px){
	.siryo-area .siryo-area__btn{
		width: 460px;
		padding: 10px 0;
	}
	.siryo-area .siryo-area__btn .btn-contact{
		font-size: 2rem;
	}
	.siryo-area .siryo-area__btn .btn-contact b{
		font-size: 2.8rem;
		margin-left: 8px;
	}
	.siryo-area .siryo-area__btn .btn-contact .btn-contact-tx-free{
		font-size: 1.8rem;
	}
	.siryo-area .siryo-area__btn .btn-contact .chk_num{
		width: 30px;
		height: 30px;
		font-size: 1.8rem;
	}
}
/*注意文言*/
.table-notes{
	margin: 0 10px;
}
.attention-block dl{
	font-size: 1.2rem;
}
.attention-block dt{
	font-weight: bold;
	margin-top: 10px;
}
@media screen and (min-width: 768px){
	.table-notes{
		margin: 0;
	}
}
/*サーチ画面モーダル*/
.body-search .mfp-content{
	/*max-width: 920px !important;*/
	max-width: none!important;
	padding: 0;
	position: relative;
}
.body-search .cond-modal-ttl{
	position: absolute;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #fff;
    top: 0;
    width: 100%;
    left: 0;
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
    text-align: center;
	z-index: 1;
}
.body-search .mfp-close-btn-in .mfp-close{
	top: 15px;
	right: 15px;
}
.body-search .step-ttl{
	font-size: 1.7rem;
	border-left: 4px solid #c1272d;
}
.body-search .stepBox{
	margin-bottom: 25px;
}
.body-search .fixed-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    padding: 5px 15px;
	margin-inline: -15px;
    width: 100%;
}
.body-search .fixed-box .btn-sim__wrap{
	width: calc(100% - 100px);
	margin: 0 auto;
}
.body-search .fixed-box .result-count{
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 767px){
	.body-search .mfp-container{
		padding: 0!important;
	}
	.body-search .mfp-content #cond-modal{
		padding-top: 50px;
		padding-bottom: 50px;
		max-height: none;
		border-radius: 0;
	}
	.body-search .mfp-content:not(:has(#cond-modal)){
		padding: 0 20px;
	}
	.body-search .mfp-content:not(:has(#cond-modal)) .mfp-close{
		top: 7px;
		right: 28px;
	}
	.body-search .mfp-content #cond-modal .cond-modal-ttl{
		box-shadow:  0px 0px 10px rgba(0, 0, 0, .1);
		border-radius: 0;
		position: fixed;
	}
	.body-search .mfp-content #cond-modal .mfp-close{
		position: fixed;
		top: 10px;
		right: 10px;
	}
	.body-search .mfp-content #cond-modal .radioButton_step1{
		margin-top: 10px;
	}
	.body-search .mfp-content #cond-modal .radioButton .col2 .label__wrap,
	.body-search .mfp-content #cond-modal .checkBox .col2 .label__wrap,
	.body-search .mfp-content #cond-modal .checkBox .col3 .label__wrap {
		background-color: #fff;
	}
	.body-search .mfp-content #cond-modal .result-count .result-num{
		color: #fff;
		font-size: 1.4rem;
	}
	.body-search .mfp-content #cond-modal .label-ttl2{
		font-size: 1.6rem;
	}
}
@media screen and (min-width: 768px){
	.body-search .mfp-content{
		width: fit-content!important;
	}
	.body-search .mfp-content .magnific-block{
		width: 800px;
	}
	.body-search .cond-modal-ttl{
		font-size: 2rem;
		background-color: #f5f5f5;
		padding: 15px 0;
	}
	.body-search .mfp-content #cond-modal.searchBox__wrap.magnific-block{
		width: 920px;
		padding: 80px 30px 0 30px;
	}
	.body-search .step-ttl{
		font-size: 2rem;
		border-left: 6px solid #c1272d;
	}
	.body-search .fixed-box{
		position: sticky;
		margin-inline: -30px;
		background-color: #fff;
		box-shadow: rgb(0, 0, 0, 0.1) 0px -2px 6px 0;
		width: auto;
		padding: 12px 30px 15px;
	}
	.body-search .fixed-box .btn-sim__wrap{
		width: 325px;
	}
	.body-search .fixed-box .result-count{
		position: absolute;
		top: 30px;
		left: 70px;
		color: #333;
		text-align: left;
	}
}
/*サブモーダル（dialog）*/
dialog {
	border: none;
	color: #333;
}
dialog::backdrop {
	background: rgba(0, 0, 0, 0.3);
	overscroll-behavior-y: none;
	overflow-y: scroll;
    overscroll-behavior-y: none;
}
.submodal-block {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	border-radius: 10px;
	max-height: calc(100vh - 50px);
	background: #fff;
	overscroll-behavior: none;
	z-index: 2000;
}
.submodal-block__inner {
	padding: 15px;
	overflow-y: auto;
	max-height: calc(100vh - 50px);
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.submodal-block .close-submodal {
	position: fixed;
	top: 6px;
	right: 4px;
	cursor: pointer;
	background: transparent;
	border: 0;
	color: #999 !important;
	width: 34px;
	height: 34px;
	font-size: 42px;
	line-height: 34px;
	font-family: Arial, Baskerville, monospace;
	z-index: 3000;
}

@media screen and (min-width: 768px){
	.submodal-block__inner{
		padding: 30px;
	}
	.submodal-block .close-submodal{
		top: 11px;
		right: 11px;
	}
}

/* ===============================
   テーブル基本レイアウト
================================= */

:root{
  /* 固定ヘッダの上端位置（上部固定ナビ等がある場合は設定必要） */
  --nav-height: 0px;
}

/*
共通cssでは#contentにoveflow:hiddenが当たっており、これがあると領域内スクロールが効かなくなるので解除
#content内に作る必要が無ければこの記述は不要
*/
.index-search#content{
  overflow:initial;
  padding: 0;
}
/* テーブルのスクロール領域 */
.table-container{
  position: relative;
  max-width:1000px;
  margin:0 auto 10px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media screen and (min-width:768px) {
  .index-search#content{
    padding: 0 20px 0 20px;
  }
}

/* ===============================
   テーブル共通
================================= */

table{
  border-collapse:separate;
  width:100%;
}

/* ===============================
   ヘッダ固定エリア
================================= */
.table-header-sticky {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.2s;
  pointer-events: none;
  height: 0;
}

.table-header-sticky.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  min-height: 100px;
}
@media screen and (min-width:768px) {
  .table-header-sticky::before,
  .table-header-sticky::after{
    position: absolute;
    content: "";
    width: 10px;
    height: 100%;
    background-color: #fff;
    top: 0;
  }
  .table-header-sticky::before{
    left: -11px;
  }
  .table-header-sticky::after{
    right: -11px;
  }
}

/* ヘッダスクロール領域 */
.table-header-scroll{
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  /* 横スクロールバーは出さない */
  overflow:hidden;
  
}

/* ===============================
   ボディスクロール領域
================================= */

.table-body-scroll{
	overflow-x: auto;
	-ms-overflow-style: none;  /* IE, Edge */
	scrollbar-width: none; 

  /* 横スクロールはここだけ */
  overflow-x:auto;
}
.table-body-scroll::-webkit-scrollbar {
  display: none;             /* Chrome, Safari */
}

/* ===============================
   左端列の固定
================================= */

/* 左端列は見出し列として固定 */
#headerTable th:first-child,
#bodyTable th{
  position:sticky;
  left:0;

  z-index:10;
}
#bodyTable .row-section th,
#bodyTable .row-section-btn th{
  position: static;
}

/* 左上角セルを最上位 */
#headerTable th:first-child{
  z-index:30;
}



/*dialog*/
@media screen and (min-width: 767px){
.ui-dialog{
	width: 500px!important;
}
}
.ui-widget-header{
	background: #777!important;
	color: #fff!important;
	border: none!important;
}
.ui-widget-content{
	border-color:#777!important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
	background: #e52e2e!important;
	color: #fff!important;
	border-style: none!important;
}
.ui-dialog .ui-dialog-titlebar-close{
	background: #333!important;
}
.ui-widget-content .ui-state-hover,
.ui-widget-content .ui-state-hover .ui-icon-closethick{
	color: #fff!important;
}

.ui-dialog-buttonset .ui-button:last-child{
	background: #999!important;
}
.ui-button-icon-only .ui-icon {
    margin-left: -9px!important;
}