@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}

/* 💡 不要な「footer html」「footer body」の記述を、正常な指定に修正しました */
html {
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	font-style: normal;
	width: 100%;
	margin: auto;
	background-color: #fff;
	font-weight: 500;
}

/* 💡 他のページのh1〜h3を邪魔しないよう、フッター内だけを狙うように修正しました */
footer p, footer span, footer dl, footer h1, footer h2, footer h3, footer h5, footer h6, footer li {
	color: #262835;
}

footer p {
	color:#262835;
}

footer img {
	vertical-align: bottom;
	width: 100%;
	-webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}

footer a {
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	color: #262835;
	display: block;
	width: 100%;
	height: 100%;
}

footer a:hover {
	opacity: 0.7;
	transition: 1s;
}

footer li {
	list-style-type: none;
	font-size: 1rem;
}

footer {
	background-color: #F4F4F4;
	padding: 30px;
}

footer .shop_logo {
	max-width: 250px;
	margin: 0 auto 30px;
}

footer ul {
	display: flex;
	flex-direction: row;
	max-width: 700px;
	margin: auto;
	justify-content: center;
}

footer .footer_menu  li {
	margin: 10px 0;
	font-size: 1.4rem;
	text-align: center;
	letter-spacing: 0.3rem;
	border-right: 0.5px solid #8e8e8e;	
}

footer .footer_menu  li a {
	width: calc(100% - 40px);
	padding: 0 20px;
}

footer .footer_menu  li:first-child {
	border-left: 1px solid #8e8e8e;	
}

.sns_icon {
	max-width: 150px;
	margin: 30px auto;
}

.sns_icon li {
	margin: 10px;
}

/* 💡 0..5rem のスペルミスを「0.5rem」に修正しました */
.copyright {
	color: #262835;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.5rem;
	margin-top: 30px;
}

/*//////////////////////////////////
	ここからがスマートフォン
////////////////////////////////*/
	
@media screen and (max-width: 600px)
{
	footer {
		width: calc(100% - 60px);
	}
		
	footer ul {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
		
	footer .footer_menu {
		margin: auto;
	}

	footer .footer_menu  li {
		font-size: 1.2rem;
		letter-spacing: 0.1rem;
		width: calc(100% / 2) !important;
		height: 30px; 
		margin: 0;
		border-right: none;
		text-align: left;
	}
		
	footer .footer_menu li:first-child {
	    border-left: none;
	}
			
	footer .footer_menu  li a {
		width: calc(100% - 20px) !important;
		padding: 10px 10px;	
	}
}
