@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* style */
/* 目次 */
/* __00: 初期設定ファイル読み込み */
/* __10: リセットCSS */
/* __20: 共通設定 */
/* __30: フォントサイズ */
/* __40: 投稿がない時 */
/* __50: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*note: INDEXの表示は、コメントの「 index: 」でハイライト表示してください。*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: 外部フォントCSSファイルの読み込み*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
/* Body要素の背景色 */
/* Body要素の文字色 */
/* Body要素の書体 */
/*index: コンテンツ幅 */
/*index: カラム */
/* リセット用のプレイスフォルダ */
html .lp, body .lp {
  border: 0;
  font-family: inherit;
  font-size: 64%;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body .lp {
  line-height: 1;
}

html .lp, body .lp {
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body .lp {
  background-color: #fff;
  color: #000000;
}

body .lp a {
  color: #a27300;
}

body .lp a:hover {
  color: #14d0b3;
}

body .lp a:active {
  color: #14d0b3;
}

body .lp a:visited {
  color: #14d0b3;
}

body .lp {
  font-family: "Shippori Mincho", serif;
  font-size: 64%;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1.8;
}

/* リセット処理関数 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

/* __20: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
html .lp {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

html .lp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
  line-break: strict;
}

body {
  opacity: 0;
  will-change: opacity;
}

body .lp img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

body .lp figure {
  margin: 0;
}

body .lp #wrapper {
  overflow-x: hidden;
  margin-bottom: 180px;
}

@media only screen and (max-width: 414px) {
  body .lp #wrapper {
    margin-bottom: 160px;
  }
}

body .lp .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body .lp .container {
    padding: 4rem 0;
  }
}

@media only screen and (max-width: 414px) {
  body .lp .container {
    padding: 4rem 0;
  }
}

@media only screen and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}

.nopc {
  display: none;
}

@media only screen and (max-width: 767px) {
  .nopc {
    display: block;
  }
}

.anchor {
  display: block;
  padding-top: 4rem;
  margin-top: -4rem;
}

@media only screen and (max-width: 767px) {
  .anchor {
    padding-top: 6rem;
    margin-top: -6rem;
  }
}

.hintBrowser {
  will-change: transform opacity;
}

/* __30: フォントサイズ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body h2 {
  margin: 0;
}

body h3 {
  margin: 0;
}

/* __50: 外部ファイル読み込み */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* pages */
/* 目次 */
/* __00: pagesファイル読み込み

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: pagesファイル読み込み
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* lp */
/* 目次 */
/* __00: 初期設定 */
/* __10: リード */
/* __20_1: 1.冬を彩る３つの美味しさ！ */
/* __20_2: 2.1/2日分＊の野菜が摂れる! */
/* __20_3: 3.おうちでも本気の鍋定食! */
/* __20_4: 4.約20年のご愛顧に感謝! */
/* __30: すき焼き定食 */
/* __40: チゲ定食 */
/* __50: しょうが鍋定食 */
/* __60: ナビゲーション */
/* __70: Twitter */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.lp .bg-accent {
  background-image: url("../images/contents_bg.png");
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .lp .bg-accent {
    background-size: contain;
  }
}

.lp .headline {
  padding-bottom: 4rem;
}

@media only screen and (max-width: 767px) {
  .lp .headline {
    padding-bottom: 2rem;
  }
}

.lp .headline > * {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 767px) {
  .lp .headline > * {
    margin-bottom: 1rem;
  }
}

.lp .headline > *:last-child {
  margin-bottom: 0;
}

.lp .headline h3 {
  background-color: #a27300;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.3rem;
  padding: 0.4rem 0 !important;
}

@media only screen and (max-width: 767px) {
  .lp .headline h3 {
    font-size: 3.2vw;
    padding: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .lp .headline h3 {
    font-size: 14px;
  }
}

.lp .fadein,
.lp .fadein-up {
  will-change: opacity, transform;
  -webkit-transform: rotate(0.1deg);
          transform: rotate(0.1deg);
}

.lp .parallax-main {
  will-change: transform;
}

.lp .coming-soon {
  position: relative;
}

.lp .coming-soon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 6rem);
  background-color: #595757;
  opacity: 0.85;
  right: 0;
  top: 0;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .lp .coming-soon::before {
    height: calc(100% - 3rem);
  }
}

@media only screen and (max-width: 414px) {
  .lp .coming-soon::before {
    height: calc(100% - 2rem);
  }
}

.lp .coming-soon::after {
  position: absolute;
  content: "coming soon...";
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 4.4rem;
  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;
  text-align: center;
  top: -2rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
}

@media only screen and (max-width: 767px) {
  .lp .coming-soon::after {
    font-size: 4.4vw;
    top: -3rem;
  }
}

@media only screen and (max-width: 414px) {
  .lp .coming-soon::after {
    font-size: 2.2rem;
    top: -2rem;
  }
}

.lp .coming-soon .parallax-main {
  -webkit-transform: scale(1.5) !important;
          transform: scale(1.5) !important;
}

@media only screen and (max-width: 767px) {
  .lp .coming-soon .parallax-main {
    -webkit-transform: scale(1.8) !important;
            transform: scale(1.8) !important;
  }
}

/* __10: リード */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-lead .kv {
  height: 55vw;
}

@media only screen and (max-width: 767px) {
  #lp-lead .kv {
    height: 73vw;
  }
}

#lp-lead .kv video {
  width: 100%;
}

#lp-lead .lead {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}

#lp-lead .lead-wrapper {
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  #lp-lead .lead-wrapper {
    background-size: contain;
  }
}

@media only screen and (max-width: 767px) {
  #lp-lead .lead {
    max-width: 750px;
    padding: 4rem 0;
  }
}

#lp-lead .lead::before {
  position: absolute;
  content: "";
  width: 320px;
  height: 245px;
  background-image: url("../images/icon_item.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -33px;
  bottom: -17px;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  #lp-lead .lead::before {
    width: 32vw;
    height: 22vw;
    right: -22px;
    bottom: 3rem;
  }
}

#lp-lead .lead .text {
  width: 90%;
  max-width: 838px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #lp-lead .lead .text {
    max-width: 410px;
    width: 55vw;
    min-width: 205px;
  }
}

#lp-lead .lead .text img {
  width: 100%;
}

/* __20_1: 1.冬を彩る３つの美味しさ！ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail01-wrapper {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

#lp-detail01 .inner {
  padding-bottom: 8rem;
  width: 90%;
  max-width: 945px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner {
    padding-bottom: 4rem;
    max-width: 601px;
  }
}

#lp-detail01 .inner:last-child {
  padding-bottom: 0;
}

#lp-detail01 .inner.lineup .headline h2 {
  width: 70%;
  max-width: 493px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.lineup .headline h2 {
    width: 80%;
  }
}

#lp-detail01 .inner.lineup .headline h2 img {
  width: 100%;
}

#lp-detail01 .inner.lineup .lineup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#lp-detail01 .inner.lineup .lineup-list .item {
  width: 30%;
  max-width: 216px;
}

#lp-detail01 .inner.lineup .lineup-list .item-img {
  display: block;
  width: 100%;
  height: 198px;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.lineup .lineup-list .item-img {
    height: 22vw;
  }
}

#lp-detail01 .inner.lineup .lineup-list .item-img .img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#lp-detail01 .inner.lineup .lineup-list .item-img .img.img01 {
  background-image: url("../images/contents01_img01.png");
}

#lp-detail01 .inner.lineup .lineup-list .item-img .img.img02 {
  background-image: url("../images/contents01_img02.png");
}

#lp-detail01 .inner.lineup .lineup-list .item-img .img.img03 {
  background-image: url("../images/contents01_img03.png");
}

#lp-detail01 .inner.lineup .lineup-list .item-name {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 1rem auto;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.lineup .lineup-list .item-name {
    font-size: 2.4vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.lineup .lineup-list .item-name {
    font-size: 12px;
  }
}

@media only screen and (max-width: 374px) {
  #lp-detail01 .inner.lineup .lineup-list .item-name {
    font-size: 11px;
  }
}

/* __20_2: 2.1/2日分＊の野菜が摂れる! */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail01 .inner.healthy .headline h2 {
  width: 70%;
  max-width: 525px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.healthy .headline h2 {
    width: 80%;
  }
}

#lp-detail01 .inner.healthy .headline h2 img {
  width: 100%;
}

#lp-detail01 .inner.healthy .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2.2;
  /*
                * PCレイアウト
                */
  /*
                * SPレイアウト
                */
}

#lp-detail01 .inner.healthy .text-box.nopc {
  display: none;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .text-box {
    position: relative;
    line-height: 1.8;
  }
  #lp-detail01 .inner.healthy .text-box.nopc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#lp-detail01 .inner.healthy .text-box .text-area p {
  font-size: 2.4rem;
  margin: 0;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  #lp-detail01 .inner.healthy .text-box .text-area p {
    font-size: 2.3vw;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .text-box .text-area p {
    font-size: 3.2vw;
    letter-spacing: 0.1rem;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.healthy .text-box .text-area p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 374px) {
  #lp-detail01 .inner.healthy .text-box .text-area p {
    font-size: 11px;
  }
}

#lp-detail01 .inner.healthy .text-box .img-box .img {
  position: absolute;
  z-index: -1;
}

#lp-detail01 .inner.healthy .text-box .img-box .img img {
  width: 100%;
}

#lp-detail01 .inner.healthy .text-box:nth-child(2) .text-area {
  width: 70%;
  max-width: 632px;
}

#lp-detail01 .inner.healthy .text-box:nth-child(2) .img-box {
  position: relative;
  width: 33%;
}

#lp-detail01 .inner.healthy .text-box:nth-child(2) .img-box .img {
  width: 335px;
  top: -40px;
  right: -24px;
}

#lp-detail01 .inner.healthy .text-box:nth-child(3) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

#lp-detail01 .inner.healthy .text-box:nth-child(3) .text-area {
  width: 90%;
  max-width: 812px;
  margin-left: auto;
}

#lp-detail01 .inner.healthy .text-box:nth-child(3) .img-box {
  position: relative;
}

#lp-detail01 .inner.healthy .text-box:nth-child(3) .img-box .img {
  width: 335px;
  top: 0;
  left: -180px;
}

#lp-detail01 .inner.healthy .text-box:nth-child(4) .img-box:nth-child(1) {
  position: relative;
  width: 21%;
}

#lp-detail01 .inner.healthy .text-box:nth-child(4) .img-box:nth-child(1) .img {
  width: 335px;
  top: -60px;
  left: -80px;
}

#lp-detail01 .inner.healthy .text-box:nth-child(4) .text-area {
  width: 58%;
  max-width: 548px;
  margin: 0 auto;
}

#lp-detail01 .inner.healthy .text-box:nth-child(4) .img-box:nth-child(3) {
  position: relative;
  width: 21%;
}

#lp-detail01 .inner.healthy .text-box:nth-child(4) .img-box:nth-child(3) .img {
  width: 335px;
  top: -30px;
  right: -80px;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .text-box:nth-child(5) .img-box {
    position: absolute;
    width: 43%;
    max-width: 206px;
    right: 0;
  }
}

@media only screen and (max-width: 767px) and (max-width: 414px) {
  #lp-detail01 .inner.healthy .text-box:nth-child(5) .img-box {
    top: -10px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .text-box:nth-child(6) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
  #lp-detail01 .inner.healthy .text-box:nth-child(6) .img-box {
    position: absolute;
    width: 40%;
    max-width: 230px;
    left: -16vw;
  }
  #lp-detail01 .inner.healthy .text-box:nth-child(6) .text-area {
    width: 81%;
    margin-left: auto;
  }
  #lp-detail01 .inner.healthy .text-box:nth-child(7) .img-box {
    position: absolute;
    left: -14vw;
    width: 45%;
    max-width: 270px;
    top: -4vw;
  }
  #lp-detail01 .inner.healthy .text-box:nth-child(7) .text-area {
    width: 81%;
    margin-left: auto;
  }
  #lp-detail01 .inner.healthy .text-box:nth-child(8) .img-box {
    position: absolute;
    right: -7vw;
    width: 39%;
    max-width: 230px;
    top: -60px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 414px) {
  #lp-detail01 .inner.healthy .text-box:nth-child(8) .img-box {
    top: -40px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .text-box:nth-child(8) .text-area {
    width: 74%;
    text-align: right;
  }
}

#lp-detail01 .inner.healthy .attention-box {
  padding-top: 4rem;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .attention-box {
    padding-top: 1rem;
  }
}

#lp-detail01 .inner.healthy .attention-box p {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.healthy .attention-box p {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.healthy .attention-box p {
    font-size: 10px;
  }
}

/* __20_3: 3.おうちでも本気の鍋定食! */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail01 .inner.takeout .headline h2 {
  width: 70%;
  max-width: 529px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.takeout .headline h2 {
    width: 80%;
  }
}

#lp-detail01 .inner.takeout .headline h2 img {
  width: 100%;
}

#lp-detail01 .inner.takeout .headline h3 {
  position: relative;
}

#lp-detail01 .inner.takeout .headline h3::before {
  position: absolute;
  content: "";
  width: 182px;
  height: 169px;
  background-image: url("../images/contents03_img01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -41px;
  top: -69px;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.takeout .headline h3::before {
    width: 150px;
    height: 130px;
    right: -40px;
    top: -50px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.takeout .headline h3::before {
    width: 15.6vw;
    height: 14.4vw;
    right: -4vw;
    top: -6vw;
  }
}

/* __20_4: 4.約20年のご愛顧に感謝! */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail01 .inner.history .headline {
  padding-bottom: 2rem;
}

#lp-detail01 .inner.history .headline h2 {
  width: 70%;
  max-width: 533px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.history .headline h2 {
    width: 80%;
  }
}

#lp-detail01 .inner.history .headline h2 img {
  width: 100%;
}

#lp-detail01 .inner.history .text-box {
  padding-bottom: 2rem;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .text-box {
    padding-bottom: 3rem;
  }
}

#lp-detail01 .inner.history .text-box p {
  margin: 0;
  text-align: justify;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.4;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .text-box p {
    font-size: 2rem;
    line-height: 2.2;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .text-box p {
    font-size: 3.4vw;
    line-height: 1.8;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.history .text-box p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .gallery {
    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;
  }
}

#lp-detail01 .inner.history .gallery .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .gallery .item {
    width: 46%;
    display: block !important;
    margin-top: 2rem !important;
  }
  #lp-detail01 .inner.history .gallery .item:nth-child(1), #lp-detail01 .inner.history .gallery .item:nth-child(2) {
    margin-top: 0 !important;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#lp-detail01 .inner.history .gallery .item:nth-child(2n) .item-caption p {
  text-align: right;
}

#lp-detail01 .inner.history .gallery .item-img {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .gallery .item-img {
    width: 100% !important;
    height: auto !important;
    max-height: inherit !important;
  }
}

#lp-detail01 .inner.history .gallery .item-img img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .gallery .item-img img {
    width: 100% !important;
    max-width: inherit !important;
    position: static !important;
  }
}

#lp-detail01 .inner.history .gallery .item-caption {
  width: 48%;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .gallery .item-caption {
    width: 100% !important;
    margin: 1rem auto 0 !important;
    line-height: 1.4;
  }
}

#lp-detail01 .inner.history .gallery .item-caption p {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item-caption p {
    font-size: 1.8vw;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail01 .inner.history .gallery .item-caption p {
    text-align: center !important;
    font-size: 2.4vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail01 .inner.history .gallery .item-caption p {
    font-size: 10px;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(1) .item-img {
  width: 51%;
  height: 36.1vw;
  max-height: 469px;
}

#lp-detail01 .inner.history .gallery .item:nth-child(1) .item-img img {
  position: absolute;
  width: 51%;
  max-width: 662px;
  left: 0;
  z-index: 2;
}

#lp-detail01 .inner.history .gallery .item:nth-child(2) {
  margin-top: -26rem;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(2) {
    margin-top: -21vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(2) .item-img {
  width: 45%;
  height: 31.3vw;
  max-height: 406px;
}

#lp-detail01 .inner.history .gallery .item:nth-child(2) .item-img img {
  position: absolute;
  width: 45%;
  max-width: 574px;
  right: 100px;
  z-index: 1;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(2) .item-img img {
    right: 8vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(2) .item-caption {
  margin: auto 102px 0 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(2) .item-caption {
    margin-right: 9vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(3) {
  margin-top: 4rem;
}

#lp-detail01 .inner.history .gallery .item:nth-child(3) .item-img {
  width: 47%;
  height: 33.2vw;
  max-height: 431px;
}

#lp-detail01 .inner.history .gallery .item:nth-child(3) .item-img img {
  position: absolute;
  width: 47%;
  max-width: 609px;
  left: 77px;
  z-index: 2;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(3) .item-img img {
    left: 6.2vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(3) .item-caption {
  margin-left: 109px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(3) .item-caption {
    margin-left: 9vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(4) {
  margin-top: -26.7rem;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(4) {
    margin-top: -20vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(4) .item-img {
  width: 49%;
  height: 34.3vw;
  max-height: 445px;
}

#lp-detail01 .inner.history .gallery .item:nth-child(4) .item-img img {
  position: absolute;
  width: 49%;
  max-width: 637px;
  right: 0;
  z-index: 1;
}

#lp-detail01 .inner.history .gallery .item:nth-child(4) .item-caption {
  margin: auto 0 10rem 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(4) .item-caption {
    margin-bottom: 9vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(5) {
  margin-top: -5rem;
}

#lp-detail01 .inner.history .gallery .item:nth-child(5) .item-img {
  width: 48%;
  height: 33.9vw;
  max-height: 440px;
}

#lp-detail01 .inner.history .gallery .item:nth-child(5) .item-img img {
  position: absolute;
  width: 48%;
  max-width: 621px;
  left: 0;
  z-index: 1;
}

#lp-detail01 .inner.history .gallery .item:nth-child(5) .item-caption {
  width: 50%;
  margin-top: 10rem;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(5) .item-caption {
    margin-top: 9vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(6) {
  margin-top: -17rem;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(6) {
    margin-top: -14vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(6) .item-img {
  width: 53%;
  height: 37.2vw;
  max-height: 483px;
}

#lp-detail01 .inner.history .gallery .item:nth-child(6) .item-img img {
  position: absolute;
  width: 53%;
  max-width: 682px;
  right: 87px;
  z-index: 1;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(6) .item-img img {
    right: 7vw;
  }
}

#lp-detail01 .inner.history .gallery .item:nth-child(6) .item-caption {
  margin: 19rem 220px auto 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail01 .inner.history .gallery .item:nth-child(6) .item-caption {
    margin: 15vw 18vw auto 0;
  }
}

/* __30: すき焼き定食 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail02 .detail-header {
  width: 100%;
  height: 69vw;
  min-height: 900px;
  max-height: 1350px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail02 .detail-header {
    min-height: inherit;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-header {
    height: 70vw;
  }
}

#lp-detail02 .detail-header .main {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#lp-detail02 .detail-header .main .mv {
  display: block;
  width: 100%;
  height: 100%;
}

#lp-detail02 .detail-header .main .mv .img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/sukiyaki/sukiyaki_main.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-header .main .mv .img {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

#lp-detail02 .detail-header .main h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -15vw;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  text-align: right;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-header .main h2 {
    top: 0;
    width: 100%;
  }
}

#lp-detail02 .detail-header .main h2 img {
  height: 39vw;
  min-height: 597px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail02 .detail-header .main h2 img {
    height: 43vw;
    min-height: 330px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-header .main h2 img {
    height: 67vw;
    min-height: inherit;
    max-height: 502px;
  }
}

#lp-detail02 .detail-inner .text-box {
  padding-bottom: 6rem;
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .text-box {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3rem;
  }
}

#lp-detail02 .detail-inner .text-box p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.4;
  margin: 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail02 .detail-inner .text-box p {
    font-size: 1.8rem;
    line-height: 2.2;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .text-box p {
    font-size: 3.27vw;
    line-height: 1.8;
    text-align: justify;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail02 .detail-inner .text-box p {
    font-size: 14px;
  }
}

#lp-detail02 .detail-inner .menu {
  width: 100%;
  max-width: 934px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .menu {
    width: 90%;
  }
}

#lp-detail02 .detail-inner .menu-list {
  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;
  list-style: none;
}

#lp-detail02 .detail-inner .menu-list .item {
  width: 30%;
  max-width: 295px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .menu-list .item {
    width: 48%;
    max-width: inherit;
  }
}

#lp-detail02 .detail-inner .menu-list .item-img {
  display: block;
  width: 100%;
  height: 194px;
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .menu-list .item-img {
    height: 26vw;
  }
}

#lp-detail02 .detail-inner .menu-list .item-img .img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#lp-detail02 .detail-inner .menu-list .item-img .img.img01 {
  background-image: url("../images/sukiyaki/sukiyaki_img01.png");
}

#lp-detail02 .detail-inner .menu-list .item-img .img.img02 {
  background-image: url("../images/sukiyaki/sukiyaki_img02.png");
}

#lp-detail02 .detail-inner .menu-list .item-img .img.img03 {
  background-image: url("../images/sukiyaki/sukiyaki_img03.png");
}

#lp-detail02 .detail-inner .menu-list .item-caption {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (max-width: 1240px) {
  #lp-detail02 .detail-inner .menu-list .item-caption {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .menu-list .item-caption {
    font-size: 2.4vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail02 .detail-inner .menu-list .item-caption {
    font-size: 12px;
  }
}

#lp-detail02 .detail-inner .menu-list .item.icon {
  position: relative;
  z-index: 1;
}

#lp-detail02 .detail-inner .menu-list .item.icon::before {
  position: absolute;
  content: "";
  width: 74px;
  height: 74px;
  background-image: url("../images/sukiyaki/icon_dubble.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -10px;
  left: -15px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .menu-list .item.icon::before {
    width: 10vw;
    height: 10vw;
    top: -3vw;
    left: 1vw;
  }
}

#lp-detail02 .detail-inner .menu-list .attention {
  width: 66%;
  font-size: 1.7rem;
  text-align: center;
  color: #bc141c;
  margin: -2rem 0 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media only screen and (max-width: 1240px) {
  #lp-detail02 .detail-inner .menu-list .attention {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail02 .detail-inner .menu-list .attention {
    font-size: 2.2vw;
    width: 100%;
    margin: 2rem auto;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail02 .detail-inner .menu-list .attention {
    font-size: 10px;
  }
}

/* __40: チゲ定食 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail03 .detail-header {
  width: 100%;
  height: 69vw;
  min-height: 900px;
  max-height: 1350px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail03 .detail-header {
    min-height: inherit;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-header {
    height: 70vw;
  }
}

#lp-detail03 .detail-header .main {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#lp-detail03 .detail-header .main .mv {
  display: block;
  width: 100%;
  height: 100%;
}

#lp-detail03 .detail-header .main .mv .img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/jjigae/jjigae_main.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-header .main .mv .img {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

#lp-detail03 .detail-header .main h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -25vw;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  text-align: right;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-header .main h2 {
    width: 100%;
  }
}

#lp-detail03 .detail-header .main h2 img {
  height: 26vw;
  min-height: 340px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail03 .detail-header .main h2 img {
    height: 30vw;
    min-height: 330px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-header .main h2 img {
    height: 44vw;
    min-height: inherit;
    max-height: 330px;
  }
}

#lp-detail03 .detail-inner .text-box {
  padding-bottom: 6rem;
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-inner .text-box {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3rem;
  }
}

#lp-detail03 .detail-inner .text-box p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.4;
  margin: 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail03 .detail-inner .text-box p {
    font-size: 1.8rem;
    line-height: 2.2;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-inner .text-box p {
    font-size: 3.27vw;
    line-height: 1.8;
    text-align: justify;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail03 .detail-inner .text-box p {
    font-size: 14px;
  }
}

#lp-detail03 .detail-inner .menu {
  width: 100%;
  max-width: 934px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-inner .menu {
    width: 90%;
  }
}

#lp-detail03 .detail-inner .menu-list {
  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;
  list-style: none;
}

#lp-detail03 .detail-inner .menu-list .item {
  width: 25%;
  max-width: 233px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-inner .menu-list .item {
    width: 48%;
    max-width: inherit;
    margin-top: 2rem;
  }
  #lp-detail03 .detail-inner .menu-list .item:nth-child(1), #lp-detail03 .detail-inner .menu-list .item:nth-child(2) {
    margin-top: 0;
  }
}

#lp-detail03 .detail-inner .menu-list .item-img {
  display: block;
  width: 100%;
  height: 155px;
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-inner .menu-list .item-img {
    height: 26vw;
  }
}

#lp-detail03 .detail-inner .menu-list .item-img .img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#lp-detail03 .detail-inner .menu-list .item-img .img.img01 {
  background-image: url("../images/jjigae/jjigae_img01.png");
}

#lp-detail03 .detail-inner .menu-list .item-img .img.img02 {
  background-image: url("../images/jjigae/jjigae_img02.png");
}

#lp-detail03 .detail-inner .menu-list .item-img .img.img03 {
  background-image: url("../images/jjigae/jjigae_img03.png");
}

#lp-detail03 .detail-inner .menu-list .item-img .img.img04 {
  background-image: url("../images/jjigae/jjigae_img04.png");
}

#lp-detail03 .detail-inner .menu-list .item-caption {
  margin: 0;
  padding-top: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (max-width: 1240px) {
  #lp-detail03 .detail-inner .menu-list .item-caption {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail03 .detail-inner .menu-list .item-caption {
    font-size: 2.4vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail03 .detail-inner .menu-list .item-caption {
    font-size: 12px;
  }
}

/* __50: しょうが鍋定食 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-detail04 .detail-header {
  width: 100%;
  height: 69vw;
  min-height: 900px;
  max-height: 1350px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail04 .detail-header {
    min-height: inherit;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-header {
    height: 70vw;
  }
}

#lp-detail04 .detail-header .main {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#lp-detail04 .detail-header .main .mv {
  display: block;
  width: 100%;
  height: 100%;
}

#lp-detail04 .detail-header .main .mv .img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/syoga/syoga_main.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-header .main .mv .img {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

#lp-detail04 .detail-header .main h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -5vw;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  text-align: right;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-header .main h2 {
    top: 0;
    width: 100%;
  }
}

#lp-detail04 .detail-header .main h2 img {
  height: 49vw;
  min-height: 643px;
}

@media only screen and (max-width: 1240px) {
  #lp-detail04 .detail-header .main h2 img {
    height: 51.4vw;
    min-height: inherit;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-header .main h2 img {
    height: 69vw;
    min-height: inherit;
  }
}

#lp-detail04 .detail-inner .text-box {
  padding-bottom: 6rem;
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-inner .text-box {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3rem;
  }
}

#lp-detail04 .detail-inner .text-box p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.4;
  margin: 0;
}

@media only screen and (max-width: 1240px) {
  #lp-detail04 .detail-inner .text-box p {
    font-size: 1.8rem;
    line-height: 2.2;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-inner .text-box p {
    font-size: 3.27vw;
    line-height: 1.8;
    text-align: justify;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail04 .detail-inner .text-box p {
    font-size: 14px;
  }
}

#lp-detail04 .detail-inner .menu {
  width: 100%;
  max-width: 934px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-inner .menu {
    width: 90%;
  }
}

#lp-detail04 .detail-inner .menu-list {
  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;
  list-style: none;
}

#lp-detail04 .detail-inner .menu-list .item {
  width: 25%;
  max-width: 233px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-inner .menu-list .item {
    width: 48%;
    max-width: inherit;
    margin-top: 2rem;
  }
  #lp-detail04 .detail-inner .menu-list .item:nth-child(1), #lp-detail04 .detail-inner .menu-list .item:nth-child(2) {
    margin-top: 0;
  }
}

#lp-detail04 .detail-inner .menu-list .item-img {
  display: block;
  width: 100%;
  height: 155px;
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-inner .menu-list .item-img {
    height: 26vw;
  }
}

#lp-detail04 .detail-inner .menu-list .item-img .img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#lp-detail04 .detail-inner .menu-list .item-img .img.img01 {
  background-image: url("../images/syoga/syoga_img01.png");
}

#lp-detail04 .detail-inner .menu-list .item-img .img.img02 {
  background-image: url("../images/syoga/syoga_img02.png");
}

#lp-detail04 .detail-inner .menu-list .item-img .img.img03 {
  background-image: url("../images/syoga/syoga_img03.png");
}

#lp-detail04 .detail-inner .menu-list .item-img .img.img04 {
  background-image: url("../images/syoga/syoga_img04.png");
}

#lp-detail04 .detail-inner .menu-list .item-caption {
  margin: 0;
  padding-top: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (max-width: 1240px) {
  #lp-detail04 .detail-inner .menu-list .item-caption {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-detail04 .detail-inner .menu-list .item-caption {
    font-size: 2.4vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-detail04 .detail-inner .menu-list .item-caption {
    font-size: 12px;
  }
}

/* __60: ナビゲーション */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.lp-navigation-wrapper {
  background-color: #bc141c;
  padding: 4.3rem 0;
}

@media only screen and (max-width: 1240px) {
  .lp-navigation-wrapper {
    padding: 3.3rem 0;
  }
}

@media only screen and (max-width: 767px) {
  .lp-navigation-wrapper {
    padding: 3rem 0;
  }
}

@media only screen and (max-width: 360px) {
  .lp-navigation-wrapper {
    padding: 2rem 0;
  }
}

.lp-navigation .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 997px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 360px) {
  .lp-navigation .navigation {
    display: block;
  }
}

@media only screen and (max-width: 1240px) {
  .lp-navigation .navigation li {
    margin: 1rem auto;
  }
}

@media only screen and (max-width: 767px) {
  .lp-navigation .navigation li {
    max-width: inherit;
  }
}

@media only screen and (max-width: 360px) {
  .lp-navigation .navigation li {
    margin-top: 1rem;
  }
  .lp-navigation .navigation li:nth-child(1) {
    margin-top: 0;
  }
}

.lp-navigation .navigation li .button {
  font-size: 2.9rem;
}

@media only screen and (max-width: 767px) {
  .lp-navigation .navigation li .button {
    font-size: 2.6vw;
    padding: 0 2.2vw;
  }
}

@media only screen and (max-width: 360px) {
  .lp-navigation .navigation li .button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.lp-navigation .navigation li .button::after {
  font-size: 1.9rem;
  vertical-align: 5px;
}

@media only screen and (max-width: 767px) {
  .lp-navigation .navigation li .button::after {
    font-size: 1.8vw;
  }
}

@media only screen and (max-width: 414px) {
  .lp-navigation .navigation li .button::after {
    font-size: 10px;
  }
}

/* __70: Twitter */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-twitter {
  background-color: #aedde9;
}

#lp-twitter-wrapper {
  padding-top: calc(8rem + 50px);
}

@media only screen and (max-width: 767px) {
  #lp-twitter-wrapper {
    padding-top: calc(4rem + 50px);
  }
}

@media only screen and (max-width: 414px) {
  #lp-twitter-wrapper {
    padding-top: 0;
  }
}

#lp-twitter .container {
  width: 90%;
  max-width: 950px;
  position: relative;
  padding-bottom: 6rem;
}

@media only screen and (max-width: 767px) {
  #lp-twitter .container {
    max-width: 600px;
    padding-bottom: 2rem;
  }
}

#lp-twitter .twitter {
  position: relative;
}

#lp-twitter .twitter-inner h2:first-child {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-8rem + -50px);
  margin: auto;
  z-index: 2;
  width: 100%;
  max-width: 460px;
}

@media only screen and (max-width: 767px) {
  #lp-twitter .twitter-inner h2:first-child {
    width: 49%;
    max-width: 292px;
    top: calc(-2rem + -53px);
  }
}

@media only screen and (max-width: 414px) {
  #lp-twitter .twitter-inner h2:first-child {
    top: -54px;
  }
}

#lp-twitter .twitter-inner .button-wrapper {
  padding-top: 6rem;
  max-width: inherit;
}

@media only screen and (max-width: 414px) {
  #lp-twitter .twitter-inner .button-wrapper {
    padding-top: 3rem;
  }
}

/* __80: Youtube */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-youtube .container {
  width: 90%;
  max-width: 950px;
  position: relative;
}

#lp-youtube .youtube-header .headline {
  max-width: 600px;
  width: 90%;
  margin: auto;
  padding-bottom: 8rem;
}

@media only screen and (max-width: 767px) {
  #lp-youtube .youtube-header .headline {
    max-width: 300px;
    padding-bottom: 4rem;
  }
}

#lp-youtube .youtube-header .headline h2 {
  display: block;
  border-radius: 20px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 4rem;
  text-align: center;
  color: #fff;
  background-color: #bc141c;
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  #lp-youtube .youtube-header .headline h2 {
    font-size: 2rem;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 414px) {
  #lp-youtube .youtube-header .headline h2 {
    font-size: 1.8rem;
    border-radius: 10px;
  }
}

#lp-youtube .youtube-header .headline h2::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  z-index: -1;
  bottom: -48px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 98px 56px 0 56px;
  border-color: #bc141c transparent transparent transparent;
}

@media only screen and (max-width: 767px) {
  #lp-youtube .youtube-header .headline h2::before {
    bottom: -28px;
    border-width: 49px 28px 0 28px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-youtube .youtube-header .headline h2::before {
    bottom: -14px;
    border-width: 25px 14px 0 14px;
  }
}

#lp-youtube .youtube-inner iframe {
  width: 100%;
  height: 51vw;
  max-height: 534px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* quiz */
/* 目次 */
/* __00: 初期設定 */
/* __10: クイズ */
/* __20: 景品 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: クイズ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-campaign .container {
  width: 90%;
  max-width: 917px;
  margin-top: 4rem;
  padding: 2rem 0;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .container {
    max-width: 600px;
    margin-top: 5.3vw;
    padding: 2.6vw 0;
  }
}

#lp-campaign .quiz {
  position: relative;
  z-index: 99;
}

#lp-campaign .quiz::before {
  content: "";
  position: absolute;
  width: 226px;
  height: 274px;
  left: -20px;
  top: -4rem;
  background-image: url(../images/12lp/quiz/icon_quiz.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .quiz::before {
    width: 35vw;
    height: 42.4vw;
    left: -2.7vw;
    top: -5.3vw;
  }
}

#lp-campaign .quiz-text-box p {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  margin: 0;
  line-height: 1.6;
}

#lp-campaign .quiz-text-box p:first-child {
  display: inline-block;
  font-size: 3.8rem;
  font-weight: 500;
  color: #bc141c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .quiz-text-box p:first-child {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-campaign .quiz-text-box p:first-child {
    font-size: 2rem;
  }
}

#lp-campaign .quiz-text-box p:first-child::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #bc141c;
  left: 0;
  bottom: 0;
}

#lp-campaign .quiz-text-box p.quiz-lead {
  margin: 0 auto;
  padding: 3rem 0;
}

@media only screen and (max-width: 414px) {
  #lp-campaign .quiz-text-box p.quiz-lead {
    padding: 2rem 0;
  }
}

#lp-campaign .quiz-text-box p.quiz-text {
  width: 87%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .quiz-text-box p.quiz-text {
    width: 70%;
    margin: 0 7vw;
  }
}

#lp-campaign .quiz-text-box p.attention {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  padding: 6rem 0 4rem;
  margin: 0 auto;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .quiz-text-box p.attention {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-campaign .quiz-text-box p.attention {
    font-size: 1.2rem;
    padding: 2rem 0;
  }
}

#lp-campaign .quiz-text-box p.attention::before {
  content: none;
}

#lp-campaign .button-wrapper {
  position: relative;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .button-wrapper {
    max-width: inherit;
  }
}

#lp-campaign .button-wrapper .button {
  width: 90%;
  position: fixed;
  left: 0;
  bottom: 1rem;
  right: 0;
  margin: auto;
  z-index: 10;
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  #lp-campaign .button-wrapper .button {
    opacity: 1;
  }
}

/* __20: 景品 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-freebie .container {
  width: 90%;
  max-width: 942px;
}

@media only screen and (max-width: 767px) {
  #lp-freebie .container {
    max-width: 600px;
  }
}

#lp-freebie .freebie-header {
  padding-bottom: 8rem;
}

@media only screen and (max-width: 767px) {
  #lp-freebie .freebie-header {
    padding-bottom: 6rem;
  }
}

@media only screen and (max-width: 414px) {
  #lp-freebie .freebie-header {
    padding-bottom: 3rem;
  }
}

#lp-freebie .freebie-header img {
  width: 100%;
}

#lp-freebie .freebie-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#lp-freebie .freebie-inner .img-box {
  padding-bottom: 6rem;
}

#lp-freebie .freebie-inner .img-box .img {
  position: relative;
  z-index: 1;
}

#lp-freebie .freebie-inner .img-box .img img {
  width: 100%;
}

#lp-freebie .freebie-inner .img-box:nth-child(1) .img::before,
#lp-freebie .freebie-inner .img-box:nth-child(2) .img::before {
  position: absolute;
  content: "";
  width: 112px;
  height: 112px;
  top: 5px;
  left: -25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #lp-freebie .freebie-inner .img-box:nth-child(1) .img::before,
  #lp-freebie .freebie-inner .img-box:nth-child(2) .img::before {
    width: 20vw;
    height: 20vw;
    left: -4vw;
    top: 4vw;
  }
}

#lp-freebie .freebie-inner .img-box:nth-child(1) .img::before {
  background-image: url(../images/12lp/quiz/freebie-icon01.png);
}

#lp-freebie .freebie-inner .img-box:nth-child(2) .img::before {
  background-image: url(../images/12lp/quiz/freebie-icon02.png);
}

#lp-freebie .freebie-inner .img-box:nth-child(1), #lp-freebie .freebie-inner .img-box:nth-child(2) {
  width: 48%;
}

@media only screen and (max-width: 767px) {
  #lp-freebie .freebie-inner .img-box:nth-child(1), #lp-freebie .freebie-inner .img-box:nth-child(2) {
    width: 100%;
    border-bottom: 9px dotted #a27300;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
}

#lp-freebie .freebie-inner .img-box:last-child {
  width: 48%;
  margin: 0 auto;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  #lp-freebie .freebie-inner .img-box:last-child {
    width: 100%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* sale */
/* 目次 */
/* __00: 初期設定 */
/* __10: 値引き */
/* __20: 対象商品 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: 値引き */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-sale-wrapper {
  background-color: #bc141c;
  overflow: hidden;
}

#lp-sale .container {
  padding: 0;
}

#lp-sale .sale-inner .img {
  margin-left: -35px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #lp-sale .sale-inner .img {
    margin-left: 0;
  }
}

#lp-sale .sale-inner .img img {
  width: 85%;
}

@media only screen and (max-width: 767px) {
  #lp-sale .sale-inner .img img {
    width: 100%;
  }
}

/* __20: 対象商品 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-sale-menu-wrapper {
  background-image: url("../images/contents_bg.png");
  background-size: cover;
}

@media only screen and (max-width: 414px) {
  #lp-sale-menu-wrapper {
    margin-bottom: 4rem;
    background-size: contain;
  }
}

#lp-sale-menu .container {
  width: 90%;
  max-width: 1074px;
}

#lp-sale-menu .sale-menu-head .headline h2 {
  font-size: 6rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #bc141c;
}

@media only screen and (max-width: 767px) {
  #lp-sale-menu .sale-menu-head .headline h2 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 414px) {
  #lp-sale-menu .sale-menu-head .headline h2 {
    font-size: 1.8rem;
  }
}

#lp-sale-menu .sale-menu-inner .menu-list {
  list-style: none;
  max-width: 1024px;
  margin: auto;
  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;
  padding-top: 4rem;
}

@media only screen and (max-width: 767px) {
  #lp-sale-menu .sale-menu-inner .menu-list {
    padding-top: 0;
  }
}

#lp-sale-menu .sale-menu-inner .menu-list li {
  width: 30%;
}

@media only screen and (max-width: 767px) {
  #lp-sale-menu .sale-menu-inner .menu-list li {
    width: 100%;
    padding-top: 4rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-sale-menu .sale-menu-inner .menu-list li:first-child {
    padding-top: 2rem;
  }
}

#lp-sale-menu .sale-menu-inner .menu-list li img {
  width: 100%;
}

#lp-sale-menu .sale-menu-inner .text-box {
  padding-top: 3rem;
}

#lp-sale-menu .sale-menu-inner .text-box p {
  font-size: 2rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  color: #bc141c;
  text-align: center;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* menu */
/* 目次 */
/* __00: 初期設定 */
/* __10: イートインメニュー */
/* __20: テイクアウトメニュー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.menu {
  background-image: url("../images/contents_bg.png");
  background-size: contain;
}

main.menu .container {
  max-width: 947px;
  width: 90%;
  padding-top: 6rem;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  main.menu .container {
    padding-top: 4rem;
  }
}

main.menu .headline {
  background-color: #a27300;
  padding: 17px 0;
}

@media only screen and (max-width: 767px) {
  main.menu .headline {
    padding: 2vw 0;
  }
}

@media only screen and (max-width: 414px) {
  main.menu .headline {
    padding: 9px 0;
  }
}

main.menu .headline h1 {
  font-size: 5.5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

@media only screen and (max-width: 1240px) {
  main.menu .headline h1 {
    font-size: 4.8rem;
  }
}

@media only screen and (max-width: 767px) {
  main.menu .headline h1 {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 414px) {
  main.menu .headline h1 {
    font-size: 2.4rem;
  }
}

main.menu .headline h2 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

@media only screen and (max-width: 1240px) {
  main.menu .headline h2 {
    font-size: 2.6rem;
  }
}

@media only screen and (max-width: 767px) {
  main.menu .headline h2 {
    font-size: 3.2vw;
  }
}

@media only screen and (max-width: 414px) {
  main.menu .headline h2 {
    font-size: 1.4rem;
  }
}

main.menu .coming-soon::before {
  content: "";
  height: calc(100% - 4rem);
  top: inherit;
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  main.menu .coming-soon::before {
    width: 100%;
  }
}

main.menu .coming-soon::after {
  height: 100%;
  top: 0;
  left: inherit;
  right: 0;
}

@media only screen and (max-width: 767px) {
  main.menu .coming-soon::after {
    width: 100%;
    left: 0;
    right: 0;
    top: inherit;
    bottom: 0;
  }
}

@media only screen and (max-width: 414px) {
  main.menu .coming-soon::after {
    top: inherit;
  }
}

main.menu .coming-soon.i1::before {
  width: calc(100% - 60% - 6rem);
}

@media only screen and (max-width: 1100px) {
  main.menu .coming-soon.i1::before {
    width: calc(100% - 60% - 6vw);
  }
}

@media only screen and (max-width: 767px) {
  main.menu .coming-soon.i1::before {
    width: 100%;
    height: 34%;
  }
}

main.menu .coming-soon.i1::after {
  width: calc(100% - 60% - 6rem);
  right: 1rem;
  font-size: 2.8rem;
}

@media only screen and (max-width: 1100px) {
  main.menu .coming-soon.i1::after {
    width: calc(100% - 60% - 6vw);
  }
}

@media only screen and (max-width: 767px) {
  main.menu .coming-soon.i1::after {
    width: 100%;
    height: 34%;
  }
}

main.menu .coming-soon.i2::before {
  width: calc(100% - 30% - 3rem);
}

@media only screen and (max-width: 1100px) {
  main.menu .coming-soon.i2::before {
    width: calc(100% - 30% - 3vw);
  }
}

@media only screen and (max-width: 767px) {
  main.menu .coming-soon.i2::before {
    width: 100%;
    height: 67%;
  }
}

main.menu .coming-soon.i2::after {
  width: calc(100% - 30% - 5rem);
  right: 2rem;
}

@media only screen and (max-width: 1100px) {
  main.menu .coming-soon.i2::after {
    width: calc(100% - 30% - 5vw);
  }
}

@media only screen and (max-width: 767px) {
  main.menu .coming-soon.i2::after {
    width: 100%;
    height: 67%;
  }
}

@media only screen and (max-width: 767px) {
  main.menu.menu2 #lp-menu-detail01 .coming-soon.i1::before {
    content: none;
  }
}

@media only screen and (max-width: 767px) {
  main.menu.menu2 #lp-menu-detail01 .coming-soon.i1::after {
    content: none;
  }
}

@media only screen and (max-width: 767px) {
  main.menu.menu2 #lp-menu-detail01 .coming-soon.i2::before {
    height: 80.6%;
  }
}

@media only screen and (max-width: 767px) {
  main.menu.menu2 #lp-menu-detail01 .coming-soon.i2::after {
    height: 80.6%;
  }
}

/* __10: イートインメニュー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-menu-detail01 .menu {
  overflow: hidden;
}

#lp-menu-detail01 .menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2rem;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-box {
    display: block;
    margin: 0 auto;
    padding-bottom: 0;
  }
}

#lp-menu-detail01 .menu-list {
  list-style: none;
  max-width: 33.3%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding: 0 2rem;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 5.4vw 0;
    border-top: 1px solid #b17d4c;
  }
  #lp-menu-detail01 .menu-list:first-child {
    border-top: none;
  }
}

#lp-menu-detail01 .menu-list:nth-child(2), #lp-menu-detail01 .menu-list:nth-child(3) {
  position: relative;
}

#lp-menu-detail01 .menu-list:nth-child(2)::before, #lp-menu-detail01 .menu-list:nth-child(3)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 4rem);
  left: 0;
  right: inherit;
  bottom: 0;
  margin: auto;
  background-color: #b17d4c;
  opacity: 1;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list:nth-child(2)::before, #lp-menu-detail01 .menu-list:nth-child(3)::before {
    content: none;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list.coming-soon::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #595757;
    opacity: 0.8;
  }
}

#lp-menu-detail01 .menu-list.coming-soon::after {
  content: none;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list.coming-soon::after {
    content: "coming soon...";
    font-size: 2.8rem;
  }
}

#lp-menu-detail01 .menu-list li {
  line-height: 1.2;
  padding-top: 4rem;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list li {
    width: 48%;
    padding-top: 0;
  }
}

#lp-menu-detail01 .menu-list li .item-img {
  width: 100%;
}

#lp-menu-detail01 .menu-list li .item-img img {
  width: 100%;
}

#lp-menu-detail01 .menu-list li .item-img.icon {
  position: relative;
  z-index: 1;
}

#lp-menu-detail01 .menu-list li .item-img.icon::before {
  position: absolute;
  content: "";
  width: 58px;
  height: 58px;
  background-image: url("../images/sukiyaki/icon_dubble.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list li .item-img.icon::before {
    width: 7.8vw;
    height: 7.8vw;
    top: -1vw;
    left: 1vw;
  }
}

#lp-menu-detail01 .menu-list li .item-name {
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail01 .menu-list li .item-name {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list li .item-name {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail01 .menu-list li .item-name {
    font-size: 1.2rem;
  }
}

#lp-menu-detail01 .menu-list li .item-price {
  margin: 0;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail01 .menu-list li .item-price {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list li .item-price {
    font-size: 2.7vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail01 .menu-list li .item-price {
    font-size: 1.1rem;
  }
}

#lp-menu-detail01 .menu-list li .item-price .val {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  padding-left: 0.5rem;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail01 .menu-list li .item-price .val {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .menu-list li .item-price .val {
    font-size: 3.6vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail01 .menu-list li .item-price .val {
    font-size: 1.8rem;
  }
}

#lp-menu-detail01 .attention {
  width: 90%;
  max-width: 770px;
  margin: 0 auto;
  padding-top: 4rem;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail01 .attention {
    max-width: 580px;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .attention {
    max-width: 526px;
    padding-top: 2rem;
  }
}

#lp-menu-detail01 .attention p {
  margin: 0;
  padding: 8px 0;
  text-align: center;
  color: #bc141c;
  border: 1px solid #bc141c;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail01 .attention p {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail01 .attention p {
    padding: 1vw 0;
    font-size: 3vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail01 .attention p {
    padding: 4px 0;
    font-size: 1.2rem;
  }
}

/* __20: テイクアウトメニュー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#lp-menu-detail02 .headline {
  background-color: #bc141c;
}

#lp-menu-detail02 .main {
  width: 100%;
  height: 69vw;
  max-height: 669px;
  margin: 4rem auto;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .main {
    margin: 2.8vw auto;
    height: 86vw;
  }
}

#lp-menu-detail02 .main .mv {
  display: block;
  width: 100%;
  height: 100%;
}

#lp-menu-detail02 .main .mv .img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/menu/menu_takeout_main.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .main .mv .img {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

#lp-menu-detail02 .menu {
  overflow: hidden;
}

#lp-menu-detail02 .menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2rem;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-box {
    display: block;
    margin: 0 auto;
    padding-bottom: 2.8vw;
  }
}

#lp-menu-detail02 .menu-list {
  list-style: none;
  max-width: 33.3%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding: 0 2rem;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 5.4vw 0;
    border-top: 1px solid #bc141c;
  }
  #lp-menu-detail02 .menu-list:first-child {
    border-top: none;
  }
}

#lp-menu-detail02 .menu-list:nth-last-child(2), #lp-menu-detail02 .menu-list:last-child {
  position: relative;
}

#lp-menu-detail02 .menu-list:nth-last-child(2)::before, #lp-menu-detail02 .menu-list:last-child::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 4rem);
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #bc141c;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-list:nth-last-child(2)::before, #lp-menu-detail02 .menu-list:last-child::before {
    content: none;
  }
}

#lp-menu-detail02 .menu-list li {
  line-height: 1.2;
  padding-top: 4rem;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-list li {
    width: 48%;
    padding-top: 0;
  }
}

#lp-menu-detail02 .menu-list li .item-img {
  width: 100%;
}

#lp-menu-detail02 .menu-list li .item-img img {
  width: 100%;
}

#lp-menu-detail02 .menu-list li .item-name {
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail02 .menu-list li .item-name {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-list li .item-name {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail02 .menu-list li .item-name {
    font-size: 1.2rem;
  }
}

#lp-menu-detail02 .menu-list li .item-price {
  margin: 0;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail02 .menu-list li .item-price {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-list li .item-price {
    font-size: 2.7vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail02 .menu-list li .item-price {
    font-size: 1.1rem;
  }
}

#lp-menu-detail02 .menu-list li .item-price .val {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  padding-left: 0.5rem;
}

@media only screen and (max-width: 1240px) {
  #lp-menu-detail02 .menu-list li .item-price .val {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .menu-list li .item-price .val {
    font-size: 3.6vw;
  }
}

@media only screen and (max-width: 414px) {
  #lp-menu-detail02 .menu-list li .item-price .val {
    font-size: 1.8rem;
  }
}

#lp-menu-detail02 .rice-box {
  padding: 4rem 0;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .rice-box {
    padding: 3rem 0;
  }
}

#lp-menu-detail02 .rice-box .rice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

#lp-menu-detail02 .rice-box .rice-list li {
  width: 49%;
  padding: 2rem 0;
}

@media only screen and (max-width: 767px) {
  #lp-menu-detail02 .rice-box .rice-list li {
    max-width: 486px;
    width: 90%;
    margin: 0 auto;
    padding: 1.4vw 0;
  }
}

#lp-menu-detail02 .rice-box .rice-list li img {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* main */
/* 目次 */
/* __10: クイズLP */
/* __20: スケジュール */
/* __30: 100円引きLP */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: クイズLP */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.quiz #lp-header {
  background-image: url("../images/contents_bg.png");
  background-size: contain;
}

main.quiz #lp-header .lp-main {
  width: 70vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100 - 80px);
}

@media only screen and (max-width: 1366px) {
  main.quiz #lp-header .lp-main {
    width: 792px;
    min-height: inherit;
    height: 541px;
  }
}

@media only screen and (max-width: 1280px) {
  main.quiz #lp-header .lp-main {
    height: 505px;
  }
}

@media only screen and (max-width: 800px) {
  main.quiz #lp-header .lp-main {
    width: 98%;
    height: 65vw;
  }
}

main.quiz #lp-header .lp-main .mv {
  width: 100%;
  height: 100%;
  margin: auto;
  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;
}

main.quiz #lp-header .lp-main .mv-wrapper {
  width: 100%;
}

main.quiz #lp-header .lp-main .mv img {
  width: 100%;
}

main.quiz #lp-header .lp-main .mv-title {
  width: 100%;
  margin: auto auto 0;
  position: relative;
}

main.quiz #lp-header .lp-main .mv-title::before, main.quiz #lp-header .lp-main .mv-title::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 5vw;
  max-height: 100px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  main.quiz #lp-header .lp-main .mv-title::before, main.quiz #lp-header .lp-main .mv-title::after {
    width: 2px;
    height: 7vw;
    top: inherit;
  }
}

main.quiz #lp-header .lp-main .mv-title::before {
  left: 1.7%;
  -webkit-transform: rotateZ(-23deg);
          transform: rotateZ(-23deg);
}

main.quiz #lp-header .lp-main .mv-title::after {
  right: 1.7%;
  -webkit-transform: rotateZ(23deg);
          transform: rotateZ(23deg);
}

main.quiz #lp-header .lp-main .mv-title h1:first-child {
  width: 93%;
  margin: 0 auto;
}

main.quiz #lp-header .lp-main .mv-copy {
  width: 45%;
  margin: auto 0;
}

main.quiz #lp-header .lp-main .mv-copy p {
  margin: 0;
}

main.quiz #lp-header .lp-main .mv-copy p:first-child {
  width: 94.1%;
  margin-bottom: 37px;
}

@media only screen and (max-width: 767px) {
  main.quiz #lp-header .lp-main .mv-copy p:first-child {
    margin-bottom: 3vw;
  }
}

main.quiz #lp-header .lp-main .mv-copy p:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}

main.quiz #lp-header .lp-main .mv-copy p:nth-child(2) .dot {
  display: block;
  width: 16px;
  height: 16px;
  color: #bc141c;
  background-color: #bc141c;
  border-radius: 50%;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  main.quiz #lp-header .lp-main .mv-copy p:nth-child(2) .dot {
    width: 2.1vw;
    height: 2.1vw;
  }
}

main.quiz #lp-header .lp-main .mv-img {
  width: 52%;
  margin: auto 0;
}

/* __10: スケジュール */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.lp-schedule {
  background-color: #bc141c;
}

.lp-schedule .text-box p {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 6.2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .lp-schedule .text-box p {
    font-size: 3.1rem;
  }
}

@media only screen and (max-width: 414px) {
  .lp-schedule .text-box p {
    font-size: 1.8rem;
  }
}

/* __30: 100円引きLP */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
main.sale #lp-header .lp-main .mv {
  position: relative;
  z-index: 1;
}

main.sale #lp-header .lp-main .mv .img {
  display: block;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100 - 80px);
  background-image: url(../images/12lp/sale/main/main_img01.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

@media only screen and (max-width: 1024px) {
  main.sale #lp-header .lp-main .mv .img {
    min-height: inherit;
    height: 75vw;
  }
}

@media only screen and (max-width: 414px) {
  main.sale #lp-header .lp-main .mv .img {
    background-image: url(../images/12lp/sale/main/main_img01_sp.jpg);
  }
}

main.sale #lp-header .lp-main .mv .title {
  position: absolute;
  width: 45vw;
  left: 1vw;
  top: 1vw;
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  main.sale #lp-header .lp-main .mv .title {
    left: 2.4vw;
    top: 4.7vw;
    width: 50vw;
  }
}

main.sale #lp-header .lp-main .mv .title img {
  width: 100%;
}

main.sale #lp-header .lp-main .mv .title h1 {
  margin: 0;
}

main.sale #lp-header .lp-main .mv .title p {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  z-index: 3;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* pages */
/* 目次 */
/* __00: pagesファイル読み込み

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: pagesファイル読み込み
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* button */
/* 目次 */
/* __00: 初期設定 */
/* __10: ボタン - スタイル１ */
/* __20: ボタン - スタイル２ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 初期設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .button-wrapper {
    max-width: 125px;
  }
}

/* __10: ボタン - スタイル１ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.button.style01 {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 10px;
  background-color: #fff;
  padding: 0 1rem;
  position: relative;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .button.style01 {
    font-size: 1.7vw;
    width: 100%;
    padding: 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;
    border-radius: 8px;
    letter-spacing: -0.1rem;
  }
}

@media only screen and (max-width: 414px) {
  .button.style01 {
    font-size: 10px;
  }
}

.button.style01::after {
  content: '▶︎';
  color: #000000;
  font-size: 1.2rem;
  vertical-align: 2px;
  padding-left: 0.3rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .button.style01::after {
    font-size: 1vw;
    padding-left: 0;
    vertical-align: inherit;
  }
}

@media only screen and (max-width: 414px) {
  .button.style01::after {
    font-size: 10px;
  }
}

.button.style01:visited {
  color: #000000;
}

.button.style01:hover {
  color: #fff;
  background-color: #a27300;
  border-color: #a27300;
}

.button.style01:hover::after {
  color: #fff;
}

/* __20: ボタン - スタイル２ */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.button.style02 {
  width: 100%;
  max-width: 400px;
  display: inline-block;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 2px solid #bc141c;
  border-radius: 20px;
  background-color: #bc141c;
  padding: 12px 1rem;
  position: relative;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
}

@media only screen and (max-width: 414px) {
  .button.style02 {
    font-size: 2rem;
    border-radius: 10px;
    padding: 6px 0;
  }
}

.button.style02:visited {
  color: #fff;
}

.button.style02:hover {
  background-color: #fff;
  color: #bc141c;
}

.button.style02.twitter {
  border-color: #1d9bf0;
  border-width: 3px;
  background-color: #ffffff;
  color: #1d9bf0;
  font-weight: bold;
}

.button.style02.twitter:hover {
  background-color: #1d9bf0;
  color: #ffffff;
}
/*# sourceMappingURL=style.css.map */