@charset "utf-8";

/**
 *
 *  ページ用CSS
 *　page
 * 
 */

/*--------------------------------------------------------------------------
   Overwright
---------------------------------------------------------------------------*/
.page-ttl{
  background-image: url(../img/faq/img_kv_pc.jpg);  
}




/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.faq-main._top-cont::before{
	height: calc(100% - 80px);
}

/* faq
-----------------------------------------------------------------*/
.faq-main{
	padding-bottom: 140px;
}
.faq-list > div{
	overflow: hidden;	
	border-radius: 10px;
	background: var(--lightblue);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
}
.faq-list > div:nth-child(n+2){
	margin-top: 60px;
}
.faq-list dt{
	position: relative;
	display: flex;
	padding: 40px;
	cursor: pointer;
	transition: .3s;
	background: var(--light);
}
.faq-list dt.open{
	background-color: transparent;
}
.faq-list dt::before{
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 54px;
	height: 54px;
	content: "";
	background: url(../img/faq/ico_plus.svg) no-repeat;
	background-size: 100% auto;	
}
.faq-list dt:hover::before{
	background-image: url(../img/faq/ico_plus_ov.svg);
}
.faq-list dt.open::before{
	background-image: url(../img/faq/ico_minus.svg);
}
.faq-list dt .q{
	flex-shrink: 0;
	width: 56px;
	margin-right: 20px;
	color: var(--blue);
	font-weight: 600;
	font-size: 3rem;
	line-height: 1.5;
	letter-spacing: .12em;
}
.faq-list dt .question{
	font-size: 2.9rem;
	line-height: 1.5;
	color: var(--blue);
}
.faq-list dd{
	display: none;
}
.faq-list dd > div{
	display: flex;
	padding: 0 40px 40px;
}
.faq-list dd .a{
	flex-shrink: 0;
	width: 56px;
	margin-right: 20px;
	font-weight: 600;
	font-size: 3rem;
	letter-spacing: .12em;
	text-align: center;
}
.faq-list dd .layout-box .txt{
	width: 54%;
	text-align: justify;
}
.faq-list dd .layout-box .pic{
	max-width: 450px;
	width: 42%;
}


/* q02 */
.faq-list .q02 .btn-base{
	margin-top: 25px;
}
.faq-list .q02 .btn-base a{
	max-width: 370px
}

/* q03 */
.faq-list .q03 .residents{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 35px 0 38px;
	padding: 28px 20px;
	background:  var(--navy);
	border-radius: 5px;
	color: var(--light);
	line-height: 1;
	font-size: 1.8rem;
}
.faq-list .q03 .residents .ico{
	margin-right: 25px;
	line-height: 0;
}
.parties-involved{
	position: relative;
	padding: 30px 20px;
	background:  var(--light);
	border-radius: 5px;
}
.parties-involved .ico-ttl{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
}
.parties-involved ul{
	position: relative;
	display: flex;
	gap: 10px;
	width: 100%;
}
.parties-involved ul li{
	width: calc((100% - 50px)/6);
	padding: 24px 10px;
	border-radius: 5px;
	background: #DCE6F2;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1;
}

/* q04 */
.phase-list{
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}
.phase-list > li{
	position: relative;
	width: calc((100% - 100px)/3);
	border-radius: 10px;
	background: var(--light);
}
.phase-list > li:nth-child(n+2)::before{
	position: absolute;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	content: "→";
	font-size: 3rem;
	line-height: 1;
	color: var(--blue);
}
.phase-list h3{
	padding: 15px 20px;
	background: var(--navy);
	color: var(--light);
	border-radius: 10px 10px 0 0;
	font-size: 1.8rem;
	line-height: 1.5;
}
.phase-list h3 .en{
	margin-right: 10px;
	font-size: 1.4rem;
	font-weight: normal;
}
.phase-list h3 .en strong{
	font-size: 2.4rem;
	font-weight: normal
}
.phase-list .txt-area{
	padding: 20px;
}
.phase-list .etc{
	text-align: right;
	font-size: 1.4rem;
}


/* flow
-----------------------------------------------------------------*/
.flow{
	display: flex;
	align-items: center;	
	padding: 140px 0;
	background: var(--lightblue);
}
.flow .inner{
	width: 100%;
}
.flow .flow-hd{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 120px;
}
.flow .flow-hd .txt{
	max-width: 600px;
	width: calc(100% - 370px);
}
.flow-steps{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 100px;
}
.flow-steps li{
	position: relative;
	max-width: 600px;
	width: calc(50% - 10px);
	padding: 50px;
	border-radius: 10px;
	background: var(--light);
}
.flow-steps li:nth-child(n+3){
	margin-top: 80px;
}
.flow-steps .step{
	position: absolute;
	left: 50px;
	top: 0;
	transform: translateY(-60%);
	color: var(--navy);
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}
.flow-steps .step span{
	font-size: 5.8rem;
}
.flow-steps h3{
	position: relative;
	margin-bottom: 20px;
	padding-right: 110px;
	font-size: 3.2rem;
	line-height: 1.4;
}
.flow-steps h3 .ico{
	position: absolute;
	right: 0;
	bottom: 5px;
}
.flow-steps .phone,
.flow-steps .contact{
	display: flex;
	align-items: flex-start;
}
.flow-steps .phone .ico,
.flow-steps .contact .ico{
	flex-shrink: 0;
	margin-right: 15px;
}
.flow-steps .contact{
	margin-top: 20px;
}
.flow-steps .phone .phone-link{
	color: var(--navy);
}
.flow-steps .note{
	font-size: 1.4rem;
}
.flow .message{
	text-align: center;
	color: var(--navy);
	font-size: 4.8rem;
	line-height: 1.3;
}


















/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

	.faq-main._top-cont::before{
		height: calc(100% - 80px);
	}

/* faq
-----------------------------------------------------------------*/
	.faq-main{
		padding-bottom: 80px;
	}
	.faq-list > div:nth-child(n+2){
		margin-top: 20px;
	}
	.faq-list dt{
		padding: 15px 45px 15px 15px;
	}
	.faq-list dt::before{
		right: 15px;
		display: block;
		width: 26px;
		height: 26px;
	}
	.faq-list dt:hover::before{
		background-image: url(../img/faq/ico_plus.svg);
	}
	.faq-list dt .q{
		width: 38px;
		margin-right: 8px;
		font-size: 2rem;
	}
	.faq-list dt .question{
		font-size: 1.6rem;
	}
	.faq-list dd > div{
		padding: 0 20px 20px 15px;
	}
	.faq-list dd .a{
		width: 38px;
		margin-right: 8px;
		font-size: 2rem;
	}
	.faq-list dd .layout-box{
		display: block;
	}
	.faq-list dd .layout-box .txt{
		width: 100%;
	}
	.faq-list dd .txt{
		font-size: 1.3rem;
	}
	.faq-list dd .layout-box .pic{
		max-width: nonepx;
		width: 100%;
		margin-top: 15px;
	}

/* q02 */
	.faq-list .q02 .btn-base{
		margin-top: 25px;
	}
	.faq-list .q02 .btn-base a{
		font-size: 1.4rem;
		line-height: 1.4;
		text-align: center;
	}

/* q03 */
	.faq-list .q03 .residents{
		margin: 20px 0 25px;
		padding: 15px 10px;
		line-height: 1.5;
		font-size: 1.4rem;
		text-align: center;
	}
	.faq-list .q03 .residents .ico{
		width: 36px;
		margin-right: 3px;
	}
	.faq-list .q03 .residents small{
		font-size: 1rem;
	}
	.parties-involved{
		padding: 30px 20px 25px;
	}
	.parties-involved .ico-ttl{
		width: 70px;
	}
	.parties-involved ul{
		position: relative;
		display: block
	}
	.parties-involved ul li{
		width: 100%;
		padding: 10px;
		font-size: 1.4rem;
	}
	.parties-involved ul li:nth-child(n+2){
		margin-top: 10px;
	}
	
/* q04 */
	.phase-list{
		display: block;
		margin-top: 20px;
	}
	.phase-list > li{
		width: 100%;
	}
	.phase-list > li:nth-child(n+2){
		margin-top: 30px;
	}
	.phase-list > li:nth-child(n+2)::before{
		left: 50%;
		top: -25px;
		transform: translateX(-50%);
		content: "↓";
		font-size: 2rem;
	}
	.phase-list h3{
		padding: 10px 15px;
		font-size: 1.6rem;
	}
	.phase-list h3 .en{
		margin-right: 5px;		
		font-size: 1.2rem;
	}
	.phase-list h3 .en strong{
		font-size: 2.2rem;
	}
	.phase-list .txt-area{
		padding: 15px;
	}
	.phase-list .txt-area ul{
		font-size: 1.3rem;
	}
	.phase-list .etc{
		font-size: 1.1rem;
	}


/* flow
-----------------------------------------------------------------*/
	.flow{
		display: block;
		padding: 70px 0;
	}
	.flow .flow-hd {
		display: block;
		margin-bottom: 60px;
	}
	.flow h2{
		margin-bottom: 30px;
	}
	.flow .flow-hd .txt {
    max-width: none;
    width: auto;
	}
	.flow-steps{
		display: block;
		margin-bottom: 50px;
	}
	.flow-steps li{
		width: 100%;
		margin-inline: auto;
		padding: 30px 20px 35px;
		font-size: 1.5rem;
	}
	.flow-steps li:nth-child(n+2){
		margin-top: 48px;
	}
	.flow-steps .step{
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 2.1rem;
	}
	.flow-steps .step span{
		font-size: 4.2rem;
	}
	.flow-steps h3{
		margin-bottom: 20px;
		padding-right: 0;
		font-size: 2.2rem;
		text-align: center;
	}
	.flow-steps h3 .ico{
		display: none;
	}
	.flow-steps .phone .ico,
	.flow-steps .contact .ico{
		margin-right: 10px;
	}	
	.flow-steps .note{
		font-size: 1.2rem;
	}
	.flow .message{
		font-size: 2rem;
		line-height: 1.4;
	}




}