@charset "utf-8";
.fadein {
    opacity : 0;
    transform : translate(0, 100px);
    transition : all 1s;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
@media (min-width: 1025px) {
a {
	color: #333;
	text-decoration: none;
	outline: none;
	transition: all 0.5s ease 0s;
}
a:hover {
	color: #333;
	text-decoration: underline;
}
/*==================================
メインコンテンツ
==================================*/
#maincontents .inner {
	width: 1020px;
	margin: 0 auto;
}
#contents {
	padding-top: 70px;
}
/*==================================
ヘッダー
==================================*/
header {
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, .9) none repeat scroll 0 0;
	z-index: 10000;
	height: 70px;
	margin-bottom: 3px;
	width: 100%;
	position: fixed;
}
header .inner {
	width: 1020px;
	margin: 0 auto;
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
header .inner h1 {
	width: 128px;
	height: 40px;
	margin: 0;
	background-image: url(../images/sitelogo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
 -webkit- transform: translateY(-50%) translateX(-50%);
}
header .inner h1 a {
	display: block;
	height: 40px;
}
header .favorite_btn, header .en_btn {
	position: absolute;
	top: 18px;
	width: 130px;
	line-height: 35px;
	font-weight: bold;
	background-color: #333;
}
header .favorite_btn {
	right: 260px;
}
header .en_btn {
	right: 120px;
}
header .favorite_btn a, header .en_btn a {
	display: block;
	color: #fff;
	text-align: center;
	transition: all 0.5s ease 0s;
}
header .favorite_btn a:hover, header .en_btn a:hover {
	background-color: #dd0220;
	text-decoration: none;
}
header .sns_link {
	position: absolute;
	top: 20px;
	right: 0;
}
header .sns_link li {
	display: inline-block;
	width: 30px;
	text-align: left;
}
header .sns_link li img {
	width: 30px;
}
header .en_link, header .favarite_link {
	display: none;
}
/*==================================
メニュー
==================================*/
.menu {
	width: 70px;
	background-color: #0d223f;
	padding: 20px 20px 18px 20px;
}
.menu_inner {
	width: 100%;
}
.menu-trigger, .menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	z-index: 2;
}
.menu-trigger {
	position: relative;
	width: 30px;
	height: 26px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 12px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-315deg);
	transform: translateY(12px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(315deg);
	transform: translateY(-12px) rotate(315deg);
}
/*==================================
グローバルメニュー
==================================*/
#gmenu {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: all 0.5s ease 0s;
	visibility: hidden;
	background: rgba(0, 0, 0, .9) none repeat scroll 0 0;
}
#gmenu .inner {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari用 */
	transform: translateY(-50%);
}
#gmenu ul.sitemap_col {
	display: inline-block;
	width: 22%;
	margin-right: 3.5%;
	vertical-align: top;
}
#gmenu ul.sitemap_col:last-child {
	margin-right: 0;
}
#gmenu ul.sitemap_col li {
	color: #fff;
}
#gmenu li a {
	display: block;
	color: #fff;
	transition: all 0.5s ease 0s;
}
#gmenu li a:hover {
	color: #e50020;
	text-decoration: none;
}
#gmenu li dl {
	margin: 0 0 15px;
	padding: 0 0 10px;
	border-bottom: solid 1px #797979;
}
#gmenu li dl dt {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	margin: 0 0 10px;
}
#gmenu li dl dt, #gmenu li dl dd {
	font-weight: bold;
}
#gmenu dl dd a {
	position: relative;
	padding: 2px 0 2px 24px;
	line-height: 40px;
}
#gmenu dl dd a:before {
	content: "";
	display: block;
	position: absolute;
	top: 1.85em;
	left: 0.3em;
	width: 12px;
	height: 2px;
	background: #f0f0ee;
}
.open #gmenu {
	opacity: 1;
	transition: 0.7s;
	visibility: visible;
}
/*==================================
フッター
==================================*/
#footer {
	width: 100%;
	margin: 70px 0 0;
    border-top: solid 2px #dcdddd;
}
#footer .footcate {
	text-align: left;
	font-size: 0;
	margin-top: 40px;
}
#footer .footcate dl.about_link, #footer .footcate dl.sns_link {
	display: inline-block;
	vertical-align: top;
	margin-right: 40px;
}
#footer .footcate dl.about_link {
	width: 550px;
}
#footer .footcate dl.sns_link {
	width: 210px;
	text-align: center;
}
#footer .footcate dl.about_link dt, #footer .footcate dl.sns_link dt {
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 1.3;
	font-weight: bold;
	padding: 0 0 0 20px;
	text-align: left;
}
#footer .footcate dl.about_link dd ul, #footer .footcate dl.sns_link dd ul {
	border-top: dotted 1px #333;
	border-bottom: dotted 1px #333;
	margin: 5px 0 40px;
}
#footer .footcate dl.about_link dd ul {
	padding: 20px;
}
#footer .footcate dl.sns_link dd ul {
	padding: 20px 0 0;
}
#footer .footcate dl.about_link dd ul li {
	display: inline-block;
	width: 33%;
	font-size: 13px;
	font-size: 1.3rem;
	vertical-align: top;
}
#footer .footcate dl.sns_link dd ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}
#footer .footcate dl.sns_link dd ul li img {
	width: 40px;
}
#footer .footcate dl.sns_link dd ul li:last-child {
	margin-right: 0;
}
#footer .copyrightcate {
	background-color: #0d223f;
	font-size: 11px;
	font-size: 1.1rem;
	color: #fff;
	text-align: center;
}
/*==================================
マイ店舗リスト
==================================*/
#favorite_shop {
	background: #fff;
	padding: 30px;
	text-align: left;
	max-width: 500px;
	margin: 40px auto;
	position: relative;
}
#favorite_shop .shoplist li {
	border-bottom: solid 1px #dcdddd;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#favorite_shop .shoplist li:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
#favorite_shop .name {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1;
	font-weight: bold;
}
#favorite_shop .name img {
	width: 35px;
	vertical-align: middle;
	margin-right: 10px;
}
#favorite_shop .service {
	margin: 15px 0 0 0;
}
#favorite_shop .service div {
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
}
#favorite_shop .service div::after{
	display: inline-block;
	content: "｜";
	padding: 0 15px;
}
#favorite_shop .service div:last-child::after{
	display: none;
}
#favorite_shop .service div a:hover {
	text-decoration: underline;
}
/*==================================
共通
==================================*/
.cate_ttl {
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
}
.cate_ttl span {
	font-size: 50px;
	font-size: 5.0rem;
	line-height: 1.1;
	font-weight: bold;
	display: block;
}
}
@media (min-width: 601px) and (max-width: 1024px) {
body {
	-webkit-text-size-adjust: 100%;
	position: relative;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: #333;
	text-decoration: none;
	outline: none;
}
.switch {
	visibility: hidden;
}
/*==================================
メインコンテンツ
==================================*/
#maincontents .inner {
	width: 94%;
	margin: 0 auto;
}
#contents {
	padding-top: 64px;
}
/*==================================
ヘッダー
==================================*/
header {
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
	height: 64px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
}
header .inner {
	width: 100% !important;
	margin: 0 auto;
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
header .inner h1 {
	width: 113px;
	height: 35px;
	margin: 0;
	background-image: url(../images/sitelogo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
 -webkit- transform: translateY(-50%) translateX(-50%);
}
header .inner h1 a {
	display: block;
	height: 35px;
}
header .favorite_btn, header .en_btn, header .sns_link {
	display: none;
}
header .favarite_link {
	position: absolute;
	top: 12px;
	right: 10px;
}
header .favarite_link img {
	width: 40px;
}
header .en_link {
	position: absolute;
	top: 12px;
	right: 60px;
    line-height: 33px;
    font-weight: bold;
    border:  solid 3px #333;
}
header .en_link a {
    display: block;
    padding:  0 7px;
}
/*==================================
メニュー
==================================*/
.menu {
	width: 70px;
	background-color: #0d223f;
	padding: 16px 20px;
}
.menu_inner {
	width: 100%;
}
.menu-trigger, .menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	z-index: 2;
}
.menu-trigger {
	position: relative;
	width: 30px;
	height: 26px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 12px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-315deg);
	transform: translateY(12px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(315deg);
	transform: translateY(-12px) rotate(315deg);
}
/*==================================
グローバルメニュー
==================================*/
#gmenu {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: all 0.5s ease 0s;
	padding-top: 50px;
	visibility: hidden;
	background: rgba(0, 0, 0, .9) none repeat scroll 0 0;
}
#gmenu .inner {
	padding: 0 20%;
}
#gmenu ul.sitemap_col li {
	color: #fff;
}
#gmenu li a {
	display: block;
	color: #fff;
	transition: all 0.5s ease 0s;
}
#gmenu li a:hover {
	color: #e50020;
	text-decoration: none;
}
#gmenu li dl {
	margin: 0 0 30px;
	padding: 0 0 10px;
	border-bottom: solid 1px #797979;
}
#gmenu li dl dt {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	margin: 0 0 20px;
}
#gmenu li dl dt, #gmenu li dl dd {
	font-weight: bold;
}
#gmenu dl dd a {
	position: relative;
	padding: 2px 0 2px 24px;
	line-height: 40px;
}
#gmenu dl dd a:before {
	content: "";
	display: block;
	position: absolute;
	top: 1.85em;
	left: 0.3em;
	width: 12px;
	height: 2px;
	background: #f0f0ee;
}
.open #gmenu {
	opacity: 1;
	transition: 0.7s;
	visibility: visible;
}
/*==================================
フッター
==================================*/
#footer {
	width: 100%;
	margin: 50px 0 0;
    border-top: solid 2px #dcdddd;
}
#footer .footcate {
	text-align: left;
	font-size: 0;
	margin-top: 40px;
}
#footer .footcate dl.sns_link {
	text-align: center;
}
#footer .footcate dl.about_link dt, #footer .footcate dl.sns_link dt {
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 1.3;
	font-weight: bold;
	padding: 0 0 0 20px;
	text-align: left;
}
#footer .footcate dl.about_link dd ul, #footer .footcate dl.sns_link dd ul {
	border-top: dotted 1px #333;
	border-bottom: dotted 1px #333;
	margin: 5px 0 40px;
}
#footer .footcate dl.about_link dd ul {
	padding: 10px 20px 20px;
}
#footer .footcate dl.sns_link dd ul {
	padding: 20px 0;
}
#footer .footcate dl.about_link dd ul li {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 10px 0 0;
}
#footer .footcate dl.sns_link dd ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}
#footer .footcate dl.sns_link dd ul li img {
	width: 80%;
}
#footer .footcate dl.sns_link dd ul li:last-child {
	margin-right: 0;
}
#footer .copyrightcate {
	background-color: #0d223f;
	font-size: 11px;
	font-size: 1.1rem;
	color: #fff;
	text-align: center;
}
/*==================================
マイ店舗リスト
==================================*/
#favorite_shop {
	background: #fff;
	padding: 30px;
	text-align: left;
	max-width: 500px;
	margin: 40px auto;
	position: relative;
}
#favorite_shop .shoplist li {
	border-bottom: solid 1px #dcdddd;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#favorite_shop .shoplist li:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
#favorite_shop .name {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1;
	font-weight: bold;
}
#favorite_shop .name img {
	width: 35px;
	vertical-align: middle;
	margin-right: 10px;
}
#favorite_shop .service {
	margin: 15px 0 0 0;
}
#favorite_shop .service div {
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
}
#favorite_shop .service div::after{
	display: inline-block;
	content: "｜";
	padding: 0 15px;
}
#favorite_shop .service div:last-child::after{
	display: none;
}
#favorite_shop .service div a:hover {
	text-decoration: underline;
}
/*==================================
共通
==================================*/
.cate_ttl {
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	margin-bottom: 15px;
}
.cate_ttl span {
	font-size: 40px;
	font-size: 4.0rem;
	line-height: 1.1;
	font-weight: bold;
	display: block;
}
}
@media (max-width: 600px) {
body {
	-webkit-text-size-adjust: 100%;
	position: relative;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: #333;
	text-decoration: none;
	outline: none;
}
.switch {
	visibility: hidden;
}
/*==================================
メインコンテンツ
==================================*/
#maincontents .inner {
	width: 94%;
	margin: 0 auto;
}
#contents {
	padding-top: 64px;
}
/*==================================
ヘッダー
==================================*/
header {
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
	height: 64px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
}
header .inner {
	width: 100% !important;
	margin: 0 auto;
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
header .inner h1 {
	width: 113px;
	height: 35px;
	margin: 0;
	background-image: url(../images/sitelogo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
 -webkit- transform: translateY(-50%) translateX(-50%);
}
header .inner h1 a {
	display: block;
	height: 35px;
}
header .favorite_btn, header .en_btn, header .sns_link {
	display: none;
}
header .favarite_link {
	position: absolute;
	top: 12px;
	right: 10px;
}
header .favarite_link img {
	width: 40px;
}
header .en_link {
	position: absolute;
	top: 12px;
	right: 60px;
    line-height: 33px;
    font-weight: bold;
    border:  solid 3px #333;
}
header .en_link a {
    display: block;
    padding:  0 7px;
}
/*==================================
メニュー
==================================*/
.menu {
	width: 70px;
	background-color: #0d223f;
	padding: 16px 20px;
}
.menu_inner {
	width: 100%;
}
.menu-trigger, .menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	z-index: 2;
}
.menu-trigger {
	position: relative;
	width: 30px;
	height: 26px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 12px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(12px) rotate(-315deg);
	transform: translateY(12px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(315deg);
	transform: translateY(-12px) rotate(315deg);
}
/*==================================
グローバルメニュー
==================================*/
#gmenu {
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: all 0.5s ease 0s;
	padding-top: 50px;
	visibility: hidden;
	background: rgba(0, 0, 0, .9) none repeat scroll 0 0;
}
#gmenu .inner {
	padding: 0 20%;
}
#gmenu ul.sitemap_col li {
	color: #fff;
}
#gmenu li a {
	display: block;
	color: #fff;
	transition: all 0.5s ease 0s;
}
#gmenu li a:hover {
	color: #e50020;
	text-decoration: none;
}
#gmenu li dl {
	margin: 0 0 25px;
	padding: 0 0 10px;
	border-bottom: solid 1px #797979;
}
#gmenu li dl dt {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	margin: 0 0 20px;
}
#gmenu li dl dt, #gmenu li dl dd {
	font-weight: bold;
}
#gmenu dl dd a {
	position: relative;
	padding: 2px 0 2px 24px;
	line-height: 40px;
}
#gmenu dl dd a:before {
	content: "";
	display: block;
	position: absolute;
	top: 1.85em;
	left: 0.3em;
	width: 12px;
	height: 2px;
	background: #f0f0ee;
}
.open #gmenu {
	opacity: 1;
	transition: 0.7s;
	visibility: visible;
}
/*==================================
フッター
==================================*/
#footer {
	width: 100%;
	margin: 50px 0 0;
    border-top: solid 2px #dcdddd;    
}
#footer .footcate {
	text-align: left;
	font-size: 0;
	margin-top: 40px;
}
#footer .footcate dl.sns_link {
	text-align: center;
}
#footer .footcate dl.about_link dt, #footer .footcate dl.sns_link dt {
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 1.3;
	font-weight: bold;
	padding: 0 0 0 20px;
	text-align: left;
}
#footer .footcate dl.about_link dd ul, #footer .footcate dl.sns_link dd ul {
	border-top: dotted 1px #333;
	border-bottom: dotted 1px #333;
	margin: 5px 0 40px;
}
#footer .footcate dl.about_link dd ul {
	padding: 10px 20px 20px;
}
#footer .footcate dl.sns_link dd ul {
	padding: 20px 0;
}
#footer .footcate dl.about_link dd ul li {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 10px 0 0;
}
#footer .footcate dl.sns_link dd ul li {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}
#footer .footcate dl.sns_link dd ul li img {
	width: 80%;
}
#footer .footcate dl.sns_link dd ul li:last-child {
	margin-right: 0;
}
#footer .copyrightcate {
	background-color: #0d223f;
	font-size: 11px;
	font-size: 1.1rem;
	color: #fff;
	text-align: center;
}
/*==================================
マイ店舗リスト
==================================*/
#favorite_shop {
	background: #fff;
	padding: 7%;
	text-align: left;
	max-width: 500px;
	margin: 40px auto;
	position: relative;
}
#favorite_shop .shoplist li {
	border-bottom: solid 1px #dcdddd;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#favorite_shop .shoplist li:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
#favorite_shop .name {
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1;
	font-weight: bold;
	padding-left: 10px;
}
#favorite_shop .name img {
	width: 35px;
	vertical-align: middle;
	margin-right: 10px;
}
#favorite_shop .service {
	margin: 15px 0 0 0;
}
#favorite_shop .service div {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 3;
}
/*==================================
共通
==================================*/
.cate_ttl {
	font-size: 10px;
	font-size: 1.0rem;
	text-align: center;
	color: #fff;
	margin-bottom: 15px;
}
.cate_ttl span {
	font-size: 30px;
	font-size: 3.0rem;
	line-height: 1.1;
	font-weight: bold;
	display: block;
}
}
/*==================================
共通
==================================*/
.switch {
	visibility: hidden;
}
.note {
	font-size: 12px;
	font-size: 1.2rem;
}
#maincontents {
	width: 100%;
	margin: 0 auto;
}
/* ページトップ */
/*#totop {
	line-height: 60px;
	text-align: center;
	border-bottom: solid 1px #dcdddd;
}
#totop a {
	background-color: #f6f8f6;
	display: block;
	transition: all 0.5s ease 0s;
}*/
#totop {
    position: fixed;
    bottom: -50px;
    right: 0;
}
#totop a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #0d223f;
    text-align: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    line-height: 50px;
}
#totop a:hover {
	background-color: #0d223f;
}
#totop .arrow {
	position: relative;
	display: inline-block;
	padding-left: 10px;
}
#totop .arrow::before {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -9px;
}
#totop:hover .arrow::before {
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	margin-top: -15px;
	transition: all 0.5s ease 0s;
}
#footer .copyrightcate {
    line-height: 50px;
}
/* パンくず */
.crumb_list {
	margin-top: 20px;
	font-size: 12px;
	font-size: 1.2rem;
}
.crumb_item {
	display: inline;
	padding: 0 10px;
	border-right: solid 1px #999;
	color: #999;
}
.crumb_item:first-child {
	padding-left: 0;
}
.crumb_item:last-child {
	padding-right: 0;
	border-right: none;
	color: #e50020;
}
.crumb_item a[href] {
	color: #999;
}
/* アイコン */
span.icon_hub {
	width: 45px;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	margin-right: 10px;
	padding: 0 5px;
	font-family: 'Libre Baskerville', serif;
	border-radius: 4px;
	background-color: #e50020;
}
span.icon_82 {
	width: 45px;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	margin-right: 10px;
	padding: 0 10px;
	font-family: 'Libre Baskerville', serif;
	border-radius: 4px;
	background-color: #00388a;
}
span.icon_all {
	width: 45px;
	display: inline-block;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
	margin-right: 10px;
	padding: 0 10px;
	font-family: 'Libre Baskerville', serif;
	border-radius: 4px;
	background-color: #0e5207;
}
/* 画像ホバーアクション */
figure.zoom img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .6s ease-in-out;
	transition: .6s ease-in-out;
}
/* 矢印 */
.arrow_r, .arrow_r_white {
	position: relative;
	display: inline-block;
	padding-left: 20px;
}
.arrow_r::before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 0;
	margin: -10px 0 0 10px;
}
.arrow_r_white::before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 0;
	margin: -10px 0 0 10px;
}
.detail_btn:hover .arrow_r::before, .detail_btn:hover .arrow_r_white::before, #favorite_shop .service a:hover .arrow_r::before {
	margin-left: 20px;
	transition: all 0.7s ease 0s;
}
.arrow_l {
	position: relative;
	display: inline-block;
	padding-right: 20px;
}
.arrow_l::before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: solid 2px #0d223f;
	border-right: solid 2px #0d223f;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 0;
	margin: -10px 0 0 0;
}
/* SNSシェア */
ul.sns_share {
	text-align: right;
	font-size: 0;
}
ul.sns_share li {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}
ul.sns_share li:last-child {
	margin-right: 0;
}
/* アンカー */
#shop_topics, #shop_events {
	margin-top: -80px;
	padding-top: 80px;
}