@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-size: 14px;
	color: #333;
	line-height: 1.6;
	font-weight: normal;
	word-wrap : break-word;
	overflow-wrap : break-word;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
body > #wrapper {
	height: auto;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

@media print {
	html,
	html body{overflow: visible !important;}
}

/* アクセシビリティ */
.guidance {
	left:-999px;
	position:absolute;
	width:990px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
} /* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a{
	display: inline-block;
}
a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: inherit;
	opacity: .7;
	text-decoration: none!important;
}
*:focus {
	outline: none;
}

.mincho{
	font-family: 'Noto Serif JP', serif;
	position: relative;
	font-weight: normal;
}
.Oswald{
	font-family: 'Oswald', sans-serif;
}

input{
	font-size: 16px;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}
.contents_wrap{
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}

.attention{
    color: #D8121C;
    font-weight: bold;
}
.pc {display: block;}
.sp {display: none;}


/* ▼ タイトル
--------------------------------------- */
#home #header #site_title{
	max-width: 156px;
	padding: 15px 0;
	overflow: hidden;
	margin: auto 0;
}
#home #header.add_bg #site_title,
#site_title{
	max-width: 110px;
	margin: 10px 0;
	padding: 0;
}
#home #header.add_bg #site_title img,
#site_title img{
	width: 100%;
}

.title_wrap{
	padding: 40px 0;
}
	.title_wrap .title {
		margin-bottom: 10px;
		color: #D8121C;
		font-size: 38px;
		text-align: center;
		font-family: 'Oswald', sans-serif;
		line-height: 1;
	}
	.title_wrap p{
		font-size: 18px;
		text-align: center;
		font-weight: bold;
	}

/* 記事タイトル */
.article_title{
	border-bottom: 1px solid #D0D0D0;
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 24px;
}

.category_title{
	margin-bottom: 25px;
	color: #000;
	font-size: 28px;
	text-align: center;
	font-family: 'Oswald', sans-serif;
}

#favorite .title svg{
	width: 33px;
	height: 30.25px;
	margin-right: 10px;
}
	#favorite .title svg path{
		fill: #D8121C;
	}


/* ▼▼▼ ヘッダー
======================================================*/

header {
	background: #fff;
	width: 100%;
	color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	overflow: visible;

}
#home #header{
	background: none;
	transition: all 0.5s ease;
}
#home #header.add_bg {
	background: #fff;
	transition: all 0.5s ease;
}


.header_inner {
	display: flex;
	align-items: flex-start;
	width: 100%;
	padding: 0 20px;
	z-index: 3000;
}

#home .pc_nav{
	display: flex;
	align-items: flex-start;
}
	#home .pc_nav li:not(:last-child){
		margin-right: 60px;
	}
.pc_nav{
	display: flex;
	align-items: center;
	margin: 18px 30px 0 auto;
	height: auto;
}
	.pc_nav li:not(:last-child){
		margin-right: 30px;
	}

/* ヘッダーicon共通
----------------------------------------*/
.language,
.favorite{
	padding: 18px 15px;
}
.language p,
.favorite p{
	margin-top: 5px;
	color: #000;
	font-size: 12px;
	text-align: center;
}
.language svg,
.favorite svg{
	vertical-align: middle;
}
.header_inner .svg_inline path{
	fill: #000;
}

/* 言語切り替え
----------------------------------------*/
.language{
	position: relative;
}
.language > div{
	text-align: center;
	cursor: pointer;
}
	.language > div:hover{
		opacity: 0.7;
	}
	.language img{
		width: 20.76px;
	}
	.language ul{
		display: none;
		position: absolute;
		transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		top: 60px;
		left: 50%;
	}
	.language ul li{
		background: #F7F4F4;
		border-bottom: 1px solid #ccc;
		font-size: 14px;
	}
	.language ul li:hover{
		background: #D8121C;
	}
	.language ul li:hover a{
		color: #fff;
	}
	.language ul li:last-child{
		border-bottom: 0px none;
	}
	.language ul li a{
		display: block;
		color: #000;
		text-decoration: none;
		padding: 5px 15px;
	}

/* お気に入り
----------------------------------------*/
.favorite{
	margin-right: 45px;
}
	.favorite img{
		width: 20.76px;
	}


/* メニューボタン
----------------------------------------*/
.menu:not(.menu_close) {
	background: #000;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3000;
	cursor: pointer;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
.wrap .menu {
	background: transparent;
	/* -moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	transition:all 0.5s; */
}
	.menu .icon {
		position:absolute;
		transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		border-top: 1px solid #fff;
		top: 50%;
		left: 50%;
		width: 24px;
	}
	.menu .icon:before {
		content:'';
		position: absolute;
		border-top: 1px solid #fff;
		width: 24px;
		top: -7px;
		right: 0;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu .icon:after {
		content:'';
		position: absolute;
		border-top: 1px solid #fff;
		width: 24px;
		bottom: -6px;
		right: 0;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu .icon.active {
		border: none;
	}
	.menu .icon.active:before {
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top: 0;
		right: 0;
	}
	.menu .icon.active:after {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom: -1px;
		right: 0;
	}


/* グローバルナビゲーション
----------------------------------------*/
#gnav {
	background: #D8121C;
	width: 375px;
	max-height: 100vh;
	height: 100vh;
	margin: 0;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	top: 0;
	right: -2000px;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	transition-duration: .8s;
	z-index: 2000;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#gnav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#gnav.open {
	transform: translateX(-2000px);
	transition-duration: .6s;
}
#gnav .nav_wrap{
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 100%;
	padding: 100px 0;
}
	#gnav .nav_wrap ul > li > a {
		display: block;
		color: #fff;
	}
	#gnav .nav_wrap ul > li > a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
	#gnav .nav_wrap .sns_list{
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 0 10px;
		min-height: 0%;
	}
	#gnav .nav_wrap .sns_list li{
		width: 30px;
	}
	#gnav .nav_wrap .sns_list li:not(:last-child){
		margin-right: 25px;
	}
	#gnav .nav_wrap .sns_list svg{
		width: 100%;
	}


ul.nav_list {
	background: #C1000A;
	display: flex;
	justify-content: center;
	clear: both;
	padding: 20px 0;
	font-size: 10px;
}
	ul.nav_list li{
		width: 25%;
		text-align: center;
		font-weight: normal;
		color: #fff;
	}
	ul.nav_list li:not(:last-child){
		border-right: 1px solid #E06369;
	}
	ul.nav_list li a{
		padding: 35px 0 5px;
	}
	ul.nav_list li:nth-child(1) a{
		background: url(../img/nav01.svg) no-repeat center top/auto;
	}
	ul.nav_list li:nth-child(2) a{
		background: url(../img/nav02.svg) no-repeat center top/auto;
	}
	ul.nav_list li:nth-child(3) a{
		background: url(../img/nav03.svg) no-repeat center top/auto;
	}
	ul.nav_list li:nth-child(4) a{
		background: url(../img/nav04.svg) no-repeat center top/auto;
	}

#gnav ul.sub_nav {
	display: block;
	width: 100%;
	padding: 0 30px 30px;
}
	#gnav ul.sub_nav > li{
		height: 60px;
	}
	#gnav ul.sub_nav > li > a {
		border-bottom: 1px solid #E06369;
		display: flex;
		align-items: center;
		height: 100%;
		position: relative;
	}
	#gnav ul.sub_nav > li > a::after{
		display: inline-block;
		content: "";
		width: 6px;
		height: 6px;
		margin-left: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		position: absolute;
		top: 27px;
		right: 0;
	}

ul.bnr_area{
	padding: 0 30px;
	margin: 0 0 30px;
	min-height: 0%;
}
	ul.bnr_area li:not(:last-child){
		margin-bottom: 20px;
	}

.menu.menu_close{
	padding: 19px 0;
	position: static;
	width: 100%;
	color: #fff;
	text-align: center;
	cursor: pointer;
}
	.menu.menu_close:hover{
		opacity: .7;
	}

#screen {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 200;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	margin: 110px auto 0;
	clear: both;
	overflow: hidden;
}
body:not(#home) #main{
	padding-bottom: 100px;
}

.read{
	margin: 0 0 30px;
}

/* スライダー 共通
--------------------------------------- */
/* dotsカスタム */
.slick-dots{
	bottom: -35px;
}
	.slick-dots li{
		height: auto;
		width: 50px;
	}
	.slick-dots li button {
		border: 0;
		background: transparent;
		display: block;
		height: 2px;
		width: 100%;
		outline: none;
		line-height: 0px;
		font-size: 0px;
		color: transparent;
		padding: 10px;
		cursor: pointer;
		position: relative;
	}
	.slick-dots li button:before {
		position: absolute;
		top: 10px;
		left: 0;
		content: "";
		font-size: 0!important;
		opacity: 1!important;
		border-top: 2px solid #D0D6E6;
		width: 100%;
		height: 2px;
		text-align: center;
		-webkit-font-smoothing: antialiased;
	}
	.slick-dots li.slick-active button:before{
		content: "";
		border-top: 2px solid #D8121C;
		width: 50px;
	}


/* ボタン
--------------------------------------- */
.view_btn{
	margin: 0 auto;
	width: 225px;
	height: 40px;
}
	.view_btn a,
	.btn_list li a{
		display: flex;
		align-items: center;
		justify-content: center;
		background: #000;
		color: #fff;
		height: 100%;
		position: relative;
	}
	.view_btn a::after,
	.btn_list li a::after{
		content: "";
		vertical-align: middle;
		width: 6px;
		height: 6px;
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(-45deg)translateY(-50%);
		-ms-transform: rotate(-45deg)translateY(-50%);
		transform: rotate(-45deg)translateY(-50%);
		position: absolute;
		top: 50%;
		right: 15px;
	}

.view_btn.Oswald{
	font-size: 16px;
	font-weight: bold;
}

.view_btn.red a{
	background: #D8121C;
}

.add_favorite{
	background: #D8121C;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 225px;
	height: 40px;
	margin: 0 auto;
	color: #fff;
	cursor: pointer;
	position: relative;
}
	.add_favorite.add_icon::before,
	.add_favorite.add_icon.select::before{
		display: none;
	}

.view_btn.wht a{
	border: 1px solid #000;
	background: #fff;
	color: #000;
}
	.view_btn.wht a::after{
		border-top: 1px solid #000;
		border-right: 1px solid #000;
	}

.btn_list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -1%;
}
	.btn_list li{
		width: 23%;
		height: 40px;
		margin: 0 1%;
	}


/* SNSシェアボタン
--------------------------------------- */
.share_wrap{
	margin-top: 40px;
}
	.share_wrap p{
		margin-bottom: 20px;
		text-align: center;
	}
	.share_wrap .sns_list{
		display: flex;
		justify-content: center;
	}
	.share_wrap .sns_list li{
		max-width: 35px;
		width: 100%;
	}
	.share_wrap .sns_list li:not(:last-child){
		margin-right: 30px;
	}
	.share_wrap .sns_list li a{
		display: block;
		width: 100%;
	}

/* このアイテムをシェアする
---------------------------------------- */
.share_area{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 70px;
}
.share_area .contents_title{
	color: #000;
	font-size: 32px;
	margin: 0 40px 0 0;
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
}
.share_area .share_list{
	display: flex;
	align-items: center;
}
	.share_area .share_list li:not(:last-child){
		margin-right: 40px;
	}
	.share_area .share_list img{
		width: auto;
	}

/* ▼ パンくず
--------------------------------------- */
#path {
	background: #464545;
	padding: 10px 0;
	color: #fff;
	font-size: 12px;
	position: relative;
}
	#path ol{
		display: flex;
		width: max-content;
		padding: 0 40px;
	}
	#path li {
	}
	#path li:not(:last-child):after {
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 5px;
		height: 5px;
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin: -2px 5px 0 5px;
	}

/* カテゴリーリスト
--------------------------------------- */
.cat_list{
	display: flex;
	flex-wrap: wrap;
	margin: -10px -5px 0;
	color: #D8121C;
	font-size: 12px;
}
	.cat_list li{
		flex-shrink: 0;
		margin: 10px 5px 0;
	}
	.cat_list li a{
		display: block;
		border: 1px solid #D8121C;
		border-radius: 20px;
		line-height: 1;
		padding: 5px 10px;
	}
	.cat_list li.now a {
		background-color: #D8121C;
		color: #fff;
	}

/* ショップニュース 一覧 */
#shopnews .search_area{
	margin: 0 0 50px;
}
	#shopnews .search_area .cat_list{
		margin-top: 0;
	}
	#shopnews .search_area .cat_list a:hover,
	#shopnews .search_area .cat_list li.active a{
		opacity: 1;
		background: #D8121C;
		color: #fff;
	}


/* カードグリッドリスト
--------------------------------------- */
.grid_list li a:hover .photo_area,
.grid_list li a:hover p
.grid_list03 li a:hover .photo_area,
.grid_list03 li a:hover p{
	opacity: .7;
}
.grid_list .list_title,
.grid_list02 .list_title,
.grid_list03 .list_title{
	margin-bottom: 5px;
}
.grid_list .date,
.grid_list02 .date,
.grid_list03 .date{
	color: #989898;
	font-size: 12px;
	font-weight: bold;
}

.grid_list{
	display: flex;
	flex-wrap: wrap;
	margin: -50px 0 100px;
}
	.grid_list li{
		width: 23%;
		margin: 50px 0 0 0;
	}
	.grid_list li:not(:nth-child(4n)){
		margin-right: 2.6%;
	}
	.grid_list li a{
		display: block;
	}
	.grid_list li a:hover,
	.grid_list03 li a:hover{
		opacity: 1;
	}
	.grid_list .add_icon{
		margin-bottom: 10px;
	}
	.grid_list .add_icon.box_border{
		border: 1px solid #eee;
	}
	.grid_list .img_liquid{
		width: 100%;
		padding-top: 100%;
		background-color: #fff;
	}

.grid_list02,
.grid_list03{
	display: flex;
	flex-wrap: wrap;
	margin: -50px 0 100px;
}
	.grid_list02 li,
	.grid_list03 li{
		width: 23%;
		margin: 50px 0 0 0;
	}
	.grid_list02 li:not(:nth-child(4n)),
	.grid_list03 li:not(:nth-child(4n)) {
		margin-right: 2.6%;
	}
	.grid_list02 li a,
	.grid_list03 li a{
		display: block;
		color: #000;
	}
	.grid_list02 .img_liquid{
		border: 1px solid #eee;
		width: 100%;
		padding-top: 50%;
		margin: 0 0 10px;
	}
	.grid_list02 .floor,
	.grid_list03 .floor{
		font-size: 14px;
	}
	.shop_no{
		display: inline-block;
		padding: 2px 5px;
		margin-left: 5px;
		color: #fff;
		font-size: 12px;
		line-height: 1;
	}
		.shop_no.cat01{background: #F4753D;} /* ファッション */
		.shop_no.cat02{background: #FDA2C6;} /* ファッショングッズ */
		.shop_no.cat03{background: #F3D527;} /* キャラクターグッズ */
		.shop_no.cat04{background: #40C1A0;} /* レストラン＆カフェ */
		.shop_no.cat05{background: #81CFE0;} /* サービス・アミューズメント */
		.shop_no.cat06{background: #9B89FF;} /* コスメ&ライフスタイル */

	.grid_list02 .shop_name,
	.grid_list03 .shop_name{
		font-weight: bold;
		margin:  5px 0 0;
	}
	.grid_list02 .cat,
	.grid_list03 .cat{
		color: #989898;
		font-size: 12px;
	}

.grid_list03 .img_liquid{
	width: 100%;
	padding-top: 64%;
	margin: 0 0 10px;
}

/* お気に入りボタンエリア */
.add_icon{
	position: relative;
}
	.add_icon::before{
		content: "";
		border-left: 50px solid transparent;
		border-bottom: 50px solid #fff;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 100;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.add_icon.select:before{
		content: "";
		border-left: 50px solid transparent;
		border-bottom: 50px solid #D8121C;
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 100;
		-moz-transition:all 0.5s;
		-webkit-transition:all 0.5s;
		transition:all 0.5s;
	}

/* 記事詳細
--------------------------------------- */
.article_wrap{
	display: flex;
	align-items: flex-start;
	margin-bottom: 80px;
	word-break: break-all;
}
	.article_wrap .img_liquid{
		width: 45%;
		padding-top: 33%;
		margin-right: 30px;
		flex-shrink: 0;
	}
	.article_wrap .txt_area div:not(.view_btn) a{
		color: #D8121C;
		text-decoration: underline;
	}
.pdf_area{
	margin-top: 30px;
}
	.pdf_area .pdf_list{
		margin-top: 10px;
	}
	.pdf_area .pdf_list li{
		cursor: pointer;
	}
	.pdf_area .pdf_list li:not(:last-child){
		margin-bottom: 5px;
	}
	.pdf_area .pdf_list li::after{
		display: inline-block;
		content: "PDF";
		border: 1px solid #D8121C;
		line-height: 1;
		padding: 2px 8px;
		color: #D8121C;
	}
	.pdf_area .pdf_list li a{
		padding-right: 10px;
	}

/* 緊急情報詳細
--------------------------------------- */
.detail.emergency .contents_wrap{
	margin-top: 60px;
}

/* 前のページへ戻る
--------------------------------------- */
.prev_back{
	padding: 25px 0;
	color: #D8121C;
	font-weight: 500;
}
	.prev_back a::before{
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 7px;
		height: 7px;
		border-bottom: 2px solid #D8121C;
		border-left: 2px solid #D8121C;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin: 0 10px 2px 0;
	}

/* ページャー
--------------------------------------- */
.pager{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 80px;
}
#event .pager,
#info .pager{
	width: 100%;
	margin: 0 auto;
}
	.pager li{
		display: flex;
		align-items: center;
		justify-content: center;
		background: #F5F6FC;
		width: 60px;
		height: 60px;
		justify-content: center;
		font-size: 17px;
		font-weight: bold;
	}
	.pager li a{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		color: #D8121C;
	}
	.pager li.now a,
	.pager li a:hover{
		background: #D8121C;
		color: #fff;
	}
	.pager li a:hover{
		opacity: 1;
	}
	.pager li.prev a::before,
	.pager li.next a::before{
		content: "";
		vertical-align: middle;
		width: 8px;
		height: 8px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
	}
	.pager li.prev a::before{
		border-bottom: 2px solid #D8121C;
		border-left: 2px solid #D8121C;
	}
	.pager li.next a::before{
		border-top: 2px solid #D8121C;
		border-right: 2px solid #D8121C;
	}
	.pager li.prev:hover a::before,
	.pager li.next:hover a::before{
		border-color: #fff;
	}

#info.emergency .article_pager .prev{
	margin-left: auto;
}
#info.emergency .article_pager .next{
	margin-right: auto;
}

/* 記事詳細ページャー */
.article_pager{
	display: flex;
	width: 358px;
	margin: 0 auto;
	color: #000;
}
	.article_pager li{
		flex-shrink: 0;
		width: calc(100% - 158px);
		border-left: 1px solid #D0D0D0;
		border-right: 1px solid #D0D0D0;
	}
	.article_pager li:first-child{
		margin-left: auto;
	}
	.article_pager li.prev,
	.article_pager li.next{
		width: 97px;
		border: none;
		margin: 0;
	}
	.article_pager li a{
		padding: 0 20px;
		display: block;
		text-align: center;
	}
	.article_pager li.next a::before,
	.article_pager li.prev a::after{
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 7px;
		height: 7px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -2px;
	}
	.article_pager li.next a::before{
		border-bottom: 2px solid #D8121C;
		border-left: 2px solid #D8121C;
		margin-right: 10px;
	}
	.article_pager li.prev a::after{
		border-top: 2px solid #D8121C;
		border-right: 2px solid #D8121C;
		margin-left: 10px;
	}


/* フリーワード検索
--------------------------------------- */
.free_word {
	display: flex;
	border-bottom: 1px solid #fff;
	max-width: 500px;
	margin: 0 auto;
}
	.free_word input{
		border: none;
		border-radius: 0;
		outline: none;
		background: none;
		padding: 10px 0;
		width: calc(100% - 35px);
		color: #fff;
		text-decoration: none;
	}
	.free_word span{
		width: 35px;
		position: relative;
		flex-shrink: 0;
	}
	.free_word span input{
		width: 100%;
		position: relative;
		z-index: 3;
		cursor: pointer;
	}
	.free_word span::before{
		content: "";
		background: url(../img/icon_search.svg) no-repeat center/contain;
		width: 20px;
		height: 20px;
		position: absolute;
		transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		top: 50%;
		left: 50%;
	}
	.free_word input::placeholder{
		color: rgba(255,255,255,0.8);
	}
	.free_word input::-ms-input-placeholder{
		color: rgba(255,255,255,0.8);
	}


/* アコーディオン
--------------------------------------- */
.accordion_title{
	background: #F5F6FC;
	border: 1px solid #D4DCF4;
	padding: 20px 25px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
}
	.accordion > dd{
		padding: 30px 25px 0;
		margin: 0 0 80px;
	}
	.accordion dd a{
		text-decoration: underline;
	}
	.accordion dd a:hover{
		text-decoration: none;
		opacity: 1;
	}

/* HEPSバナー
--------------------------------------- */
.heps_bnr{
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}
body:not(#home) .heps_bnr{
    margin-top: 50px;
	max-width: 600px;
}
/* ▼▼▼ フッター
===================================== */
footer {
	width: 100%;
	background: #5D5B5B;
	padding: 65px 0 50px;
	clear: both;
	overflow: hidden;
	color: #fff;
	position: relative;
	}
	#footer_inner {
		max-width: 890px;
		margin: 0 auto;
		overflow: hidden;
	}
	.f_inner_wrap{
		display: flex;
		margin-bottom: 75px;
	}
	.f_inner_wrap .fnav{
		display: flex;
		flex-wrap: wrap;
		font-size: 14px;
	}
	.f_inner_wrap .fnav li{
		width: 50%;
		margin-bottom: 20px;
	}
	.f_inner_wrap .fnav li:nth-last-child(-n+2){
		margin-bottom: 0;
	}
	.f_nav02{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		border-left: 1px solid #868686;
		flex-shrink: 0;
		padding-left: 45px;
		margin-left: auto;
		font-size: 12px;
	}
	.f_nav02 ul{
		margin: 0 0 20px;
	}
	.f_nav02 li:not(:last-child){
		margin-bottom: 15px;
	}

	.f_bnr{
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.f_bnr li{
		width: 23%;
		flex-shrink: 0;
		margin-bottom: 18px;
	}
	.f_bnr li:not(:nth-child(4n)){
		margin-right: 2.5%;
	}
	.f_bnr li a{
		width: 100%;
	}


/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
	background: #000;
	width: 60px;
	height: 60px;
	padding-top: 30px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	position: fixed;
	bottom: 20px;
	right: 10px;
	z-index: 3000;
	cursor: pointer;
}
	.pagetop::after {
		content: "";
		vertical-align: middle;
		width: 10px;
		height: 10px;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		top: 18px;
		left: 24px;
	}

/* ▼ フローティングHEPSバナー
--------------------------------------- */
.fix_bnr{
    display: none;
    position: fixed;
    right: 80px;
	bottom: 20px;
    z-index: 3000;
}
.fix_bnr_inner{
    width: 300px;
    position: relative;
}
.fix_bnr_inner a{
    display: block;
    width: 300px;
    max-width: 100%;
}
.fix_bnr_inner .fix_bnr_close{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
		color: #FFF;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

/* ▼ ワントラスト
--------------------------------------- */
.ot_policy_wrap{
    margin-bottom: 20px;
    text-align: center;
}
.ot_policy{
    display: inline-block;
    padding: 0 10px 10px;
    text-align: center;
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
	font-size: 12px;
	color: #C4C4C4;
	text-align: center;
}


/* ---------------------------------------
 cookie dialog
--------------------------------------- */
.cookie_dialog{
	display:none;
	background: rgba(255,255,255,.9);
	width: 100%;
	padding: 30px 0;
	font-size: 14px;
	position: fixed;
	bottom: 0;
	z-index: 6000;
	text-align: center;
}
	.cookie_dialog .btn_area{
		display: inline-block;
		max-width: 1050px;
    width: 90vw;
		margin: 0 auto;
		position: relative;
	}
	.cookie_dialog .btn_area p{
		margin: 0;
	}
	.cookie_dialog .btn_area a{
		display: inline-block;
		text-decoration: underline;
	}
	.cookie_dialog .btn_area a:hover{
		opacity: 1;
		text-decoration: none;
	}
	.cookie_dialog .btn_area a.button{
		border: none;
		flex-shrink: 0;
		color: #D8121C;
		text-decoration: none;
		position: absolute;
		top: -15px;
		right: -15px;
	}
	.cookie_dialog .btn_area a.button::before{
		content:"×";
		font-size: 26px;
	}
	.cookie_dialog .btn_area a.button:hover{
		opacity: 1;
	}



/* ▼▼▼ 768px〜1200px
====================================================== */
@media screen and (max-width: 1200px) {
	/* header
	--------------------------------------- */
	#site_title {
		width: 14vw!important;
	}
	.pc_nav li{
		font-size: 1.35vw;
	}
	.pc_nav li:not(:last-child) {
		margin-right: 25px!important;
	}
}


/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body{
		font-size: 14px;
	}
	body.wrap {
		overflow: hidden;
	}

	#wrapper {width: 100%;}
	#screen {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color:rgba(0,0,0,0.8);
		z-index: 200;
	}

	a {
		-webkit-tap-highlight-color:rgba(0,0,0,0);
	}

	.pc {display: none;}
	.sp {display: block;}

	.container {
		padding: 0 5px;
	}
	.contents_wrap{
		padding: 0 5px;
	}
	a:hover{
		opacity: 1!important;
	}


	/* ▼タイトル
	--------------------------------------- */
	#site_title {
		padding: 0!important;
		margin: auto 0;
		width: 76px!important;
		position: absolute;
		transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		top: 50%;
		left: 50%;
		overflow: hidden;
	}

	.title_wrap{
		padding: 35px 0;
	}
		.title_wrap .title {
			margin-bottom: 10px;
			font-size: 32px;
		}
		.title_wrap p{
			font-size: 16px;
		}

	/* 記事タイトル */
	.article_title{
		padding-bottom: 10px;
		margin-bottom: 15px;
		font-size: 16px;
	}

	.category_title{
		margin-bottom: 15px;
		font-size: 22px;
	}

	#favorite .title svg{
		width: 28.9px;
		height: 26.49px;
		margin-right: 10px;
	}


	/* ▼▼▼ ヘッダー
	======================================================*/
	body:not(#home) header{
	}
	header {
		background: #fff;
		border-bottom: 1px solid #E2E4E8;
		width: 100%;
		height: 60px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		overflow: visible;
	}
	#home #header{
		background: #fff!important;
	}

	.header_inner {
		align-items: center;
		justify-content: space-between;
	}
	#home .pc_nav,
	.pc_nav{
		display: none;
	}

	/* ヘッダーicon共通
	----------------------------------------*/
	.language,
	.favorite{
		padding: 18px 0;
		text-align: center;
		vertical-align: middle;
	}
	.language p,
	.favorite p{
		margin-top: 5px;
		color: #000;
		font-size: 12px;
		text-align: center;
	}
	.header_inner .svg_inline path {
		fill: #D8121C;
	}

	/* 言語切り替え
	----------------------------------------*/
	.language > div{
		text-align: center;
		cursor: pointer;
	}
		.language > div:hover{
			opacity: 0.7;
		}
		.language img{
			width: 20.76px;
		}
		.language ul{
			transform: translateX(0%);
			-ms-transform: translateX(0%);
			left: -20px;
		}
		.language ul li{
			font-size: 12px;
		}
		.language ul li:hover{
			background: #D8121C;
		}
		.language ul li:hover a{
			color: #fff;
		}
		.language ul li:last-child{
			border-bottom: 0px none;
		}
		.language ul li a{
			display: block;
			color: #000;
			text-decoration: none;
			padding: 5px 10px;
		}

	/* お気に入り
	----------------------------------------*/
	.favorite{
		margin-left: auto;
	}
		.favorite img{
			width: 20.76px;
		}


	/* メニューボタン
	----------------------------------------*/
	.menu:not(.menu_close) {
		background: transparent;
		width: 60px;
		height: 60px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 3000;
		cursor: pointer;
		-moz-transition:all 0.5s;
		-webkit-transition:all 0.5s;
		transition:all 0.5s;
	}
		.menu .icon,
		.menu .icon:before,
		.menu .icon:after {
			border-color: #D8121C;
		}
		.menu .icon.active:before,
		.menu .icon.active:after{
			border-color: #fff;
		}

	/* グローバルナビゲーション
	----------------------------------------*/
	#gnav{
		padding-top: 60px;
		width: 100%;
	}
	#gnav .nav_wrap{
		display: block;
		padding: 0;
		margin-bottom: 100px;
		min-height: 0;
		height: auto;
	}

	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner {
		float: none;
		width: 100%;
		}
	#main {
		margin-top: 60px!important;
	}
	body:not(#home) #main{
		padding-bottom: 60px;
	}
	.menu_fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	.read{
		margin: 0 0 15px;
	}


	/* ボタン
	--------------------------------------- */
	.view_btn a{
		font-size: 14px;
	}
	.btn_list{
		justify-content: flex-start;
		margin-top: -10px;
		margin: 0;
	}
		.btn_list li{
			width: 49%;
			margin: 10px 2% 0 0;
		}
		.btn_list li:nth-child(even){
			margin-right: 0;
		}
		.btn_list li a{
			font-size: 12px;
		}
		.btn_list li a::after{
			right: 10px;
		}

	/* SNSシェアボタン
	--------------------------------------- */
	.shop_data_wrap .share_wrap{
		margin-top: 40px;
	}
		.shop_data_wrap .share_wrap p{
			margin-bottom: 20px;
			text-align: center;
		}
		.shop_data_wrap .share_wrap .sns_list{
			justify-content: center;
		}
		.shop_data_wrap .share_wrap .sns_list li{
			max-width: 35px;
		}
		.shop_data_wrap .share_wrap .sns_list li:not(:last-child){
			margin-right: 30px;
		}

	/* このアイテムをシェアする
	---------------------------------------- */
	.share_area{
		display: block;
		margin: 0 0 40px;
	}
	.share_area .contents_title{
		font-size: 19px;
		margin: 0 0 25px!important;
		text-align: center;
	}
	.share_area .share_list{
		justify-content: center;
	}
		.share_area .share_list li:not(:last-child){
			margin-right: 25px;
		}
		.share_area .share_list img{
			width: 34px;
		}

	/* ▼ パンくず
	--------------------------------------- */
	#path{
		overflow-x: scroll;
		white-space: nowrap;
		position: relative;
	}
	#path ol{
		display: flex;
		width: max-content;
		padding: 0 25px;
	}


	/* カテゴリーリスト
	--------------------------------------- */
	/* ショップニュース 一覧 */
	#shopnews .search_area{
		margin: 0 0 30px;
		padding: 0 15px;
	}
		#shopnews .search_area .cat_list{
			white-space: nowrap;
			overflow-x: scroll;
			flex-wrap: nowrap;
			font-size: 12px;
		}

	/* カードグリッドリスト
	--------------------------------------- */
	.grid_list li a:hover .photo_area,
	.grid_list li a:hover p
	.grid_list03 li a:hover .photo_area,
	.grid_list03 li a:hover p{
		opacity: 1;
	}
	.grid_list .date,
	.grid_list02 .date,
	.grid_list03 .date{
		font-size: 10px;
	}

	.grid_list{
		display: flex;
		flex-wrap: wrap;
		margin: -30px 0 50px;
	}
		.grid_list li{
			width: 49.5%;
			margin: 30px 0 0 0;
		}
		.grid_list li:not(:nth-child(4n)){
			margin-right: 1%;
		}
		.grid_list li:nth-child(2n){
			margin-right: 0;
		}

	.grid_list02{
		border-top: 1px solid #F5F6FC;
		display: block;
		margin: 0 0 50px;
	}
		.grid_list02 li{
			border-bottom: 1px solid #F5F6FC;
			margin: 0;
			width: 100%;
		}
		.grid_list02 li:not(:nth-child(4n)) {
			margin-right: 0;
		}
		.grid_list02 li a{
			display: flex;
			align-items: center;
			width: 100%;
			padding: 20px 25px;
		}
		.grid_list02 .img_liquid{
			flex-shrink: 0;
			width: 40%;
			padding-top: 20%;
			margin: 0 15px 0 0;
		}
		.grid_list02 .shop_name{
			font-weight: bold;
			margin: 3px 0 0;
		}

	.grid_list03{
		margin: -30px 0 50px;
	}
		.grid_list03 li{
			width: 49.5%;
			margin: 30px 1% 0 0!important;
		}
		.grid_list03 li:nth-child(even){
			margin-right: 0!important;
		}
		.grid_list03 li a{
			width: 100%;
		}
		.grid_list03 .add_icon{
			flex-shrink: 0;
		}
		.grid_list03 .shop_name{
			font-weight: bold;
			margin: 3px 0 0;
		}


	/* 記事詳細
	--------------------------------------- */
	.article_wrap{
		display: block;
		margin-bottom: 50px;
	}
		.article_wrap .img_liquid{
			width: 100%;
			padding-top: 72%;
			margin: 0 0 30px;
		}
	.pdf_area{
		margin-top: 30px;
	}
		.pdf_area .pdf_list{
			margin-top: 10px;
		}
		.pdf_area .pdf_list li:not(:last-child){
			margin-bottom: 5px;
		}

	/* ページャー
	--------------------------------------- */
	.pager {
		width: calc(100% - 50px);
		margin-bottom: 40px;
	}
	.pager li{
		width: calc(100%/7);
		height: 12.7vw;
	}
	.pager li.prev a::before,
	.pager li.next a::before{
		width: 6px;
		height: 6px;
	}
	#event .pager,
	#info .pager{
		width: 100%;
		margin: 0 auto;
	}

	/* 記事詳細ページャー */
	.article_pager{
		width: 100%;
	}
		.article_pager li{
			flex-shrink: 0;
			width: 60%;
			text-align: center;
		}
		.article_pager li a{
			display: block;
			width: 100%;
			padding: 0 10px;
		}

		.article_pager li.next,
		.article_pager li.prev{
			flex-shrink: 0;
			width: 20%;
			min-width: 52px;
		}
		.article_pager li.next a{
			padding-left: 0;
		}
			.article_pager li.next a::before{
				margin-right: 5px;
			}
		.article_pager li.prev{
			text-align: right;
		}
			.article_pager li.prev a{
				padding-right: 0;
			}
			.article_pager li.prev a::after{
				margin-left: 5px;
			}

	/* フリーワード検索
	--------------------------------------- */
	.free_word {
		display: flex;
		border-bottom: 1px solid #fff;
		max-width: 500px;
		margin: 0 auto;
	}
		.free_word input{
			border: none;
			border-radius: 0;
			outline: none;
			background: none;
			width: calc(100% - 35px);
			color: #fff;
			font-size: 16px;
		}
		.free_word span{
			width: 35px;
			position: relative;
			flex-shrink: 0;
		}
		.free_word span input{
			width: 100%;
			position: relative;
			z-index: 3;
			cursor: pointer;
		}
		.free_word span::before{
			content: "";
			background: url(../img/icon_search.svg) no-repeat center/contain;
			width: 20px;
			height: 20px;
			position: absolute;
			transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
			top: 50%;
			left: 50%;
		}

	/* アコーディオン
	--------------------------------------- */
	.accordion{
		margin-bottom: 20px;
	}
		.accordion_title{
			padding: 10px 30px 10px 15px;
			font-size: 16px;
		}
		.accordion .sp_open::after,
		.accordion .close::after{
			content: "";
			width: 6px;
			height: 6px;
			-webkit-transform: rotate(45deg)translateY(-50%);
			-ms-transform: rotate(45deg)translateY(-50%);
			transform: rotate(45deg)translateY(-50%);
			position: absolute;
			top: 51%;
			right: 15px;
		}
		.accordion .sp_open::after{
			border-bottom: 1px solid #D8121C;
			border-right: 1px solid #D8121C;
		}
		.accordion .close::after{
			border-top: 1px solid #D8121C;
			border-left: 1px solid #D8121C;
			top: 53%;
		}
		.accordion > dd{
			display: none;
			padding: 15px 15px 0;
			margin: 0 0 50px;
		}
		.accordion:last-of-type > dd{
			margin: 0;
		}
		.accordion:last-of-type{
			margin: 0 0 50px;
		}

    /* HEPSバナー
    --------------------------------------- */
    .heps_bnr{
        max-width: 100%;
    }
    body:not(#home) .heps_bnr{
        margin-top: 20px;
    }
	/* ▼▼▼ フッター
	====================================================== */
	footer {
		padding: 35px 0;
	}
	body#home footer{
		padding-bottom: 100px;
	}
	.f_inner_wrap{
		display: block;
		margin-bottom: 40px;
	}
	.f_inner_wrap .fnav{
		border-bottom: 1px solid #868686;
		display: flex;
		flex-wrap: wrap;
		padding: 0 25px 40px;
		margin: 0 auto 40px;
		font-size: 12px;
	}
	.f_inner_wrap .fnav li{
		width: 50%;
		margin-bottom: 20px;
	}
	.f_inner_wrap .fnav li:nth-last-child(-n+2){
		margin-bottom: 0;
	}
	.f_nav02{
		display: block;
		border: none;
		padding: 0;
		font-size: 12px;
	}
	.f_nav02 ul{
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px solid #868686;
		padding: 0 25px 40px;
		margin: 0 auto 40px;
	}
	.f_nav02 li{
		width: 50%;
		margin-bottom: 20px;
	}
	.f_nav02 li:nth-last-child(-n+2){
		margin-bottom: 0;
	}
	.addr{
		padding: 0 25px;
		margin: 0 auto;
	}


	.f_bnr{
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
		padding: 0 25px;
	}
	.f_bnr li{
		width: 48%;
		flex-shrink: 0;
		margin-bottom: 18px;
		margin-right: 4%!important;
	}
	.f_bnr li:nth-child(2n){
		margin-right: 0!important;
	}

	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop {
		width: 60px;
		height: 60px;
		padding-top: 30px;
		font-size: 12px;
		bottom: 20px;
	}
		.pagetop::after {
			width: 10px;
			height: 10px;
			top: 17px;
			left: 24px;
		}

    /* ▼ フローティングHEPSバナー
    --------------------------------------- */
    .fix_bnr{
        bottom: 20px;
    }
    .fix_bnr_inner{
        max-width: calc(100vw - 90px);
    }
	/* ▼ コピーライト
	--------------------------------------- */
	#copyright {
		font-size: 10px;
	}

	/* ---------------------------------------
	 cookie dialog
	--------------------------------------- */
	.cookie_dialog{
		padding: 30px 20px 20px;
		font-size: 12px;
		height: 170px;
	}
		.cookie_dialog .btn_area{
			display: flex;
			align-items: center;
			width: 100%;
			height: 100%;
			position: static;
		}
		.cookie_dialog .btn_area a.button{
			top: 1.5%;
			right: 0;
			width: 30px;
			text-align: center;
		}
		.cookie_dialog .btn_area a.button:hover{
			opacity: 1;
		}
		.cookie_dialog .btn_area a.button::before{
			font-size: 22px;
		}
}

/* ▼▼▼ 340p
====================================================== */
@media screen and (max-width: 340px) {
	/* ボタン
	--------------------------------------- */
	.btn_list li a{
		font-size: 10px;
	}
	.btn_list li a::after{
		right: 8px;
	}
}
