@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;
}

/* ボタン */
/* ------------------------------------ */
.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 {
  color: #a2803c;
  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: 600px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}

.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;
  border-bottom: 1px solid #e8e8e8;
  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: 35px;
  padding-bottom: 55px;
  position: relative;
  color: #9f7f46;
}
.p-mainvisual__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
  z-index: 2;
  padding-top: 70px;
}
.p-mainvisual__logo {
  position: absolute;
  width: 104px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -90px;
}
.p-mainvisual__map {
  position: absolute;
  width: 216px;
  top: -70px;
  left: 50px;
}
.p-mainvisual__lead {
  font-size: 2.4rem;
  line-height: 1.9;
}

.p-mainvisual__img {
  position: relative;
  max-width: 900px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* 知多牛・知多和牛の紹介 */
/* ------------------------------------ */
.p-beef {
  background: #fafafa;
  padding-bottom: 60px;
}
.p-beef__head {
  color: #9f7f46;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  letter-spacing: 0.15em;
  padding-top: 50px;
  padding-bottom: 20px;
}
.p-beef__head::before, .p-beef__head::after {
  position: relative;
  display: inline-block;
  content: "";
  background: #9f7f46;
  width: 2px;
  height: 50px;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.p-beef__head::before {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.p-beef__head::after {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.p-beef__title {
  display: inline;
}
.p-beef__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-beef__col {
  width: 46.1538461538%;
}
.p-beef__thumb {
  margin-bottom: 20px;
}
.p-beef__thumb img {
  width: 100%;
  height: auto;
}
.p-beef__lead {
  color: #9f7f46;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.p-beef__text {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* お店一覧 */
/* ------------------------------------ */
.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__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-bottom: 25px;
}
.p-shop__beef {
  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;
  margin-right: 8px;
  width: 111px;
}
.p-shop__beef:last-child {
  margin-right: 0;
}
.p-shop__beef img {
  width: 100%;
  height: auto;
}

.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__col--content {
  width: 60%;
}
.p-history__col--image {
  width: 35%;
  padding-left: 1.25%;
}
.p-history__lead {
  color: #a2803c;
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
}
.p-history__text {
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}
.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: 0;
    /* 高さを0にしてpaddingで調整 */
    padding-top: 101.3333333333%;
    margin: auto;
    border-radius: 0;
    background: transparent url(../img/hd_photo_sp.jpg) no-repeat center center/cover;
  }
  .p-header__logo {
    width: 70%;
    right: auto;
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-header-bar {
    padding: 2.67vw 2.003vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #a2803c;
    border-bottom: none;
  }
  .p-header-bar nav {
    width: 100%;
  }
  .p-mainvisual {
    padding: 30px 25px 0;
  }
  .p-mainvisual__content {
    padding-top: 19%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-mainvisual__logo {
    top: -5.3vw;
    width: 13.3vw;
  }
  .p-mainvisual__map {
    position: relative;
    width: 29vw;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 4.2vw;
    top: auto;
    left: auto;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-mainvisual__lead {
    font-size: 3vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-mainvisual__img {
    padding: 0;
  }
  .p-beef {
    padding-bottom: 40px;
  }
  .p-beef__head {
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .p-beef__head::before, .p-beef__head::after {
    position: absolute;
    width: 1px;
  }
  .p-beef__head::before {
    top: 36%;
    left: 50%;
    -webkit-transform: translate(-180px, 0%) rotate(-35deg);
            transform: translate(-180px, 0%) rotate(-35deg);
  }
  .p-beef__head::after {
    top: 36%;
    right: 50%;
    -webkit-transform: translate(180px, 0%) rotate(35deg);
            transform: translate(180px, 0%) rotate(35deg);
  }
  .p-beef__title {
    font-size: 1.8rem;
    line-height: 1.6;
    display: inline-block;
  }
  .p-beef__container {
    display: block;
  }
  .p-beef__col {
    width: auto;
    margin-top: 40px;
  }
  .p-beef__col:first-child {
    margin-top: 0;
  }
  .p-beef__thumb {
    width: 100%;
  }
  .p-beef__lead {
    font-size: 2.2rem;
  }
  .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__category {
    margin-bottom: 15px;
  }
  .p-shop__beef {
    width: 18vw;
  }
  .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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-history__col--content {
    width: 100%;
  }
  .p-history__col--image {
    width: 70%;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .p-history__lead {
    text-align: center;
    margin-bottom: 30px;
  }
  .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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-header-bar__title {
    width: 20vw;
  }
  .p-mainvisual__content {
    padding-top: 140px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-mainvisual__map {
    position: relative;
    margin-right: 40px;
    top: auto;
    left: auto;
  }
  .p-beef__head::before, .p-beef__head::after {
    position: absolute;
    width: 1px;
    height: 70px;
  }
  .p-beef__head::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-260px, 0%) rotate(-35deg);
            transform: translate(-260px, 0%) rotate(-35deg);
  }
  .p-beef__head::after {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(260px, 0%) rotate(35deg);
            transform: translate(260px, 0%) rotate(35deg);
  }
  .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;
  }
}

@media (max-width: 1119px) {
  .p-mainvisual__logo {
    top: -20px;
  }
}
/*# sourceMappingURL=style.css.map */