@charset "UTF-8";
/*------------------------
ページ内ジャンプ
------------------------*/
/*--------- 共通 ---------*/
.jump-area {
	background: var(--bgcolor);
}
.jump-area ul li a {
	display: block;
	background: #fff;
	box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, .07);
	border-radius: 10px;
	line-height: 1;
	position: relative;
}
.jump-area ul li a::after {
	content: '';
	border-bottom: 1px solid #0084ff;
	border-left: 1px solid #0084ff;
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
/*--------- PC ---------*/
@media screen and (min-width:1024px) {
	.jump-area {
		width: min(1200px, 100%);
		margin: auto;
		padding: 30px;
		border-radius: 18px;
	}
	.jump-area ul {
		flex-wrap: wrap;
		gap: 10px;
	}
	.jump-area ul li a {
		padding: 15px 40px 15px 20px;
	}
	.jump-area ul li a:hover {
		background: var(--mylightblue);
		color: #fff;
	}
	.jump-area ul li a::after {
		width: 4px;
		height: 4px;
		right: 20px;
		transition: all .3s ease 0s;
	}
	.jump-area ul li a:hover::after {
		border-bottom: 1px solid #fff;
		border-left: 1px solid #fff;
	}
}
/*--------- SP ---------*/
@media screen and (max-width:1023px) {
	.jump-area {
		padding: calc(var(--spacing) * 3);
		margin: calc(var(--spacing) * 3);
		border-radius: 12px;
	}
	.jump-area ul {
		flex-direction: column;
		gap: 2vw;
	}
	.jump-area ul li {
		width: 100%;
	}
	.jump-area ul li a {
		padding: 4vw;
	}
	.jump-area ul li a::after {
		width: 1vw;
		height: 1vw;
		right: 4vw;
	}
}
/*------------------------
section
------------------------*/
/*--------- 共通 ---------*/
section .inner .ttl {
	font-weight: bold;
	text-align: center;
}
section .inner .ttl .en {
	display: block;
	line-height: 1;
	color: #0084ff;
}
#case2 {
	background: var(--bgcolor);
}
.case .inner .cat-area {
	flex-wrap: wrap;
}
.case .inner .cat-area span {
	display: block;
	background: var(--myblue);
	color: #fff;
	line-height: 1;
	border-radius: 50vw;
}
.case .inner h3 {
	font-weight: bold;
}
.case .inner .wrap .img {
	height: auto;
}
.case .inner .wrap .img img {
	border-radius: 18px;
}
.case .inner h4 {
	font-weight: bold;
	color: #0084ff;
	line-height: 1;
}
.case .inner .wrap .txt .item ul {
	list-style-type: disc;
	padding-left: 1.5em;
}
.case .inner .wrap .txt .item ul li {
	line-height: 1.4;
}
.case .inner .wrap .txt .item ul li::marker {
	color: #0084ff;
}
.case .inner .after {
	background: var(--bgcolor);
	position: relative;
}
#case2 .inner .after {
	background: #fff;
}
.case .inner .after .img {
	position: absolute;
}
/*--------- PC ---------*/
@media screen and (min-width:1024px) {
	section {
		padding: 100px 0; 
	}
	section .inner {
		width: min(1200px,100%);
		margin: auto;
	}
	section .inner .ttl {
		margin-bottom: 60px;
	}
	section .inner .ttl .en {
		margin-bottom: 20px;
	}
	section .inner .ttl h2 {
		font-size: 36px;
		line-height: 1;
		margin-bottom: 30px;
	}
	.case .inner .cat-area {
		justify-content: center;
		gap: 4px;
		margin-bottom: 20px;
	}
	.case .inner .cat-area span {
		padding: 8px 15px;
		font-size: 14px;
	}
	.case .inner h3 {
		font-size: 32px;
		text-align: center;
		margin-bottom: 40px;
	}
	.case .inner .wrap {
		gap: 50px;
		margin-bottom: 60px;
	}
	.case .inner .wrap .img {
		width: 480px;
	}
	.case .inner .wrap .txt {
		flex: 1;
	}
	.case .inner .wrap .txt .item {
		margin-bottom: 40px;
	}
	.case .inner h4 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.case .inner .wrap .txt .item ul li {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.case .inner .after {
		padding: 40px 40px 20px;
		border-radius: 18px;
	}
	.case .inner .after .txt p {
		font-size: 19px;
		margin-bottom: 20px;
	}
	.case .inner .after .img {
		right: 40px;
		top: -28px;
		width: 160px;
	}
}
/*--------- SP ---------*/
@media screen and (max-width:1023px) {
	section .inner {
		padding: calc(var(--spacing) * 20) calc(var(--spacing) * 3);
	}
	section .inner .ttl {
		margin-bottom: 10.667vw;
	}
	section .inner .ttl .en {
		font-size: 3.74vw;
		margin-bottom: 3vw;
	}
	section .inner .ttl h2 {
		font-size: 8vw;
		line-height: 1.3;
		margin-bottom: 4vw;
	}
	.case .inner .cat-area {
		gap: 1vw;
		margin-bottom: 3vw;
	}
	.case .inner .cat-area span {
		padding: 1.5vw 2vw;
		font-size: 3.47vw;
	}
	.case .inner h3 {
		font-size: 6.4vw;
		margin-bottom: 5.333vw;
	}
	.case .inner .wrap {
		flex-direction: column;
	}
	.case .inner .wrap .img {
		margin-bottom: 5.333vw;
	}
	.case .inner .wrap .txt .item {
		margin-bottom: 5.333vw;
	}
	.case .inner h4 {
		font-size: 4.8vw;
		margin-bottom: 3vw;
	}
	.case .inner .wrap .txt .item ul li {
		text-align: justify;
		margin-bottom: 2vw;
	}
	.case .inner .after {
		padding: 6vw 4vw 4vw;
		border-radius: 12px;
	}
	.case .inner .after .txt p {
		text-align: justify;
		margin-bottom: 3vw;
	}
	.case .inner .after .img {
		right: 4vw;
		top: -3vw;
		width: 18vw;
	}

}
@media screen and (min-width:1024px) and (max-width: 1240px) {
	section {
		padding: 100px 20px; 
	}
}
/*------------------------
CTA
------------------------*/
/*--------- 共通 ---------*/
.cta {
	border-radius: 16px;
}
.cta h2 {
	font-weight: bold;
	text-align: center;
	color: #fff;
}
.cta .lead {
	text-align: center;
	color: #fff;
}
/*ボタン*/
.btn a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, #ff9844, #ff7709);
	border-radius: 50vw;
	font-weight: bold;
	color: #fff;
}
.btn a span {
	display: block;
}
/*--------- PC ---------*/
@media screen and (min-width:1024px) {
	.cta {
		width: min(1200px, 100%);
		margin: 0 auto 100px;
		padding: 60px;
		background: url(/cp2/images/cta-pc.png) no-repeat 100%/cover;
	}
	.cta h2 {
		font-size: 32px;
		line-height: 1;
		margin-bottom: 25px;
	}
	.cta .lead {
		font-size: 20px;
		line-height: 1;
		margin-bottom: 50px;
	}
	/*ボタン*/
	.btn {
		width: 360px;
		margin: auto;
	}
	.btn a {
		padding: 10px;
		font-size: 20px;
	}
	.btn a span {
		margin-left: 10px;
	}
}
/*--------- SP ---------*/
@media screen and (max-width:1023px) {
	.cta {
		background: url(/cp2/images/cta-sp.png) no-repeat 100%/cover;
		padding: 10vw 4vw 8vw;
		margin: 0 calc(var(--spacing) * 3);
	}
	.cta h2 {
		font-size: 6.4vw;
		margin-bottom: 3vw;
	}
	.cta .lead {
		margin-bottom: 8vw;
	}
	/*ボタン*/
	.btn a {
		padding: 2vw;
	}
}