
/* ↓solutions-datailのCSS↓ */

.solution-detail-cover{
	background-color: #f3f4f5;
	padding-bottom: 20px;
}
.cover-top{
	display: flex;
	justify-content: start;
	align-items: center;
	max-width: 815px;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 20px;
}
.cover-top img{
	width: 170px;
}

h1{
	font-size: 36px;
	font-weight: 700;
	line-height: 50px;
	margin-left: 30px;
}

h2 {
    font-weight: bold;
    font-size: 32px;
    line-height: 60px;
	text-align: center;
	margin: 20px 0 -10px;
}

h3{
	text-align: center;
	margin-top: 30px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 40px;
}

.section-title{
	font-weight: 700;
	border-bottom: #042A4C 2px solid;
	margin-bottom: 10px;
	padding-bottom: 8px;
	font-size: 20px;
}

.table-of-contents{
	padding-bottom: 40px;

}

.list-wrapper{
	background-color: #f3f4f5;
	text-align: left;
}

.connect-to-note{
	padding: 15px;
}

.connect-to-note-button-content {
	background-color: #fff;
	padding: 5px 20px;
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	margin: 5px 10px;
	text-decoration: none;
	border-radius: 40px;
	transition: 0.2s;
	border: #042A4C solid 1.5px;
	&:hover{
		border: #77c2fd 1.5px solid;
		color: #77c2fd;
	}
}

.wrap{
	max-width: 1000px;
	margin: 0 auto;
}

.note-contents{
	margin-top: 20px;
}

.note-wrapper{
	padding: 70px 0 60px;
	margin-top: -30px;
}

.note-title{
	margin-bottom: 25px;
	font-weight: 700;
	font-size: 20px;
}

.note-title span{
	border: none;
    background-color: #f3f4f5;
    padding: 15px 30px 15px 33px;
    width: 93%;
    border-left: #042A4C 5px solid;
}

.case-list-area{
	margin: 0 auto;
	background-color: #f3f4f5;
	padding-top: 60px;
	padding-bottom: 40px;
}

.case-card-wrap{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 50px;

}
.enlarge-button{
	width: 150px;
	background-color: #042A4C;
	text-align: center;
	margin: 20px auto;
	padding: 5px;
	border-radius: 20px;
	font-weight: 700;
	color: #fff;
}
.s-br-sp{
	display: none;
}
.note-select{
	text-align: center;
	font-size: 24px;
	margin-bottom: -20px;
}
.visible-sp{
	display: none;
}
.visible-pc{
	display: block;
}
.promo-last {
    background-color: #fff;
}


@media only screen and (max-width: 1020px) {

	.select-button-wrap{
		grid-template-columns: 1fr 1fr;
		gap: 15px 15px;
		max-width: 700px;
	}
	h2{
		font-size: 24px;
		line-height: 40px;
	}
	h3{
		font-size: 20px;
		line-height: 35px;
	}
	.case-list-area{
		margin-bottom: 40px;
	}

}


@media only screen and (max-width: 670px) {
	h1{
		text-align: center;
		font-size: 24px;
		line-height: 40px;
		margin-left: 0;
	}
	h3{
		font-size: 18px;
		line-height: 30px;
		margin-top: 20px;
	}
	.cover-top{
		flex-flow: column;
		padding-top: 30px;
	}
	.cover-top img{
		width: 100px;
	}
	.s-br-sp{
		display: block;
	}
	.case-list-area{
		margin: 20px auto 40px;
		padding-top: 0px;
		padding-bottom: 10px;
	}
}

@media only screen and (max-width: 480px) {
	h2{
		font-size: 20px;
	}
	.section-title{
		font-size: 18px;
		padding-left: 10px;
	}
	.connect-to-note{
		padding-left: 5px;
	}
	.connect-to-note a{
		display: block;
	}
	.connect-to-note-button-content {
		padding: 4px 20px;
		margin-bottom: 10px;
	}
	.table-of-contents{
		padding-bottom: 0;
	}
	.note-wrapper{
		padding-top: 80px;
		padding-bottom: 30px;
	}
	.note-wrapper:last-child{
		padding-bottom: 30px;
	}
	.note-title{
		font-size: 18px;
	}
	.note-title span{
		padding: 15px 20px 15px 15px;
	}
	.visible-pc{
		display: none;
	}
	.pop{
		position: relative;
		display: block;
	}

	/* popの「before」と「after」はSPのみ表示するようにしています */

	.pop::before{
		content: '';
		position: absolute;
		background-image: url(https://d1e4giw8bkqfro.cloudfront.net/images/note-expansion.png);
		background-size: cover;
		width: 20px;
		height: 20px;
		top: 49%;
    	left: calc(50% - 90px);
		z-index: 10;
	}

	.pop::after{
		content: 'ノート画像を拡大';
		position: absolute;
		background-size: cover;
		height: 40px;
		top: 40%;
		left: calc(50% - 120px);
		color: #042A4C;
		font-weight: 700;
		text-align: center;
		border-radius: 8px;
		border: 2px solid #042A4C;
		background-color: #f3f4f5;
		padding-top: 10px;
		width: 240px;
	}

	.note-select{
		font-size: 18px;
		margin-top: -10px;
		margin-bottom: -20px;
	}

}

