/* ===== フッター専用CSS ===== */

#footer {
  height: auto;
  text-align: center;
  background-color: #fef67f;
  color: #333;
  padding: 50px 0;
  width: 100%;
}

#f_inner {
  display: flex;
  justify-content: space-between;
}

#f_left,
#f_right {
  width: 50%;
  display: inline-block;
  box-sizing: border-box;
  padding: 0px 10% 20px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 2;
}

#f_right {
  border: none;
  padding: 10px 10px 20px;
}

#f_right h2 {
  font-size: 16px;
  font-family: fot-seurat-pron, sans-serif;
  border: 1px #333333 solid;
  border-radius: 20px;
  width: 320px;
  display: inline-block;
}

#f_left a {
  color: #fff;
}

#f_left img {
  margin-bottom: 10px;
  width: 90%;
  height: auto;
  max-width: 250px;
}

/* ===== 営業時間 ===== */
.open {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  font-size: 14px;
  width: 210px;
  margin: 30px auto 0;
}

.open dt,
.open dd {
  padding: 0 0 8px;
}

.open dt {
  font-weight: 800;
  width: 26%;
  line-height: 1.5;
  box-sizing: border-box;
  text-align: left;
  font-family: fot-seurat-pron, sans-serif;
}

.open dd {
  width: 74%;
  box-sizing: border-box;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

.open dd a {
  color: #333333;
}

/* ===== コピーライト ===== */
.copy {
  font-size: 12px;
  text-align: center;
}

/* ===== ナビゲーション（フッター用） ===== */
#nav_middle {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
}

#nav_middle ul {
  padding: 30px 10px 50px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

#nav_middle ul li {
  text-align: center;
  width: calc(100% / 6 - 2%);
  height: 110px;
  position: relative;
  line-height: 1.5;
  vertical-align: top;
  border-radius: 5px;
  display: inline-block;
  margin: 10px 2px 0 2px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}

#nav_middle ul li a {
  width: 100%;
  font-size: 14px;
  margin-bottom: 0px;
  color: #111;
  height: 110px;
  padding-top: 75px;
  display: block;
  box-sizing: border-box;
  transition: .4s;
  font-family: fot-seurat-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

#nav_middle ul li a:hover {
  background: rgba(30, 30, 30, 0.3);
}

#nav_middle ul li ul li a {
  padding-left: 30px;
}

#nav_middle ul li:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #111;
  left: 50%;
  top: 10px;
  font-size: 35px;
  transform: translateX(-50%);
}

#nav_middle ul li:hover:after {
  color: #fff;
}

#nav_middle ul li:nth-child(1):after {
  content: '\f549';
  color: #006d4d;
}

#nav_middle ul li:nth-child(2):after {
  content: '\f0d0';
  color: #EFA922;
}

#nav_middle ul li:nth-child(3):after {
  content: '\f54e';
  color: #F23C0A;
}

#nav_middle ul li:nth-child(4):after {
  content: '\f0b1';
  color: #C6CCA5;
}

#nav_middle ul li:nth-child(5):after {
  content: '\f0e0';
  color: #E7F2A5;
}

#nav_middle ul li:nth-child(6):after {
  content: '\f073';
  color: #223D5A;
}

#nav_middle ul li:nth-child(7):after {
  content: '\f304';
  color: #F3B6C7;
}

#nav_middle ul li:nth-child(8):after {
  content: '\f0e0';
  color: #9E56D0;
}

#nav_middle ul li:nth-child(9):after {
  content: '\f3c5';
  color: #BDD402;
}

#nav_middle ul li:nth-child(10):after {
  content: '\f2bd';
  color: #E76E23;
}

/* ===== レスポンシブ対応 ===== */
@media only screen and (max-width: 991px) {
  #nav_middle ul li {
    min-width: 140px;
  }

  #f_right h2 {
    width: auto !important;
    padding: 10px;
    line-height: 1.5;
    margin: 0 0 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  #f_right h2 {
    font-size: 14px;
    font-family: fot-seurat-pron, sans-serif;
    border: 1px #222 solid;
    border-radius: 20px;
    width: 320px;
    display: inline-block;
  }
}

@media only screen and (max-width: 600px) {
  #f_inner {
    display: block;
  }

  #f_left,
  #f_right {
    width: 100%;
  }

  #f_left {
    border-right: none;
  }

  #nav_middle ul li {
    width: calc(100% / 2 - 2%);
  }
}