@charset "utf-8";

/*======*/
/* 共通 */
/*======*/

/* Google Fonts ==========================
font-family: 'Noto Sans JP', sans-serif;
font-family: 'RocknRoll One', sans-serif;
font-family: 'Zen Maru Gothic', sans-serif;
======================================== */

/* PC/SP出し分け
------------------------------ */

@media screen and (min-width: 768px) {
.sp {
	display: none !important;
}
}

@media screen and (max-width: 767px) {
.pc {
	display: none !important;
}

}

/* レイアウト
-----------------------------------*/

body {
	height: 100%;
}

section .contents {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
}

section .contents p:not(:last-child),
section .contents ul:not(:last-child),
section .contents ol:not(:last-child) {
	margin-bottom: 0.7em;
}

.ec-layoutRole__contents {
	padding: 130px 0 80px;
}


@media screen and (max-width: 767px) {

.ec-layoutRole__contents {
	padding: 102px 0 40px;
}

}

/* フォーム
-----------------------------------*/

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 8px;
	font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {
	outline-offset: -2px;
}


/* パンくず
-----------------------------------*/
.breadcrumb {
	margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {

}

/* タイトル
-----------------------------------*/

.heading-title {
	position: relative;
	height: 200px;
	margin-bottom: 64px;
	background-color: #ECECEC;
	color: #4D4D4D;
	text-align: center;
}

.heading-title .title {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'RocknRoll One', sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.2em;
	transform: translate(0, -50%);
	padding: 0 16px;
}

.heading-title .title .icon {
	display: block;
	margin: 0 auto 8px;
}

.heading01 {
	padding: 64px 0  32px;
	font-size: 20px;
	font-family: 'RocknRoll One', sans-serif;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
}


.heading01 span {
	display: block;
	margin-bottom: 8px;
	font-size: 32px;
	letter-spacing: 2px;
}

.heading02 {
	padding: 64px 0  32px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}


@media screen and (max-width: 767px) {

.heading-title {
	/* height: 116px; */
	margin-bottom: 32px;
}

.heading-title .title {
	font-size: 20px;
}

.heading-title .title .icon {
	width: 26px;
}

.heading01 {
	padding: 56px 0 24px;
	font-size: 16px;
}

.heading01 span {
	font-size: 24px;
}

.heading02 {
	padding: 32px 0  24px;
	font-size: 15px;
}


}

/* リンクテキスト
-----------------------------------*/

.link-tx-line {
	text-decoration: underline;
}

.link-txt.before {
	position: relative;
	padding-left: 16px;
}

.link-txt.after {
	position: relative;
	padding-left: 24px;
}

.link-txt.before::before,
.link-txt.after::before {
	content: '';
	display: inline-block;
	position: absolute;
	width: 6px;
	height: 16px;
	top: 50%;
	margin-top: -7px;
	background: url(/html/template/default/assets/images/common/com_ic01.svg) no-repeat;
	background-size: 100% auto;
	transition: all .5s;
}

.link-txt.before::before {
	left: 0;
}

.link-txt.after::before {
	right: 4px;
}

.link-txt.before:hover::before {
	left: 4px;
}

.link-txt.after:hover::before {
	right: 0;
}


/* リンクボタン
-----------------------------------*/

.com-bt {
	display: inline-block;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #FFF;
	line-height: 1;
	text-align: center;
	border: 1px solid #4D4D4D;
	padding: 15px 50px;
	background-color: #4D4D4D;
}

input[type="submit"].com-bt,
input[type="button"].com-bt,
button.com-bt {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 16px;
	line-height: 1;
	border: 1px solid #363332;
	background-color: #FFF;
}

.com-bt:hover {
	text-decoration: none;
	color: #FFF;
	background-color: #363332;
}

input[type="submit"].com-bt:hover,
input[type="button"].com-bt:hover,
button.com-bt:hover {
	cursor: pointer;
}

.com-bt span {
	position: relative;
	display: inline-block;
	padding: 0 24px;
}

.com-bt.prev span::before,
.com-bt.next span::before {
	content: '';
	display: inline-block;
	position: absolute;
	width: 8px;
	height: 14px;
	top: 50%;
	margin-top: -7px;
	background: url(/shop/html/template/default/assets/images/common/com_ic01.svg) no-repeat;
	background-size: 100% auto;
	transition: all .5s;
}

.com-bt.prev span::before {
	left: 4px;
}

.com-bt.next span::before {
	right: 4px;
}

.com-bt.prev:hover span::before {
	left: 0;
}

.com-bt.next:hover span::before {
	right: 0;
}

@media screen and (max-width: 767px) {

.com-bt {
	display: block;
	width: 100%;
	padding: 16px 4px;
}

.com-bt span {
	padding: 0 16px;
}

.com-bt.prev span::before {
	left: 0;
}

.com-bt.next span::before {
	right: 0;
}


}

/*============*/
/* 共通・汎用 */
/*============*/

/* 段落
-----------------------------------*/
.psp p {
	margin-bottom: 24px;
}

.psp p:last-of-type {
	margin-bottom: 0;
}

/* ぶら下げインデント */
.indent {
	margin-left: 1em;
	text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
	content: "";
	clear: both;
	display: block;
}

.multicolumn,
.multilist {
	overflow: hidden !important;
}

.multicolumn-left {
	float: left;
}

.multicolumn-right {
	float: right;
}

.multilist li {
	float: left;
}

/* カラム幅
-----------------------------------*/
.w1000 { width: 1000px;}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
	margin-left: 23px;
	list-style: disc;
}

/* リスト（ドット） */
.list-dot > li {
	padding-left: 1em;
}

.list-dot > li:before {
	content: "・";
	margin-left: -1em;
}

/* リスト（数字） */
.list-num > li {
	margin-left: 30px;
}


/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 { width: 5%;}
col.colw10 { width: 10%;}
col.colw15 { width: 15%;}
col.colw20 { width: 20%;}
col.colw25 { width: 25%;}
col.colw30 { width: 30%;}
col.colw35 { width: 35%;}
col.colw40 { width: 40%;}
col.colw45 { width: 45%;}
col.colw50 { width: 50%;}

/* テーブル */
.table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.table th,
.table td {
	border: solid 1px #4D4D4D !important;
	vertical-align: top;
	text-align: center;
}

@media screen and (max-width: 767px) {

.table {
	font-size: 12px;
}

.table th,
.table td {
	padding: 4px !important;
}

}

/*======*/
/* News */
/*======*/

.sec-news {
	font-family: 'Zen Maru Gothic', sans-serif;
}

.sec-news .contents {
	max-width: 720px;
}

.sec-news .list-news li {
	margin-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #4D4D4D;
}

.sec-news .list-news a {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.sec-news .list-news .date {
	width: 8em;
}

.sec-news .list-news .title {
	width: calc(100% - 8em);
	word-break: break-all;
}

.sec-news .btn-area {
	margin-top: 64px;
	text-align: center;
}

@media screen and (max-width: 767px) {

.sec-news {
	padding: 32px 0;
}

.sec-news .heading01 {
	width: 100%;
	padding: 0;
	font-size: 14px;
}

.sec-news .list-news li {
	margin-top: 16px;
}

.sec-news .list-news a {
	display: block;
}

.sec-news .list-news .date {
	width: 100%;
	float: none;
	font-size: 12px;
}

.sec-news .list-news .title {
	width: 100%;
}

.sec-news .btn-area {
	margin-top: 32px;
}

}

/*===========*/
/* ランキング */
/*===========*/

.sec-item {
	font-family: 'Noto Sans JP', sans-serif;
}

.sec-item a:hover {
	text-decoration: none;
}

.sec-item .lead {
	padding: 64px 0;
	color: #C00;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.sec-item h2 {
	padding: 0 0 24px;
	color: #C00;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

.sec-item .text {
	margin-bottom: 40px !important;
	text-align: center;
}

.sec-item .pict img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.sec-item .col2 {
	max-width: 640px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.sec-item .col2 > li {
	width: 47%;
	position: relative;
	margin-bottom: 64px;
}

.sec-item .col3 {
	display: flex;
	flex-wrap: wrap;
}

.sec-item .col3 > li {
	width: 30%;
	position: relative;
	margin-right: 5%;
	margin-bottom: 64px;
}

.sec-item .col3 li:nth-child(3n) {
	margin-right: 0;
}

.sec-item .col4 {
	display: flex;
	flex-wrap: wrap;
}

.sec-item .col4 > li {
	width: 23%;
	position: relative;
	margin-right: 2.6666%;
	margin-bottom: 64px;
}

.sec-item .col4 li:nth-child(4n) {
	margin-right: 0;
}

.sec-item .rank {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	background-color: rgba(255,255,255, .8);
	font-size: 14px;
	color: #4D4D4D;
	line-height: 32px;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}

.sec-item .ec-shelfRole__tags li {
	display: inline-block;
	padding: 6px 8px;
	margin-bottom: 8px;
	margin-right: 4px;
	border: 1px solid #363332;
	color: #363332;
	line-height: 1;
	font-size: 14px;
	vertical-align: top;
}

.sec-item .ec-shelfRole__tags li.tag_8 {
	max-width: 72px;
    padding: 3px 4px;
    font-size: 10px;
	color: #FFFFFF;
	background-color: #aa8e4b;
	border-color: #aa8e4b;
}

.sec-item .title {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.3;
}

.sec-item .price {
	font-weight: 500;
}

.sec-item .btn-txt {
	padding: 8px;
	background-color: #4D4D4D;
	line-height: 1;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #FFF;
	text-align: center;
}

.sec-item .btn-txt:hover {
	opacity: 0.7;
}

.sec-item .btn-area {
	margin-bottom: 64px;
	text-align: center;
}

.sec-item.sec-recommend {
	background-color: #EBEBEB;
}

.sec-item.sec-recommend .btn-area {
	margin-bottom: 0;
}

.sec-item.sec-recommend .com-bt {
	color: #4D4D4D;
	border: 1px solid #363332;
	padding: 24px 100px;
	background-color: #FFF;
	margin-bottom: 64px;
	position: relative;
}

.sec-item.sec-recommend .com-bt::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 16px;
	margin: 4px auto 0;
	background: url(/shop/html/template/default/assets/images/common/com_ic01.svg) no-repeat;
	background-size: 100% auto;
	top: 50%;
	transform: translateY(-75%);
}

.sec-item.sec-recommend .btn-area a:hover {
	text-decoration: none;
	background-color: #d4d4d4;
}

@media screen and (max-width: 767px) {
	.sec-item .lead {
		padding: 40px 0;
		font-size: 16px;
	}

	.sec-item h2 {
		font-size: 22px;
	}

.sec-item .col2 > li {
	width: 49%;
	margin-bottom: 24px;
}

.sec-item .col3 > li {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 24px;
}

.sec-item .col3 li:nth-child(3n) {
	margin-right: 2%;
}

.sec-item .col3 li:nth-child(2n) {
	margin-right: 0;
}

.sec-item .col4 > li {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 24px;
}

.sec-item .col4 > li:nth-child(2n) {
	margin-right: 0;
}

.sec-item .rank {
	width: 20px;
	left: 0;
	line-height: 20px;
	font-size: 12px;
}

.sec-item .pict {
	margin-bottom: 8px;
}

.sec-item .ec-shelfRole__tags {
	margin-bottom: 8px;
}

.sec-item .ec-shelfRole__tags li {
	padding: 6px 2px;
	margin-bottom: 4px;
	font-size: 12px;
}

.sec-item .title {
	margin-bottom: 0;
	font-size: 14px;
}

.sec-item .price {
	font-size: 16px;
}

.sec-item .btn-txt {
	padding: 6px 4px;
	font-size: 14px;
}

.sec-item .btn-area {
	margin-bottom: 32px;
}

.sec-item.sec-recommend {
	padding: 0 0 24px;
}

.sec-item.sec-recommend .com-bt {
	padding: 16px 4px;
	margin-bottom: 32px;
}

}

/*===============*/
/* 商品カテゴリー */
/*===============*/

.sec-category .ac-menu {
	position: relative;
	cursor: pointer;
}

.sec-category .ac-menu::after {
	content: '';
	display: block;
	position: absolute;
    right: 80px;
    bottom: 40px;
	width: 6px;
	height: 16px;
	margin: 4px auto 0;
	background: url(/html/template/default/assets/images/common/com_ic01.svg) no-repeat;
	background-size: 100% auto;
	transition: all .5s;
	transform: rotate(0);
}

.sec-category .ac-menu.open::after {
	transform: rotate(180deg);
}

.sec-category .ac-cts {
	display: none;
}

.sec-category .ac-cts + .ac-menu {
	border-top: 1px solid #363331;
}

.sec-category .heading01.ac-menu {
	line-height: 1.4;
}

.sec-category .heading01 span {
	display: block;
	font-size: 16px;
}

.sec-category .list-category {
	display: flex;
	flex-wrap: wrap;
}

.sec-category .list-category li {
	width: 18%;
	margin-right: 2.5%;
	margin-bottom: 24px;
}

.sec-category .list-category li:nth-child(5n) {
	margin-right: 0;
}

.sec-category .list-category a {
	display: flex;
	justify-content: center;
    align-items: center;
	height: 100%;
	padding: 30px 8px;
	border: 1px solid #363331;
	font-family: 'Zen Maru Gothic', sans-serif;
	background-color: #FFF;
	color: #363331;
	font-size: 16px;
	line-height: 1;
	text-align: center;
}

.sec-category .list-category a:hover {
	text-decoration: none;
	opacity: 0.7;
}


@media screen and (max-width: 767px) {
.sec-category {
	border-bottom: 1px solid #363331;
}

.sec-category .ac-menu::after {
	right: 32px;
	bottom: 10px;
}

.sec-category .heading01 {
	padding: 24px 0 8px;
	font-size: 16px;
}

.sec-category .contents {
	padding: 0;
}

.sec-category .heading01 span {
	font-size: 15px;
}

.sec-category .list-category li {
	width: 50%;
	margin-right: 0;
	margin-bottom: 0;
	border-top: 1px solid #363331;
}

.sec-category .list-category li:nth-child(5n) {
	margin-right: 0;
}

.sec-category .list-category li:nth-child(2n) {
	margin-right: 0;
	border-left: 1px solid #363331;
}


.sec-category .list-category a {
	border: none;
	font-size: 15px;
}

}


/*===============*/
/* 価格帯から探す */
/*===============*/

.sec-serch .list-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sec-serch .list-btn li {
	width: 22%;
}

.sec-serch .list-btn .com-bt {
	display: block;
	font-size: 18px;
	height: 100%;
}

@media screen and (max-width: 767px) {

.sec-serch .list-btn li {
	width: 48%;
	margin-bottom: 8px;
}

.sec-serch .list-btn .com-bt {
	font-size: 14px;
}

}


/* WPページャー
-----------------------------------*/
.wp-pagenavi {
	margin-top: 80px;
	text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0 4px;
}

.wp-pagenavi .previouspostslink {
	margin-right: 16px;
}

.wp-pagenavi .nextpostslink {
	margin-left: 16px;
}


@media screen and (max-width: 767px) {

.wp-pagenavi {
	margin-top: 40px;
}

}

/* 投稿記事 タイトル
-----------------------------------*/

.news .sec-news {
	background-color: #FFF;
}

.entry-detail .entry-header {
	padding-bottom: 16px;
	border-bottom: 1px solid #4D4D4D;
}

.entry-detail .entry-header .entry-title {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
}

.entry-detail .entry-header .date {
	margin-top: 16px;
	font-size: 18px;
	text-align: right;
	line-height: 1;
	font-weight: bold;
}

.entry-detail .entry-content {
	padding-bottom: 40px;
	border-bottom: 1px solid #4D4D4D;
	word-wrap: break-word;
	overflow: hidden;
}

@media screen and (max-width: 767px) {

.entry-detail .entry-header .entry-title {
	font-size: 18px;
}

.entry-detail .entry-header .date {
	margin-top: 8px;
	font-size: 14px;
}

.entry-detail .entry-content {
	padding-bottom: 32px;
}

}

/* 投稿記事 詳細
-----------------------------------*/

.entry-detail .entry-content p {
	margin-bottom: 1em;
}

.entry-detail .entry-content h1 {
	font-size: 28px;
	line-height: 1.3;
	font-weight: bold;
}

.entry-detail .entry-content h2 {
	font-size: 24px;
	line-height: 1.3;
	font-weight: bold;
}

.entry-detail .entry-content h3 {
	font-size: 20px;
	line-height: 1.3;
	font-weight: bold;
}

.entry-detail .entry-content h4 {
	font-size: 18px;
	line-height: 1.3;
	font-weight: bold;
}

.entry-detail .entry-content h5 {
	line-height: 1.3;
	font-weight: bold;
}

.entry-detail .entry-content h6 {
	line-height: 1.3;
	font-weight: bold;
}

.entry-detail .entry-content h1,
.entry-detail .entry-content h2,
.entry-detail .entry-content h3,
.entry-detail .entry-content h4,
.entry-detail .entry-content h5,
.entry-detail .entry-content h6 {
	margin: 16px 0 !important;
}

.entry-detail .entry-content ul,
.entry-detail .entry-content ol {
	margin: 0 0 16px;
	padding-left: 1.5em;
}

.entry-detail .entry-content ul li {
	list-style: disc;
}

.entry-detail .entry-content blockquote {
	font-style: italic;
	padding: 0 32px;
}

.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
	font-style: normal;
}

.entry-detail .entry-content table {
	width: 100%;
	margin-bottom: 1em;
}

.entry-detail .entry-content table th,
.entry-detail .entry-content table td {
	padding: 8px;
	border: 1px solid #d4d4d4;
}

/* 投稿画像 */
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img {
	/*max-width: 100%;
	height: auto;*/
}

.alignleft,
img.alignleft {
	display: inline;
	float: left;
	margin-right: 24px;
	margin-top: 4px;
}

.alignright,
img.alignright {
	display: inline;
	float: right;
	margin-left: 24px;
	margin-top: 4px;
}

.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
	margin-bottom: 12px;
}

.wp-caption {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.entry-detail .entry-content table {
		font-size: 12px;
	}

	.entry-detail .entry-content table th,
	.entry-detail .entry-content table td {
		padding: 4px;
	}
}


/*================================*/
/* WP投稿ページ ページ下部の店舗情報 */
/*================================*/


.sec-f-shopinfo {
	margin-top: 64px;
	background-color: #EEEFEF;
	overflow: hidden;
}

.sec-f-shopinfo .contents {
	max-width: 720px;
}

.sec-f-shopinfo .wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 24px 0 64px;
	padding-top: 16px;
	border-top: 1px solid #333;
}

.sec-f-shopinfo .info-shop {
	width: 48%;
}

.sec-f-shopinfo .sns-info {
	width: 48%;
	max-width: 136px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.sec-f-shopinfo .sns-info dt {
	width: 100%;
	margin-bottom: 8px;
	text-align: center;
}

.sec-f-shopinfo .sns-info dd {
	width: 40px;
}


@media screen and (max-width: 767px) {

	.sec-f-shopinfo .wrap {
		display: block;
		margin: 16px 0 32px;
	}

	.sec-f-shopinfo .info-shop {
		width: 100%;
	}

	.sec-f-shopinfo .sns-info {
		width: 100%;
		margin: 16px auto 0;
	}
}

/*===========*/
/* TOPバナー */
/*===========*/
.sec-banner {
	padding: 80px 0 ;
}
.sec-banner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px 24px;
	margin-bottom: 32px !important;
}

@media screen and (max-width: 767px) {
	.sec-banner {
		padding: 60px 0 ;
	}
	.sec-banner ul {
		gap: 24px 16px;
		margin-bottom: 24px !important;
	}
	.sec-banner li {
		width: calc((100% - 16px) / 2);
	}
}


/*==================*/
/* ロゴダウンロード */
/*==================*/
.sec-download .contents {
	max-width: 560px;
	width: 100%;
	text-align: center;
}

.sec-download .contents h2 {
	margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
	.sec-download .contents h2 {
		margin-bottom: 24px;
	}
}