.searchPage {
  padding: 90px 0 80px;
}

.searchPage .mainvisual {
  align-items: start;
}

.searchPage .mainvisual__inner {
  margin-top: 125px;
}

.mainvisual__catch--column {
  display: grid;
  gap: 0 20px;
  grid-template-columns: 48% auto;
}

.mainvisual__subCatch--title {
  align-items: center;
  color: var(--colorBlack);
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize18);
  font-weight: 700;
  gap: 0 16px;
  margin-bottom: 20px;
}

.mainvisual__subCatch--title::before {
  background-color: var(--colorGreen);
  border-radius: 50%;
  content: "";
  height: 16px;
  margin-top: 1px;
  position: relative;
  width: 16px;
}

.mainvisual__subCatch--lead {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize16);
  font-weight: 400;
  line-height: 2;
}

.mainvisual__subCatch {
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  padding: 20px;
}

.mainvisual__illust {
  opacity: 0.6;
  z-index: -1;
}

.mainvisual:has(.secondTitle) {
  height: 460px;
}

.mainvisual__subCatch:has(.secondTitle) .mainvisual__subCatch--title {
  margin-bottom: 10px;
}

.mainvisual__subCatch:has(.secondTitle) .secondTitle {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .mainvisual__catch--column {
    gap: 40px 0;
    grid-template-columns: 1fr;
  }
  .mainvisual__subCatch {
    display: none;
  }
  .searchPage {
    padding-top: 90px;
  }
  .searchPage .mainvisual {
    align-items: center;
    height: 180px;
  }
  .searchPage .mainvisual__inner {
    margin-top: 0;
  }
}
/* -------------------------------------------------
      searchTop
  -------------------------------------------------- */
.searchTop {
  margin: 40px auto 20px;
}
.searchTopInner {
  background-color: var(--colorSkin);
  border-radius: 10px;
  padding: 40px 0;
}

.searchTop__logo {
  height: auto;
  margin: 0 auto;
  width: 300px;
}

.searchTop__text {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 1.85;
  margin: 32px auto;
  text-align: center;
}

.searchTop__store {
  display: flex;
  gap: 0 36px;
  justify-content: center;
  margin: 0 auto;
  width: calc(100% - 100px);
}

.searchTop__store--text {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize15);
  font-weight: 700;
  margin: 0 auto;
}

.searchTop__storeInner {
  background-color: #fff;
  border: 3px solid var(--colorBlack);
  border-radius: 16px;
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 17px 25px 10px 25px;
  width: fit-content;
}

.searchTop__storeHead {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.searchTop__store--acodbtn {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid var(--colorlightGray);
  height: 0;
  width: 0;
}

.active .searchTop__store--acodbtn {
  animation: 0.2s;
  transform: rotate(180deg);
}

.postContents__main {
  border-bottom: 1px solid #ccc;
  padding-bottom: 80px;
}

.searchTop__storeBody {
  max-height: 100%;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.searchTop__storeList {
  border-top: 1px solid var(--colorlightGray);
  display: grid;
  gap: 14px 12px;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 20px 25px;
}

.searchTop__store--btn {
  align-items: center;
  background-color: var(--colorGreen);
  border: none;
  border-radius: 27px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize15);
  font-weight: 700;
  height: 54px;
  justify-content: center;
  letter-spacing: 0.5em;
  max-width: 160px;
  position: relative;
  width: 100%;
}

.searchTop__store--btn::after {
  background: url(../images/search/icon-search-select.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 17px;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}

.storeForm input[type="checkbox"] {
  cursor: pointer;
  opacity: 0;
}

.storeForm label {
  color: #333;
  cursor: pointer;
  display: grid;
  font-size: var(--fontSize14);
  font-weight: 700;
  grid-template-columns: 24px auto;
  line-height: 1.4;
  padding-left: 0;
  position: relative;
}

.storeForm label::before {
  background: #fff;
  border: 1px solid #707070;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 3px;
  transition: 0.3s ease-in-out;
  width: 15px;
}

/* Value specifically for Firefox */
@-moz-document url-prefix() {
  .storeForm label::before {
    top: 0;
  }
}

.storeForm label:has(input:checked)::before {
  background: #2bac4d;
}

.storeForm label::after {
  background: url(../images/icon-tick_white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 7px;
  left: 4px;
  position: absolute;
  top: 8px;
  width: 10px;
}
@media screen and (max-width: 950px) {
  .searchTop__storeList {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .searchTop__logo {
    width: 200px;
  }

  .searchTop__store {
    display: grid;
    width: 90%;
  }

  .searchTop__storeInner {
    width: auto;
  }

  .searchTop__store--btn {
    margin: 20px auto 0;
    width: 100%;
  }

  .searchTop__storeInner {
    padding: 12px 25px 5px 25px;
  }

  .searchTop__storeList {
    grid-template-columns: 1fr;
  }

  .searchTop__text {
    max-width: calc(100% - 40px);
  }

  .storeForm label::before {
    top: 1px;
  }

  .storeForm label::after {
    top: 6px;
  }
}

@media screen and (max-width: 500px) {
  .storeForm label {
    font-size: 13px;
  }
  .searchBottom__acodList--item {
    font-size: 13px;
  }
}
/* -------------------------------------------------
      searchBottom
  -------------------------------------------------- */

.noResults {
  color: var(--colorBlack);
  font-family: var(--fontZenKaku);
  font-size: var(--fontSize16);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.875;
}

.searchBottom {
  margin-top: 40px;
  padding-bottom: 40px;
}

.searchBottom__select {
  display: grid;
  margin-left: auto;
  padding-top: 80px;
  width: 436px;
}

.searchBottom__acodBox {
  display: grid;
  gap: 0 32px;
  grid-template-columns: 1fr;
  justify-items: end;
}

.searchBottom__acodBox:has(.second) {
  grid-template-columns: 1fr 1fr;
  justify-items: start;
}

.searchBottom__acod {
  max-width: 205px;
  width: 100%;
}

.searchBottom__select--title {
  color: var(--colorBlack);
  font-family: var(--fontZenKaku);
  font-size: var(--fontSize30);
  font-weight: 700;
}

.searchBottom__acodInner {
  border: 3px solid var(--colorBlack);
  border-radius: 16px;
  padding: 16px 20px 0 20px;
}

.searchBottom__acod--name {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize12);
  font-weight: 700;
  margin-bottom: 7px;
}

.searchBottom__acodHead {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.searchBottom__acod--title {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 500;
  padding-bottom: 16px;
}

.searchBottom__acodBtn {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid var(--colorlightGray);
  height: 0;
  transition: 0.3s ease-in-out;
  width: 0;
}

.active .searchBottom__acodBtn {
  transform: scaleY(-1);
}

.searchBottom__acodbody {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.searchBottom__acodList {
  border-top: 1px solid #707070;
  display: grid;
  gap: 10px 0;
  padding: 16px 0;
}

.searchBottom__acodList label:not(:last-child) {
  border-bottom: 1px dotted var(--colorpaleGray);
  padding-bottom: 9px;
}

.active .searchBottom__acodbody {
  max-height: 200px;
}

.searchBottom__acodList--item {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 500;
}

button.searchBottom__acodList--item {
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 14px;
  text-align: start;
}

.searchBottom__acodList--item:not(:last-child) {
  border-bottom: 1px dotted var(--colorpaleGray);
}

.searchResults__data {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.searchResults__count {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.searchResults__count:last-child {
  font-size: 18px;
}

.searchResults__countContainer {
  align-items: center;
  display: flex;
  gap: 5px;
  height: fit-content;
  position: relative;
  top: 40px;
}

@media screen and (max-width: 767px) {
  .searchResults__count {
    top: 0;
  }
}

@media screen and (max-width: 550px) {
  .searchResults__data {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .searchResults__countContainer {
    align-items: flex-start;
    flex-direction: column;
    top: 10px;
  }
  .searchResults__count:last-child {
    font-size: 16px;
    margin-left: -8px;
  }
}

@media screen and (max-width: 330px) {
  .searchResults__data {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}

/* searchBottom__selectListBox */
.searchBottom__selectListBox {
  border-top: 1px solid var(--colorpaleGray);
  padding-top: 40px;
}

.searchBottom__selectList--img {
  align-content: flex-start;
  height: auto;
}

.searchBottom__selectList--img img {
  aspect-ratio: 4/3;
  height: auto;
  width: 100%;
}

.searchBottom__selectList {
  display: grid;
  gap: 40px 0;
}

.searchBottom__selectList--item {
  display: grid;
  gap: 0 16px;
  grid-template-columns: 200px auto;
}

.searchBottom__selectList--column {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.categoryIconList {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.searchBottom__selectList--name {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize18);
  font-weight: 700;
  line-height: 2;
  margin-top: 16px;
}

.searchBottom__selectList--text {
  color: var(--colorBlack);
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  line-height: 2;
  margin-bottom: 16px;
}

.searchBottom__selectList--deta {
  align-items: center;
  display: flex;
  gap: 0 32px;
}

.searchBottom__selectList--place,
.searchBottom__selectList--area {
  color: var(--colorlightGray);
  display: flex;
  font-family: var(--fontNotoSansJP);
  font-size: var(--fontSize14);
  font-weight: 400;
  gap: 0 8px;
}

.searchBottom__selectList--place::before {
  background: url(../images/search/icon-search-place.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 12px;
  position: relative;
  top: 1px;
  width: 7px;
}

.searchBottom__selectList--area::before {
  background: url(../images/search/icon-search-area.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 14px;
  position: relative;
  width: 14px;
}

.searchBottom__selectList--icon {
  align-items: center;
  display: flex;
  gap: 4px;
}

.searchBottom__selectList--icon img {
  width: 36px;
}

.searchBottom__selectList--icon p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
	white-space: nowrap;
}

.searchBottom__selectList--icon:has(.categoryItem1) {
  order: 1;
}

.searchBottom__selectList--icon:has(.categoryItem2) {
  order: 2;
}

.searchBottom__selectList--icon:has(.categoryItem3) {
  order: 3;
}

.searchBottom__selectList--icon:has(.categoryItem4) {
  order: 4;
}

.searchBottom__selectList--icon:has(.categoryItem5) {
  order: 5;
}

.searchBottom__selectList--icon:has(.categoryItem6) {
  order: 6;
}

.searchBottom__selectList--icon:has(.categoryItem7) {
  order: 7;
}

.categoryItem1 {
  color: #f44d9a;
}

.categoryItem2 {
  color: #5da82e;
}

.categoryItem3 {
  color: #fa9a00;
}

.categoryItem4 {
  color: #ef5b2f;
}

.categoryItem5 {
  color: #02c2f0;
}

.categoryItem6 {
  color: #4D88C7;
}

.categoryItem7 {
  color: #D2D637;
}

.searchBottom__propertyLogo img {
  height: 30px;
  width: auto;
}

.searchBottom__propertyLogo.iconEcute img {
  height: 26px;
}

.searchBottom__selectList--text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 12px;
  -webkit-line-clamp: 3;
          line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .searchBottom__select {
    gap: 16px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .searchBottom__selectList--item {
    grid-template-columns: 1fr;
  }

  .searchBottom__selectList--column {
    margin-top: 14px;
  }

  .searchBottom__selectList--img img {
    height: auto;
    width: auto;
  }

  .searchBottom__selectList--img {
    text-align: center;
  }
  .searchBottom__selectList {
    gap: 40px 20px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 500px) {
  .searchBottom__selectList--column {
    flex-wrap: wrap;
    gap: 8px;
  }
  .searchBottom__propertyLogo {
    width: 100%;
  }
  .searchBottom__selectList {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 350px) {
  .searchBottom__acodInner {
    padding: 16px 10px 0 10px;
  }

  .searchBottom__acodBtn {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 11px solid var(--colorlightGray);
    position: relative;
    top: 1px;
  }
}
/* -------------------------------------------------
     出店場所を探す 詳細ページ
  -------------------------------------------------- */
.searchPost {
  padding: 140px 0 80px;
}

.Post__title {
  align-items: center;
  color: var(--colorBlack);
  display: flex;
  font-family: var(--fontZenKaku);
  font-size: var(--fontSize20);
  font-weight: 500;
  gap: 0 5px;
  line-height: 2;
}

.Post__title::before {
  background-color: var(--colorYellow);
  content: "";
  display: inline-block;
  height: 2px;
  width: 10px;
}

.Post__inner .Post__deta {
  margin: 20px 0 80px;
}

.searchPost .Post__inner .Post__deta {
  margin: 20px 0 40px;
}

.Post__catInner {
  display: grid;
  gap: 20px;
  grid-template-columns: auto 220px;
  justify-content: space-between;
  margin: 16px auto 40px;
}

@media screen and (max-width: 767px) {
  .searchPost .Post__container .Post__img {
    aspect-ratio: 512 / 341;
    height: auto;
    width: 100%;
  }
  .Post__swiper--slide {
    height: 60px;
  }
  .searchBottom__selectList--icon img {
      width: 28px;
  }
}

@media screen and (max-width: 500px) {
  .Post__catInner {
    grid-template-columns: 1fr;
  }
  .Post__catColumn--column {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .Post__catColumn--logo {
    width: 100%;
  }
  .Post__catColumn--logo img {
    max-width: 120px;
  }
}

.pagination__list {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.pagination__list button {
  background: none;
  border: none;
}

.nextLink,
.prevLink {
  align-self: center;
  height: 25px;
  position: relative;
  width: 25px;
}

.nextLink::before,
.prevLink::before {
  background: url(../images/top/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 14px;
  left: 50%;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in-out;
  width: 8px;
}

.nextLink:not(:disabled):hover::before,
.prevLink:not(:disabled):hover::before {
  opacity: 1;
}

.prevLink::before {
  transform: translate(-50%, -50%) scaleX(-1);
}

.pagination__link,
.paginationDots {
  color: #949494;
  font-family: var(--fontRoboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  transition: 0.3s ease-out;
}

.pagination__link:not(.active),
.nextLink:not(:disabled),
.prevLink:not(:disabled) {
  cursor: pointer;
}

.pagination__link:not(.active):hover {
  color: #707070;
}

.pagination__link.active {
  color: #17ac4d;
}

@media screen and (max-width: 550px) {
  .pagination__list {
    gap: 0;
    justify-content: space-between;
  }
  .pagination__list button {
    padding: 0;
  }
  .pagination__link {
    font-size: 16px;
  }
  .nextLink,
  .prevLink {
    height: 16px;
    width: 16px;
  }
  .nextLink::before,
  .prevLink::before {
    height: 14px;
    width: 8px;
  }
}
