@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 16px;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.6;
	color: #333;
	-webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 500px) {
	body {
		font-size: 14px;
	}
}

#contents {
	width: 1200px;
	margin: 0 auto;
	padding: 60px 0 90px;
}

header + #contents {
	padding-top: 0;
}

.inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

section {
	margin-bottom: 90px;
}

.sectionInner {
	position: relative;
    box-sizing: border-box;
    width: 100%;
	margin: 0;
	padding: 50px 50px 0;
}

article {
	padding: 50px 0 0;
	border-top: 1px dotted #999;
}

article:last-child div {
	padding-bottom: 50px;
	border-bottom: 1px dotted #999;
}

.headingBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: #e4a3a3;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	z-index: -1;
}

@media screen and (max-width:767px) {
	section {
		margin-bottom: 45px;
	}
	
	.sectionInner {
		padding: 25px 25px 0;
	}
	
	article {
		padding: 30px 0 0;
	}
	
	.headingBg {
		height: 150px;
	}
}

a {
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}

h1 {
	font-size: 28px;
}

/*中央寄せ*/
h2 {
	position: relative;
	padding: 0 55px;
	width: fit-content;
	margin: 0 auto 1.25em;
	font-size: 28px;
	text-align: center;
	color: #fff;
}
h2::before, h2::after {
	content: '';
	background: #fff;
	width: 2em;
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
h2::before {
	left: -14px;
}
h2::after {
	right: -14px;
}

h3 {
	margin-bottom: 1em;
	font-size: 24px;
	color: #e16e6e;
}

h4 {
	margin-top: 0.25em;
	margin-bottom: 0.5em;
	font-size: 20px;
}

p {
	margin:0 0 1em 0;
}

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

em {
	font-weight: bold;
}

strong {
	font-weight: bold;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #999;
	border-left: 5px solid #ddd;
}

ul,ol,dl {
	margin: 0 0 1em 0;
}
ul li {
	list-style: disc;
}
ol li {
	list-style: decimal;
}
li {
	margin-left: 1.5em;
}

dt {
	margin-bottom: 0.5em;
	border-bottom: 1px dotted #999;
}
dd {
	margin-bottom: 1em;
}

table {
	width: 100%;
	margin-bottom: 1em;
	border-collapse: collapse;
	border: 1px solid #ddd;
}
th {
	padding: 15px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	background: #fcf0f0;
}
td {
	padding: 15px;
	text-align: left;
	border: 1px solid #ddd;
}

/*================================================
 *  汎用クラス
 ================================================*/
.pc {
    display: block;
}

.sp {
    display: none;
}

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

    .sp {
        display: block;
    }
}

/* 中央寄せ */
.center {
	text-align: center;
}

/* 左寄せ */
.left {
	text-align: left;
}

/* 右寄せ */
.right {
	text-align: right;
}

/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin: 0 auto 50px auto;
	margin-bottom:50px;
	text-align:center;
}
.imgC img {
	margin-bottom:10px;
}

/* 写真左寄せ */
.imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgL img {
	float:left;
	margin:0 30px 0 0;
}
.imgL .text { overflow:auto; zoom:1; }

.imgL li {
	list-style-position:inside;
}

@media screen and (max-width:767px) {
	.imgL {
		margin-bottom:20px;
	}
	.imgL img {
		float:none;
		margin:0 0 10px 0;
	}
}

/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgR img {
	float:right;
	margin:0 0 0 30px;
}

@media screen and (max-width:767px) {
	.imgR {
		clear:both;
		overflow:hidden;
		margin-bottom:20px;
	}
	.imgR img {
		float:none;
		margin:0 0 10px 0;
	}
}

/* 写真ズーム */
.zoom {
	overflow: hidden;
}
.zoom img {
	display: block;
	-moz-transition: -moz-transform 0.8s linear;
	-webkit-transition: -webkit-transform 0.8s linear;
	-o-transition: -o-transform 0.8s linear;
	-ms-transition: -ms-transform 0.8s linear;
	transition: transform 0.8s linear;
}
.zoom img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.zoom img {
	margin-bottom: 0;
}

/* オーバーレイ */
.overlay {
	position: relative;
}
.overlay::after{
	background: rgba(0,0,0,.5);
	content: "　";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .3s ease-out;
	pointer-events: none;
}
.overlay:hover::after {
	background: rgba(0,0,0,.1);
	transition: all .3s ease-out;
}
.overlay img {
	margin-bottom: 0;
}

/* ボタン */
.btn a {
	position: relative;
	display: inline-block;
	padding: 8px 40px 8px 40px;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
	background: #000;
}
.btn a:hover {
	color: #fff;
	background: #333;
}

/* 2カラム（スマートフォンでは1カラム) */
.twoCol {
	overflow:hidden;
	margin-bottom:0;
}
.twoColInner {
	overflow:hidden;
	margin-right:-2%;
}
.twoColInner div {
	width:48%;
	float:left;
	margin-right:2%;
}
.twoColInner div:nth-child(2n+1) {
	clear:both;
}
.twoColInner img {
	width:100%;
	margin-bottom:0.5em;
}

/* 3カラム（スマートフォンでは1カラム) */
.threeCol {
	overflow:hidden;
	margin-bottom:0;
}
.threeColInner {
	overflow:hidden;
	margin-right:-3%;
}
.threeColInner div {
	width:31%;
	float:left;
	margin-right:2%;
}
.threeColInner div:nth-child(3n+1) {
	clear:both;
}
.threeColInner img {
	width:100%;
	margin-bottom:0.5em;
}

@media screen and (max-width:500px) {
	.twoCol {
		margin-right:0;
	}
	.twoColInner {
		margin-right:0;
	}
	.twoColInner div {
		float:none;
		width:100%;
	}

	.threeCol {
		margin-bottom:0;
	}

	.threeColInner {
		margin-right:0;
	}
	.threeColInner div {
		float:none;
		width:100%;
	}
}

/* ページタイトル */
.pageTitle {
	overflow: hidden;
	position: relative;
	margin-top: 50px;
	padding: 80px 0;
    background-image: url(../img/page-title_bg.jpg);
	background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
}
.pageTitle h2 {
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index:10;
    font-size: 28px;
    color: #fff;
    text-align: center;
	text-shadow: 2px 3px 2px rgb(61 70 70);
}

@media screen and (max-width:1024px) {
	.pageTitle {
		padding: 60px 0;
	}
	.pageTitle h2 {
	    font-size: 26px;
	}
}

@media screen and (max-width:768px) {
	.pageTitle {
		padding: 50px 0;
	}
	.pageTitle h2 {
	    font-size: 24px;
	}
}

@media screen and (max-width:500px) {
	.pageTitle {
		padding: 40px 0;
	}
	.pageTitle h2 {
		width: 100%;
	    font-size: 18px;
	}
}

/*================================================
 *  Googleマップ
 ================================================*/
.g-map {
	position: relative;
	width: 100%;
	height: 400px;
}
.g-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
}

.store .g-map {
	position: relative;
	width: 100%;
	height: 300px;
}
.store .g-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
}
.store table th {
	width: 22%;
}

@media only screen and (max-width: 768px) {
	.g-map {
		width:100%;
	}
	.g-map iframe {
		height:100%;
	}
}

@media only screen and (max-width: 500px) {
	.store table th {
		width: 100%;
	}
}

/*================================================
 *  FOOT ロゴ
 ================================================*/
.footLogo {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 40px;
	text-align: center;
	background: #fcf0f0;
}
.footLogo img {
	height: 25px;
	margin: 0;
}
.footLogo p {
	margin: 0 0 0.25em;
	font-size: 14px;
	color: #e16e6e;
}
.footLogo a {
	text-decoration:none;
}

@media only screen and (max-width: 768px) {
	.footLogo {
		padding: 20px;
	}
	.footLogo img {
		height: 20px;
	}
	.footLogo a p {
		margin: 0 0 0.25em;
		font-size: 12px;
	}
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	margin: 0;
	background: #e16e6e;
}

.fnav {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0;
	padding: 20px 50px;
	border-bottom: 1px dotted #999;
}

.fnav a {
	color:#fff;
}

.fnav > ul {
	width: auto;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 2.0;
	border-left: 5px solid #e4a3a3;
}
.fnav > ul li {
	text-align: left;
	list-style: none;
}
.fnav > ul.item {
	padding-left: 0em;
}

.fnav li {
    position: relative;
    padding-left: 12px;
}
.fnav li:before {
    content: "";
    position: absolute;
    top: .70em;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* 2段目 */
.fnav ul li ul li {
	margin-left: 0;
}

.copyright {
	padding: 20px 0;
	color: #fff;
	font-size: 11px;
	text-align: center;
	background: #e16e6e;
}

@media screen and (max-width:767px) {
	.fnav {
		display: block;
		margin: 0 15px;
		padding: 20px 0;
	}
	.fnav > ul {
		width: 100%;
		margin-bottom: 1.5em;
	}
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
	z-index:1;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	width: 60px;
	background:#111;
}
.totop img:hover {
	background:#444;
}

/*================================================
 *  トピックパス（パンくずリスト）
 ================================================*/
#topicpath {
	font-size:12px;
	margin:0;
	padding:15px 20px;
	background:#e4a3a3;
	color: #fff;
}
#topicpath a {
	color: #fff;
}

/*================================================
 *  メインビジュアル
 ================================================*/
.mainVisual {
    position: relative;
    z-index: 10;
    width: 100%;
	margin: 0;
	padding-top: 50px;
}
.mainVisual img {
    width: 100%;
}

/*================================================
 *  スライドショー
 ================================================*/
/* slick */
.slider {
    position: relative;
    z-index: 10;
    width: 100%;
	margin: 0;
	padding-top: 50px;
}
.slider img {
    width: 100%;
}

.slider div::before,
.slider div::after,
.slider img::before,
.slider img::after {
    display: none !important;
    content: none !important;
    background: none !important;
    height: 0 !important;
}

/*-----------height調整----------*/
.slick-slide{ height:auto!important; }

/*-----------矢印表示----------*/
.slick-next{ right:10px !important; }
.slick-prev{ left:10px !important; }
.slick-arrow{ z-index:2!important; }

.slick-prev,.slick-next{
    width: 40px !important;
    height: 40px !important;
}
.slick-prev:before, .slick-next:before {
    font-size: 40px !important;/*少し大きくする*/
}

@media screen and (max-width:768px) {
	.slider {
		margin: 0 0 45px;
	}
	
	.slick-next{
		padding-top:25px !important;
		right:10px !important;
	}
	.slick-prev{
		padding-top:25px !important;
		left:10px !important;
	}
	
	.slick-prev,.slick-next{
	    width: 30px !important;
	    height: 30px !important;
	}
	.slick-prev:before, .slick-next:before {
	    font-size: 30px !important;/*少し大きくする*/
	}
}

@media screen and (max-width:500px) {
	.slider {
		margin: 0 0 10px;
	}

	.slick-prev,.slick-next{
	    width: 20px !important;
	    height: 20px !important;
	}
	.slick-prev:before, .slick-next:before {
	    font-size: 20px !important;/*少し大きくする*/
	}
}

/*================================================
 *  名店街MAPダウンロード
 ================================================*/
.map_dl {
	overflow:hidden;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	padding:0;
}

.map_dl-img img {
	width: 100%;
	margin: 0;
    border-radius: 10px;
}

@media screen and (max-width:500px) {
	.map_dl {
		width: 100%;
	}
}

/*================================================
 *  お知らせ
 ================================================*/
/*見出し*/
h2.info {
	position: relative;
	padding: 0 55px;
	width: fit-content;
	margin: 0 auto 1.25em;
	font-size: 28px;
	text-align: center;
	color: #e16e6e;
}
h2.info::before, h2.info::after {
	content: '';
	background: #e16e6e;
	width: 2em;
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
h2.info::before {
	left: -14px;
}
h2.info::after {
	right: -14px;
}

@media screen and (max-width:767px) {
	h2.info {
		margin-bottom: 1em;
		font-size: 24px;
	}
}

.newsBox {
	overflow:auto;
	width: 100%;
	height: 250px;
	padding:20px;
	border: 1px solid #ccc;
}

.news {
	margin-bottom: 0;
}

.news dt {
	clear: both;
	float: left;
	margin: 0;
	padding: 10px 0;
	vertical-align: top;
	border-bottom: none;
}

.news dd {
	margin: 0;
	padding: 10px 0 10px 8em;
	vertical-align: top;
	border-bottom: 1px dotted #999;
}

/* 写真左寄せ */
article .imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:0px;
}
article .imgL img {
	float:left;
    width: 40%;
	margin:0 50px 0 0;
}

table.newsImg {
	width: auto;
	margin-top: -1em;
	margin-bottom: 0;
	padding: 0;
	border: none;
}
table.newsImg td {
	padding: 1em;
	text-align: left;
	border: none;
}
table.newsImg td img {
	float:left;
    width: 100%;
	margin:0;
}

@media screen and (max-width:767px) {
	article .imgL {
		margin-bottom:0px;
	}
	article .imgL img {
		float:none;
		margin:0 0 10px 0;
	}
}

@media screen and (max-width:500px) {
	article .imgL img {
		width: 100%;
		margin:0 0 15px 0;
	}
	
	table.newsImg {
		margin-top: 0;
	}
	table.newsImg td {
		padding: 0;
	}
	table.newsImg td img {
		float:none;
		margin-bottom: 15px;
	}
}

/*------------------------
    chromeなどの設定
------------------------*/
/*スクロールバーの幅指定*/
.scrollArea::-webkit-scrollbar {
    width: 20px;
}
/*スクロールバーの背景*/
.scrollArea::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #f2f2f2;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
/*スクロールバー*/
.scrollArea::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #e4a3a3;
}

/*------------------------
    Firefoxの設定
------------------------*/
.scrollArea {
	scrollbar-color: #e4a3a3 #f2f2f2;
}


@media screen and (max-width:767px) {
	.news {
		margin-bottom: 0;
	}

	.news dt {
		float: none;
		margin: 0;
		padding: 10px 0 0 0;
		vertical-align: top;
		border-bottom: none;
	}

	.news dd {
		margin: 0;
		padding: 0 0 10px 0;
		vertical-align: top;
		border-bottom: 1px dotted #999;
	}
}

/*================================================
 *  新しい商店街誕生
 ================================================*/
.opening {
	overflow:hidden;
	width: 100%;
	margin-bottom: 90px;
	padding: 60px;
	background: #fcf0f0;
    border-radius: 15px;
}
.opening img {
	margin-bottom:0;
    border-radius: 10px;
}

.opening .openingText {
    margin-bottom:2em;
}

.opening .twoCol {
	margin-bottom:0;
}
.opening .twoColInner {
	overflow:hidden;
	margin-right:-5%;
}
.opening .twoColInner div {
	width:45%;
	float:left;
	margin-right:5%;
}

/*見出し*/
.opening h2 {
	position: relative;
	padding: 0 55px;
	width: fit-content;
	margin: 0 auto 1.25em;
	font-size: 28px;
	text-align: center;
	color: #e16e6e;
}
.opening h2::before, .opening h2::after {
	content: '';
	background: #e16e6e;
	width: 2em;
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.opening h2::before {
	left: -14px;
}
.opening h2::after {
	right: -14px;
}

@media screen and (max-width:767px) {
	.opening h2 {
		margin-bottom: 1em;
		font-size: 24px;
	}
}

@media screen and (max-width:500px) {
	.opening {
		margin-bottom: 50px;
		padding: 30px 30px 0;
	}
	
	.opening h2 {
		padding: 0 40px;
		font-size: 22px !important;
	}

	.opening .twoColInner {
		margin-right:0;
	}
	.opening .twoColInner div {
		float:none;
		width:100%;
	}
	.opening img {
		margin-bottom:30px;
	}
}

/*================================================
 *  ホーム　加盟店舗一覧
 ================================================*/
.memberList {
	overflow:hidden;
	width: 100%;
	margin-bottom: 90px;
	border-bottom: 1px dotted #999;
}

/* 3カラム（スマートフォンでは1カラム) */
.memberList .threeCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:0;
}
.memberList .threeCol .inner {
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 31%;
	margin: 0 0 30px 0;
}
.memberList .threeCol .inner p {
	width: 100%;
	margin-bottom: 0.5em;
	text-align: left;
}
.memberList .threeCol .inner > a {
	width: 100%;
	height: 100%;
}
.memberList .threeCol .inner .image {
	position: relative;
	width: 100%;
	min-height: 0%;
	margin-bottom: 0.75em;
    border-radius: 10px;
}
.memberList .threeCol .inner img {
	width: 100%;
}

.genre00 {
	padding: 3px 0 0 27px;
	line-height: 16px;
	background-image: url(../img/genre_marker-00.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
}

.genre01 {
	padding: 3px 0 0 27px;
	line-height: 16px;
	background-image: url(../img/genre_marker-01.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
}

.genre02 {
	padding: 3px 0 0 27px;
	line-height: 16px;
	background-image: url(../img/genre_marker-02.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
}

.genre03 {
	padding: 3px 0 0 27px;
	line-height: 16px;
	background-image: url(../img/genre_marker-03.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
}

.genre04 {
	padding: 3px 0 0 27px;
	line-height: 16px;
	background-image: url(../img/genre_marker-04.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
}

.genreIco {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 100;
}
.genreIco img {
	width: 60px !important;
}

.genre {
	margin-bottom: 0.75em;
	border: 1px solid #ccc;
    align-self: flex-start;
}
.genre span {
	padding: 4px 10px 3px;
}

.name {
	font-size: 18px;
}
.name a {
	color: #333 !important;
}

@media screen and (max-width:767px) {
	.memberList .threeCol {
		display: block;
		margin-bottom: 20px;
	}
	.memberList .threeCol .inner {
		width : 100%;
		margin: 0 0 10px 0;
	}
}

@media screen and (max-width:500px) {
	.memberList {
		margin-bottom: 50px;
	}
}

/*================================================
 *  SNS一覧
 ================================================*/
/* 店舗個別SNS */
.sns {
	overflow:hidden;
	margin:0 0 90px;
}
.sns ul {
	overflow:hidden;
	margin:0 -2% 0 0;
}
.sns li {
	list-style:none;
	float:left;
	width:23%;
	margin:0 2% 0 0;
}
.sns li img {
	box-sizing: border-box;
	width:100%;
	border-radius: 10px;
}

@media screen and (max-width:500px) {
     .sns {
		margin:0 0 50px;
		padding: 0 15px;
		text-align: center;
     }
	.sns ul {
		overflow:hidden;
		margin:0;
	}
	.sns li {
		box-sizing: border-box;
		width:100%;
		margin:0 0 1.5em;
	}
}

/* ふれあい通り名店街公式SNS */
.sns_official {
	overflow:hidden;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:0 0 90px;
	text-align: center;
}
.sns_official ul {
	overflow:hidden;
	margin:0 -1.5% 0 0;
}
.sns_official li {
	list-style:none;
	float:left;
	width:31.8%;
	margin:0 1.5% 0 0;
}
.sns_official li img {
	box-sizing: border-box;
	width:100%;
	border: 1px solid #ccc;
}

@media screen and (max-width:500px) {
	.sns_official ul {
		overflow:hidden;
		margin:0;
	}
	.sns_official li {
		box-sizing: border-box;
		width:100%;
		margin:0 0 1.5em;
	}
}

.sns_official h3 {
	position: relative;
	padding: 0 55px;
	width: fit-content;
	margin: 0 auto 1em;
	text-align: center;
}
.sns_official h3::before, .sns_official h3::after {
	content: '';
	background: #e16e6e;
	width: 2em;
	height: 1px;
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.sns_official h3::before {
	left: 0;
}
.sns_official h3::after {
	right: 0;
}

@media screen and (max-width:500px) {
	.sns_official h3 {
		font-size: 20px;
	}
}

/*================================================
 *  加盟店舗
 ================================================*/
.store {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}
.store .memberList {
	border-bottom: none;
}

.category {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 30px;
	background: #e16e6e;
    border-radius: 15px;
}

.category-midashi {
	margin: 0;
	padding: 50px 0 0;
	text-align: center;
}
.category-midashi h3 {
	font-size: 22px;
	color: #e16e6e;
	line-height: 1;
}

.fourCol {
	overflow:hidden;
	width: 60%;
	margin: 0 auto;
	margin-bottom:0;
}
.fourColInner {
	overflow:hidden;
	border-left:1px dotted #fff;
	border-right:1px dotted #fff;
}
.fourColInner div {
	width:25%; /* 4カラム用に調整 */
	float:left;
	border-right:1px dotted #fff;
	box-sizing: border-box;
	text-align: center;
}
.fourColInner div a {
	text-decoration:none;
}
.fourColInner div a:hover {
	opacity: 0.7;
}
.fourColInner div:nth-child(4n) {
	border-right:none;
}
.fourColInner div:nth-child(4n+1) {
	clear:both;
}
.fourColInner img {
	width:60px;
	margin-bottom: 0.25em;
}
.fourColInner p {
    font-size: 18px;
    line-height: 1.0;
    color: #fff;
	text-align: center;
}

.more {
	width: 200px;
	margin: 0 auto 90px;
	padding: 10px 0 8px;
	background: #e4a3a3;
	color: #fff;
	cursor: pointer;
	text-align: center;
}

.airpay div {
	margin: 0 !important;
}
.airpay div img {
	width:100%;
	max-width:400px;
	margin: 0 25px 0 0 !important;
}
.airpay div p {
	margin-bottom: 0;
}

/* 店舗詳細 */
.store_detail {
	overflow:hidden;
	width: 100%;
	margin: 0 0 50px;
	padding: 30px;
	background: #fcf0f0;
    border-radius: 15px;
}

.detailInner {
	overflow:hidden;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 30px;
	background: #fff;
    border-radius: 15px;
}

.categoryIco-01 {
    padding-left: 60px;
    font-size: 20px;
    line-height: 50px;
    background: url(../img/genre-ico01.png) no-repeat left center;
    background-size: 50px 50px;
}
.categoryIco-02 {
    padding-left: 60px;
    font-size: 20px;
    line-height: 50px;
    background: url(../img/genre-ico02.png) no-repeat left center;
    background-size: 50px 50px;
}
.categoryIco-03 {
    padding-left: 60px;
    font-size: 20px;
    line-height: 50px;
    background: url(../img/genre-ico03.png) no-repeat left center;
    background-size: 50px 50px;
}
.categoryIco-04 {
    padding-left: 60px;
    font-size: 20px;
    line-height: 50px;
    background: url(../img/genre-ico04.png) no-repeat left center;
    background-size: 50px 50px;
}

.namebar-01,
.namebar-02,
.namebar-03,
.namebar-04 {
    padding: 3px 20px 0;
    line-height: 40px;
	color: #fff;
    border-radius: 50px;
}
.namebar-01 {
	background-color: #f76699;
}
.namebar-02 {
	background-color: #82ae46;
}
.namebar-03 {
	background-color: #38a1db;
}
.namebar-04 {
	background-color: #65318e;
}
.namebar-01 .name,
.namebar-02 .name,
.namebar-03 .name,
.namebar-04 .name {
	font-size: 22px;
	text-align: left;  /* 文章を左寄せする(※) */
	float: left;     /* 左端に寄せて、後続を右側へ回り込ませる */
}
.namebar-01 .tel,
.namebar-02 .tel,
.namebar-03 .tel,
.namebar-04 .tel {
	font-size: 24px;
	text-align: right;
}
.namebar-01 p a,
.namebar-02 p a,
.namebar-03 p a,
.namebar-04 p a {
	color: #fff;
}

.catch {
	margin-bottom:2em;
    padding: 0 0.5em 0.75em;
	font-size: 20px;
	border-bottom: 1px dotted #999;
}

.detailInner .imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.detailInner .imgL img {
	float:left;
	width: 50%;
	margin:0 40px 0 0;
}

/* 詳細ページ画像 4 */
.detailInner .fourCol {
	overflow:hidden;
	width:100%;
	margin-bottom:2em;
}
.detailInner .fourColInner {
	overflow:hidden;
	margin-right:-2%;
}
.detailInner .fourColInner div {
	width:23%;
	float:left;
	margin-right:2%;
}
.detailInner .fourColInner div p {
    font-size: 14px;
    line-height: 1.6;
	text-align: left;
	color: #333;
}
.detailInner .fourColInner div:nth-child(4n+1) {
	clear:both;
}
.detailInner .fourColInner img {
	width:100%;
	margin-bottom:1em;
}

.detailInner table {
	margin-bottom: 3em;
}

.store_back {
    width: 30%;
    margin: 0 auto 90px;
	text-align: center;
    border-radius: 5px;
    background-color: #e4a3a3;
}
.store_back a {
    display: block;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
	text-decoration:none;
}
.store_back a:hover {
    background-color: #e16e6e;
}

.more-link-after a {
	display: inline;
	writing-mode: horizontal-tb;
	white-space: nowrap;
	letter-spacing: normal;
}

table.menu {
	width: auto;
	margin-bottom: 0;
	border-collapse: collapse;
	border: 1px solid #ddd;
}
table.menu th.man {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	background: #d7eeff;
}
table.menu th.woman {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	background: #fcf0f0;
}
table.menu td {
	padding: 10px;
	text-align: left;
	border: 1px solid #ddd;
}

table.detailImg {
	width: auto;
	margin-bottom: 0;
	padding: 0;
	border: none;
}
table.detailImg td {
	padding: 3px 0;
	text-align: left;
	border: none;
}

img.viewer-target {
	cursor: zoom-in;
}


@media screen and (max-width:768px) {
	.store_detail {
		margin: 0 0 30px;
	}

	.category {
		padding: 15px;
	    border-radius: 15px;
	}

	.fourCol {
		width: 100%;
	}
	
	.fourColInner img {
		width:40px;
	}
	.fourColInner p {
	    font-size: 12px;
	}
	
	.detailInner table {
		margin-bottom: 2.5em;
	}
}

@media screen and (max-width:500px) {
	.store_detail {
		padding: 20px;
	}
	
	.detailInner {
		padding: 20px;
	}

	.categoryIco {
	    padding-left: 50px;
	    font-size: 16px;
    	line-height: 40px;
	    background-size: 40px 40px;
	}

	.namebar-01,
	.namebar-02,
	.namebar-03,
	.namebar-04 {
	    padding: 3px 10px 0;
	    line-height: 32px;
	    border-radius: 10px;
	}
	
	.namebar-01 .name,
	.namebar-02 .name,
	.namebar-03 .name,
	.namebar-04 .name {
		font-size: 16px;
		float: none;
 		margin: 0;
	}
	.namebar-01 .tel,
	.namebar-02 .tel,
	.namebar-03 .tel,
	.namebar-04 .tel {
		font-size: 18px;
	}
	
	.catch {
		margin-bottom:1em;
	    padding: 0 0.5em 0.5em;
		font-size: 16px;
	}
	
	.detailInner .imgL {
		margin-bottom:20px;
	}
	.detailInner .imgL img {
		float:none;
		width: 100%;
		margin:0 0 15px 0;
	}
	
	.detailInner .fourCol {
		margin-bottom:1em;
	}
	.detailInner .fourColInner {
		margin-right:0;
	}
	.detailInner .fourColInner div {
		width:100%;
		float:none;
		margin-right:0;
		margin-bottom:1.5em;
	}
	
	.detailInner table {
		margin-bottom: 1.5em;
	}
	
	.store_back {
	    width: 80%;
	    margin: 0 auto 50px;
	}
	
	.more {
		margin: 0 auto 50px;
	}
	
	.more-link-after a {
		text-align: left !important;
	}
}

/*================================================
 *  ふれあい通り名店街について
 ================================================*/
.about {
	overflow:hidden;
	width: 100%;
	margin: 0 0 2em;
	padding: 50px;
	background: #fcf0f0;
    border-radius: 15px;
}
.about h3 {
	width: 100%;
	margin: 0 auto 40px;
	padding: 3px 5px 2px 15px;
	color: #333;
	border-left: solid 6px #e16e6e;
	border-bottom: solid 1px #e16e6e;
}

.greetings {
    display: flex;
    margin: 0;
    padding:  50px;
    background-color: #fff;
}

.greetings_item {
    margin: 0;
    padding: 0;
}
.greetings_item p {
    font-size: 16px;
}
.greetings_item p.name {
    margin: 0;
    padding: 0;
    font-size: 16px;
}
.greetings_item p:last-child {
    margin: 0;
    padding: 0;
}
.greetings_item:nth-child(1) {
	flex-basis: 300px;
	margin:0 60px 0 0;
    text-align:  center;
}
.greetings_item img {
	width: 100%;
	margin-bottom: 1em;
}
.greetings_item:nth-child(2) {
    flex: 1;
}

.about-box {
    display: flex;
	margin-bottom: 90px;
    padding: 10px;
	justify-content: center;
	align-items: center;
}

.about_item {
    width: 30%;
    margin: 10px;
	text-align: center;
    border-radius: 5px;
    background-color: #e4a3a3;
}
.about_item a {
    display: block;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
	text-decoration:none;
}
.about_item a:hover {
    background-color: #e16e6e;
}

/* 歴史 */
.history {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}
.history .twoColInner {
	margin-right:-4%;
}
.history .twoColInner div {
	width:46%;
	margin-right: 4%;
	margin-bottom: 1em;
}
.history .twoColInner div:last-child {
	margin-bottom:0;
}
.history .twoColInner img {
	margin-bottom: 1em;
    border-radius: 10px;
}

.history p.midashi {
	margin: 0 0 2em;
	padding: 0;
	font-size: 20px;
	text-align: center;
	color: #e16e6e;
}
.history p.ko-midashi {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 16px;
}

/* 名店街会員紹介 */
.owner {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}

.owner .threeCol {
	overflow:hidden;
	margin-bottom:0;
}
.owner .threeColInner {
	overflow:hidden;
	margin-right:-3%;
}
.owner .threeColInner div {
	width:31%;
	float:left;
	margin-right:2%;
}
.owner .threeColInner div:nth-child(3n+1) {
	clear:both;
}
.owner .threeColInner img {
	width:100%;
	margin-bottom: 1em;
    border-radius: 10px;
}

.owner .four {
	overflow:hidden;
	margin-bottom:0;
}
.owner .fourInner {
	overflow:hidden;
	margin-right:-3%;
}
.owner .fourInner div {
	width:23%;
	float:left;
	margin-right:2%;
}
.owner .fourInner div:nth-child(4n+1) {
	clear:both;
}
.owner .fourInner img {
	width:100%;
	margin-bottom: 1em;
    border-radius: 10px;
}

.owner p.midashi {
	margin: 0 0 2em;
	padding: 0;
	font-size: 20px;
	text-align: center;
	color: #e16e6e;
}
.owner p.name {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 18px;
}
.owner p {
	margin: 0;
	padding: 0;
}

/* 加盟店募集（加盟店になるには） */
.member {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}

.member p.midashi {
	margin: 0 0 2em;
	padding: 0;
	font-size: 20px;
	text-align: center;
	color: #e16e6e;
}
.member p.ko-midashi {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 16px;
}

.textBox {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 50px;
	background: #fff;
    border-radius: 15px;
}

@media screen and (max-width: 1024px) {
	.greetings_item:nth-child(1) {
		flex-basis: 250px;
		margin:0 40px 0 0;
	}
}

@media screen and (max-width: 979px) {
	.about {
		padding: 30px;
	}
	
	.greetings {
	    padding: 30px;
	}

	.greetings_item:nth-child(1) {
		flex-basis: 200px;
		margin:0 30px 0 0;
	}
	.greetings_item {
	    font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.greetings_item:nth-child(1) {
		flex-basis: 180px;
		margin:0 30px 0 0;
	}
}

@media screen and (max-width: 500px) {
	.about {
		overflow:hidden;
		padding: 25px;
	    border-radius: 15px;
	}
	
	.about-box {
		margin-bottom: 50px;
	}

	.greetings {
	    display: block;
	    padding:  15px;
	}

	.greetings {
	    padding: 20px;
	}
	
	.greetings_item {
	    font-size: 14px;
	}
	
	.greetings_item:nth-child(1) {
		margin:0;
	}
	.greetings_item:nth-child(1) p {
		margin:0 0 1em;
	}
	.greetings_item img {
		width: 100%;
		margin-bottom: 1em;
	}
	
	.about-box {
	    display: block;
	    padding: 0;
	}
	
	.about_item {
	    width: 80%;
	    margin: 0 auto 10px;
	}
	
	.history .twoCol {
		margin-right:0;
	}
	.history .twoColInner {
		margin-right:0;
	}
	.history .twoColInner div {
		float:none;
		width:100%;
	}
	
	.member p.midashi {
		margin: 0 0 1.5em;
		font-size: 18px;
	}
	.member p.ko-midashi {
		font-size: 14px;
	}
	
	.owner .threeCol {
		margin-right:0;
	}
	.owner .threeColInner {
		margin-right:0;
	}
	.owner .threeColInner div {
		float:none;
		width:100%;
	}

	.owner .four {
		margin-right:0;
	}
	.owner .fourInner {
		margin-right:0;
	}
	.owner .fourInner div {
		float:none;
		width:100%;
		margin-bottom:1.5em;
	}
	
	.owner p.midashi {
		margin: 0 0 1.5em;
		padding: 0;
		font-size: 18px;
	}
	.owner p {
		font-size: 14px;
	}
	
	.textBox {
		overflow:hidden;
		padding: 25px;
	}
}

/*================================================
 *  お問い合わせ
 ================================================*/
.contact {
	overflow:hidden;
	width: 100%;
	margin: 0 0 90px;
	padding: 50px 100px;
	background: #fcf0f0;
    border-radius: 15px;
}

@media screen and (max-width: 500px) {
	.contact {
		padding: 15px;
	    border-radius: 15px;
	}
}

.progressbar {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2.5em;
}
.progressbar .item {
    position: relative;
    width: 33%;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #f6d3d3;
    color: #666;
}
.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid #f6d3d3;
    margin: auto;
}
.progressbar .item:not(:last-child)::before {
    margin-left: 2px;
    border-left-color: #fff;
}

@media screen and (max-width: 767px) {
	.progressbar .item {
	    font-size: 11px;
	    line-height: 1.4;
	    padding: 10px 0;
	}
	.progressbar .item:not(:last-child)::before,
	.progressbar .item:not(:last-child)::after {
	    border-width: 25px;
	    border-left-width: 12px;
	}
}

/* active */

.progressbar .item.active {
    z-index: 1;
    background: #e16e6e;
    color: #fff;
}
.progressbar .item.active:not(:last-child)::after {
    border-left-color: #e16e6e;
}
.progressbar .item.active:not(:last-child)::before {
    border-left: none;
}

/* --- フォーム --- */
.contact_form {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

table.contact_form {
	font-size: 16px;
	margin-bottom: 1.5em;
	border:none;
}
table.contact_form th {
	width: 35%;
	text-align: left;
	background:none;
}
table.contact_form th,
table.contact_form td {
	padding-left: 0;
	padding-right: 0;
	border-top:1px dotted #e16e6e;
	border-left:none;
	border-right:none;
	border-bottom:1px dotted #e16e6e;
}

.form {
	margin:0 0 3em;
	padding:0;
}
.form:last-child {
	margin-bottom:0;
}
.form ul {
	text-align:left;
}

input#submit_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#e16e6e;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #e16e6e;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#submit_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#e16e6e;
	transition:all 0.2s ease 0s;
}

input#reset_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#e16e6e;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #e16e6e;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#reset_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#e16e6e;
	transition:all 0.2s ease 0s;
}

input#back_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#e16e6e;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #e16e6e;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#back_btn:hover {
	font-size: 16px;
	font-weight: bold;
	color:#fff;
	background:#e16e6e;
	transition:all 0.2s ease 0s;
}

input {
    cursor: pointer;
    cursor: hand;
}

input, select, textarea {
    font-size: 16px;
	border:1px solid #ccc;
}

/* --- フォーム部品のサイズ --- */
#name, #name2, #tel {
    width: 100%;
	padding:10px;
	line-height: 1;
}
#email,#add {
    width: 100%;
	padding:10px;
	line-height: 1;
}

/* --- （複数行のテキスト入力欄） --- */
#message {
    box-sizing: border-box;
    width: 100%;
    height: 10em;
	padding:10px;
}

.required {
	color: #d00;
}

.msg {
	color: #d00;
}

span.msg {
	color: #d00;
}

.contact_btn {
	text-align: center;
}

@media screen and (max-width:500px) {
	.contact {
		margin: 0 0 50px;
	}

	table.contact_form {
		font-size: 14px;
	}
	table.contact_form th {
		width: 100%;
		text-align: left;
	}
	
	input#submit_btn,
	input#reset_btn,
	input#back_btn {
		font-size: 14px;
		padding:10px 15px;
	}

    #name, #name2, #tel {
        box-sizing: border-box;
        width: 100%;
    }
}

.policyBox {
	overflow:hidden;
    width: 100%;
	margin: 0 0 2.5em;
	padding: 30px;
	background: #fff;
    border-radius: 15px;
}

.contact_policy {
	overflow:auto;
    width: 100%;
	height: 250px;
	margin: 0 0 2em;
	padding: 30px;
	background: #fcf0f0;
	border: 1px solid #ccc;
}
.contact_policy ol li {
	margin-bottom: 0.75em;
	font-weight: bold;
	line-height: 2;
}
.contact_policy ol li span {
	font-weight: normal;
}
.contact_policy .sign {
	text-align: right;
	line-height: 2;
}

.checkbox {
	overflow:hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
}

@media screen and (max-width:500px) {
	.policyBox {
		padding: 15px;
		font-size: 12px;
	}
	
	.contact_policy {
		margin: 0 0 1.5em;
		padding: 15px;
	}
	
	.checkbox {
		font-size: 12px;
	}
}

/*================================================
 *  プライバシーポリシー
 ================================================*/
.policy {
	overflow:hidden;
	width: 100%;
	margin: 0 0 90px;
	padding: 40px;
	background: #fcf0f0;
    border-radius: 15px;
}
.policy ol li {
	margin-bottom: 0.75em;
	font-weight: bold;
	line-height: 2;
}
.policy ol li span {
	font-weight: normal;
}

.sign {
	text-align: right;
	line-height: 2;
}

@media screen and (max-width:500px) {
	.policy {
		margin: 0 0 50px;
		padding: 20px;
	}
}

/*================================================
 *  タブレット・スマートフォン
 ================================================*/
/* テンプレートより小さくなった場合に適用 */
@media screen and (max-width:1200px) {
	.inner {
		width: 100%;
	}

	#contents {
		box-sizing: border-box;
		width: 100%;
		padding: 30px 15px;
	}

	footer {
		width: 100%;
	}

	.lock {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}

@media screen and (max-width:500px) {
    .table_sp { margin: 0 0 20px; }
    .table_sp th,
    .table_sp td{
        width: auto;
        display: block;
        border: none;
    }
    .table_sp th {border-top: 1px #ccc solid; border-bottom: 0;}
    .table_sp td {border-top: 1px #ccc solid; border-bottom: 0;}
    .table_sp tr:first-child th {border-top: none;}
}

@media screen and (min-width: 500px){
    .br-sp {display: none; }
}


