@charset "UTF-8";
@layer page {
  .l-main {
    background-color: var(--bg-green);
  }
  .p-page-hdr.-search {
    background-color: var(--accent);
    color: #fff;
    text-align: left;
    padding: 3.75rem 0 3.75rem 6.25rem;
  }
  @media screen and (max-width: 1200px) {
    .p-page-hdr.-search {
      padding: 2.5rem 0 2.5rem 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-search {
      padding: 7.5vw 0 7.5vw 5vw;
    }
  }
  .p-page-hdr.-search .p-page-hdr__inner {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    margin: 0 auto;
  }
  @media screen and (min-width: 1200px) {
    .p-page-hdr.-search .p-page-hdr__inner {
      max-width: 87.375rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-search .p-page-hdr__inner {
      gap: 0.9375rem;
    }
  }
  .p-page-hdr.-search .p-page-hdr__en {
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-search .p-page-hdr__en {
      font-size: 3.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-search .p-page-hdr__ttl {
      font-size: 6vw;
    }
  }
  .p-page-hdr.-search .p-page-hdr__icon {
    width: 6.875rem;
    height: 6.875rem;
    background-color: #fff;
    border-radius: 0.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-search .p-page-hdr__icon {
      width: 15vw;
      height: 15vw;
    }
  }
  .p-page-hdr.-search .p-page-hdr__icon svg {
    fill: var(--accent);
    width: 4.375rem;
    height: 4.375rem;
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-search .p-page-hdr__icon svg {
      width: 9.5vw;
      height: 9.5vw;
    }
  }
  .p-page-hdr.-shop {
    background-color: var(--bg-green);
    padding: 4.5rem 0;
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-shop {
      padding: 10vw 0;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-shop .p-page-hdr__en {
      font-size: 4.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-hdr.-shop .p-page-hdr__ttl {
      font-size: 6.5vw;
    }
  }
  .search {
    padding: 5rem 0;
  }
  @media screen and (max-width: 767px) {
    .search {
      padding: 10vw 0;
    }
  }
  .search + .search {
    padding-top: 0;
  }
  @media screen and (max-width: 767px) {
    .search + .search {
      padding-top: 0;
    }
  }
  .search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .search-form {
      flex-direction: column;
      gap: 2.5vw;
      margin-bottom: 7.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .search-form__location {
      width: 100%;
    }
  }
  .search-form__location-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 100rem;
    background-color: var(--blue);
    color: #fff;
    font-weight: 700;
    border: 2px solid var(--blue);
    padding: 1.75rem 0rem;
    transition-duration: 0.25s;
    transition-property: background, color;
  }
  @media screen and (min-width: 1200px) {
    .search-form__location-btn {
      width: 20rem;
      font-size: 1.25rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .search-form__location-btn {
      width: 16.25rem;
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-form__location-btn {
      width: 100%;
      font-size: 5vw;
    }
  }
  .search-form__location-btn .icon::before {
    content: "";
    mask: url("../../../img/page/shop-search/location.svg") 0 0/contain no-repeat;
    background-color: #fff;
    display: block;
    width: 1.75rem;
    height: 1.75rem;
  }
  @media (hover: hover) {
    .search-form__location-btn:hover {
      background-color: #fff;
      color: var(--blue);
    }
    .search-form__location-btn:hover .icon::before {
      background-color: var(--blue);
    }
  }
  .search-form__freeword {
    position: relative;
  }
  @media screen and (max-width: 767px) {
    .search-form__freeword {
      width: 100%;
    }
  }
  .search-form__freeword .icon::before {
    content: "";
    mask: url("../../../img/page/shop-search/pin.svg") 0 0/contain no-repeat;
    background-color: var(--accent);
    display: block;
    width: 1.1875rem;
    height: 1.75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.1875rem;
    margin: auto;
  }
  @media screen and (max-width: 767px) {
    .search-form__freeword .icon::before {
      display: none;
    }
  }
  .search-form__freeword .search-form__input {
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 100rem;
    color: var(--text-gray);
    padding: 1.75rem 10rem 1.75rem 4.25rem;
    outline: none;
  }
  @media screen and (min-width: 1200px) {
    .search-form__freeword .search-form__input {
      width: 40rem;
      font-size: 1.125rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .search-form__freeword .search-form__input {
      width: 28.75rem;
      font-size: 0.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-form__freeword .search-form__input {
      width: 100%;
      font-size: 4vw;
      padding: 7vw 5vw 7vw 7.5vw;
    }
  }
  .search-form__freeword button {
    background-color: var(--blue);
    color: #fff;
    border-radius: 100rem;
    font-size: 1.125rem;
    font-weight: 700;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.9375rem;
    margin: auto;
    transition-duration: 0.25s;
    transition-property: background, color;
    height: 3.75rem;
    border: 2px solid var(--blue);
  }
  @media screen and (min-width: 1200px) {
    .search-form__freeword button {
      width: 8.75rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .search-form__freeword button {
      font-size: 1rem;
      width: 6.875rem;
    }
  }
  @media (hover: hover) {
    .search-form__freeword button:hover {
      background-color: #fff;
      color: var(--blue);
    }
  }
  .search-condition {
    background-color: #fff;
    border-radius: 0.625rem;
  }
  .search-condition__ttl {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding: 1.875rem 2.5rem;
    outline: none;
  }
  @media screen and (max-width: 767px) {
    .search-condition__ttl {
      padding: 5vw;
    }
  }
  .search-condition__ttl-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .search-condition__ttl .p-icon-scope {
    fill: var(--accent);
  }
  .search-condition__ttl-txt {
    font-size: 1.25rem;
    font-weight: 700;
  }
  .search-condition__ttl .p-icon-toggle {
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 767px) {
    .search-condition__ttl .p-icon-toggle {
      right: 5vw;
    }
  }
  .search-condition__ttl .p-icon-toggle::before, .search-condition__ttl .p-icon-toggle::after {
    background: var(--accent);
  }
  .search-condition__lists {
    padding: 0 5rem 5rem;
  }
  @media screen and (max-width: 1200px) {
    .search-condition__lists {
      padding: 0 2.5rem 5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists {
      padding: 0 5vw 10vw;
    }
  }
  .search-condition__lists-flex {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists-flex {
      flex-direction: column;
    }
  }
  .search-condition__lists dl {
    display: flex;
    column-gap: 4%;
    border-bottom: 1px solid var(--line);
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists dl {
      flex-direction: column;
    }
  }
  .search-condition__lists dl:first-of-type dt {
    padding-top: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists dl:first-of-type dt {
      padding-top: 2.5vw;
    }
  }
  .search-condition__lists dl:first-of-type dd {
    padding-top: 0;
  }
  .search-condition__lists dl:last-of-type {
    border: none;
  }
  .search-condition__lists dt {
    font-size: 1.125rem;
    font-weight: 700;
    width: 11.5%;
    padding: 3.125rem 0;
  }
  @media screen and (max-width: 1200px) {
    .search-condition__lists dt {
      width: 14%;
      font-size: 0.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists dt {
      width: 100%;
      font-size: 4.5vw;
      padding: 5vw 0 2.5vw;
    }
  }
  .search-condition__lists dd {
    width: 84.5%;
    padding: 1.875rem 0;
  }
  @media screen and (max-width: 1200px) {
    .search-condition__lists dd {
      width: 82%;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists dd {
      width: 100%;
      padding: 0 0 5vw;
    }
  }
  .search-condition__lists select {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    width: 17.875rem;
    height: 4.375rem;
    padding-left: 1.25rem;
    cursor: pointer;
    outline: none;
    font-size: 0.9375rem;
    font-weight: 700;
  }
  @media screen and (max-width: 1200px) {
    .search-condition__lists select {
      width: 16.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists select {
      width: 100%;
      height: 14vw;
      font-size: 3.75vw;
    }
  }
  .search-condition__lists .select-wrapper {
    position: relative;
  }
  @media screen and (max-width: 767px) {
    .search-condition__lists .select-wrapper {
      width: 100%;
    }
  }
  .search-condition__lists .select-wrapper::after {
    content: "";
    display: block;
    background: url("../../../img/icon/arrow.svg") 0 0/contain no-repeat;
    width: 0.5rem;
    height: 0.875rem;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    pointer-events: none;
  }
  .search-condition__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__list {
      justify-content: space-between;
    }
  }
  .search-condition__list > li {
    width: 17.875rem;
  }
  @media screen and (max-width: 1200px) {
    .search-condition__list > li {
      width: 16.875rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__list > li {
      width: calc(50% - 1.25vw);
      gap: 1.25vw;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__list > li.fullsize {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__list > li:has(.type-txt) {
      width: 100%;
    }
  }
  .search-condition__list + ul {
    margin-top: 1.875rem;
  }
  .search-condition__list .type-btn {
    height: 4.375rem;
    border-radius: 0.3125rem;
    outline: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.3;
    padding: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__list .type-btn {
      font-size: 3.75vw;
      padding: 1.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .search-condition__list .type-btn .icon {
      width: 9.25vw;
    }
  }
  .search-condition__list .type-btn > input[type=checkbox] {
    display: none;
  }
  @media (hover: hover) {
    .search-condition__list .type-btn:hover {
      outline: 2px solid var(--accent);
    }
  }
  .search-condition__list .type-btn:has(input[type=checkbox]:checked) {
    outline: 2px solid var(--accent);
    background-color: var(--bg-green);
  }
  .search-condition__list .type-txt > input[type=checkbox] {
    display: none;
  }
  .search-condition__list .type-txt .txt {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__list .type-txt .txt {
      font-size: 4vw;
    }
  }
  .search-condition__list .type-txt .txt::before {
    content: "";
    display: inline-block;
    border: 1px solid var(--line);
    width: 1.4375rem;
    height: 1.4375rem;
    border-radius: 0.1875rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .search-condition__list .type-txt > input[type=checkbox]:checked + .txt::before {
    background-color: var(--accent);
    border: 2px solid var(--accent);
  }
  .search-condition__list .type-txt > input[type=checkbox]:checked + .txt::after {
    content: "";
    background: url("../../../img/page/shop-search/checkmark.svg") 0 0/contain no-repeat;
    width: 0.8125rem;
    height: 0.5625rem;
    position: absolute;
    top: 50%;
    left: 0.3125rem;
    transform: translateY(-50%);
  }
  @media (hover: hover) {
    .search-condition__list .type-txt:hover .txt::before {
      border: 2px solid var(--accent);
    }
  }
  .search-condition__submit {
    margin: 1.875rem auto 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__submit {
      margin: 5vw auto;
    }
  }
  .search-condition__submit button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 100rem;
    background-color: var(--blue);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid var(--blue);
    margin: 0 auto;
    padding: 1.75rem 0rem;
    transition-duration: 0.25s;
    transition-property: background, color;
    width: 33.75rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__submit button {
      width: 100%;
      font-size: 5vw;
    }
  }
  .search-condition__submit button .p-icon-scope {
    fill: #fff;
    width: 2rem;
    height: 2rem;
  }
  @media screen and (max-width: 767px) {
    .search-condition__submit button .p-icon-scope {
      width: 5.75vw;
      height: 5.75vw;
    }
  }
  @media (hover: hover) {
    .search-condition__submit button:hover {
      background-color: #fff;
      color: var(--blue);
    }
    .search-condition__submit button:hover .p-icon-scope {
      fill: var(--blue);
    }
  }
  .search-condition__reset {
    text-align: center;
  }
  .search-condition__reset button {
    color: var(--text-gray);
    display: inline-block;
    background: none;
    border: none;
  }
  @media (hover: hover) {
    .search-condition__reset button:hover .txt {
      color: var(--accent);
      border-bottom: 1px solid var(--accent);
    }
  }
  .search-condition__reset .txt {
    font-size: 1.125rem;
    font-weight: 700;
    border-bottom: 1px solid var(--text-gray);
    transition-duration: 0.25s;
    transition-property: color, border;
  }
  @media screen and (max-width: 767px) {
    .search-condition__reset .txt {
      font-size: 4vw;
    }
  }
  .search-condition__reset .icon {
    position: relative;
    margin-left: 1.5rem;
  }
  .search-condition__reset .icon::before {
    content: "";
    mask: url("../../../img/page/shop-search/reset.svg") 0 0/contain no-repeat;
    background-color: var(--accent);
    display: block;
    width: 1.0625rem;
    height: 1.25rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  /* ============================================================
  results
  ============================================================ */
  .search-num {
    margin: 0 0 1.25rem;
  }
  .search-num__txt {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
  }
  @media screen and (max-width: 767px) {
    .search-num__txt {
      font-size: 4vw;
    }
  }
  .search-num__txt span {
    color: var(--accent);
    font-family: var(--en-sans);
    font-size: 2.5rem;
    font-weight: 700;
    padding: 0 0.25rem 0 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .search-num__txt span {
      font-size: 8vw;
      padding: 0 1.5vw 0 2.5vw;
    }
  }
  .search-num__word {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
  }
  @media screen and (max-width: 767px) {
    .search-num__word {
      margin-top: 2.5vw;
      font-size: 3.75vw;
    }
  }
  .search-results {
    background-color: #fff;
    border-radius: 0.625rem;
    padding: 5rem;
  }
  @media screen and (max-width: 1200px) {
    .search-results {
      padding: 1.875rem 1.875rem 3.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-results {
      padding: 5vw 5vw 10vw;
    }
  }
  .search-results__map {
    margin-bottom: 5rem;
    aspect-ratio: 13/5;
    border-radius: 0.625rem;
    overflow: hidden;
  }
  @media screen and (max-width: 1200px) {
    .search-results__map {
      margin-bottom: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-results__map {
      aspect-ratio: 1/1;
      margin-bottom: 0;
    }
  }
  .search-results__map iframe {
    width: 100%;
    height: 100%;
  }
  .search-results__lists {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem 2.5rem;
  }
  @media screen and (max-width: 1200px) {
    .search-results__lists {
      gap: 1.875rem 1.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-results__lists {
      flex-direction: column;
      gap: 7.5vw;
    }
  }
  .search-results__item {
    width: 31.25rem;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid var(--line);
  }
  @media screen and (max-width: 767px) {
    .search-results__item:first-of-type {
      padding-top: 7.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .search-results__item:last-of-type {
      padding-bottom: 0;
      border: none;
    }
  }
  @media screen and (max-width: 1200px) {
    .search-results__item {
      width: 20.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-results__item {
      width: 100%;
      padding-bottom: 7.5vw;
    }
  }
  .search-results__item-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    transition-duration: 0.25s;
    transition-property: color;
    border-bottom: 1px solid #000;
    display: inline-block;
    line-height: 1.2;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-name {
      font-size: 4.5vw;
      margin-bottom: 2.5vw;
    }
  }
  @media (hover: hover) {
    .search-results__item a:hover .search-results__item-name {
      color: var(--accent);
      border-bottom: 1px solid var(--accent);
    }
  }
  .search-results__item-address {
    font-size: 1rem;
    line-height: 1.6;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-address {
      font-size: 4vw;
    }
  }
  .search-results__item-time {
    margin: 0.9375rem 0 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-time {
      margin: 2.5vw 0 5vw;
    }
  }
  .search-results__item-time dl {
    display: flex;
    align-items: flex-start;
    column-gap: 0.3125rem;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-time dl {
      column-gap: 1.25vw;
    }
  }
  .search-results__item-time dl + dl {
    margin-top: 0.3125rem;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-time dl + dl {
      margin-top: 1.5vw;
    }
  }
  .search-results__item-time dt {
    font-size: 0.9375rem;
    background-color: var(--bg-gray2);
    border-radius: 100rem;
    padding: 0.125rem 0.625rem;
    line-height: 1.5;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-time dt {
      font-size: 3.75vw;
      padding: 0.5vw 2.5vw;
    }
  }
  .search-results__item-time dd {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-time dd {
      font-size: 3.75vw;
    }
  }
  .search-results__item-service {
    display: flex;
    gap: 0.5rem;
  }
  @media screen and (max-width: 1200px) {
    .search-results__item-service {
      flex-wrap: wrap;
      gap: 1.25rem 0.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .search-results__item-service {
      gap: 2vw 2.5vw;
    }
  }
  .search-results__item-service li {
    display: flex;
    flex-direction: column;
    width: 3.4375rem;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-service li {
      width: 13.75vw;
    }
  }
  .search-results__item-service li.on .icon {
    background-color: var(--accent);
  }
  .search-results__item-service li.on .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7423%) hue-rotate(148deg) brightness(122%) contrast(95%);
  }
  .search-results__item-service li.on .txt {
    color: #000;
  }
  .search-results__item-service .icon {
    width: 3.4375rem;
    height: 3.4375rem;
    background-color: var(--bg-gray2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    margin-bottom: 0.375rem;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-service .icon {
      width: 13.75vw;
      height: 13.75vw;
    }
  }
  .search-results__item-service .icon img {
    filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(0%) hue-rotate(165deg) brightness(86%) contrast(93%);
    width: 2.875rem;
  }
  .search-results__item-service .txt {
    color: var(--text-gray);
    font-size: 0.6875rem;
    text-align: center;
    line-height: 1.2;
  }
  @media screen and (max-width: 767px) {
    .search-results__item-service .txt {
      font-size: 2.75vw;
    }
  }
  .search-results__item-service-txt {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    color: var(--line);
    margin-top: 1.25rem;
  }
  .search-results__item-service-txt li {
    width: 49%;
    position: relative;
    padding-left: 0.75rem;
    line-height: 1.5;
    padding-bottom: 0.1875rem;
  }
  .search-results__item-service-txt li::before {
    content: "";
    display: block;
    background-color: var(--line);
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 100rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
  }
  .search-results__item-service-txt li.on {
    color: var(--main);
  }
  .search-results__item-service-txt li.on::before {
    background-color: var(--accent);
  }
  .search-results__item-service-txt span {
    font-size: 0.6875rem;
  }
  .search-results__paginate {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--en-sans);
    gap: 0.625rem;
    margin-top: 3.125rem;
  }
  @media screen and (max-width: 767px) {
    .search-results__paginate {
      gap: 2.25vw;
      margin-top: 5vw;
    }
  }
  .search-results__paginate li {
    font-size: 1rem;
    font-weight: 700;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  @media screen and (max-width: 767px) {
    .search-results__paginate li {
      width: 11.25vw;
      height: 11.25vw;
      font-size: 3.75vw;
    }
  }
  .search-results__paginate li.current {
    background-color: var(--accent);
    color: #fff;
  }
  .search-results__paginate li a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.25s;
    transition-property: color;
  }
  @media (hover: hover) {
    .search-results__paginate li a:hover {
      color: var(--accent);
    }
  }
  .search-results__paginate li.prev {
    transform: scale(-1, 1);
  }
  .search-results__paginate li.next a svg, .search-results__paginate li.prev a svg {
    fill: #000;
  }
  @media (hover: hover) {
    .search-results__paginate li.next a:hover svg, .search-results__paginate li.prev a:hover svg {
      fill: var(--accent);
    }
  }
  .search-results__paginate li.next svg, .search-results__paginate li.prev svg {
    fill: var(--line);
    transition-duration: 0.25s;
  }
  /* ============================================================
  shop-detail
  ============================================================ */
  .shop-detail {
    padding-bottom: 5rem;
  }
  @media screen and (max-width: 767px) {
    .shop-detail {
      padding-bottom: 12.5vw;
      padding-left: 5vw;
      padding-right: 5vw;
    }
  }
  .shop-detail__tab-list {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
  }
  .shop-detail__tab-item {
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.625rem 0.625rem 0 0;
    width: 37.1875rem;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.25s;
    transition-property: background-color;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__tab-item {
      font-size: 4.5vw;
      border-radius: 2.5vw 2.5vw 0 0;
      height: 12.5vw;
    }
  }
  .shop-detail__tab-item.active {
    background-color: #fff;
    border: none;
    height: 5rem;
    pointer-events: none;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__tab-item.active {
      height: 15vw;
    }
  }
  @media (hover: hover) {
    .shop-detail__tab-item:hover {
      background-color: #fff;
    }
  }
  .shop-detail__tab-body {
    background-color: #fff;
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 5rem;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__tab-body {
      padding: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__tab-body {
      padding: 7.5vw 5vw;
      border-radius: 0 0 2.5vw 2.5vw;
    }
  }
  .shop-detail__tab-content {
    display: none;
    opacity: 0;
  }
  .shop-detail__tab-content.active {
    display: block;
  }
  .shop-detail__tab-content.is-fade {
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .shop-detail__flex {
    display: flex;
    justify-content: space-between;
    gap: 3.75rem;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__flex {
      flex-direction: column;
      gap: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__flex {
      flex-direction: column;
      gap: 7.5vw;
    }
  }
  .shop-detail__image {
    width: 31.25rem;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__image {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__image {
      width: 100%;
    }
  }
  .shop-detail__image-slider #slider-main {
    margin-bottom: 0.625rem;
  }
  .shop-detail__image-slider #slider-main li {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 0.625rem;
  }
  .shop-detail__image-slider #slider-thumbs .splide__list li {
    border-radius: 0.375rem;
    cursor: pointer;
    position: relative;
  }
  .shop-detail__image-slider #slider-thumbs .splide__list li::after {
    content: "";
    background-color: #000;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 0.375rem;
  }
  .shop-detail__image-slider #slider-thumbs img {
    border-radius: 0.3125rem;
    opacity: 0.4;
    z-index: 1;
    position: relative;
  }
  .shop-detail__image-slider #slider-thumbs .is-active img {
    opacity: 1;
  }
  .shop-detail__image-slider .splide__arrows {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100vw;
  }
  @media screen and (min-width: 1200px) {
    .shop-detail__image-slider .splide__arrows {
      width: 33.875rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__image-slider .splide__arrows {
      width: 100%;
    }
  }
  .shop-detail__image-slider .splide__arrow {
    --my-icon-size: 0.625rem;
    pointer-events: fill;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8125rem;
    height: 2.8125rem;
    background: #fff;
    border-radius: 1000rem;
    border: 1px solid var(--green-main);
    transition: 0.25s background;
    pointer-events: fill;
    border: 1px solid var(--line);
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__image-slider .splide__arrow {
      transform: translate(50%);
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__image-slider .splide__arrow {
      --my-icon-size: 3.5vw;
      width: 12.5vw;
      height: 12.5vw;
    }
  }
  .shop-detail__image-slider .splide__arrow svg {
    display: none;
  }
  .shop-detail__image-slider .splide__arrow::after {
    content: "";
    display: block;
    aspect-ratio: 8/14;
    width: var(--my-icon-size);
    background: url("../../../img/icon/arrow.svg") 0 0/auto 100% no-repeat;
    transition: 0.3s translate;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__image-slider .splide__arrow::after {
      width: 0.5rem;
      position: relative;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__image-slider .splide__arrow::after {
      width: 2vw;
    }
  }
  @media (hover: hover) {
    .shop-detail__image-slider .splide__arrow:hover {
      background-color: var(--bg-green);
    }
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__image-slider .splide__arrow--next {
      padding-right: 1.75rem;
    }
    .shop-detail__image-slider .splide__arrow--next::after {
      right: -0.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__image-slider .splide__arrow--next {
      padding-right: 7vw;
    }
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__image-slider .splide__arrow--prev {
      transform: translate(-50%);
    }
  }
  .shop-detail__image-slider .splide__arrow--prev::after {
    transform: scale(-1, 1);
  }
  .shop-detail__map {
    margin: 1.25rem 0 0.625rem;
    aspect-ratio: 2/1;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__map {
      margin-bottom: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__map {
      margin: 2.5vw 0 0;
    }
  }
  .shop-detail__map iframe {
    width: 100%;
    height: 100%;
  }
  .shop-detail__map a {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.1875rem;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__map a {
      font-size: 3.5vw;
    }
  }
  .shop-detail__map a svg {
    fill: var(--accent);
    width: 0.875rem;
    height: 0.875rem;
  }
  @media (hover: hover) {
    .shop-detail__map a:hover {
      text-decoration: underline;
    }
  }
  .shop-detail__outline {
    width: 30rem;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__outline {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline {
      width: 100%;
    }
  }
  .shop-detail__outline dl {
    display: flex;
    gap: 1.875rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .shop-detail__outline dl:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl {
      gap: 2.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl.fullsize {
      flex-direction: column;
      gap: 2.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl.fullsize dt,
    .shop-detail__outline dl.fullsize dd {
      width: 100%;
    }
  }
  .shop-detail__outline dl dt {
    width: 5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.6;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__outline dl dt {
      width: 20%;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl dt {
      width: 20vw;
    }
  }
  .shop-detail__outline dl dd {
    width: 23.125rem;
    font-size: 1rem;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__outline dl dd {
      width: 80%;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl dd {
      width: 57.5vw;
    }
  }
  .shop-detail__outline dl .search-results__item-service {
    flex-wrap: wrap;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl .search-results__item-service {
      gap: 2.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__outline dl .search-results__item-service li {
      width: 13.75vw;
    }
  }
  .shop-detail__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  .shop-detail__payment li {
    width: 2.8125rem;
  }
  .shop-detail__btn-list {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    margin: 3.75rem auto 1.875rem;
  }
  @media screen and (max-width: 1200px) {
    .shop-detail__btn-list {
      flex-direction: column;
      align-items: center;
      margin: 1.875rem auto;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-list {
      margin: 7.5vw auto 5vw;
      gap: 2.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-timy {
      width: 100%;
    }
  }
  .shop-detail__btn-timy a {
    background-color: var(--accent);
    width: 26.875rem;
    height: 6rem;
    border-radius: 100rem;
    display: flex;
    align-items: center;
    gap: 1.4375rem;
    padding-left: 1.25rem;
    border: 2px solid var(--accent);
    transition-duration: 0.25s;
    transition-property: background-color, color;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-timy a {
      width: 100%;
      height: 20vw;
      gap: 3.75vw;
    }
  }
  @media (hover: hover) {
    .shop-detail__btn-timy a:hover {
      background-color: #fff;
    }
    .shop-detail__btn-timy a:hover .txt {
      color: var(--accent);
    }
    .shop-detail__btn-timy a:hover .p-icon-blank {
      fill: var(--accent);
    }
  }
  .shop-detail__btn-timy .icon {
    background-color: #fff;
    border-radius: 100rem;
    padding: 0.875rem 1.125rem;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-timy .icon {
      padding: 2vw 2.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-timy .icon img {
      width: 10vw;
    }
  }
  .shop-detail__btn-timy .txt {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-timy .txt {
      font-size: 4.5vw;
    }
  }
  .shop-detail__btn-timy .p-icon-blank {
    position: absolute;
    width: 1rem;
    height: 1rem;
    right: 1.875rem;
    fill: #fff;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-timy .p-icon-blank {
      width: 3.5vw;
      height: 3.5vw;
      right: 5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-dl {
      width: 100%;
    }
  }
  .shop-detail__btn-dl a {
    width: 26.875rem;
    height: 6rem;
    border-radius: 100rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4375rem;
    padding-left: 1.25rem;
    outline: 1px solid var(--line);
    transition-duration: 0.1s;
    transition-property: outline, background-color;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-dl a {
      width: 100%;
      height: 20vw;
    }
  }
  @media (hover: hover) {
    .shop-detail__btn-dl a:hover {
      outline: 2px solid var(--accent);
      background-color: var(--bg-green);
    }
  }
  .shop-detail__btn-dl .icon {
    background-color: #fff;
    border-radius: 100rem;
    padding: 0.875rem 1.125rem;
  }
  .shop-detail__btn-dl .txt {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    transition-duration: 0.25s;
    transition-property: background-color, color, outline;
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-dl .txt {
      font-size: 4.5vw;
      padding-right: 8.5vw;
    }
  }
  .shop-detail__btn-dl .p-icon-blank {
    position: absolute;
    width: 1rem;
    height: 1rem;
    right: 1.875rem;
    fill: var(--accent);
  }
  @media screen and (max-width: 767px) {
    .shop-detail__btn-dl .p-icon-blank {
      width: 3.5vw;
      height: 3.5vw;
      right: 5vw;
    }
  }
  .shop-detail__btn-txt {
    text-align: center;
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
  .shop-detail__bnr {
    max-width: 30rem;
    margin: 0 auto;
  }
  .shop-detail__bnr a {
    transition: 0.25s filter;
  }
  @media (hover: hover) {
    .shop-detail__bnr a:hover {
      filter: brightness(110%);
    }
  }
  .price-hdr {
    text-align: center;
  }
  .price-hdr__ttl {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .price-hdr__ttl {
      font-size: 4.5vw;
      line-height: 1.6;
    }
  }
  .price-hdr__notes {
    font-size: 0.75rem;
    width: fit-content;
    margin: 0 auto 3.75rem;
    display: flex;
    flex-direction: column;
  }
  @media screen and (max-width: 767px) {
    .price-hdr__notes {
      margin-bottom: 7.5vw;
    }
  }
  .price-hdr__notes li {
    text-indent: -1em;
    padding-left: 1em;
  }
  @media screen and (max-width: 767px) {
    .price-hdr__notes li {
      text-align: left;
    }
  }
  .price-nav__list {
    display: flex;
    gap: 0.9375rem;
  }
  @media screen and (max-width: 1200px) {
    .price-nav__list {
      flex-wrap: wrap;
    }
  }
  @media screen and (max-width: 767px) {
    .price-nav__list {
      gap: 0 2.5vw;
    }
  }
  .price-nav__list li {
    width: 20%;
  }
  @media screen and (max-width: 1200px) {
    .price-nav__list li {
      width: calc(33.3333333333% - 0.625rem);
    }
  }
  @media screen and (max-width: 767px) {
    .price-nav__list li {
      width: calc(50% - 1.25vw);
    }
  }
  .price-nav__list a {
    display: block;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    font-weight: 700;
    position: relative;
    transition-duration: 0.2s;
    transition-property: all;
  }
  @media (hover: hover) {
    .price-nav__list a:hover {
      color: var(--accent);
    }
    .price-nav__list a:hover::after {
      background-color: var(--accent);
      height: 2px;
      width: 100%;
    }
    .price-nav__list a:hover .p-icon-arrow-bottom {
      transform: scale(1.1);
    }
  }
  .price-nav__list a::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--line);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .price-nav__list .p-icon-arrow-bottom {
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .price-nav__list .p-icon-arrow-bottom svg {
    width: 0.375rem;
  }
  @media screen and (min-width: 1200px) {
    .price__wrap {
      padding-top: 5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .price__wrap {
      margin-top: 10vw;
    }
  }
  .price__ttl01 {
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .price__ttl01 {
      font-size: 5.5vw;
    }
  }
  .price__ttl02 {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 5rem;
    margin-top: -2.5rem;
    padding-bottom: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .price__ttl02 {
      padding-top: 10vw;
      margin-top: 0;
    }
  }
  .price__table {
    width: 100%;
    border: 1px solid var(--line);
    text-align: center;
    vertical-align: middle;
    line-height: 1.3;
  }
  .price__table.--fexed {
    table-layout: fixed;
  }
  @media screen and (max-width: 767px) {
    .price__table {
      width: 225vw;
      margin-bottom: 5vw;
    }
  }
  .price__table th {
    border: 1px solid var(--line);
    background-color: var(--bg-gray2);
    font-size: 1rem;
    padding: 0.9375rem 0;
  }
  @media screen and (max-width: 1200px) {
    .price__table th {
      font-size: 0.9375rem;
    }
  }
  .price__table td {
    border: 1px solid var(--line);
    font-size: 1rem;
    padding: 0.9375rem 0;
  }
  @media screen and (max-width: 1200px) {
    .price__table td {
      font-size: 0.9375rem;
    }
  }
  .price__table thead th {
    background-color: var(--accent);
    color: #fff;
    font-weight: 700;
  }
  .price__table span {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
  }
  .price__table .price {
    background-color: var(--bg-green);
    font-weight: 700;
  }
  .price__table .green01 {
    background-color: var(--accent);
    color: #fff;
    font-weight: 700;
  }
  .price__table .green02 {
    background-color: var(--bg-green);
  }
  .price__table .gray {
    background-color: var(--bg-gray2);
    font-weight: 400;
  }
  .price__table strong {
    color: var(--accent);
    font-weight: 700;
  }
  .price__list {
    position: relative;
  }
  @media screen and (max-width: 767px) {
    .price__list-inner {
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-color: var(--accent) var(--line);
    }
  }
  @media screen and (max-width: 767px) {
    .price__list-inner::-webkit-scrollbar {
      width: 2.5vw;
    }
    .price__list-inner::-webkit-scrollbar-track {
      border-radius: 100rem;
    }
    .price__list-inner::-webkit-scrollbar-thumb {
      border-radius: 100rem;
    }
  }
  .price__list-txt {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 1.25rem;
  }
  .price__list + .price__list {
    margin-top: 1.25rem;
  }
  .price__list-notes {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
  .price__list-notes li {
    padding-left: 1em;
    text-indent: -1em;
  }
  .price__list-notes02 {
    position: absolute;
    right: 0;
    top: -2.5rem;
    font-size: 0.9375rem;
  }
  @media screen and (max-width: 767px) {
    .price__list-notes02 {
      font-size: 3.25vw;
    }
  }
  .nearby-stores {
    background-color: #fff;
    padding-bottom: 5rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores {
      padding-bottom: 12.5vw;
    }
  }
  .nearby-stores__hdr {
    text-align: center;
    padding: 5rem 0 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__hdr {
      padding: 12.5vw 0 7.5vw;
    }
  }
  .nearby-stores__ttl {
    font-size: 2rem;
    font-weight: 700;
  }
  .nearby-stores__en {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--en-sans);
    color: var(--accent);
  }
  .nearby-stores .splide__track {
    max-width: 75rem;
    margin: 0 auto;
    overflow: hidden;
  }
  .nearby-stores__slider-item {
    padding: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__slider-item {
      padding: 1.25vw;
    }
  }
  .nearby-stores__slider-item a {
    outline: 1px solid var(--line);
    display: block;
    height: 100%;
    border-radius: 0.625rem;
    padding: 1.5625rem 1.875rem 1.875rem;
    transition-duration: 0.1s;
    transition-property: outline;
  }
  @media (hover: hover) {
    .nearby-stores__slider-item a:hover {
      outline: 2px solid var(--accent);
    }
  }
  .nearby-stores__slider-item dl {
    display: flex;
    align-items: flex-start;
    gap: 0.3125rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__slider-item dl {
      font-size: 3.75vw;
    }
  }
  .nearby-stores__slider-item dl + dl {
    margin-top: 0.625rem;
  }
  .nearby-stores__slider-item dl dt {
    background-color: var(--bg-gray2);
    border-radius: 100rem;
    padding: 0.125rem 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__slider-item dl dt {
      font-size: 3.75vw;
    }
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__slider-item dl dd {
      font-size: 3.75vw;
    }
  }
  .nearby-stores .splide__arrows {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100vw;
  }
  @media screen and (min-width: 1200px) {
    .nearby-stores .splide__arrows {
      width: 84.375rem;
    }
  }
  @media screen and (max-width: 1200px) {
    .nearby-stores .splide__arrows {
      width: 45rem;
    }
  }
  @media screen and (max-width: 767px) {
    .nearby-stores .splide__arrows {
      width: 20rem;
    }
  }
  .nearby-stores .splide__arrow {
    --my-icon-size: 0.625rem;
    pointer-events: fill;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8125rem;
    height: 2.8125rem;
    background: #fff;
    border-radius: 1000rem;
    border: 1px solid var(--green-main);
    transition: 0.25s background;
    pointer-events: fill;
    border: 1px solid var(--line);
  }
  @media screen and (max-width: 1200px) {
    .nearby-stores .splide__arrow {
      transform: translate(50%);
    }
  }
  @media screen and (max-width: 767px) {
    .nearby-stores .splide__arrow {
      --my-icon-size: 3.5vw;
      width: 11.25vw;
      height: 11.25vw;
    }
  }
  .nearby-stores .splide__arrow svg {
    display: none;
  }
  .nearby-stores .splide__arrow::after {
    content: "";
    display: block;
    aspect-ratio: 8/14;
    width: var(--my-icon-size);
    background: url("../../../img/icon/arrow.svg") 0 0/auto 100% no-repeat;
    transition: 0.3s translate;
  }
  @media screen and (max-width: 1200px) {
    .nearby-stores .splide__arrow::after {
      width: 0.5rem;
      position: relative;
    }
  }
  @media screen and (max-width: 767px) {
    .nearby-stores .splide__arrow::after {
      width: 2vw;
    }
  }
  @media (hover: hover) {
    .nearby-stores .splide__arrow:hover {
      background-color: var(--bg-green);
    }
  }
  @media screen and (max-width: 1200px) {
    .nearby-stores .splide__arrow--next {
      padding-right: 1.75rem;
    }
    .nearby-stores .splide__arrow--next::after {
      right: -0.75rem;
    }
  }
  @media screen and (max-width: 767px) {
    .nearby-stores .splide__arrow--next {
      padding-right: 7vw;
    }
  }
  @media screen and (max-width: 1200px) {
    .nearby-stores .splide__arrow--prev {
      transform: translate(-50%);
    }
  }
  .nearby-stores .splide__arrow--prev::after {
    transform: scale(-1, 1);
  }
  .nearby-stores__name {
    line-height: 1.2;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid #000;
    margin-bottom: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__name {
      font-size: 4.5vw;
    }
  }
  .nearby-stores__address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__address {
      font-size: 4vw;
    }
  }
  .nearby-stores__btn {
    margin: 2.5rem auto 0;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__btn {
      margin-top: 7.5vw;
    }
  }
  .nearby-stores__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100rem;
    outline: 1px solid var(--line);
    width: 13.375rem;
    height: 3.9375rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 auto;
    padding-left: 1.25rem;
    transition-duration: 0.1s;
    transition-property: outline, background-color;
  }
  @media (hover: hover) {
    .nearby-stores__btn a:hover {
      outline: 2px solid var(--accent);
      background-color: var(--bg-green);
    }
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__btn a {
      width: 80vw;
    }
  }
  .nearby-stores__btn-icon {
    position: absolute;
    left: 1.25rem;
    transform: scale(-1, 1);
    width: 0.5rem;
    height: 0.875rem;
    fill: var(--accent);
  }
  @media screen and (max-width: 767px) {
    .nearby-stores__btn-icon {
      left: 6.25vw;
    }
  }
  .recommended {
    background-color: var(--bg-green);
    padding: 5rem 0;
  }
  @media screen and (max-width: 767px) {
    .recommended {
      padding: 12.5vw 5vw;
    }
  }
  .recommended__inner {
    max-width: 85rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  @media screen and (max-width: 1200px) {
    .recommended__inner {
      flex-direction: column;
      gap: 2.5rem;
    }
  }
  @media screen and (max-width: 767px) {
    .recommended__inner {
      gap: 7.5vw;
    }
  }
  @media screen and (max-width: 767px) {
    .recommended__hdr {
      text-align: center;
    }
  }
  .recommended__ttl {
    font-size: 2rem;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .recommended__ttl {
      font-size: 8vw;
    }
  }
  .recommended__en {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--en-sans);
    color: var(--accent);
  }
  @media screen and (max-width: 767px) {
    .recommended__en {
      font-size: 5vw;
    }
  }
  .recommended__list {
    display: flex;
    gap: 2.5rem;
  }
  @media screen and (max-width: 1200px) {
    .recommended__list {
      gap: 1.25rem;
    }
  }
  @media screen and (max-width: 767px) {
    .recommended__list {
      flex-direction: column;
      gap: 7.5vw;
    }
  }
  .recommended__list-item {
    width: 21rem;
  }
  @media screen and (max-width: 1200px) {
    .recommended__list-item {
      width: 15rem;
    }
  }
  @media screen and (max-width: 767px) {
    .recommended__list-item {
      width: 100%;
    }
  }
  .recommended__list-item .txt {
    font-size: 1rem;
    display: block;
    padding-top: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .recommended__list-item .txt {
      font-size: 4vw;
    }
  }
  .recommended__list-item a {
    transition: 0.25s filter;
  }
  @media (hover: hover) {
    .recommended__list-item a:hover {
      filter: brightness(110%);
    }
  }
  .recommended__list-item a img {
    border-radius: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon {
    width: 30vw;
    height: 29.25vw;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon::before {
    width: 10vw;
    height: 10vw;
    margin-top: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint-icon::after {
    background-size: 100%;
    width: 8.5vw;
    height: 3.5vw;
    top: 3vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .scroll-hint-text {
    font-size: 3vw;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 1.25vw;
  }
}

/* Blade互換: SP用ページネーション・空結果スタイル */
@media screen and (max-width: 767px) {
  .search-results .p-pagination {
    gap: 1vw;
  }
  .search-results .p-pagination > * {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
  }
}
.search-results__empty {
  text-align: center;
  padding: 2.5rem 0;
}