@charset "UTF-8";
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  background: #fff;
  color: #4a4a4a;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.img-full {
  width: 100%;
}

a {
  color: #4a4a4a;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: .7;
}

.txt-en {
  font-family: "Raleway", sans-serif;
}

.js-fade {
  opacity: 0;
}

.js-fade.active {
  -webkit-animation: fadePage 1s ease 0s forwards;
  animation: fadePage 1s ease 0s forwards;
}

@-webkit-keyframes fadePage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadePage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.js-fade.fadeup.active {
  -webkit-animation: fadeup 2s ease 0s forwards;
  animation: fadeup 2s ease 0s forwards;
}

@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.wrapper {
  position: relative;
  min-width: 1140px;
}

/*------------------------------------------
  header
------------------------------------------*/
.cmn-header {
  min-width: 1120px;
  padding: 45px 0 30px;
  border-bottom: 1px solid #f1f1f1;
  opacity: 0;
  -webkit-animation: fadePage 1s ease 0.3s forwards;
  animation: fadePage 1s ease 0.3s forwards;
}

.cmn-header .header-inner {
  width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmn-header .store-info,
.cmn-header .parking-info .parking-inner,
.cmn-header .parking-info .status-list,
.cmn-header .sns-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmn-header .store-info .info-text {
  margin-left: 10px;
  color: #b7b7b7;
  font-size: 12px;
  font-size: 1.2rem;
}

.cmn-header .parking-info {
  margin-left: 30px;
  width: 395px;
  height: 45px;
}

.cmn-header .parking-info iframe {
  width: 395px;
  height: 45px;
}

.cmn-header .sns-info li {
  margin-left: 12px;
}

/*------------------------------------------
  gnav
------------------------------------------*/
.cmn-gnav {
  text-align: center;
  border-top: 3px solid #f1f1f1;
  opacity: 0;
  -webkit-animation: fadePage 1s ease 0.3s forwards;
  animation: fadePage 1s ease 0.3s forwards;
}

.cmn-gnav .cmn-nav-contents {
  position: relative;
}

.cmn-gnav .logo {
  display: none;
}

.cmn-gnav .gnav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}

.cmn-gnav .gnav-list li {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}

.cmn-gnav .gnav-list li .txt-en {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.cmn-gnav .gnav-list li .txt-ja {
  letter-spacing: .15em;
}

.cmn-gnav .gnav-list li a {
  display: block;
  padding: 38px 0 37px;
  position: relative;
}

.cmn-gnav .gnav-list li a:after {
  position: absolute;
  top: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #c0d700;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.cmn-gnav .gnav-list li a:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.cmn-gnav .gnav-list li a:hover {
  color: #8a9a00;
}

.gnav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 53px;
  z-index: 1000;
  padding: 0;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  background: white;
  -webkit-box-shadow: 0 3px 6px -4px #999;
  box-shadow: 0 3px 6px -4px #999;
}

.gnav-fixed .nav-in {
  position: relative;
  height: 53px;
  width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gnav-fixed .logo {
  display: block;
  width: 160px;
  text-align: center;
}

.gnav-fixed .logo a {
  height: 53px;
  vertical-align: middle;
}

.gnav-fixed .logo a:hover {
  opacity: 0.7;
}

.gnav-fixed .gnav-list {
  width: 910px;
}

.gnav-fixed .gnav-list li .txt-en {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.gnav-fixed .gnav-list li a {
  padding: 5px 0;
}

.gnav-fixed .gnav-list li a:after {
  top: -6px;
}

/*------------------------------------------
  Contents
------------------------------------------*/
.cmn-contents-wrapper {
  background: #f4f4f4;
}

.cmn-page-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  opacity: 0;
  -webkit-animation: fadePage 1s ease 0.3s forwards;
  animation: fadePage 1s ease 0.3s forwards;
}

.cmn-page-title .cmn-title {
  text-align: center;
  color: #fff;
}

.cmn-page-title .cmn-title .ttl-en {
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: .11em;
}

.cmn-page-title .cmn-title .ttl-ja {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .2em;
}

.cmn-page-content {
  padding: 70px 0;
}

.cmn-special-bnr {
  text-align: center;
  /*background: #eaeaea;*/
  width: 1120px;
  margin: -20px auto 80px;
}

.cmn-special-bnr a img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cmn-special-bnr a:hover img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: .7;
}

.cmn-block {
  padding: 70px 0;
}

.cmn-headline-title {
  text-align: center;
  margin-bottom: 40px;
}

.cmn-headline-title .ttl-ja {
  font-size: 11px;
  font-size: 1.1rem;
}

.cmn-headline-title .ttl-en {
  display: inline-block;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: .1em;
  padding-bottom: 3px;
  border-bottom: 2px solid;
}

.cmn-contents {
  width: 1120px;
  margin: 0 auto;
}

/*  Item list 01
-------------------------*/
.cmn-listtype01 {
  width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmn-listtype01 .list-item {
  position: relative;
  margin-right: 24px;
  margin-bottom: 40px;
  width: 262px;
}

.cmn-listtype01 .list-item:nth-child(4n) {
  margin-right: 0;
}

.cmn-listtype01 .list-item a {
  position: relative;
  display: block;
  height: 100%;
  background: #fff;
}

.cmn-listtype01 .list-item a:hover .photo img {
  opacity: 1;
}

.cmn-listtype01 .icon-new:before {
  position: absolute;
  z-index: 2;
  content: '';
  width: 53px;
  height: 53px;
  top: -18px;
  left: -21px;
  background: url(/assets/images/common/icon_new.svg) no-repeat;
  background-size: 53px;
}

.cmn-listtype01 .photo-box {
  position: relative;
  width: 262px;
  height: 182px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cmn-listtype01 .photo-bg {
  position: relative;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cmn-listtype01 .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cmn-listtype01 .photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn-listtype01 .more {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.5);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  text-align: center;
}

.cmn-listtype01 .more span {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 203px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .21em;
}

.cmn-listtype01 .info-box {
  background: #fff;
  padding: 26px 25px;
  word-break: break-all;
}

.cmn-listtype01 .ttl {
  font-weight: bold;
  line-height: 1.857142857;
  letter-spacing: .07em;
}

.cmn-listtype01 .date,
.cmn-listtype01 .time {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .07em;
  color: #a0a0a0;
  margin-top: 5px;
}

.cmn-listtype01 .date {
  margin-top: 10px;
}

.cmn-listtype01 .list-item a:hover {
  opacity: 1;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}

.cmn-listtype01 .list-item a:hover .photo img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn-listtype01 .list-item a:hover .more {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

/*  Item list 02
-------------------------*/
.cmn-listtype02 {
  width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmn-listtype02 .list-item {
  position: relative;
  margin-right: 24px;
  margin-bottom: 40px;
  width: 262px;
}

.cmn-listtype02 .list-item:nth-child(4n) {
  margin-right: 0;
}

.cmn-listtype02 .list-item a {
  position: relative;
  display: block;
  height: 100%;
}

.cmn-listtype02 .icon-new:before {
  position: absolute;
  z-index: 2;
  content: '';
  width: 53px;
  height: 53px;
  top: -10px;
  left: -12px;
  background: url(/assets/images/common/icon_new.svg) no-repeat;
  background-size: 53px;
}

.cmn-listtype02 .photo-box {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: relative;
  width: 262px;
  height: 262px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cmn-listtype02 .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cmn-listtype02 .photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn-listtype02 .more {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.5);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  text-align: center;
}

.cmn-listtype02 .more span {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 203px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .21em;
}

.cmn-listtype02 .info-box {
  background: #fff;
  padding: 15px 0 0;
}

.cmn-listtype02 .ttl {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.857142857;
  letter-spacing: .07em;
}

.cmn-listtype02 .name,
.cmn-listtype02 .date {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .07em;
  color: #a0a0a0;
  margin-top: 5px;
}

.cmn-listtype02 .date {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
}

.cmn-listtype02 .list-item a:hover {
  opacity: 1;
}

.cmn-listtype02 .list-item a:hover .photo-box {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}

.cmn-listtype02 .list-item a:hover .photo img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn-listtype02 .list-item a:hover .more {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn-listtype01 .js-fade.fadeup.active:nth-child(4n+1),
.cmn-listtype02 .js-fade.fadeup.active:nth-child(4n+1) {
  -webkit-animation: fadeup 1.5s ease 0s forwards;
  animation: fadeup 1.5s ease 0s forwards;
}

.cmn-listtype01 .js-fade.fadeup.active:nth-child(4n+2),
.cmn-listtype02 .js-fade.fadeup.active:nth-child(4n+2) {
  -webkit-animation: fadeup 1.5s ease .4s forwards;
  animation: fadeup 1.5s ease .4s forwards;
}

.cmn-listtype01 .js-fade.fadeup.active:nth-child(4n+3),
.cmn-listtype02 .js-fade.fadeup.active:nth-child(4n+3) {
  -webkit-animation: fadeup 1.5s ease .8s forwards;
  animation: fadeup 1.5s ease .8s forwards;
}

.cmn-listtype01 .js-fade.fadeup.active:nth-child(4n+4),
.cmn-listtype02 .js-fade.fadeup.active:nth-child(4n+4) {
  -webkit-animation: fadeup 1.5s ease 1.2s forwards;
  animation: fadeup 1.5s ease 1.2s forwards;
}

/*  コンテンツがないときのコメント
-------------------------*/
.no-contents {
  text-align: center;
  padding: 50px 0;
}

/*  Button
-------------------------*/
.cmn-btn .inner {
  position: relative;
  z-index: 1;
  margin: 50px auto 0;
  text-align: center;
  width: 260px;
  height: 42px;
  line-height: 42px;
  overflow: hidden;
  border: 1px solid #8a9a00;
  border-radius: 50px;
  position: relative;
  display: block;
  color: #8a9a00;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .075em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cmn-btn .inner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #c0d800;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.cmn-btn .inner:hover {
  color: #4a4a4a;
  border: 1px solid #c0d800;
}

.cmn-btn .inner:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*  パン屑
-------------------------*/
.cmn-breadcrumb-block {
  background: #fff;
  width: 100%;
  -webkit-animation: fadePage 1s ease 0.3s forwards;
  animation: fadePage 1s ease 0.3s forwards;
  opacity: 0;
}

.cmn-breadcrumb {
  width: 1120px;
  height: 50px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmn-breadcrumb li {
  position: relative;
  display: inline;
  font-size: 12px;
  font-size: 1.2rem;
  color: #a0a0a0;
  letter-spacing: .08em;
  padding-left: 32px;
}

.cmn-breadcrumb li:first-child {
  padding-left: 0;
}

.cmn-breadcrumb li:first-child:before {
  display: none;
}

.cmn-breadcrumb li:before {
  position: absolute;
  content: "";
  top: 0;
  left: 10px;
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #a0a0a0;
  border-right: 1px solid #a0a0a0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cmn-breadcrumb li a {
  color: #a0a0a0;
  position: relative;
}

.cmn-breadcrumb li a:hover {
  text-decoration: underline;
}

/*  Shop LIST Category
-------------------------*/
.cmn-shopcategory-block .category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cmn-shopcategory-block .category-list li {
  width: 144px;
  height: 144px;
}

.cmn-shopcategory-block .category-list li a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.230769231;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 0 8px 0 8px;
}

.cmn-shopcategory-block .category-list li a:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  content: url(../images/common/icon_arrow.svg);
}

.cmn-shopcategory-block .category-list li a:hover, .cmn-shopcategory-block .category-list li a.current {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #c0d700;
}

.cmn-shopcategory-block .category-list li a.current:after {
  display: none;
}

.cmn-shopcategory-block .category-list li svg {
  fill: #525252;
  margin-bottom: 5px;
}

.cmn-shopcategory-block .category-list li .txt-type01 {
  padding-top: .5em;
}

.cmn-shopcategory-block .icon-all {
  width: 39px;
  height: 65px;
}

.cmn-shopcategory-block .icon-fashion {
  width: 62px;
  height: 65px;
}

.cmn-shopcategory-block .icon-fashiongoods {
  width: 59px;
  height: 65px;
}

.cmn-shopcategory-block .icon-interior {
  width: 86px;
  height: 65px;
}

.cmn-shopcategory-block .icon-beauty {
  width: 39px;
  height: 65px;
}

.cmn-shopcategory-block .icon-gourmet {
  width: 81px;
  height: 65px;
}

.cmn-shopcategory-block .icon-service {
  width: 60px;
  height: 65px;
}

.cmn-shopcategory-block .icon-entertainment {
  width: 63px;
  height: 65px;
}

.cmn-shopcategory-block .category-list.type-02 li {
  width: 126px;
  height: 126px;
}

.cmn-shopcategory-block .category-list.type-02 li a:after {
  width: 32px;
  height: 32px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-all {
  width: 39px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-fashion {
  width: 52px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-fashiongoods {
  width: 51px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-interior {
  width: 76px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-beauty {
  width: 34px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-gourmet {
  width: 71px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-service {
  width: 52px;
  height: 57px;
}

.cmn-shopcategory-block .category-list.type-02 .icon-entertainment {
  width: 53px;
  height: 57px;
}

/*  タブ
-------------------------*/
.cmn-tab-navi .tab-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmn-tab-navi .tab-list > li {
  text-align: center;
}

.cmn-tab-navi .tab-list > li > a {
  width: 360px;
  height: 73px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.cmn-tab-navi .tab-list > li > a:hover,
.cmn-tab-navi .tab-list > li .current {
  background: #c0d700;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*  ページ送り
-------------------------*/
.cmn-pager-block {
  text-align: center;
}

.cmn-pager-block .cmn-pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cmn-pager-block .btn {
  font-size: 19px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #d3d3d3;
  padding: 0 20px;
  line-height: 1;
}

.cmn-pager-block .btn svg {
  width: 19px;
  height: 17px;
  fill: #d3d3d3;
  padding: 0 20px;
}

.cmn-pager-block .btn a {
  position: relative;
  color: #8a9a00;
}

.cmn-pager-block .btn a svg {
  fill: #8a9a00;
}

.cmn-pager-block .btn a span {
  position: relative;
}

.cmn-pager-block .btn a span:after {
  position: absolute;
  bottom: -5px;
  content: "";
  width: 0%;
  height: 2px;
  background: #8a9a00;
  -webkit-transition: .3s;
  transition: .3s;
}

.cmn-pager-block .btn a:hover span:after {
  width: 100%;
}

.cmn-pager-block .back {
  border-right: 1px solid #d3d3d3;
}

.cmn-pager-block .back svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cmn-pager-block .back a span:after {
  right: 0;
}

.cmn-pager-block .next a span:after {
  left: 0;
}

/*  snsシェアボタン
-------------------------*/
.cmn-sns-wrap {
  border-top: 1px solid #d9d9d9;
  padding-top: 25px;
  margin-top: 40px;
}

.cmn-sns-wrap .cmn-sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cmn-sns-wrap .cmn-sns-list li {
  margin-right: 25px;
}

.cmn-sns-wrap .item-line img {
  width: 25px;
  height: 24px;
}

.cmn-sns-wrap .item-fb img {
  width: 11px;
  height: 24px;
}

.cmn-sns-wrap .item-tw img {
  width: 20px;
  height: 24px;
}

/*------------------------------------------
  footer
------------------------------------------*/
.pageTop {
  display: none;
  position: relative;
  z-index: 10;
}

.pageTop a {
  display: block;
  width: 52px;
  height: 52px;
  right: 20px;
  border-radius: 50%;
  position: relative;
  background: #4a4a4a;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pageTop a:hover {
  opacity: .5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pageTop a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -3px;
}

.cmn-footer {
  padding: 70px 0;
  text-align: center;
}

.cmn-footer .footer-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.cmn-footer .footer-navi li {
  margin: 0 12px;
}

.cmn-footer .footer-navi li a {
  font-weight: bold;
}

.cmn-footer .footer-navi li a:hover {
  text-decoration: underline;
}

.cmn-footer .footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.cmn-footer .footer-logo .logo {
  margin: 0 15px;
}

.cmn-footer .store-info {
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cmn-footer .copyright {
  font-size: 11px;
  font-size: 1.1rem;
  color: #b7b7b7;
}

/*------------------------------------------
  Parts
------------------------------------------*/
/*  Section
-------------------------*/
/*  Title
-------------------------*/
/*  Arrow
-------------------------*/
/*  Button
-------------------------*/
/*  Nav
-------------------------*/
/*  Box
-------------------------*/
/*  Text
-------------------------*/
/*  Label
-------------------------*/
/*  Item list
-------------------------*/
/*  Detail
-------------------------*/
/*  Tag
-------------------------*/
/*  Table
-------------------------*/
/*------------------------------------------
  Slider
------------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  margin: 0 10px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*------------------------------------------
  印刷
------------------------------------------*/
@media print {
  body {
    -webkit-print-color-adjust: exact;
    font-family: sans-serif !important;
  }
  .js-fade {
    opacity: 1 !important;
  }
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
