@charset "utf-8";
body {
  font-family: "Yu Mincho", YuMincho, serif;
}
/* ======================= ヘッダー */
header {
  border-top: 20px solid #1E376E;
}
header h1 {
  margin: 50px 0 30px 0; /* 上50px、右0px、下30px、左0px のマージンを指定 */
}
.clearfix:after { /* clearfix */
  content:"";
  display: block;
  clear: both;
}
header nav ul li a {
  text-decoration: none; /* 下線を消す */
  background-color: #1E376E; /* 背景色を青色（#1E376E）に ※黄色は#DCDC64 */
  color: #fff; /* 文字色を白（#fff） */
  padding: 10px 0; /* パディング 上下10px 左右0px */
  display: block; /* ブロックレベル表示 */
}
header nav ul li a:hover, /* カーソルを乗せた時 */
header nav ul li a:active, /* クリックした時 */
header nav ul li.current a { /* 現在ページの時 */
  background-color: #000;
}
/* ======================= フッター */
footer {
  background-color: #1E376E;
  color: #FFF;
  padding: 30px 0;
  text-align: center; /* 中央揃え */
}
footer ul {
  padding: 0;
  margin-bottom: 30px;
}
footer ul {
  margin-bottom: 30px;
  padding: 0;
}
footer ul li {
  display: inline; /* インライン表示にして横並びに配置 */
  margin: 0 10px;
}
footer ul li a {
  color: #fff;
}
footer ul li a:link,
footer ul li a:visited {
  text-decoration: none; /* 下線を消す */
}
footer ul li a:hover,
footer ul li a:active {
  text-decoration: underline; /* 下線を表示する */
}
/* ======================= メイン */
main {
  width: 940px;
  margin: 0 auto; /* 中央に配置 */
}
/* パンくずリスト */
#topic_path {
  padding-left: 0;
}
#topic_path li {
  display: inline;
  font-size: 80%;
}
#topic_path li:after {
  padding: 0 10px;
  content: "\003E"; /* 大なり記号を挿入 */
}
#topic_path li:last-child:after { /* 最後のli要素の後ろ */
  content: none;
}
main a:link,
main a:visited {
  color: #1E376E;
}
/* 大見出し */
main h1 {
  border-left: 10px solid #1E376E;
  border-bottom: 1px solid #DCDC64;
  padding: 5px 10px; /* 上下5px 左右10pxのパディング */
  margin-bottom: 30px; /* 30pxの下マージン */
  font-size: 1.8em;
}
/* 中見出し */
main h2 {
  font-size: 1.5em;
  text-align: center;
  position: relative; /* 基準位置 */
  margin-bottom: 50px;
}
main h2:before,
main h2:after {
  position: absolute; /* 絶対配置 */
  content: ""; /* 空の内容挿入 */
  border-top: 1px dotted #1E376E;
  width: 300px;
  top: 50%;
}
main h2:before {
  left: 0;
}
main h2:after {
  right: 0;
}
/* ページトップ */
.page_top {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
}
.page_top a {
  padding-top: 4px;
  border-top: 4px solid #1E376E;
}
.page_top a:before {
  content: "↑"; /* 上向きの矢印 */
}
.page_top a:link,
.page_top a:visited {
  color: #1E376E;
  text-decoration: none;
}
/* リード文 */
.lead {
  line-height: 1.8em;
  margin-bottom: 3em;
  font-size: 110%;
}
/* ====================== HOME(index.html) */
#main_visual {
  margin-bottom: 30px;
  float: left;
}
#main_content {
  width: 600px;
  float: left;
}
#banner {
  width: 300px;
  float: right;
}
#home h2 {
  text-align: left;
  border-left: 10px solid #1E376E;
  border-bottom: 1px solid #1E376E;
  padding: 5px 10px;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.5em;
}
#home main h2:before,
#home main h2:after {
  border-top: none; /* 挿入したボーダーを消す */
}
/* お知らせ、店舗情報 */
#news dl, #info dl {
  margin-left: 20px;
  margin-bottom: 30px;
}
#news dt, #news dd,
#info dt, #info dd {
  line-height: 1.5; /* 行の高さを揃える */
}
#news dt, #info dt {
  width: 8em;
  float: left;
  font-weight: bold;
}
#news dd, #info dd {
  margin-left: 8em;
}
/* バナーエリア */
#banner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#banner ul li {
  margin-bottom: 20px;
}
/* ====================== スマートフォン */
@media screen and (max-width: 767px){
  img {
    max-width: 100%;
    height: auto;
  }
  header, main, #main_content, #banner, header nav ul {
    width: 100%;
  }
  header nav ul li {
    margin-right: 0;
    width: 50%; /* 幅を50%に指定 */
    box-sizing: border-box; /* ボーダーの幅を50%に含める */
    border:1px solid #fff;
  }
  main {
    padding: 0 15px;  /* 上下0px、左右15px */
    box-sizing: border-box; /* パディングを幅に含める */
  }
  #banner {
    float: none;
    text-align: center;
  }
  footer ul {
    display: none; /* 非表示に */
  }
}