@charset "UTF-8";

/*----------------------------
共通事項
----------------------------*/

html { background: #fff; }

body {
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

.c-red { color: #F15F55 !important; }

.center { text-align: center; }

#container {
	width: 100%;
	height: auto;
	padding-top: 70px;
}

#container *{ box-sizing: border-box; }

#container .outline {
	width: 90%;
    max-width: 1080px;
	margin: 0 auto;
}

#wrapper {
	width: 100%;
	height: auto;
	margin: 0 auto 80px;
}

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


/*パンクズ*/

#breadcrumb {
	font-size: 0;
    letter-spacing: 0;
	text-align: right;
	padding: 10px 0 0;
}

#breadcrumb li {
	display: inline-block;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: .03em;
	color: #b3b3b3;
	position: relative;
	padding-right: 30px;
}

#breadcrumb li:last-child {
	padding: 0;
}

#breadcrumb li:after {
	content: "／";
	display: block;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	position: absolute;
	top: 0;
	right: 9px;
}

#breadcrumb li:last-child:after {
	content: none;
}

#breadcrumb li a {
	color: inherit;
	display: block;
}

#breadcrumb li a:hover {
	text-decoration: underline;
}


/*ページタイトル*/

#container .labelArea {
	padding-bottom: 5px;
    border-bottom: 1px solid #d6d6d6;
    margin: 15px auto 20px;
}

#container .labelArea .label {
	float: left;
	font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
    color: #444;
	margin: 0;
}

#container .labelArea .label a {
	color: inherit;
	text-decoration: none;
}

#container .labelArea .icon-commentary {
	float: right;
	cursor: pointer;
	position: relative;
}

#container .labelArea .icon-commentary p {
	font-size: 14px;
	line-height: 25px;
	position: relative;
	padding-right: 16px;
	margin: 0;
}

#container .labelArea .icon-commentary p:before,
#container .labelArea .icon-commentary p:after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: #999;
    position: absolute;
    right: 0;
}

#container .labelArea .icon-commentary p:before {
	top: 11px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -webkit-transform-origin: right bottom;
}

#container .labelArea .icon-commentary p:after {
	top: 13px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: right top;
    -ms-transform-origin: right top;
    -webkit-transform-origin: right top;
}

#container .labelArea .icon-commentary .menuicon-list {
	position: absolute;
    width: 260px;
	font-size: 0;
	letter-spacing: 0;
	transform: translate(0,-10px);
	-ms-transform: translate(0,-10px);
	-webkit-transform: translate(0,-10px);
    top: 40px;
    right: -5px;
    background: #fff;
    z-index: 200;
    margin: 0;
    padding: 16px 10px;
    border-radius: 6px;
	box-shadow: 0 3px 12px rgba(0,0,0,.5);
	opacity: 0;
	visibility: hidden;
	transition: .2s ease;
    -webkit-transition: .2s ease;
}

#container .labelArea .icon-commentary .hoverIn {
	transform: translate(0,0);
	-ms-transform: translate(0,0);
	-webkit-transform: translate(0,0);
	opacity: 1;
	visibility: visible;
}

#container .labelArea .icon-commentary .menuicon-list li {
	display: inline-block;
	width: 25%;
	font-size: 12px;
	text-align: center;
	line-height: 1;
	position: relative;
	padding: 32px 4px 0;
}

#container .labelArea .icon-commentary .menuicon-list li:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.menuicon-list li:before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url(/images/common/menu_icons.png) no-repeat;
	background-size: 100px 25px;
}

.menuicon-list li.menuicon-1:before { background-position: 0 0; }
.menuicon-list li.menuicon-2:before { background-position: -25px 0; }
.menuicon-list li.menuicon-3:before { background-position: -50px 0; }
.menuicon-list li.menuicon-4:before { background-position: -75px 0; }


/*ボタンの設置*/

.btn-list {
	padding: 0 0 80px;
}

.btn-list ul {
	width: 90%;
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
	margin: 0 auto;
}

.btn-list ul li {
	display: inline-block;
	vertical-align: middle;
	width: 32%;
	height: auto;
	margin-left: 2%;	
}

.btn-list ul li:first-child {
	margin: 0;
}

.btn-list ul li a {
	display: block;
	font-size: 14px;
	font-weight: bold;
	padding: 12px;
	color: #fff;
	border-radius: 6px;
	overflow: hidden;
	background: #666;
	text-decoration: none;
}


/*SNS*/

#official-sns {
	background: url(/images/top/top-dots-bk.jpg) repeat;
    background-size: 2px 2px;
    padding: 12px 0;
}

#official-sns ul {
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
}

#official-sns ul li {
	display: inline-block;
	vertical-align: top;
	margin-left: 12px;
}

#official-sns ul li:first-child {
	margin-left: 0;
}


/*モーダルshoplist*/

.modal-contents {
	display: none;
	position: fixed;
	width: 80%;
	max-width: 768px;
    border-radius: 6px;
	background: #fff;
    margin: auto;
    z-index: 1002;
}

.modal-contents .modal-close {
	width: 40px;
    height: 40px;
    background: #F15F55;
    position: absolute;
    top: -15px;
    left: -15px;
    border-radius: 50%;
	cursor: pointer;
	animation: 1s mc-bounds-in ease;
	-ms-animation: 1s mc-bounds-in ease;
	-webkit-animation: 1s mc-bounds-in ease;
}

@keyframes mc-bounds-in {
	from { transform: scale(0); -ms-transform: scale(0); -webkit-transform: scale(0);}
	40% { transform: scale(1.2); -ms-transform: scale(1.2); -webkit-transform: scale(1.2);}
	65% { transform: scale(.8); -ms-transform: scale(.8); -webkit-transform: scale(.8);}
	75% { transform: scale(1.1); -ms-transform: scale(1.1); -webkit-transform: scale(1.1);}
	82% { transform: scale(.98); -ms-transform: scale(.98); -webkit-transform: scale(.98);}
	95% { transform: scale(1.05); -ms-transform: scale(1.05); -webkit-transform: scale(1.05);}
	to { transform: scale(1); -ms-transform: scale(1); -webkit-transform: scale(1);}
}

@-ms-keyframes mc-bounds-in {
	from { transform: scale(0); -ms-transform: scale(0); -webkit-transform: scale(0);}
	40% { transform: scale(1.2); -ms-transform: scale(1.2); -webkit-transform: scale(1.2);}
	65% { transform: scale(.8); -ms-transform: scale(.8); -webkit-transform: scale(.8);}
	75% { transform: scale(1.1); -ms-transform: scale(1.1); -webkit-transform: scale(1.1);}
	82% { transform: scale(.98); -ms-transform: scale(.98); -webkit-transform: scale(.98);}
	95% { transform: scale(1.05); -ms-transform: scale(1.05); -webkit-transform: scale(1.05);}
	to { transform: scale(1); -ms-transform: scale(1); -webkit-transform: scale(1);}
}

@-webkit-keyframes mc-bounds-in {
	from { transform: scale(0); -ms-transform: scale(0); -webkit-transform: scale(0);}
	40% { transform: scale(1.2); -ms-transform: scale(1.2); -webkit-transform: scale(1.2);}
	65% { transform: scale(.8); -ms-transform: scale(.8); -webkit-transform: scale(.8);}
	75% { transform: scale(1.1); -ms-transform: scale(1.1); -webkit-transform: scale(1.1);}
	82% { transform: scale(.98); -ms-transform: scale(.98); -webkit-transform: scale(.98);}
	95% { transform: scale(1.05); -ms-transform: scale(1.05); -webkit-transform: scale(1.05);}
	to { transform: scale(1); -ms-transform: scale(1); -webkit-transform: scale(1);}
}

.modal-contents .modal-close:before,
.modal-contents .modal-close:after {
	content: "";
	display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.modal-contents .modal-close:before {
	transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.modal-contents .modal-close:after {
	transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.modalOverlay {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .75;
    background: #000;
    z-index: 1001;
    cursor: pointer;
}

.modal-inner {
	width: 100%;
	height: auto;
	padding: 10px;
}

.modal-inner * {
	box-sizing: border-box;
}

.modal-inner .modal-wrap {
	width: 100%;
	max-height: 75vh;
	padding: 32px;
	overflow: hidden;
	position: relative;
}

.modal-inner .modal-wrap .mw-title {
	font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
	text-align: left;
    color: #444;
    padding-bottom: 5px;
    border-bottom: 1px solid #d6d6d6;
    margin: 0 auto 20px;
}

.modal-inner .modal-wrap .mw-attention {
	font-size: 12px;
	line-height: 1.4;
	text-align: left;
	margin: -10px auto 18px;
}

.modal-inner .modal-wrap dl + .mw-attention {
	text-align: left;
    padding: 20px 0 6px;
    border-bottom: 1px solid #d6d6d6;
}

.modal-inner .modal-wrap dl {
	display: table;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto 16px;
}

.modal-inner .modal-wrap dl:nth-last-of-type(1) {
	margin: 0;
}

.modal-inner .modal-wrap dl dt {
	display: table-cell;
	vertical-align: top;
	width: 10%;
    min-width: 80px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
	text-align: left;
	color: #444;
}

.modal-inner .modal-wrap dl dd {
	display: table-cell;
	vertical-align: top;
	font-size: 14px;
	line-height: 1.6;
	text-align: left;
	color: #666;
}

.modal-inner ul {
	margin: 0;
}

.modal-inner ul li {
	font-size: 14px;
    padding-left: 14px;
	line-height: 1.6;
	position: relative;
	margin-top: 5px;
}

.modal-inner ul li:first-child {
	margin: 0;
}

.modal-inner ul li:before {
	content: "※";
    font-size: inherit;
    line-height: inherit;
    text-align: left;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
}

.ps-container {
  -ms-touch-action: none;
  touch-action: none;
  overflow: hidden !important;
  -ms-overflow-style: none;
}
@supports (-ms-overflow-style: none) {
  .ps-container {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps-container {
    overflow: auto !important;
  }
}

.modal-inner .ps-scrollbar-x-rail {
	display: none;
}

.modal-inner .ps-scrollbar-y-rail {
	display: block;
	position: absolute;
	background: #fff;
	right: 0;
	width: 8px;
}

.modal-inner .ps-scrollbar-y {
	position: absolute;
	background: #d6d6d6;
	right: 0;
	width: 8px; 
	border-radius: 4px;
}

.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    transition: height .2s linear;
	-ms-transition: height .2s linear;
	-webkit-transition: height .2s linear;
}

/*モーダルリンクボタン*/

.storelist-modal-btn {
	width: 60%;
	max-width: 312px;
	margin: 15px auto 5px;
}

.storelist-modal-btn a {
	display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 12px;
    color: #666;
	text-align: center;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
	border: 1px solid #d6d6d6;
    text-decoration: none;
	cursor: pointer;
}

/*キャンペーン終了*/

#notsale {
	width: 100%;
    text-align: center;
    background: #F15F55;
	margin: 0 auto 20px;
}

#notsale a {
	display: block;
	width: 100%;
	height: auto;
    font-size: 18px;
	line-height: 1.4;
    color: #fff;
    font-weight: bold;
	padding: 25px 15px;
}

#notsale a span {
	display: block;
	font-size: 12px;
	padding: 5px 0;
}

/*-------------------------------------------
以下、hoverの管理
-------------------------------------------*/

@media screen and (min-width:769px) {

/*ページタイトル*/
	
#container .labelArea .label a {
	transition: .2s ease;
    -webkit-transition: .2s ease;
}

#container .labelArea .label a:hover {
	opacity: .6;
}
	
#container .labelArea .icon-commentary p {
	transition: .2s ease;
    -webkit-transition: .2s ease;
}

#container .labelArea .icon-commentary p:hover {
	opacity: .6;
}
	
/*ボタンの設置*/

.btn-list ul li a {
	transition: .2s ease;
    -webkit-transition: .2s ease;
}

.btn-list ul li a:hover {
	background: #F15F55;
}

/*モーダルshoplist*/

.modal-contents .modal-close:before,
.modal-contents .modal-close:after {
	transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-contents .modal-close:hover:before {
	transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.modal-contents .modal-close:hover:after {
	transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/*モーダルリンクボタン*/

.storelist-modal-btn a {
	transition: .2s ease;
    -webkit-transition: .2s ease;
}

.storelist-modal-btn a:hover {
	color: #fff;
    background: #F15F55;
	border-color: #F15F55;
}
	
}


/*-------------------------------------------
以下、Tab
-------------------------------------------*/

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

/*----------------------------
共通事項
----------------------------*/

#wrapper {
	margin: 0 auto 60px;
}

#container .outline {
	width: calc(100% - 68px);
	width: -webkit-calc(100% - 68px);
}
	
/*ページタイトル*/

#container .labelArea .label {
	font-size: 16px;
	padding-right: 1.5rem;
}

#container .labelArea .icon-commentary p {
	font-size: 12px;
	line-height: 22px;
}

#container .labelArea .icon-commentary p:before {
	width: 8px;
    top: 9px;
}

#container .labelArea .icon-commentary p:after {
	width: 8px;
    top: 11px;
}
	
/*ボタンの設置*/

.btn-list {
	padding: 0 0 60px;
}

.btn-list ul {
    width: 100%;
}

.btn-list ul li a {
	font-size: 12px;
}


/*モーダルshoplist*/

.modal-inner .modal-wrap .mw-title {
	font-size: 16px;
}

.modal-inner .modal-wrap dl dt,
.modal-inner .modal-wrap dl dd,
.modal-inner ul li {
	font-size: 12px;
}

/*モーダルリンクボタン*/

.storelist-modal-btn {
	width: 70%;
}

.storelist-modal-btn a {
	font-size: 12px;
}
	
}


/*-------------------------------------------
以下、SP
-------------------------------------------*/

@media only screen and (max-width: 480px){
	
/*----------------------------
共通事項
----------------------------*/

#container {
	padding-top: 54px;
}

#container .outline {
	width: calc(100% - 30px);
	width: -webkit-calc(100% - 30px);
}

#wrapper {
	margin: 0 auto 60px;
}

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

/*パンクズ*/

#breadcrumb li {
    font-size: 10px;
    padding-right: 20px;
}

#breadcrumb li:after {
    font-size: 10px;
    right: 5px;
    opacity: .6;
}


/*ページタイトル*/

#container .labelArea {
	padding-bottom: 3px;
    border-bottom: 1px solid #d6d6d6;
    margin: 10px auto 15px;
}

#container .labelArea .icon-commentary p {
	padding-right: 14px;
}


/*ボタンの設置*/

.btn-list {
	padding: 0 0 60px;
}

.btn-list ul {
	width: 240px;
	margin: 0 auto;
}

.btn-list ul li {
	display: block;
	width: 100%;
	margin: 8px auto 0;
}

.btn-list ul li a {
	background: #F15F55;
}


/*モーダルshoplist*/

.modal-inner .modal-wrap {
	padding: 16px;
}

.modal-inner .modal-wrap .mw-title {
	margin: 0 auto 15px;
}

.modal-inner .modal-wrap .mw-attention {
	font-size: 10px;
    margin: -5px auto 12px;
}

.modal-inner .modal-wrap dl {
	margin: 0 auto 8px;
}

.modal-inner .modal-wrap dl dt {
	min-width: 64px;
}

.modal-inner ul li {
	padding-left: 12px;
	margin-top: 10px;
}

.modal-inner .ps-scrollbar-y-rail {
	width: 6px;
}

.modal-inner .ps-scrollbar-y {
	width: 6px;
	border-radius: 3px;
}

/*モーダルリンクボタン*/

.storelist-modal-btn {
	width: 240px;
}

}