@charset "utf-8";
/*
theme Name: 諏訪商店街キッチンカーテーマ
Author: ワクワクラボ
Description: original テーマ
version： 1.0.0
*/

@import url("css/reset.css");
@import url("css/layout.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*
@import url("css/parts.css");
*/


/* ==========================
 * モバイル下部メニューレイアウト
 * ==========================*/

/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  opacity: 0.95;
  z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#sp-fixed-menu li {
  justify-content: center;
  align-items: center;
  width: 33%;
  padding: 0;
  margin: 0 auto;
  font-size: 12px;
  border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child {
  background: #38b435;
}

#sp-fixed-menu li:nth-child(2) {
  background: #38b435;
}

#sp-fixed-menu li:nth-child(3) {
  background: #38b435;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child {
  background: #f3a324;
}

/*ボタンを調整*/
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  padding: 20px;
}


/*************************
 タブレットレイアウト
*************************/

@media screen and (min-width : 651px) {

  header,
  footer {
    /*   黄色 →  ピンクへ変更  */
    backgtound-color: rgb(216, 191, 216);
  }
}

/*************************
 PCサイズレイアウト
*************************/
@media screen and (min-width : 1025px) {

  header,
  footer {
    /*  1  */
    background-color: rgb(255, 255, 255);
  }


}