@charset "UTF-8";
body{
	overflow: initial;
}
main{
	letter-spacing: 0;
}
.l-main p{
	margin-bottom: 0;
}
button, input, optgroup, select, textarea,
.radio-button label{
	font-family: "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.price-step-ttl{
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	border-left: 4px solid #9a61ab;
	height: 100%;
	margin: 30px 0 15px;
	padding-left: 15px;
}
.price-step-ttl span{
	font-size: 12px;
}
.price-step-ttl .step-tx{
	display: block;
	font-size: 18px;
	color: #9a61ab;
	margin-right: 15px;
}
.price-table-ttl{
	position: relative;
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	margin: 15px 0 0 15px;
}
.price-table-ttl::before{
	content: "";
    width: 8px;
    height: 8px;
    background-color: #9a61ab;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
	.price-step-ttl{
		font-size: 20px;
		border-left: 6px solid #9a61ab;
		margin: 50px 0 15px;
	}
	.price-step-ttl span{
		font-size: 16px;
	}
	.price-step-ttl .step-tx{
		display: inline-block;
		font-size: 22px;
	}
	.price-table-ttl{
		font-size: 18px;
		margin: 25px 0 0 20px;
	}
	.price-table-ttl::before{
		width: 10px;
		height: 10px;
		left: -20px;
	}
}

/* テーブル基本レイアウト
========================================================================== */
.index-search#content{
	overflow:initial;
	padding: 0;
}
.table-container{
	position: relative;
	max-width: 1070px;
	padding-top: 15px;
}
.cond-block + .table-container{
	margin-top: 10px;
}
@media screen and (max-width: 767px) {
	.table-container{
		overflow: hidden;
		background: #fff;
		margin-inline: -10px;
		border-bottom: none;
		padding-top: 10px;
	}
}
/* 単一テーブルラッパー */
.table-wrap {
	position: relative;
}
.table-scroll-wrapper {
	overflow-x: auto;
	overflow-y: clip; /* Y軸はスクロールコンテナを生成しない → thead sticky がドキュメント基準で動作 */
	/*-webkit-overflow-scrolling: touch;*/
}
@media screen and (min-width: 768px) {
	.table-scroll-wrapper {
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-left: 1px solid #ccc;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.table-scroll-wrapper::-webkit-scrollbar {
		display: none;
	}
}
/* SP: thead fixed（JS と連動） */
@media screen and (max-width: 767px) {
	.table-scroll-wrapper{
		overscroll-behavior-x: contain;
	}
	.table-scroll-wrapper thead.is-fixed {
		position: fixed;
		top: 0;
		z-index: 30;
		overflow: hidden;
		background-color: #fff;
	}
	.table-scroll-wrapper thead td {
		background-color: #fff;
	}
}
/* SP: thead ラベル列固定オーバーレイ */
@media screen and (max-width: 767px) {
	.sp-thead-label {
		display: none;
		position: fixed;
		top: 0;
		z-index: 31;
	}
	.sp-thead-label.is-visible {
		display: block;
	}
	.sp-thead-label__row {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px 5px;
		font-size: 12px;
		line-height: 1.5;
		border-bottom: 1px solid #ccc;
		box-sizing: border-box;
		background-color: #f5f5f5;
	}
	.sp-thead-label__row::after{
		border-right: 1px solid #ccc;
	}
	.sp-thead-label__row:first-of-type{
		font-weight: bold;
		color: #fff;
	}
	.table-container-long .sp-thead-label__row:first-of-type{
		background-color: #085ca4;
	}
	.table-container-long .sp-thead-label__row:first-of-type:after{
		background-color: #085ca4;
	}
	.table-container-study .sp-thead-label__row:first-of-type{
		background-color: #58801a;
	}
	.table-container-study .sp-thead-label__row:first-of-type:after{
		background-color: #58801a;
	}
	.table-container-family .sp-thead-label__row:first-of-type{
		background-color: #885099;
	}
	.table-container-family .sp-thead-label__row:first-of-type:after{
		background-color: #885099;
	}
}
/* 左端列の固定 */
.table-container th:first-child,
.table-container .row-option th,
.table-container .row-share th{
  position: sticky;
  left: 0;
  z-index: 10;
}
.table-container thead th:first-child{
  z-index: 30;
}
/* 保険料表
========================================================================== */
/*件数＋並びかえ*/
.result-head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
}
.result-head .result-count{
	font-size: 12px;
}
.result-head .result-count .result-num{
	font-size: 18px;
	color: #d70400;
	font-weight: bold;
}
.result-head .sort-area {
    display: flex;
    align-items: center;
}
.result-head .select-box-sort {
	width: 205px;
	margin-left: 5px;
}
.result-head .select-box-sort select{
	height: 40px!important;
	font-size: 12px;
	font-weight: normal;
}
.family-sim-results .result-head{
	padding-top: 5px;
}
@media screen and (min-width:768px) {
	.result-head{
		margin: 0;
		padding-top: 15px;
	}
	.result-head .result-count{
		font-size: 16px;
	}
	.result-head .result-count .result-num{
		font-size: 22px;
	}
	.result-head .select-box-sort{
		width: 250px;
	}
	.result-head .select-box-sort select{
		font-size: 15px;
	}
	.family-sim-results .result-head{
		padding-top: 10px;
	}
}
/*試算条件 cond-block*/
.cond-block{
	width: 100%;
	padding: 0 15px 18px 15px;
	margin: 15px auto 0;
	border: 1px solid #ccc;
	border-radius: 10px;
}
p.cond-block_ttl{
	font-weight: bold;
	font-size: 14px;
}
.cond-block .label-ttl{
	text-align: left;
	margin-bottom: 5px;
	margin-top: 10px;
	white-space: nowrap;
}
.cond-block .label-ttl .label-note{
	font-size: 12px;
}
p.category-ttl{
	background-color: #ededed;
	color: #666;
	font-size: 14px;
	font-weight: bold;
	padding: 3px 10px;
	border-radius: 20px;
	display: inline-block;
	width: 100%;
}
.detail-block_wrap{
	width: 100%;
	text-align: left;
}
.detail-block{
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.detail-block .detail-ttl{
	width: calc(100% - 125px);
}
.detail-block .detail-ttl p{
	margin-bottom: 5px;
}
.detail-block .select-box{
	width: 115px;
}
.detail-block .select-box select{
	height: 40px;
	font-size: 14px;
	font-weight: bold;
}
.detail-block .radio-button .label__wrap label{
	height: 40px;
	font-size: 14px;
}
.detail-block .detail-ttl p.detail-note{
	font-size: 11px;
	color: #666;
	margin-bottom: 0;
	text-indent: -12px;
    margin-left: 12px;
}
.detail-block .radio-button{
	width: 100%;
}
.detail-block2 .detail-ttl{
	margin-top: 0;
}
.companion-block_wrap{
	width: 100%;
	text-align: left;
}
.companion-block{
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
.companion-block:first-of-type{
	margin-top: 0;
}
.cond-block-long p.cond-block_ttl{color: #146db9;}
.cond-block-study p.cond-block_ttl{color: #689127;}
.cond-block-family p.cond-block_ttl{color: #9a61ab;}

@media screen and (min-width: 768px) {
	.cond-block{
		width: 970px;
		padding: 25px 30px 30px 30px;
		margin: 20px auto 0;
		display: flex;
        flex-wrap: wrap;
	    justify-content: center;
	}
	.cond-block .cond-block_wrap{
		width: calc(100% - 128px);
	}
	.cond-block .cond-block_inner{
		border-bottom: 1px dotted #aaa;
		padding: 15px 0;
	}
	p.cond-block_ttl{
		font-size: 20px;
		width: 100px;
		text-align: left;
		margin-right: 28px;
	}
	p.category-ttl{
		font-size: 15px;
		padding: 2px 10px;
		margin-right: 20px;
		width: 130px;
	}
	.cond-block .col2{
		display: flex;
		flex-wrap: nowrap;
	}
	.detail-block{
		padding: 15px 0;
	}
	.detail-block .detail-ttl{
		width: calc(100% - 300px);
	}
	.detail-block2 .detail-ttl{
		width: calc(100% - 440px);
	}
	.detail-block .select-box{
		width: 280px;
	}
	.cond-block .label-ttl{
		margin-top: 2px;
	}
	.cond-block .label-ttl .label-note{
		font-size: 14px;
	}
	.detail-block .detail-ttl p{
		margin-bottom: 2px;
	}
	.detail-block .detail-ttl p.detail-note{
		font-size: 13px;
		text-indent: -13px;
		margin-left: 13px;
	}
	.companion-block{
		margin-top: 10px;
	}
	.companion-block .companion-ttl{
		width: calc(100% - 460px);
		margin-right: 20px;
		text-align: right;
		font-size: 15px;
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767px) {
	.cond-block .cond-block_inner{
		margin-top: 15px;
	}
	p.cond-block_ttl{
		background-color: #2e3184;
		color: #fff!important;
		border-radius: 8px 8px 0 0;
		padding: 8px 0;
		margin-inline: -15px;
	}
	.detail-block_wrap .col2{
		display: flex;
		flex-wrap: nowrap;
	}
	.detail-block_wrap .col2.detail-block2{
		display: block;
	}
	.detail-block{
		margin-top: 10px;
	}
	.companion-block .companion-ttl{
		font-size: 13px;
		margin-bottom: 5px;
		background-color: #ededed;
		border-radius: 20px;
		display: inline-block;
		padding: 3px 10px;
		line-height: 1;
		font-weight: bold;
		color: #666;
	}
	.cond-block-long p.cond-block_ttl{background-color: #146db9;}
	.cond-block-study p.cond-block_ttl{background-color: #689127;}
	.cond-block-family p.cond-block_ttl{background-color: #9a61ab;}
}

/*タブ切替（/tk/price/study.html）*/
.tab-price-area li.tab-btn a{
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: bold;
	padding: 8px 0 6px;
}
.tab-price-area li.tab-btn a > span{
	width: 100%;
	font-size: 12px;
	font-weight: normal;
	margin-top: 3px;
}
.tab-price-area_long .tab-btn-wrap li a{background-color: #e7f4ff;color: #146db9;}
.tab-price-area_long .tab-btn-wrap li a.tab-active,
.tab-price-area_long .tab-btn-wrap{border-color: #146db9;}
.tab-price-area_study .tab-btn-wrap li a{background-color: #ebf7da;color: #58801a;}
.tab-price-area_study .tab-btn-wrap li a.tab-active,
.tab-price-area_study .tab-btn-wrap{border-color: #689127;}
@media screen and (min-width: 768px) {
	.tab-price-area{
		margin: 20px 0;
	}
	.tab-price-area li.tab-btn{
		height: 80px;
	}
	.tab-price-area li.tab-btn a{
		font-size: 18px;
		padding: 18px 0 16px;
	}
	.tab-price-area li.tab-btn a > span{
		font-size: 14px;
	}
	.tab-price-area li.tab-btn a > span > span{
		display: inline;
	}
}

/*条件変更メッセージ*/
.sim-cond-message {
	text-align: center;
	padding: 40px 15px 25px;
	color: #666;
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	.sim-cond-message {
		font-size: 16px;
		padding: 80px 15px;
	}
}

/*条件を変更ボタン*/
.btn-change-cond .link-search{
	display: block;
    width: calc(100% - 40px);
    font-size: 18px;
    height: 45px;
	margin: 0 auto;
	padding: 10px;
}
.btn-change-cond .link-search::before{
	content: none;
}
@media screen and (min-width: 768px) {
	.btn-change-cond .link-search{
		width: 320px;
		font-size: 22px;
		height: 54px;
	}
}
@media screen and (max-width: 767px) {
	.btn-change-cond .link-search{
		padding: 0;
		line-height: 45px;
		margin-top: 15px;
	}	
}
/*radio-button*/
input[type="radio"]{
	position: relative;
	width: 18px;
	height: 18px;
	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;
	margin-right: 1px;
}
input[type="radio"]:checked{
	border: 1px solid #2e3184;
}
input[type="radio"]:checked:before{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #2e3184;
	content: '';
}
label:has(input[type="radio"]:checked){
	background-image: linear-gradient(0deg, rgba(238, 249, 255, 1));
}
button {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.radio-button{
  display: flex;
  flex-wrap: nowrap;
}
.radio-button .label__wrap{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  width: 100%;
}
.radio-button .label__wrap:has(.err-bg){
	background-image: none;
	background-color: #ffd8d8;;
}
.radio-button .label__wrap label{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	border-left: 1px solid #bfbfbf;
	font-weight: bold;
	font-size: 14px;
	padding: 0 5px 0 6px;
	height: 50px;
	line-height: 1.3;
}
.radio-button .label__wrap:first-of-type label{
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.radio-button .label__wrap:last-of-type label{
	border-right: 1px solid #bfbfbf;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}
.radio-button .label__wrap span{
	width: calc(100% - 20px);
	text-align: center;
}
.radio-button .label__wrap .note-txt{
	font-size: 12px;
	margin-left: 0;
}

.cond-block-long input[type="radio"]:checked{border: 1px solid #146db9;}
.cond-block-long input[type="radio"]:checked:before{background: #146db9;}
.cond-block-long label:has(input[type="radio"]:checked){background-image: linear-gradient(0deg, rgba(231, 244, 255, 1));}
.cond-block-study input[type="radio"]:checked{border: 1px solid #689127;}
.cond-block-study input[type="radio"]:checked:before{background: #689127;}
.cond-block-study label:has(input[type="radio"]:checked){background-image: linear-gradient(0deg, rgba(235, 247, 218, 1));}
.cond-block-family input[type="radio"]:checked{border: 1px solid #9a61ab;}
.cond-block-family input[type="radio"]:checked:before{background: #9a61ab ;}
.cond-block-family label:has(input[type="radio"]:checked){background-image: linear-gradient(0deg, rgba(251, 238, 255, 1));}

@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
	input[type="radio"]{
		width: 20px;
		height: 20px;
		margin-right: 0;
	}
	input[type="radio"]:checked:before{
		width: 12px;
		height: 12px;
	}
	label:has(input[type="radio"]){
		cursor: pointer;
	}
	.radio-button .label__wrap label{
		font-size: 16px;
		padding: 0 8px 0 12px;
		line-height: 1.6;
	}
}

/*select-box*/
select{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.select-box select{
    background-color: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 8px;
    padding: 10px 15px;
    height: 46px;
    width: 100%;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
}
.select-box select:disabled{
	background-color: #f5f5f5;
	color: #818181;
    cursor: default;
}
.select-box .select-box_inner{
	position: relative;
}
.select-box .select-box_inner_text{
	font-size: 15px;
	margin-bottom: 2px;
    display: inline-block;
}
.select-box .select-box_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: 11px solid #666;
	background-repeat: no-repeat;
	pointer-events: none;
}
.select-box:has(select:disabled) .select-box_inner::after{
	border-top: 8px solid #979797;
}
.select-box_fire_kingaku{
	margin-top: 15px;
	width: 100%;
	float: left;
	margin-right: 20px;
}
.select-box_fire_kingaku .sim-w225{
	margin-top: 0;
}
@media screen and (max-width:767px) {
	.select-box_fire_kingaku .sim-w225{
		width: calc(50% - 7.5px)!important;
	}
	.select-box_fire_kingaku .sim-w225:last-child{
		margin-right: 0;
	}
}
@media screen and (min-width:768px) {
	.select-box select{
		height: 50px;
		font-size: 16px;
	}
	.select-box .select-box_inner_text{
		margin-bottom: 0;
	}
	.select-box_fire_kingaku{
		width: 470px;
	}
	.select-box_fire_kingaku .select-box{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.select-box_fire_kingaku .select-box .select-box_inner{
		width: calc(100% - 2em - 13px);
	}
}

/*幅・カラム設定*/
.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-w150{width: 150px;}
	.sim-w220{width: 220px;}
	.sim-w280{width: 280px;}
	.sim-w400{width: 400px;}
	.sim-w440{width: 440px;}
	.sim-w520{width: 520px;}
	.sim-w580{width: 580px;}
	.sim-w150,
	.sim-w220,
	.sim-w280,
	.sim-w400,
	.sim-w440,
	.sim-w520,
	.sim-w580{
		margin-right: 20px;
	}
}
.sim-mr0{
	margin-right: 0;
}
.cond-block .border_none{
  border: none;
}


/*試算結果テーブル*/
.result-table{
	border-collapse: separate;
}
.result-table tr,
.result-table th,
.result-table td{
	text-align: center;
	font-size: 12px;
	padding: 8px 5px;
	line-height: 1.5;
}
.result-table tr{
	vertical-align: middle;
	text-align: left;
}
.result-table th{
	position: relative;
	background-color: #f5f5f5;
	font-weight: normal;
	text-align: left;
	border-bottom: 1px solid #ccc;
	width: 100px;
    min-width: 100px;
    max-width: 100px;
}
.result-table td{
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background-color: #fff;
	width: 110px;
    min-width: 110px;
    max-width: 110px;
}
.table-scroll-wrapper .result-table tbody tr.row-stripe td{
	background-color: #f7f7f7;
}
.result-table th .ic-help-tipso{
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translate(0, -50%);
}
.result-table .row-type th,
.result-table .row-type td{
	background-color: #2e3184;
	color: #fff;
	font-weight: bold;
}
.result-table .row-type td{
	position: relative;
}
.result-table .row-type td .ic-type-tipso{
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translate(0, -50%);
}
.result-table .row-price td{
	font-weight: bold;
	color: #d70400;
	font-size: 15px;
	height: 60px;
}
.result-table .row-price td span{
	font-size: 12px;
}
.result-table .row-section th{
	background-color: #e0e0e0;
    color: #555;
	font-weight: bold;
	text-align: center;
    height: 30px;
    padding: 0;
	line-height: 1.4;
}
.result-table .row-section th.th-option{
	border-left: 1px solid #c7c7c7;
}
.result-table .row-section th.th-option .ic-help-tipso{
	position: static;
	transform: translate(0, 0);
}
.result-table .row-section th.th-section{
	position: absolute !important;
    left: 100px !important;
	z-index: -0 !important;
}
.result-table .row-section th.th-section > span{
	position: absolute;
    width: calc(100vw - 100px);
    top: 0;
    height: 30px;
    padding: 5px;
    left: 0 !important;
    background-color: #e0e0e0;
    border-bottom: 1px solid #ccc;
}
.result-table .row-section th:nth-of-type(1)::after{
	border-right: 1px solid #c7c7c7;
}
.result-table .row-section th .ic-help-tipso{
	position: relative;
    top: auto;
    right: auto;
    transform: none;
}

/*CVボタン*/
.result-table .row-cv td{
	padding: 5px 5px 8px 5px;
}
.result-table .row-cv .c-btn__mailing{
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 0;
	height: 45px;
}
.result-table .row-cv .c-btn__mailing:hover{
	border-bottom: 1px solid #ac0300;
}
.result-table .row-cv .c-btn__mailing span{
	font-weight: normal;
	font-size: 11px;
	display: block;
	margin-bottom: 3px;
}

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;
}
.result-table .row-cv label.c-btn__mailing-radiobtn{
	background: #f12424;
    border: 1px solid #ac0300;
    border-bottom: 1px solid transparent;
    border-radius: 5px;
    box-shadow: 0 3px 0 #ac0300;
    color: #fff;
    text-shadow: 0px 2px 3px #a62121;
    font-weight: bold;
    line-height: 1.6rem;
    margin: 0 auto;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
	justify-content: center;
    flex-wrap: wrap;
    transition: all .3s;
    width: 100%;
    height: 40px;
    cursor: pointer;
    text-decoration: none;
}
.result-table .row-cv label.c-btn__mailing-radiobtn input[type="radio"]{
	display: none;
}
.result-table .row-cv label.c-btn__mailing-radiobtn input[type="radio"]{
	display: none;
}
.result-table .row-cv label.c-btn__mailing-radiobtn:has(input[type="radio"]:checked) {
	transform: translate(0, 3px);
	background-color: #fff;
	color: #f12424;
	text-shadow: none;
    box-shadow: none;
	border-bottom: 1px solid #ac0300;
}
.result-table .row-option th,
.result-table .row-share th{
	background-color: #f2f2f2;
}
.result-table .row-option th.vertical-txt,
.result-table .row-share th.vertical-txt{
    text-orientation: upright;
    white-space: nowrap;
    border-right: 1px solid #ccc;
	color: #666;
    font-weight: bold;
    width: 24px;
    min-width: 24px;
	min-height: 100px;
	height: 100px;
    max-width: 24px;
	padding: 8px 3px;
}
.result-table .row-option th.vertical-txt .vertical-txt_inner,
.result-table .row-share th.vertical-txt .vertical-txt_inner{
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
	/*Firefox対策*/
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.result-table .row-option th.vertical-txt .vertical-txt_inner span{
	position: relative;
	writing-mode: vertical-rl;
	margin: 24px 0 0 0;
}
.result-table .row-option th.vertical-txt .vertical-txt_inner span::after,
.result-table .row-option th.vertical-txt .vertical-txt_inner span::before{
	position: absolute;
	content: "";
	width: 4px;
	height: 14px;
	background-color: #666;
	top: -14px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.result-table .row-option th.vertical-txt .vertical-txt_inner span::before{
	transform: translate(-50%, -50%) rotate(90deg);
}
.result-table .row-share th.vertical-txt .vertical-txt_inner > span{
	position: relative;
	writing-mode: vertical-rl;
	margin-bottom: 20px;
}
.result-table .row-share th.vertical-txt .vertical-txt_inner > span .ic-help-tipso{
    bottom: -20px;
    top: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    margin-left: 0;
}
.result-table .row-option th.th-option,
.result-table .row-share th.th-share{
	width: 76px;
	min-width: 76px;
	max-width: 76px;
	left: 24px !important;
}
.result-table .row-features td{
	font-size: 11px;
	vertical-align: top;
	padding: 10px 5px;
}
.result-table .row-features td li{
	text-indent: -9px;
    margin-left: 9px;
}
.result-table .row-features td li:not(:last-of-type){
	margin-bottom: 5px;
}
.table-container-long .row-type th{background-color: #085ca4;}
.table-container-long .row-type td{background-color: #146db9;}
.table-container-study .row-type th{background-color: #58801a;}
.table-container-study .row-type td{background-color: #689127;}
.table-container-family .row-type th{background-color: #885099;}
.table-container-family .row-type td{background-color: #9a61ab;}
.table-container-long .row-option th{background-color: #e7f4ff;}
.table-container-study .row-option th{background-color: #ebf7da;}
.table-container-family .row-option th{background-color: #fbeeff;}
.table-container-long .row-option th.vertical-txt{color: #146db9;}
.table-container-study .row-option th.vertical-txt{color: #689127;}
.table-container-family .row-option th.vertical-txt{color: #9a61ab;}
.table-container-long .row-option th.vertical-txt .vertical-txt_inner span::after,
.table-container-long .row-option th.vertical-txt .vertical-txt_inner span::before{background-color: #146db9;}
.table-container-study .row-option th.vertical-txt .vertical-txt_inner span::after,
.table-container-study .row-option th.vertical-txt .vertical-txt_inner span::before{background-color: #689127;}
.table-container-family .row-option th.vertical-txt .vertical-txt_inner span::after,
.table-container-family .row-option th.vertical-txt .vertical-txt_inner span::before{background-color: #9a61ab;}

th[scope="row"]::after,
.result-table .row-option th.th-option::after,
.result-table .row-share th.th-share::after{
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	height: 100%;
	border-right: 1px solid #ccc;
}
@media screen and (min-width:768px) {
	.result-table tr,
	.result-table th,
	.result-table td{
		font-size: 14px;
		padding: 8px 10px;
	}
	.result-table th{
		width: 220px;
		min-width: 220px;
		max-width: 220px;
	}
	.result-table td{
		width: 170px;
		min-width: 170px;
		max-width: 170px;
	}
	.result-table th .ic-help-tipso{
		right: 10px;
	}
	.result-table .row-price td{
		font-size: 20px;
	}
	.result-table .row-price td span{
		font-size: 16px;
	}
	.result-table .row-type td .ic-type-tipso{
		right: 10px;
	}
	.result-table .row-cv td{
		padding: 8px 10px 11px;
	}
	.result-table .row-cv .c-btn__mailing{
		font-size: 18px;
		height: 60px;
		padding: 7px 0;
	}
	.result-table .row-cv .c-btn__mailing span{
		font-size: 14px;
		margin-bottom: 0;
	}
	.result-table .row-cv label.c-btn__mailing-radiobtn{
		font-size: 16px;
		height: 50px;
	}
	.result-table .row-option th.vertical-txt,
	.result-table .row-share th.vertical-txt{
		width: 40px;
		min-width: 40px;
		max-width: 40px;
		min-height: 120px;
		height: 120px;
		padding: 10px 5px;
	}
	.result-table .row-option th.vertical-txt .vertical-txt_inner span::after,
	.result-table .row-option th.vertical-txt .vertical-txt_inner span::before{
		height: 16px;
	}
	.result-table .row-option th.th-option,
	.result-table .row-share th.th-share{
		width: 180px;
		min-width: 180px;
		max-width: 180px;
		left: 40px !important;
	}
	.result-table .row-section th.th-section > span{
		width: 849px;
	}
	.result-table .row-section th.th-section{
		left: 220px !important;
	}
	.result-table .row-features td{
		font-size: 12px;
		padding: 13px 10px;
	}
	.result-table .row-features td li span:hover{
		text-decoration: underline;
	}
	.result-table .row-features td li span.img-tipso{
		vertical-align: top;
	}
}
@media screen and (max-width:767px) {
	th[scope="row"]::before,
	.sp-thead-label__row:before{
        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;
    }
	th[scope="row"]::after,
	.sp-thead-label__row:after{
        content: "";
        position: absolute;
        top: 0;
        right: -1px;
        width: 5px;
        height: 100%;
		background-color: #f5f5f5;
    }
	.result-table .row-section th[scope="row"]::after {background-color: #e0e0e0;}
	.table-container-long .row-type th[scope="row"]::after {background-color: #085ca4;}
	.table-container-long .row-option th[scope="row"]::after {background-color: #e7f4ff;}
	.table-container-study .row-type th[scope="row"]::after {background-color: #58801a;}
	.table-container-study .row-option th[scope="row"]::after {background-color: #ebf7da;}
	.table-container-family .row-type th[scope="row"]::after {background-color: #885099;}
	.table-container-family .row-option th[scope="row"]::after {background-color: #fbeeff;}
}

/*補償内容をすべて見る*/
.btn-change-cond{
	margin-top: 6px;
}
.cond-more-block {
	position: relative;
	overflow-y: clip;
	transition: max-height 0.3s ease;
}
.cond-more-block.is-open::after{
	content: none;
}
.cond-more-block__btn {
	position: relative;
	cursor: pointer;
	text-align: center;
	margin-top: 12px;
	color: #2e3184;
	font-size: 13px;
}
.cond-more-block__btn:hover{
	text-decoration: underline;
}
.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__btn::before{
	content: '';
	position: absolute;
	bottom: calc(100% + 12px);
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
	z-index: 31;
	pointer-events: none;
}
.cond-more-block__btn.is-open::before{
	content: none;
}
@media screen and (max-width:767px) {
	.cond-more-block__btn::before{
		left: -10px;
		right: -10px;
	}
}
.cond-more-block::after{
	content: none;
}
@media screen and (min-width:768px) {
	.cond-more-block {
		position: relative;
		/*overflow: hidden;*/
		transition: max-height 0.3s ease;
	}
	.cond-more-block__btn {
		margin-top: 15px;
	}
	.cond-more-block__btn span{
		font-size: 15px;
	}
}

/*試算結果（選択プラン+合計保険料）*/
.result-summary{
	border: 2px solid #9a61ab;
	padding: 15px;
	border-radius: 10px;
}
.result-summary-ttl{
	font-weight: bold;
	white-space: nowrap;
	margin-right: 20px;
}
.result-summary-plan{
	margin-right: 20px;
	width: 100%;
}
.result-summary-plan dl{
	display: flex;
	margin-top: 5px;
}
.result-summary-plan dl dt{
	margin: 0 10px 5px 0;
    display: inline-block;
}
.result-summary-plan dl dt span{
    font-weight: bold;
    font-size: 12px;
    color: #666;
    background-color: #ededed;
    border-radius: 20px;
	width: 110px;
	min-width: 110px;
	padding: 2px 10px;
    text-align: center;
    display: inline-block;
}
.result-summary-plan dl.person-companion{
	margin-top: 5px;
}
.result-summary-plan dl.person-companion .result-companion-plan{
	display: block;
}
.result-companion-plan:not(:last-of-type)::after{
	content: "、";
}
.result-summary-price{
	position: relative;
	padding-left: 20px;
	border-left: 1px dotted #aaa;
	min-width: 210px;
}
.result-summary-price .result-summary-price-tx{
	position: relative;
    font-size: 22px;
    color: #d70400;
    font-weight: bold;
    text-align: center;
    margin-right: 30px;
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 40px);
	min-height: 40px;
    justify-content: center;
    align-items: center;
}
.result-summary-price .result-summary-price-tx span{
	font-size: 14px;
	margin-left: 8px;
}
.result-summary-price .result-summary-price-tx span.result-total-price{
	font-size: 22px;
}
.result-summary .c-btn__mailing{
	width: 240px;
	font-size: 18px;
	text-align: center;
	height: 60px;
    padding: 6px 0;
}
.result-summary .c-btn__mailing span{
	font-size: 14px;
	font-weight: normal;
	display: block;
}
.result-summary .c-btn__mailing--disabled{
    background: #bbb;
    border-color: #bbb;
    pointer-events: none;
    cursor: default;
    text-shadow: none;
    box-shadow: none;
	color: #f2f2f2;
}
.result-summary-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width:768px) {
	.result-summary{
		display: flex;
		padding: 20px;
	}
	.result-summary-plan{
		display: flex;
	}
	.result-summary-plan dl{
		margin-top: 0;
	}
	.result-summary-plan dl dt span{
		font-size: 14px;
		width: 130px;
		min-width: 130px;
	}
	.result-summary-price .result-summary-price-tx{
		font-size: 26px;
	}
	.result-summary-price .result-summary-price-tx span{
		font-size: 16px;
		margin-top: 5px;
	}
	.result-summary-price .result-summary-price-tx span.result-total-price{
		margin-top: 0;
		font-size: 26px;
		margin-left: 0;
	}
	.result-summary-price::after{
		position: absolute;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 12px solid #cccccc;
		border-right: 0;
		top: 50%;
		right: 10px;
		transform: translate(0, -50%);
	}
}
@media screen and (max-width:767px) {
	.result-summary-plan dl{
		margin-top: 10px;
	}
	.result-summary-plan dl dt{
	    white-space: nowrap;
	}
	.result-summary-ttl{
		border-bottom: 1px dotted #aaa;
		padding-bottom: 5px;
		margin-right: 0;
	}
	.result-summary-price{
		border: none;
		padding-left: 0;
		margin-top: 10px;
	}
	.result-summary-price .result-summary-price-tx{
		margin: 10px 0;
		align-items: baseline;
	}
	.result-summary .c-btn__mailing{
		line-height: 1.4;
		padding: 8px 0;
		width: 100%;
	}
}

/*矢印*/
.slider-nav{
    top: 0;
}
.btn-prev,.btn-next{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
    top: 50px;
    background: #fff;
    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;
	transition: opacity .1s;
}
.btn-prev{
	left: -70px;
}
.btn-next{
	right: -70px;
}
.btn-prev:hover,.btn-next:hover{
	opacity: 0.6;
}
.btn-prev.disabled,
.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: "";
    margin: auto;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50%;
    height: 20px;
    width: 20px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform: translate(-50%, 0) rotate(45deg);
}
.btn-prev span::after{
    border-left: 4px solid #999;
    border-bottom: 4px solid #999;
	margin-left: 3px;
}
.btn-next span::before{
    border-right: 4px solid #999;
    border-top: 4px solid #999;
	margin-left: -6px;
}
@media screen and (max-width:1220px) {
	.btn-prev,.btn-next{
		width: 50px;
		height: 50px;
		border-radius: 50%;
		top: 75px;
		box-shadow: none;
		background-color: #999;
		border: none;
	}
	.btn-prev:hover,.btn-next:hover{
		opacity: 1;
	}
	.btn-prev{
		left: -28px;
	}
	.btn-next{
		right: -28px;
	}
	.btn-prev span,btn-next span{
		width: 40px;
		height: 40px;
	}
	.btn-prev span::after,
	.btn-next span::before{
		border-color: #fff;
	}
}

/*タイプ選択チェックボックスボタン（ファミリーページ）のハイライト*/
td.col-selected {
	background-color: rgba(251, 238, 255, 1) !important;
}

/*ヘルプアイコン（ツールチップ）*/
.ic-help-tipso{
	position: relative;
    display: inline-block;
    background-color: #888;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: text-bottom;
    margin-left: 2px;
    right: 0;
	top: 0;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.ic-help-tipso img{
	position: absolute;
    height: 10px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	width: 100%;
    height: 100%;
    padding: 3px;
    border-radius: 50%;
}

/*注意事項*/
.note-area{
	text-align: left;
}
.note-area p{
	margin-top: 8px;
}
.note-area ul > li{
	margin-top: 8px;
	font-size: 12px;
	width: 100%;
}
.note-attention_box{
	display: flex;
	padding: 10px;
	margin-top: 20px;
	border-radius: 10px;
	font-size: 12px;
}
.note-attention_box p{
	margin: 0;
}
.note-attention_box .note-attention_icon{
	margin-right: 5px;
}
.p-price__cautionBox {
	border: 1px dotted #aaa;
	padding: 15px;
	font-size: 12px;
	margin: 10px 0;
}
.note-area .insTable_small{
	font-size: 12px;
}
@media screen and (min-width:768px) {
	.note-area ul > li{
		font-size: 13px;
	}
	.note-attention_box{
		font-size: 13px;
	}
	.p-price__cautionBox {
		font-size: 13px;
		margin: 20px 0;
	}
	.note-area .insTable_small{
		font-size: 13px;
	}
}

/* シミュレーター ローディング / 該当なし */
.sim-loading,
.sim-no-result {
	padding: 30px;
	text-align: center;
	color: #666;
	font-size: 16px;
}