@charset "utf-8";

/* ここからmain */
.title {
  height: 310px;
  background-image: url(../images/shopinfo/shop.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
}

.title p {
  font-size: 20px;
  margin-top: 10px;
}

.title_nopc {
  display: none;
}

.info_title {
  width: 80%;
  margin: 0 auto;
}

.info_title h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.info_title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
}
.container {
  width: 100%;
  margin: 0 auto;
}
.main {
  width: 100%;
}

.shop_info {
  margin-top: 30px;
}

.info {
  width: 80%;
  margin: 0 auto;
  background-color: #f5f7f8;
  border: 1px solid #000;
  margin-top: 25px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.info span {
  font-size: 14px;
  padding-left: 20px;
  display: inline-block;
}

.map iframe {
  width: 600px;
  max-width: 90%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.info dt {
  width: 200px;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
}

.info dd {
  width: calc(100% - 200px);
  padding: 11px 0;
  font-size: 20px;
}

.footer {
  margin-top: 50  px;
}

/* ここからレスポンシブ用 */

@media (max-width:768px) {
.container,
.title,
.shop_info {
  width: 100%;
  box-sizing: border-box;
}

  .title {
    margin-top: 60px;
    height: 100%;
    background-image: url(../images/shopinfo/shop_sp.webp);
  }


  .title h1 {
    font-size: 17px;
    padding: 20px;
  }

  .title p {
    font-size: 17px;
    padding: 20px;
  }

  .title_nopc {
    display: inline;
  }

  .shop_info {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
  }

  .info {
    width: 90%;
    padding: 0 16px;
  }

  .info dd:nth-child(6) {
    padding: 0;
  }

  .info dt,
  .info dd {
    width: 100%;
  }

  .info dt {
    padding-bottom: 0;
  }
  .info span {
    padding-left: 0;
    display: inline-block;
  }
}