@charset "utf-8";
/* ======================================================
CSS information

 File Name  : shop.css
 Style Info : 「店舗案内」のCSS
====================================================== */

#new-block {
  margin-bottom: 15px;
  text-align: center;
}

#new-block.inner {
  width: 100%;
}

#new-block .relative {
  margin-bottom: 5px;
}

#new-block h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px 0;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: rgba(0,0,0,.3);
}

#new-block p {
  line-height: 1.4;
  padding: 0 1em;
  color: #b59e79;
  font-size: 1.4rem;
  text-align: left;
}

#info-block .inner {
  width: 100%;
}

#staff-img {
  margin-bottom: 15px;
}

#about-box {
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

#about-box dt {
  clear: left;
  float: left;
  padding: 10px 0;
  width: 6em;
}

#about-box dt:before {
  content: '\f18e';
  display: inline-block;
  padding-right: .3em;
  font-family: 'FontAwesome';
}

#about-box dd {
  padding: 10px 0 10px 6em;
  border-bottom: dashed 1px #ccc;
}

#about-box dd .br {
  display: block;
}

#about-box dt:first-of-type,
#about-box dd:first-of-type {
  padding-top: 0;
}

#about-box dt:last-of-type,
#about-box dd:last-of-type {
  padding-bottom: 0;
  border: none;
}

#link-box.flex {
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#link-box li {
  width: -webkit-calc(92% / 3);
  width:         calc(92% / 3);
}

#link-box li a {
  line-height: 40px;
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background: #212121;
  box-shadow: 0 0 0 1px #212121,0 0 0 1px #fff inset;
  -webkit-transition: all .5s ease;
          transition: all .5s ease;
}

#link-box li a:hover {
  color: #212121;
  background: #fff;
  box-shadow: 0 0 0 1px #fff,0 0 0 1px #212121 inset;
}

/* 768px～（タブレット）
------------------------------------------------------ */
@media screen and (min-width: 768px) {

  #new-block {
    margin-bottom: 25px;
  }

  #new-block .relative {
    margin-bottom: 7px;
  }

  #new-block h2 {
    font-size: 2rem;
  }

  #new-block p {
    line-height: 1.5;
    padding: 0;
    text-align: center;
  }

  #info-block .flex {
    display: -webkit-flex;
    display:         flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

  #staff-img {
    margin-bottom: 0;
    width: 43%;
  }

  #about-box {
    line-height: 1.3;
    margin-bottom: 0;
    width: 54%;
    font-size: 1.4rem;
  }

  #about-box dd .br {
    display: inline-block;
    margin-left: .5em;
  }

  #link-box {
    margin-top: 25px;
    width: 100%;
  }

  #link-box li {
    width: -webkit-calc(97% / 3);
    width:         calc(97% / 3);
  }

  #link-box li a {
    line-height: 45px;
  }

}

/* 960px～（パソコン）
------------------------------------------------------ */
@media screen and (min-width: 960px) {

  #new-block {
    margin-bottom: 30px;
  }

  #new-block .relative {
    margin-bottom: 9px;
  }

  #new-block h2 {
    font-size: 2.2rem;
  }

  #new-block p {
    line-height: 1.7;
  }

  #info-block {
    padding: 3em 0;
    background: #FAF8F3;
  }

  #info-block .inner {
    max-width: 1000px;
  }

  #staff-img {
    width: 36%;
  }

  #about-box {
    width: 60%;
    font-size: 1.5rem;
  }

  #about-box dt {
    width: 8em;
  }

  #about-box dd {
    padding-left: 8em;
  }

  #link-box {
    margin-top: 30px;
    width: 15%;
  }

}