@charset "UTF-8";
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* サービス一覧 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 共通設定 */
/* - - - - - - - - - */
h2.secTitle {
	text-align: center;
	font-size: 35px;
}
.txtMin {/*補足*/
	font-size: 14px;
}
.txtDMin {/*補足、改行*/
	font-size: 14px;
	display: block;
}
.serviceList li {
	width: 390px;
	margin-bottom: 30px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
}
.sLitem-max {/*2column*/
	width: 49%!important;
}
/* 上部アイコン・テキスト */
.sLhd {
	padding: 25px 20px 20px;
	display: flex;
}
.sLhd img {/*アイコン*/
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
.sLhd p {
	font-weight: bold;
	font-size: 16px;
	margin: 0;
	line-height: 1.5;
}
/* サービス名 */
.sLtitle {
	width: 100%;
	height: 70px;
	display: grid;
	place-items: center;
}
.sLtitle h3,
.sLitem-normal h4 {
	margin: 0;
	text-align: center;
	font-size: 22px;
	line-height: 1.2;
}
/* 説明 */
.sLtxt {
	padding: 20px 20px 25px;
	margin: 0;
	font-size: 16px;
}
/* その他サービス */
.lifeBox .sLitem-normal {
	padding: 25px;
}
.lifeBox .sLitem-normal h4 {
	color: var(--main-g);
}
.lifeBox .sLitem-normal ul {
	margin-top: 25px;
}
.lifeBox .sLitem-normal li {
	border: none;
	padding:0 0 0 20px;
	margin:0 0 10px;
	position: relative;
}
.lifeBox .sLitem-normal li::before {
	content: '◆';
	position: absolute;
	top: 0;
	left: 0;
	color: var(--sub-g);
}
/* 終活ライフケア */
/* - - - - - - - - - */
.lifeBox li {
	border: solid 3px var(--sub-g);
}
.lifeBox .sLtitle {
	color: var(--main-g);
	background-color: rgba(174, 210, 101,0.3);
}

/* 相続サポート */
/* - - - - - - - - - */
.endBox li {
	border: solid 3px var(--sub-o);
}
.endBox .sLtitle {
	color: var(--main-o);
	background-color: rgba(253, 230, 138,0.3);
}
.sLitem a {/*詳細はこちら*/
	display: block;
	padding: 10px 20px;
	text-align: right;
	color: var(--main-o);
	background-color: rgba(253, 230, 138,0.3);
	font-weight: bold;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 手続き */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.procedureBox {
	width: 100%;
	margin: 30px auto 0;
	border-collapse: collapse;
}
.procedureBox tr {
	border: solid 1px var(--border);
}
.procedureBox th,
.procedureBox td {
	padding: 10px 5px;
}
.procedureBox td {
	padding: 20px;
}
.procedureBox td:nth-child(2) {
	border-right: dashed 1px var(--border);
	border-left: dashed 1px var(--border);
}
.procedureBox tr:first-child {
	border: none;
	border-bottom: solid 5px #fff;
}
.procedureBox tr:first-child th {
	padding: 15px 5px;
	background-color: #eee;
	font-size: 18px;
	letter-spacing: 3px;
}
.procedureBox tr:first-child th:nth-child(2) {
	border-right: solid 3px #fff;
	border-left: solid 3px #fff;
}

/* 早めに着手しておいた方がいいこと */
/* - - - - - - - - - */
.pBlist h3 {
	display: inline;
	font-weight: normal;
	font-size: 16px;
	margin: 0 0 5px;
	padding: 5px 10px;
	color: var(--sub-o);
	background-color: rgb(251,191,36,0.1);
}
.pBlist p {
	font-size: 14px;
	margin: 5px 0 0;
}
.pBlist p::before {
	content: '・';
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 流れ */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.flowWrap li {
	padding-left: 100px;
	counter-increment: number;
	position: relative;
	margin-bottom: 50px;
}
.flowWrap li::before {
	position: absolute;
	top: 0;
	left: 0;
    content: counter(number);
	display: grid;
  	place-items: center;
	width: 80px;
	height: 80px;
	background-color: #eee;
	border-radius: 100%;
	font-size: 30px;
	font-weight: bold;
}
.flowWrap li h3 {
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: dashed 2px var(--border);
}
.flowBox {
	display: flex;
	justify-content: space-between;
}
.flowBox img {
	width: 150px;
	margin-left: 30px;
}
.flowItem  {
	flex: 1;
}

/* ボタン */
/* - - - - - - - - - */
.flowMail,
.flowMap {
	width: 50%;
	height: 70px;
	display: grid;
  	place-items: center;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.flowMail {/*メール*/
	background-color: var(--sub-g);
}
.flowMap {/*マップ*/
	background-color: #79DAF7;
}

@media screen and (max-width:1400px) {
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* サービス一覧 */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* 共通設定 */
	/* - - - - - - - - - */
	h2.secTitle {
		font-size: 30px;
	}
	.serviceList li {
		width: 49%;
		margin-bottom: 30px;
		border-radius: 5px;
		display: flex;
		flex-direction: column;
	}
}/* @media screen and (max-width:1400px)  */

@media screen and (max-width:960px) {
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* サービス一覧 */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	h2.secTitle {
		font-size: 25px;
	}
	.serviceList li,
	.sLitem-max {
		width: 100%!important;
	}

	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* 流れ */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.flowWrap li {
		padding-left: 60px;
	}
	.flowWrap li::before {
		place-items: center;
		width: 50px;
		height: 50px;
		font-size: 30px;
	}
	.flowBox {
		align-items: flex-start;
	}
	.flowBox img {
		width: 150px;
		margin-left: 20px;
	}
	/* ボタン */
	/* - - - - - - - - - */
	.flowMail,
	.flowMap {
		width: 300px;
	}
}/* @media screen and (max-width:960px)  */



@media screen and (max-width:600px) {
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* 流れ */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.flowWrap li {
		padding-left: 60px;
	}
	.flowWrap li::before {
		place-items: center;
		width: 50px;
		height: 50px;
		font-size: 18px;
	}
	.flowBox {
		align-items: flex-start;
		flex-direction: column-reverse;
	}
	.flowBox img {
		width: 100%;
		margin:10px auto;
	}
	/* ボタン */
	/* - - - - - - - - - */
	.flowMail,
	.flowMap {
		width: 300px;
		margin: 0 auto;
	}	
}/* @media screen and (max-width:600px)  */



@media screen and (max-width:480px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	h2.secTitle {
		font-size: 4.5vw;
		margin-bottom: 10px;
	}
	
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* 手続き */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.stWtap {
		overflow: scroll;
		position: relative;
		margin-top: 30px;
	}
	.stWtap::before {
		content: '\e4ba 左右にスクロールできます。';
		font-size: 14px;
		font-family: var(--font-a);
		color: var(--main-o);
	}
	.procedureBox {
		overflow: hidden;
		margin: 0;
	}
	.procedureBox th,
	.procedureBox td {
		white-space: nowrap;
	}

}/* @media screen and (max-width:480px)  */
