@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
}

/* ============================================
  base
============================================  */
html {
  font-size: 62.5% !important; /* 62.5%を指定すると「1.0 rem = 10px」 */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  overflow: auto;
}

body {
  width: 100%;
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  background: #F5F3EE;
  overscroll-behavior-y: none;
  background-image: url(../../img/mainvisual_bg-pc.png);
  background-repeat: no-repeat;
  background-size: 2008px auto;
  background-position: top center;
}
@media only screen and (max-width: 1366px) {
  body {
    background-size: 2008px auto;
  }
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
    background-image: url(../../img/mainvisual_bg.png);
    background-size: 160% auto;
    background-position: top 14% center;
  }
}

p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p:not([class]) {
    font-size: 1.4rem;
  }
}

sup {
  vertical-align: super;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

img[src$=".svg"] {
  max-width: 100%;
}

/*  pc表示時に電話発信させない
------------------------- */
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ============================================
  header
============================================  */
.l-header {
  height: 90px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}
.l-header .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1000px) {
  .l-header .l-inner {
    width: calc(100% - 200px);
    margin: 0 auto 0 66px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-inner {
    width: 88%;
    margin: 0 auto;
  }
}
.l-header .l-inner ._logo {
  width: 302px;
}
@media screen and (max-width: 767px) {
  .l-header .l-inner ._logo {
    width: 240px;
  }
}
.l-header .l-inner ._contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 1000px) {
  .l-header .l-inner ._contents {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header .l-inner ._contents {
    display: none;
  }
}
.l-header .l-inner ._contents ._lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  font-size: 1.6rem;
}
.l-header .l-inner ._contents ._lang ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.l-header .l-inner ._contents ._lang ._item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5em;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #999;
}
.l-header .l-inner ._contents ._lang a._item {
  color: #999;
}
.l-header .l-inner ._contents ._lang a._item:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1000px) {
  .l-header .l-inner ._contents ._ishikawa_logo {
    width: 120px;
  }
}

/* ============================================

hamburger

============================================  */
.l-hamburger ._line {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  z-index: 100;
  width: 100px;
  height: 100px;
  background-color: #20A0C7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line {
    width: 60px;
    height: 60px;
  }
}
.l-hamburger ._line:hover {
  opacity: 0.8;
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 35px;
  width: 30px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line ._item {
    left: 15px;
  }
}
.l-hamburger ._line ._item--1 {
  top: 26px;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line ._item--1 {
    top: 11px;
  }
}
.l-hamburger ._line ._item--2 {
  top: 36px;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line ._item--2 {
    top: 21px;
  }
}
.l-hamburger ._line ._item--3 {
  top: 46px;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line ._item--3 {
    top: 31px;
  }
}
.l-hamburger ._line ._text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 26px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line ._text {
    bottom: 8px;
    font-size: 1rem;
  }
}
.l-hamburger ._nav {
  position: fixed;
  right: 10px;
  top: 10px;
  width: 320px;
  height: auto;
  padding: 70px 30px 40px;
  background-color: #fff;
  border: solid 2px #20A0C7;
  border-radius: 10px;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  z-index: 99;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav {
    right: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    border-radius: 0;
    padding: 10px 8% 40px;
  }
}
.l-hamburger ._nav ._anchorlist ._item {
  display: block;
  font-size: 1.6rem;
  line-height: 1.875;
  padding: 15px 0 15px 1em;
  text-decoration: none;
  width: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger ._nav ._anchorlist ._item:not(:last-child) {
  border-bottom: solid 1px #ccc;
}
.l-hamburger ._nav ._anchorlist ._item:hover {
  color: #666;
}
.l-hamburger ._nav ._anchorlist ._item.--matsuri:hover {
  color: #355BB7;
}
.l-hamburger ._nav ._anchorlist ._item.--food:hover {
  color: #E51B19;
}
.l-hamburger ._nav ._anchorlist ._item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(1em + 11px);
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #666;
}
.l-hamburger ._nav ._anchorlist ._item.--matsuri::before {
  background-color: #355BB7;
}
.l-hamburger ._nav ._anchorlist ._item.--food::before {
  background-color: #E51B19;
}
.l-hamburger ._nav ._fixedbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._nav ._fixedbtn {
    display: none;
  }
}
.l-hamburger ._nav ._fixedbtn ._item {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger ._nav ._fixedbtn ._item:hover {
  opacity: 0.8;
}
.l-hamburger ._nav ._fixedbtn ._item.--matsuri {
  background-color: #355BB7;
}
.l-hamburger ._nav ._fixedbtn ._item.--food {
  background-color: #E51B19;
}
.l-hamburger ._nav ._fixedbtn ._item.--reservation {
  background-color: #333;
}
.l-hamburger ._nav ._fixedbtn ._item.--reservation div {
  width: 100%;
  text-align: left;
}
.l-hamburger ._nav ._fixedbtn ._item.--pop {
  background-color: #f2a3b3;
}
.l-hamburger ._nav ._fixedbtn ._item.--pop ._name {
  font-size: 2rem;
}
.l-hamburger ._nav ._contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._nav ._contents {
    display: none;
  }
}
.l-hamburger ._nav ._contents ._lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  font-size: 1.6rem;
}
.l-hamburger ._nav ._contents ._lang ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.l-hamburger ._nav ._contents ._lang ._item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5em;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #999;
}
.l-hamburger ._nav ._contents ._lang a._item {
  color: #999;
}
.l-hamburger ._nav ._contents ._lang a._item:hover {
  text-decoration: underline;
}
.l-hamburger ._nav ._contents ._ishikawa_logo {
  width: 100px;
}

/* 表示された時用のCSS */
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.is-open ._line {
  background-color: unset;
}
.is-open ._line ._item--1 {
  background-color: #20A0C7;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 36px !important;
}
@media screen and (max-width: 767px) {
  .is-open ._line ._item--1 {
    top: 21px !important;
  }
}
.is-open ._line ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open ._line ._item--3 {
  background-color: #20A0C7;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 36px !important;
}
@media screen and (max-width: 767px) {
  .is-open ._line ._item--3 {
    top: 21px !important;
  }
}
.is-open ._line ._text {
  opacity: 0;
}

/* ============================================

fixedbtn

============================================  */
.l-fixedbtn {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn {
    display: none;
  }
}
.l-fixedbtn ._item {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  width: 100px;
  height: 100px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-fixedbtn ._item:hover {
  opacity: 0.8;
}
.l-fixedbtn ._item.--matsuri {
  background-color: #355BB7;
}
.l-fixedbtn ._item.--matsuri-map {
  background-color: #355BB7;
  border-top: solid 1px #fff;
}
.l-fixedbtn ._item.--food {
  background-color: #E51B19;
}
.l-fixedbtn ._item.--reservation {
  background-color: #333;
  font-size: 1.3rem;
  height: 120px;
}
.l-fixedbtn ._item.--reservation span {
  font-size: 0.8rem;
}

.is-open .l-fixedbtn {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 50;
}
.is-open .l-fixedbtn ._item {
  opacity: 0;
  visibility: hidden;
}

/* ============================================
  section
============================================  */
.l-section {
  padding: 60px 0 100px;
  overflow: hidden;
}

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 88%;
  }
}

/* ============================================
  h
============================================  */
/* ============================================
  フッターボタン
============================================  */
.footerBtn {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .footerBtn {
    width: 88%;
  }
}
.footerBtn ._button {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 0;
  min-height: 46px;
  border-radius: 9999px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  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;
  text-decoration: none;
  gap: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #20A0C7;
}
@media only screen and (max-width: 900px) {
  .footerBtn ._button {
    position: static;
    font-size: 1.6rem;
  }
}
.footerBtn ._button::after {
  display: block;
  width: 6px;
  height: 10px;
  content: "";
  background-image: url(../img/icon_arrow-right.svg);
}
.footerBtn ._button:hover {
  opacity: 0.8;
}
.footerBtn ._button ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .footerBtn ._button ._inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footerBtn ._button ._inner ._logo {
  height: 30px;
  border-radius: 9999px;
  padding: 0 40px;
  background-color: #fff;
}
.footerBtn ._button ._inner ._logo img {
  height: 100%;
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #fff;
  padding: 35px 0;
  margin-top: 100px;
}
.l-footer ._copyright {
  font-size: 1.4rem;
  text-align: center;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  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;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 10px;
    right: 10px;
  }
}
.l-pagetop svg {
  fill: #fff;
}
.l-pagetop:hover {
  background-color: rgb(0, 0, 0) !important;
}

.l-pagetop.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

/* ============================================
  col
============================================  */
.col_box {
  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;
}

.col_box > .col2 {
  width: 48%;
}

.col_box > .col3 {
  width: 32%;
}

.col_box > .col4 {
  width: 23.5%;
}

@media only screen and (max-width: 767px) {
  .col_box > .col2 {
    width: 100%;
    margin-bottom: 40px;
  }
  .col_box > .col2:last-child {
    margin-bottom: 0;
  }
  .col_box > .col3,
  .col_box > .col4 {
    width: 48%;
    margin-top: 20px;
  }
  .col_box > .col3:nth-child(1),
  .col_box > .col3:nth-child(2),
  .col_box > .col4:nth-child(1),
  .col_box > .col4:nth-child(2) {
    margin-top: 0;
  }
}
/* ============================================
  ul
============================================  */
ul.c-list li {
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
}
ul.c-list li::before {
  content: "●";
}
ul.c-list--other li {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}
ul.c-list--other li span {
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================
  dl
============================================  */
dl.list {
  width: 100%;
  border-bottom: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

dl.list dt,
dl.list dd {
  padding: 20px;
  line-height: 1.6;
}

dl.list dt {
  width: 180px;
  font-size: 1.8rem;
  font-weight: bold;
}

dl.list dd {
  width: calc(100% - 180px);
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  dl.list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  dl.list dt {
    width: 100%;
    font-size: 1.6rem;
    padding: 20px 20px 10px 20px;
  }
  dl.list dd {
    width: 100%;
    font-size: 1.5rem;
    padding: 0 20px 20px 20px;
  }
}
.c-note {
  font-size: 1.4rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-note__ttl {
  width: 1.5em;
}
.c-note__txt {
  width: calc(100% - 1.5em);
}

/* ============================================
  btn
============================================  */
/* gradientBtn
------------------------- */
.c-gradientBtn {
  cursor: pointer;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 99999999px;
  -webkit-box-shadow: 0px 15px 29px rgba(9, 1, 2, 0.08);
          box-shadow: 0px 15px 29px rgba(9, 1, 2, 0.08);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#71c9ce), color-stop(51%, #95e2e6), to(#71c9ce));
  background-image: linear-gradient(to right, #71c9ce 0%, #95e2e6 51%, #71c9ce 100%);
}
.c-gradientBtn:hover {
  background-color: #95e2e6;
  background-position: right center;
}

/* ============================================
  balloon
============================================  */
.c-balloon {
  position: relative;
}
.c-balloon::before {
  content: "";
  border: 25px solid transparent;
  border-top: 43px solid #006;
  width: 0px;
  height: 0px;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ============================================
  youtube
============================================  */
.c-youtube {
  position: relative;
  width: 100%;
  height: auto !important;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ============================================
  gmap
============================================  */
.c-gmap {
  height: 400px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-gmap {
    height: 200px;
  }
}
.c-gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  margin-bottom: 40px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual {
    margin-top: 0;
  }
}
.f-mainvisual ._contents {
  padding-top: 70px;
  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;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents {
    padding: 0 6%;
    padding-top: 50px;
  }
}
.f-mainvisual ._contents ._logo {
  margin-bottom: 30px;
}
.f-mainvisual ._contents ._date {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 60px;
  margin-left: 0.7em;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._date {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}
.f-mainvisual ._contents ._date span {
  font-size: 6rem !important;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._date span {
    font-size: 3.2rem !important;
  }
}
.f-mainvisual ._contents ._text {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._text {
    font-size: 1.6rem;
  }
}
.f-mainvisual ._information {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  margin-top: 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._information {
    padding: 40px 6%;
  }
}
.f-mainvisual ._information ._title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._information ._title {
    font-size: 2rem;
  }
}
.f-mainvisual ._information ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.4;
}
.f-mainvisual ._information ._list dt {
  width: 135px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._information ._list dt {
    width: 100%;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}
.f-mainvisual ._information ._list dd {
  width: calc(100% - 135px);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._information ._list dd {
    width: 100%;
    padding-top: 5px !important;
  }
}
.f-mainvisual ._information ._list dt, .f-mainvisual ._information ._list dd {
  padding: 15px 0;
  border-bottom: dashed 1px #ccc;
}
.f-mainvisual ._information ._list a {
  color: #355BB7;
}
.f-mainvisual ._information ._button {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 100%;
  max-width: 280px;
  padding: 10px 0;
  min-height: 46px;
  border-radius: 9999px;
  background: #20A0C7;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  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;
  text-decoration: none;
  gap: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._information ._button {
    position: static;
    margin: 40px auto 0;
    font-size: 1.6rem;
  }
}
.f-mainvisual ._information ._button::after {
  display: block;
  width: 6px;
  height: 10px;
  content: "";
  background-image: url(../img/icon_arrow-right.svg);
}
.f-mainvisual ._information ._button:hover {
  opacity: 0.8;
}

/* ============================================
  メインエリア
============================================  */
.f-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .f-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-main ._box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.f-main ._box.--matsuri {
  background-color: #355BB7;
  border-radius: 100px 0 0 0;
}
.f-main ._box.--matsuri ._inner {
  background-image: url(../../img/matsuri_bg.jpg);
}
@media screen and (max-width: 767px) {
  .f-main ._box.--matsuri ._inner {
    border-radius: 50px 0 0 0;
  }
}
.f-main ._box.--matsuri ._inner ._linkbtn {
  color: #355BB7;
}
.f-main ._box.--matsuri ._inner ._linkbtn::after {
  background-image: url(../../img/matsuri_arrow-bottom.svg);
}
.f-main ._box.--food {
  background-color: #E51B19;
  border-radius: 0 0 100px 0;
}
.f-main ._box.--food ._inner {
  background-image: url(../../img/food_bg.jpg);
}
@media screen and (max-width: 767px) {
  .f-main ._box.--food ._inner {
    border-radius: 0 0 50px 0;
  }
}
.f-main ._box.--food ._inner ._linkbtn {
  color: #E51B19;
}
.f-main ._box.--food ._inner ._linkbtn::after {
  background-image: url(../../img/food_arrow-bottom.svg);
}
.f-main ._box ._inner {
  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;
  gap: 30px;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 65px 20px 50px;
}
.f-main ._box ._logo {
  height: 240px;
  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;
}
@media only screen and (max-width: 767px) {
  .f-main ._box ._logo {
    width: 76%;
    height: auto;
  }
}
.f-main ._box ._textarea {
  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;
  gap: 10px;
}
.f-main ._box ._textarea.--date {
  height: 158px;
}
@media only screen and (max-width: 1402px) {
  .f-main ._box ._textarea.--date {
    height: 208px;
  }
}
@media only screen and (max-width: 1000px) {
  .f-main ._box ._textarea.--date {
    height: auto;
  }
}
.f-main ._box ._textarea ._title {
  font-size: 2rem;
  font-weight: 600;
  border: solid 1px #fff;
  padding: 5px 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .f-main ._box ._textarea ._title {
    font-size: 1.6rem;
  }
}
.f-main ._box ._textarea ._date {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .f-main ._box ._textarea ._date {
    font-size: 2rem;
  }
}
.f-main ._box ._textarea ._date span {
  font-size: 5rem !important;
}
@media screen and (max-width: 767px) {
  .f-main ._box ._textarea ._date span {
    font-size: 3rem !important;
  }
}
.f-main ._box ._textarea ._time {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .f-main ._box ._textarea ._time {
    font-size: 1.6rem;
  }
}
.f-main ._box ._textarea ._note {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .f-main ._box ._textarea ._note {
    font-size: 1.4rem;
  }
}
.f-main ._box ._linkbtn {
  width: 100%;
  max-width: 280px;
  padding: 10px 0;
  min-height: 46px;
  border-radius: 9999px;
  background: #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  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;
  text-decoration: none;
  gap: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-main ._box ._linkbtn {
    font-size: 1.6rem;
  }
}
.f-main ._box ._linkbtn::after {
  display: block;
  width: 10px;
  height: 6px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.f-main ._box ._linkbtn:hover {
  opacity: 0.8;
}
.f-main ._box ._anchorwrap {
  width: 100%;
  padding: 50px 0;
  border-top: solid 1px #fff;
}
.f-main ._box ._anchorwrap ._anchor {
  width: 88%;
  margin: 0 auto;
}
.f-main ._box ._anchorwrap ._anchor ._item {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  line-height: 1.875;
  padding: 15px 40px 15px 1em;
  text-decoration: none;
  width: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.f-main ._box ._anchorwrap ._anchor ._item:not(:last-child) {
  border-bottom: solid 1px #fff;
}
.f-main ._box ._anchorwrap ._anchor ._item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(1em + 11px);
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.f-main ._box ._anchorwrap ._anchor ._item::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url(../img/icon_arrow-right.svg);
  position: absolute;
  right: 20px;
  top: calc(1em + 11px);
}
.f-main ._box ._anchorwrap ._anchor ._item:hover {
  padding-left: calc(1em + 10px);
}
.f-main ._box ._anchorwrap ._anchor ._item:hover::before {
  left: 10px;
}

/* ============================================
  詳細エリア
============================================  */
.f-detail {
  color: #fff;
  width: calc(100% - 66px);
  padding: 100px 0;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .f-detail {
    width: 97%;
    padding: 60px 0;
    background-size: 50%;
  }
}
.f-detail ._h2 {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-detail ._h2 {
    font-size: 4rem;
  }
}
.f-detail ._h2::before, .f-detail ._h2::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
}
@media screen and (max-width: 767px) {
  .f-detail ._h2::before, .f-detail ._h2::after {
    width: 20px;
    height: 20px;
  }
}
.f-detail ._h2::before {
  top: -10px;
  left: -30px;
}
@media screen and (max-width: 767px) {
  .f-detail ._h2::before {
    left: -20px;
  }
}
.f-detail ._h2::after {
  bottom: -10px;
  right: -30px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .f-detail ._h2::after {
    right: -20px;
  }
}
.f-detail ._copy {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .f-detail ._copy {
    font-size: 1.8rem;
  }
}
.f-detail ._hukidashi {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
  font-size: 2.4rem;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  margin-bottom: 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-detail ._hukidashi {
    font-size: 1.6rem;
    text-align: left;
  }
}
.f-detail ._hukidashi::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.f-detail ._h3 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .f-detail ._h3 {
    font-size: 2.4rem;
    padding-bottom: 35px;
  }
}
.f-detail ._h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  display: block;
  width: 2px;
  height: 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .f-detail ._h3::after {
    height: 25px;
  }
}
.f-detail ._booth {
  color: #fff;
  margin-bottom: 130px;
}
.f-detail ._article:not(:last-child) {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article:not(:last-child) {
    margin-bottom: 60px;
  }
}
.f-detail ._article ._h4 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
  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;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._h4 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.f-detail ._article ._h4::before, .f-detail ._article ._h4::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #fff;
}
.f-detail ._article ._block {
  color: #333;
  background-color: #F5F3EE;
  border-radius: 30px;
  padding: 40px 50px 30px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block {
    padding: 30px 6% 20px;
  }
}
.f-detail ._article ._block:not(:last-child) {
  margin-bottom: 20px;
}
.f-detail ._article ._block ._title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #355BB7;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._title {
    font-size: 2rem;
  }
}
.f-detail ._article ._block ._place {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2rem;
  font-weight: 600;
  padding: 5px 30px;
  height: 35px;
  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;
  color: #fff;
  border-radius: 10px;
  background-color: #355BB7;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._place {
    font-size: 1.4rem;
    height: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
  }
}
.f-detail ._article ._block ._read {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-all;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._read {
    font-size: 1.6rem;
  }
}
.f-detail ._article ._block ._date {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._date {
    font-size: 2rem;
  }
}
.f-detail ._article ._block ._text {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._text {
    font-size: 1.4rem;
  }
}
.f-detail ._article ._block ._note {
  font-size: 1.4rem;
  line-height: 1.875;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._note {
    font-size: 1.2rem;
  }
}
.f-detail ._article ._block ._tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.f-detail ._article ._block ._tag li {
  font-size: 1.6rem;
  padding: 0.5em 1em;
  border: solid 1px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._tag li {
    font-size: 1.4rem;
  }
}
.f-detail ._article ._block ._titlearea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px 40px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._titlearea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-detail ._article ._block ._titlearea ._title {
  margin-bottom: 0;
}
.f-detail ._article ._block ._contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
@media only screen and (max-width: 1000px) {
  .f-detail ._article ._block ._contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.f-detail ._article ._block ._contents ._textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.f-detail ._article ._block ._contents ._image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.f-detail ._article ._block ._contents ._image.food_article06 {
  -webkit-box-flex: 0.47;
      -ms-flex: 0.47;
          flex: 0.47;
}
.f-detail ._article ._block ._contents ._image img {
  width: 100%;
}
.f-detail ._article ._block ._contents ._image figure:not(:last-child) {
  margin-bottom: 20px;
}
.f-detail ._article ._block ._contents ._image figure figcaption {
  font-size: 1.4rem;
  line-height: 1.875;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._contents ._image figure figcaption {
    font-size: 1.2rem;
  }
}
.f-detail ._article ._block ._contents.--flex1 > figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 1000px) {
  .f-detail ._article ._block ._contents ._contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._contents ._contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-detail ._article ._block ._host {
  background-color: #fff;
  padding: 30px 40px 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._host {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 6%;
  }
}
.f-detail ._article ._block ._host ._hostcontents ._hosttitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._host ._hostcontents ._hosttitle {
    font-size: 1.4rem;
  }
}
.f-detail ._article ._block ._host ._hostcontents ._hostname {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._host ._hostcontents ._hostname {
    font-size: 1.4rem;
  }
}
.f-detail ._article ._block ._host ._hostcontents ._hostname span {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .f-detail ._article ._block ._host ._hostcontents ._hostname span {
    font-size: 1.8rem;
  }
}
.f-detail ._article ._block ._host ._hostcontents ._hosttext {
  font-size: 1.4rem;
  line-height: 1.875;
}
.f-detail ._article ._block ._host ._hostimage {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 156px;
}
.f-detail ._article ._block ._button {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px 30px;
  min-height: 46px;
  border-radius: 9999px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  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;
  text-decoration: none;
  gap: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 900px) {
  .f-detail ._article ._block ._button {
    position: static;
    font-size: 1.6rem;
  }
}
.f-detail ._article ._block ._button::after {
  display: block;
  width: 6px;
  height: 10px;
  content: "";
  background-image: url(../img/icon_arrow-right.svg);
}
.f-detail ._article ._block ._button:hover {
  opacity: 0.8;
}
.f-detail ._map {
  background-color: #fff;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-detail ._map {
    padding: 25px 6%;
  }
}
.f-detail ._map ._button {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px 0;
  min-height: 46px;
  border-radius: 9999px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  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;
  text-decoration: none;
  gap: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 900px) {
  .f-detail ._map ._button {
    position: static;
    font-size: 1.6rem;
  }
}
.f-detail ._map ._button::after {
  display: block;
  width: 6px;
  height: 10px;
  content: "";
  background-image: url(../img/icon_arrow-right.svg);
}
.f-detail ._map ._button:hover {
  opacity: 0.8;
}
.f-detail ._map ._note {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.875;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .f-detail ._map ._note {
    font-size: 1.2rem;
  }
}
.f-detail.--matsuri {
  background-color: #355BB7;
  border-radius: 0 100px 0 100px;
  padding-left: 133px;
  padding-right: 66px;
  background-image: url(../../img/detail_matsuri_bg.png);
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-detail.--matsuri {
    border-radius: 0 50px 0 50px;
    padding-left: 6%;
    padding-right: 3%;
    background-position: -75px 0;
  }
}
.f-detail.--matsuri ._hukidashi {
  color: #355BB7;
}
.f-detail.--matsuri ._article ._block ._title {
  color: #355BB7;
}
.f-detail.--matsuri ._article ._block ._place {
  background-color: #355BB7;
}
.f-detail.--matsuri ._article ._block ._tag li {
  border-color: #355BB7;
}
.f-detail.--matsuri ._button {
  background: #355BB7;
}
.f-detail.--food {
  background-color: #E51B19;
  border-radius: 100px 0 100px 0;
  padding-left: 66px;
  padding-right: 133px;
  margin-left: auto;
  margin-right: 0;
  background-image: url(../../img/detail_food_bg.png);
  background-position: top right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-detail.--food {
    border-radius: 50px 0 50px 0;
    padding-right: 6%;
    padding-left: 3%;
    background-position: right -75px top 0;
  }
}
.f-detail.--food ._hukidashi {
  color: #E51B19;
}
.f-detail.--food ._article ._block ._title {
  color: #E51B19;
}
.f-detail.--food ._article ._block ._place {
  background-color: #E51B19;
}
.f-detail.--food ._article ._block ._tag li {
  border-color: #E51B19;
}
.f-detail.--food ._map ._button {
  background: #E51B19;
}
.f-detail .timetable {
  width: 100%;
  border-collapse: collapse;
}
.f-detail .timetable th, .f-detail .timetable td {
  font-size: 1.6rem;
  line-height: 1.875;
  border: solid 2px #F5F3EE;
  padding: 10px 20px;
}
.f-detail .timetable th {
  color: #fff;
  font-weight: 600;
  background-color: #E51B19;
}
.f-detail .timetable td {
  background-color: #fff;
}
.f-detail .timetable.--gray td {
  background-color: #eee;
}

.foodmenu ._foodmenucopy {
  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;
  gap: 20px;
  margin-bottom: 40px;
}
.foodmenu ._foodmenucopy::before, .foodmenu ._foodmenucopy::after {
  content: "";
  width: 2px;
  height: 41px;
  background-color: #E51B19;
}
.foodmenu ._foodmenucopy::before {
  -webkit-transform: translateY(2px) rotate(-45deg);
          transform: translateY(2px) rotate(-45deg);
}
.foodmenu ._foodmenucopy::after {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.foodmenu ._foodmenucopy p {
  display: inline-block;
  color: #E51B19;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .foodmenu ._foodmenucopy p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1001px) {
  .foodmenu ._foodmenucopy p br {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  .foodmenu ._foodmenucopy p br {
    display: block;
  }
}
.foodmenu ._cheflist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .foodmenu ._cheflist {
    -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;
  }
}
.foodmenu ._cheflist ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
.foodmenu ._cheflist img {
  margin-bottom: 20px;
}
.foodmenu ._cheflist ._name {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .foodmenu ._cheflist ._name {
    font-size: 1.8rem;
  }
}
.foodmenu ._cheflist ._degree {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .foodmenu ._cheflist ._degree {
    font-size: 1.4rem;
  }
}
.foodmenu ._foodmenulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.foodmenu ._foodmenulist ._item {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1000px) {
  .foodmenu ._foodmenulist ._item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
}
.foodmenu ._foodmenulist ._item ._image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  max-width: 313px;
}
@media screen and (max-width: 767px) {
  .foodmenu ._foodmenulist ._item ._image {
    max-width: 100%;
    width: auto;
  }
}
.foodmenu ._foodmenulist ._item ._image img {
  width: 100%;
}
.foodmenu ._foodmenulist ._item ._image figure:not(:last-child) {
  margin-bottom: 20px;
}
.foodmenu ._foodmenulist ._item ._foodmenucontents {
  width: 100%;
}
.foodmenu ._foodmenulist ._item ._foodmenucontents ._foodmenutitle {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .foodmenu ._foodmenulist ._item ._foodmenucontents ._foodmenutitle {
    font-size: 1.8rem;
  }
}
.foodmenu ._foodmenulist ._item ._whitebox {
  background-color: #fff;
  padding: 20px 25px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .foodmenu ._foodmenulist ._item ._whitebox {
    padding: 20px 6%;
  }
}
.foodmenu ._imglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .foodmenu ._imglist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.foodmenu ._imglist ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .foodmenu ._imglist ._item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 46%;
  }
}
.foodmenu ._imglist ._item img {
  width: 100%;
}
.foodmenu ._cap {
  font-size: 1.4rem;
  line-height: 1.875;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .foodmenu ._cap {
    font-size: 1.2rem;
  }
}
.foodmenu ._detaillist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1000px) {
  .foodmenu ._detaillist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.foodmenu ._detaillist ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 20px;
  border: solid 1px #E51B19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.foodmenu ._foodmenufigure {
  margin-top: 50px;
  background-color: #fff;
  padding: 20px 0;
}
.foodmenu ._foodmenufigure figure {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .foodmenu ._foodmenufigure figure {
    width: 100%;
  }
}
.foodmenu ._foodmenufigure figure img {
  width: 100%;
}
.foodmenu ._reservationbtn {
  width: 100%;
  padding: 20px 0;
  min-height: 90px;
  border-radius: 9999px;
  background: #333;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  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;
  text-decoration: none;
  gap: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .foodmenu ._reservationbtn {
    font-size: 1.6rem;
    min-height: 60px;
  }
}
.foodmenu ._reservationbtn::before {
  display: block;
  width: 34px;
  height: 39px;
  content: "";
  background-image: url(../../img/icon_reservationbtn.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .foodmenu ._reservationbtn::before {
    width: 24px;
    height: 29px;
  }
}
.foodmenu ._reservationbtn:hover {
  opacity: 0.8;
}

figcaption {
  font-size: 1.4rem;
  line-height: 1.875;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  figcaption {
    font-size: 1.2rem;
  }
}

.pop {
  position: fixed;
  left: 10px;
  bottom: 10px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  background-color: #f2a3b3;
  border-radius: 9999px;
  width: 150px;
  height: 150px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
  animation: floating-y-2 1.2s ease-in-out infinite alternate-reverse;
}
.pop ._name {
  font-size: 2rem;
}
.pop:hover {
  opacity: 0.8;
}

@-webkit-keyframes floating-y-2 {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@keyframes floating-y-2 {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.dinnertable {
  border-collapse: collapse;
  min-width: 980px;
  width: 100%;
}
.dinnertable th, .dinnertable td {
  font-size: 1.4rem;
  line-height: 1.875;
  text-align: center;
  border: solid 2px #F5F3EE;
  padding: 10px 10px;
}
.dinnertable th span, .dinnertable td span {
  font-size: 1.2rem;
}
.dinnertable th {
  color: #fff;
  font-weight: 600;
  background-color: #E51B19;
}
.dinnertable td {
  background-color: #fff;
}
.dinnertable.--gray td {
  background-color: #eee;
}

/* scroll */
.scroll {
  width: 100%;
  overflow: auto; /*tableをスクロールさせる*/
  white-space: nowrap;
}

.scroll::-webkit-scrollbar { /*tableにスクロールバーを追加*/
  height: 5px;
}

.scroll::-webkit-scrollbar-track { /*tableにスクロールバーを追加*/
  background: #F1F1F1;
}

.scroll::-webkit-scrollbar-thumb { /*tableにスクロールバーを追加*/
  background: #BCBCBC;
}

.fc-food {
  color: #E51B19;
}

._note2 {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.875;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  ._note2 {
    font-size: 1.2rem;
  }
}

/* ============================================
  PC／SPのみ表示
============================================  */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ============================================
  inline-block
============================================  */
.u-inlineblock {
  display: inline-block;
}

/* ============================================
  font
============================================  */
.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-lighter {
  font-weight: 200 !important;
}

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

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

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

.u-cap {
  font-size: 1.5rem;
}

.u-highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgb(255, 255, 65); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.u-indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../img/icon-blank_w.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
}

/* ============================================
  margin/padding
============================================  */
.u-mt0 {
  margin-top: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}/*# sourceMappingURL=style.css.map */