@charset "UTF-8";
/*
kisake a_001 Stylesheet
Last Updated: 2026-04-28
Author: TakakoTaniguchi
URL: https://kisekae.space
Create: https://www.taniweb.jp/
*/

body {
  background-image: url("../images/bg_under.png");
  background-position: top center;
  background-repeat: repeat;
  background-size: contain;
}

/* 背景画像の見えている高さ */
.parallax {
  height: 88px;
}

/* 背景画像 */
.parallax::before {
  background-image: url("../images/bg_top.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
/* header */
/* header 上のラインの色 */
header {
  background-color: var(--color-accent);
  padding-bottom: 14px;
}

@media screen and (max-width: 1280px) {
  header {
    padding-bottom: 0px;
  }

  .parallax::before {
    background-image: url("../images/bg_top.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    z-index: -1;
  }
}

/* header PCの時のロゴ背景 */
.header_main_nav {
  width: 352px;
  position: fixed;
  top: 0px;
  left: 50px;
  z-index: 888;
  background-color: var(--color-accent);
  border-radius: 0 0 24px 24px;
  -webkit-transition: 1s;
  transition: 1s;
}

.header_main_nav.hide {
  -webkit-transform: translateY(-660px);
  transform: translateY(-660px);
}

.wrap_h_main_nav {
  padding: 20px;
}

.h_main_nav_bt_tel {
  max-width: 214px;
  margin-left: auto;
  margin-right: auto;
}

.h_main_logo {
  max-width: 266px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1280px) {
  .header_main_nav {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .header_sp_logo {
    display: none !important;
  }
}

.header_sp_logo {
  width: 25%;
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 88;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-surface);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.wrap_hamburger_menu {
  padding-top: 48px;
}

.menuopen {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 126px;
  height: 26px;
}

.menuopen .toggle_img {
  width: 126px;
  height: 26px;
}

.nav_h_sns ul {
  padding: 8%;
}

.nav_h_sns ul li {
  border-top: 1px solid #474449;
}

.nav_h_sns ul li a {
  padding: 13px 20px 13px 20px;
  display: block;
  background-size: 5px auto;
}

.nav_h_sns ul li:last-child {
  border-bottom: 1px solid #474449;
}

.nav_h_sns ul li a:hover {
  text-decoration: none;
  background-color: var(--color-navhover);
}

.icon_nav {
  max-width: 38px;
  vertical-align: middle;
}

.nav_h_sns_title {
  margin-top: 40px;
}

/* //header */

/* ===========================
       ランダムフォトギャラリー
    =========================== */

.photo_random_slide {
  position: relative;
  width: 100%;
  z-index: 5;
}

.random_slide {
  position: relative;
  -webkit-animation: anime_random 16s linear infinite;
  animation: anime_random 16s linear infinite;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.random_slide.slide_photo01 {
  position: relative;
  z-index: 3;
  -webkit-transform: rotate(-4.37deg);
  transform: rotate(-4.37deg);
}

.random_slide.slide_photo02 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  -webkit-transform: rotate(-0.5deg);
  transform: rotate(-0.5deg);
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.random_slide.slide_photo03 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: rotate(3.65deg);
  transform: rotate(3.65deg);
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.random_slide.slide_photo04 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: rotate(1.65deg);
  transform: rotate(1.65deg);
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

@-webkit-keyframes anime_random {
  0% {
    z-index: 3;
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33.32% {
    z-index: 3;
  }
  33.33% {
    z-index: 3;
    opacity: 0;
  }
  34% {
    z-index: 1;
  }
  38.66% {
    opacity: 1;
  }
  66.65% {
    z-index: 1;
  }
  66.66% {
    z-index: 2;
  }
  99.99% {
    z-index: 2;
  }
  100% {
    z-index: 2;
  }
}

@keyframes anime_random {
  0% {
    z-index: 3;
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33.32% {
    z-index: 3;
  }
  33.33% {
    z-index: 3;
    opacity: 0;
  }
  34% {
    z-index: 1;
  }
  38.66% {
    opacity: 1;
  }
  66.65% {
    z-index: 1;
  }
  66.66% {
    z-index: 2;
  }
  99.99% {
    z-index: 2;
  }
  100% {
    z-index: 2;
  }
}

.photo_random_slide {
  position: relative;
  width: 100%;
  z-index: 5;
}

.random_slide {
  position: relative;
  -webkit-animation: anime_random 16s linear infinite;
  animation: anime_random 16s linear infinite;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.random_slide.slide_photo01 {
  position: relative;
  z-index: 3;
  -webkit-transform: rotate(-4.37deg);
  transform: rotate(-4.37deg);
}

.random_slide.slide_photo02 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  -webkit-transform: rotate(-0.5deg);
  transform: rotate(-0.5deg);
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.random_slide.slide_photo03 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: rotate(3.65deg);
  transform: rotate(3.65deg);
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.random_slide.slide_photo04 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: rotate(1.65deg);
  transform: rotate(1.65deg);
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

@keyframes anime_random {
  0% {
    z-index: 3;
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33.32% {
    z-index: 3;
  }
  33.33% {
    z-index: 3;
    opacity: 0;
  }
  34% {
    z-index: 1;
  }
  38.66% {
    opacity: 1;
  }
  66.65% {
    z-index: 1;
  }
  66.66% {
    z-index: 2;
  }
  99.99% {
    z-index: 2;
  }
  100% {
    z-index: 2;
  }
}

/* ===========================
       カード
    =========================== */

.card {
  background: var(--color-surface);
  border-radius: 42px;
  max-width: 88%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 25px;
  position: relative;
  margin-bottom: 4%;
}

.card-text {
  padding: 2rem;
  font-size: 12px;
  color: initial;
}

/* ===========================
       枠
    =========================== */

.well_white {
  background-color: white;
  padding: 8%;
  border-radius: 8px;
  margin: 2%;
}

.well_sub {
  background-color: var(--color-accent);
  padding: 8%;
  border-radius: 8px;
  margin: 2%;
  color: white;
}

/* ===========================
       SNSボタン・タグクラウド
    =========================== */

.tag-cloud {
  padding: 18px;
  border-radius: 8px;
  display: inline-block;
}

.tag-cloud a {
  display: inline-block;
  padding: 8px 18px;
  margin: 8px;
  background-color: var(--color-accent);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.tag-cloud a:hover {
  color: white;
  background-color: var(--color-accent);
}

/* ===========================
       ニュースリスト
    =========================== */
.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===========================
       ニュースアイテム
    =========================== */
.news-item {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.45s var(--transition-base) forwards;
}

/* 各アイテムのアニメーション遅延 */
.news-item:nth-child(1) {
  animation-delay: 0.1s;
}
.news-item:nth-child(2) {
  animation-delay: 0.18s;
}
.news-item:nth-child(3) {
  animation-delay: 0.26s;
}
.news-item:nth-child(4) {
  animation-delay: 0.34s;
}
.news-item:nth-child(5) {
  animation-delay: 0.42s;
}

.news-item__link {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background var(--transition-base);
}

/* ホバー時：左ボーダーアクセント */
.news-item__link::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.news-item__link:hover::before {
  transform: scaleY(1);
}

/* ===========================
       サムネイル
    =========================== */
.news-item__thumb {
  flex-shrink: 0;
  width: var(--thumb-w);
  height: var(--thumb-h);
  border-radius: var(--radius-thumb);
  overflow: hidden;
  background: var(--color-thumb-bg);
  position: relative;
}

/* 実際の img タグ用スタイル */
.news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.news-item__link:hover .news-item__thumb img {
  transform: scale(1.04);
}

/* ===========================
       NEWSテキスト
    =========================== */
.news-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-item__date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-date);
  font-family: var(--font-sans);
}

/* カテゴリタグ（任意） */
.news-item__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 2px;
  padding: 2px 7px;
  margin-left: 10px;
  vertical-align: middle;
  transition:
    background var(--transition-base),
    color var(--transition-base);
}

.news-item__link:hover .news-item__tag {
  background: var(--color-accent);
  color: #fff;
}

.news-item__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text-primary);
  font-family: var(--font-jp);
  transition: color var(--transition-base);
}

.news-item__link:hover .news-item__title {
  color: var(--color-accent);
}

.news-item__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-family: var(--font-jp);
  /* 3行で省略（任意。削除してもOK） */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 続きを読む矢印 */
.news-item__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.news-item__link:hover .news-item__more {
  opacity: 1;
  transform: translateX(0);
}

.news-item__more svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.news-item__link:hover .news-item__more svg {
  transform: translateX(3px);
}

/* ===========================
       「もっと見る」ボタン
    =========================== */
.news-more-btn {
  display: block;
  width: fit-content;
  margin: 36px auto 0;
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--font-jp);
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-base);
  opacity: 0;
  animation: fadeUp 0.45s var(--transition-base) 0.55s forwards;
}

.news-more-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  z-index: -1;
}

.news-more-btn:hover {
  color: #fff;
}

.news-more-btn:hover::after {
  transform: scaleX(1);
}

/* ===========================
       アニメーション定義
    =========================== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
    NEWS responsive
    =========================== */
@media (max-width: 640px) {
  body {
    padding: 36px 16px;
  }

  .news-item__link {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .news-item__link::before {
    left: -8px;
  }

  .news-item__thumb {
    width: 100%;
    height: var(--thumb-h-sp);
  }

  .news-item__title {
    font-size: 15px;
  }

  .news-item__desc {
    font-size: 13px;
    -webkit-line-clamp: 4;
  }

  .news-item__more {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===========================
       メニュー
    =========================== */
/* ===========================
       カテゴリグループ
    =========================== */
.menu-group {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-group:nth-child(1) {
  animation-delay: 0.2s;
}
.menu-group:nth-child(2) {
  animation-delay: 0.3s;
}
.menu-group:nth-child(3) {
  animation-delay: 0.4s;
}

.menu-group__label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent);
  padding-left: 10px;
  margin-bottom: 12px;
}

/* ===========================
       メニューリスト
    =========================== */
.menu-list {
  list-style: none;
  border-top: 1px solid var(--color-border);
}

/* ===========================
       メニューアイテム
    =========================== */
.menu-item {
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.menu-item__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 4px;
  cursor: default;
  transition: background var(--transition-base);
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* ホバー時の背景 */
.menu-item__inner:hover {
  background: var(--color-accent-light);
  border-radius: var(--radius-card);
}

/* ===========================
       サムネイル
    =========================== */
.menu-item__thumb {
  flex-shrink: 0;
  width: var(--thumb-size);
  height: var(--thumb-size);
  border-radius: var(--radius-thumb);
  background: var(--color-thumb-bg);
  position: relative;
  overflow: hidden;
}

.menu-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.menu-item__inner:hover .menu-item__thumb img {
  transform: scale(1.06);
}

/* ===========================
       メニュー情報
    =========================== */
.menu-item__body {
  flex: 1;
  min-width: 0;
}

/* バッジ群 */
.menu-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.badge {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-badge);
  line-height: 1.6;
  white-space: nowrap;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.badge--recommend {
  background: var(--badge-recommend-bg);
  color: var(--badge-recommend-text);
}

.badge--season {
  background: var(--badge-season-bg);
  color: var(--badge-season-text);
}

.badge--new {
  background: var(--badge-new-bg);
  color: var(--badge-new-text);
}

/* 売り切れ：アイテム全体をグレーアウト */
.menu-item--soldout .menu-item__inner {
  opacity: 0.5;
  pointer-events: none;
}

.badge--soldout {
  background: var(--badge-soldout-bg);
  color: var(--badge-soldout-text);
}

/* バッジにホバーで微小スケール */
.menu-item__inner:hover .badge {
  transform: scale(1.05);
}

/* 名前 */
.menu-item__name {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-bottom: 2px;
}

/* サブ説明（任意） */
.menu-item__sub {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===========================
       価格
    =========================== */
.menu-item__price-wrap {
  flex-shrink: 0;
  text-align: right;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-price);
  letter-spacing: -0.01em;
}

.menu-item__price-unit {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-left: 1px;
}

/* セット価格 */
.menu-item__price-set {
  display: block;
  font-size: 11.5px;
  color: var(--color-text-secondary);
  margin-top: 3px;
  white-space: nowrap;
}

.menu-item__price-set strong {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-accent);
}

/* ===========================
       メニューフッター（注記）
    =========================== */
.menu-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 11.5px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

/* ===========================
       メニューアニメーション
    =========================== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
       メニュー
    =========================== */
@media (max-width: 880px) {
  body {
    padding: 40px 12px;
  }

  /* 縦並びレイアウト */
  .menu-item__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 8px;
  }

  /* サムネイル：横幅いっぱいに広げる */
  .menu-item__thumb {
    width: 100%;
    height: 160px;
  }

  /* 名前・価格を横並びに */
  .menu-item__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .menu-item__name {
    font-size: 14px;
  }

  /* 価格をbodyの下部に右寄せ */
  .menu-item__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-align: left;
  }

  .menu-item__price {
    font-size: 16px;
  }

  .menu-item__price-set {
    display: inline;
    margin-top: 0;
  }
}
/* ===========================
       フッター（注記）
    =========================== */
.menu-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 11.5px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

/* ===========================
       メニューアニメーション
    =========================== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
       メニューレスポンシブ（スマホ）
    =========================== */
@media (max-width: 480px) {
  body {
    padding: 40px 12px;
  }

  .menu-item__thumb {
    width: var(--thumb-size-sp);
    height: var(--thumb-size-sp);
  }

  .menu-item__name {
    font-size: 14px;
  }

  .menu-item__price {
    font-size: 15px;
  }
}

/* ===========================
       テーブル
    =========================== */

.table_respo {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

table.table_respo {
  margin: 8% 0 8% 0;
  font-size: small;
}

.table_respo th {
  border: solid 1px #474449;
  padding: 10px;
}

.table_respo td {
  border: solid 1px #474449;
  padding: 10px;
}

@media screen and (max-width: 640px) {
  .table_respo td.last-td {
    border-bottom: solid 1px #474449;
    width: 100%;
  }
  .table_respo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .table_respo th,
  .table_respo td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .table_respo th {
    background: #f8f8ea;
  }
}
table td {
  /*table内のtdに対して*/
  padding: 3px 10px; /*上下3pxで左右10px*/
}

/* ===========================
       地図
    =========================== */

.g-map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.g-map-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ===========================
       faq
    =========================== */

.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 8%;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #474449;
}

.title {
  position: relative;
  cursor: pointer;
  padding: 3% 3% 3% 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #474449;
}

.title::before {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.title.close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.title.close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.box {
  display: none; /*はじめは非表示*/
  background: #fff;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

/* ===========================
       footer
    =========================== */

footer {
  background: none;
  padding: 130px 0;
}
