.btn-round {
  color: white;
  background: #074097;
  min-height: 6rem;
  min-width: 25rem;
  text-align: center;
  border-radius: 25rem;
  position: relative;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .btn-round {
    min-height: 10rem;
    min-width: 41.2rem;
  }
}

.btn-round--info {
  min-height: 0;
  transition: 0.3s ease;
  min-width: 20rem;
  text-align: center;
  letter-spacing: 0.2rem;
  background-color: #074097;
  color: white;
  font-size: 1.6rem;
  padding: 2rem 6rem 2rem 2.5rem;
  padding-left: calc(2.5rem + 0.2em);
  display: inline-block;
  border-radius: 9999px;
  margin-bottom: 0;
  position: relative;
  border: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  .btn-round--info {
    font-size: 3rem;
    padding: 1rem 9rem 1rem 4rem;
  }
}
.btn-round--info i {
  width: 3.4rem;
  height: 3.4rem;
  background: #fff;
  border-radius: 3.4rem;
  right: 1rem;
  transition: 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  margin: auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .btn-round--info i {
    width: 4.5rem;
    height: 4.5rem;
    right: 2rem;
  }
}
.btn-round--info i::before, .btn-round--info i::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #074097;
  border-right: 2px solid #074097;
  transform: rotate(45deg);
  right: 2.5rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .btn-round--info i::before, .btn-round--info i::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.btn-round--info i::after {
  left: -5rem;
}
@media only screen and (max-width: 767px) {
  .btn-round--info i::after {
    left: -9rem;
  }
}
.btn-round--info:hover {
  background-color: white;
  border: 1px solid #074097;
  color: #074097;
  opacity: 1;
}
.btn-round--info:hover i {
  background: #074097;
}
.btn-round--info:hover i::before, .btn-round--info:hover i::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.btn-round--info:hover i::before {
  right: -5rem;
}
@media only screen and (max-width: 767px) {
  .btn-round--info:hover i::before {
    right: -9rem;
  }
}
.btn-round--info:hover i::after {
  left: 0;
}

.blog-list {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.blog-list__single {
  background: #eef2f8;
  width: calc((100% - 5rem) / 3);
}
.blog-list__single .thumb {
  width: 100%;
}
.blog-list__single .thumb figure {
  overflow: hidden;
}
.blog-list__single .thumb img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 0.3s;
}
.blog-list__single .post-text {
  padding: 3rem 2rem 3rem 3rem;
}
.blog-list__single .post-text .post_info {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
}
.blog-list__single .post-text .post_info .blog-cat {
  width: 12rem;
  line-height: 2rem;
  background-color: #074097;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .post_info .blog-cat {
    width: 20rem;
    line-height: 3.4rem;
    font-size: 2rem;
    margin-right: 3rem;
  }
}
.blog-list__single .post-text .post_info .blog-date {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .post_info .blog-date {
    font-size: 2.5rem;
  }
}
.blog-list__single .post-text .post_ttl {
  display: flex;
  align-items: flex-start;
}
.blog-list__single .post-text .post_ttl h3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.666;
  letter-spacing: 0.025em;
  width: calc(100% - 5.8rem);
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .post_ttl h3 {
    font-size: 3rem;
    width: calc(100% - 8.4rem);
  }
}
.blog-list__single .post-text .post_ttl i {
  width: 3.8rem;
  height: 3.8rem;
  background: #333;
  border-radius: 3.8rem;
  position: relative;
  margin-left: auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .post_ttl i {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.blog-list__single .post-text .post_ttl i::before, .blog-list__single .post-text .post_ttl i::after {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0.4rem;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .post_ttl i::before, .blog-list__single .post-text .post_ttl i::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.blog-list__single .post-text .post_ttl i::after {
  left: -6rem;
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .post_ttl i::after {
    left: 10rem;
  }
}
.blog-list__single .post-text .blog-valid {
  font-size: 1.4rem;
  font-weight: 500;
  color: #e5022c;
}
@media only screen and (max-width: 767px) {
  .blog-list__single .post-text .blog-valid {
    font-size: 2.6rem;
  }
}
.blog-list__single a:hover {
  opacity: 1;
}
.blog-list__single a:hover .thumb figure img {
  transform: scale(1.1);
}
.blog-list__single a:hover .post-text .post_ttl i::before {
  right: -6rem;
}
.blog-list__single a:hover .post-text .post_ttl i::after {
  left: 0;
}

.shop-section-title {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 2.4rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .shop-section-title {
    display: block;
    font-size: 3.6rem;
  }
}
.shop-section-title .enfont {
  font-size: 6rem;
  color: #074097;
  font-weight: 500;
  margin-right: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .shop-section-title .enfont {
    font-size: 9rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .shop-section-title span {
    display: block;
  }
}

.second-mv-title {
  width: 100%;
  height: 8.4rem;
  display: block;
  background: #fff;
  border: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  .second-mv-title {
    height: 16.3rem;
    border-width: 2px;
  }
}
.second-mv-title .title-box {
  padding: 0;
  margin-bottom: 5.5rem;
  background: none;
}
@media only screen and (max-width: 767px) {
  .second-mv-title .title-box {
    margin-bottom: 12rem;
  }
}
.second-mv-title .title-box h1 {
  justify-content: center;
  margin: 0;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  .second-mv-title .title-box h1 {
    display: flex;
    flex-wrap: wrap;
  }
  .second-mv-title .title-box h1 span {
    background: none;
    padding: 2rem 0 0;
    width: 100%;
    text-align: center;
  }
}

.single-shop #page-title {
  margin-bottom: 3rem;
}
.single-shop main {
  margin-top: 6.5rem;
}
.single-shop .shop-title {
  display: flex;
  align-items: center;
  font-size: 4rem;
  font-weight: bold;
  color: #074097;
  border-bottom: 1px solid #074097;
  position: relative;
  padding-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-title {
    font-size: 5.2rem;
  }
}
.single-shop .shop-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #074097;
  left: 0;
  bottom: 0.4rem;
}
.single-shop .shop-title figure {
  width: 9.5rem;
  margin-right: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-title figure {
    width: 12.3rem;
  }
}
.single-shop .shop-title__jopro {
  color: black;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.single-shop .shop-list__item {
  color: black;
  margin-top: 5rem;
  background-color: #eef2f7;
  border: 1px solid #eef2f7;
  transition: 0.3s ease;
  padding: 3rem;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item {
    flex-wrap: wrap;
    padding: 4rem;
    margin-top: 7rem;
  }
}
.single-shop .shop-list__item-gmap {
  width: 46rem;
  margin-right: 4rem;
}
.single-shop .shop-list__item-gmap iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-gmap {
    width: 100%;
    margin-right: 0;
    min-height: 35rem;
  }
}
.single-shop .shop-list__item-info {
  width: calc(100% - 50rem);
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-info {
    width: auto;
    margin-top: 4rem;
  }
}
.single-shop .shop-list__item-info dl {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b8c8e2;
  margin-top: 2rem;
  padding-top: 2rem;
}
.single-shop .shop-list__item-info dl:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.single-shop .shop-list__item-info dt {
  width: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-info dt {
    width: 4rem;
    margin-right: 2rem;
  }
}
.single-shop .shop-list__item-info dd {
  width: calc(100% - 5rem);
  line-height: 1.6666666667;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-info dd {
    line-height: 1.3571428571;
  }
}
.single-shop .shop-list__item-info-link {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-info-link {
    margin-top: 4rem;
    display: block;
  }
}
.single-shop .shop-list__item-info-link .item {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-info-link a {
    display: block;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    height: auto;
    font-size: 2.6rem;
  }
}
.single-shop .shop-list__item-address {
  display: flex;
  font-size: 1.8rem;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-address {
    font-size: 2.8rem;
    display: block;
  }
}
.single-shop .shop-list__item-zip {
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-zip {
    margin-right: 0;
    display: block;
  }
}
.single-shop .shop-list__item-access {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-access {
    font-size: 2.6rem;
  }
}
.single-shop .shop-list__item-tel, .single-shop .shop-list__item-carport, .single-shop .shop-list__item-fax, .single-shop .shop-list__item-hours {
  font-size: 1.8rem;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-tel, .single-shop .shop-list__item-carport, .single-shop .shop-list__item-fax, .single-shop .shop-list__item-hours {
    font-size: 2.8rem;
  }
}
.single-shop .shop-list__item-tel .enfont, .single-shop .shop-list__item-carport .enfont, .single-shop .shop-list__item-fax .enfont, .single-shop .shop-list__item-hours .enfont {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  padding-left: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-tel .enfont, .single-shop .shop-list__item-carport .enfont, .single-shop .shop-list__item-fax .enfont, .single-shop .shop-list__item-hours .enfont {
    line-height: 1.1;
    font-size: 3.6rem;
  }
}
.single-shop .shop-list__item-tel a, .single-shop .shop-list__item-fax a {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-tel a, .single-shop .shop-list__item-fax a {
    pointer-events: auto;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-hours .shop-list__item-content {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-hours .shop-list__item-content__label {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-hours .shop-list__item-content__body {
    width: auto;
  }
}
.single-shop .shop-list__item-sale {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-sale {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-sale .shop-list__item-content {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-sale .shop-list__item-content__label {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-sale .shop-list__item-content__body {
    width: auto;
  }
}
.single-shop .shop-list__item-content {
  display: flex;
}
.single-shop .shop-list__item-content__label {
  width: 12rem;
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-content__label {
    width: 17rem;
  }
}
.single-shop .shop-list__item-content__body {
  width: calc(100% - 12rem);
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-content__body {
    width: calc(100% - 17rem);
  }
}
.single-shop .shop-list__item-content p {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-content p {
    font-size: 2.8rem;
  }
}
.single-shop .shop-list__item-flat {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-list__item-flat {
    font-size: 2.8rem;
  }
}
.single-shop .shop-flyer {
  margin-top: 5rem;
  max-width: 94rem;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-flyer {
    max-width: none;
  }
}
.single-shop .shop-flyer-container h3 {
  font-size: 2.4rem;
  color: #074097;
  margin-bottom: 1rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-flyer-container h3 {
    font-size: 2.8rem;
  }
}
.single-shop .shop-flyer-content {
  display: flex;
}
.single-shop .shop-flyer-content a {
  display: block;
  width: 48.9361702128%;
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-flyer-content a {
    width: 48%;
    margin-right: 4%;
  }
}
.single-shop .shop-flyer-content a:nth-child(even) {
  margin-right: 0;
}
.single-shop .shop-point {
  display: flex;
  max-width: 94rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 0;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-point {
    margin-top: 7rem;
    flex-wrap: wrap;
    max-width: 80%;
    gap: 2.5rem;
    justify-content: flex-start;
  }
}
.single-shop .shop-point li {
  width: 14.8936170213%;
  margin-top: 0;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-point li {
    flex-wrap: wrap;
    width: calc((100% - 5rem) / 3);
  }
}
.single-shop .shop-view {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view {
    margin-top: 10rem;
    display: block;
  }
}
.single-shop .shop-view__photo {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__photo {
    width: 100%;
  }
}
.single-shop .shop-view__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-shop .shop-view__voice {
  width: 50%;
  background-color: #eef2f8;
  border: 1px solid #074097;
  padding: 3rem 4.2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice {
    width: 100%;
  }
}
.single-shop .shop-view__voice-inner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-inner {
    display: block;
  }
}
.single-shop .shop-view__voice-title {
  width: 36%;
  box-sizing: border-box;
  margin-right: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-title {
    width: auto;
    margin-right: 0;
  }
}
.single-shop .shop-view__voice-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.single-shop .shop-view__voice-photo-inner {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-photo-inner {
    display: flex;
    align-items: center;
    gap: 5rem;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-photo-inner figure {
    max-width: 17rem;
  }
}
.single-shop .shop-view__voice-photo-inner figure img {
  max-width: 100%;
  border-radius: 100%;
}
.single-shop .shop-view__voice-photo-comming-soon {
  background-color: white;
  width: 14rem;
  height: 14rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-photo-title h3 {
    background-color: #074097;
    color: white;
    border-radius: 9999px;
    font-size: 3rem;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 4rem;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 4rem;
  }
}
.single-shop .shop-view__voice-photo p {
  font-size: 2.2rem;
  margin-top: 2rem;
  color: #074097;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-photo p {
    font-size: 3.2rem;
    margin-top: 0;
    line-height: 1;
  }
}
.single-shop .shop-view__voice-body {
  width: 64%;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-body {
    width: auto;
  }
}
.single-shop .shop-view__voice-body h3 {
  background-color: #074097;
  color: white;
  border-radius: 9999px;
  font-size: 2rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  line-height: 1.1;
  margin-bottom: 0;
}
.single-shop .shop-view__voice-body p {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-view__voice-body p {
    margin-top: 4rem;
    font-size: 2.6rem;
  }
}
.single-shop .shop-imglist {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-imglist {
    display: block;
    width: 76%;
    margin: 7rem auto 0;
  }
}
.single-shop .shop-imglist figure {
  width: calc((100% - 6rem) / 3);
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-imglist figure {
    width: 100%;
    margin-top: 5rem;
  }
}
.single-shop .shop-line-at {
  margin-top: 8rem;
  background-color: #06c755;
  margin: 8rem auto 0;
  padding: 2rem 3rem 2rem 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at {
    padding: 4rem;
  }
}
.single-shop .shop-line-at__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__inner {
    display: block;
    background-color: white;
    border-radius: 2rem;
    padding: 3rem;
  }
}
.single-shop .shop-line-at__title {
  width: 42.1052631579%;
  background-color: white;
  border-radius: 2rem;
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__title {
    width: auto;
    background-color: transparent;
    padding: 0;
  }
}
.single-shop .shop-line-at__title-shop {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #06c755;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__title-shop {
    font-size: 3.6rem;
  }
}
.single-shop .shop-line-at__title-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid black;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__title-line {
    display: block;
    border-top: none;
    margin-top: 2rem;
    padding-top: 0;
    text-align: center;
  }
}
.single-shop .shop-line-at__title-line figure {
  width: 6.4rem;
}
.single-shop .shop-line-at__title-account {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.07rem;
  line-height: 1.2;
}
.single-shop .shop-line-at__title-account-label {
  color: #06c755;
  display: inline-block;
  margin-bottom: 1rem;
}
.single-shop .shop-line-at__body {
  font-size: 1.6rem;
  color: white;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__body {
    color: black;
    width: auto;
    border-top: 1px solid black;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 2.6rem;
  }
}
.single-shop .shop-line-at__btn {
  width: 12.4210526316%;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__btn {
    width: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-line-at__btn img {
    height: 8rem;
  }
}
.single-shop .shop-sq-banner {
  margin-top: 10rem;
  padding-bottom: 1.5rem;
}
.single-shop .shop-sq-banner .slick-list {
  margin: 0 -6px;
}
.single-shop .shop-sq-banner .slick-slide {
  margin: 0 6px;
}
.single-shop .shop-information {
  margin-top: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-information {
    margin-top: 12rem;
  }
}
.single-shop .shop-information .blog-list {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-information .blog-list {
    display: block;
    width: 88%;
    margin-top: 7rem;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-information .blog-list article {
    width: 100%;
    margin-top: 6rem;
  }
}
.single-shop .shop-pref-list {
  margin-top: 10rem;
  background-color: #f2f2f2;
  padding: 10rem 0 7.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-pref-list {
    margin-top: 12rem;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-pref-list .shop-section-title span.enfont {
    margin-bottom: 3rem;
  }
}
.single-shop .shop-pref-list ul {
  display: flex;
  margin-top: 5.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-pref-list ul {
    margin-top: 7rem;
    gap: 3rem 2rem;
  }
}
.single-shop .shop-pref-list ul li {
  margin-top: 0;
}
.single-shop .shop-pref-list ul li a {
  display: block;
  background-color: #074097;
  padding: 1rem 2rem;
  color: white;
  border-radius: 9999px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .single-shop .shop-pref-list ul li a {
    font-size: 3rem;
    padding: 2rem 4rem;
  }
}
.single-shop .shop-shanhai-banner {
  margin-top: 5rem;
  text-align: center;
}
.single-shop .single-slider .slick-list {
  padding-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .single-shop .single-slider .slick-list {
    padding-bottom: 0;
  }
}
.single-shop .single-slider .slick-dots {
  position: relative;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .single-shop .single-slider .slick-dots {
    bottom: -4rem;
  }
}
.single-shop .single-slider .slick-dots li button::before {
  display: none;
}
.single-shop .single-slider .slick-dots li button {
  border: 1px solid #808080;
  border-radius: 9999px;
  width: 1.2rem;
  height: 1.2rem;
}
.single-shop .single-slider .slick-dots li.slick-active button {
  background-color: #808080;
}

/*# sourceMappingURL=shop-single.css.map */