@charset "UTF-8";

/* ========================================
   Stores
======================================== */

.p-stores {
  background: #000842;
  color: #fff;
}

.p-stores__inner {
  width: min(100%, 1300px);
  margin-inline: auto;
  padding: 80px 56px 240px;
}

/* ========================================
   MV
======================================== */

.p-stores-mv {
  text-align: center;
}

.p-stores-mv__title {
  margin: 0;
  text-align: center;
}

.p-stores-mv__title img {
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.45));
}

.p-stores-mv__sub,
.p-stores-mv__lead {
  margin: 0;
}

.p-stores-mv__sub {
  margin-top: 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-stores-intro__inner {
  display: flex;
  justify-content: center;
}

.p-stores-intro {
  margin-top: 40px;
  text-align: center;
}

.p-stores-mv__lead {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
}
/* ========================================
   Filter
======================================== */

.p-stores-filter {
  margin-top: 42px;
}

.p-stores-filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-stores-filter__item a {
  position: relative;
  z-index: 0;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 140px;
  height: 42px;
  padding: 0 24px;

  border: 1px solid rgba(57, 174, 255, 0.9);
  border-radius: 999px;

  background: transparent;

  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.p-stores-filter__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(90deg, #3547ff 0%, #19b8e8 100%);
  opacity: 0;

  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-stores-filter__item a:hover {
    border-color: transparent;
    color: #fff;
  }

  .p-stores-filter__item a:hover::before {
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-stores-filter__item a:hover {
    border-color: transparent;
    color: #fff;
  }

  .p-stores-filter__item a:hover::before {
    opacity: 1;
  }
}

/* ========================================
   Area List
======================================== */

.p-stores-area-list {
  margin-top: 106px;
}

.p-stores-area + .p-stores-area {
  margin-top: 106px;
}

.p-stores-area__head {
  margin-bottom: 44px;
}

.p-stores-area__title {
  display: flex;
  align-items: center;
  gap: 35px;

  margin: 0;

  color: #ffce0b;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}

.p-stores-area__title::before,
.p-stores-area__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ffce0b;
}

/* ========================================
   Accordion
======================================== */

.p-stores-accordion {
  overflow: hidden;
}

.p-stores-accordion + .p-stores-accordion {
  margin-top: 32px;
}

.p-stores-accordion__title {
  margin: 0;
}

.p-stores-accordion__trigger {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 62px;
  padding: 16px 72px 16px 24px;

  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #3547ff 0%, #19b8e8 100%);

  color: #fff;
  cursor: pointer;
}

.p-stores-accordion__label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-stores-accordion__icon {
  position: absolute;
  top: 50%;
  right: 28px;

  width: 24px;
  height: 24px;

  transform: translateY(-50%);
}

.p-stores-accordion__icon::before,
.p-stores-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.p-stores-accordion__icon::before {
  width: 24px;
  height: 2px;
}

.p-stores-accordion__icon::after {
  width: 2px;
  height: 24px;
}

.p-stores-accordion__trigger[aria-expanded="true"]
  .p-stores-accordion__icon::after {
  display: none;
}

.p-stores-accordion__content {
  height: 0;
  overflow: hidden;
  padding-top: 32px;
  visibility: hidden;
  opacity: 0;

  transition:
    height 0.5s ease,
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.p-stores-accordion__trigger[aria-expanded="true"]
  + .p-stores-accordion__content {
  padding-top: 32px;
}

.p-stores-accordion.is-open .p-stores-accordion__content {
  visibility: visible;
  opacity: 1;
}

/* ========================================
   Store List
======================================== */

.p-stores-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 52px;
}

.p-stores-list__col {
  display: flex;
  flex-direction: column;
}

/* ========================================
   Store Card
======================================== */

.p-store-card {
  display: flex;
  align-items: center;
  padding: 8px 8px 16px;
  background: transparent;
}

.p-store-card.is-even {
  background: rgba(255, 255, 255, 0.08);
}

.p-store-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  flex: 1;
}

.p-store-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.p-store-card__name {
  margin: 0;

  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.p-store-card__label {
  display: inline-block;
  width: 81px;
  flex-shrink: 0;
}

.p-store-card__tel {
  margin: 0;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-store-card__side {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: 24px;
  flex-shrink: 0;
}

/* ========================================
   Map Link
======================================== */

.c-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;

  color: #000842;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .c-map-link:hover {
    background: transparent;
    color: #fff;
  }
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1023px) {
  .p-stores__inner {
    padding: 64px 40px 180px;
  }

  .p-stores-intro__text {
    font-size: 18px;
  }

  .p-stores-filter__item a {
    min-width: 120px;
    height: 38px;
    font-size: 16px;
  }

  .p-stores-area-list {
    margin-top: 80px;
  }

  .p-stores-area + .p-stores-area {
    margin-top: 80px;
  }

  .p-stores-area__title {
    gap: 20px;
    font-size: 26px;
  }

  .p-stores-accordion__trigger {
    min-height: 54px;
    padding: 14px 56px 14px 20px;
  }

  .p-stores-accordion__label {
    font-size: 20px;
  }

  .p-stores-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .p-store-card {
    padding: 12px;
  }

  .p-store-card__name,
  .p-store-card__tel {
    font-size: 16px;
  }

  .c-map-link {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
}

/* ========================================
   SP
======================================== */

@media (max-width: 767px) {
  .p-stores__inner {
    padding: 40px 20px 120px;
  }

  .p-stores-mv__title img {
    width: 107px;
  }

  .p-stores-mv__sub {
    font-size: 16px;
  }

  .p-stores-mv__lead {
    color: #fff;
    font-size: 14px;
    text-align: left;
  }

  .p-stores-intro {
    margin-top: 18px;
  }

  .p-stores-intro__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .p-stores-filter {
    margin-top: 24px;
  }

  .p-stores-filter__list {
    gap: 8px;
  }

  .p-stores-filter__item a {
    min-width: 90px;
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .p-stores-area-list {
    margin-top: 48px;
  }

  .p-stores-area + .p-stores-area {
    margin-top: 56px;
  }

  .p-stores-area__head {
    margin-bottom: 18px;
  }

  .p-stores-area__title {
    gap: 12px;
    font-size: 20px;
  }

  .p-stores-accordion + .p-stores-accordion {
    margin-top: 10px;
  }

  .p-stores-accordion__trigger {
    min-height: 44px;
    padding: 10px 44px 10px 16px;
    border-radius: 6px;
  }

  .p-stores-accordion__label {
    font-size: 18px;
  }

  .p-stores-accordion__icon {
    right: 16px;
    width: 14px;
    height: 14px;
  }

  .p-stores-accordion__icon::before {
    width: 14px;
    height: 1px;
  }

  .p-stores-accordion__icon::after {
    width: 1px;
    height: 14px;
  }

  .p-stores-accordion__content {
    padding-top: 10px;
  }

  .p-store-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
  }

  .p-store-card__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .p-store-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .p-store-card__name {
    font-size: 14px;
    line-height: 1.5;
  }

  .p-store-card__label {
    width: 70px;
  }

  .p-store-card__tel {
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
    word-break: break-all;
  }

  .p-store-card__side {
    margin-left: 0;
  }

  .c-map-link {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
}
