@charset "utf-8";

/* -----------------------------
	養育費について
-------------------------------- */
.lead-area{
	background-color: #fff;
}
.isharyou .lead-area,
.youikuhi .lead-area{
	text-align: left;
}
.isharyou .lead-area .inner,
.youikuhi .lead-area .inner{
	display: flex;
	gap: 60px;
	align-items: center;
}
.isharyou .lead-area .inner .txt-box,
.youikuhi .lead-area .inner .txt-box{
	width: 710px;
}
.isharyou .lead-area .inner .img,
.youikuhi .lead-area .inner .img{
	width: calc(100% - 770px);
}
.lead-area .catch{
	margin: 0 0 30px;
}
.youikuhi .lead-area .inner{
	display: flex;
	gap: 60px;
}
@media screen and (max-width: 768px){
	.lead-area{
		padding: 30px 20px 40px;
		margin: 0;
	}
	.isharyou .lead-area .inner,
	.youikuhi .lead-area .inner{
		flex-wrap: wrap;
		gap: 0px;
		flex-direction: column-reverse;
	}
	
	.isharyou .lead-area .inner .txt-box,
	.youikuhi .lead-area .inner .txt-box{
		width: 100%;
	}
	
	.isharyou .lead-area .inner .img,
	.youikuhi .lead-area .inner .img{
		width: 100%;
		text-align: center;
		margin: 0 0 15px;
	}
	.isharyou .lead-area .inner .img img,
	.youikuhi .lead-area .inner .img img{
		width: 100%;
		max-width: 260px;
	}
	.isharyou .lead-area .inner .img.wide img,
	.youikuhi .lead-area .inner .img.wide img{
		max-width: inherit;
	}
	
	.lead-area .catch{
		margin: 0 0 10px;
	}
	
}
/* -----------------------------
	konwledge-area
-------------------------------- */
.konwledge-area{
	padding: 80px 0;
	background-color: var(--rightblue);
}
.konwledge-area .fs-wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.konwledge-area .konwledge-box{
	display: grid;
	grid-template-areas:
	"box01 box03"
	"box02 box02";
	gap: 30px;
	margin: 50px 0 0;
}
.youikuhi .konwledge-area .konwledge-box{
	grid-template-areas:
	"box01 box01"
	"box02 box02"
	"box03 box03";
}
.konwledge-area .konwledge-box .box{
	padding: 30px;
	background-color: #fff;
	box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
	position: relative;
}
.konwledge-area .konwledge-box .box .ttl{
    font-size: 2.4rem;
	line-height: 1.5;
    margin: 0 0 15px;
    text-align: center;
    color: var(--main-color);
	font-weight: 500;
}
.konwledge-area .konwledge-box .box01{
	grid-area: box01;
}
.konwledge-area .konwledge-box .box02{
	grid-area: box02;
}
.konwledge-area .konwledge-box .box03{
	grid-area: box03;
}
.konwledge-area .konwledge-box .box02 .situation-list{
	display: flex;
	gap: 20px;
	margin: 20px 0;
}
.konwledge-area .konwledge-box .box02 .situation-list li{
	width: calc((100% - 20px) / 2);
	padding: 30px;
	background-color: var(--pink1);
	border-radius: 8px;
}
.konwledge-area .konwledge-box .box02 .situation-list li.increase{
	background-color: var(--pink1);
}
.konwledge-area .konwledge-box .box02 .situation-list li.reduction{
	background-color: var(--blue1);
}
.konwledge-area .konwledge-box .box02 .situation-list li h4{
	font-size: 1.8rem;
	margin: 0 0 10px;
	padding: 0 0 0 15px;
	position: relative;
}
.konwledge-area .konwledge-box .box02 .situation-list li.increase h4{
	color: var(--pink2);
}
.konwledge-area .konwledge-box .box02 .situation-list li.reduction h4{
	color: var(--blue2);
}
.konwledge-area .konwledge-box .box02 .situation-list li h4::before{
	position: absolute;
	content: "";
	width: 5px;
	height: 100%;
	left: 0;
	top: 0px;
	background-color: var(--pink2);
	border-radius: 5px;
}
.konwledge-area .konwledge-box .box02 .situation-list li.increase h4::before{
	background-color: var(--pink2);
}
.konwledge-area .konwledge-box .box02 .situation-list li.reduction h4::before{
	background-color: var(--blue2);
}
.konwledge-area .konwledge-box .box02 .caution-box{
	padding: 35px 30px 30px;
	border-radius: 8px;
	background-color: #FFFBD2; 
	/*border: dashed 3px var(--yellow);*/
	position: relative;
	margin: 45px 0 15px;
}
.konwledge-area .konwledge-box .box02 .txt-link a{
	/* border-bottom: solid 1px var(--dark-color); */
	color: var(--dark-color);
}
.konwledge-area .konwledge-box .box02 .txt-link a::before{
	color: var(--dark-color);
}
.konwledge-area .konwledge-box .box02 .caution-box .ttl{
	font-size: 1.8rem;
	line-height: 1;
	display: inline-block;
	padding: 8px 15px 8px 40px;
	margin: 0;
	position: absolute;
	top: -20px;
	border-radius: 20px;
	background-color: var(--yellow);
	font-weight: bold;
	/*border: dashed 3px var(--yellow);*/
}
.konwledge-area .konwledge-box .box02 .caution-box svg{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px){
	.konwledge-area{
		padding: 40px 20px;
	}
	.konwledge-area .fs-wrap{
		flex-wrap: wrap;
	}
	.konwledge-area .konwledge-box{
		display: flex;
		flex-wrap: wrap;
		margin: 30px 0 0;
	}
	.konwledge-area .konwledge-box .box02 .situation-list{
		flex-wrap: wrap;
	}
	.konwledge-area .konwledge-box .box02 .situation-list li{
		width: 100%;
		padding: 20px;
	}
	
	.konwledge-area .konwledge-box .box02 .caution-box{
		padding: 25px 20px 20px;
	}

}
.message-area{
	margin: 80px auto 0px;
}


.isharyou .konwledge-area .konwledge-box{
	display: grid;
	grid-template-areas:
	"box01 box01 box03"
	"box02 box02 box05"
	"box04 box04 box04";
	gap: 30px;
	margin: 50px 0 0;
}
.isharyou .konwledge-area .konwledge-box .box04{
	grid-area: box04;
}
.isharyou .konwledge-area .konwledge-box .box05{
	grid-area: box05;
}

.isharyou .bg-wht{
	background-color: #fff;
	padding: 80px 0 0;
}
.isharyou .message-area{
	margin: 0px auto 0;
}
.faq-area{
	background-color: #fff;
}
.point-area{
	background-color: #fff;
}
/* .page-title-area{
	margin: 0 auto;
} */
.breadcrumbs::before{
	position: absolute;
	content: "";
	width: 100vw;
	height: 61px;
	left: 0;
	top: 390px;
	background: #fff;
}
.h1-area{
	z-index: 1;
}
/* .page-title-area::before{
	content: "";
	position: absolute;
	width: calc(100% + 40px);
	height: calc(100% + 150px);
	background-color: #fff;
	left: -20px;
	top: -90px;
} */
.column-area{
	background-color: #fff;
}
.case-area::before{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -431px;
    background-color: #fff;
    z-index: -1;
}

@media screen and (max-width: 768px){
	.isharyou .konwledge-area{
		margin: 0 0 0px;
	}
	.case-area::before{
		left: 0px;
	}
	.isharyou .konwledge-area .ttl-box{
		margin: 0 0 20px;
	}
	.isharyou .konwledge-area .ttl-box .jp-ttl{
		font-size: 1.8rem;
	}
	.isharyou .konwledge-area .konwledge-box{
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		margin: 30px 0 0;
	}
	.konwledge-area .konwledge-box .box{
		width: 100%;
		padding: 30px 20px;
		position: relative;
	}
	.konwledge-area .konwledge-box .box .ttl{
		font-size: 2.2rem;
		text-align: left;
		margin: 0 0 10px;
	}
	.message-area{
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	.youikuhi .message-area{
		margin: 70px 0 0;
	}
	.isharyou .bg-wht{
		padding: 40px 0 0;
	}
}

.more_contents{
	height: auto;
}
.more_contents::before{
	display: none;
}
@media screen and (max-width: 768px){
	.more_contents{
		height: 200px;
	}
	.grad-btn{
		bottom: 20px;
	}
	.more_contents::before{
		display: block;
	}
}
.faq-list{
	margin: 40px 0 50px;
}
@media screen and (max-width: 768px){
	.faq-list{
		margin: 30px 0 30px;
	}
}