@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-contner{
	margin: 0 auto;
}

.pc-box{
	display: none;
}

.wrapper{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.mv{
	margin: 0 auto;
	padding-bottom: 10%;
	border-bottom: solid 1px #000;
}

.mv p{
	text-align: center;
	font-size: 15px;
	line-height: 2;
	margin: 10% auto;
}

.main-content{
	margin: 0 auto;
	padding-top: 5%;
}

.main-content__box{
	margin: 0 auto 25%;
}

.main-conten__no{
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	margin: 5% auto;
}

.main-conten__no span{
	border:  solid 2px #000;
	border-radius: 30px;
	padding: 0.5% 5%;
}

.main-conten__name{
	text-align: center;
	font-size: 20px;
	line-height: 1.3;
	margin: 2% auto;
}

.main-conten__name span{
	font-size: 15px;
}

.main-conten__price{
	text-align: center;
	margin: 2% auto;
}

.main-conten__price:after{
	content: 'tax-in';
	margin-left: 5px;
	font-size: 11px;
}

.main-conten__img{
	width: 80%;
	margin: 5% auto;
}

.main-content__lead{
	margin: 5% auto;
}

.main-content__lead .main-content__copy{
	text-align: center;
	font-size: 20px;
	margin: 2% auto;
}

.main-content__lead p{
	text-align: center;
	font-size: 15px;
	margin: 3% auto 8%;
	line-height: 1.8;
}

.flex{
	display: flex;
}

.main-content__box a{
	display: block;
	width: 50%;
	margin: 8% auto;
	text-align: center;
	font-size: 15px;
	text-decoration: none;
	background-color: #9B9B9B;
	color: #fff;
	line-height: 2.5
}


@media(min-width:750px){
	.sticky-contner{
		display: flex;
		justify-content: center;
		column-gap: 70px;
	}
	.pc-box{
		position: sticky;
		left: 0;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30%;
		height: 100vh;
	}
	
	.wrapper{
		width: 40%;
		margin: 0;
	}
	
	.kw__link{
		display: block;
		width: 50%;
		margin: 8% auto;
		text-align: center;
		font-size: 18px;
		text-decoration: none;
		background-color: #9B9B9B;
		color: #fff;
		line-height: 2.5;
		position: relative;
		padding:  0px 20px;
		z-index: 2; 
		transition: color 0.3s;
	}
	
	/* 左から伸びてくる背景色の設定 */
	.kw__link::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 0;              /* 最初は幅ゼロ */
		height: 100%;
		background-color: #000; /* 塗りたい色（例：黄色） */
		z-index: -1;            /* 文字の下、liの背景の上に配置 */
		transition: width 0.4s ease-out; /* 伸びるアニメーション */
		color: #fff;
	}

	/* hoverした時の動き */
	.kw__link:hover::after {
		width: 100%;           /* 幅を全開にする */
	}
	
	/* ホバー時に文字色を変える */
    .kw__link:hover {
        color: #fff; /* 必要に応じて色を変更してください（例: #ffff00 など） */
    }

}


