@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", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #231815;
  line-height: 1.5;
  background: #fff;
  -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;
  background: #fff;
  color: #231815;
}

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

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

.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: #fff;
  color: #231815;
  border: 1px solid currentColor;
  border-radius: 20px;
  text-decoration: none;
}

.c-button--icon {
  padding-right: 3.2em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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_black.svg) no-repeat center center/contain;
}

/* ナビゲーション */
/* ------------------------------------ */
.c-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-navigation__item {
  position: relative;
  padding: 0.2em 1.5em;
  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: "｜";
  color: #a2803c;
  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;
  color: #a2803c;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* セクション共通見出し */
/* ------------------------------------ */
.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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.c-section-head__jp {
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
}
.c-section-head__en {
  color: #a2803c;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  margin-top: 15px;
  line-height: 1;
}
.c-section-head__lead {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.c-section-head__text {
  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;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 2;
}
.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;
  width: 62px;
  z-index: 30;
}

/* ヘッダー */
/* ------------------------------------ */
.p-header__img {
  position: relative;
  width: calc(100% - 40px);
  height: 680px;
  margin: 20px;
  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;
  border-radius: 12px;
  background: transparent url(../img/hd_photo.jpg) no-repeat center center/cover;
}

.p-header__logo {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 400px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header-bar {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 32px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #fff;
  z-index: 20;
}

.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 {
  margin: auto;
  padding-top: 120px;
  padding-bottom: 140px;
  position: relative;
  background: #000;
  color: #fff;
  margin-top: 30px;
}
.p-mainvisual__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: 0.1em;
  z-index: 2;
  margin-left: 40px;
}
.p-mainvisual__lead {
  font-size: 3.6rem;
  line-height: 1.6;
  margin-bottom: 50px;
}
.p-mainvisual__text {
  font-size: 1.5rem;
  line-height: 2.4;
}

.p-mainvisual__img {
  width: 66.67%;
  margin-left: auto;
  padding-top: 36.67%;
  position: relative;
}
.p-mainvisual__img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6.818%;
  right: 3.75%;
  background: #a2803c;
}
.p-mainvisual__img img {
  position: absolute;
  top: 0;
  left: 0;
}

/* お店一覧 */
/* ------------------------------------ */
.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__link {
  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;
  font-weight: 600;
}
.p-shop__text {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.73;
}
.p-shop__access {
  text-align: center;
  font-weight: 600;
}

.p-shop-hp {
  width: 110px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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-history {
  padding-top: 100px;
  padding-bottom: 50px;
}
.p-history__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-history__text {
  width: 60%;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}
.p-history__col {
  width: 35%;
  padding-left: 1.25%;
}
.p-history__img {
  position: relative;
}
.p-history__img img {
  width: 100%;
  position: relative;
}
.p-history__img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #a2803c;
  top: 3%;
  left: 3%;
}
.p-history__caption {
  margin-top: 2em;
  color: #a2803c;
  text-align: center;
  font-size: 1.5rem;
}

/* バナー */
/* ------------------------------------ */
.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;
}
.p-banner__foot > span:first-child {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 600;
}

/* インスタグラムキャンペーン */
/* ------------------------------------ */
.p-instagram {
  padding-bottom: 20px;
}

.p-instagram-wrap {
  padding: 40px 60px;
  border: 10px solid #231815;
}

.p-instagram__title {
  width: 94%;
  margin: auto;
}

.p-instagram__account-wrap {
  text-align: center;
}

.p-instagram__account {
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0.4em 5.4em 0.4em 1.2em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background-color: #ede9df;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-instagram__account-icon {
  width: 48px;
  margin-right: 20px;
}

.p-instagram__account-name {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-instagram__hashtag {
  margin-bottom: 40px;
  font-size: 4rem;
  letter-spacing: 0.2em;
  text-align: center;
}
.p-instagram__hashtag a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.p-instagram__description {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}

/* キャンペーン詳細 */
/* ------------------------------------ */
.p-campaign {
  padding-top: 50px;
  padding-bottom: 40px;
  text-align: center;
}

.p-campaign__title {
  margin-bottom: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid #a08f63;
}

.p-campaign__label {
  padding: 8px;
  display: inline-block;
  color: #fff;
  background-color: #a08f63;
}

.p-campaign__name {
  padding: 8px 16px;
}

.p-campaign__period {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.p-campaign__note {
  letter-spacing: 0.1em;
}

/* 参加方法 */
/* ------------------------------------ */
.p-flow {
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid #231815;
}

.p-flow__head {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #fff;
  background-color: #231815;
}

.p-flow__body {
  padding: 30px 20px;
  display: inline-block;
  text-align: left;
}
.p-flow__body > *:last-child {
  margin-bottom: 0;
}
.p-flow__body dt {
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}
.p-flow__body dd {
  margin-bottom: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

.p-around {
  padding-top: 70px;
}
.p-around .c-section-head {
  margin-bottom: 60px;
  text-align: center;
}
.p-around__head {
  margin-bottom: 80px;
}
.p-around__head img {
  width: 100%;
  height: auto;
}
.p-around__banner {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
  height: 270px;
  padding: 0 20px;
  border: 1px solid #000;
}
.p-around__logo {
  width: 322px;
  margin-bottom: 20px;
}
.p-around__text {
  letter-spacing: 0.1em;
}

/* ページ下部のナビゲーション */
/* ------------------------------------ */
.p-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}
.p-footer-nav__item {
  position: relative;
  padding: 0.2em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.p-footer-nav__item + .p-footer-nav__item::before {
  content: "｜";
  color: #a2803c;
  position: absolute;
  top: 50%;
  left: -0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-footer-nav__item:last-child {
  padding-right: 0;
}
.p-footer-nav__link {
  display: block;
  color: #a2803c;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* フッター */
/* ------------------------------------ */
.p-footer {
  padding-top: 100px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}

.p-footer__name {
  margin-bottom: 50px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-footer__info {
  margin-bottom: 100px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.p-footer__info a {
  text-decoration: none;
}

.p-footer__img {
  position: absolute;
  bottom: 0;
  right: 90px;
}

.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.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

/* Swiperの調整 */
/* ------------------------------------ */
.swiper-button-next, .swiper-button-prev {
  width: 14px;
  height: 22px;
  color: #d3d3d3;
  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: #a2803c;
}

@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 {
    width: 100%;
  }
  .c-navigation__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
    margin: 0;
  }
  .c-navigation__item:first-child {
    padding-left: 0;
  }
  .c-navigation__link {
    color: #fff;
    font-size: 2.6666666667vw;
    letter-spacing: 0.12em;
  }
  .c-section-head__jp {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
  .c-section-head__lead {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .c-section-head__text {
    display: block;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .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;
    height: 230px;
    margin: auto;
    padding: 6.5% 0;
    border-radius: 0;
  }
  .p-header__logo {
    width: 50%;
  }
  .p-header-bar {
    padding: 2.67vw 2.003vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #a2803c;
  }
  .p-header-bar nav {
    width: 100%;
  }
  .p-mainvisual {
    padding: 30px 15px 60px;
  }
  .p-mainvisual__content {
    position: static;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-left: 0;
  }
  .p-mainvisual__lead {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
  .p-mainvisual__text {
    font-size: 1.4rem;
  }
  .p-mainvisual__img {
    margin-bottom: 20px;
    width: 95%;
    padding: 0;
  }
  .p-mainvisual__img img {
    position: relative;
    z-index: 2;
  }
  .p-introduce .c-section-head__title img {
    width: 140px;
  }
  .p-bisyu-haya-sushi .c-section-head__title img {
    width: 260px;
  }
  .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__link {
    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__access .c-button {
    width: 100%;
    padding: 0.8em 1.6em 0.8em 0.8em;
    font-size: 1.2rem;
    line-height: 1.2;
    border-radius: 30px;
  }
  .p-shop__access .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-history {
    padding-bottom: 0;
  }
  .p-history__contents {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .p-history__col {
    width: 70%;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .p-history__text {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-history__img {
    width: 100%;
    max-width: 325px;
    margin: 0 auto 40px;
    padding: 0 30px 0 15px;
  }
  .p-history__img::before {
    width: calc(100% - 45px);
    top: 15px;
    left: 30px;
  }
  .p-instagram-wrap {
    padding: 30px 15px;
  }
  .p-instagram__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-instagram__account {
    padding: 0.4em 3em 0.4em 1.2em;
  }
  .p-instagram__account-icon {
    width: 32px;
    margin-right: 12px;
  }
  .p-instagram__account-name {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .p-instagram__hashtag {
    font-size: 2.2rem;
  }
  .p-instagram__description {
    font-size: 1.5rem;
  }
  .p-campaign__title {
    font-size: 1.6rem;
  }
  .p-campaign__label {
    padding: 8px 6px;
  }
  .p-campaign__name {
    padding: 8px;
  }
  .p-campaign__period {
    font-size: 1.6rem;
  }
  .p-flow__head {
    font-size: 2rem;
  }
  .p-flow__body {
    padding: 24px 12px;
  }
  .p-flow__body dt {
    font-size: 1.6rem;
  }
  .p-flow__body dd {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .p-around .c-section-head .c-section-head__title img {
    width: 260px;
  }
  .p-around__head {
    margin-bottom: 40px;
  }
  .p-around__logo {
    width: 240px;
  }
  .p-around__text {
    font-size: 2vw;
  }
  .p-footer-nav {
    padding-right: 2vw;
    padding-left: 2vw;
  }
  .p-footer-nav__item {
    padding-right: 2.403vw;
    padding-left: 2.403vw;
  }
  .p-footer-nav__item:first-child {
    padding-left: 0;
  }
  .p-footer-nav__link {
    font-size: 2.6666666667vw;
    letter-spacing: 0.12em;
  }
  .p-footer {
    padding-top: 50px;
  }
  .p-footer .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
  .p-footer__name {
    margin-bottom: 30px;
  }
  .p-footer__info {
    margin-bottom: 40px;
  }
  .p-footer__img {
    position: relative;
    margin: 20px;
    right: unset;
    bottom: unset;
  }
  .p-footer__copy {
    font-size: 1rem;
  }
  .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;
  }
  .c-navigation__link {
    font-size: 1.25vw;
  }
  .p-header-bar {
    padding: 15px;
  }
  .p-header-bar__title {
    width: 20vw;
  }
  .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-nav__item {
    padding-right: 2.009vw;
    padding-left: 2.009vw;
  }
  .p-footer-nav__link {
    font-size: 1.25vw;
  }
  .p-footer__img {
    right: 75px;
  }
  .p-footer__copy {
    font-size: 1.2rem;
  }
  .u-hidden-tab {
    display: none;
  }
}

@media (min-width: 1120px) {
  .c-button:hover, .c-button:focus {
    color: #fff;
    background-color: #231815;
  }
  .c-button--icon:hover:after, .c-button--icon:focus:after {
    background: transparent url(../img/icon_link_white.svg) no-repeat center center/contain;
  }
  .c-navigation__link:hover, .c-navigation__link: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;
  }
  .p-instagram__account:hover, .p-instagram__account:focus {
    opacity: 0.7;
  }
  .p-footer-nav__link:hover, .p-footer-nav__link:focus {
    opacity: 0.7;
  }
  .u-hidden-pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */