@charset "UTF-8";
/* CSS Document */

/* ------------------------------------------
改行場所
------------------------------------------ */

.il1040-500,
.il960-768,
.il920-768,
.il834,
.il768,
.il767,
.il680,
.il640,
.il620,
.il540,
.il420,
.blockPc,
.blockSmt{ display: none; }

@media print, screen and (max-width: 1040px) and (min-width: 500px){ .il1040-500{ display: inline;} }
@media print, screen and (max-width: 960px) and (min-width: 768px) { .il960-768{ display: inline; } }
@media print, screen and (max-width: 920px) and (min-width: 768px) { .il920-768{ display: inline; } }
@media print, screen and (min-width: 834px) { .il834{ display: inline; } }
@media print, screen and (min-width: 768px) {
	.il768{ display: inline; }
	.blockPc{ display: block; }
}
@media print, screen and (min-width: 375px) { .il375{ display: inline; } }

@media print, screen and (max-width: 767px) {
	.il767{ display: inline; }
	.blockSmt{ display: block; }
}
@media print, screen and (max-width: 680px) { .il680{ display: inline; } }
@media print, screen and (max-width: 640px) { .il640{ display: inline; } }
@media print, screen and (max-width: 620px) { .il620{ display: inline; } }
@media print, screen and (max-width: 540px) { .il540{ display: inline; } }
@media print, screen and (max-width: 420px) { .il420{ display: inline; } }
@media print, screen and (max-width: 374px) { .il374{ display: inline; } }

/* ------------------------------------------
フレックスボックス関連
------------------------------------------ */

.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex.aiC{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex.fwW{
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex.jcSB{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media print, screen and (min-width: 768px) { 
    .flex.aiC-pc{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
	
	.flex.fwW-pc{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

    .flex.jcSB-pc{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media print, screen and (max-width: 767px) {
    .flex.aiC-smt{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
	
	.flex.fwW-smt{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	
	.flex.fdC-smt{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

    .flex.jcSB-smt{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
	.flex.fdCol-smt{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/* ------------------------------------------
practitioner.html(開業医)
billion.html(資産10億円以上)
landowner.html(地主)
trial.html(生前対策プラン)
flexを使った横並びレイアウト
------------------------------------------ */

@media print, screen and (min-width: 768px) {
	.flex-layout01 > div{
		width: calc( 50% - 1.5rem - 0.1px );
		margin-left: 3rem;
	}
	.flex-layout01 > div:first-of-type{ margin-left: 0; }
}
@media print, screen and (max-width: 767px) {
	.flex-layout01 > div{
		width: 100%;
		margin-top: 3rem;
	}
	.flex-layout01 > div:first-of-type{ margin-top: 0; }
}

/* ------------------------------------------
practitioner.html(開業医)
billion.html(資産10億円以上)
landowner.html(地主)
trial.html(生前対策プラン)
の各ご相談の流れ
------------------------------------------ */

ul.consultation-flow{ width: calc( 100% - 14px ); }

ul.consultation-flow > li{
	border: 1px solid #134674;
	position: relative;
	padding: 1rem 0.5rem;
}

ul.consultation-flow > li:first-of-type:before{ content: 'STEP 1' }
ul.consultation-flow > li:nth-of-type(2):before{ content: 'STEP 2' }
ul.consultation-flow > li:nth-of-type(3):before{ content: 'STEP 3' }
ul.consultation-flow > li:nth-of-type(4):before{ content: 'STEP 4' }
ul.consultation-flow > li:before{
	background: #134674;
	color: #dcb810;
	font-weight: bold;
	padding: 0.5rem 1rem;;
	position: absolute;
	top: -14px;
	left: -14px;
	text-align: center;
	width: 75px;
	height: 28px;
}
ul.consultation-flow > li:after{
	content: '';
	display: block;
	position: absolute;
}

@media print, screen and (min-width: 768px) {
	ul.consultation-flow > li{
		width: calc( ( 100% - 9rem ) / 4 - 0.1px );
		margin-left: 3rem;
	}
	ul.consultation-flow > li:first-of-type{ margin-left: 0; }
	ul.consultation-flow > li:after{
		border-left: 15px solid #134674;
		border-top: 15px solid transparent;
		border-bottom: 15px solid transparent;
		top: calc( 50% - 15px );
		right: calc( -1.6rem - 7.5px  );
		
	}
	ul.consultation-flow > li:last-of-type:after{ content: none; }
}

@media print, screen and (max-width: 767px) {
	ul.consultation-flow > li{
		margin-top: 4rem;
		width: 100%;
	}
	ul.consultation-flow > li:first-of-type{ margin-top: 0; }
	
	ul.consultation-flow > li:after{
		border-left: 15px solid transparent;
		border-right: 15px solid transparent;
		border-top: 15px solid #134674;
		bottom: calc( -4rem + 7.5px );
		left: calc( 50% - 15px );
		
	}
	ul.consultation-flow > li:last-of-type:after{ content: none; }
}

/* ------------------------------------------
practitioner.html(開業医)
billion.html(資産10億円以上)
landowner.html(地主)
trial.html(生前対策プラン)
ボタン各種
------------------------------------------ */
.trial-btn,
.trial-btn02{
	margin-right: auto;
	margin-left: auto;
	width: 100%;
}
.trial-btn{ max-width: 420px; }

.trial-btn02{ text-align: center;}
@media print, screen and (min-width: 768px) {
	.trial-btn02{ max-width: 750px; }
}
@media print, screen and (max-width: 767px) {
	.trial-btn02{ max-width: 530px; }
}

.trial-menu01{ margin: 0 auto 5rem auto; }
.trial-menu01 >li{ margin-left: 2rem; }
.trial-menu01 >li:first-of-type{ margin-left: 0; }

@media print, screen and (min-width: 901px) {
	.trial-menu01 >li{ width: calc( ( 100% - 6rem ) / 4 - 0.1px ); }
}
@media print, screen and (max-width: 900px) {
	.trial-menu01{ max-width: 640px; }
	.trial-menu01 >li{
		width: calc( ( 100% - 2rem ) / 2 - 0.1px );
		margin-top: 2rem;
	}
	
	.trial-menu01 >li:first-of-type,
	.trial-menu01 >li:nth-of-type(2){ margin-top: 0; }
	.trial-menu01 >li:nth-of-type(odd){ margin-left: 0; }
}

.trial-btn > a{ padding: 2rem 3rem 2rem 1.5rem; }
.trial-menu01 >li a{ padding: 2rem 4rem 2rem 1.5rem; }

.trial-btn > a,
.trial-btn02 > a,
.trial-menu01 >li a{
	background: #134674;
	box-shadow: 0 4px 0 #60707f;
	border-radius: 5px;
	color: #ffffff;
	display: block;
	font-size: 115%;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	text-decoration: none;
	-webkit-transition: none;
    transition: none;
}

.trial-btn02.dvd01 > a{
	background: #f49725;
	box-shadow: 0 4px 0 #654722;
}

.trial-btn:hover > a,
.trial-btn02:hover > a,
.trial-menu01 >li:hover > a{
	top: 2px;
    box-shadow: 0 2px 0 #60707f;
    color: #fff;
}
.trial-btn02.dvd01:hover > a{ box-shadow: 0 2px 0 #654722; }

.trial-btn > a:after,
.trial-btn02 > a:after,
.trial-menu01 >li a:after{
	content: '';
	border: 3px solid;
	border-color: #ffffff #ffffff transparent transparent;
	display: block;
	position: absolute;
	right: 13px;
	width: 8px;
	height: 8px;
}
.trial-btn > a:after,
.trial-btn02 > a:after{
	transform: rotate(45deg);
	top: calc( 50% - 9.5px + 4px );
}

.trial-menu01 >li a:after{
	transform: rotate(135deg);
	top: calc( 50% - 9.9px );
}


@media print, screen and (min-width: 768px) {
	.trial-btn02 > a { padding: 2rem 3rem 2rem 1.5rem; }
}
@media print, screen and (max-width: 767px) {
	.trial-btn > a{ text-align: center;	}
	.trial-btn02 > a { padding: 1.5rem 3rem 1.5rem 1.5rem; }
}



/* ------------------------------------------
practitioner.html(開業医)
billion.html(資産10億円以上)
landowner.html(地主)
trial.html(生前対策プラン)
リスト各種
------------------------------------------ */

.trial-list01{
	list-style: disc;
	padding-left: 3rem;
}

/* ------------------------------------------
trial.html(生前対策プラン)
相続対策コンサルティングのサービス内容 リスト
------------------------------------------ */
.trial-consl-list01 > li{ margin-top: 10px; }
.trial-consl-list01 > li:first-of-type{ margin-top: 0; }

.trial-consl-list01 > li > p img{
	padding-right: 10px;
	vertical-align: middle;
	position: relative;
	width: 118px;
}

.trial-consl-list01 > li > p > span > i{ font-style: normal; }

@media print, screen and (min-width: 768px) {
	
	.trial-consl-list01 > li > p >span{
		font-size: 3.4rem;
		vertical-align: middle;
	}
}

@media print, screen and (max-width: 767px) {
	.trial-consl-list01 > li > p img{
		display: inline;
		padding-bottom: 10px;
	}
	
	.trial-consl-list01 > li > p >span{
		font-size: 2.85rem;
		letter-spacing: -0.2rem;
		vertical-align: baseline;
	}
	
	.trial-consl-list01 > li > p > span > i{
		font-size: 2.25rem;
		vertical-align: baseline;
	}
}