@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
/* setting */
html {
	height: 100%;
	font-size: 62.5%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
body {
	min-width: 1240px;
	padding-top: 100px;
	font-family: 'Noto Serif JP', serif;
	background: #000;
	line-height: 1;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	color: #fff;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#wrap {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.page {
	width: 1150px;
	margin: 0 auto;
}
.page p {
	line-height: 1.8;
}
.small {
	width: 900px;
}
.column {
	display: flex;
	justify-content: space-between;
}
.main {
	width: 840px;
}
.side {
	width: 240px;
}
h1,h2,h3,h4,h5,h6 {
	color: #fff;
	font-weight: 700;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: underline;
	color: #EDD135;
}
a:hover {
	text-decoration: none;
}
.sp {
	display: none !important;
}
.pc {
	display: block !important;
}
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	background: #101010;
	border: .5px solid rgba(112,112,112,.5);
	text-decoration: none;
	text-align: center;
	font-weight: 700;
	color: #fff;
	position: relative;
	border-radius: 4px;
	transition: .7s;
}
.btn:hover {
	opacity: .7;
}
.main-btn {
	width: 200px;
	height: 56px;
	margin: 0 auto;
}
.tra {
	transition: .7s;
}
.tra:hover {
	opacity: .7;
}
@media (max-width: 480px) {
	body {
		min-width: initial;
		padding-top: 64px;
		font-family: 'Noto Serif JP', serif;
	}
	.page {
		width: 88%;
	}
	.page p {
		line-height: 1.7;
	}
	.small {
		width: 88%;
	}
	.column {
		display: block;
	}
	.main {
		width: 100%;
	}
	.side {
		width: 100%;
		margin-top: 64px;
	}
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	.btn {
		height: 40px;
		transition: none;
	}
	.main-btn {
		height: 48px;
		font-size: 1.3rem;
	}
	.btn:hover {
		opacity: 1;
	}
}


/* heaeder */
.header {
	width: 100%;
	min-width: 1240px;
	height: 100px;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	height: 100px;
	margin: 0 auto;
}
.h-logo a img {
	display: block;
	width: 324px;
	height: auto;
}
.h-nav-area {
	display: flex;
	align-items: center;
}
.h-nav {
	font-size: 1.4rem;
}
.h-nav > ul {
	display: flex;
}
.h-nav > ul > li {
	margin-right: 28px;
}
.h-nav > ul > li > a {
	text-decoration: none;
	color: #fff;
	transition: .7s;
}
.h-nav > ul > li > a:hover {
	color: #EDD135;
}
.h-search {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 200px;
	height: 32px;
	margin-right: 18px;
	padding: 4px 8px 7px 8px;
	line-height: 0;
	background: #fff;
	font-size: 1.2rem;
	color: #444;
	border-radius: 4px;
	position: relative;
}
.form-text {
	width: 190px;
}
.h-search-btn {
	width: 32px;
	padding: 3px 0 0 9px;
}
.h-search-btn > img {
	width: 15px;
	height: 15px;
}
.h-member-nav {
	display: flex;
}
.h-member-nav > li {
	margin-left: 10px;
}
.h-member-nav > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 36px;
	background: #101010;
	font-size: 1.1rem;
}
@media (max-width: 480px) {
	/* heaeder */
	.header {
		min-width: initial;
		height: 64px;
	}
	.header-inner {
		width: 92%;
		height: 64px;
	}
	.h-logo a img {
		width: 160px;
	}
	.h-nav-area {
		display: none;
		width: 100%;
		height: 100%;
		padding: 96px 10%;
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
	}
	.h-nav {
		font-size: 1.6rem;
	}
	.h-nav > ul {
		display: block;
		text-align: center;
	}
	.h-nav > ul > li {
		margin: 0 0 32px;
	}
	.h-nav > ul > li:last-of-type {
		margin-bottom: 40px;
	}
	.h-nav > ul > li > a {
		transition: none;
	}
	.h-nav > ul > li > a:hover {
		color: #fff;
	}
	.h-search {
		width: 260px;
		height: 38px;
		margin: 0 auto 40px;
	}
	.form-text {
		width: 206px;
	}
	.h-member-nav {
		display: block;
		width: 260px;
		margin: 0 auto;
	}
	.h-member-nav > li {
		margin: 12px 0 0 0;
	}
	.h-member-nav > li > a {
		width: 260px;
		height: 44px;
		font-size: 1.2rem;
	}
	.menu-trigger {
		display: block;
		width: 24px;
		height: 14px;
		position: relative;
	}
	.menu-trigger > span {
		display: block;
		width: 24px;
		height: 2px;
		background: #EDD135;
		position: absolute;
		transition: .7s;
		z-index: 10000;
	}
	.menu-trigger > span:first-of-type {
		top: 0;
	}
	.menu-trigger > span:nth-of-type(2) {
		top: 5px;
	}
	.menu-trigger > span:last-of-type {
		top: 10px;
	}
	.menu-trigger.show > span:first-of-type {
		-webkit-transform: translateY(5px) rotate(-45deg);
		transform: translateY(5px) rotate(-45deg);
	}
	.menu-trigger.show > span:nth-of-type(2) {
		display: none;
	}
	.menu-trigger.show > span:last-of-type {
		-webkit-transform: translateY(-5px) rotate(45deg);
		transform: translateY(-5px) rotate(45deg);
	}
	
	body.fixed {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: -10;
	}
}


/* top */
.top-slider {
	width: 1000px;
}
.top-slide > picture > sourse {
	width: 1000px;
	height: auto;
}
.top {
	width: 1150px;
	margin: 0 auto;
}
.top-cont {
	margin-top: 120px;
}
.top-coupon-mg {
	margin-top: 70px;
}
.top-head {
	margin-bottom: 48px;
	text-align: center;
}
.top-head > h2 {
	margin-bottom: 12px;
	letter-spacing: 1px;
	font-size: 2.4rem;
}
.top-head > span {
	font-size: 1.2rem;
	color: #EDD135;
}

.top-store-inner {
	display: flex;
	flex-wrap: wrap;
}
.top-store {
	width: 350px;
	margin: 0 50px 50px 0;
}
.top-store:nth-of-type(3n) {
	margin: 0 0 50px 0;
}
.top-store > a {
	text-decoration: none;
	color: #fff;
}
.top-store-img {
	margin-bottom: 24px;
	position: relative;
}
.top-store-img > ul {
	display: flex;
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	position: absolute;
	right: 12px;
	bottom: 12px;
}
.top-store-img > ul > li {
	margin-left: 4px;
	padding: 4px 12px 5px;
	background: #EDD135;
	border-radius: 2px;
}
.top-store-cont > h3 {
	margin-bottom: 14px;
	line-height: 1.4;
	font-size: 1.8rem;
}
.top-store-cont > p {
	line-height: 1.6;
	font-size: 1.2rem;
}

.top-coupon-inner {
	display: flex;
	flex-wrap: wrap;
}
.top-coupon {
	width: 560px;
	background: #101010;
	margin: 0 30px 30px 0;
}
.top-coupon:nth-of-type(even) {
	margin: 0 0 30px 0;
}
.top-coupon > a {
	display: block;
	padding: 30px;
	text-decoration: none;
	color: #fff;
}
.top-coupon > a > h3 {
	margin-bottom: 28px;
	padding-bottom: 28px;
	line-height: 1.5;
	border-bottom: .5px solid #777;
	font-size: 1.8rem;
	color: #EDD135;
}
.top-coupon > a > p {
	line-height: 1.5;
}
.top-coupon-data {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 32px;
}
.top-coupon-data > ul {
	display: flex;
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
}
.top-coupon-data > ul > li {
	margin-left: 4px;
	padding: 4px 12px 5px;
	background: #EDD135;
	border-radius: 2px;
}

.top-post-inner {
	display: flex;
	flex-wrap: wrap;
}
.top-post {
	width: 560px;
	background: #101010;
	margin: 0 30px 30px 0;
}
.top-post:nth-of-type(even) {
	margin: 0 0 30px 0;
}
.top-post > a {
	display: flex;
	align-items: center;
	padding: 20px;
	text-decoration: none;
	color: #fff;
}
.top-post-thumb {
	width: 160px;
	margin-right: 24px;
}
.top-post-thumb img {
	width: 160px;
	height: 160px;
}
.top-post-cont > time {
	font-size: 1.3rem;
}
.top-post-cont > h3 {
	margin: 12px 0 14px;
	line-height: 1.5;
	font-size: 1.7rem;
	color: #EDD135;
}
.top-post-cont > p {
	font-size: 1.2rem;
}
.top-coupon-btn,
.top-post-btn {
	margin-top: 10px;
}
.top-store-btn {
	margin-top: -10px;
}
.top-no-post {
	width: 100%;
	padding: 56px;
	background: #101010;
	text-align: center;
}

@media (max-width: 480px) {
	.top-slider {
		width: 100%;
	}
	.top-slide > picture > sourse {
		width: 100%;
	}
	.top {
		width: 88%;
	}
	.top-cont {
		margin-top: 64px;
	}
	.top-coupon-mg {
		margin-top: 64px;
	}
	.top-head {
		margin-bottom: 32px;
	}
	.top-head > h2 {
		margin-bottom: 12px;
		font-size: 2.0rem;
	}
	
	.top-store-inner {
		display: block;
	}
	.top-store {
		width: 100%;
		margin: 0 0 32px 0;
	}
	.top-store:nth-of-type(3n) {
		margin: 0 0 32px 0;
	}
	.top-store-img {
		margin-bottom: 20px;
	}
	.top-store-cont > h3 {
		margin-bottom: 12px;
	}
	.top-store-cont > p {
		line-height: 1.5;
	}
	
	.top-coupon-inner {
		display: block;
	}
	.top-coupon {
		width: 100%;
		margin: 0 0 24px 0;
	}
	.top-coupon:nth-of-type(even) {
		margin: 0 0 24px 0;
	}
	.top-coupon > a {
		padding: 16px;
	}
	.top-coupon > a > h3 {
		margin-bottom: 24px;
		padding-bottom: 24px;
		line-height: 1.5;
		font-size: 1.7rem;
	}
	.top-coupon-data {
		display: block;
		margin-top: 24px;
	}
	.top-coupon-data > ul {
		margin-bottom: 20px;
	}
	.top-coupon-data > p {
		text-align: right;
	}
	
	.top-post-inner {
		display: block;
	}
	.top-post {
		align-items: flex-start !important;
		width: 100%;
		margin: 0 0 24px 0;
	}
	.top-post:nth-of-type(even) {
		margin: 0 0 24px 0;
	}
	.top-post > a {
		align-items: flex-start;
		padding: 10px;
	}
	.top-post-thumb {
		width: 80px;
		margin-right: 14px;
	}
	.top-post-thumb img {
		width: 80px;
		height: 80px;
	}
	.top-post-cont > time {
		font-size: 1.3rem;
	}
	.top-post-cont > h3 {
		margin: 10px 0 12px;
		line-height: 1.4;
		font-size: 1.6rem;
	}
	.top-post-cont > p {
		font-size: 1.2rem;
	}
	.top-btn {
		margin-top: 32px;
	}
	.top-coupon-btn,
	.top-post-btn {
		margin-top: 32px;
	}
	.top-store-btn {
		margin-top: 32px;
	}
	.top-no-post {
		padding: 48px;
	}
}


/* breadcrumbs */
.breadcrumbs {
	display: flex;
	align-items: center;
	height: 47px;
	margin-bottom: 88px;
	background: #101010;
	border-top: .5px solid rgba(112,112,112,.5);
	border-bottom: .5px solid rgba(112,112,112,.5);
	font-size: 1.2rem;
}
.breadcrumbs-inner {
	width: 1150px;
	margin: 0 auto;
}
@media (max-width: 480px) {
	.breadcrumbs {
		height: 34px;
		margin-bottom: 48px;
		font-size: 1.1rem;
	}
	.breadcrumbs-inner {
		width: 92%;
	}
}


/* footer */
.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 130px;
	padding: 88px 0;
	background: #101010;
	border-top: .5px solid rgba(112,112,112,.5);
	text-align: center;
}
.f-nav {
	margin-bottom: 96px;
	font-size: 1.4rem;
}
.f-nav > ul {
	display: flex;
}
.f-nav > ul > li {
	display: flex;
	margin-right: 10px;
}
.f-nav > ul > li:after {
	display: block;
	content: '｜';
	margin-left: 10px;
}
.f-nav > ul > li:last-of-type:after {
	content: '';
}
.f-nav > ul > li > a {
	text-decoration: none;
	color: #fff;
}
.f-nav > ul > li > a:hover {
	text-decoration: underline;
}
.copy {
	font-size: 1.1rem;
}
@media (max-width: 480px) {
	.footer {
		margin-top: 88px;
		padding: 64px 0;
	}
	.f-nav {
		margin-bottom: 72px;
		font-size: 1.4rem;
	}
	.f-nav > ul {
		display: block;
		text-align: center;
	}
	.f-nav > ul > li {
		display: block;
		margin: 0 0 32px 0;
	}
	.f-nav > ul > li:after,
	.f-nav > ul > li:last-of-type:after  {
		content: '';
	}
	.f-nav > ul > li > a:hover {
		text-decoration: none;
	}
}


/* commom */
.page > h2,
.main > h2 {
	padding: 20px 26px 22px;
	background: #101010;
	border-left: 4px solid #EDD135;
	font-size: 2.4rem;
	color: #EDD135;
}
.small > h2 {
	margin-bottom: 48px;
}
.m-table {
	width: 100%;
	background: #101010;
}
.m-table tbody tr {
	width: 100%;
}
.m-table tr th,
.m-table tr td {
	padding: 24px 24px 26px;
	line-height: 1.6;
	vertical-align: middle;
	border-bottom: 2px solid #000;
}
.m-table tr th {
	width: 220px;
	border-right: 2px solid #000;
}
.cat-table {
	margin-top: 48px;
}
.cat-table tr th,
.cat-table tr td {
	padding: 30px 32px 34px;
	vertical-align: middle;
}
.cat-table tr th {
	text-align: center;
}
.cat-table tr td ul {
	display: flex;
	flex-wrap: wrap;
}
.cat-table tr td ul li {
	margin-right: 28px;
	line-height: 3;
}
.cat-table tr td ul li > a {
	color: #fff;
}
@media (max-width: 480px) {
	.page > h2,
	.main > h2 {
		padding: 14px 22px 16px;
		border-left: 3px solid #EDD135;
		font-size: 1.8rem;
	}
	.small > h2 {
		margin-bottom: 32px;
	}
	.m-table {
		font-size: 1.4rem;
	}
	.m-table > tbody > tr > th,
	.m-table > tbody > tr > td {
		display: block;
		width: 100%;
		padding: 22px 20px 24px;
		line-height: 1.6;
		border-bottom: 2px solid #000;
	}
	.m-table > tbody > tr > th {
		padding: 20px 22px 22px;
		border-right: none;
	}
	
	.cat-table {
		margin-top: 32px;
	}
	.cat-table > tbody,
	.cat-table > tbody > tr {
		display: block;
		width: 100%;
	}
	.cat-table > tr > th,
	.cat-table > tr > td {
		padding: 24px 22px 26px;
	}
	.cat-table > tr > th {
		width: 100%;
		padding: 20px 22px 22px;
	}
	.cat-table tr td ul li {
		margin-right: 24px;
		line-height: 2.4;
	}
}


/* company */
.atom-logo {
	display: block;
	width: 540px;
	height: auto;
	margin: 0 auto 40px;
}
.overview {
	margin-bottom: 48px;
}
.overview h3,
.access h3 {
	margin-bottom: 28px;
	font-size: 2.0rem;
}
.access {
	font-size: 1.3rem;
}
.g-map {
	margin: 0 0 20px;
}

/* contact */
.form-wrap > dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}
.form-wrap > dl:first-of-type {
	margin-top: 48px;
}
.form-wrap > dl > dt > span {
	margin-left: 10px;
	color: #EDD135;
}
.form-wrap > dl > dd {
	width: 680px;
}
.form-wrap > dl > dd input,
.form-wrap > dl > dd textarea {
	width: 100%;
	padding: 18px;
	background: #222;
	border: .5px solid rgba(112,112,112,.5);
	border-radius: 4px;
	color: #FFF;
}
.form-wrap > dl > dd textarea {
	height: 300px;
}
.submit-btn {
	width: 240px;
	height: 56px;
	margin: 48px auto 0;
}
.wpcf7-spinner {
	display: none;
}

/* privacypolicy */
.policy > dl {
	margin-top: 38px;
	line-height: 1.8;
}
.policy > dl > dt {
	margin-bottom: 14px;
	font-size: 2.0rem;
}
.policy > dl > dd > ul,
.policy > dl > dd > p {
	margin-top: 18px;
}
.policy > dl > dd > ul > li > ul {
	margin: 14px 0;
}
@media (max-width: 480px) {
	.atom-logo {
		width: 80%;
		margin: 0 auto 32px;
	}
	.overview {
		margin-bottom: 40px;
	}
	.overview h3,
	.access h3 {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}
	.access {
		font-size: 1.2rem;
	}
	.g-map {
		width: 100vw;
		height: 0;
		margin: 0 calc(50% - 50vw) 16px;
		padding-bottom: 80%;
		overflow: hidden;
		position: relative;
	}
	.g-map > iframe {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	
	/* contact */
	.contact > p > br {
		display: none;
	} 
	.form-wrap > dl {
		display: block;
		margin-top: 24px;
	}
	.form-wrap > dl:first-of-type {
		margin-top: 32px;
	}
	.form-wrap > dl > dt > span {
		margin-left: 8px;
	}
	.form-wrap > dl > dd {
		width: 100%;
		margin-top: 16px;
	}
	.form-wrap > dl > dd input,
	.form-wrap > dl > dd textarea {
		padding: 14px;
	}
	.form-wrap > dl > dd textarea {
		height: 240px;
	}
	.submit-btn {
		width: 200px;
		height: 48px;
		margin: 32px auto 0;
		font-size: 1.4rem;
	}
	
	/* privacypolicy */
	.policy > dl {
		margin-top: 28px;
		line-height: 1.6;
	}
	.policy > dl > dt {
		margin-bottom: 10px;
		font-size: 1.8rem;
	}
	.policy > dl > dd > p,
	.policy > dl > dd > ul {
		margin-top: 14px;
	}
	.policy > dl > dd > ul > li > ul {
		margin: 12px 0;
	}
}



/* store single */
.s-header-inner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
}
.s-header-left {
	width: 680px;
}
.s-detail-area {
	font-size: 1.2rem;
}
.s-name {
	margin-top: 12px;
	font-size: 2.8rem;
	color: #EDD135;
}
.s-header-sns {
	display: flex;
}
.s-header-sns > li {
	width: 28px;
	margin-left: 8px;
}

.swiper {
	width: 100%;
}
.swiper .store-slider {
	width: 840px;
	height: 440px;
}
.swiper .store-slider img {
	width: 840px;
	height: auto;
	object-fit: cover;
}
.store-thumbnail {
	height: 60px;
	margin-top: 5px;
}
.store-thumbnail > .swiper-wrapper > .swiper-slide {
	width: 16%;
	height: 100%;
	margin-right: 5px;
	cursor: pointer;
	overflow: hidden;
}

.appeal {
	margin-top: 80px;
}
.appeal > h2 {
	line-height: 1.5;
	font-size: 2.4rem;
}
.appeal > p {
	margin-top: 24px;
	line-height: 2.4;
}

.s-coupon {
	margin-top: 80px;
}
.s-coupon-cont {
	padding: 48px 48px;
	background: #101010;
}
.s-coupon-cont > h4 {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 2.0rem;
	color: #EDD135;
}
.s-coupon-cont > hr {
	margin: 40px 0;
}
.s-coupon-cont > ul > li {
	margin-top: 12px;
	font-size: 1.4rem;
}

.store-info {
	margin-top: 80px;
}
.store-title {
	margin-bottom: 28px;
	font-size: 2.4rem;
}

.s-map {
	margin-top: 8px;
}
.g-map {
	height: 0;
	padding: 24%;
	position: relative;
	overflow: hidden;
}
.g-map > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.g-map-link {
	text-decoration: underline;
	font-size: 1.2rem;
	color: #fff;
}

.s-gallery {
	margin-top: 80px;
}
.s-gallery > ul {
	display: flex;
	flex-wrap: wrap;
}
.s-gallery > ul > li {
	width: 210px;
}
.s-gallery > ul > li > a > img {
	width: 210px;
	height: 210px;
	object-fit: cover;
}

.job {
	margin: 80px 0 48px;
}
.no-store {
	padding: 32px 32px 34px;
	background: #101010;
}


/* store archive */
.s-cat {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 8px 0 48px;
}
.s-post {
	width: 410px;
	margin-top: 40px;
	padding: 25px;
	background: #101010;
}
.s-post > a {
	text-decoration: none;
	color: #fff;
}
.s-post-thumb {
	margin-bottom: 24px;
}
.s-post-cont > h3 {
	margin-bottom: 16px;
	line-height: 1.5;
	font-size: 1.8rem;
}
.s-post-cont > p {
	font-size: 1.2rem;
}
.s-post-cont > ul {
	display: flex;
	margin-top: 12px;
}
.s-post-cont > ul > li {
	display: block;
	margin-right: 6px;
	padding: 5px 12px 7px;
	background: #EDD135;
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	border-radius: 2px;
}
.s-post-coupon {
	margin-top: 28px;
}
.s-post-coupon > h4 {
	margin-bottom: 14px;
}
.s-post-coupon > p {
	width: 100%;
	padding: 22px 20px 24px;
	line-height: 1.4;
	background: #222;
	font-size: 1.4rem;
	font-weight: 700;
	color: #EDD135;
}


/* coupon archive */
.c-post {
	width: 100%;
	margin-bottom: 24px;
}
.c-post > a {
	display: flex;
	justify-content: space-between;
	padding: 36px;
	background: #101010;
	text-decoration: none;
	color: #fff;
}
.c-post-thumb {
	width: 240px;
	margin-right: 40px;
}
.c-post-thumb > img {
	width: 240px;
	height: 160px;
	object-fit: cover;
}
.c-post-thumb > p {
	margin-top: 16px;
	font-size: 1.8rem;
}
.c-post-cont {
	width: 490px;
}
.c-post-cont > h4 {
	margin-bottom: 16px;
	line-height: 1.5;
	font-size: 2.2rem;
	color: #EDD135;
}
.c-post-cont > hr {
	margin: 32px 0;
}
.c-post-cont > ul > li {
	margin-top: 12px;
	font-size: 1.4rem;
}


/* side */
.side-cont {
	margin-bottom: 56px;
}
.side-cont:last-of-type {
	margin-bottom: 0;
}
.side-head > h3 {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255,255,255,.2);
	font-size: 1.7rem;
}
.side-cont .h-search {
	width: 240px;
	height: 36px;
	padding: 4px 8px 7px 8px;
}
.side-cont .form-text {
	width: 220px;
}
.side-cont .h-search-btn {
	padding: 3px 0 0 13px;
}
.side-cat-list > li {
	margin-top: 20px;
}
.side-cat-list > li:first-of-type {
	margin-top: 0;
}
.side-cat-list > li > a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
	position: relative;
}
.side-cat-list > li > a:before {
	display: block;
	content: '';
	width: 4px;
	height: 1px;
	margin-right: 10px;
	background: #fff;
}
.side-member-nav > li {
	margin-top: 16px;
	background: #101010;
	border-radius: 4px;
	font-size: 1.3rem;
}
.side-btn {
	height: 48px;
}
.side-select {
	width: 100%;
	height: 54px;
	padding-left: 16px;
	background: #101010;
	border: .5px solid rgba(112,112,112,.5);
	border-radius: 4px;
	font-size: 1.3rem;
}

/* banner */
.banner {
	width: 1150px;
	margin: 120px auto 0;
}
.banner > h3 {
	margin-bottom: 12px;
	text-align: center;
	font-size: 2.4rem;
}

.large-banner {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 5px;
}
.large-banner > li {
	width: 360px;
	height: 100px;
	margin: 35px 35px 0 0;
}
.large-banner > li:nth-of-type(3n) {
	margin: 35px 0 0 0;
}

.small-banner {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.small-banner > li {
	width: 265px;
	height: 74px;
	margin: 35px 30px 0 0;
}
.small-banner > li:nth-of-type(4n) {
	margin: 35px 0 0 0;
}

.text-banner {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.text-banner > li {
	margin: 35px 20px 0;
	font-size: 1.8rem;
}
.text-banner > li > a {
	color: #fff;
}
.text-banner > li > a:hover {
	text-decoration: none;
}
@media (max-width: 480px) {
	.banner {
		width: 88%;
		margin: 64px auto 0;
	}
	.banner > h3 {
		margin-bottom: 10px;
		font-size: 2.0rem;
	}
	.large-inner {
		display: block;
	}
	.large-banner > li {
		width: 100%;
		height: auto;
		margin: 20px 0 0 0;
	}
	.large-banner > li:nth-of-type(3n) {
		margin: 20px 0 0 0;
	}
	
	.small-banner {
		justify-content: space-between;
	}
	.small-banner > li {
		width: 48%;
		height: auto;
		margin: 16px 0 0 0;
	}
	.small-banner > li:nth-of-type(2n) {
		margin: 16px 0 0 0;
	}
	
	.text-banner > li {
		margin: 20px 10px 0;
		font-size: 1.6rem;
	}
}




@media (max-width: 480px) {
	.s-header-inner {
		display: block;
		margin-bottom: 20px;
	}
	.s-header-left {
		width: 100%;
	}
	.s-name {
		margin-top: 10px;
		line-height: 1.5;
		font-size: 2.2rem;
	}
	.s-header-sns {
		margin-top: 6px;
	}
	.s-header-sns > li {
		margin: 18px 8px 0 0;
	}

	.swiper {
		width: 100%;
	}
	.swiper .store-slider {
		width: 100%;
		height: auto;
	}
	.store-thumbnail {
		height: 40px;
		margin-top: 3px;
	}
	.store-thumbnail > .swiper-wrapper > .swiper-slide {
		width: 16%;
		margin-right: 3px;
	}
	
	.appeal {
		margin-top: 40px;
	}
	.appeal > h2 {
		font-size: 2.0rem;
	}
	.appeal > p {
		margin-top: 20px;
		line-height: 2;
	}
	
	.s-coupon {
		margin-top: 48px;
	}
	.s-coupon-cont {
		padding: 24px 24px 32px;
	}
	.s-coupon-cont > h4 {
		margin-bottom: 16px;
		font-size: 1.8rem;
	}
	.s-coupon-cont > p {
		font-size: 1.4rem;
	}
	.s-coupon-cont > hr {
		margin: 24px 0 28px;
	}
	.s-coupon-cont > ul > li {
		margin-top: 8px;
		font-size: 1.3rem;
	}
	
	.store-info {
		margin-top: 48px;
	}
	.store-title {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}
	
	.s-map {
		margin-top: 6px;
	}
	.g-map {
		height: 0;
		padding: 48%;
	}
	.g-map > iframe {
		max-width: initial;
	}
	.g-map-link {
		font-size: 1.2rem;
	}
	
	.s-gallery {
		margin-top: 48px;
	}
	.s-gallery > ul > li {
		width: 33%;
		height: 110px;
	}
	.s-gallery > ul > li > a > img {
		width: 100%;
		height: 100%;
	}
	
	.job {
		margin: 48px 0 32px;
	}
	
	.no-store {
		padding: 20px 24px 24px;
	}
	
	
	/* store archive */
	.s-cat {
		display: block;
		margin: 32px 0;
	}
	.s-post {
		width: 100%;
		padding: 20px;
		margin: 0 0 24px;
	}
	.s-post-thumb {
		margin-bottom: 20px;
	}
	.s-post-cont > h3 {
		font-size: 1.7rem;
	}
	.s-post-cont > ul > li {
		margin-right: 6px;
		padding: 5px 12px 7px;
		background: #EDD135;
		font-size: 1.1rem;
		font-weight: 700;
		color: #333;
		border-radius: 2px;
	}
	.s-post-coupon > h4 {
		margin-bottom: 14px;
		font-size: 1.4rem;
	}
	.s-post-coupon > p {
		padding: 20px 18px 24px;
	}
	.no-store {
		padding: 20px 18px 24px;
	}
	
	
	/* coupon archive */
	.c-post {
		margin-bottom: 24px;
	}
	.c-post > a {
		display: block;
		padding: 24px 24px 32px;
	}
	.c-post-thumb {
		width: 100%;
		margin: 0 0 24px 0;
	}
	.c-post-thumb > img {
		width: 100%;
		height: 160px;
	}
	.c-post-thumb > p {
		margin-top: 10px;
		font-size: 1.7rem;
	}
	.c-post-cont {
		width: 100%;
	}
	.c-post-cont > h4 {
		margin-bottom: 12px;
		font-size: 1.8rem;
	}
	.c-post-cont > hr {
		margin: 24px 0;
	}
	.c-post-cont > ul > li {
		margin-top: 10px;
		font-size: 1.3rem;
	}
	
	
	.side-cont {
		margin-bottom: 48px;
	}
	.side-head > h3 {
		margin-bottom: 24px;
		padding-bottom: 20px;
	}
	.side-cont .h-search {
		width: 100%;
	}
	.side-cont .form-text {
		width: 90%;
	}
	.side-cont .h-search-btn {
		padding: 3px 0 0 13px;
	}
	.side-select {
		height: 50px;
	}
}


/* cat post */
.cat {
	margin-bottom: 48px;
}
.post-search {
	margin: 48px 0;
}
.cat-post {
	margin-bottom: 16px;
}
.cat-post a {
	text-decoration: none;
	color: #fff;
}
.cat-post-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px;
	background: #101010;
}
.cat-thumb {
	width: 260px;
}
.cat-thumb > img {
	width: 100%;
	height: auto;
}
.cat-cont {
	width: 480px;
}
.cat-cont > ul {
	display: flex;
	margin-bottom: 24px;
	font-size: 1.2rem;
}
.cat-cont > ul > li:last-of-type {
	margin-left: 16px;
	color: #EDD135;
}
.cat-cont > h3 {
	line-height: 1.6;
	font-size: 2.0rem;
}

/* pagenation */
.pagenation {
	text-align: center;
}
.pagenation:after,
.pagenation ul:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.pagenation ul {
	display: inline-block;
	overflow: hidden;
}
.pagenation li {
	float: left;
	display: inline;
	margin-left: 10px;
	font-weight: 700;
}
.pagenation li:first-child {
	margin-left: 0;
}
.pagenation li.active,
.pagenation li a:hover {
	width: 48px;
	height: 48px;
	padding-top: 14px;
	background: #EDD135;
	text-align: center;
	color: #101010;
}
.pagenation li a {
	display: block;
	width: 48px;
	height: 48px;
	padding-top: 14px;
	background: #101010;
	text-decoration: none;
	text-align: center;
	color: #fff;
	transition: .7s;
	cursor: pointer;
}

/* single post */
.single {
	margin-bottom: 48px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255,255,255,.2);
}
.single-header {
	margin-bottom: 48px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255,255,255,.2);
}
.single-header > time {
	font-size: 1.3rem;
}
.single-header > span {
	margin-left: 10px;
	font-size: 1.3rem;
}
.single-header > h2 {
	margin-top: 18px;
	line-height: 1.6;
	font-size: 2.2rem;
}
.single-cont > p {
	margin-bottom: 40px;
}
.single-cont > p:last-of-type {
	margin-bottom: 0;
} 
.single-cont > .wp-block-image {
	width: 640px;
	margin: 0 auto 40px;
	text-align: center;
	font-size: 1.2rem;
}
.single-cont > .wp-block-image figcaption {
	margin-top: 12px;
}

@media (max-width: 480px) {
	.cat {
		margin-bottom: 32px;
	}
	.cat-post {
		margin-bottom: 12px;
	}
	.cat-post-inner {
		align-items: initial;
		padding: 16px 12px;
	}
	.cat-thumb {
		width: 22%;
	}
	.cat-cont {
		width: 72%;
	}
	.cat-cont > ul {
		margin-bottom: 12px;
		font-size: 1.1rem;
	}
	.cat-cont > ul > li:last-of-type {
		margin-left: 12px;
	}
	.cat-cont > h3 {
		line-height: 1.5;
		font-size: 1.4rem;
	}
	
	/* pagenation */
	.pagenation li {
		margin-left: 8px;
	}
	.pagenation li.active,
	.pagenation li a:hover {
		width: 36px;
		height: 36px;
		padding-top: 9px;
	}
	.pagenation li a {
		width: 36px;
		height: 36px;
		padding-top: 9px;
		transition: none;
	}
	
	/* single post */
	.single {
		margin-bottom: 32px;
		padding-bottom: 40px;
	}
	.single-header {
		margin-bottom: 32px;
		padding-bottom: 24px;
	}
	.single-header > time {
		font-size: 1.2rem;
	}
	.single-header > h2 {
		margin-top: 14px;
		line-height: 1.5;
		font-size: 1.7rem;
	}
	.single-cont > p {
		margin-bottom: 24px;
	}
	.single-cont > .wp-block-image {
		width: 100%;
		margin: 0 auto 24px;
		font-size: 1.1rem;
	}
	.single-cont > .wp-block-image figcaption {
		margin-top: 12px;
	}
}