@charset "UTF-8";

/*------------------------------------------------------------
特長
------------------------------------------------------------*/

/* 特徴1
------------------------------------------------------------*/
.block-ex {
	margin-top: 15px;
	border: 2px solid #ccc;
	border-radius: 15px;
	overflow: hidden;
}
.block-ex__inner {
	padding: 12px;
}
.block-ex__ttl {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	padding: 10px 12px;
	background-color: #f0f0f0;
}

.block-ex__case {
	margin-top: 20px;
}
.block-ex__case:last-child {
	padding-top: 20px;
	border-top: 2px dotted #c2cad3;
}
.block-ex__ttl-sub {
	display: flex;
	align-items: center;
	color: #009d95;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 15px;
}
.block-ex__ttl-sub img {
	width: 65px;
	margin-right: 12px;
}
.block-ex__case:last-child .block-ex__ttl-sub {color: #d82b45;}

.block-ex__2col .tbl-basis {
	margin-top: 5px;
}
.block-ex__2col .tbl-basis th,
.block-ex__2col .tbl-basis td {
	padding: 8px 10px;
}
.block-ex__2col .tbl-basis th {
	color: #fff;
	background-color: #666;
}
.block-ex__2col .tbl-basis td {
	font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
	.block-ex {
		margin-top: 25px;
	}
	.block-ex__inner {
		padding: 20px 25px;
	}
	.block-ex__ttl {
		font-size: 2.0rem;
		padding: 12px 25px;
	}
	.block-ex__ttl-sub {
		font-size: 2.0rem;
	}

	.block-ex__2col {
		display: flex;
		gap: 0 20px;
	}
	.block-ex__2col > * {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.block-ex__2col .img-res {
		margin-top: 15px;
	}
	.block-ex__ttl-sub + h6 {
		font-size: 1.6rem;
	}
}

/* 特徴2
------------------------------------------------------------*/
.block-use {
	display: flex;
	width: 90%;
	margin-top: 20px;
	margin: 20px auto 0;
}
.block-use > div {
	position: relative;
	width: 100%;
}
.block-use dt {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding: 5px 15px;
	border-radius: 8px;
	background: #a18245;
}
.block-use dd {
	text-align: center;
}
.block-use dd img{
	margin: 10px 0;
}
@media screen and (max-width: 767px) {
	.block-use {
		flex-direction: column;
	}
	.block-use > div:first-child {
		padding-bottom: 15px;
		margin-bottom: 15px;
		border-bottom: 2px dotted #d9ccb3;
	}
	.block-use dd img{
		height: 100px;
	}
}
@media screen and (min-width: 768px) {
	.block-use {
		width: 80%;
	}
	.block-use > div:first-child {
		padding-right: 20px;
		margin-right: 20px;
		border-right: 2px dotted #d9ccb3;
	}
}

/* 特徴3
------------------------------------------------------------*/
.yencan .txt-bg--man {background-color: #227bc3;}
.yencan .txt-bg--woman {background-color: #eb6687;}

/* 将来のための資金の準備 */
.block-case{
	display: flex;
	gap: 15px 0;
}
.block-case dl{
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.block-case dl dt{
	font-size: 1.6rem;
	font-weight: bold;
	padding: 6px 10px;
	background-color: #d9ccb3;
}
.block-case dl dd{
	border: 2px solid #d9ccb3;
	border-top: none;
	border-radius: 0 0 8px 8px;
}

.block-case dl dd > div{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 15px;
	line-height: 1.4;
	padding: 12px 15px;
}
.block-case dl dd > div:first-child{
	border-bottom: 2px dotted #d9ccb3;
}

.block-case dl dd .txt-bg {
	margin: 0;
}

.block-case dl dd .block-case__price > p{
	display: flex;
	align-items: center;
}
.block-case dl dd .txt-henrei,
.block-case dl dd .txt-ruikei{
	display: inline-block;
	text-align: center;
	padding: 4px 6px;
	min-width: 125px;
	border-radius: 5px;
	box-sizing: border-box;
}
.block-case dl dd .txt-henrei{
	color: #e04048;
	border: 1px solid #e04048;
}
.block-case dl dd .txt-ruikei{
	color: #fff;
	background-color: #e04048;
}
.block-case dl dd p .txt-num01 {font-size: 3.2rem; margin-right: 2px;}
.block-case dl dd p .txt-num02 {font-size: 2.4rem; margin-right: 2px;}

.block-case dl dd .box-arrow{
	position: relative;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	padding: 5px 10px 10px;
	margin: 20px 0 0 10px;
	background-color: #a18245;
}
.block-case dl dd .box-arrow::before{
	position: absolute;
	content: '';
	display: block;
	width: 0;
	height: 0;
	top: -10px;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	border-bottom: 25px solid #a18245;
	border-left: 65px solid transparent;
	border-right: 65px solid transparent;
	z-index: -10;
}
.block-case dl dd .box-arrow .box-arrow__rate{
	color: #a18245;
	font-size: 1.4rem;
	padding: 3px 20px;
	margin-top: 5px;
	background-color: #fff;
	border-radius: 3px;
}
@media screen and (max-width: 767px) {
	.block-case{
		flex-direction: column;
	}
	.block-case dl dd .block-case__price > p{
		flex-direction: column;
	}
	.block-case dl dd p .txt-num01 {font-size: 2.6rem;}
	.block-case dl dd p .txt-num02 {font-size: 2.0rem;}
}
@media screen and (min-width: 768px) {
	.block-case{
		gap: 0 15px;
	}
	.block-case dl dt{
		font-size: 1.8rem;
		padding: 8px 15px;
	}
	.block-case dl dd{
		font-size: 1.5rem;
	}
	.block-case dl dd > div{
		gap: 0 10px;
	}
	.block-case dl dd .txt-bg {
		width: 35px;
	}
	.block-case dl dd .txt-henrei,
	.block-case dl dd .txt-ruikei{
		margin-right: 10px;
	}
}

/* 万一に備える死亡保障の準備 */
.block-death-benefit {
	display: flex;
	gap: 0 15px;
}

.block-death-benefit .tbl-basis {
	width: 100%;
	font-size: 1.6rem;
}
.block-death-benefit .tbl-basis th,
.block-death-benefit .tbl-basis td {
	padding: 5px 10px;
}

.block-death-benefit .tbl-basis thead th{
	color: #fff;
	font-weight: bold;
	padding: 8px 10px;
}
.block-death-benefit .tbl-basis:first-child thead th {background-color: #e95377;}
.block-death-benefit .tbl-basis:last-child thead th {background-color: #f08300;}

.block-death-benefit .tbl-basis tbody tr:last-child td {font-weight: bold;}
.block-death-benefit .tbl-basis tbody tr:last-child td .price {font-size: 2.4rem;}
.block-death-benefit .tbl-basis:first-child tbody tr:last-child td span {color: #e95377;}
.block-death-benefit .tbl-basis:last-child tbody tr:last-child td span {color: #f08300;}

.block-death-benefit .tbl-basis .txt-bg {
	background-color: #595959;
}

@media screen and (max-width: 767px) {
	.block-death-benefit {
		gap: 15px 0;
		flex-direction: column;
	}
	.block-death-benefit .tbl-basis {
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 768px) {
	.block-death-benefit .tbl-basis:first-child {flex: 2;}
	.block-death-benefit .tbl-basis:last-child {flex: 1;}

}

/* 特徴4
------------------------------------------------------------*/
.block-needs--2col{
	display: flex;
	gap: 0 15px;
	text-align: center;
	margin-top: 15px;
}
.block-needs--2col > div {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.block-needs--2col dt{
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 8px 10px;
	background-color: #a18245;
}
.block-needs--2col dd{
	padding: 10px;
	border: 2px solid #d9ccb3;
	border-top: none;
	border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767px) {
	.block-needs--2col{
		flex-direction: column;
		gap: 15px 0;
	}
	.block-needs--2col dt{
		font-size: 1.6rem;
	}
	.block-needs--2col dd{
		font-size: 1.5rem;
	}
}


/*------------------------------------------------------------
保険料・払戻率シミュレーション
------------------------------------------------------------*/

/* box-hosyo--scroll
------------------------------------------------------------*/
.box-hosyo--scroll{
	position: relative;
}

.box-hosyo--scroll .tbl-sim .col2 {
	width: 80px;
}
.box-hosyo--scroll .tbl-sim .col3,
.box-hosyo--scroll .tbl-sim .col5,
.box-hosyo--scroll .tbl-sim .col7,
.box-hosyo--scroll .tbl-sim .col9 {
	width: 55px;
}
@media screen and (max-width: 767px) {
	.box-hosyo--scroll .tbl-sim{
		position: relative;
		display: block;
		overflow-x: scroll;
		/* min-width: 840px; */
		table-layout: fixed!important;
		white-space: nowrap;
	}
	.box-hosyo--scroll .tbl-sim .th-sticky,
	.box-hosyo--scroll .tbl-sim .th-sticky2 {
	position: sticky;
	top: 0;
	left: 0;
		z-index: 5;
	}
	.box-hosyo--scroll .tbl-sim .th-sticky {
		border-right: none;
	}
	.box-hosyo--scroll .tbl-sim .th-sticky::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-right: 2px solid #ccc;
	}
	.box-hosyo--scroll .tbl-sim .th-sticky2 {
	left: 112px;
	}

	.box-hosyo--scroll .tbl-sim .tbl-sim__logo {
		width: 184px;
		min-width: 184px;
	}
	.box-hosyo--scroll .tbl-sim .col1 {
		width: 112px;
		min-width: 112px;
	}
	.box-hosyo--scroll .tbl-sim .col2 {
		width: 72px;
		min-width: 72px;
	}
	.box-hosyo--scroll .tbl-sim .col3,
	.box-hosyo--scroll .tbl-sim .col5,
	.box-hosyo--scroll .tbl-sim .col7,
	.box-hosyo--scroll .tbl-sim .col9 {
		width: 70px;
		min-width: 70px;
	}
	.box-hosyo--scroll .tbl-sim .col4,
	.box-hosyo--scroll .tbl-sim .col6,
	.box-hosyo--scroll .tbl-sim .col8,
	.box-hosyo--scroll .tbl-sim .col10 {
		width: 100px;
		min-width: 100px;
	}

	.box-hosyo--scroll:not(.scrolled)::after {
		content: " ";
		position: absolute;
		top: 50px;
		bottom: auto;
		left: 0;
		right: 0;
		display: block;
		width: 140px;
		height: 120px;
		margin: auto;
		background-image: url(/img/common/img_tbl-arrow.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		opacity: 0.6;
		z-index: 10;
	}
}

table.tbl-sim th,
table.tbl-sim td {
	font-size: 1.5rem;
	vertical-align: middle;
	padding: 15px 8px;
	line-height: 1.3;
	height: auto;
}

.tbl-sim th{
	background-color: #fff;
}
.tbl-sim th.item-ttl{
	background-color: #f5f1e6;
}
.tbl-sim th.item-ttl.th-sticky2{
	font-weight: normal;
	background-color: #f5f1e6;
}

.tbl-sim td .txt-bold {
	font-size: 1.6rem!important;
}
.tbl-sheet .tbl-sim__span .price {
	font-size: 2.2rem !important;
}

@media screen and (max-width: 767px) {
	.plan__ttl th,
	.plan__ttl td {
		display: table-cell!important;
	}
	table.tbl-sim th,
	table.tbl-sim td {
		padding: 15px 5px;
	}
	.tbl-sim td .txt-bold {
		font-size: 1.4rem!important;
	}
	.tbl-sheet .tbl-sim__price .price{
		font-size: 2.4rem !important;
	}
}

.plan1__ttl b,
.plan2__ttl b,
.plan3__ttl b,
.plan4__ttl b {
	font-size: 2.6rem !important;
}
.bd-top-add {
	border-top: 2px solid #ccc;
}
.yencan .item-ttl {
	vertical-align: middle !important;
}