@charset "utf-8";

/* --------------------------------------- */
/* 商品ページ------------------------------- */
/* --------------------------------------- */

/* ページタイトル ---------------------------- */
.shop-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 60px;
}

.shop-title h1 {
	font-size: 32px;
	font-weight: bold;
}

.shop-title p {
	font-size: 14px;
	margin-top: 15px;
}

/* ---------------------------------------------- */
/* メインコンテンツ コンテナー ---------------------- */
/* ---------------------------------------------- */

.shop-contents {
	/* width: 90%;
	max-width: 1000px;
	margin: 75px auto 0 auto; */
	margin-top: 75px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

/* ---------------------------------------------- */
/* 商品リスト---------------------------------------*/
/* ---------------------------------------------- */

.shop-item {
	flex-grow: 1;
	max-width: 765px;
}

.shop-item h2 {
	line-height: 30px;
} 

/* 商品リスト　グリッド配置 */
.shop-list {
	margin-top: 25px;
	display: grid;
	/* grid-template-columns: repeat(auto-fit, 220px); */
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	column-gap: 50px;
	row-gap: 40px;
}

/* 商品詳細リンク */
.shop-list a {
	display: block;
	transition-duration: 0.2s;
}

.shop-list a:hover {
	transform: scale(1.05);
}

/* ---------------------------------------------- */
/* サイドメニュー-----------------------------------*/
/* ---------------------------------------------- */

.shop-menu {
	flex-shrink: 0;
	margin-right: 60px;
}

/*　親要素　shop-menu内で　固定 */
.shop-menu-inner {
	position: sticky;
	top: 30px;
	left: 0;
}

.shop-menu-inner h2 {
	font-size: 18px;
	font-weight: bold;
}

.shop-menu-inner ul {
	list-style-type: disc;
	margin-top: 20px;
	margin-left: 20px;
}

.shop-menu-inner li {
	font-size: 14px;
	margin-top: 15px;
}

/* ---------------------------------------------- */
/* 商品詳細ページ-----------------------------------*/
/* ---------------------------------------------- */

/* 商品エリア */
.item-area {
	margin-top: 20px;
	display: flex;
}

/* 画像　幅設定 */
.item-area img {
	width: 50%;
	max-width: 380px;
}

/* 商品説明文 */
.about-item {
	margin-left: 30px;
}

.about-item .item-text {
	font-size: 14px;
	line-height: 26px;
	text-align: justify;
}

.about-item .item-price {
	font-weight: bold;
	margin-top: 20px;
}

.about-item .button-yellow {
	margin-top: 35px;
} 

.shop-recommended {
	margin-top: 60px;
}

/* ---------------------------------------------- */
/* フッター　--------------------------------------*/
/* ---------------------------------------------- */

#shop footer {
	margin-top: 100px;
}

/* --------------------------------------------- */
/* mobaile端末用　CSS---------------------------- */
/* --------------------------------------------- */

@media (max-width: 800px) {

	/* 商品ページ----------------------- */

	/* 商品リストエリア、サイドメニューを縦並びに変更 */
	.shop-contents {
		display: block;
		width: 100%;
		margin-top: 60px;
	}

	.shop-item {
		padding: 0 20px;
	}

	.shop-list {
		justify-content: center;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		column-gap: 20px;
	}

	/* サイドメニュー */
	.shop-menu {
		width: 100%;
		background-color: #f8f8f8;
		margin-right: 0;
		margin-top: 60px;
		padding: 50px 20px 60px 20px;
	}

	/* 商品詳細ページ　------------------- */
	.item-area {
		display: block;
	}

	.item-area img {
		width: 100%;
		max-width: 350px;
	}

	.about-item {
		margin-top: 20px;
		margin-left: 0;
	}

	.about-item {
		width: 100%;
	}

	.shop-recommended {
		padding: 0;
	}
	
	/* フッター　------------------------ */
	#shop footer {
		margin-top: 0;
	}

}