@charset "utf-8";
@import url("./reset.css");
@import url("./common.css");
/* ======== フレーム ======== */
a:link, a:visited, a:hover, a:active {
  color: #00f;
}
html, body {
  height: 100%;
}
header, main, footer {
  position: relative;
  width: 100%;
}
#top-slider {
  width: 100%;
  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: 100%;
  height: 60px;
}
nav ul {
  position: relative;
  top: 50%;
  -webkit-transform: tanslateY(-50%);
  transform: translateY(-50%);
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
nav ul li {
  display: table-cell;
  padding: 0 5px;
}
nav ul li a {
  height: 40px;
  font: 400 18px "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 a:link,
nav a:visited,
nav a:active {
  color: #fff;
}
nav a:hover {
  color: #ff0;
}
nav ul li:hover {
  opacity: .7;
}
main {
  padding: 20px;
}
/* ======== タイトル ======== */
div.title {
  width: 95%;
  margin: 0 auto;
  padding: 20px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
  color: #963;
}
div.title div.heading {
  margin: 10px 0;
  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;
}
div.title div.heading span.right {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 1.8rem;
  background: #963;
  color: #fff;
}
div.title div.heading span.right: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;
}
div.title div.heading span.left {
  float: left;
  padding-left: 1.8rem;
}
/* ======== メイン ======== */
main section {
  width: 100%;
  max-width: 950px;
  text-align: left;
  margin: 0 auto 30px;
}
main section h1 {
  border-left: 20px solid #00771C;
  border-bottom: 2px solid #00771C;
  padding-left: 0.5rem;
  padding-bottom: 3px;
  color: #000;
}
main section article {
  width: 100%;
}
main section article p {
  margin: 10px 30px;
  text-indent: 1.8rem;
  line-height: 180%;
}
main section article ul {
  list-style: inside;
  margin: 10px 50px;
  text-indent: 1rem;
}
main section article div.map {
  width: 100%;
  text-align: center;
}
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: 100%;
  max-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_shokudo1 {
  background: #00771C;
  color: #ffffff;
}
.c_shokudo2 {
  background: #fff;
  color: #000;
}
.c_shokudo3 {
  background: #000;
  color: #ffffff;
}

@media screen and ( min-width: 901px ) {
}
@media screen and ( max-width: 900px ) {
div.title {
  font-size: 2.4rem;
}
}
