/* ==============
* stores-section
================*/
.stores-section {
  padding: 0 16px 32px;
}

.store-region {
  margin-bottom: 16px;
}

.store-region-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #C4CCD3;
  text-align: left;
  margin-bottom: 10px;
}

.store-region-btn.active {
  margin-bottom: 0px;
}

.store-region-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14pt;
  font-weight: 500;
  color: #133954;
}

.store-region-toggle {
  font-size: 22px;
  color: #318BC9;
  line-height: 1;
}

/* リージョン → 都道府県リスト */
/* リージョン → 都道府県リスト */
.store-pref-list {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-pref-list.open {
  grid-template-rows: minmax(0, 1fr);
}

.store-pref-list-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0;
  padding-bottom: 0;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-pref-list.open .store-pref-list-inner {
  padding-top: 10px;
  padding-bottom: 32px;
}

/* 都道府県 → 店舗リスト */
.store-pref-content {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.store-pref-content.open {
  grid-template-rows: minmax(0, 1fr);
}

.store-pref-content-inner {
  overflow: hidden;
  min-height: 0;
}

.store-pref-item {
  overflow: hidden;
}

.store-pref-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #F1F7FB;
  border: none;
  text-align: left;
}

.store-pref-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14pt;
  font-weight: 500;
  color: #133954;
}

.store-pref-toggle {
  font-size: 22px;
  color: #318BC9;
  line-height: 1;
}

.store-item {
  padding: 8px 10px;
  border-top: 1px solid #C4CCD3;
  font-family: "Noto Sans JP", sans-serif;
}

.store-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.store-name {
  font-size: 14pt;
  font-weight: 600;
  color: #005088;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 5px;
}

.store-badge {
  font-size: 10pt;
  background: #E4EBF1;
  color: #0061A4;
  border-radius: 4px;
  padding: 2px 10px;
  white-space: nowrap;
}

.store-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-addr {
  display: flex;
  gap: 8px;
  flex: 1;
}

.store-addr-label {
  font-size: 12pt;
  font-weight: 500;
  color: #4c4948;
  white-space: nowrap;
  padding-top: 1px;
}

.store-addr-text {
  font-size: 12pt;
  color: #4c4948;
  line-height: 1.6;
}

.store-reserve-btn {
  display: inline-block;
  font-size: 12pt;
  font-weight: 600;
  color: #fff;
  background: #F25D0B;
  border: 1px solid #F25D0B;
  border-radius: 20px;
  padding: 6px 16px;
  white-space: nowrap;
  text-decoration: none;
  align-self: flex-end;
}

.store-reserve-btn:hover {
  background: #fff;
  border-color: #F25D0B;
  color: #F25D0B;
}

.store-reserve-btn--stopped {
  background: #fff;
  color: #999;
  border-color: #ccc;
  cursor: default;
  pointer-events: none;
}

.store-reserve-btn--stopped:hover {
  background: #fff;
  color: #999;
}

/* ==============
* sec-ttl / FAQ
================*/
.sec-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24pt;
  font-weight: bold;
  color: #133954;
  text-align: center;
  padding: 32px 0 24px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
  background: #E4EBF1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  background-color: #ffffff;
  border: none;
  text-align: left;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  border-radius: 15px;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question.active {
  background-color: #fff;
  padding-bottom: 10px;
}

.q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  padding-top: 5px;
}

.q-icon img {
  width: 15px;
  height: auto;
  display: block;
}

.question-text {
  flex: 1;
  font-size: 14pt;
  font-weight: 700;
  color: #133954;
  line-height: 1.6;
}

.toggle-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.toggle-icon img {
  width: 28px;
  height: auto;
  display: block;
}

.toggle-icon .icon-minus {
  display: none;
}

.faq-question.active .icon-plus {
  display: none;
}

.faq-question.active .icon-minus {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  background-color: #ffffff;
  margin: 0;
}

.faq-answer.show {
  max-height: 600px;
  padding: 5%;
  margin: -20px 0 10px;
  border-radius: 0 0 15px 15px;
  position: relative;
}

.faq-answer.show::before {
  content: '';
  display: block;
  width: 100%;
  margin: 0 auto 16px;
  border-top: 1px solid #d0d8e4;
}

.faq-answer p {
  font-size: 12pt;
  line-height: 1.5;
  color: #133954;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    padding: 20px 15px;
    gap: 12px;
  }

  .q-icon {
    font-size: 20px;
  }

  .question-text {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}
