/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.subset{
	display: flex;
	flex-wrap: wrap;
	width: clamp(320px, 90%, 640px);
	margin: 0 auto;
	justify-content: center;
}

.sub_cvbtn{
	display: inline-block;
    text-decoration: none;
    font-size: .86667rem;
    letter-spacing: .05em;
    line-height: 1.46154;
    font-weight: 700;
    color: #111;
    border-radius: 100px;
    border: 1px solid #ddd;
    padding: 0.66667rem 1.33333rem;
    margin: 1rem;
    transition: .3s;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
	text-align: center;
	width: 250px;
	flex-grow: 1;
}

@media only screen and (max-width: 59.3125em){
.l-header__inner{
	padding: 0;
}
.l-header__content {
    width: 9rem;
    display: block;
}

}