/* カスタマイズ用CSS */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");

/*********************************
 reset
**********************************/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*********************************
 common / leyout
**********************************/
hrml {
	font-size: 62.5%;
}
body {
	background: #FFFFFF;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "MS ゴシック", sans-serif;
	word-wrap: break-word;
    overflow-wrap: break-word;
}
img {
	max-width: 100%;
}
a,a img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:hover {
	color: #1ea6e2;
}
a:hover,
a img:hover{
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  text-decoration: none;
}
h1,h2,h3 {
	line-height: 1;
}
h2.main-ttl {
	font-weight: bold;
	text-align: center;
}

/* Layout */
.wrap {
	max-width: 1200px;
	margin: auto;
}
.content-wrap {
	margin: 3.3333vw 0 0 0;
}

@media (max-width: 750px) {
	html {
		font-size: calc(5px + .6667vw);
	}
	img {
		max-width: 100%;
	}
	.wrap {
		margin: 0 2.6666vw;
	}
	.content-wrap {
		margin: 5.3333vw 0 0 0;
	}
	h2.main-ttl {
		margin-bottom: 8vw;
		font-size: 2.4rem;
	}
}
@media (max-width: 1200px) and (min-width: 751px) {
	html {
		font-size: calc(5px + .4167vw);
	}
	.wrap {
		margin: 0 1.6667vw;
	}
}
@media (min-width: 751px) {
	h2.main-ttl {
		font-size: 3rem;
		margin-bottom: 5vw;
	}
}

/*********************************
 header
**********************************/
header {
	border-bottom: 2px solid #fc9b16;
}
header h1 {
	display: inline-block;
}
header .inner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.6667vw;
}
header .inner ul {
	display: flex;
}
header i {
	width: 100%;
	text-align: center;
	font-style: normal;
	color: #000;
	font-size: 3rem!important;
	position: relative;
}
.ec-cartNavi__badge {
    display: inline-block;
    color: #fff;
    background: #fc9b16;
    border-radius: 9999px;
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "MS ゴシック", sans-serif;
    font-size: 1.2rem;
    padding: 2px;
    min-width: 17px;
    height: 17px;
    position: absolute;
    right: -6px;
    top: -8px;
    vertical-align: top;
}

/* カテゴリナビ */
header nav ul a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

/* キーワード検索 */
.head_search_link {
    display: block;
    position: relative;
    z-index: 10;
    cursor: pointer;
	cursor: hand;
}
.head_search {
    -webkit-transform: translate3d(0, -170px, 0);
    -moz-transform: translate3d(0, -170px, 0);
    -o-transform: translate3d(0, -170px, 0);
    transform: translate3d(0, -170px, 0);
	background: #fc9b16;
	padding: 10px;
}
.head_search input[type="search"] {
	border: none;
	position: relative;
}
.head_search input[type="submit"] {
	background: none;
	border: none;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	cursor: pointer;
	cursor: hand;
}

/*[-150px]の部分を調整で、検索フォームを画面の外に*/
.head_search.active {
    -webkit-transform: translate3d(0,10px,0);
    -moz-transform: translate3d(0,10px,0);
    -o-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
}

@media (max-width: 750px) {
	header {
		padding: 2.6666vw 0;
	}
	header .header-lead {
		font-size: 1.2rem;
		margin-bottom: 2.6666vw;
	}
	header h1 {
		width: 32vw;
	}
	header .inner ul li {
		padding-left: 5.3333vw;
	}
	
	/* 検索フォーム */
	.head_search {
		position: absolute;
		left: 0;
		width: 100%;
	}
	.head_search input[type="search"] {
		padding: 10px 40px 10px 10px;
		width: 100%;
		box-sizing: border-box;
	}
}
@media (min-width: 751px) {
	header {
		padding: 1.6667vw 0;
	}
	header .header-lead {
		font-size: 1.2rem;
		margin-bottom: 1.6667vw;
	}
	header .inner ul li {
		padding-left: 3.3333vw;
	}
	header nav ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 1.4rem;
	}
	header nav ul li {
		border-left: 1px solid #ddd;
		width: 100%;
		text-align: center;
	}
	header nav ul li:last-child {
		border-right: 1px solid #ddd;
	}
	
	/* 検索フォーム */
	.gnav-search {
		position: relative;
	}
	.head_search {
		position: absolute;
		border-radius: 8px;
		right: -10px;
	}
	.head_search:before {
		content: "";
		position: absolute;
		top: -16px;
		right: 15px;
		margin-left: -15px;
		border: 8px solid transparent;
		border-bottom: 11px solid #fc9b16;
	}
	.head_search input[type="search"] {
		padding: 10px 40px 10px 10px;
	}
}

/*********************************
 SPナビ
**********************************/
.sp-scroll {
	overflow: hidden;
}
@media (max-width: 750px) {
	header nav {
		height: 100%;
		width: 100vw;
		padding: 10px;
		transition: all 0.2s;
		transform: translate(100vw);
		position: fixed;
		right: 0;
		z-index: 1000;
		background-color: #fff;
		overflow-y: auto;
		font-size: 1.8rem;
	}
	header nav.open {
		transform: translate(0);
	}
	header nav ul li {
		padding: 2.6666vw 0 5.3333vw 0;
	}
	header nav ul li:before {
		font-family: 'Material Icons';
		content: 'keyboard_arrow_right';
		color: #999;
		font-feature-settings: 'liga';
		font-size: 2.2rem;
		vertical-align: middle;
	}
	/* spボタン */
	.btn_menu {
		display: block;
		background: none;
		border: none;
		margin: 0;
		padding: 0;
		width: 22px;
		height: 19px;
		color: #000;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: relative;
		z-index: 1001;
		text-align: center;
		outline: none;
	}
	/* ハンバーガーボタン3本線 */
	button.btn_menu span.bar {
		display: block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #000;
		border-radius: 4px;
		transition: all 0.2s;
	}
	button.btn_menu .bar1 {
	  	top: 0;
	}
	button.btn_menu .bar2 {
	  	top: 8px;
	}
	button.btn_menu .bar3 {
	  	bottom: 0;
	}
	
	/* メニューアクティブ時 */
	button.btn_menu.active .bar1 {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}
	button.btn_menu.active .bar2 {
  		opacity: 0;
	}
	button.btn_menu.active .bar3 {
  		-webkit-transform: translateY(-8px) rotate(45deg);
  		transform: translateY(-8px) rotate(45deg);
	}
}
@media (min-width: 751px) {
	.sp-menu,
	.btn_menu {
		display: none;
	}
}
/*********************************
 フッター
**********************************/
/* コラボ商品 */
.collabo {
	background: #61c1eb;
	border-radius: 8px;
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.collabo .ttl {
	font-weight: bold;
}
.collabo a {
	display: block;
	background: #fff;
	border-radius: 8px;
	margin: auto;
	color: #000;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: bold;
}

/* ショッピングガイド */
.shopping-guide .ttl {
	text-align: center;
	font-weight: bold;
}
.shopping-guide ul {
	display: flex;
}
.shopping-guide ul li {
	border: 2px solid #eee;
	border-radius: 8px;
	text-align: center;
}
.shopping-guide ul li a {
	background: #fc9c15;
	border-radius: 8px;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.shopping-guide i {
	color: #fdc473;
}

/* フッターナビ */
footer {
	background: #eee;
}
footer nav {
	display: flex;
}
footer nav a {
	color: #000;
	text-decoration: none;
	line-height: 2.4;
}
footer nav img {
	max-width: 100%;
}
footer .site-footer-logo ul {
	display: flex;
}
footer .site-footer-logo ul li {
	margin: 0 0.8333vw 0 0;
}
footer .copy {
	background: #fff;
	font-size: 1.4rem;
	text-align: center;
	padding: 0.8333vw;
}

@media (max-width: 750px) {
	/* コラボ商品 */
	.collabo {
		padding: 8vw 4vw;
		margin-top: 10.6667vw;
		margin-bottom: 10.6667vw;
		font-size: 1.8rem;
	}
	.collabo .ttl {
		font-size: 2.4rem;
		margin-bottom: 5.3333vw;
	}
	.collabo p {
		margin-bottom: 4vw;
		text-align: left;
	}
	.collabo a {
		width: 100%;
		padding: 2.6666vw;
	}
	
	/* ショッピングガイド */
	.shopping-guide .ttl {
		font-size: 2.2rem;
		margin-bottom: 8vw;
	}
	.shopping-guide ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	.shopping-guide ul li {
		width: 80%;
		margin: 2vw;
		padding: 5.3333vw;
	}
	.shopping-guide ul li .ttl {
		font-size: 1.8rem;
		margin-bottom: 1.6667vw;
	}
	.shopping-guide ul li p {
		margin-bottom: 5vw;
	}
	.shopping-guide ul li a {
		width: 64%;
		padding: 2.6666vw;
	}
	.shopping-guide i {
		font-size: 8rem;
		margin-bottom: 2.6666vw;
	}
	
	/* フッターナビ */
	footer {
		margin-top: 5.3333vw;
		padding: 5.3333vw 0 0 0;
	}
	footer .site-footer-logo {
		width: 50%;
	}
	footer .site-footer-logo li {
		width: 30px;
	}
	footer nav {
		flex-wrap: wrap;
		flex-direction: column;
		padding-left: 2.6666vw;
	}
	footer nav ul {
		margin-bottom: 5.3333vw;
	}
}
@media (min-width: 751px) {
	/* コラボ商品 */
	.collabo {
		padding: 5vw;
		margin-top: 6.6667vw;
		margin-bottom: 6.6667vw;
		font-size: 1.8rem;
	}
	.collabo .ttl {
		font-size: 3rem;
		margin-bottom: 3.3333vw;
	}
	.collabo p {
		margin-bottom: 1.6667vw;
	}
	.collabo a {
		width: 25%;
		padding: 0.8333vw;
	}
	
	/* ショッピングガイド */
	.shopping-guide .ttl {
		font-size: 2.4rem;
		margin-bottom: 5vw;
	}
	.shopping-guide ul {
		justify-content: center;
	}
	.shopping-guide ul li {
		width: 30%;
		margin: 0 1.25vw;
		padding: 3.3333vw;
		position: relative;
	}
	.shopping-guide ul li .ttl {
		font-size: 1.8rem;
		margin-bottom: 1.6667vw;
	}
	.shopping-guide ul li p {
		margin-bottom: 5vw;
	}
	.shopping-guide ul li a {
		width: 64%;
		padding: 0.8333vw;
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		bottom: 3.3333vw;
	}
	.shopping-guide i {
		font-size: 8rem;
		margin-bottom: 2.5vw;
	}
	
	/* フッターナビ */
	footer {
		margin-top: 6.6667vw;
		padding: 5.4166vw 0 0;
	}
	footer nav ul {
		margin-bottom: 6.6667vw;
	}
	footer nav li {
		margin-left: 10vw;
	}
	footer .site-footer-logo {
		width: 20%;
	}
}
/*********************************
 TOPページ
**********************************/
/* お知らせ */
.attention {
    padding: 2vw;
    margin-bottom: 2vw;
    border: 2px solid #ff0000;
    line-height: 1.6;
}
/* 新着アイテム */
.new-item ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 5vw;
}
.new-item ul a {
	text-decoration: none;
	color: #000;
}
.new-item ul img {
	max-width: 100%;
}
.new-item ul .img {
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}
.new-item ul .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-height: 100%;
}
.new-item ul .name {
	font-weight: bold;
	font-size: 1.6rem;
}
.new-item ul .price {
	font-weight: normal;
}
.new-item ul .tag {
    border: 1px solid #FC9B16;
    border-radius: 4px;
    color: #FC9B16;
    display: inline-block;
}

/* おすすめカテゴリ */
.reco-category ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.reco-category li img {
	max-width: 100%;
}

/* お知らせ */
.top-news {
	background: #fff7ec;
	display: flex;
}
.top-news .ttl {
	font-weight: bold;
}

@media (max-width: 750px) {
    .attention {
        padding: 3vw;
        margin: 0 auto 3vw;
        font-size: 1.6rem;
        width: 90%;
    }
	.new-item ul li {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 10.6667vw;
	}
	.new-item ul li:nth-child(2n) {
		margin-right: 0;
	}
	.new-item ul .img {
		margin-bottom: 2vw;
	}
	.new-item ul .name {
		margin-bottom: 1.3333vw;
	}
	.new-item ul .tag {
	    font-size:2.1333vw;
	    padding: 0.6666vw 1.0666vw;
	    margin-bottom: 1.3333vw;
	}
	
	/* おすすめカテゴリ */
	.reco-category {
		margin-bottom: 10.6667vw;
		text-align: center;
	}
	.reco-category li {
		width: 100%;
		margin: 0 0 4vw;
	}
	
	/* お知らせ */
	.top-news {
		padding: 2.6666vw 2.6666vw 5.3333vw;
		margin-bottom: 10.6667vw;
		flex-direction: column;
	}
	.top-news .ttl {
		margin: 1.6667vw 0;
		font-size: 2rem;
	}
	.top-news .ttl br {
		display: none;
	}
}
@media (min-width: 751px) {
	/* 新着アイテム */
	.new-item ul li {
		width: 18%;
		margin-right: 2.5%;
		margin-bottom: 1.6667vw;
	}
	.new-item ul li:nth-child(5n) {
		margin-right: 0;
	}
	.new-item ul .img {
		margin-bottom: 1.25vw;
	}
	.new-item ul .name {
		margin-bottom: 0.8333vw;
	}
	.new-item ul .price {
		font-size: 1.4rem;
	}
	.new-item ul .tag {
	    font-size:0.7812vw;
	    padding: 0.2604vw 0.4166vw;
	    margin-bottom: 0.5208vw;
	}
	
	/* おすすめカテゴリ */
	.reco-category li {
		width: 40%;
		margin: 0 5% 5vw;
	}
	
	/* お知らせ */
	.top-news {
		padding: 1.6667vw;
		margin-bottom: 6.6667vw;
	}
	.top-news figure {
		width: 47%;
	}
	.top-news figure img {
		max-width: 100%;
	}
	.top-news .ttl {
		margin-bottom: 1.6667vw;
		font-size: 2.2rem;
	}
	.top-news .txt {
		margin: 0.8333vw 0 0 2.5vw;
	}
}

/*********************************
 Vtuberから探す
**********************************/
.vtuber-list ul {
	display: flex;
	flex-wrap: wrap;
}
.vtuber-list ul li {
	width: 25%;
	padding-right: 3.3333vw;
	padding-bottom: 1.6667vw;
}
.vtuber-list ul li:nth-child(4n) {
	padding-right: 0;
}
@media (max-width: 750px) {
	.vtuber-list ul li {
		width: 50%;
		padding-right: 4%;
		padding-bottom: 2.6666vw;
	}
	.vtuber-list ul li:nth-child(2n) {
		padding-right: 0;
	}
}

/*********************************
 フリーページ
**********************************/

/* ガイド系 */
.guide-wrap {
	max-width: 800px;
	margin: 3.3333vw auto 0;
}
h2.line {
	border-bottom: 1px solid #fc9c15;
	padding-bottom: 1.25vw;
	margin-bottom: 1.25vw;
	font-size: 2rem;
	font-weight: bold;
}
.guide-wrap p {
	margin-bottom: 1.6667vw;
}
.guide-wrap p+h2 {
	margin-top: 5vw;
}

/* 特集系 */
.box-img {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5vw;
}
.box-img figure {
	width: 42%;
}
.box-img .txt {
	width: 51%;
}
.box-img .txt .ttl,
.box-txt .ttl {
	font-size: 2.4rem;
	margin-bottom: 1.6667vw;
	font-weight: bold;
}
.box-img .txt p+p,
.box-txt p+p {
	margin-top: 1.6667vw;
}
.box-txt {
	margin-bottom: 5vw;
}
.box-txt figure {
    margin-bottom: 1.6667vw;
}
@media (max-width: 750px) {
	.guide-wrap {
		margin: 5.3333vw 0 0;
	}
	h2.line {
		padding-bottom: 2vw;
		margin-bottom: 2vw;
	}
	.guide-wrap p {
		margin-bottom: 2.6666vw;
	}
	.guide-wrap p+h2 {
		margin-top: 8vw;
	}
	/* 特集系 */
	.box-img {
		flex-direction: column;
		margin-bottom: 8vw;
	}
	.box-img figure {
		width: 100%;
		margin-bottom: 2.6666vw;
	}
	.box-img .txt {
		width: 100%;
	}
	.box-txt {
		margin-bottom: 8vw;
	}
	.box-txt figure {
    margin-bottom: 2.6666vw;
}
}