@charset "UTF-8";
/* CSS Document */

/*共通*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*2カラム設定*/
	main {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 1100px;
		height: auto;
	}
	
	#main {
		position: relative;
		width: 800px;
		height: auto;
	}
	
	#side {
		position: relative;
		width: 250px;
		height: auto;
	}
	
	/*パンくず*/
	#pankuzu {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 100%;
		height: auto;
		margin: 20px auto 20px auto;
	}
	
	#pankuzu a {
		display: block;
		position: relative;
		padding-right: 17px;
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 0.3px;
		line-height: 15px;
		text-align: left;
		color: #232323;
	}
	
	#pankuzu a::before {
		content: ">";
		position: absolute;
		top: 50%;
		left: -12px;
		transform: translateY(-50%) translateX(0);
	}
	
	#pankuzu a:nth-of-type(1) {
		top: -1px;
		width: 15px;
		height: auto;
	}
	
	#pankuzu a:nth-of-type(1)::before {
		display: none;
	}
	
	/*固定ページ メインビジュアル*/
	#mv {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 60px auto;
	}
	
	#mv::after {
		z-index: 1;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #101211;
        opacity: 0.5;
    }
	
	#mv h1 {
		z-index: 2;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 900px;
		font-size: 32px;
		font-weight: 800;
		letter-spacing: 2px;
		line-height: 32px;
		text-align: left;
		color: #fff;
	}
	
	#mv h1 font {
		display: block;
		position: relative;
		margin-top: 18px;
		padding-left: 40px;
		font-size: 24px;
		font-weight: 800;
		letter-spacing: 1.5px;
		line-height: 24px;
		text-align: left;
		color: #fff;
	}
	
	#mv h1 font::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%) translateX(0);
		width: 30px;
		height: 1px;
		background: #fff;
	}
	
	#mv img {
		z-index: 0;
		display: block;
		position: relative;
		width: 100%;
		height: 350px;
		object-fit: cover;
		object-position: center;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*2カラム設定*/
	#main {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	#side {
		position: relative;
		width: 100%;
		height: auto;
		margin: 20px auto 20px auto;
	}
	
	/*パンくず*/
	#pankuzu {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 96%;
		height: auto;
		margin: 10px auto 10px auto;
	}
	
	#pankuzu a {
		display: block;
		position: relative;
		padding-left: 17px;
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 0.3px;
		line-height: 15px;
		text-align: left;
		color: #232323;
	}
	
	#pankuzu a::before {
		content: ">";
		position: absolute;
		top: 50%;
		left: 5px;
		transform: translateY(-50%) translateX(0);
	}
	
	#pankuzu a:nth-of-type(1) {
		top: -1px;
		width: 15px;
		height: auto;
		padding-left: 0;
	}
	
	#pankuzu a:nth-of-type(1)::before {
		display: none;
	}
	
	/*固定ページ メインビジュアル*/
	#mv {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
	}
	
	#mv::after {
		z-index: 1;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #101211;
        opacity: 0.5;
    }
	
	#mv h1 {
		z-index: 2;
		position: absolute;
		top: 50%;
		left: 10%;
		transform: translateY(-50%) translateX(0);
		width: 100%;
		font-size: 24px;
		font-weight: 800;
		letter-spacing: 1px;
		line-height: 24px;
		text-align: left;
		color: #fff;
	}
	
	#mv h1 font {
		display: block;
		position: relative;
		margin-top: 10px;
		padding-left: 20px;
		font-size: 16px;
		font-weight: 800;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
		color: #fff;
	}
	
	#mv h1 font::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%) translateX(0);
		width: 15px;
		height: 1px;
		background: #fff;
	}
	
	#mv img {
		z-index: 0;
		display: block;
		position: relative;
		width: 100%;
		height: 200px;
		object-fit: cover;
		object-position: center;
	}
	
}

/*ヘッダー*/
/*PC*/
@media only screen and (min-width: 1025px) {
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 90px;
		background: #f3f2ee;
		border-bottom: solid 1px #BCBCBC;
		box-sizing: border-box;
	}
	
	header a.logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 200px;
		height: auto;
	}
	
	header a.cart {
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translateY(-50%) translateX(0);
		width: 80px;
		height: auto;
	}
	
	header a.cart img {
		display: block;
		position: relative;
		width: 45px;
		height: auto;
		margin: 0 auto 4px auto;
	}
	
	header a.cart font {
		display: block;
		position: relative;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.5px;
		line-height: 12px;
		text-align: center;
		color: #232323;
	}
	
	header .user_info {
		position: absolute;
		top: 0;
		left: 0;
		width: 250px;
		height: auto;
		padding: 20px 0 0 30px; 
	}
	
	header .user_info p {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.5px;
		line-height: 14px;
		text-align: left;
	}
	
	header .user_info p span {
		display: table;
		position: relative;
		margin: 0 auto 8px 0;
		padding: 6px 8px;
		font-size: 13px;
		font-weight: 600;
		line-height: 13px;
		text-align: center;
		color: #fff;
		background: #232323;
		border-radius: 2px;
	}
	
	header .user_info p font {
		position: relative;
		margin-left: 3px;
		font-size: 11px;
		line-height: 11px;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: #f3f2ee;
		border-bottom: solid 1px #BCBCBC;
		box-sizing: border-box;
	}
	
	header a.logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 110px;
		height: auto;
	}
	
	header a.cart {
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%) translateX(0);
		width: 50px;
		height: auto;
	}
	
	header a.cart img {
		display: block;
		position: relative;
		width: 30px;
		height: auto;
		margin: 0 auto 4px auto;
	}
	
	header a.cart font {
		display: block;
		position: relative;
		font-size: 9px;
		font-weight: 600;
		letter-spacing: 0.2px;
		line-height: 9px;
		text-align: center;
		color: #232323;
	}
	
	header .user_info {
		position: absolute;
		top: 0;
		left: 0;
		width: 140px;
		height: auto;
		padding: 13px 0 0 10px; 
	}
	
	header .user_info p {
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.2px;
		line-height: 11px;
		text-align: left;
	}
	
	header .user_info p span {
		display: table;
		position: relative;
		margin: 0 auto 6px 0;
		padding: 4px 6px;
		font-size: 10px;
		font-weight: 600;
		line-height: 10px;
		text-align: center;
		color: #fff;
		background: #232323;
		border-radius: 2px;
	}
	
	header .user_info p font {
		position: relative;
		margin-left: 3px;
		font-size: 9px;
		line-height: 9px;
	}
	
}

/*フッター*/
/*PC*/
@media only screen and (min-width: 1025px) {
	footer {
		position: relative;
		width: 100%;
		height: auto;
		margin: 60px auto 0 auto;
		padding-bottom: 85px;
	}
	
	footer p.credit {
		padding: 8px 0 8px 0;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 14px;
		text-align: center;
		background: #f3f2ee;
	}
	
	#ft_nav {
		z-index: 100;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 100%;
		height: auto;
		padding: 10px 0 30px 0;
		background: #fff;
		border-top: solid 0.5px #f3f2ee;
		box-sizing: border-box;
	}
	
	#ft_nav a {
		display: block;
		position: relative;
		width: 50px;
		height: auto;
	}
	
	#ft_nav a::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 30px;
		height: 30px;
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	#ft_nav a:nth-of-type(1)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_home_icon.png);
	}
	
	#ft_nav a:nth-of-type(1).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_home_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(2)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_store_icon.png);
	}
	
	#ft_nav a:nth-of-type(2).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_store_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(3)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_product_icon.png);
	}
	
	#ft_nav a:nth-of-type(3).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_product_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(4)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_streaming_icon.png);
	}
	
	#ft_nav a:nth-of-type(4).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_streaming_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(5)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_share_icon.png);
	}
	
	#ft_nav a:nth-of-type(5).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_share_icon_current.png);
	}
	
	#ft_nav a font {
		display: block;
		position: relative;
		padding-top: 34px;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.2px;
		line-height: 10px;
		text-align: center;
		color: #232323;
	}
	
	#ft_nav a.current font {
		color: #C9B254;
	}
	
	#ft_nav a.current::after {
		content: "";
		position: absolute;
		top: -10px;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 45px;
		height: 3px;
		background: #C9B254;
		border-radius: 2px;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	footer {
		position: relative;
		width: 100%;
		height: auto;
		margin: 40px auto 0 auto;
		padding-bottom: 85px;
	}
	
	footer p.credit {
		padding: 6px 0 6px 0;
		font-size: 11px;
		font-weight: 400;
		letter-spacing: 0.5px;
		line-height: 11px;
		text-align: center;
		background: #f3f2ee;
	}
	
	#ft_nav {
		z-index: 100;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 100%;
		height: auto;
		padding: 10px 0 30px 0;
		background: #fff;
		border-top: solid 0.5px #f3f2ee;
		box-sizing: border-box;
	}
	
	#ft_nav a {
		display: block;
		position: relative;
		width: 50px;
		height: auto;
	}
	
	#ft_nav a::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 30px;
		height: 30px;
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
	}
	
	#ft_nav a:nth-of-type(1)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_home_icon.png);
	}
	
	#ft_nav a:nth-of-type(1).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_home_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(2)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_store_icon.png);
	}
	
	#ft_nav a:nth-of-type(2).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_store_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(3)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_product_icon.png);
	}
	
	#ft_nav a:nth-of-type(3).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_product_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(4)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_streaming_icon.png);
	}
	
	#ft_nav a:nth-of-type(4).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_streaming_icon_current.png);
	}
	
	#ft_nav a:nth-of-type(5)::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_share_icon.png);
	}
	
	#ft_nav a:nth-of-type(5).current::before {
		background-image: url(/wp-content/themes/community_iyasakagu/images/ft_share_icon_current.png);
	}
	
	#ft_nav a font {
		display: block;
		position: relative;
		padding-top: 34px;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.2px;
		line-height: 10px;
		text-align: center;
		color: #232323;
	}
	
	#ft_nav a.current font {
		color: #C9B254;
	}
	
	#ft_nav a.current::after {
		content: "";
		position: absolute;
		top: -10px;
		left: 50%;
		transform: translateY(0) translateX(-50%);
		width: 45px;
		height: 3px;
		background: #C9B254;
		border-radius: 2px;
	}
	
}