﻿

.top-section {
  padding: 75px 0 90px;
}

.top-section--bg {
  background: url(../image/bg.jpg) center center/cover no-repeat;
}

.top-section__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1em;
}
.top-section__title .text-nowrap {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
}
.top-section__title .text-colored {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  color: #F47000;
}

.top-section__title-text {
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.top-section__desc {
  margin-bottom: 1.5em;
}

.text-nowrap {
  display: inline-block;
}

/* button リセット */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
  border: 0;
  cursor: pointer;
}

/* メインビジュアル
----------------------------------------------------- */
.hero {
  padding: 20px 0 80px;
  overflow: hidden;
}

.hero__container {
  width: 100%;
  position: relative;
  overflow: visible;
}

.swiper-animal {
  position: absolute;
}

.swiper-animal--cat {
  top: 200px;
  left: -60px;
  width: 129px;
}

.swiper-animal--dog {
  top: 20px;
  right: -80px;
  width: 144px;
}

.swiper-animal--rabbit {
  top: 370px;
  right: -60px;
  width: 137px;
}

.swiper-animals {
  width: 1060px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-frame {
  display: block;
  width: 1060px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 5px #efddc2 solid;
  border-radius: 20px;
}

.hero__slide {
  width: 400px;
  border: 2px #efddc2 solid;
}

.hero__link {
  transition: opacity 0.2s ease-out;
}
.hero__link:hover {
  opacity: 0.8;
}

.hero__pagination {
  position: absolute;
  bottom: -45px !important;
}
.hero__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px #f47000 solid;
  opacity: 1 !important;
}
.hero__pagination .swiper-pagination-bullet-active {
  background-color: #f47000;
}

/* ペット検索
----------------------------------------------------- */
.top-search {
  padding: 0 0 70px;
}

.top-search__search-area {
  max-width: 770px;
  margin-inline: auto;
}

/* タブメニュー */
.top-search__tab-list {
  display: flex;
}

.top-search__tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #4D320D;
  background-color: #FBF5E9;
  border: 2px solid #4D320D;
  width: 8.41176em;
  height: 2.58824em;
  cursor: pointer;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out;
  transform: translateY(2px);
}
.top-search__tab-item:hover {
  opacity: 0.8;
}
.top-search__tab-item:first-of-type {
  border-top-left-radius: 8px;
}
.top-search__tab-item:last-of-type {
  border-top-right-radius: 8px;
}
.top-search__tab-item.is-active {
  color: #fff;
  background-color: #4D320D;
}

/* タブコンテンツ */
.top-search__tab-content-wrap {
  border: 2px solid #4D320D;
  border-radius: 0 8px 8px 8px;
  padding: 25px;
}

.top-search-tab-content {
  display: none;
}
.top-search-tab-content.is-active {
  display: block;
}

.top-detail-search {
  padding: 20px;
  background-color: #FBF5E9;
}

.top-detail-search__input-list {
  display: grid;
  justify-content: center;
  gap: 16px 13px;
  grid-template: "breed  store" "gender price"/1fr 1fr;
}

.top-detail-search__input-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-detail-search__input-item._breeds {
  grid-area: breed;
}
.top-detail-search__input-item._store {
  grid-area: store;
}
.top-detail-search__input-item._gender {
  grid-area: gender;
}
.top-detail-search__input-item._price {
  grid-area: price;
}

.top-detail-search__input-label {
  font-size: 1.6rem;
  line-height: 1.5;
  flex: none;
}

.top-search-form__input-btn {
  position: relative;
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  color: #4D320D;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #4D320D;
  padding: 0.7em 2em 0.7em 1em;
  flex: 1;
  transition: opacity 0.2s ease-out;
}
.top-search-form__input-btn:hover {
  opacity: 0.8;
}
.top-search-form__input-btn::after {
  position: absolute;
  top: 50%;
  right: 0.875em;
  transform: translateY(-50%);
  content: "";
  width: 0.4em;
  height: 0.7em;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #4D320D;
}

/* MIX検索 */
.top-mix-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-top: 20px;
}

.top-mix-search__title-area {
  display: flex;
  align-items: center;
}

.top-mix-search__title {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.6rem;
  line-height: 1;
  margin-right: 1.5em;
}

.top-mix-search__title-image {
  display: inline-block;
  width: 1.6em;
}

.top-mix-search__title-text {
  font-size: 1em;
  line-height: 1;
}

.top-mix-search__input-label {
  font-size: 1.4rem;
}

.top-mix-search__input-btn {
  max-width: 310px;
}

/* 検索・クリアボタン */
.top-search-form__btn-wrap {
  position: relative;
  margin-top: 25px;
}

.top-search-form__submit-btn {
  font-size: 1.6rem;
  font-weight: 700;
}

.top-search-form__clear-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.4rem;
  padding-inline: 0.35em;
  border-bottom: 1px solid;
  transition: opacity 0.2s ease-out;
}
.top-search-form__clear-btn:hover {
  opacity: 0.7;
}

/* ペットをお迎えした後も安心！プチマリサポート
----------------------------------------------------- */
.top-support {
  padding: 0;
}

.top-support__title {
  margin-bottom: 0.5em;
}

.top-support__title-text {
  position: relative;
  padding-inline: 1.47222em;
}
.top-support__title-text::before, .top-support__title-text::after {
  position: absolute;
  top: 0.5em;
  content: "";
  width: 1.18664em;
  height: 1.43583em;
}
.top-support__title-text::before {
  left: 0;
  background: url(../image/deco_dotted-line_top-support_left.svg) center center/contain no-repeat;
}
.top-support__title-text::after {
  right: 0;
  background: url(../image/deco_dotted-line_top-support_right.svg) center center/contain no-repeat;
}

.top-support__content-area {
  background-color: #FBF5E9;
  padding: 25px 0 28px;
}

.top-support__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.top-support-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.9rem;
  padding: 0.7em;
  border-radius: 10px;
  width: 12.727em;
  height: 5.715em;
  box-shadow: 6px 6px 3px rgba(162, 162, 162, 0.4);
  transition: opacity 0.2s ease-out;
}
.top-support-item__link:hover {
  opacity: 0.8;
}
.top-support-item__link._security {
  background-color: #ffeced;
}
.top-support-item__link._service {
  background-color: #e7eac2;
}
.top-support-item__link._support {
  background-color: #f4dac4;
  gap: 1em;
}

.top-support-item__link._security .top-support-item__image {
  width: 1.84211em;
}
.top-support-item__link._service .top-support-item__image {
  width: 1.42105em;
}
.top-support-item__link._support .top-support-item__image {
  width: 1em;
}
.top-support-item__image img {
  width: auto;
  max-width: 100%;
}

.top-support-item__text {
  position: relative;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.636;
  text-align: center;
  padding-right: 1em;
}
.top-support-item__link._security .top-support-item__text {
  color: #D8686B;
}
.top-support-item__link._service .top-support-item__text {
  color: #8C9600;
}
.top-support-item__link._support .top-support-item__text {
  color: #F47000;
}
.top-support-item__text::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 0.5em;
  height: 1em;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.top-support-item__link._security .top-support-item__text::after {
  background-color: #D8686B;
}
.top-support-item__link._service .top-support-item__text::after {
  background-color: #8C9600;
}
.top-support-item__link._support .top-support-item__text::after {
  background-color: #F47000;
}

/* 人気の犬種/人気の猫種/人気の小動物など
----------------------------------------------------- */
.top-popular .content__list--top {
  align-items: center;
  justify-content: center;
  gap: 20px 10px;
  padding: 20px;
  height: auto;
}
.top-popular .content__list--top .content__item {
  margin: 0;
  transition: opacity 0.2s ease-out;
}
.top-popular .content__list--top .content__item:hover {
  opacity: 0.8;
}
.top-popular .content__list--top .content__item.titleBg {
  display: none;
}
.top-popular .content__list--top .content__item--smallAnimal {
  height: 135px;
}
.top-popular .content__list--top .content__item--smallAnimal span {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}

.top-popular--dog,
.top-popular--cat {
  padding: 75px 0 0;
}

.top-popular__box {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

/* 最近仲間入りした子たち
----------------------------------------------------- */
.topNew .petList__wrapper {
  align-items: flex-start;
}
.topNew .petList__sub {
  padding-top: 15px;
}

/* 店舗検索
----------------------------------------------------- */
.store__wrap {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.store__img {
  width: 100%;
  max-width: 620px;
  position: relative;
  z-index: 10;
  margin: 0 auto 3rem;
}

.store__img::before {
  position: absolute;
  top: -70px;
  left: -50px;
  content: "";
  width: 134px;
  height: 148px;
  background-image: url(../image/border_rabbit.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.store__img:after {
  position: absolute;
  bottom: -220px;
  right: -295px;
  content: "";
  width: 244px;
  height: 497px;
  background-image: url("../image/footprints02.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.store__mapList {
  max-width: 1060px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.store__mapList li {
  width: calc(24% - 0.5rem);
  overflow: hidden;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}

.store__mapList li a {
  border-radius: 6px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 1rem 12px 5px;
}

.store__mapList li a .prefecture {
  margin: 0 auto;
  font-size: 2.4rem;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
}

.store__mapList li a .prefecture span {
  margin-right: 1rem;
  font-size: 2.4rem;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
}

.store__mapList li a .prefecture br {
  display: none;
}

.store__mapList li a img {
  width: 9px;
  height: 14px;
}

.store__mapList li:first-child a {
  background: #f48c39;
}

.store__mapList li:nth-child(2) a {
  background: #53bbcc;
}

.store__mapList li:nth-child(3) a {
  background: #b2bc20;
}

.store__mapList li:nth-child(4) a {
  background: #3cad83;
}

.store__mapList li:nth-child(5) a {
  background: #ff808b;
}

.store__mapList li:nth-child(6) a {
  background: #bc83b3;
}

.store__mapList li:last-child a {
  background: #6a8ad1;
}

.store__mapList li:nth-of-type(4n) {
  margin-right: 0;
}

.store__mapList li a:hover {
  background: #4d320d;
}

.store__more {
  margin: 0 auto;
}

/* プチマリサポート５つのポイント
----------------------------------------------------- */
.top-point__title {
  margin-bottom: 1.7em;
}

.top-point__title-text {
  position: relative;
  padding-inline: 2.1em;
}
.top-point__title-text::before, .top-point__title-text::after {
  position: absolute;
  top: 0.4em;
  content: "";
  width: 2.00694em;
  height: 3.23111em;
}
.top-point__title-text::before {
  left: 0;
  background: url(../image/deco_dotted-line_top-point_left.svg) center center/contain no-repeat;
}
.top-point__title-text::after {
  right: 0;
  background: url(../image/deco_dotted-line_top-point_right.svg) center center/contain no-repeat;
}

.top-point__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px 20px;
  max-width: 700px;
  margin-inline: auto;
}

.top-point-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  padding: 0.7em;
  border-radius: 1.22727em;
  width: 10em;
  height: 9em;
  box-shadow: 6px 6px 3px rgba(162, 162, 162, 0.4);
  transition: opacity 0.2s ease-out;
}
.top-point-item__link:hover {
  opacity: 0.8;
}
.top-point-item__link._security, .top-point-item__link._service, .top-point-item__link._support {
  gap: 1em;
}
.top-point-item__link._vaccine, .top-point-item__link._check {
  gap: 0.5em;
}
.top-point-item__link._security {
  background-color: #ffeced;
}
.top-point-item__link._service {
  background-color: #e7eac2;
}
.top-point-item__link._support {
  background-color: #f4dac4;
}
.top-point-item__link._vaccine {
  background-color: #d4eef2;
}
.top-point-item__link._check {
  background-color: #fbf5e9;
}

.top-point-item__image img {
  width: auto;
  max-width: 100%;
}

.top-point-item__text {
  position: relative;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.636;
  text-align: center;
  padding-right: 1em;
}
.top-point-item__link._security .top-point-item__text {
  color: #D8686B;
}
.top-point-item__link._service .top-point-item__text {
  color: #8C9600;
}
.top-point-item__link._support .top-point-item__text {
  color: #F47000;
}
.top-point-item__link._vaccine .top-point-item__text {
  color: #53bbcc;
}
.top-point-item__link._check .top-point-item__text {
  color: #4D320D;
}
.top-point-item__text::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 0.5em;
  height: 1em;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.top-point-item__link._security .top-point-item__text::after {
  background-color: #D8686B;
}
.top-point-item__link._service .top-point-item__text::after {
  background-color: #8C9600;
}
.top-point-item__link._support .top-point-item__text::after {
  background-color: #F47000;
}
.top-point-item__link._vaccine .top-point-item__text::after {
  background-color: #53bbcc;
}
.top-point-item__link._check .top-point-item__text::after {
  background-color: #4D320D;
}

/* 巣立った子たち
----------------------------------------------------- */
.top-review {
  padding: 75px 0 30px;
}

/* 店舗ブログ
----------------------------------------------------- */
.top-blog {
  padding: 75px 0 30px;
}

/* お役立ち情報
----------------------------------------------------- */
.top-tips {
  padding: 75px 0 30px;
}

/* 安心のペットショップを目指して
----------------------------------------------------- */
.about {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.about__inner::before {
  position: absolute;
  right: -110px;
  bottom: 0;
  content: "";
  width: 361px;
  height: 1218px;
  background-image: url(../image/footprints.png);
  background-size: 361px auto;
  background-repeat: no-repeat;
}

.about__desc {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about__attempt-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 770px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.attempt-item__title {
  position: relative;
  font-size: 2rem;
  padding-left: 2em;
  margin-bottom: 0.3em;
}
.attempt-item__title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1.56em;
  height: 1.56em;
  background: url(../image/icon_footprint.png) center center/contain no-repeat;
}

.about__list {
  max-width: 686px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.about__item {
  max-width: 208px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.about__item a {
  display: block;
  position: relative;
}

@media (min-width: 1001px) {
  .about__item a {
    transition: opacity 0.3s, color 0.3s;
  }
  .about__item a:hover {
    opacity: 0.8;
  }
  .about__item a:hover span {
    color: #f48c39;
  }
}
.about__item span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 800;
}

.about__item span img {
  width: 11px;
  margin-left: 5px;
}

/* よくあるご質問
----------------------------------------------------- */
.top-faq {
  padding: 75px 0 30px;
}

/* お知らせ
----------------------------------------------------- */
.top-news__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
}

.top-news__img {
  width: 125px;
  overflow: hidden;
  flex-shrink: 0;
}

.top-news__post {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.top-news__post:last-of-type {
  margin-bottom: 0;
}

.top-news__cat {
  min-width: 92px;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1px 10px;
  margin-right: 20px;
  color: white;
  line-height: 20px;
  text-align: center;
  border-radius: 10px;
}

.top-news__date {
  margin-right: 20px;
}

.top-news__title {
  width: 500px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-news__cat.cat-news {
  background-color: #f47000;
}

.top-news__cat.cat-campaign {
  background-color: #8c9600;
}

/* 採用情報
----------------------------------------------------- */
.top-recruit__desc {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

.top-recruit__banner {
  max-width: 320px;
  margin-inline: auto;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

/* バナーエリア
----------------------------------------------------- */
.top-banner {
  width: 100%;
  padding: 75px 0 100px;
  background-color: #fff8ed;
  position: relative;
}

.banner__img {
  transition: opacity 0.5s;
  opacity: 1;
}

.banner__img:hover {
  opacity: 0.7;
}

.banner__list {
  max-width: 1060px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  gap: 25px 5%;
}

.banner__list--nav {
  margin-top: 80px;
}

.banner__item {
  max-width: 320px;
  width: calc(33.333% - 1.3333333333rem);
}

/* ========================================================
画面幅1000px以下
=========================================================*/
@media (max-width: 1000px) {
  /* 共通部分
  ----------------------------------------------------- */
  .top-section {
    padding: 45px 0 50px;
  }
  .top-section--bg {
    background: url(../image/bg_sp.png) repeat;
  }
  .top-section__title {
    font-size: 2.4rem;
  }
  /* メインビジュアル
  ----------------------------------------------------- */
  .hero {
    padding: 20px 0 60px;
  }
  .hero__slide {
    width: 200px;
  }
  .hero__pagination {
    bottom: -30px !important;
  }
  .hero__pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
  /* ペット検索
  ----------------------------------------------------- */
  .top-search {
    padding: 0 0 50px;
  }
  .top-search__search-area-inner {
    width: 100%;
  }
  .top-search__tab-item {
    position: relative;
    width: 50%;
    border: 1px solid #4D320D;
    background-color: #fff;
    transform: none;
  }
  .top-search__tab-item:first-of-type {
    border-top-left-radius: 0;
  }
  .top-search__tab-item:last-of-type {
    border-top-right-radius: 0;
  }
  .top-search__tab-item::before {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: calc(100% + 2px);
    height: 6px;
    background-color: #FBF5E9;
    z-index: -1;
  }
  .top-search__tab-item::after {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    content: "";
    background-color: transparent;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 10px;
    height: 10px;
  }
  .top-search__tab-item.is-active::before, .top-search__tab-item.is-active::after {
    background-color: #F47000;
  }
  .top-search__tab-content-wrap {
    border: none;
    border-radius: 0;
    padding: 25px 0 0;
  }
  .top-detail-search {
    padding: 20px 5%;
  }
  .top-detail-search__input-list {
    grid-template: "breed" "store" "gender" "price"/1fr;
  }
  /* MIX検索 */
  .top-mix-search {
    flex-direction: column;
    gap: 10px;
    padding-inline: 5%;
  }
  .top-mix-search__title-area {
    align-self: flex-start;
  }
  .top-mix-search__input-area {
    font-size: 1.6rem;
    width: 100%;
    padding-left: calc(2em + 10px);
  }
  .top-mix-search__input-btn {
    width: 100%;
    max-width: none;
  }
  /* 検索・クリアボタン */
  .top-search-form__btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .top-search-form__clear-btn {
    position: static;
  }
  /* ペットをお迎えした後も安心！プチマリサポート
  ----------------------------------------------------- */
  .top-support__list {
    flex-direction: column;
  }
  .top-support-item__link {
    font-size: 1.8rem;
  }
  /* 人気の犬種/人気の猫種/人気の小動物など
  ----------------------------------------------------- */
  .top-popular .content__list--top {
    gap: 10px 5px;
    padding: 20px 4%;
  }
  .top-popular .content__list--top .content__item--smallAnimal {
    height: 130px;
  }
  .top-popular--dog,
  .top-popular--cat {
    padding: 45px 0 0;
  }
  /* 最近仲間入りした子たち
  ----------------------------------------------------- */
  .topNew {
    background: none;
  }
  .topNew .petList__wrapper {
    align-items: center;
  }
  .topNew .petList__sub {
    padding-top: 100px;
  }
  /* 店舗検索
  ----------------------------------------------------- */
  .store::before {
    width: auto;
  }
  .store__wrap {
    flex-direction: column;
    align-items: center;
  }
  .store__img {
    margin-bottom: 22px;
    position: relative;
  }
  .store__img::before {
    top: -40px;
    left: 0;
    width: 100px;
    height: 110px;
  }
  .store__img::after {
    content: "";
    position: absolute;
    width: 148px;
    height: 317px;
    right: -50px;
    bottom: -260px;
    z-index: 1000;
    background-image: url(../image/footprints-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .store__mapList {
    position: relative;
    z-index: 1000;
  }
  .store__mapList li {
    margin-bottom: 14px;
    width: calc(50% - 0.7rem);
    margin-right: 1.4rem;
  }
  .store__mapList li:nth-of-type(2n) {
    margin-right: 0;
  }
  .store__mapList li a .prefecture {
    font-size: 1.6rem;
  }
  .store__mapList li a .prefecture span {
    margin: 0;
    font-size: 1.6rem;
  }
  .store__mapList li a .prefecture br {
    display: block;
  }
  .content__item--dogcat:first-of-type {
    top: 0px;
  }
  /* プチマリサポート５つのポイント
  ----------------------------------------------------- */
  .top-point__list {
    gap: 20px;
  }
  .top-point-item__link {
    font-size: 1.8rem;
  }
  /* 巣立った子たち
  ----------------------------------------------------- */
  .top-review {
    padding: 45px 0 20px;
  }
  /* 店舗ブログ
  ----------------------------------------------------- */
  .top-blog {
    padding: 45px 0 20px;
  }
  /* 安心のペットショップを目指して
  ----------------------------------------------------- */
  .about {
    background: url(../image/bg_sp.png) repeat;
  }
  .about__inner::before {
    width: 148px;
    height: 317px;
    right: -20px;
    bottom: 250px;
    background: url(../image/footprints-sp.png) no-repeat center center/contain;
  }
  .about__inner::after {
    bottom: -115px;
    right: 0;
  }
  .attempt-item__title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .attempt-item__text {
    font-size: 1.4rem;
  }
  .about__list {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
  .about__item {
    margin-bottom: 15px;
  }
  .about__item:last-of-type {
    margin-bottom: 0;
  }
  /* よくあるご質問
  ----------------------------------------------------- */
  .top-faq {
    padding: 45px 0 20px;
  }
  .top-faq::before {
    width: auto;
  }
  .top-faq__inner::after {
    width: 106px;
    height: 106px;
    top: -110px;
  }
  /* お知らせ
  ----------------------------------------------------- */
  .top-news__container {
    flex-direction: column;
    align-items: center;
  }
  .top-news__img {
    max-width: 335px;
    width: 100%;
    margin: 0 0 20px;
    overflow: visible;
  }
  .top-news__list {
    width: 100%;
    margin: 0 auto;
  }
  .top-news__post {
    flex-wrap: wrap;
  }
  .top-news__date {
    font-size: 1.4rem;
  }
  .top-news__dummy {
    width: 100%;
  }
  .top-news__title {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  .top-news__none {
    display: none;
  }
  /* 採用情報
  ----------------------------------------------------- */
  .top-recruit {
    background: url(../image/bg_sp.png) repeat;
  }
  /* バナーエリア
  ----------------------------------------------------- */
  .top-banner {
    padding: 45px 0 80px;
  }
  .banner__item {
    width: 100%;
  }
  .banner__list {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
  .banner__list--nav {
    display: none;
  }
  .banner__img {
    max-width: 320px;
    width: 100%;
  }
}