@charset "UTF-8";
/* 臨時headerpadding 最終的に消す */
	.headerpadding{
		padding-top: 120px;
	}
		@media screen and (max-width: 768px){
			.headerpadding{
				padding-top:96px;
			}
		}

/* resetにいれたい　*/
	ul,li{
		line-height: 1.6;
	}
	h1,h2,h3,h4,h5,h6{
		line-height: 1.4;
	}
	p{
		line-height: 1.6;
	}
	*{
		box-sizing: border-box;
	}

/* レイアウト */
.content-basic{
	max-width: 1024px;
	width: 92%;
	margin: 0px auto;
}
.content-full{
	width: 100%;
}
@media screen and (min-width:769px) {
	.hidden-pc {
		display:none!important;
	}
}
@media screen and (max-width:768px) {
	.hidden-sp {
		display:none!important;
	}
}


/* font-size */
h1{
	font-size: 32px;
}
h2{
	font-size: 24px;
}
p{
	font-size: 18px;
}

@media screen and (max-width:768px) {
	h1{
		font-size: 24px;
	}
	h2{
		font-size: 20px;
	}
}
/* アンカー・スクロール制御 */
html {
  scroll-behavior: smooth;
}
:root {
  --header-height: 120px;
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 96px;
  }
}
[id] {
  scroll-margin-top: var(--header-height);
}
/* cta btn */
.cta-btn-wrap{
}
	a.cta-btn{
		background: linear-gradient(to bottom, #49B69D, #35AE92);
		border: 2px solid #E8F7FA;
		filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
		box-sizing: border-box;
		color: #FFF;
	}
		a.cta-btn:hover{
			filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
		}
		a.cta-btn.size-m{
			padding: 16px 40px;
			border-radius: 16px;
			font-size: 22px;
			font-weight: 700;
			color: #fff;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			height: 80px;
			border-radius: 43px;
		}
		a.cta-btn.size-m > span{
			font-size: 28px;
		}
		a.cta-btn.size-m span.fs-s{
			font-size: 16px;
			margin-right: 4px;
		}
@media screen and (max-width:768px) {
	a.cta-btn{
		width: 100%;
		margin: 0px auto;
	}
		a.cta-btn.size-m{
			display: block;
			text-align: center;
			line-height: 1.4;
		}
		a.cta-btn.size-m > span{
			font-size: 22px;
			display: block;
			line-height: 1.2;
		}
		a.cta-btn.size-m > span + span{
			display: flex;
			justify-content: center;
			line-height: 1.4;
		}
		a.cta-btn.size-m > span + span > span{
			font-size: 28px;
		}
		a.cta-btn.size-m span.fs-s{
			margin-right: 0px;
		}
}

/* cta-wide */
a.cta-wide{
	display: block;
	padding: 32px;
	margin-top: 32px;
	filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
	border:4px solid #35AE92;
	background-color: #FFF;
	border-radius: 16px;
	.box{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.box .text{
		max-width: 330px;
		width: 38%;
	}
	.box .inner-box{
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 660px;
		width: 62%;
	}
	p{
		font-size: 32px;
		color: #35AE92;
		font-weight: 900;
		display: flex;
		align-items: center;
	}
	p.catch{
		font-size: 18px;
		font-weight: 700;
	}
	.box p span{
		font-size: 38px;
	}
	ul li{
		font-size: 18px;
		font-weight: 700;
	}
	.image.ill{
		width: 170px;
	}
	.image.docpreview{
		width: 490px;
	}
	.cta-sub{
		width: 280px;
		height: 48px;
		margin: 16px auto 0px;
		border-radius: 24px;
		background: linear-gradient(
			180deg,
			#5DBEA8 60%,
			#35AE92 100%
		);
		color: #FFF;
		font-size: 18px;
		font-weight: 700;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
a.cta-wide:hover{
		filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
	}

@media screen and (max-width:980px) {
	a.cta-wide{
		p{
			font-size: 28px;
		}
		p.catch{
			font-size: 16px;
		}
		.box p span{
			font-size: 30px;
		}
	}
}
@media screen and (max-width:768px) {
a.cta-wide{
	padding: 24px;
	filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.4));
	.box{
		display: block;
	}
	.box .text{
		max-width: 100%;
		width: 100%;
		text-align: center;
	}
	.box .inner-box{
		margin-top: 8px;
		gap: 3%;
		max-width: 100%;
		width: 100%;
		}
	p{
		font-size: 24px;
		justify-content: center;
	}
	p.catch{
		font-size: 16px;
		font-weight: 700;
		
	}
	.box p span{
		font-size: 28px;
	}
	ul li{
		font-size: 18px;
		font-weight: 700;
	}
	.image.ill{
		width: 30%;
	}
	.image.docpreview{
		width: 64%;
	}
	.cta-sub{
		width: 100%;
	}
}
}