@charset "utf-8";
@import url("./reset.css");
@import url("./common.css");
/* ======== フレーム ======== */
a:link, a:visited, a:hover, a:active {
  color: #fff;
}
html, body {
  height: 100vh;
}
header, main, footer {
  position: relative;
  width: 100vw;
}
#top-slider {
  width: 100vw;
  min-height: 50%;
  padding: 50px 0;
}
#top-slider img {
  width: 300px;
  height: auto;
  filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.5));
  z-index: 10000;
}
nav {
  width: 100vw;
  height: 60px;
}
nav ul {
  position: relative;
  top: 50%;
  -webkit-transform: tanslateY(-50%);
  transform: translateY(-50%);
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 900px;
  margin: 0 auto;
}
nav ul li {
  display: table-cell;
  padding: 0 5px;
}
nav ul li a {
  height: 40px;
  font: 400 16px "Noto Sans JP", sans-serif;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
  justify-content: center; /* 横方向中央揃え */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #000;
}
nav ul li:hover {
  opacity: .7;
}
main {
  padding: 20px;
}
/* ======== タイトル ======== */
.title1 {
  width: 95%;
  margin: 0 auto;
  padding: 20px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
  color: #fff;
}
.heading {
  margin: 10px 0
}
.title1 .heading {
  position: relative;
  height: 3.6rem;
  padding: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #963;
  line-height: 3.6rem;
}
.title1 .heading .date {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 1.8rem;
  background: #963;
  color: #fff;
}
.title1 .heading .date:before {
  display: block;
  content: ' ';
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  right: 99.9%;
  top: 0;
  border: 0 solid transparent;
  border-width: 3.6rem 3.6rem 0 0;
  border-right-color: #963;
}
.title1 .heading .title {
  float: left;
  padding-left: 1.8rem;
}
/* ======== メイン ======== */
main section {
  width: 900px;
  min-width: 900px;
  text-align: left;
  margin: 0 auto 30px;
}
main section h1 {
  border-left: 20px solid #7D050A;
  border-bottom: 2px solid #7D050A;
  padding-left: 0.5rem;
  padding-bottom: 3px;
}
main section article > p {
  margin: 10px 30px;
  text-indent: 1rem;
  line-height: 180%;
}
main section article {
  width: 100%;
}
main section article div.map {
  width: 800px;
  margin: 0 auto;
}
main section article div.transparent-table {
  display: table;
  width: 100%;
}
main section article div.transparent-table-row {
  display: table-row;
  width: 100%;
  text-align: center;
}
main section article div.transparent-table-cell {
  display: table-cell;
}
main section article div.transparent-table-cell img {
  width: 400px;
  margin: 0 auto;
  height: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
main section article div.transparent-table-cell > p {
  margin-bottom: 20px;
}
footer {
  display: block;
  width: 100%;
  background: blue;
  padding: 20px auto;
}
footer #copyright {
  position: relative;
  font: 600 14px 'Titillium Web', sans-serif;
}
/* ======== 背景色 ======== */
.c_izakaya1 {
  background: #7D050A;
  color: #ffffff;
}
.c_izakaya2 {
  background: #191919;
  color: #ffffff;
}
.c_izakaya3 {
  background: #000;
  color: #ffffff;
}