@charset "UTF-8";
/* ==================================== */
/* リセットCSS */
/* ==================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ==================================== */
/* 初期設定 */
/* ==================================== */
html {
  font-size: 62.5%;
  /* 10px */
}
body {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #231815;
  line-height: 1.5;
  background: url(../img/bg.jpg) repeat;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

a {
  color: inherit;
}

span {
  font-weight: inherit;
}

/* インナー */
/* ------------------------------------ */
.l-inner {
  margin: 0 auto;
  padding: 0 40px;
  width: 1120px;
  max-width: 100%;
  height: inherit;
}

.l-inner--narrow {
  width: 880px;
}

.l-inner--full {
  width: 100%;
}

/* ヘッダー（レイアウト） */
/* ------------------------------------ */
.l-header {
  width: 100%;
  z-index: 20;
  color: #231815;
}

/* フッター（レイアウト） */
/* ------------------------------------ */
.l-footer {
  width: 100%;
  z-index: 10;
  background: #231815;
  color: #fff;
}

/* セクション */
/* ------------------------------------ */
.l-section {
  width: 100%;
  padding: 100px 0;
}
.l-section--white {
  background-color: #fff;
}

.l-section--top-border {
  border-top: 1px solid #504f50;
}

/* ボタン */
/* ------------------------------------ */
.c-button {
  display: inline-block;
  padding: 0.6em 2em;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background-color: #3F3F3F;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}
.c-button--rev {
  color: #231815;
  background-color: #fff;
}
.c-button--rev.c-button--icon::after {
  background: transparent url(../img/icon_link_gray.svg) no-repeat center center/contain;
}

.c-button--icon {
  padding-right: 3.2em;
  position: relative;
}
.c-button--icon::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  right: 1.6em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent url(../img/icon_link_white.svg) no-repeat center center/contain;
}

/* ナビゲーション */
/* ------------------------------------ */
.c-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-navigation__item {
  position: relative;
  padding: 0.2em 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.c-navigation__item + .c-navigation__item::before {
  content: "｜";
  position: absolute;
  top: 50%;
  left: -0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-navigation__item:last-child {
  padding-right: 0;
}

.c-navigation__link {
  display: block;
  font-size: 1.8rem;
  font-style: italic;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* セクション共通見出し */
/* ------------------------------------ */
.c-section-head {
  text-align: center;
}
.c-section-head > *:last-child {
  margin-bottom: 0;
}
.c-section-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-size: 5rem;
  letter-spacing: 0.05em;
}
.c-section-head__en {
  line-height: 1;
}
.c-section-head__jp {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", "Yu Gothic", yugothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-top: 30px;
}
.c-section-head__lead {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.c-section-head__list {
  margin: 1em 0 0;
}
.c-section-head__note {
  font-size: 0.8em;
  margin-top: 1em;
  margin-bottom: 2em;
}

/* リンクのアイコン */
/* ------------------------------------ */
.c-link-icon {
  position: relative;
}
.c-link-icon::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  background: transparent url(../img/icon_link_black.svg) no-repeat center center/contain;
}
.c-link-icon--white::before {
  background: transparent url(../img/icon_link_white.svg) no-repeat center center/contain;
}
.c-link-icon--black::before {
  background: transparent url(../img/icon_link_black.svg) no-repeat center center/contain;
}
.c-link-icon--gray::before {
  background: transparent url(../img/icon_link_gray.svg) no-repeat center center/contain;
}

/* マーカー */
/* ------------------------------------ */
.c-marker {
  display: inline-block;
  padding: 0.2em 0.4em;
  background: #a08f63;
}

.c-marker--thin {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, #ede9df));
  background: linear-gradient(transparent 80%, #ede9df 0);
}

/* トップへ戻るボタン */
/* ------------------------------------ */
.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
}

/* ヘッダー */
/* ------------------------------------ */
.p-header__img {
  margin: 20px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__logo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
}

.p-header-bar {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 16px 40px;
  z-index: 20;
}
.p-header-bar__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header-sp {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header-sp__title {
  width: 34.713vw;
}

.p-header-sp__img {
  width: 7.343vw;
}

/* メインビジュアル */
/* ------------------------------------ */
.p-mainvisual {
  max-width: 1200px;
  margin: auto;
  position: relative;
  background: url(../img/mainvisual_bg_01.png) no-repeat center 150px;
}
.p-mainvisual__text {
  max-width: 389px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* お店一覧 */
/* ------------------------------------ */
.p-event-wrap {
  margin-bottom: -40px;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-event {
  position: relative;
  width: calc(33.3% - 26.6666666667px);
  margin-right: 40px;
  margin-bottom: 40px;
  display: inline-block;
  text-decoration: none;
}
.p-event:nth-child(3n) {
  margin-right: 0;
}
.p-event__number {
  display: inline-block;
  position: absolute;
  left: -20px;
  top: -10px;
  z-index: 2;
}
.p-event__img {
  display: block;
  position: relative;
  padding-top: 100%;
}
.p-event__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-event__body {
  padding: 20px 10px;
}
.p-event__meta {
  margin-bottom: 30px;
  overflow: hidden;
}
.p-event__name {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
.p-event__info {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.73;
  font-size: 1.5rem;
}
.p-event__text {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.73;
}
.p-event__button {
  text-align: center;
}
.p-event__button .c-button {
  width: 100%;
}

.p-event-hp {
  width: 110px;
  display: block;
  float: left;
}

.p-event-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  float: right;
}

.p-event-sns__item {
  width: 26px;
  display: block;
}
.p-event-sns__item + .p-event-sns__item {
  margin-left: 20px;
}

/* お店一覧 */
/* ------------------------------------ */
.p-shop-wrap {
  margin-bottom: -40px;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-shop {
  width: calc(33.3% - 26.6666666667px);
  margin-right: 40px;
  margin-bottom: 40px;
  display: inline-block;
  text-decoration: none;
}
.p-shop:nth-child(3n) {
  margin-right: 0;
}
.p-shop__img {
  display: block;
  position: relative;
  padding-top: 62.5%;
}
.p-shop__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-shop__body {
  padding: 20px 10px;
}
.p-shop__meta {
  margin-bottom: 30px;
  overflow: hidden;
}
.p-shop__name {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
.p-shop__info {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.73;
}
.p-shop__text {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.73;
}
.p-shop__button {
  text-align: center;
}
.p-shop__button .c-button {
  width: 100%;
}

.p-shop-hp {
  width: 110px;
  display: block;
  float: left;
}

.p-shop-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  float: right;
}

.p-shop-sns__item {
  width: 26px;
  display: block;
}
.p-shop-sns__item + .p-shop-sns__item {
  margin-left: 20px;
}

/* 動画 */
/* ------------------------------------ */
.p-movie {
  background-color: #231815;
}

.p-movie__inner {
  max-width: 880px;
  margin: auto;
  padding: 120px 40px 110px;
}

.p-movie-wrap {
  padding-top: 56.25%;
  position: relative;
}
.p-movie-wrap > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* バナー */
/* ------------------------------------ */
.p-banner__img {
  margin-top: 30px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-banner__foot {
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.p-banner__foot > span:first-child {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 600;
}

/* インスタグラムキャンペーン */
/* ------------------------------------ */
.p-instagram {
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.p-instagram__title {
  width: 324px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.p-instagram__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 535px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #686868;
  border-radius: 12px;
  overflow: hidden;
}
.p-instagram__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 60px;
  font-size: 2.6rem;
  font-weight: bold;
  text-decoration: none;
}
.p-instagram__link--account {
  color: #fff;
  background-color: #686868;
}
.p-instagram__link--full {
  width: 100%;
}
.p-instagram-wrap {
  padding: 40px 60px;
  margin-top: 90px;
  border: 10px solid #231815;
}

/* キャンペーン */
/* ------------------------------------ */
.p-campaign {
  padding-top: 100px;
  padding-bottom: 80px;
}
.p-campaign__head {
  text-align: center;
}
.p-campaign__title {
  color: #fff;
  font-size: 5rem;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.p-campaign__lead {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-campaign__contents {
  padding-top: 90px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-campaign__text {
  width: 60%;
  line-height: 2;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-align: justify;
}
.p-campaign__img {
  width: 35%;
  padding-right: 1.25%;
  position: relative;
}
.p-campaign__img img {
  width: 100%;
  position: relative;
}

/* インスタグラム投稿一覧 */
/* ------------------------------------ */
.p-post-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ページ下部のナビゲーション */
/* ------------------------------------ */
.p-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.p-footer-nav__item {
  text-align: center;
  margin-right: 1.5em;
  padding-right: 1.5em;
  line-height: 1;
  letter-spacing: 0.1em;
  border-right: 1px solid #000;
}
.p-footer-nav__item:first-child {
  border-left: 1px solid #000;
  padding-left: 1.5em;
}
.p-footer-nav__item:last-child {
  margin-right: 0;
}

.p-footer-nav__link {
  font-style: italic;
  text-decoration: none;
}

/* フッター */
/* ------------------------------------ */
.p-footer {
  padding-top: 100px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}
.p-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer__logo {
  display: inline-block;
  margin-bottom: 70px;
}
.p-footer__label {
  color: #000;
  padding: 0.25em 1em;
  border-radius: 12px;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #b7b5b4;
}
.p-footer__name {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 20px 0 10px;
}
.p-footer__info {
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.p-footer__info a {
  text-decoration: none;
}
.p-footer__note {
  border: 1px solid #686868;
  font-size: 1.2rem;
  letter-spacing: normal;
  color: #b7b5b4;
  display: inline-block;
  font-family: "游ゴシック体", "Yu Gothic", yugothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  padding: 0.75em 1.5em;
  margin-bottom: 60px;
}
.p-footer__copy {
  letter-spacing: 0.1em;
  color: #686868;
}

/* margin */
.u-m-auto {
  margin: auto;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.u-mt-auto {
  margin-top: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mb-auto {
  margin-bottom: auto;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.js-header {
  -webkit-transition: 0.2s ease transform;
  transition: 0.2s ease transform;
}
.js-header.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.js-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  padding-top: 10px;
  padding-bottom: 10px;
}
.js-header.fixed .p-header-bar__title {
  width: 120px;
}
/* Swiperの調整 */
/* ------------------------------------ */
.swiper-button-next, .swiper-button-prev {
  width: 14px;
  height: 22px;
  color: #eee;
  margin-top: initial;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 22px;
}

.swiper-pagination-bullet-active {
  background-color: #333;
}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.667vw;
  }
}

@media (max-width: 749px) {
  body {
    font-size: 1.4rem;
  }
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-section {
    padding: 60px 0;
  }
  .c-navigation__item {
    padding-right: 2.403vw;
    padding-left: 2.403vw;
  }
  .c-navigation__item:first-child {
    padding-left: 0;
  }
  .c-navigation__link {
    font-size: 2.6666666667vw;
    letter-spacing: 0.12em;
  }
  .c-navigation__link--instagram {
    width: 20px;
  }
  .c-section-head__en img {
    width: auto;
    height: 40px;
  }
  .c-section-head__lead {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .c-section-head__note {
    font-size: 1rem;
    line-height: 1.8;
  }
  .c-link-icon::before {
    width: 1em;
    height: 1em;
    top: 0.6em;
    right: 0.6em;
  }
  .c-pagetop {
    width: 36px;
  }
  .p-header__img {
    width: 100%;
    height: auto;
    margin: 10px;
    margin: 0;
    padding: 10px;
    border-radius: 0;
  }
  .p-header__logo {
    width: 100%;
  }
  .p-header-bar {
    padding: 2.67vw 2.003vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-header-bar__title {
    width: 64px;
  }
  .p-mainvisual {
    background-size: contain;
  }
  .p-mainvisual__text {
    max-width: 300px;
    padding: 40px 0 80px;
  }
  .p-introduce .c-section-head__title img {
    width: 140px;
  }
  .p-event-wrap {
    padding-top: 25px;
  }
  .p-event {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 20px;
  }
  .p-event:nth-child(3n) {
    margin-right: 16px;
  }
  .p-event:nth-child(2n) {
    margin-right: 0;
  }
  .p-event__number {
    width: 40px;
    left: -10px;
    top: -5px;
  }
  .p-event__body {
    padding: 10px 5px;
  }
  .p-event__meta {
    margin-bottom: 20px;
  }
  .p-event__name {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  .p-event__info {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .p-event__text {
    margin-bottom: 18px;
    font-size: 1.2rem;
  }
  .p-event__button .c-button {
    padding: 0.8em 1.6em 0.8em 0.8em;
    font-size: 1.2rem;
    line-height: 1.2;
    border-radius: 30px;
  }
  .p-event__button .c-button::after {
    right: 0.8em;
  }
  .p-event-hp {
    width: 16vw;
  }
  .p-event-sns__item {
    width: 4.267vw;
  }
  .p-event-sns__item + .p-event-sns__item {
    margin-left: 2.667vw;
  }
  .p-shop-wrap {
    padding-top: 25px;
  }
  .p-shop {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 20px;
  }
  .p-shop:nth-child(3n) {
    margin-right: 16px;
  }
  .p-shop:nth-child(2n) {
    margin-right: 0;
  }
  .p-shop__body {
    padding: 10px 5px;
  }
  .p-shop__meta {
    margin-bottom: 20px;
  }
  .p-shop__name {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  .p-shop__info {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .p-shop__text {
    margin-bottom: 18px;
    font-size: 1.2rem;
  }
  .p-shop__button .c-button {
    padding: 0.8em 1.6em 0.8em 0.8em;
    font-size: 1.2rem;
    line-height: 1.2;
    border-radius: 30px;
  }
  .p-shop__button .c-button::after {
    right: 0.8em;
  }
  .p-shop-hp {
    width: 16vw;
  }
  .p-shop-sns__item {
    width: 4.267vw;
  }
  .p-shop-sns__item + .p-shop-sns__item {
    margin-left: 2.667vw;
  }
  .p-movie__inner {
    padding: 40px 20px;
  }
  .p-instagram {
    padding-top: 0;
  }
  .p-instagram__title {
    max-width: 100%;
    width: 180px;
    margin-bottom: 20px;
  }
  .p-instagram__meta {
    width: 100%;
    max-width: 300px;
  }
  .p-instagram__link {
    height: 40px;
    font-size: 1.4rem;
  }
  .p-instagram-wrap {
    margin-top: 40px;
    padding: 30px 15px;
  }
  .p-campaign__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .p-campaign__lead {
    font-size: 1.5rem;
    padding-right: 20px;
    padding-left: 20px;
    text-align: left;
  }
  .p-campaign__contents {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .p-campaign__text {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-campaign__img {
    width: 100%;
    max-width: 325px;
    margin: 0 auto 40px;
    padding: 0 30px 0 15px;
  }
  .p-footer-nav {
    font-size: 1.2rem;
  }
  .p-footer-nav__item {
    margin-right: 1em;
    padding-right: 1em;
  }
  .p-footer {
    padding-top: 50px;
  }
  .p-footer__logo {
    width: 160px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .p-footer__label {
    margin-bottom: 10px;
  }
  .p-footer__name {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 1.5rem;
  }
  .p-footer__info {
    margin-bottom: 40px;
  }
  .p-footer__note {
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: left;
  }
  .p-footer__copy {
    font-size: 1rem;
  }
  .p-footer .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
  .u-hidden-sp {
    display: none;
  }
  .u-spbr {
    display: inline-block;
  }
  .swiper-button-next, .swiper-button-prev {
    width: 1.867vw;
    height: 2.933vw;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2.933vw;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 4px;
  }

  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 750px) and (max-width: 1119px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .c-navigation__item {
    padding-right: 2.009vw;
    padding-left: 2.009vw;
  }
  .p-header-bar__title {
    width: 140px;
  }
  .p-mainvisual__text {
    padding: 80px 0 100px;
  }
  .p-event {
    width: calc(50% - 20px);
  }
  .p-event:nth-child(3n) {
    margin-right: 40px;
  }
  .p-event:nth-child(2n) {
    margin-right: 0;
  }
  .p-shop {
    width: calc(50% - 20px);
  }
  .p-shop:nth-child(3n) {
    margin-right: 40px;
  }
  .p-shop:nth-child(2n) {
    margin-right: 0;
  }
  .p-movie__inner {
    padding: 80px 40px;
  }
  .p-footer__note {
    font-size: 1.2rem;
  }
  .p-footer__copy {
    font-size: 1.2rem;
  }
  .u-hidden-tab {
    display: none;
  }
}

@media (min-width: 1120px) {
  .c-button:hover, .c-button:focus {
    opacity: 0.7;
  }
  .c-button--rev:hover, .c-button--rev:focus {
    opacity: 0.7;
  }
  .c-navigation__link:hover, .c-navigation__link:focus {
    opacity: 0.7;
  }
  .p-mainvisual__text {
    padding: 80px 0 175px;
  }
  .p-event-hp:hover, .p-event-hp:focus {
    opacity: 0.7;
  }
  .p-event-sns__item:hover, .p-event-sns__item:focus {
    opacity: 0.7;
  }
  .p-shop-hp:hover, .p-shop-hp:focus {
    opacity: 0.7;
  }
  .p-shop-sns__item:hover, .p-shop-sns__item:focus {
    opacity: 0.7;
  }
  .p-banner__img:hover, .p-banner__img:focus {
    opacity: 0.7;
  }
  .u-hidden-pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */