@charset "UTF-8";
.shop_list {
  margin: auto;
  max-width: 750px;
  background: url(../img/bg.png) center center/cover no-repeat;
  padding: 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

main {
  overflow-x: hidden;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

/* アコーディオン
================================*/
.accordion-head {
  cursor: pointer;
}

.accordion-body {
  display: none;
}

/* 本文
================================*/
.shop_list h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
  .shop_list h2 {
    font-size: 5.5vw;
  }
}

.shop_list img {
  width: 100%;
}

.shop_list_wrap {
  margin-bottom: 60px;
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
}

@media screen and (max-width: 750px) {
  .shop_list_wrap {
    gap: 40px;
    margin-bottom: 20px;
  }
}

.shop_list_title {
  background-color: #DE5777;
  color: #fff;
  padding: 1rem 0;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.shop_list_title::after {
  position: absolute;
  content: "";
  background: url(../img/open.svg) center center/contain no-repeat;
  width: 1.875rem;
  height: 1.875rem;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.shop_list_title.accordion-open::after {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.shop_list_title h3 {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
  font-size: 40px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .shop_list_title h3 {
    font-size: 5.5vw;
  }
}

.shop_list_inner {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.25rem;
  padding: 0 0.9375rem;
}

@media screen and (max-width: 750px) {
  .shop_list_inner {
    gap: 1.25rem 0.3125rem;
  }
}

.shop_list_item {
  color: #4B443A;
}

.shop_list_item_body {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}

.shop_list_item_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop_list_item_top p {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
  width: 100%;
  text-align: center;
  padding: 0.125rem 0;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .shop_list_item_top p {
    font-size: 2.5vw;
  }
}

.shop_list_item_top p.yellow {
  background: #FFF100;
}

.shop_list_item_top p.blue {
  background: #B0D3D4;
}

.shop_list_item_contents {
  padding: 25px 15px;
}

@media screen and (max-width: 750px) {
  .shop_list_item_contents {
    padding: 15px 10px;
  }
}

.shop_list_item_title {
  position: relative;
  padding-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .shop_list_item_title {
    padding: 0 10px;
    padding-bottom: 7px;
    margin-bottom: 40px;
  }
}

.shop_list_item_title::after {
  position: absolute;
  content: "";
  background: #FFD9E6;
  height: 4px;
  width: 19%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.shop_list_item_title::before {
  position: absolute;
  content: "";
  background: url(../img/tokusetsu.png) center center/contain no-repeat;
  width: 25%;
  height: 30px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  .shop_list_item_title::before {
    top: initial;
    width: 73px;
    bottom: -32px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}

.shop_list_item_title h4 {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 750px) {
  .shop_list_item_title h4 {
    font-size: 3.8vw;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_title h4 {
    font-size: 3.2vw;
  }
}

.shop_list_item_title h4 span {
  font-size: 50%;
  padding-right: 10px;
}

@media screen and (max-width: 750px) {
  .shop_list_item_title h4 span {
    font-size: 60%;
  }
}

.shop_list_item_title h4.left {
  text-align: left;
}

@media screen and (max-width: 750px) {
  .shop_list_item_title h4.left._sp {
    text-align: center;
  }
}

.shop_list_item_address {
  min-height: 80px;
  margin-top: 20px;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .shop_list_item_address {
    padding-left: 40px;
    min-height: 50px;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_address {
    padding-left: 30px;
  }
}

.shop_list_item_address::before {
  position: absolute;
  content: "";
  background: url(../img/shop.png) center center/contain no-repeat;
  left: 10px;
  top: 0;
  width: 30px;
  height: 35px;
}

@media screen and (max-width: 750px) {
  .shop_list_item_address::before {
    width: 25px;
    height: 29px;
    left: 8px;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_address::before {
    width: 15px;
    height: 20px;
    top: -3px;
    left: 6px;
  }
}

@media screen and (max-width: 750px) {
  .shop_list_item_address {
    margin-top: 10px;
  }
}

.shop_list_item_address p {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 750px) {
  .shop_list_item_address p {
    font-size: 2.8vw;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_address p {
    font-size: 2.3vw;
  }
}

.shop_list_item_address p span {
  font-size: 85%;
}

.shop_list_item_tel {
  margin-top: 3px;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .shop_list_item_tel {
    padding-left: 40px;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_tel {
    padding-left: 30px;
  }
}

.shop_list_item_tel::before {
  position: absolute;
  content: "";
  background: url(../img/tel.png) center center/contain no-repeat;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 750px) {
  .shop_list_item_tel::before {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_tel::before {
    width: 22px;
    height: 22px;
    top: -3px;
  }
}

.shop_list_item_tel p {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  color: #B20000;
}

@media screen and (max-width: 750px) {
  .shop_list_item_tel p {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_tel p {
    font-size: 3.3vw;
  }
}

.shop_list_item_form a {
  font-family: YuGothic, 'Yu Gothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif !important;
  display: block;
  width: 100%;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#006B27), to(#003614));
  background: -webkit-linear-gradient(#006B27, #003614);
  background: linear-gradient(#006B27, #003614);
  padding: 0.625rem 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .shop_list_item_form a {
    font-size: 2.8vw;
    padding: 0.3125rem 0;
  }
}

@media screen and (max-width: 560px) {
  .shop_list_item_form a {
    font-size: 2.3vw;
  }
}

.shop_list_item_line {
  margin: auto;
  margin-top: 15px;
  width: 82%;
}

@media screen and (max-width: 750px) {
  .shop_list_item_line {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=style.css.map */