@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*, ::before, ::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background: linear-gradient(90deg,
    #f2f2f2 0%,
    #f2f2f2 73.5%,
    #e7e5e3 26.5%,
    #e7e5e3 100%);
  color: #5A3C32;
  font-family: 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
h2.heading2 {
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: 4.0rem;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.5rem;
}
h2.heading2 span {
  color: #860E0F;
}
.accordion {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

.accordion li {
  margin: 10px 0;
}

.accordion section {
  background-color: #fffafa;
}

.acc_head {
  cursor: pointer;
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
}

.acc_head img {
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s;
}

.acc_head .title {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 3% 50px 3% 3%;
  letter-spacing: 0px;
  transition: all 0.5s ease;
}

/* アコーディオンが開いたらタイトル横の画像が消える場合 */
.acc_head.open img {
  opacity: 0;
  width: 0;
}

/*アイコンの＋と×*/
.acc_head::before,
.acc_head::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}

.acc_head::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}

.acc_head::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}

.acc_head.open::after {
  display: none;
}

/*アコーディオンで現れるエリア*/
.acc_box {
  display: none;
  background-color: #fffafa;
  padding: 10px 15px;
}

.acc_box_inner {
  display: flex;
  justify-content: space-between;
}

.acc_box .shopinfo {
  width: 58%;
}

.acc_box .map {
  width: 40%;
}

.shopinfo_table tr {
  border-bottom: 5px solid #fffafa;
}

.shopinfo_table th {
  background: #d0cac5;
  padding: 10px;
  width: 28%;
  text-align: center;
}

.shopinfo_table td {
  padding: 10px;
  padding-left: 15px;
  width: 72%;
  letter-spacing: 0.5px;
}

.acc_box .map img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.acc_box .map iframe {
  width: 100%;
  height: 240px;
}

@media screen and (max-width: 768px) {
  .acc_box_inner {
    flex-direction: column;
  }

  .acc_box .shopinfo,
  .acc_box .map {
    width: 100%;
  }

  .acc_box .map {
    max-width: 400px;
    margin: 20px auto 0;
  }

  .shopinfo_table a {
    border-bottom: 1px dotted #d0cac5;
    padding-bottom: 2px;
  }

  h2.heading2 {
    font-size: 2.5rem;
  }

  .acc_head .title {
    font-size: 1.0rem;
  }

}
@media screen and (max-width: 480px) {
  .acc_box {
    padding: 10px 0px;
  }

  .acc_head .title {
    padding-right: 30px;
    line-height: 1.2;
  }

  .acc_head img {
    width: 80px;
  }

  .shopinfo_table {
    margin: 0 auto;
    width: 100%;
  }

  .shopinfo_table th,
  .shopinfo_table td {
    width: 100%;
    display: block;
  }

  .acc_box .map img,
  .acc_box .map iframe {
    height: 200px;
  }
}
/*# sourceMappingURL=shoplist.css.map */