/* ####################################################
	common
#################################################### */

/* ====================================
	var
==================================== */
:root {
	/* wire frame */
	--wire-border-color: #999999;
	--font-weight-normal: 300;
	--font-weight-bold: 500;

	/* layput */
	--content-max-width: 1200px;
	--contentwrap-max-width: 870px;


	/* font-weight */
	--font-weight-noto-regular: 400;
	--font-weight-noto-medium: 500;
	--font-weight-noto-bold: 700;

	--font-weight-lato-regular: 400;
	--font-weight-lato-medium: 700;
	--font-weight-lato-bold: 900;

	/* color */
	--color-main: #383838;
	--color-border-default: #b6b6b6;
	--color-border-image: #eeeeee;
	--color-accent: #4C4948;
	--color-bg: #F3F1F0;

}

/* ====================================
	reset
==================================== */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	font-size: 62.5%;
	color: #383838;
	/* --color-main */
	font-weight: 300;
	/* --font-weight-normal */
}

body {
	font-size: 1.6rem;


	/* wire frame */
	min-width: 1200px;
	letter-spacing: 0.1rem;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: 300;
	/* --font-weight-normal */
	vertical-align: baseline;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overscroll-behavior-y: none;

	position: relative;
}

ol,
ul {
	list-style: none;
	list-style-type: none;
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

img {
	display: block;
	width: auto;
	max-width: 100%;
	vertical-align: bottom;
}

p {
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 0.5;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table td,
table th {
	empty-cells: show;
}

/* ====================================
	IE11 huck
==================================== */
@media all and (-ms-high-contrast:none) {

	*::-ms-backdrop,
	#menu-btn-check {
		opacity: 0
	}

	/* IE11 */
}


/* ====================================
	responsive
==================================== */
.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}

	body {
		min-width: 100%;
	}

	header {
		border-bottom: 1px solid #b6b6b6;
		/* --color-border-default */
	}
}

/* ====================================
	layout
==================================== */
#content {
	width: 100%;
	margin: 0 auto 0 auto;
}


/* ====================================
	header
==================================== */
header {
	border-top: 5px solid #4C4948;
	/* --color-accent */
}

.header__flex {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

/* header__flex */
#header__wrap {
	position: fixed;
	top: 0;
	z-index: 3;
	background-color: #fff;
	width: 100%;
}

.header__flex div.yaechika__logo--wrap {
	justify-content: center;
	position: absolute;
	top: 85%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header__flex div.yaechika__logo--wrap a {
	display: block;
}

.header__flex div:last-child {
	width: 130px;
	line-height: 50px;
	text-align: center;
	position: relative;
	background-image: url(../__common_img/down-arrow_icon.svg);
	background-size: 12px 10px;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.header__flex div:last-child #tg {
	display: none;
}

.header__flex div:last-child .menu {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	position: absolute;
	top: 40px;
	width: 100%;
	padding-top: 15px;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.dropInput:checked ~ .menu {
	visibility: visible !important;
	opacity: 1 !important;
	top: 0;
}

.header__flex div:last-child ul li {
	background-color: #F3F1F0;
	/* --color-bg */
	border-bottom: 1px solid #b6b6b6;
	/* --color-border-default */
	transition: 0.3s;
}

.header__flex div:last-child ul li:last-child {
	border-bottom: none;
}

.header__flex div:last-child ul li:hover {
	color: #fff;
	background-color: #4C4948;
	/* --color-accent */
}

.header__flex div:last-child label {
	display: block;
	font-size: 1.4rem;
	opacity: 1 !important;
	cursor: pointer;
	transition: 0.3s;
}
.header__flex div:last-child label:hover{
	opacity: 0.6 !important;
}
.header__flex div:last-child .animation {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}

.header__flex button {
	width: 20px;
	height: 20px;
	margin: 10px 0 0 0;
	background-image: url(../__common_img/search_icon.svg);
	background-size: 20px 20px;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: 0.3s;
}
.header__flex button:hover{
	opacity: 0.6;
}
.header__flex div:nth-child(2) {
	width: calc(100% - 200px);
	padding-right: 100px;
}

.header__flex div.popup__form {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	transition: .6s;
}

.header__flex div.popup__form.is-show {
	display: block;
	opacity: 0;
	animation-name: search-fadein;
	animation-duration: .7s;
	animation-fill-mode: forwards;
}

@keyframes search-fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.header__flex div.popup__form .popup__form--inner {
	position: absolute;
	left: 50%;
	top: 5%;
	transform: translate(-50%, 5%);
	width: 80%;
	max-width: 800px;
	padding: 50px;
	background-color: #F3F1F0;
	/* --color-bg */
	z-index: 2;
}

.header__flex div.popup__form .popup__form--inner img {
	width: 50px;
}

.popup__form--inner input {
	display: block;
	width: 100%;
	max-width: 600px;
	line-height: 60px;
	height: 60px;
	margin: 0 auto;
	padding: 0 0 0 30px;
	border: 1px solid #b6b6b6;
	/* --color-border-default */
}

input.search__btn {
	width: 59px;
	height: 59px;
	background: none;
	border: none;
	position: absolute;
	top: 51px;
	right: 101px;
	padding: 0;
	transition: 0.3s;
}

input.search__btn:hover {
	opacity: 0.6;
}

.header__flex div.popup__form .popup__close-btn {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 20px;
	height: 20px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	background-image: url(../__common_img/popup_close_btn.svg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.header__flex div.popup__form .popup__form--bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	z-index: 1;
	cursor: pointer;
}

/*  */
.header__flex div:nth-child(2) a {
	display: block;
	width: 110px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.header__flex {
		height: 120px;
	}

	.header__flex div.yaechika__logo--wrap {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.header__flex div.yaechika__logo--wrap a img {
		width: 217px;
		height: 40px;
	}

	.header__flex {
		justify-content: space-between;
	}

	.header__flex div:last-child {
		order: 1;
		line-height: 70px;
		background-size: 20px 15px;
	}

	.header__flex button {
		order: 2;
		width: 36px;
		height: 36px;
		margin: 10px 80px 0 0px;
		background-size: 36px;
	}
	.header__flex button:hover{
		opacity: 1;
	}

	.header__flex div.popup__form .popup__form--inner {
		top: 0;
		transform: translate(-50%, 0);
		width: 100%;
		padding: 125px 50px 50px;
	}

	.header__flex div.popup__form .popup__close-btn {
		right: 20px;
		top: 40px;
		width: 40px;
		height: 40px;
	}

	input.search__btn {
		top: 126px;
		right: 8%;
	}

}

@media only screen and (max-width: 414px) {
	.header__flex {
		height: 60px;
	}

	.header__flex div.yaechika__logo--wrap a img {
		width: 170px;
		height: 20px;
	}

	.header__flex div:last-child {
		width: 90px;
		line-height: 47px;
		background-size: 10px 10px;
	}

	_::-webkit-full-page-media,
	_:future,
	:root .header__flex div:last-child {
		margin-top: 0px;
	}

	.header__flex div:last-child #tg {
		display: none !important;
	}

	.header__flex div:last-child label {
		margin-top: -15px;
	}
	.header__flex div:last-child label:hover{
		opacity: 1 !important;
	}
	.header__flex div:last-child .menu {
		top: 35px;
		padding-top: 0px;
	}

	.header__flex div:last-child ul li {
		font-size: 1.3rem;
	}

	.header__flex button {
		width: 25px;
		height: 25px;
		margin: 0px 60px 0 0px;
		background-size: 25px;
	}

	.header__flex div.popup__form .popup__form--inner {
		padding: 75px 25px 35px;
	}

	.popup__form--inner input {
		line-height: 50px;
		height: 50px;
		background-size: 50px;
	}

	.header__flex div.popup__form .popup__close-btn {
		right: 15px;
		top: 25px;
		width: 20px;
		height: 20px;
	}

	input.search__btn {
		width: 50px;
		height: 50px;
		top: 76px;
		right: 6%;
	}
}

@media only screen and (max-width: 375px) {
	.popup__form--inner input {
		line-height: 40px;
		height: 40px;
		background-size: 40px;
	}

	.header__flex div.popup__form .popup__close-btn {
		top: 20px;
	}

	.header__flex div.popup__form .popup__form--inner {
		padding: 60px 25px 25px;
	}

	input.search__btn {
		width: 40px;
		height: 40px;
		top: 61px;
		right: 6.5%;
	}
}

@media only screen and (max-width: 360px) {
	input.search__btn {
		width: 40px;
		height: 40px;
		top: 61px;
		right: 7%;
	}
}

/* ====================================
	nav
==================================== */
.nav__flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: 1px solid #b6b6b6;
	/* --color-border-default */
}

.nav__flex li a {
	display: block;
	padding: 0 30px;
	border-right: 1px solid #b6b6b6;
	/* --color-border-default */
	font-size: 1.5rem;
	font-weight: 500;
	/* --font-weight-noto-medium */
}

.nav__flex li:last-child a {
	border: 0;
}

.nav__flex li.border__right--none a {
	border-right: none;
}

@media only screen and (max-width: 767px) {
	.menu-btn {
		position: absolute;
		top: 40px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 4px;
		width: 40px;
		background-color: #383838;
		/* --color-main */
		position: absolute;
		transition: 0.3s;
	}

	.menu-btn span:before {
		bottom: 15px;
	}

	.menu-btn span:after {
		top: 15px;
	}

	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);
		/*メニューオープン時は真ん中の線を透明にする*/
	}

	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}

	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}

	#menu-btn-check {
		display: none;
	}

	.nav__flex {
		display: block;
		width: 100%;
		height: 100%;
		padding: 125px 10.25%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 80;
		background-color: #F3F1F0;
		/* --color-bg */
		transition: all 0.3s;
		/*アニメーション設定*/
	}

	.nav__flex li {
		width: 100%;
		margin-bottom: 25px;
	}

	.nav__flex li a,
	.nav__flex li:last-child a {
		padding: 20px 30px;
		border: 1px solid #b6b6b6;
		/* --color-border-default */
		background-image: url(../__common_img/right-arrow_icon.svg);
		background-repeat: no-repeat;
		background-position: center right 30px;
		background-size: 7px;
	}


	#menu-btn-check:checked ~ .nav__flex {
		left: 0;
		/*メニューを画面内へ*/
		overflow: scroll;
	}

	.nav-search_wrap {
		margin: 50px 0 25px 0;
		position: relative;
	}

	.nav-conent__wrap {
		margin: 0 0 80px 0 !important;
	}

	.nav-search_wrap #shop_search__input {
		background-image: none;
	}

	.nav-search_wrap input.search__btn {
		top: 0;
		right: 0;
		width: 82px;
		height: 82px;
	}

	.nav-conent__wrap .contents__area {
		border-top: none;
		padding: 0 0 0 0;
	}

	.nav-conent__wrap .contents__area ul li {
		width: 30%;
		margin: 0 5px 10px 5px;
	}

	.nav-conent__wrap .contents__area ul li a {
		border: none;
		background-image: none;
	}

	.nav-sns__flex .sns__flex li {
		width: 15%;
	}

	.nav-sns__flex .sns__flex li a {
		padding: 0 0 0 0;
		border: none;
	}

	.nav__flex li.border__right--none a {
		border-right: 1px solid #b6b6b6;
	}
}

@media only screen and (max-width: 767px) {
	.nav__flex .sns__flex a {
		background-image: none !important;
	}
}

@media only screen and (max-width: 414px) {
	.nav__flex {
		padding: 65px 10.25%;
	}

	.menu-btn {
		top: 15px;
		right: 10px;
		height: 40px;
		width: 40px;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		height: 3px;
		width: 23px;
	}

	.menu-btn span:before {
		bottom: 8px;
	}

	.menu-btn span:after {
		top: 8px;
	}

	.nav-search_wrap {
		margin: 35px 0 25px 0;
	}

	.nav-search_wrap #shop_search__input {
		font-size: 1.2rem;
		line-height: 40px;
		background-size: 40px;
		padding: 0 0 0 10px;
	}

	.nav-conent__wrap {
		margin: 0 0 40px 0 !important;
	}

	.nav-search_wrap input.search__btn {
		top: 0px;
		width: 42px;
		height: 42px;
	}

	.nav-conent__wrap .contents__area ul li {
		margin: 0 5px 15px 5px;
		width: 25%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(3) {
		margin: 0 0px 15px 5px;
	}

	.nav-conent__wrap .contents__area ul li a {
		padding: 0 0 0 0;
		background-image: none;
	}

	.nav-conent__wrap .contents__area ul li a div {
		width: 70px;
		height: 70px;
		margin: 0 auto 10px;
		background-size: 35px;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(1) a div {
		background-size: 60%;
		background-position: top 14px center;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(2) a div {
		background-size: 56%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(3) a div {
		background-size: 43%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(4) a div {
		background-size: 55%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(5) a div {
		background-size: 66%;
		background-position: top 13px left 15px;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(6) a div {
		background-size: 60%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(7) a div {
		background-size: 55%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(8) a div {
		background-size: 35%;
	}

	.nav-conent__wrap .contents__area ul li:nth-child(9) a div {
		background-size: 62%;
	}

	.nav-conent__wrap .contents__area ul li a p {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 375px) {
	.nav-conent__wrap .contents__area ul li {
		width: 29%;
	}

}

@media only screen and (max-width: 360px) {
	.nav-search_wrap #shop_search__input {
		font-size: 1rem;
	}

}

@media only screen and (max-width: 320px) {
	.nav-search_wrap #shop_search__input {
		font-size: 1rem !important;
		line-height: 35px;
		background-size: 35px;
		max-width: 103%;
		width: 120%;
		margin-left: -7px;
		padding: 0 0 0 3px;
	}

	.nav-search_wrap input.search__btn {
		width: 37px;
		height: 37px;
	}
}

/* ====================================
	pankuzu
==================================== */
#pankuzu {
	margin-top: 127px;
}

#pankuzu ul {
	display: flex;
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto;
	padding: 10px 0 15px 0;
}

#pankuzu ul li {
	padding: 0 10px 0 0;
}

#pankuzu ul li a {
	font-size: 1.0rem;
}

#pankuzu ul li:last-child a {
	pointer-events: none;
}

#pankuzu ul li a::after {
	content: ">";
	padding: 0 0 0 10px;
}

#pankuzu ul li:last-child a::after {
	content: "";
	padding: 0 0 0 0;
}

@media only screen and (max-width: 767px) {
	#pankuzu ul {
		padding: 20px 0 20px 20px;
	}

	#pankuzu ul li a {
		font-size: 1.0rem;
	}
}

@media only screen and (max-width: 414px) {
	#pankuzu {
		margin-top: 66px;
	}

	#pankuzu ul {
		padding: 5px 0 10px 20px;
	}
}

/* ====================================
	footer
==================================== */
footer {
	margin: 0 0 0 0;
}

/* --------------------
	sns
-------------------- */
.sns__area {
	padding: 80px 0 60px 0;
}

.sns__wrap {
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto;
}

.sns__wrap h2 {
	text-align: center;
	font-size: 2.0rem;
	font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
	/* --font-weight-lato-bold */
	margin-bottom: 30px;
}

.sns__flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.sns__flex li a {
	display: block;
	margin: 0 15px;

}

.sns__flex li a,
.sns__flex li img {
	width: 50px;
	height: 50px;
}

/* --------------------
	topへ戻る
-------------------- */
#page__top {
	position: fixed;
	bottom: 80px;
	right: 50px;
	z-index: 99;
}

#page__top a {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #fff;
	background-image: url(../__common_img/scroll_top_icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #4C4948;
	/* --color-accent */
}

#page__top a:hover {
	opacity: 1;
}

@media only screen and (max-width: 767px) {
	.sns__flex li {
		width: 17.5%;
	}

	.sns__flex li a {
		width: 70%;
		margin: 0 15%;
		height: auto;
	}

	.sns__flex li img {
		width: 100%;
		height: auto;
	}

	/* --------------------
	topへ戻る
-------------------- */
	#page__top {
		bottom: 115px;
		right: 20px;
		z-index: 9999;
	}

	#page__top a {
		width: 70px;
		height: 70px;
		background-size: 20px;
	}
}

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

	/* --------------------
	topへ戻る
-------------------- */
	#page__top {
		bottom: 170px;
	}

	#page__top a {
		width: 40px;
		height: 40px;
		background-size: 12px;
		border: 1px solid #fff;
	}

	/* --------------------
	sns
-------------------- */
	.sns__area {
		padding: 60px 0 40px 0;
	}
}

@media only screen and (max-width: 375px) {
	#page__top {
		bottom: 205px;
	}

	#page__top a {
		background-size: 10px;
	}
}

@media only screen and (max-width: 320px) {
	#page__top {
		bottom: 230px;
	}
}

/* --------------------
	site_link
-------------------- */
.site_link__area {
	padding: 30px 0 0 0;
	background-color: #4C4948;
	/* --color-accent */
}

.site_link__wrap {
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto;
}

.site_link__flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
}

.site_link__flex li a {
	display: block;
	color: #fff;
	padding: 0 13px;
	border-right: 1px solid #ffffff;
	font-size: 1.4rem;
}

.site_link__flex li:last-child a {
	border: 0;
}

.site_link__flex li {
	margin: 0 0 10px 0;
}
/*
.site_link__flex li:nth-child(7) a {
	border-right: 0;
}*/

@media only screen and (max-width: 767px) {
	.site_link__flex li a {
		padding: 0 20px;
	}

}

@media only screen and (max-width: 414px) {
/*
	.site_link__flex li:nth-child(3) a,
	.site_link__flex li:nth-child(5) a,
	.site_link__flex li:nth-child(6) a,
	.site_link__flex li:nth-child(7) a {
		border-right: 0;
	}*/
}

@media only screen and (max-width: 375px) {
	/*
	.site_link__flex li:nth-child(4) a {
		border-right: 0;
	}*/

	.site_link__flex li:nth-child(5) a {
		border-right: 1px solid #ffffff;
	}

}

@media only screen and (max-width: 350px) {
	.site_link__flex li {
		margin: 0 0 13px 0;
		width: 75%;
		text-align: center;
	}
	.site_link__flex li:nth-child(7) a{
		border-right: 0;
	}

	.site_link__flex li a,
	.site_link__flex li:nth-child(5) a {
		border-right: 0;
	}
}

/* --------------------
	copyright
-------------------- */
.copyright__area {
	padding: 30px 0 20px;
	background-color: #4C4948;
	/* --color-accent */

}

.copyright__area p {
	font-size: 1.2rem;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-align: center;
	color: #ffffff;
}


@media only screen and (max-width: 767px) {
	/* --------------------
	copyright
-------------------- */
}



/* ====================================
	layout
==================================== */
.area {}

.wrap {
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto;
}

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

/* --------------------
	shop
-------------------- */

.shop_cat {
	display: inline-block;
	line-height: 30px;
	padding: 0 30px;
	font-size: 1.2rem;
	margin: 0 0 10px 0;
	background-color: #F3F1F0;
	/* --color-bg */
}

.shop_genre {
	display: inline;
	font-size: 1.2rem;
	font-weight: 400;
	/* --font-weight-noto-regular */
	margin-left: 10px;
}

.shop_name {
	font-size: 1.6rem;
	font-weight: 700;
	/* --font-weight-noto-bold */
	line-height: 22px;
	margin: 0 0 15px 0;
}

.shop_tag {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.shop_tag li {
	margin: 0 20px 5px 0;
	font-size: 1.2rem;
}

.shop_tag li::before {
	display: inline-block;
	padding: 0 0.25rem 0 0;
	color: #4C4948;
	/* --color-accent */
	content: "●";
}

@media only screen and (max-width: 767px) {
	.shop_genre {
		margin-left: 0px;
		margin-bottom: 10px;
		display: block;
	}
}

/* ====================================
	shoplist_cat
==================================== */
.shoplist_cat__area {
	padding: 0 0;
	margin: 0 0 70px 0;
	border-bottom: 1px solid #4C4948;
	/* --color-accent */
}

.shoplist_cat__wrap {
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto 0px auto;
}

.shoplist_cat__wrap ul {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 0 0 0 0;
}

.shoplist_cat__wrap ul li {
	width: 20%;
	position: relative;
}

.shoplist_cat__wrap ul li:hover {
	cursor: pointer;
}

.shoplist_cat__wrap ul li::after {
	content: "";
	display: block;
	width: 1px;
	height: 20px;
	background-color: #4C4948;
	/* --color-accent */
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.shoplist_cat__wrap ul li:last-child {
	border: 0;
}

.shoplist_cat__wrap ul li div {
	text-align: center;
	font-weight: 500;
	/* --font-weight-bold */
	padding: 25px 0 25px 0;
	border-radius: 10px 10px 0 0;
	opacity: 0.5;
	transition: 0.3s;
}

.shoplist_cat__wrap ul li div:hover {
	opacity: 0.2;
}

.shoplist_cat__wrap ul li div.active {
	opacity: 1.0;
	color: #fff;
	background-color: #4C4948;
	/* --color-accent */
	box-shadow: 0 0 0 1px #4C4948;
	/* --color-accent */
}

.shoplist_cat__wrap ul li div.active::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 20px solid #4C4948;
	/* --color-accent */
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}

.shoplist_cat__wrap ul li:last-child::after {
	display: none;
}

@media only screen and (max-width: 767px) {
	.shoplist_cat__wrap ul li div {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.shoplist_cat__wrap ul li div:hover {
		opacity: 0.5;
	}
	.shoplist_cat__wrap ul li div.active{
		opacity: 1 !important;
	}

	.shoplist_cat__wrap ul li::after {
		height: 70%;
	}
}

@media only screen and (max-width: 414px) {
	.shoplist_cat__wrap ul li div {
		font-size: 1.2rem;
		padding: 15px 0 15px 0;
	}
}

/* ====================================
	shoplist_shop
==================================== */
.shoplist_shop__area {
	padding: 0 0;
}

.shoplist_shop__wrap {
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto 80px auto;
}

.shopdata {
	margin: 0 0 30px 0;
}

.shopdata a {
	display: flex;
	width: 100%;
	justify-content: space-between;
	cursor: pointer;

}

.shopdata a > div:nth-child(1) {
	width: 110px;
	border: 1px solid #b6b6b6;
	/* --color-border-default */
}

.shopdata a > div:nth-child(2) {
	width: calc(100% - 110px);
	padding: 0 0 0 20px;
}

.shopdata a > div:nth-child(3) {
	display: none;
}

.shopdata a > div:nth-child(3) p {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	/* --font-weight-bold */
}

.shopdata .shop_cat {
	margin: 0 10px 15px 0px;
	line-height: 20px;
	padding: 0 10px;
}

.shopdata .shop_genre {
	display: inline;
	font-size: 1.2rem;
	font-weight: 400;
	/* --font-weight-noto-regular */
	margin: 0 0 15px 0;
}

.shopdata .shop_name {
	font-size: 2.6rem;
	line-height: 32px;
	font-weight: 700;
	/* --font-weight-noto-bold */
	margin: 0 0 0 0;
}

@media only screen and (max-width: 767px) {
	.shoplist_shop__wrap {
		padding: 0 5.025%;
	}

}

@media only screen and (max-width: 414px) {
	.shoplist_shop__wrap {
		margin: 0 auto 0px auto;
	}

	.shopdata .shop_cat {
		margin: 0 10px 5px 0px;
	}

	.shopdata .shop_genre {
		display: block;
	}
}

/* ====================================
	info
==================================== */
.info__wrap {
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto;
}

.info__title {
	margin: 0 0 50px 0;
}

.info__title h2 {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	margin: 0 0 20px 0;
}

.info__title p {
	text-align: center;
}

.info__flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 0 30px 0;
}

.info__flex li {
	max-width: 280px;
	width: 100%;
	margin: 0 26.5px 30px 0;
}

.info__flex li:nth-child(4n) {
	margin: 0 0 80px 0;
}

.info__flex li img {
	margin: 0 0 20px 0;
}

.info__flex li div {
	margin: 0 0 15px 0;
}

.info__flex li div.event__category--name {
	font-size: 1.2rem;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	/* --font-weight-lato-regular */
	width: 80px;
	line-height: 25px;
	text-align: center;
	color: #fff;
	background-color: #383838;
	/* --color-main */
}

.info__flex li a {
	opacity: 1;
}

.info__flex li a div.list__image--wrap {
	overflow: hidden;
	padding: 0;
}

.info__flex li a div.list__image--wrap img {
	display: block;
	margin: 0;
	transition: 0.6s;
}

.info__flex li a:hover div.list__image--wrap img {
	transform: scale(1.2);
}

.info__btn--more {
	display: block;
	max-width: 380px;
	margin: 0 auto;
	line-height: 60px;
	font-size: 1.5rem;
	font-weight: 500;
	/* --font-weight-noto-medium */
	text-align: center;
	border: 1px solid #b6b6b6;
	/* --color-border-default */
	background-image: url(../__common_img/right-arrow_icon.svg);
	background-position: right 20px center;
	background-size: 10px;
	background-repeat: no-repeat;
	background-color: #ffffff;
	transition: 0.3s;
}

.info__btn--more:hover {
	opacity: 1;
	color: #fff;
	background-color: #4C4948;
	/* --color-accent */
	background-image: url(../__common_img/right-arrow_icon_hover.svg);
}


@media only screen and (max-width: 767px) {
	.info__btn--more {
		line-height: 80px;
		background-size: 10px;
	}

	.info__flex {
		justify-content: space-between;
		margin: 0 0 0px 0;
	}

	.info__flex li {
		max-width: 48%;
		margin: 0 2% 60px 0;
	}

	.info__flex li:nth-child(even) {
		margin: 0 0 60px 0;
	}

	.info__flex li img {
		width: 100%;
	}
}

@media only screen and (max-width: 414px) {
	.info__btn--more {
		line-height: 60px;
		max-width: 85%;
		background-size: 8px;
		background-position: right 15px center;
	}

	.info__flex {
		margin: 0 0 10px 0;
	}

	.info__flex li {
		margin: 0 2% 30px 0;
	}

	.info__flex li:nth-child(even) {
		margin: 0 0 30px 0;
	}
}

@media only screen and (max-width: 375px) {
	.info__title {
		margin: 0 0 20px 0;
	}

	.info__btn--more {
		max-width: 90%;
		line-height: 50px;
	}
}

@media only screen and (max-width: 320px) {
	.info__btn--more {
		line-height: 40px;
		font-size: 1.3rem;
		background-position: right 10px center;
	}

	.info__flex li div {
		margin: 0 0 10px 0;
	}
}

/* ====================================
	info_detail
==================================== */

.info_detail__title {
	padding: 0px 0 20px;
	margin: 0 0 60px 0;
	border-bottom: 1px solid #4C4948;
	/* --color-accent */
}

.info_detail__title div {
	display: flex;
	justify-content: space-between;
	margin: 0 0 10px 0;
}

.info_detail__title div p:last-child {
	width: 80px;
	line-height: 24px;
	background-color: #383838;
	/* --color-main */
	color: #fff;
	font-size: 1.2rem;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	/* --font-weight-lato-regular */
	text-align: center;
}

.info_detail__title h1 {
	font-size: 2.2rem;
	line-height: 32px;
	font-weight: 500;
	/* --font-weight-bold */
}

.info_detail__image img {
	margin: 0 auto 15px auto;
}

.info_detail__body {
	margin: 0 auto 80px auto;
}

.info_detail__body p {
	margin: 0 0 2em 0;
	line-height: 2;
	font-size: 1.5rem;
	font-weight: 400;
	/* --font-weight-lato-regular */
}

.info_detail__body p img {
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 0 15px 0;
}

.info_detail__body img {
	display: inline;
}

.info_detail__body .alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

.info_detail__body .alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

.info_detail__body .aligncenter {
	display: block !important;
	margin-left: auto;
	margin-right: auto;
}

.info_detail__body .pc {
	display: block !important;
}

.info_detail__body .sp {
	display: none !important;
}

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

	.info_detail__body .sp {
		display: block !important;
	}
}

/* ====================================
	info_sns
==================================== */
.info_sns__area {
	margin: 0 0 0 0;
}

.info_sns__wrap {
	max-width: 720px;
	padding: 0 60px;

}

.info_sns__wrap p {
	text-align: center;
	margin: 0 0 10px 0;
	font-weight: 500;
	/* --font-weight-bold */
}

.info_sns__wrap ul {
	display: flex;
	justify-content: center;
	width: 100%;
}

.info_sns__wrap ul li:first-child {
	background-color: #1877F2;

}

.info_sns__wrap ul li:nth-child(2) {
	background-color: #1DA1F2;
	margin: 0 10px 0;
}

.info_sns__wrap ul li:last-child {
	background-color: #16C755;
}

.info_sns__wrap ul li a {
	display: block;
	width: 165px;
	line-height: 32px;
	padding-right: 35px;
	font-size: 1.2rem;
	letter-spacing: 0.15rem;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	/* --font-weight-lato-bold */
	color: #fff;
	text-align: right;
	background-size: 22px;
	background-position: center left 10px;
	background-repeat: no-repeat;
}

.info_sns__wrap ul li:first-child a {
	background-image: url(../__common_img/icon_facebook.svg);
}

.info_sns__wrap ul li:nth-child(2) a {
	padding-right: 45px;
	background-image: url(../__common_img/icon_twitter.svg);
}

.info_sns__wrap ul li:last-child a {
	padding-right: 60px;
	background-image: url(../__common_img/icon_line.svg);
}

@media only screen and (max-width: 767px) {
	.info_sns__wrap {
		width: 100%;
		padding: 0 5.025%;
	}

	.info_sns__wrap ul li {
		width: 33%;
	}

	.info_sns__wrap ul li a {
		width: 100%;
		line-height: 50px;
		padding-right: 30px;
		background-size: 20px;
		background-position: center left 25px;
	}

	.info_sns__wrap ul li:last-child a {
		padding-right: 60px;
	}
}

@media only screen and (max-width: 414px) {
	.info_sns__wrap ul li a {
		line-height: 40px;
		padding-right: 15px;
		background-size: 15px;
		background-position: center left 10px;
	}

	.info_sns__wrap ul li:last-child a {
		padding-right: 30px;
	}

	.info_sns__wrap ul li:nth-child(2) a {
		padding-right: 20px;
	}

}

@media only screen and (max-width: 375px) {
	.info_sns__wrap ul li a {
		padding-right: 10px;
	}
}

/* ====================================
	info_nation
==================================== */
.info_nation__area {
	margin: 0 0 20px 0;
}

.info_nation__wrap {
	padding: 60px 0;
}

.info_nation__wrap ul {
	display: flex;
	justify-content: space-between;
	max-width: 520px;
	width: 100%;
	margin: 0 auto;
}

.info_nation__wrap ul li {
	width: 100%;
}

.info_nation__wrap ul li a {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	line-height: 40px;
	color: #383838;
	/* --color-main */
	font-weight: 500;
	/* --font-weight-noto-medium */
}

.info_nation__wrap ul li:nth-child(1) {
	border-right: 1px solid #b6b6b6;
	/* --color-border-default */
}

.info_nation__wrap ul li:nth-child(2) {
	/* wire frame */
	border-left: 1px solid #b6b6b6;
	/* --color-border-default */
}

.info_nation__wrap ul li:nth-child(1) a {
	padding: 0 0 0 24px;
	background-image: url("../__common_img/info_nation_pre_arrow.svg");
	background-repeat: no-repeat;
	background-size: 1.5rem;
	background-position: left center;
	background-size: 40px;
}

.info_nation__wrap ul li:nth-child(2) a {
	padding: 0 24px 0 0;
	background-image: url("../__common_img/info_nation_next_arrow.svg");
	background-repeat: no-repeat;
	background-size: 1.5rem;
	background-position: right center;
	background-size: 40px;
}

@media only screen and (max-width: 767px) {
	.info_nation__area {
		padding: 0 5.025%;
	}

	.info_nation__wrap ul li a {
		line-height: 20px;
	}
}

@media only screen and (max-width: 414px) {
	.info_nation__wrap ul li:nth-child(1) a {
		background-size: 30px;
	}

	.info_nation__wrap ul li:nth-child(2) a {
		background-size: 30px;
	}
}

@media only screen and (max-width: 375px) {
	.info_nation__wrap ul li:nth-child(1) a {
		background-size: 25px;
	}

	.info_nation__wrap ul li:nth-child(2) a {
		background-size: 25px;
	}
}

/* ====================================
	info_more
==================================== */
.info_more__wrap .info__btn--more {
	font-weight: 500;
	/* --font-weight-bold */
}


/* ====================================
	parts
==================================== */

/* --------------------
	title
-------------------- */
.title__area {
	margin: 0 0 80px 0;
	background-color: #F3F1F0;
	/* --color-bg */
}

.title__wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	/* --content-max-width */
	margin: 0 auto;
	height: 160px;
}

.title__wrap h1 {
	position: relative;
	font-size: 2.0rem;
	font-weight: 500;
	/* --font-weight-bold */
}

.title__wrap h1 span {
	display: block;
	color: #383838;
	/* --color-main */
}

.title__wrap h1 span.en {
	font-size: 3.2rem;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 3.5px;
	margin-bottom: 10px;
}

.title__wrap h1 span.ja {
	text-align: center;
	font-size: 1.2rem;
}

.title__wrap h1::after,
.title__wrap h1::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../__common_img/title_area_ornament.svg);
	background-position: center;
	background-size: cover;
	position: absolute;
	top: -15px;
}

.title__wrap h1::after {
	left: -110px;
	background-image: url(../__common_img/title_area_ornament_left.svg);

}

.title__wrap h1::before {
	right: -110px;
	background-image: url(../__common_img/title_area_ornament_right.svg);
}

/* --------------------
	search
-------------------- */
#shop_search__input {
	display: block;
	width: 100%;
	max-width: 720px;
	line-height: 80px;
	margin: 0 auto;
	padding: 0 0 0 30px;
	background-image: url("../__common_img/shop-search_icon.svg");
	background-repeat: no-repeat;
	background-size: 80px;
	background-position: right center;
	background-color: #fff;
	border: 1px solid #b6b6b6;
	/* --color-border-default */
}

/* --------------------
	Autocomplete
-------------------- */
.ui-helper-hidden {
	display: none;
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}

.ui-helper-clearfix:after {
	clear: both;
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}

.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}

.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
	background-color: #ffffff;

	/* wire frame */
	border: 1px solid #999999;
	/* --wire-border-color */
}

.ui-menu .ui-menu {
	position: absolute;
}

.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 10px;
}

.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: 0;

	/* wire frame */
	background-color: #eeeeee;
}

.ui-menu-icons {
	position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}

/* --------------------
	content_area
-------------------- */
.under-page__area {
	max-width: 870px;
	/* --contentwrap-max-width */
	width: 100%;
	margin: 0 auto;
}

/* --------------------
	content_title h2
-------------------- */
.content_title--wrap {
	position: relative;
}

.content_title--wrap h2 {
	font-size: 2.6rem;
	font-weight: 700;
	/* --font-weight-noto-bold */
	text-align: center;
	margin-bottom: 40px;
}

.content_title--wrap svg {
	position: absolute;
	top: 0;

}

.content_title--wrap svg.left-object {
	left: 180px;
}

.content_title--wrap svg.right-object {
	right: 180px;
}

/* --------------------
	contents
-------------------- */
.contents__area {
	padding: 40px 0 20px;
	border-top: 1px solid #b6b6b6;
	/* --color-border-default */
}

.contents__area ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto 0 auto;
	max-width: 780px;
	width: 100%;
}

.contents__area ul li {
	margin: 0 25px 30px 25px;
}

.contents__area ul li:nth-child(3) {
	margin: 0 15px 30px 15px;
}

.contents__area ul li a div {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px auto;
	border-radius: 100%;
	background-color: #DBBE8F;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 45px;
	transition: 0.3s;
}

.contents__area ul li a:hover div {
	background-color: #4C4948;
	/* --color-accent */
}

.contents__area ul li:nth-child(1) a div {
	background-image: url("../_front-page/front_icon_floor-map.svg");
	background-position: top 23px center;
}

.contents__area ul li:nth-child(2) a div {
	background-image: url("../_front-page/front_icon_shop.svg");
	background-size: 48px;
}

.contents__area ul li:nth-child(3) a div {
	background-image: url("../_front-page/front_icon_restaurant.svg");
	background-size: 30px;
}

.contents__area ul li:nth-child(4) a div {
	background-image: url("../_front-page/front_icon_open.svg");
	background-size: 45px;
}

.contents__area ul li:nth-child(5) a div {
	background-image: url("../_front-page/front_icon_recruit.svg");
	background-size: 53.5px;
	background-position: top 16.5px left 17px;
}

.contents__area ul li:nth-child(6) a div {
	background-image: url("../_front-page/front_icon_yaesu-club.svg");
	background-size: 53px;
}

.contents__area ul li:nth-child(7) a div {
	background-image: url("../_front-page/front_icon_gallery.svg");
}

.contents__area ul li:nth-child(8) a div {
	background-image: url("../_front-page/front_icon_access.svg");
	background-size: 30px;
}

.contents__area ul li:nth-child(9) a div {
	background-image: url("../_front-page/front_icon_parking.svg");
	background-size: 55px;
}

.contents__area ul li a p {
	text-align: center;
	font-size: 1.5rem;
}

/* --------------------
	contents
-------------------- */
.pagination__wrap ul {
	display: flex;
	justify-content: center;
}

.pagination__wrap ul li {
	cursor: pointer;
	width: 40px;
	height: 40px;
	margin: 0 10px 0;
}

.pagination__wrap ul li a {
	font-size: 1.5rem;
	font-family: 'Lato', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #4C4948;
	/* --color-accent */
	transition: 0.3s;
}

.pagination__wrap ul li a:hover {
	opacity: 1;
	color: #fff;
	background-color: #4C4948;
	/* --color-accent */
}

.pagination__wrap ul li a.active {
	color: #fff;
	background-color: #4C4948;
	/* --color-accent */
}

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

	/* --------------------
	title
-------------------- */
	.title__wrap {
		height: auto;
		padding: 30px 0;
	}

	.title__wrap h1::before {
		right: -60px;
	}

	.title__wrap h1::after {
		left: -60px;
	}

	.title__wrap h1::after,
	.title__wrap h1::before {
		top: 0px;
	}

	.title__wrap h1 span.en {
		text-align: center;
		margin: 0 auto 10px;
	}

	/* --------------------
	content_area
-------------------- */
	.under-page__wrap {
		padding: 0 5.025%;
	}

	/* --------------------
	search
-------------------- */
	#shop_search__input {
		max-width: 100%;
	}

	/* --------------------
	contents
-------------------- */
	.contents__area ul {
		max-width: 480px;
	}

	.contents__area ul li:nth-child(3) {
		margin: 0 12px 30px 1px;
	}

	.contents__area ul li a p {
		line-height: 18px;
		font-size: 1.4rem;
	}

	/* --------------------
	content_title h2
-------------------- */


}

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

	/* --------------------
	title
-------------------- */
	.title__area {
		margin: 0 0 40px 0;
	}

	.title__wrap {
		padding: 45px 0;
	}

	.title__wrap h1 {
		width: 100%;
	}

	.title__wrap h1::after,
	.title__wrap h1::before {
		width: 30px;
		height: 30px;
	}

	.title__wrap h1::before {
		right: 20px;
	}

	.title__wrap h1::after {
		left: 20px;
	}

	.title__wrap h1 span.en {
		font-size: 3rem;
	}

	/* --------------------
	content_title h2
-------------------- */
	.content_title--wrap svg {
		width: 25px;
		height: 30px;
	}

	/* --------------------
	contents
-------------------- */
	.contents__area {
		padding: 40px 5.025% 0px;
	}

	.contents__area ul li {
		width: 25%;
		margin: 0 3.5% 25px 3.5%;
	}

	.contents__area ul li:nth-child(3) {
		margin: 0 3.5% 25px 3.5%;
	}

	.contents__area ul li a div {
		width: 100%;
		height: 22.5vw;
		margin: 0 auto 10px auto;
		background-size: 30px;
	}

	.contents__area ul li:nth-child(1) a div {
		background-size: 57%;
		background-position: center;
	}

	.contents__area ul li:nth-child(2) a div {
		background-size: 57%;
	}

	.contents__area ul li:nth-child(3) a div {
		background-size: 40%;
	}

	.contents__area ul li:nth-child(4) a div {
		background-size: 58%;
	}

	.contents__area ul li:nth-child(5) a div {
		background-size: 70%;
		background-position: top 49% left 70%;
	}

	.contents__area ul li:nth-child(6) a div {
		background-size: 61%;
	}

	.contents__area ul li:nth-child(7) a div {
		background-size: 53%;
	}

	.contents__area ul li:nth-child(8) a div {
		background-size: 36%;
	}

	.contents__area ul li:nth-child(9) a div {
		background-size: 62%;
	}

	.contents__area ul li a p {
		font-size: 1.2rem;
	}

	/* --------------------
	search
-------------------- */
	#shop_search__input {
		font-size: 1.2rem;
		line-height: 50px;
		background-size: 50px;
		padding: 0 0 0 10px;
	}

	/* --------------------
	contents
-------------------- */
	.pagination__wrap ul li {
		width: 30px;
		height: 30px;
		margin: 0 10px 0;
	}
}

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

	/* --------------------
	contents
--------------------
	.contents__area ul li a div{
		width: 80px;
		height: 80px;
		background-size: 60%;
	}
	.contents__area ul li:nth-child(1) a div{
		background-position: top 22px center;
		background-size: 56%;
	}
	.contents__area ul li:nth-child(2) a div{
		background-size: 55%;
	}
	.contents__area ul li:nth-child(3) a div{
		background-size: 39%;
	}
	.contents__area ul li:nth-child(4) a div{
		background-size: 51%;
	}
	.contents__area ul li:nth-child(5) a div{
		background-size: 65%;
		background-position: top 16px left 17px;
	}
	.contents__area ul li:nth-child(6) a div{
		background-size: 62%;
	}
	.contents__area ul li:nth-child(7) a div{
		background-size: 55%;
	}
	.contents__area ul li:nth-child(8) a div{
		background-size: 35%;
	}
	.contents__area ul li:nth-child(9) a div{
		background-size: 64%;
	} */
	/* --------------------
	search
-------------------- */
	#shop_search__input {
		max-width: 100%;
		line-height: 40px;
		background-size: 40px;
	}

	.nav-search_wrap #shop_search__input {
		font-size: 1.1rem;
	}

	/* --------------------
	content_title h2
-------------------- */
	.content_title--wrap h2 {
		margin-bottom: 25px;
	}
}

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

	/* --------------------
	search
-------------------- */
	#shop_search__input {
		font-size: 1.1rem;
	}
}

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

	/* --------------------
	title
-------------------- */
	.title__wrap h1 {
		width: 80%;
	}

	.title__wrap h1::before {
		right: 0px;
	}

	.title__wrap h1::after {
		left: 0px;
	}

	/* --------------------
	contents
-------------------- */
	.contents__area ul li:nth-child(3) {
		margin: 0 0 25px 1.5%;
	}

	/* --------------------
	search
-------------------- */
	#shop_search__input {
		font-size: 1.0rem;
		padding: 0 0 0 5px;
	}
}

/* --------------------
	tel：768以上は電話番号の挙動を消す
-------------------- */
@media (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: #383838 !important;
	}
}
