body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
/*ページタイトル*/
h2 {
  font-size: 25px;
  padding-top: 40px;
  text-align: center;
}
/*ページタイトル上線*/
h2::before {
  content: url(../img/free_line_top.svg);
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/*ページタイトル下線*/
h2::after {
  content: url(../img/free_line_bottom.svg);
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/*大見出し*/
h3 {
  font-size: 24px;
  text-align: center;
}
/*大見出し装飾：左*/
h3::before {
  content: url("../img/midashi_mame.svg");
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-right: 10px;
}
/*大見出し：右*/
h3::after {
  content: url("../img/midashi_mame.svg");
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-left: 10px;
}
h4 {
  font-size: 20px;
}
/*見出しフォント*/
h2, h3, h4 {
  font-family: 'Shippori Mincho B1', serif;
}
p {
  line-height: 2em;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}
ul {
  list-style: none;
}
/*ボタン*/
.btn {
  display: inline-block;
  width: 200px;
  max-width: 100%;
  padding: 10px 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  background-color: #D48037;
}
/* フレックス */
.flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* ================
ここからheader
================== */
#header {
  background-color: #641212;
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.3);
  width: 100%;
}
/*ロゴ*/
#header img {
  width: 150px;
}
/* ナビゲーション */
.n-sp {
  display: none; /*PC版では非表示にするものに付ける*/
}
/*スマホ版のナビゲーションメニュー*/
.sp-nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(100, 18, 18, 0.9);
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.4s;
  width: 100%;
}
.sp-nav img {
  margin-top: 10px;
}
.sp-item {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 300px;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  font-family: serif;
  font-weight: bold;
}
/* ナビゲーションアイコン */
/*初めての方へ*/
.n-item1::before {
  content: url(../img/hajimete.svg);
  transform: scale(0.7);
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*珈琲へのこだわり*/
.n-item2::before {
  content: url(../img/kodawari.svg);
  transform: scale(0.7);
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*メニュー*/
.n-item3::before {
  content: url(../img/menu.svg);
  transform: scale(0.7);
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*店舗情報*/
.n-item4::before {
  content: url(../img/tenpo.svg);
  transform: scale(0.7);
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 25px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.hamburger {
  background-color: #641212;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(3) {
  opacity: 0;
}
/* このクラスを、jQueryで付与・削除する */
.sp-nav.active {
  transform: translateY(0%);
}
/*ページタイトル*/
.page-title {
  background-color: #EFEBE8;
}
/* ================
ここからmain
================== */
#main {
  background-color: #EFEBE8; /*ページ全体の背景色*/
}
/* 記事の幅 */
.container {
  padding-left: 1rem; /* 左に余白 */
  padding-right: 1rem; /* 右に余白 */
}
/* ================
ここからfooter
================== */
#footer {
  background-color: #641212;
  margin-bottom: 48px; /*中野追加分*/
}
/*copyright*/
#footer small {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  text-align: center;
}
/*フッター前情報の背景*/
.f-info {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url("../img/footer-bg.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
}
/*テーブル前の画像サイズ*/
.f-info img {
  width: 200px;
  margin: 15px 0; /*中野編集済*/
}
/*店舗情報*/
.f-info table {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
  font-size: 14px; /*中野編集済*/
}
.f-info td {
  padding: 3px 20px; /*中野編集済*/
}
/*固定フッターメニュー（中野追加分）*/
.f-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}
.f-menu-list {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  list-style: none;
  text-align: center;
}
.f-menu-item {
  display: table-cell;
  border-left: dotted 0.5px gray;
  border-right: dotted 0.5px gray;
  padding: 4px 0px;
}
.f-menu a {
  text-decoration: none;
  color: #2a2a2a;
}
.f-menu i {
  display: block;
  font-size: 24px;
}
.f-menu a span {
  display: block;
  font-size: 10px;
}
/*ページトップボタン*/
.pagetop, .pagetop a {
  display: none;
}
/*フッターのGoogleMapをスマホで非表示*/
.g-map {
  display: none;
}
@media(min-width:600px) {
  /*ページタイトル上線*/
  h2::before {
    width: 400px;
  }
  /*ページタイトル下線*/
  h2::after {
    width: 400px;
  }
  /*スマホ版のナビゲーションメニューのサイズ調整*/
  .sp-nav ul {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  /*200px→400pxへ*/
  .sp-item {
    width: 400px;
  }
  /*店舗情報とグーグルマップに使用*/
  .pc-flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  /* タブレット版　記事の幅 */
  .container {
    width: 600px;
    margin: 0 auto; /* 中央寄せ */
  }
  /*固定フッターメニュー非表示（中野追加分）*/
  .f-menu {
    display: none;
  }
  #footer {
    margin-bottom: 0; /*中野追加分*/
  }
  /*フッターのGoogleMapをスマホで非表示*/
  .g-map {
    display: block;
  }
  /*ページトップボタン：PC・Tabletのみ表示*/
  .pagetop {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
  }
  .pagetop a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    color: #f0f0f0;
    background: #641212;
    line-height: 50px;
  }
}
@media(min-width:1025px) {
  /* ヘッダー関連 */
  .header-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .n-list li {
    width: 150px;
  }
  .n-list a {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    font-family: serif;
    font-weight: bold;
  }
  .n-sp {
    display: block;
    text-align: center;
  }
  .n-pc {
    display: none;
  }
  .hamburger {
    display: none;
  }
  h3 {
    writing-mode: vertical-rl;
    margin: 0 auto;
  }
  /*ページタイトル上線*/
  h2::before {
    width: 700px;
  }
  /*ページタイトル下線*/
  h2::after {
    width: 700px;
  }
  /*大見出し装飾：上*/
  h3::before {
    padding-bottom: 10px;
  }
  /*大見出し：右*/
  h3::after {
    padding-top: 10px;
  }
  .content {
    max-width: 1025px;
    margin-left: auto;
    margin-right: auto;
  }
  .container {
    width: 60em;
    padding: 0;
  }
  /*フッター*/
  .f-info_inner {
    width: 1000px;
    margin: 0 auto;
  }
  .g-map {
    margin-top: 30px;
    flex: 2;
  }
  .f-nav a {
    font-family: 'Shippori Mincho B1', serif;
    color: #fff;
  }
  .f-nav ul {
    padding-top: 20px;
  }
  .f-info {
    text-align: left
  }
  /*PC版フレックス*/
  .pc-flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
}
@ /*SP：固定ページトップボタン非表示*/
.pagetop {
  display: none;
}