@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap);
@import url(//fonts.googleapis.com/css?family=Roboto:400,700&display=swap);
/*------------------------------------------
  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", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.3em;
  background: #eee;
  color: #151515;
  line-height: 1.5;
}

a {
  color: #151515;
  text-decoration: none;
  transition: opacity .2s ease;
}
a:hover {
  opacity: .7;
  transition: opacity .2s ease;
}
a.link-tel {
  pointer-events: none;
}

.disp-tab {
  display: none;
}

.disp-sp {
  display: none;
}

.wrapper {
  padding-top: 50px;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  .disp-tab {
    display: block;
  }
  .wrapper {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
  a.link-tel {
    pointer-events: auto;
  }
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  parts
------------------------------------------*/
/* ===== flexbox ===== */
.flexbox {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.col {
  box-sizing: border-box;
}

.col-w50 {
  width: 50%;
}

/* ===== btn ===== */
.btn-type01 {
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .14em;
  width: 100%;
  max-width: 290px;
  border: 1px solid #707070;
  box-sizing: border-box;
  position: relative;
  padding: 1em 0;
  transition: .4s;
}
.btn-type01:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #707070;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: .4s;
}
.btn-type01 span {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  background: url(../images/common/ico-link01.svg) no-repeat right center;
  background-size: 14px;
}
.btn-type01:hover {
  opacity: 1;
  color: #6f73cc;
  transition: .4s;
  border-color: #6f73cc;
}
.btn-type01:hover:before {
  transition: .4s;
  border-color: #6f73cc;
}

.btn-type02 {
  position: relative;
  display: block;
  border: 1px solid #707070;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .14em;
  padding: .6em 1em;
  overflow: hidden;
}
.btn-type02:before {
  content: "";
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, .2);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: -10%;
  left: -180%;
  transition: .3s ease-in-out;
}
.btn-type02:hover {
  opacity: 1;
}
.btn-type02:hover:before {
  left: 60%;
}

.btn-type03 {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 200px;
  padding: 6px 0;
  padding-right: 34px;
  box-sizing: border-box;
  background: #ebebeb;
  letter-spacing: .2em;
  position: relative;
  transition: .4s;
}
.btn-type03:after {
  content: "";
  width: 22px;
  height: 5px;
  background: url(../images/common/ico-arrow06.svg) no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2px;
  transition: .4s;
}
.btn-type03:hover {
  opacity: 1;
  transition: .4s;
  background: #6f73cc;
  color: #000;
}
.btn-type03:hover:after {
  right: 15px;
  transition: .4s;
}

@media only screen and (max-width: 768px) {
  /* ===== flexbox ===== */
  .col {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .col:last-child {
    margin-bottom: 0;
  }
  /* ===== btn ===== */
  .btn-type01 {
    font-size: 1.5rem;
    max-width: 100%;
    padding: 1.8em 0;
  }
  .btn-type02 {
    font-size: 1.5rem;
    padding: 1.8rem 1em;
  }
  .btn-type02:before {
    content: none;
  }
  .btn-type03 {
    font-size: 1.6rem;
    max-width: 100%;
    padding-right: 0;
    padding: 10px 0;
  }
  .btn-type03:after {
    right: 15px;
    margin-top: 0;
  }
  .btn-type03:hover {
    color: #151515;
    background: #ebebeb;
  }
}

@media only screen and (max-width: 480px) {
  /* ===== btn ===== */
  .btn-type01 {
    font-size: 15px;
    font-size: 4vw;
  }
  .btn-type02 {
    font-size: 15px;
    font-size: 4vw;
  }
  .btn-type03 {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.grobal-header {
  width: 100%;
  height: 50px;
  display: table;
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  text-align: center;
  z-index: 100;
}
.grobal-header .site-name {
  display: table-cell;
  vertical-align: middle;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .5em;
}
.grobal-header .header-icon {
  position: absolute;
  top: 0;
  background-color: #333;
}
.grobal-header .header-icon a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  transition: .4s;
}
.grobal-header .header-icon a:hover {
  opacity: 1;
  transition: .4s;
}
.grobal-header .header-icon:before {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  transition: all .6s cubic-bezier(.86, 0, .07, 1);
}
.grobal-header .header-icon:hover:before {
  width: 100%;
  left: 0;
}
.grobal-header .header-icon-home {
  left: 0;
}
.grobal-header .header-icon-home a {
  background-image: url(../images/common/ico-home01.svg);
}
.grobal-header .header-icon-home:hover a {
  background-image: url(../images/common/ico-home02.svg);
}
.grobal-header .header-icon-menu {
  left: 0;
  display: none;
}
.grobal-header .header-icon-search {
  right: 0;
}
.grobal-header .header-icon-search a {
  background-image: url(../images/common/ico-search01.svg);
}
.grobal-header .header-icon-search:hover a {
  background-image: url(../images/common/ico-search02.svg);
}
.grobal-header .header-link {
  position: absolute;
  left: 50px;
  height: 100%;
  align-items: center;
}
.grobal-header .header-link li {
  position: relative;
  padding: 0 8px;
}
.grobal-header .header-link li:after {
  content: "";
  width: 1px;
  height: 20px;
  background: #ebebeb;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
}
.grobal-header .header-link li:last-child:after {
  content: none;
}
.grobal-header .header-link a {
  display: block;
}

.header-search-modal {
  display: none;
  text-align: center;
  width: 100%;
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  background: rgba(160, 160, 160, .95);
}
.header-search-modal .modal-inner {
  display: table;
  width: 100%;
  height: 100vh;
}
.header-search-modal .modal-contents {
  display: table-cell;
  vertical-align: middle;
  padding: 0 40px;
  color: #fff;
}
.header-search-modal .title {
  letter-spacing: .2em;
  margin-bottom: 30px;
}
.header-search-modal .search-form {
  max-width: 600px;
  margin: 0 auto 20px;
  position: relative;
  background: #fff;
}
.header-search-modal .search-form input {
  outline-style: none;
  height: 40px;
}
.header-search-modal .search-form input[type="text"] {
  width: 100%;
  padding: 0 1em;
}
.header-search-modal .search-form input[type="text"]::-webkit-input-placeholder {
  color: #acacac;
  letter-spacing: .2em;
  font-size: 1.2rem;
}
.header-search-modal .search-form input[type="text"]::-moz-placeholder {
  color: #acacac;
  letter-spacing: .2em;
  font-size: 1.2rem;
}
.header-search-modal .search-form input[type="text"]:-ms-input-placeholder {
  color: #acacac;
  letter-spacing: .2em;
  font-size: 1.2rem;
}
.header-search-modal .search-form input[type="text"]::-ms-input-placeholder {
  color: #acacac;
  letter-spacing: .2em;
  font-size: 1.2rem;
}
.header-search-modal .search-form input[type="text"]::placeholder {
  color: #acacac;
  letter-spacing: .2em;
  font-size: 1.2rem;
}
.header-search-modal .search-form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  background: #333 url(../images/common/ico-search01.svg) no-repeat center;
  background-size: 20px;
  border-radius: 0;
}
.header-search-modal .modal-close {
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: .1em;
}
.header-search-modal .modal-close span {
  display: inline-block;
  vertical-align: middle;
}
.header-search-modal .modal-close .ico {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: .3em;
}

.grobal-nav {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .grobal-header {
    height: 60px;
  }
  .grobal-header .header-icon a {
    width: 60px;
    height: 60px;
    background-size: 30px;
  }
  .grobal-header .header-icon:before {
    content: none;
  }
  .grobal-header .header-icon-home {
    display: none;
  }
  .grobal-header .header-icon-menu {
    display: block;
  }
  .grobal-header .header-icon-menu div {
    width: 30px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -15px;
  }
  .grobal-header .header-icon-menu span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    transition: .4s;
  }
  .grobal-header .header-icon-menu span:nth-of-type(1) {
    top: 0;
  }
  .grobal-header .header-icon-menu span:nth-of-type(2) {
    top: 50%;
  }
  .grobal-header .header-icon-menu span:nth-of-type(3) {
    bottom: 0;
  }
  .grobal-header .header-icon-menu.active span {
    transition: .4s;
  }
  .grobal-header .header-icon-menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-150deg);
            transform: translateY(9px) rotate(-150deg);
  }
  .grobal-header .header-icon-menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .grobal-header .header-icon-menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(150deg);
            transform: translateY(-10px) rotate(150deg);
  }
  .grobal-header .header-link {
    display: none;
  }
  .grobal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 60px 0 80px;
    text-align: center;
    background: rgba(51, 51, 51, .95);
    letter-spacing: .5em;
    font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    z-index: 90;
  }
  .grobal-nav a {
    color: #fff;
    display: block;
  }
  .grobal-nav .nav-list {
    padding: 20px 0;
  }
  .grobal-nav .nav-list a {
    padding: 16px 0;
  }
  .grobal-nav .link-list {
    padding: 0 14vw;
  }
  .grobal-nav .link-list li {
    border-bottom: 1px solid #fff;
  }
  .grobal-nav .link-list li:first-child {
    letter-spacing: .4em;
    border-top: 1px solid #fff;
  }
  .grobal-nav .link-list a {
    padding: 15px 0;
    position: relative;
  }
  .grobal-nav .link-list a:after {
    content: "";
    width: 14px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
    background: url(../images/common/ico-link01.svg) no-repeat center;
  }
}

@media only screen and (max-width: 768px) {
  .header-search-modal .modal-contents {
    padding: 0 10.666vw;
  }
  .header-search-modal .title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .header-search-modal .search-form {
    margin-bottom: 30px;
  }
  .header-search-modal .search-form input[type="text"] {
    font-size: 12px;
    font-size: 3.2vw;
    padding: 0 .5em;
  }
}

@media only screen and (max-width: 480px) {
  .grobal-header .site-name {
    font-size: 16px;
    font-size: 4.26667vw;
  }
  .grobal-nav {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.grobal-footer {
  text-align: center;
  padding: 40px 0;
}
.grobal-footer .copyright {
  font-size: .8rem;
  padding: 0 15px;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  letter-spacing: .5em;
}

.btn-pagetop {
  display: none;
  position: fixed;
  font-size: 1.2rem;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  letter-spacing: .8em;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  bottom: 100px;
  right: 40px;
  width: 206px;
  text-align: right;
}
.btn-pagetop a {
  display: block;
  position: relative;
}
.btn-pagetop span {
  display: block;
  width: 45px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-animation: pagetopLoop 1.6s cubic-bezier(.215, .61, .355, 1) infinite;
          animation: pagetopLoop 1.6s cubic-bezier(.215, .61, .355, 1) infinite;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes pagetopLoop {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  99% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

@keyframes pagetopLoop {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  99% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

@media only screen and (max-width: 768px) {
  .grobal-footer {
    padding: 45px 0;
  }
  .btn-pagetop {
    display: none !important;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.main-contents {
  max-width: 1040px;
  margin: auto;
  padding: 40px 60px 0;
}

.category-nav {
  text-align: center;
  padding-top: 10px;
  margin-bottom: 30px;
}
.category-nav ul {
  justify-content: center;
}
.category-nav .nav-item {
  margin: 0 10px 20px;
}
.category-nav a {
  width: 176px;
  display: inline-block;
  padding: 10px 0;
  position: relative;
  border-radius: 30px;
  background: #fff;
  color: #333;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  letter-spacing: .5em;
}
.category-nav a:hover {
  opacity: 1;
  color: #fff;
  transition: .4s;
}
.category-nav a:hover:before {
  width: 100%;
  left: 0;
}
.category-nav a:hover span {
  transition: .4s;
}
.category-nav a:before {
  content: "";
  width: 0;
  height: 100%;
  background: #333;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  transition: all .6s cubic-bezier(.86, 0, .07, 1);
}
.category-nav a span {
  display: block;
  position: relative;
  padding-left: 1.5em;
  background-repeat: no-repeat;
  background-position: left 18px center;
  background-size: 17px;
  transition: .4s;
}
.category-nav .current a {
  color: #fff;
}
.category-nav .current a:before {
  width: 100%;
}
.category-nav .category-all a span {
  padding-left: 0;
}
.category-nav .category-beauty a span {
  background-image: url(../images/common/ico-beauty01.png);
}
.category-nav .category-beauty a:hover span {
  background-image: url(../images/common/ico-beauty02.png);
}
.category-nav .category-beauty.current a span {
  background-image: url(../images/common/ico-beauty02.png);
}
.category-nav .category-goods a span {
  background-image: url(../images/common/ico-goods01.png);
}
.category-nav .category-goods a:hover span {
  background-image: url(../images/common/ico-goods02.png);
}
.category-nav .category-goods.current a span {
  background-image: url(../images/common/ico-goods02.png);
}
.category-nav .category-fashion a span {
  background-image: url(../images/common/ico-fashion01.png);
}
.category-nav .category-fashion a:hover span {
  background-image: url(../images/common/ico-fashion02.png);
}
.category-nav .category-fashion.current a span {
  background-image: url(../images/common/ico-fashion02.png);
}
.category-nav .category-food a span {
  background-image: url(../images/common/ico-food01.png);
}
.category-nav .category-food a:hover span {
  background-image: url(../images/common/ico-food02.png);
}
.category-nav .category-food.current a span {
  background-image: url(../images/common/ico-food02.png);
}

.blog-list .scrEvent {
  opacity: 0;
  padding-top: 50px;
}

.blog-list .scrEvent-active {
  opacity: 1;
  transition: .6s;
  padding-top: 0;
}

.blog-list .list-item {
  background: #fff;
  width: 22.5%;
  margin-right: 3.333%;
  margin-bottom: 3.333%;
}
.blog-list .list-item:nth-child(4n) {
  margin-right: 0;
}

.blog-list .item-inner {
  position: relative;
  display: block;
  padding: 4px;
}
.blog-list .item-inner:hover {
  opacity: 1;
}
.blog-list .item-inner:hover .item-image:after {
  opacity: 1;
  transition: 1s .5s;
}
.blog-list .item-inner:hover .item-image img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  transition: 1.5s;
}

.blog-list .item-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: table;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #cc9d6f;
  z-index: 1;
}
.blog-list .item-icon .icon {
  display: table-cell;
  vertical-align: middle;
}
.blog-list .item-icon img {
  width: 20px;
  vertical-align: middle;
}

.blog-list .item-image {
  overflow: hidden;
  position: relative;
}
.blog-list .item-image:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 1.5s;
}
.blog-list .item-image img {
  transition: 1.5s;
}

.blog-list .item-text {
  padding: 10px 6px 15px;
}
.blog-list .item-text .shop {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .07em;
  margin-bottom: 28px;
}
.blog-list .item-text .title {
  font-size: 1rem;
  letter-spacing: .2em;
  margin-bottom: 15px;
  overflow: hidden;
}
.blog-list .item-text .title p {
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-list .item-text .date {
  font-size: 1rem;
  letter-spacing: .2em;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
}

.blog-list-pager {
  text-align: center;
  padding: 20px 0 5px;
}
.blog-list-pager li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 18px;
}
.blog-list-pager a {
  display: block;
  line-height: 20px;
  width: 20px;
  font-size: 1rem;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
}
.blog-list-pager .current a {
  background: #fff;
  border-radius: 50%;
}
.blog-list-pager .pager-prev {
  margin-left: 0;
}
.blog-list-pager .pager-next {
  margin-right: 0;
}
.blog-list-pager .pager-arrow img {
  vertical-align: middle;
}

.blog-arcihve {
  max-width: 530px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: .2em;
}
.blog-arcihve a {
  display: block;
  padding: .8em 0;
}
.blog-arcihve .arcihve-current {
  background: #fff;
}
.blog-arcihve .arcihve-current a {
  background: url(../images/common/ico-arrow05.svg) no-repeat right 30px center;
  background-size: 11px;
}
.blog-arcihve .arcihve-list {
  display: none;
  background: #ebebeb;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.blog-arcihve .arcihve-list a:hover {
  opacity: 1;
  background: #fff;
}
.blog-arcihve .date, .blog-arcihve .num {
  display: inline-block;
  vertical-align: middle;
}
.blog-arcihve .num {
  font-size: 1.2rem;
  margin-left: 1em;
}

.blog-keyword {
  text-align: center;
  margin-bottom: 40px;
}
.blog-keyword p {
  font-size: 1.6rem;
  padding: .8em 1em;
  background: #fff;
  letter-spacing: .2em;
}

.detail-wrapper {
  overflow: hidden;
}

.detail-main {
  float: left;
  width: calc(100% - 240px);
  box-sizing: border-box;
}

.detail-sub {
  width: 210px;
  float: right;
}

.blog-store-link a {
  display: block;
  text-align: center;
  background: #cc9d6f;
  color: #fff;
  position: relative;
  padding: 8px 0;
}
.blog-store-link a:after {
  content: "";
  width: 22px;
  height: 5px;
  background: url(../images/common/ico-arrow07.svg) no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -2px;
  transition: .4s;
}
.blog-store-link a:hover:after {
  right: 15px;
  transition: .4s;
}

.blog-store-link span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  letter-spacing: .2em;
  margin: 0 5px;
}
.blog-store-link span img {
  width: 20px;
}

.blog-article {
  background: #fff;
  padding: 30px 40px 60px;
}
.blog-article .article-head {
  margin-bottom: 40px;
}
.blog-article .article-head .label {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  background: #000;
  letter-spacing: .1em;
  padding: 2px .6em;
}
.blog-article .shop-name {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .11em;
}
.blog-article .shop-link {
  margin-top: 25px;
  text-align: right;
}
.blog-article .article-date {
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  letter-spacing: .2em;
  margin-bottom: 25px;
}
.blog-article .article-title {
  font-size: 1.8rem;
  letter-spacing: .15em;
  margin-bottom: 20px;
}
.blog-article .article-contents {
  letter-spacing: .13em;
  line-height: 2.1;
  margin-bottom: 60px;
}
.blog-article .article-contents > p {
  margin-top: 30px;
}
.blog-article .article-contents > p:first-child {
  margin-top: 0;
}
.blog-article .article-contents a {
  text-decoration: underline;
  color: #6f73cc;
}
.blog-article .article-contents figure {
  display: block;
  margin-top: 30px;
  text-align: center;
}
.blog-article .article-contents figure:first-child {
  margin-top: 0;
}
.blog-article .article-contents .figure-text {
  margin-top: 10px;
  background: #ebebeb;
  font-size: 1rem;
  padding: 20px;
}
.blog-article .article-contents .figure-text p {
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: 15px;
}
.blog-article .article-contents .figure-text p:last-child {
  margin-bottom: 0;
}
.blog-article .article-contents .figure-text p:before {
  content: "ー ";
}
.blog-article .article-foot {
  text-align: center;
}
.blog-article .store-link {
  margin-bottom: 60px;
}
.blog-article .sns-list {
  margin-bottom: 60px;
  justify-content: space-between;
}
.blog-article .sns-list li {
  width: 32%;
}
.blog-article .sns-list li img {
  vertical-align: middle;
}
.blog-article .sns-list a {
  display: block;
  background: #333;
  color: #fff;
  padding: 4px 0 8px;
}
.blog-article .pager {
  justify-content: center;
}
.blog-article .pager li img {
  vertical-align: middle;
}
.blog-article .pager a {
  display: block;
  transition: .4s;
  position: relative;
}
.blog-article .pager a:hover {
  opacity: 1;
  color: #6f73cc;
  transition: .4s;
}
.blog-article .pager a:hover:before {
  border-color: #6f73cc !important;
  transition: .4s;
}
.blog-article .pager .pager-all {
  margin: 0 80px;
}
.blog-article .pager .pager-arrow a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -3px;
  transition: .4s;
}
.blog-article .pager .pager-prev a {
  padding-left: 20px;
}
.blog-article .pager .pager-prev a:before {
  left: 0;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}
.blog-article .pager .pager-next a {
  padding-right: 20px;
}
.blog-article .pager .pager-next a:before {
  right: 0;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.aside-title {
  letter-spacing: .5em;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}
.aside-title:before {
  content: "";
  width: 38px;
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  top: 50%;
}

.aside-box {
  margin-bottom: 45px;
}
.aside-box:last-child {
  margin-bottom: 0;
}

.aside-bloglist .list-item {
  width: 100%;
  margin-bottom: 20px;
}
.aside-bloglist .list-item:last-child {
  margin-bottom: 0;
}

.aside-bloglist .item-inner {
  position: relative;
  display: block;
}
.aside-bloglist .item-inner:hover {
  opacity: 1;
}
.aside-bloglist .item-inner:hover .item-image:after {
  opacity: 1;
  transition: 1s .5s;
}
.aside-bloglist .item-inner:hover .item-image img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  transition: 1.5s;
}

.aside-bloglist .item-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: table;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #cc9d6f;
  z-index: 1;
}
.aside-bloglist .item-icon .icon {
  display: table-cell;
  vertical-align: middle;
}
.aside-bloglist .item-icon img {
  width: 20px;
  vertical-align: middle;
}

.aside-bloglist .item-image {
  overflow: hidden;
  position: relative;
}
.aside-bloglist .item-image:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 1.5s;
}
.aside-bloglist .item-image img {
  transition: 1.5s;
}

.aside-bloglist .item-text {
  padding: 10px 0 0;
}
.aside-bloglist .item-text .title {
  font-size: 1.2rem;
  letter-spacing: .2em;
  margin-bottom: 15px;
  overflow: hidden;
}
.aside-bloglist .item-text .title p {
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.aside-bloglist .item-text .date {
  font-size: 1.1rem;
  letter-spacing: .2em;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  text-align: right;
}

.aside-archivelist {
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.3rem;
  letter-spacing: .2em;
  padding-top: 10px;
}
.aside-archivelist li {
  margin-bottom: .8em;
}
.aside-archivelist li:last-child {
  margin-bottom: 0;
}

.aside-btn {
  margin-top: 25px;
}

.mv-section {
  position: relative;
}
.mv-section .mv-information {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  background: #6f73cc;
  padding: 15px;
  box-sizing: border-box;
  z-index: 2;
}
.mv-section .mv-information a {
  color: #fff;
  text-decoration: underline;
}

.mv-section button {
  display: block;
  margin: 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  outline-style: none;
  cursor: pointer;
  border: none;
}
.mv-section .slide-item a {
  display: block;
}
.mv-section .slick-dots {
  z-index: 1;
  position: absolute;
  left: 60px;
  bottom: 25px;
}
.mv-section .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.mv-section .slick-dots button {
  width: 7px;
  height: 7px;
  background: #333;
  border-radius: 50%;
}
.mv-section .slick-dots .slick-active button {
  width: 13px;
  height: 13px;
}
.mv-section .slick-arrow {
  position: absolute;
  z-index: 1;
  width: 31px;
  height: 31px;
  background-color: #333;
  bottom: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px;
}
.mv-section .slick-prev {
  right: 101px;
  background-image: url(../images/common/ico-arrow01.svg);
}
.mv-section .slick-next {
  right: 60px;
  background-image: url(../images/common/ico-arrow02.svg);
}

.shop-section {
  background-image: url(../images/common/bg-shop-pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
  padding: 50px 60px;
}
.shop-section .sec-inner {
  max-width: 1040px;
  margin: auto;
}
.shop-section .shop-contents {
  background: #fff;
  box-sizing: border-box;
}
.shop-section .shop-info {
  width: 60%;
  padding: 25px 30px 40px;
}
.shop-section .shop-name {
  font-size: 2.4rem;
  letter-spacing: .11em;
  margin-bottom: 30px;
}
.shop-section .shop-sammary {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  font-size: 1.2rem;
  padding: 1em .5em;
}
.shop-section .shop-sammary span {
  color: #ebebeb;
}
.shop-section .shop-link {
  margin-top: 30px;
  text-align: center;
}
.shop-section .shop-logo {
  width: 38%;
  margin-left: auto;
  text-align: center;
}
.shop-section .shop-logo .logo-image {
  width: 100%;
  height: 100%;
  display: table;
}
.shop-section .shop-logo .logo-image div {
  display: table-cell;
  vertical-align: middle;
}
.shop-section .shop-logo .logo-image img {
  width: 375px;
}

.error-section {
  padding: 100px 0 120px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: .2em;
}
.error-section .sec-title {
  display: inline-block;
  background: #fff;
  font-family: "Roboto", "Noto Sans JP", YuGothic, "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  padding: 1em 1.5em;
  margin-bottom: 40px;
}
.error-section .error-text {
  margin-bottom: 140px;
  line-height: 3;
}

@media only screen and (max-width: 1024px) {
  .main-contents {
    padding: 40px 20px 0;
  }
  .detail-main {
    width: calc(100% - 230px);
  }
  .blog-article {
    padding: 30px 20px 60px;
  }
  .mv-section .slick-dots {
    left: 20px;
  }
  .mv-section .slick-prev {
    right: 61px;
  }
  .mv-section .slick-next {
    right: 20px;
  }
  .shop-section {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .main-contents {
    padding: 15px 15px 0;
  }
  .mv-section .slick-dots {
    left: 15px;
    bottom: 34px;
  }
  .mv-section .slick-arrow {
    bottom: 25px;
  }
  .mv-section .slick-prev {
    right: 56px;
  }
  .mv-section .slick-next {
    right: 15px;
  }
  .shop-section {
    background-image: url(../images/common/bg-shop-sp.jpg);
    margin-bottom: 0;
    padding: 15px;
  }
  .shop-section .shop-info {
    width: 100%;
    -ms-order: 2;
        order: 2;
    padding: 20px 20px 45px;
  }
  .shop-section .shop-name {
    font-size: 2.3rem;
  }
  .shop-section .shop-sammary {
    font-size: 1.5rem;
  }
  .shop-section .shop-link {
    margin-top: 40px;
  }
  .shop-section .shop-logo {
    width: 100%;
    margin-bottom: 15px;
    -ms-order: 1;
        order: 1;
  }
  .error-section {
    padding: 80px 15px 70px;
    letter-spacing: .16em;
  }
  .error-section .sec-title {
    margin-bottom: 30px;
  }
  .error-section .error-text {
    font-size: 1.4rem;
    margin-bottom: 100px;
    line-height: 2.8;
  }
  .category-nav {
    padding-top: 15px;
    margin-bottom: 15px;
  }
  .category-nav ul {
    justify-content: space-between;
  }
  .category-nav .nav-item {
    width: 48%;
    margin: 0 0 15px;
  }
  .category-nav a {
    width: 100%;
  }
  .category-nav a span {
    background-position: left 10% center;
  }
  .category-nav .category-all {
    width: 100%;
  }
  .category-nav .category-all a {
    width: 48%;
  }
  .blog-list .list-item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .blog-list .list-item:nth-child(2n) {
    margin-right: 0;
  }
  .blog-list .item-inner:hover .item-image img {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    transition: none;
  }
  .blog-list .item-icon {
    width: 32px;
    height: 32px;
  }
  .blog-list .item-icon img {
    width: 16px;
  }
  .blog-list .item-image:after {
    content: none;
  }
  .blog-arcihve {
    margin-bottom: 30px;
  }
  .blog-keyword {
    margin-bottom: 30px;
    padding-top: 15px;
  }
  .detail-main {
    float: none;
    width: 100%;
    margin-bottom: 80px;
  }
  .detail-sub {
    float: none;
    width: 100%;
  }
  .blog-store-link a:hover:after {
    right: 20px;
  }
  .blog-store-link span {
    font-size: 1.4rem;
    margin: 0 6px;
  }
  .blog-store-link span img {
    width: 24px;
  }
  .blog-article {
    padding: 20px 20px 50px;
  }
  .blog-article .shop-name {
    font-size: 2rem;
  }
  .blog-article .article-date {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .blog-article .article-title {
    font-size: 2rem;
  }
  .blog-article .article-contents {
    font-size: 1.4rem;
    letter-spacing: .14em;
    line-height: 1.8;
  }
  .blog-article .article-contents .figure-text {
    font-size: 1.2rem;
    padding: 1em;
  }
  .blog-article .store-link {
    margin-bottom: 50px;
  }
  .blog-article .store-link .btn-type01 {
    padding: 1.4em 0;
  }
  .blog-article .sns-list {
    margin-bottom: 50px;
  }
  .blog-article .pager {
    font-size: 1.4rem;
    justify-content: space-between;
  }
  .blog-article .pager .pager-all {
    margin: 0;
  }
  .aside-title {
    font-size: 1.6rem;
    padding-left: 56px;
    margin-bottom: 30px;
  }
  .aside-archivelist {
    padding-top: 0;
  }
  .aside-select {
    overflow: hidden;
    text-align: center;
    position: relative;
    background: #fff url(../images/common/ico-arrow05.svg) no-repeat right 1.5em center;
    background-size: 11px;
  }
  .aside-select select {
    width: 120%;
    height: 50px;
    padding: 0 1em;
    box-sizing: border-box;
    outline-style: none;
  }
  .aside-bloglist .list-item {
    width: 48%;
    margin-bottom: 4%;
  }
  .aside-bloglist .list-item:nth-child(2n) {
    margin-left: auto;
  }
  .aside-bloglist .item-icon {
    width: 32px;
    height: 32px;
  }
  .aside-bloglist .item-icon img {
    width: 16px;
  }
  .aside-bloglist .item-text .title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .aside-bloglist .item-text .title p {
    -webkit-line-clamp: 3;
  }
  .aside-bloglist .item-text .date {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 480px) {
  .mv-section .mv-information {
    font-size: 11px;
    font-size: 2.93333vw;
  }
  .shop-section .shop-name {
    font-size: 23px;
    font-size: 6.13333vw;
  }
  .shop-section .shop-sammary {
    font-size: 15px;
    font-size: 4vw;
  }
  .category-nav a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .blog-list .item-text .shop {
    font-size: 12px;
    font-size: 3.2vw;
  }
  .blog-list .item-text .title {
    font-size: 10px;
    font-size: 2.66667vw;
  }
  .blog-list .item-text .date {
    font-size: 10px;
    font-size: 2.66667vw;
  }
  .blog-list-pager li {
    margin: 0 3%;
  }
  .blog-list-pager a {
    font-size: 10px;
    font-size: 2.66667vw;
  }
  .blog-store-link span {
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .blog-article .shop-name {
    font-size: 20px;
    font-size: 5.33333vw;
  }
  .blog-article .article-date {
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .blog-article .article-title {
    font-size: 20px;
    font-size: 5.33333vw;
  }
  .blog-article .article-contents {
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .blog-article .article-contents .figure-text {
    font-size: 12px;
    font-size: 3.2vw;
    padding: 1em;
  }
  .blog-article .pager {
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .aside-title {
    font-size: 16px;
    font-size: 4.26667vw;
  }
  .aside-archivelist {
    font-size: 15px;
    font-size: 4vw;
  }
  .aside-bloglist .item-text .title {
    font-size: 12px;
    font-size: 3.2vw;
  }
  .aside-bloglist .item-text .date {
    font-size: 12px;
    font-size: 3.2vw;
  }
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}